Add BERTopic model
Browse files- README.md +73 -0
- config.json +16 -0
- ctfidf.safetensors +3 -0
- ctfidf_config.json +2638 -0
- topic_embeddings.safetensors +3 -0
- topics.json +382 -0
README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
tags:
|
| 4 |
+
- bertopic
|
| 5 |
+
library_name: bertopic
|
| 6 |
+
pipeline_tag: text-classification
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# MARTINI_enrich_BERTopic_AFLDSOrg
|
| 10 |
+
|
| 11 |
+
This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
|
| 12 |
+
BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
|
| 13 |
+
|
| 14 |
+
## Usage
|
| 15 |
+
|
| 16 |
+
To use this model, please install BERTopic:
|
| 17 |
+
|
| 18 |
+
```
|
| 19 |
+
pip install -U bertopic
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
You can use the model as follows:
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from bertopic import BERTopic
|
| 26 |
+
topic_model = BERTopic.load("AIDA-UPM/MARTINI_enrich_BERTopic_AFLDSOrg")
|
| 27 |
+
|
| 28 |
+
topic_model.get_topic_info()
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Topic overview
|
| 32 |
+
|
| 33 |
+
* Number of topics: 4
|
| 34 |
+
* Number of training documents: 251
|
| 35 |
+
|
| 36 |
+
<details>
|
| 37 |
+
<summary>Click here for an overview of all topics.</summary>
|
| 38 |
+
|
| 39 |
+
| Topic ID | Topic Keywords | Topic Frequency | Label |
|
| 40 |
+
|----------|----------------|-----------------|-------|
|
| 41 |
+
| -1 | fauci - misinformation - censor - ivermectin - missouri | 20 | -1_fauci_misinformation_censor_ivermectin |
|
| 42 |
+
| 0 | lockdowns - fauci - mask - live - austin | 84 | 0_lockdowns_fauci_mask_live |
|
| 43 |
+
| 1 | vaccinated - pfizer - myocarditis - hpv - deaths | 85 | 1_vaccinated_pfizer_myocarditis_hpv |
|
| 44 |
+
| 2 | unvaccinated - upheld - unconstitutional - mandatory - exemptions | 62 | 2_unvaccinated_upheld_unconstitutional_mandatory |
|
| 45 |
+
|
| 46 |
+
</details>
|
| 47 |
+
|
| 48 |
+
## Training hyperparameters
|
| 49 |
+
|
| 50 |
+
* calculate_probabilities: True
|
| 51 |
+
* language: None
|
| 52 |
+
* low_memory: False
|
| 53 |
+
* min_topic_size: 10
|
| 54 |
+
* n_gram_range: (1, 1)
|
| 55 |
+
* nr_topics: None
|
| 56 |
+
* seed_topic_list: None
|
| 57 |
+
* top_n_words: 10
|
| 58 |
+
* verbose: False
|
| 59 |
+
* zeroshot_min_similarity: 0.7
|
| 60 |
+
* zeroshot_topic_list: None
|
| 61 |
+
|
| 62 |
+
## Framework versions
|
| 63 |
+
|
| 64 |
+
* Numpy: 1.26.4
|
| 65 |
+
* HDBSCAN: 0.8.40
|
| 66 |
+
* UMAP: 0.5.7
|
| 67 |
+
* Pandas: 2.2.3
|
| 68 |
+
* Scikit-Learn: 1.5.2
|
| 69 |
+
* Sentence-transformers: 3.3.1
|
| 70 |
+
* Transformers: 4.46.3
|
| 71 |
+
* Numba: 0.60.0
|
| 72 |
+
* Plotly: 5.24.1
|
| 73 |
+
* Python: 3.10.12
|
config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"calculate_probabilities": true,
|
| 3 |
+
"language": null,
|
| 4 |
+
"low_memory": false,
|
| 5 |
+
"min_topic_size": 10,
|
| 6 |
+
"n_gram_range": [
|
| 7 |
+
1,
|
| 8 |
+
1
|
| 9 |
+
],
|
| 10 |
+
"nr_topics": null,
|
| 11 |
+
"seed_topic_list": null,
|
| 12 |
+
"top_n_words": 10,
|
| 13 |
+
"verbose": false,
|
| 14 |
+
"zeroshot_min_similarity": 0.7,
|
| 15 |
+
"zeroshot_topic_list": null
|
| 16 |
+
}
|
ctfidf.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79d60e9aab82f33f6e8c36492c7993f7d2468e96a0db88a3a82ed74dbf8ffab6
|
| 3 |
+
size 59624
|
ctfidf_config.json
ADDED
|
@@ -0,0 +1,2638 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"ctfidf_model": {
|
| 3 |
+
"bm25_weighting": false,
|
| 4 |
+
"reduce_frequent_words": true
|
| 5 |
+
},
|
| 6 |
+
"vectorizer_model": {
|
| 7 |
+
"params": {
|
| 8 |
+
"analyzer": "word",
|
| 9 |
+
"binary": false,
|
| 10 |
+
"decode_error": "strict",
|
| 11 |
+
"encoding": "utf-8",
|
| 12 |
+
"input": "content",
|
| 13 |
+
"lowercase": true,
|
| 14 |
+
"max_df": 0.8,
|
| 15 |
+
"max_features": null,
|
| 16 |
+
"min_df": 1,
|
| 17 |
+
"ngram_range": [
|
| 18 |
+
1,
|
| 19 |
+
1
|
| 20 |
+
],
|
| 21 |
+
"stop_words": [
|
| 22 |
+
"i",
|
| 23 |
+
"me",
|
| 24 |
+
"my",
|
| 25 |
+
"myself",
|
| 26 |
+
"we",
|
| 27 |
+
"our",
|
| 28 |
+
"ours",
|
| 29 |
+
"ourselves",
|
| 30 |
+
"you",
|
| 31 |
+
"you're",
|
| 32 |
+
"you've",
|
| 33 |
+
"you'll",
|
| 34 |
+
"you'd",
|
| 35 |
+
"your",
|
| 36 |
+
"yours",
|
| 37 |
+
"yourself",
|
| 38 |
+
"yourselves",
|
| 39 |
+
"he",
|
| 40 |
+
"him",
|
| 41 |
+
"his",
|
| 42 |
+
"himself",
|
| 43 |
+
"she",
|
| 44 |
+
"she's",
|
| 45 |
+
"her",
|
| 46 |
+
"hers",
|
| 47 |
+
"herself",
|
| 48 |
+
"it",
|
| 49 |
+
"it's",
|
| 50 |
+
"its",
|
| 51 |
+
"itself",
|
| 52 |
+
"they",
|
| 53 |
+
"them",
|
| 54 |
+
"their",
|
| 55 |
+
"theirs",
|
| 56 |
+
"themselves",
|
| 57 |
+
"what",
|
| 58 |
+
"which",
|
| 59 |
+
"who",
|
| 60 |
+
"whom",
|
| 61 |
+
"this",
|
| 62 |
+
"that",
|
| 63 |
+
"that'll",
|
| 64 |
+
"these",
|
| 65 |
+
"those",
|
| 66 |
+
"am",
|
| 67 |
+
"is",
|
| 68 |
+
"are",
|
| 69 |
+
"was",
|
| 70 |
+
"were",
|
| 71 |
+
"be",
|
| 72 |
+
"been",
|
| 73 |
+
"being",
|
| 74 |
+
"have",
|
| 75 |
+
"has",
|
| 76 |
+
"had",
|
| 77 |
+
"having",
|
| 78 |
+
"do",
|
| 79 |
+
"does",
|
| 80 |
+
"did",
|
| 81 |
+
"doing",
|
| 82 |
+
"a",
|
| 83 |
+
"an",
|
| 84 |
+
"the",
|
| 85 |
+
"and",
|
| 86 |
+
"but",
|
| 87 |
+
"if",
|
| 88 |
+
"or",
|
| 89 |
+
"because",
|
| 90 |
+
"as",
|
| 91 |
+
"until",
|
| 92 |
+
"while",
|
| 93 |
+
"of",
|
| 94 |
+
"at",
|
| 95 |
+
"by",
|
| 96 |
+
"for",
|
| 97 |
+
"with",
|
| 98 |
+
"about",
|
| 99 |
+
"against",
|
| 100 |
+
"between",
|
| 101 |
+
"into",
|
| 102 |
+
"through",
|
| 103 |
+
"during",
|
| 104 |
+
"before",
|
| 105 |
+
"after",
|
| 106 |
+
"above",
|
| 107 |
+
"below",
|
| 108 |
+
"to",
|
| 109 |
+
"from",
|
| 110 |
+
"up",
|
| 111 |
+
"down",
|
| 112 |
+
"in",
|
| 113 |
+
"out",
|
| 114 |
+
"on",
|
| 115 |
+
"off",
|
| 116 |
+
"over",
|
| 117 |
+
"under",
|
| 118 |
+
"again",
|
| 119 |
+
"further",
|
| 120 |
+
"then",
|
| 121 |
+
"once",
|
| 122 |
+
"here",
|
| 123 |
+
"there",
|
| 124 |
+
"when",
|
| 125 |
+
"where",
|
| 126 |
+
"why",
|
| 127 |
+
"how",
|
| 128 |
+
"all",
|
| 129 |
+
"any",
|
| 130 |
+
"both",
|
| 131 |
+
"each",
|
| 132 |
+
"few",
|
| 133 |
+
"more",
|
| 134 |
+
"most",
|
| 135 |
+
"other",
|
| 136 |
+
"some",
|
| 137 |
+
"such",
|
| 138 |
+
"no",
|
| 139 |
+
"nor",
|
| 140 |
+
"not",
|
| 141 |
+
"only",
|
| 142 |
+
"own",
|
| 143 |
+
"same",
|
| 144 |
+
"so",
|
| 145 |
+
"than",
|
| 146 |
+
"too",
|
| 147 |
+
"very",
|
| 148 |
+
"s",
|
| 149 |
+
"t",
|
| 150 |
+
"can",
|
| 151 |
+
"will",
|
| 152 |
+
"just",
|
| 153 |
+
"don",
|
| 154 |
+
"don't",
|
| 155 |
+
"should",
|
| 156 |
+
"should've",
|
| 157 |
+
"now",
|
| 158 |
+
"d",
|
| 159 |
+
"ll",
|
| 160 |
+
"m",
|
| 161 |
+
"o",
|
| 162 |
+
"re",
|
| 163 |
+
"ve",
|
| 164 |
+
"y",
|
| 165 |
+
"ain",
|
| 166 |
+
"aren",
|
| 167 |
+
"aren't",
|
| 168 |
+
"couldn",
|
| 169 |
+
"couldn't",
|
| 170 |
+
"didn",
|
| 171 |
+
"didn't",
|
| 172 |
+
"doesn",
|
| 173 |
+
"doesn't",
|
| 174 |
+
"hadn",
|
| 175 |
+
"hadn't",
|
| 176 |
+
"hasn",
|
| 177 |
+
"hasn't",
|
| 178 |
+
"haven",
|
| 179 |
+
"haven't",
|
| 180 |
+
"isn",
|
| 181 |
+
"isn't",
|
| 182 |
+
"ma",
|
| 183 |
+
"mightn",
|
| 184 |
+
"mightn't",
|
| 185 |
+
"mustn",
|
| 186 |
+
"mustn't",
|
| 187 |
+
"needn",
|
| 188 |
+
"needn't",
|
| 189 |
+
"shan",
|
| 190 |
+
"shan't",
|
| 191 |
+
"shouldn",
|
| 192 |
+
"shouldn't",
|
| 193 |
+
"wasn",
|
| 194 |
+
"wasn't",
|
| 195 |
+
"weren",
|
| 196 |
+
"weren't",
|
| 197 |
+
"won",
|
| 198 |
+
"won't",
|
| 199 |
+
"wouldn",
|
| 200 |
+
"wouldn't",
|
| 201 |
+
"AFLDSOrg"
|
| 202 |
+
],
|
| 203 |
+
"strip_accents": "unicode",
|
| 204 |
+
"token_pattern": "(?u)\\b\\w\\w+\\b",
|
| 205 |
+
"vocabulary": null
|
| 206 |
+
},
|
| 207 |
+
"vocab": {
|
| 208 |
+
"email": 740,
|
| 209 |
+
"correspondence": 532,
|
| 210 |
+
"shows": 1968,
|
| 211 |
+
"moderna": 1385,
|
| 212 |
+
"provided": 1699,
|
| 213 |
+
"network": 1433,
|
| 214 |
+
"45": 41,
|
| 215 |
+
"000": 0,
|
| 216 |
+
"professionals": 1672,
|
| 217 |
+
"talking": 2136,
|
| 218 |
+
"points": 1606,
|
| 219 |
+
"advice": 114,
|
| 220 |
+
"respond": 1826,
|
| 221 |
+
"vaccine": 2306,
|
| 222 |
+
"misinformation": 1376,
|
| 223 |
+
"goes": 958,
|
| 224 |
+
"mainstream": 1308,
|
| 225 |
+
"information": 1114,
|
| 226 |
+
"control": 523,
|
| 227 |
+
"also": 158,
|
| 228 |
+
"includes": 1088,
|
| 229 |
+
"internal": 1143,
|
| 230 |
+
"global": 955,
|
| 231 |
+
"intelligence": 1138,
|
| 232 |
+
"division": 682,
|
| 233 |
+
"run": 1879,
|
| 234 |
+
"nikki": 1445,
|
| 235 |
+
"rutman": 1880,
|
| 236 |
+
"spent": 2028,
|
| 237 |
+
"nearly": 1423,
|
| 238 |
+
"20": 15,
|
| 239 |
+
"analyst": 174,
|
| 240 |
+
"fbi": 846,
|
| 241 |
+
"operation": 1495,
|
| 242 |
+
"warp": 2359,
|
| 243 |
+
"speed": 2025,
|
| 244 |
+
"worked": 2402,
|
| 245 |
+
"boston": 327,
|
| 246 |
+
"office": 1483,
|
| 247 |
+
"held": 1014,
|
| 248 |
+
"weekly": 2377,
|
| 249 |
+
"cybersecurity": 571,
|
| 250 |
+
"meetings": 1349,
|
| 251 |
+
"factually": 831,
|
| 252 |
+
"stating": 2054,
|
| 253 |
+
"truths": 2249,
|
| 254 |
+
"shots": 1965,
|
| 255 |
+
"earns": 719,
|
| 256 |
+
"label": 1213,
|
| 257 |
+
"domestic": 689,
|
| 258 |
+
"terrorist": 2158,
|
| 259 |
+
"getting": 944,
|
| 260 |
+
"everyone": 787,
|
| 261 |
+
"injected": 1117,
|
| 262 |
+
"top": 2206,
|
| 263 |
+
"national": 1416,
|
| 264 |
+
"security": 1919,
|
| 265 |
+
"concern": 478,
|
| 266 |
+
"deadly": 585,
|
| 267 |
+
"disinformation": 665,
|
| 268 |
+
"dozen": 699,
|
| 269 |
+
"pfizer": 1580,
|
| 270 |
+
"ceo": 380,
|
| 271 |
+
"albert": 144,
|
| 272 |
+
"bourla": 329,
|
| 273 |
+
"vaccinate": 2302,
|
| 274 |
+
"society": 2003,
|
| 275 |
+
"turns": 2254,
|
| 276 |
+
"neither": 1430,
|
| 277 |
+
"true": 2241,
|
| 278 |
+
"profited": 1674,
|
| 279 |
+
"accountable": 75,
|
| 280 |
+
"secretly": 1918,
|
| 281 |
+
"working": 2403,
|
| 282 |
+
"third": 2178,
|
| 283 |
+
"party": 1543,
|
| 284 |
+
"ngo": 1441,
|
| 285 |
+
"called": 348,
|
| 286 |
+
"good": 962,
|
| 287 |
+
"projects": 1681,
|
| 288 |
+
"pgp": 1581,
|
| 289 |
+
"monitor": 1390,
|
| 290 |
+
"censor": 375,
|
| 291 |
+
"online": 1493,
|
| 292 |
+
"discussions": 661,
|
| 293 |
+
"according": 72,
|
| 294 |
+
"documents": 687,
|
| 295 |
+
"seen": 1924,
|
| 296 |
+
"journalists": 1187,
|
| 297 |
+
"lee": 1236,
|
| 298 |
+
"fang": 838,
|
| 299 |
+
"jack": 1169,
|
| 300 |
+
"poulson": 1625,
|
| 301 |
+
"works": 2405,
|
| 302 |
+
"closely": 428,
|
| 303 |
+
"social": 2002,
|
| 304 |
+
"media": 1346,
|
| 305 |
+
"platforms": 1598,
|
| 306 |
+
"agencies": 128,
|
| 307 |
+
"news": 1438,
|
| 308 |
+
"websites": 2373,
|
| 309 |
+
"identify": 1060,
|
| 310 |
+
"shut": 1969,
|
| 311 |
+
"flagged": 877,
|
| 312 |
+
"censored": 376,
|
| 313 |
+
"behalf": 282,
|
| 314 |
+
"often": 1489,
|
| 315 |
+
"accurate": 77,
|
| 316 |
+
"big": 296,
|
| 317 |
+
"pharma": 1582,
|
| 318 |
+
"cannot": 356,
|
| 319 |
+
"trusted": 2245,
|
| 320 |
+
"158": 9,
|
| 321 |
+
"unexpected": 2276,
|
| 322 |
+
"deaths": 588,
|
| 323 |
+
"period": 1569,
|
| 324 |
+
"2019": 20,
|
| 325 |
+
"young": 2423,
|
| 326 |
+
"healthy": 1006,
|
| 327 |
+
"dropping": 707,
|
| 328 |
+
"dead": 584,
|
| 329 |
+
"happened": 994,
|
| 330 |
+
"american": 166,
|
| 331 |
+
"workplace": 2404,
|
| 332 |
+
"2021": 22,
|
| 333 |
+
"led": 1235,
|
| 334 |
+
"study": 2077,
|
| 335 |
+
"psychological": 1703,
|
| 336 |
+
"association": 219,
|
| 337 |
+
"united": 2279,
|
| 338 |
+
"reeling": 1769,
|
| 339 |
+
"lockdowns": 1286,
|
| 340 |
+
"aspects": 213,
|
| 341 |
+
"americans": 167,
|
| 342 |
+
"suffered": 2088,
|
| 343 |
+
"collective": 441,
|
| 344 |
+
"trauma": 2225,
|
| 345 |
+
"adults": 108,
|
| 346 |
+
"ages": 133,
|
| 347 |
+
"34": 36,
|
| 348 |
+
"44": 40,
|
| 349 |
+
"reported": 1806,
|
| 350 |
+
"biggest": 297,
|
| 351 |
+
"surge": 2112,
|
| 352 |
+
"chronic": 407,
|
| 353 |
+
"conditions": 485,
|
| 354 |
+
"since": 1988,
|
| 355 |
+
"rising": 1854,
|
| 356 |
+
"58": 46,
|
| 357 |
+
"2023": 24,
|
| 358 |
+
"48": 42,
|
| 359 |
+
"age": 126,
|
| 360 |
+
"group": 979,
|
| 361 |
+
"experienced": 807,
|
| 362 |
+
"jump": 1190,
|
| 363 |
+
"mental": 1354,
|
| 364 |
+
"illnesses": 1067,
|
| 365 |
+
"chiefly": 395,
|
| 366 |
+
"anxiety": 188,
|
| 367 |
+
"depression": 618,
|
| 368 |
+
"rose": 1870,
|
| 369 |
+
"year": 2416,
|
| 370 |
+
"31": 33,
|
| 371 |
+
"latest": 1221,
|
| 372 |
+
"suggest": 2091,
|
| 373 |
+
"heavy": 1012,
|
| 374 |
+
"handed": 990,
|
| 375 |
+
"response": 1827,
|
| 376 |
+
"outbreak": 1514,
|
| 377 |
+
"negative": 1427,
|
| 378 |
+
"effect": 726,
|
| 379 |
+
"physical": 1587,
|
| 380 |
+
"tries": 2237,
|
| 381 |
+
"pull": 1706,
|
| 382 |
+
"stunt": 2078,
|
| 383 |
+
"publicis": 1704,
|
| 384 |
+
"groupe": 980,
|
| 385 |
+
"world": 2406,
|
| 386 |
+
"largest": 1218,
|
| 387 |
+
"communications": 455,
|
| 388 |
+
"groups": 981,
|
| 389 |
+
"representing": 1809,
|
| 390 |
+
"major": 1309,
|
| 391 |
+
"drug": 709,
|
| 392 |
+
"companies": 458,
|
| 393 |
+
"tech": 2142,
|
| 394 |
+
"firms": 870,
|
| 395 |
+
"partner": 1542,
|
| 396 |
+
"corporate": 528,
|
| 397 |
+
"investor": 1152,
|
| 398 |
+
"newsguard": 1439,
|
| 399 |
+
"rates": 1730,
|
| 400 |
+
"criteria": 561,
|
| 401 |
+
"credibility": 557,
|
| 402 |
+
"trustworthiness": 2246,
|
| 403 |
+
"guide": 986,
|
| 404 |
+
"viewers": 2326,
|
| 405 |
+
"reliable": 1793,
|
| 406 |
+
"sources": 2015,
|
| 407 |
+
"using": 2301,
|
| 408 |
+
"blacklist": 308,
|
| 409 |
+
"competitors": 464,
|
| 410 |
+
"influential": 1111,
|
| 411 |
+
"connections": 492,
|
| 412 |
+
"disturbing": 679,
|
| 413 |
+
"shocking": 1961,
|
| 414 |
+
"manipulating": 1322,
|
| 415 |
+
"censoring": 377,
|
| 416 |
+
"discourse": 655,
|
| 417 |
+
"continue": 511,
|
| 418 |
+
"ask": 209,
|
| 419 |
+
"questions": 1720,
|
| 420 |
+
"insist": 1128,
|
| 421 |
+
"answers": 181,
|
| 422 |
+
"wow": 2412,
|
| 423 |
+
"tennessee": 2152,
|
| 424 |
+
"licensing": 1256,
|
| 425 |
+
"board": 314,
|
| 426 |
+
"voted": 2345,
|
| 427 |
+
"delete": 607,
|
| 428 |
+
"policy": 1609,
|
| 429 |
+
"opposing": 1502,
|
| 430 |
+
"website": 2372,
|
| 431 |
+
"suing": 2095,
|
| 432 |
+
"california": 347,
|
| 433 |
+
"enacted": 751,
|
| 434 |
+
"silence": 1981,
|
| 435 |
+
"physicians": 1589,
|
| 436 |
+
"attempt": 229,
|
| 437 |
+
"licenses": 1255,
|
| 438 |
+
"away": 257,
|
| 439 |
+
"speak": 2019,
|
| 440 |
+
"please": 1599,
|
| 441 |
+
"support": 2102,
|
| 442 |
+
"fight": 853,
|
| 443 |
+
"florida": 882,
|
| 444 |
+
"surgeon": 2113,
|
| 445 |
+
"general": 938,
|
| 446 |
+
"joseph": 1185,
|
| 447 |
+
"ladapo": 1217,
|
| 448 |
+
"fragments": 909,
|
| 449 |
+
"dna": 684,
|
| 450 |
+
"detected": 628,
|
| 451 |
+
"mrna": 1403,
|
| 452 |
+
"saying": 1896,
|
| 453 |
+
"jab": 1166,
|
| 454 |
+
"coming": 451,
|
| 455 |
+
"light": 1263,
|
| 456 |
+
"stephane": 2060,
|
| 457 |
+
"bancel": 269,
|
| 458 |
+
"mr": 1402,
|
| 459 |
+
"spread": 2035,
|
| 460 |
+
"origins": 1512,
|
| 461 |
+
"lies": 1260,
|
| 462 |
+
"costly": 537,
|
| 463 |
+
"ground": 978,
|
| 464 |
+
"decision": 597,
|
| 465 |
+
"michigan": 1364,
|
| 466 |
+
"judge": 1189,
|
| 467 |
+
"ruled": 1876,
|
| 468 |
+
"manufacturer": 1324,
|
| 469 |
+
"hospital": 1035,
|
| 470 |
+
"protected": 1689,
|
| 471 |
+
"prep": 1638,
|
| 472 |
+
"case": 365,
|
| 473 |
+
"man": 1315,
|
| 474 |
+
"strokes": 2069,
|
| 475 |
+
"leg": 1237,
|
| 476 |
+
"amputation": 172,
|
| 477 |
+
"receiving": 1752,
|
| 478 |
+
"remdesivir": 1797,
|
| 479 |
+
"contaminated": 508,
|
| 480 |
+
"glass": 954,
|
| 481 |
+
"particles": 1540,
|
| 482 |
+
"lawsuit": 1224,
|
| 483 |
+
"alleges": 149,
|
| 484 |
+
"breach": 332,
|
| 485 |
+
"warranty": 2360,
|
| 486 |
+
"negligence": 1429,
|
| 487 |
+
"gross": 976,
|
| 488 |
+
"dan": 576,
|
| 489 |
+
"nowacki": 1459,
|
| 490 |
+
"tragic": 2217,
|
| 491 |
+
"example": 793,
|
| 492 |
+
"devastating": 631,
|
| 493 |
+
"consequences": 494,
|
| 494 |
+
"arise": 202,
|
| 495 |
+
"sheer": 1960,
|
| 496 |
+
"greed": 973,
|
| 497 |
+
"pharmaceutical": 1583,
|
| 498 |
+
"incompetence": 1090,
|
| 499 |
+
"mercy": 1356,
|
| 500 |
+
"chelsea": 392,
|
| 501 |
+
"giving": 952,
|
| 502 |
+
"timely": 2196,
|
| 503 |
+
"notice": 1457,
|
| 504 |
+
"recalled": 1747,
|
| 505 |
+
"think": 2176,
|
| 506 |
+
"cares": 362,
|
| 507 |
+
"nicarbazin": 1442,
|
| 508 |
+
"anti": 183,
|
| 509 |
+
"parasitic": 1533,
|
| 510 |
+
"functions": 925,
|
| 511 |
+
"bird": 304,
|
| 512 |
+
"contraceptive": 515,
|
| 513 |
+
"really": 1742,
|
| 514 |
+
"want": 2355,
|
| 515 |
+
"consuming": 504,
|
| 516 |
+
"surprise": 2115,
|
| 517 |
+
"early": 718,
|
| 518 |
+
"2020": 21,
|
| 519 |
+
"hydroxychloroquine": 1054,
|
| 520 |
+
"took": 2204,
|
| 521 |
+
"hcq": 1002,
|
| 522 |
+
"combination": 448,
|
| 523 |
+
"azithromycin": 259,
|
| 524 |
+
"hospitalized": 1037,
|
| 525 |
+
"less": 1244,
|
| 526 |
+
"likely": 1265,
|
| 527 |
+
"die": 639,
|
| 528 |
+
"pharmacies": 1584,
|
| 529 |
+
"refused": 1772,
|
| 530 |
+
"dispense": 671,
|
| 531 |
+
"went": 2381,
|
| 532 |
+
"narrative": 1415,
|
| 533 |
+
"lives": 1280,
|
| 534 |
+
"cost": 536,
|
| 535 |
+
"industrial": 1104,
|
| 536 |
+
"complex": 468,
|
| 537 |
+
"prioritized": 1657,
|
| 538 |
+
"profits": 1675,
|
| 539 |
+
"well": 2380,
|
| 540 |
+
"investigative": 1151,
|
| 541 |
+
"reporter": 1807,
|
| 542 |
+
"financed": 862,
|
| 543 |
+
"long": 1291,
|
| 544 |
+
"lobbied": 1283,
|
| 545 |
+
"extensive": 821,
|
| 546 |
+
"funding": 927,
|
| 547 |
+
"giant": 945,
|
| 548 |
+
"consumer": 503,
|
| 549 |
+
"doctor": 685,
|
| 550 |
+
"organizations": 1510,
|
| 551 |
+
"civil": 414,
|
| 552 |
+
"rights": 1852,
|
| 553 |
+
"nonprofits": 1451,
|
| 554 |
+
"disclose": 653,
|
| 555 |
+
"received": 1750,
|
| 556 |
+
"advocating": 119,
|
| 557 |
+
"policies": 1608,
|
| 558 |
+
"force": 891,
|
| 559 |
+
"institutions": 1134,
|
| 560 |
+
"advocated": 117,
|
| 561 |
+
"implemented": 1078,
|
| 562 |
+
"failing": 832,
|
| 563 |
+
"ties": 2193,
|
| 564 |
+
"serious": 1939,
|
| 565 |
+
"ethical": 776,
|
| 566 |
+
"violation": 2332,
|
| 567 |
+
"potentially": 1624,
|
| 568 |
+
"unlawful": 2286,
|
| 569 |
+
"thoroughly": 2181,
|
| 570 |
+
"investigated": 1149,
|
| 571 |
+
"attorney": 235,
|
| 572 |
+
"jenin": 1175,
|
| 573 |
+
"younes": 2422,
|
| 574 |
+
"joe": 1180,
|
| 575 |
+
"president": 1644,
|
| 576 |
+
"administration": 103,
|
| 577 |
+
"efficacy": 730,
|
| 578 |
+
"lied": 1259,
|
| 579 |
+
"died": 640,
|
| 580 |
+
"peru": 1578,
|
| 581 |
+
"authorized": 247,
|
| 582 |
+
"widespread": 2389,
|
| 583 |
+
"ivermectin": 1165,
|
| 584 |
+
"resulted": 1835,
|
| 585 |
+
"74": 53,
|
| 586 |
+
"reduction": 1767,
|
| 587 |
+
"excess": 795,
|
| 588 |
+
"ten": 2151,
|
| 589 |
+
"recent": 1753,
|
| 590 |
+
"peer": 1559,
|
| 591 |
+
"reviewed": 1846,
|
| 592 |
+
"analyzing": 175,
|
| 593 |
+
"data": 579,
|
| 594 |
+
"across": 81,
|
| 595 |
+
"25": 28,
|
| 596 |
+
"researchers": 1818,
|
| 597 |
+
"reductions": 1768,
|
| 598 |
+
"correlated": 531,
|
| 599 |
+
"four": 907,
|
| 600 |
+
"months": 1392,
|
| 601 |
+
"noted": 1455,
|
| 602 |
+
"distribution": 678,
|
| 603 |
+
"yielded": 2419,
|
| 604 |
+
"positive": 1619,
|
| 605 |
+
"numbers": 1461,
|
| 606 |
+
"treat": 2228,
|
| 607 |
+
"distributed": 677,
|
| 608 |
+
"risk": 1855,
|
| 609 |
+
"population": 1614,
|
| 610 |
+
"greater": 971,
|
| 611 |
+
"scale": 1899,
|
| 612 |
+
"governments": 965,
|
| 613 |
+
"adopt": 106,
|
| 614 |
+
"similar": 1985,
|
| 615 |
+
"strategy": 2065,
|
| 616 |
+
"follow": 887,
|
| 617 |
+
"money": 1389,
|
| 618 |
+
"rochelle": 1862,
|
| 619 |
+
"walensky": 2354,
|
| 620 |
+
"accountability": 74,
|
| 621 |
+
"billions": 301,
|
| 622 |
+
"dollars": 688,
|
| 623 |
+
"untested": 2288,
|
| 624 |
+
"jabs": 1168,
|
| 625 |
+
"know": 1206,
|
| 626 |
+
"profitable": 1673,
|
| 627 |
+
"decade": 591,
|
| 628 |
+
"tens": 2153,
|
| 629 |
+
"millions": 1369,
|
| 630 |
+
"booster": 323,
|
| 631 |
+
"alone": 155,
|
| 632 |
+
"meets": 1350,
|
| 633 |
+
"eye": 824,
|
| 634 |
+
"missouri": 1382,
|
| 635 |
+
"supreme": 2109,
|
| 636 |
+
"court": 547,
|
| 637 |
+
"enforce": 756,
|
| 638 |
+
"hold": 1027,
|
| 639 |
+
"white": 2385,
|
| 640 |
+
"house": 1044,
|
| 641 |
+
"cdc": 372,
|
| 642 |
+
"lobbying": 1284,
|
| 643 |
+
"dissenting": 675,
|
| 644 |
+
"views": 2328,
|
| 645 |
+
"future": 929,
|
| 646 |
+
"country": 545,
|
| 647 |
+
"stake": 2041,
|
| 648 |
+
"censorship": 378,
|
| 649 |
+
"remember": 1798,
|
| 650 |
+
"manufacturers": 1325,
|
| 651 |
+
"free": 912,
|
| 652 |
+
"liability": 1250,
|
| 653 |
+
"december": 592,
|
| 654 |
+
"31st": 35,
|
| 655 |
+
"2024": 25,
|
| 656 |
+
"readiness": 1737,
|
| 657 |
+
"preparedness": 1639,
|
| 658 |
+
"put": 1714,
|
| 659 |
+
"hands": 991,
|
| 660 |
+
"return": 1839,
|
| 661 |
+
"mask": 1332,
|
| 662 |
+
"huntington": 1053,
|
| 663 |
+
"beach": 275,
|
| 664 |
+
"ban": 268,
|
| 665 |
+
"necessary": 1424,
|
| 666 |
+
"preemptive": 1631,
|
| 667 |
+
"step": 2059,
|
| 668 |
+
"liberty": 1252,
|
| 669 |
+
"constituents": 500,
|
| 670 |
+
"individual": 1100,
|
| 671 |
+
"standing": 2045,
|
| 672 |
+
"intrusion": 1147,
|
| 673 |
+
"past": 1546,
|
| 674 |
+
"going": 959,
|
| 675 |
+
"happen": 993,
|
| 676 |
+
"created": 554,
|
| 677 |
+
"roadmap": 1860,
|
| 678 |
+
"cities": 410,
|
| 679 |
+
"elected": 733,
|
| 680 |
+
"officials": 1488,
|
| 681 |
+
"following": 890,
|
| 682 |
+
"fda": 847,
|
| 683 |
+
"ran": 1727,
|
| 684 |
+
"smear": 1998,
|
| 685 |
+
"campaign": 351,
|
| 686 |
+
"calling": 349,
|
| 687 |
+
"horse": 1034,
|
| 688 |
+
"paste": 1547,
|
| 689 |
+
"three": 2187,
|
| 690 |
+
"doctors": 686,
|
| 691 |
+
"brought": 340,
|
| 692 |
+
"suit": 2096,
|
| 693 |
+
"professional": 1671,
|
| 694 |
+
"harm": 998,
|
| 695 |
+
"caused": 369,
|
| 696 |
+
"changed": 386,
|
| 697 |
+
"tune": 2251,
|
| 698 |
+
"explicitly": 815,
|
| 699 |
+
"recognizes": 1755,
|
| 700 |
+
"authority": 245,
|
| 701 |
+
"prescribe": 1641,
|
| 702 |
+
"vindicated": 2329,
|
| 703 |
+
"trying": 2250,
|
| 704 |
+
"backpedal": 265,
|
| 705 |
+
"need": 1425,
|
| 706 |
+
"exposes": 818,
|
| 707 |
+
"systematic": 2129,
|
| 708 |
+
"tyrannical": 2259,
|
| 709 |
+
"important": 1080,
|
| 710 |
+
"issue": 1161,
|
| 711 |
+
"plaintiffs": 1595,
|
| 712 |
+
"louisiana": 1300,
|
| 713 |
+
"showed": 1966,
|
| 714 |
+
"overwhelming": 1523,
|
| 715 |
+
"proof": 1685,
|
| 716 |
+
"emails": 741,
|
| 717 |
+
"phone": 1586,
|
| 718 |
+
"calls": 350,
|
| 719 |
+
"person": 1575,
|
| 720 |
+
"nih": 1444,
|
| 721 |
+
"census": 379,
|
| 722 |
+
"bureau": 342,
|
| 723 |
+
"hhs": 1016,
|
| 724 |
+
"ordered": 1506,
|
| 725 |
+
"facebook": 827,
|
| 726 |
+
"twitter": 2257,
|
| 727 |
+
"youtube": 2424,
|
| 728 |
+
"whatsapp": 2382,
|
| 729 |
+
"instagram": 1130,
|
| 730 |
+
"linkedin": 1270,
|
| 731 |
+
"redditt": 1764,
|
| 732 |
+
"spotify": 2033,
|
| 733 |
+
"microsoft": 1365,
|
| 734 |
+
"traditional": 2215,
|
| 735 |
+
"podcasts": 1604,
|
| 736 |
+
"spoke": 2031,
|
| 737 |
+
"questioned": 1719,
|
| 738 |
+
"fraudulent": 911,
|
| 739 |
+
"presented": 1643,
|
| 740 |
+
"firstly": 871,
|
| 741 |
+
"quickly": 1721,
|
| 742 |
+
"expanded": 803,
|
| 743 |
+
"opinions": 1498,
|
| 744 |
+
"climate": 422,
|
| 745 |
+
"change": 385,
|
| 746 |
+
"abortion": 65,
|
| 747 |
+
"gender": 936,
|
| 748 |
+
"economic": 722,
|
| 749 |
+
"issues": 1163,
|
| 750 |
+
"election": 734,
|
| 751 |
+
"hunter": 1052,
|
| 752 |
+
"allow": 151,
|
| 753 |
+
"subscribe": 2084,
|
| 754 |
+
"share": 1953,
|
| 755 |
+
"everything": 788,
|
| 756 |
+
"told": 2203,
|
| 757 |
+
"rna": 1859,
|
| 758 |
+
"injections": 1119,
|
| 759 |
+
"manufactured": 1323,
|
| 760 |
+
"modified": 1386,
|
| 761 |
+
"messenger": 1359,
|
| 762 |
+
"alarmingly": 143,
|
| 763 |
+
"modrna": 1387,
|
| 764 |
+
"contains": 507,
|
| 765 |
+
"viral": 2333,
|
| 766 |
+
"gene": 937,
|
| 767 |
+
"sequence": 1938,
|
| 768 |
+
"upon": 2294,
|
| 769 |
+
"entering": 761,
|
| 770 |
+
"cell": 373,
|
| 771 |
+
"takes": 2133,
|
| 772 |
+
"machinery": 1305,
|
| 773 |
+
"reprograms": 1810,
|
| 774 |
+
"produce": 1667,
|
| 775 |
+
"protein": 1692,
|
| 776 |
+
"continuous": 514,
|
| 777 |
+
"production": 1669,
|
| 778 |
+
"artificial": 207,
|
| 779 |
+
"robs": 1861,
|
| 780 |
+
"energy": 755,
|
| 781 |
+
"disrupts": 674,
|
| 782 |
+
"metabolism": 1362,
|
| 783 |
+
"leads": 1230,
|
| 784 |
+
"longer": 1292,
|
| 785 |
+
"able": 64,
|
| 786 |
+
"perform": 1566,
|
| 787 |
+
"vital": 2339,
|
| 788 |
+
"tasks": 2137,
|
| 789 |
+
"living": 1282,
|
| 790 |
+
"deception": 593,
|
| 791 |
+
"trust": 2244,
|
| 792 |
+
"establishment": 774,
|
| 793 |
+
"eating": 721,
|
| 794 |
+
"disorders": 669,
|
| 795 |
+
"self": 1928,
|
| 796 |
+
"substantially": 2085,
|
| 797 |
+
"increased": 1092,
|
| 798 |
+
"among": 170,
|
| 799 |
+
"teenage": 2146,
|
| 800 |
+
"girls": 948,
|
| 801 |
+
"uk": 2263,
|
| 802 |
+
"isolation": 1159,
|
| 803 |
+
"changing": 387,
|
| 804 |
+
"routines": 1873,
|
| 805 |
+
"school": 1906,
|
| 806 |
+
"shutdowns": 1970,
|
| 807 |
+
"contributed": 522,
|
| 808 |
+
"increases": 1093,
|
| 809 |
+
"highlights": 1019,
|
| 810 |
+
"terrible": 2156,
|
| 811 |
+
"damaging": 575,
|
| 812 |
+
"zero": 2426,
|
| 813 |
+
"benefit": 289,
|
| 814 |
+
"approved": 197,
|
| 815 |
+
"veklury": 2314,
|
| 816 |
+
"known": 1207,
|
| 817 |
+
"severe": 1950,
|
| 818 |
+
"kidney": 1201,
|
| 819 |
+
"impairment": 1074,
|
| 820 |
+
"dialysis": 638,
|
| 821 |
+
"showing": 1967,
|
| 822 |
+
"failure": 833,
|
| 823 |
+
"effective": 727,
|
| 824 |
+
"treating": 2229,
|
| 825 |
+
"numerous": 1463,
|
| 826 |
+
"studies": 2076,
|
| 827 |
+
"damages": 574,
|
| 828 |
+
"kidneys": 1202,
|
| 829 |
+
"become": 278,
|
| 830 |
+
"front": 918,
|
| 831 |
+
"blatantly": 309,
|
| 832 |
+
"obvious": 1476,
|
| 833 |
+
"newly": 1437,
|
| 834 |
+
"disclosed": 654,
|
| 835 |
+
"fauci": 842,
|
| 836 |
+
"knew": 1205,
|
| 837 |
+
"funded": 926,
|
| 838 |
+
"laboratory": 1215,
|
| 839 |
+
"china": 398,
|
| 840 |
+
"conducting": 487,
|
| 841 |
+
"risky": 1857,
|
| 842 |
+
"experiments": 810,
|
| 843 |
+
"days": 582,
|
| 844 |
+
"later": 1220,
|
| 845 |
+
"dismissed": 666,
|
| 846 |
+
"idea": 1058,
|
| 847 |
+
"originated": 1511,
|
| 848 |
+
"lab": 1212,
|
| 849 |
+
"conspiracy": 499,
|
| 850 |
+
"theory": 2170,
|
| 851 |
+
"crimes": 558,
|
| 852 |
+
"humanity": 1050,
|
| 853 |
+
"watch": 2363,
|
| 854 |
+
"technology": 2144,
|
| 855 |
+
"used": 2297,
|
| 856 |
+
"dr": 700,
|
| 857 |
+
"christina": 406,
|
| 858 |
+
"parks": 1536,
|
| 859 |
+
"yes": 2417,
|
| 860 |
+
"genetic": 940,
|
| 861 |
+
"regulated": 1778,
|
| 862 |
+
"terrifying": 2157,
|
| 863 |
+
"summer": 2098,
|
| 864 |
+
"throw": 2189,
|
| 865 |
+
"license": 1253,
|
| 866 |
+
"suddenly": 2086,
|
| 867 |
+
"senator": 1930,
|
| 868 |
+
"marshall": 1330,
|
| 869 |
+
"finances": 863,
|
| 870 |
+
"gain": 930,
|
| 871 |
+
"function": 924,
|
| 872 |
+
"research": 1817,
|
| 873 |
+
"oath": 1470,
|
| 874 |
+
"audit": 238,
|
| 875 |
+
"york": 2421,
|
| 876 |
+
"city": 413,
|
| 877 |
+
"regularly": 1777,
|
| 878 |
+
"overpaid": 1520,
|
| 879 |
+
"contractor": 517,
|
| 880 |
+
"administer": 100,
|
| 881 |
+
"tests": 2163,
|
| 882 |
+
"paying": 1555,
|
| 883 |
+
"much": 1404,
|
| 884 |
+
"14": 7,
|
| 885 |
+
"single": 1989,
|
| 886 |
+
"vaccination": 2304,
|
| 887 |
+
"wasted": 2362,
|
| 888 |
+
"taxpayer": 2139,
|
| 889 |
+
"safe": 1883,
|
| 890 |
+
"ethically": 777,
|
| 891 |
+
"fiscally": 873,
|
| 892 |
+
"irresponsible": 1156,
|
| 893 |
+
"politicians": 1612,
|
| 894 |
+
"make": 1311,
|
| 895 |
+
"best": 292,
|
| 896 |
+
"interests": 1142,
|
| 897 |
+
"growing": 983,
|
| 898 |
+
"number": 1460,
|
| 899 |
+
"de": 583,
|
| 900 |
+
"transitioners": 2222,
|
| 901 |
+
"returning": 1840,
|
| 902 |
+
"birth": 305,
|
| 903 |
+
"warning": 2357,
|
| 904 |
+
"affirming": 123,
|
| 905 |
+
"advocates": 118,
|
| 906 |
+
"claim": 415,
|
| 907 |
+
"hormones": 1033,
|
| 908 |
+
"sex": 1952,
|
| 909 |
+
"reassignment": 1745,
|
| 910 |
+
"surgery": 2114,
|
| 911 |
+
"saves": 1894,
|
| 912 |
+
"however": 1046,
|
| 913 |
+
"could": 539,
|
| 914 |
+
"driving": 705,
|
| 915 |
+
"high": 1017,
|
| 916 |
+
"mortality": 1394,
|
| 917 |
+
"transgender": 2220,
|
| 918 |
+
"community": 457,
|
| 919 |
+
"obsession": 1473,
|
| 920 |
+
"way": 2366,
|
| 921 |
+
"help": 1015,
|
| 922 |
+
"telling": 2150,
|
| 923 |
+
"truth": 2247,
|
| 924 |
+
"state": 2051,
|
| 925 |
+
"war": 2356,
|
| 926 |
+
"parental": 1535,
|
| 927 |
+
"kids": 1203,
|
| 928 |
+
"love": 1301,
|
| 929 |
+
"flee": 880,
|
| 930 |
+
"scott": 1913,
|
| 931 |
+
"wilk": 2390,
|
| 932 |
+
"warns": 2358,
|
| 933 |
+
"ab": 59,
|
| 934 |
+
"957": 56,
|
| 935 |
+
"classify": 420,
|
| 936 |
+
"child": 396,
|
| 937 |
+
"identity": 1061,
|
| 938 |
+
"abuse": 66,
|
| 939 |
+
"passed": 1544,
|
| 940 |
+
"require": 1813,
|
| 941 |
+
"courts": 548,
|
| 942 |
+
"parent": 1534,
|
| 943 |
+
"acceptance": 69,
|
| 944 |
+
"custody": 570,
|
| 945 |
+
"visitation": 2338,
|
| 946 |
+
"cases": 366,
|
| 947 |
+
"mark": 1327,
|
| 948 |
+
"zuckerberg": 2427,
|
| 949 |
+
"pressured": 1647,
|
| 950 |
+
"fb": 845,
|
| 951 |
+
"ig": 1062,
|
| 952 |
+
"posts": 1622,
|
| 953 |
+
"proven": 1696,
|
| 954 |
+
"jay": 1173,
|
| 955 |
+
"bhattacharya": 294,
|
| 956 |
+
"said": 1885,
|
| 957 |
+
"enabled": 750,
|
| 958 |
+
"closures": 430,
|
| 959 |
+
"vax": 2313,
|
| 960 |
+
"toddler": 2200,
|
| 961 |
+
"masking": 1333,
|
| 962 |
+
"else": 739,
|
| 963 |
+
"outright": 1518,
|
| 964 |
+
"attack": 226,
|
| 965 |
+
"speech": 2024,
|
| 966 |
+
"federal": 849,
|
| 967 |
+
"issued": 1162,
|
| 968 |
+
"preliminary": 1635,
|
| 969 |
+
"injunction": 1120,
|
| 970 |
+
"stopping": 2063,
|
| 971 |
+
"content": 509,
|
| 972 |
+
"disagree": 649,
|
| 973 |
+
"terry": 2159,
|
| 974 |
+
"doughty": 696,
|
| 975 |
+
"cited": 409,
|
| 976 |
+
"aflds": 124,
|
| 977 |
+
"israel": 1160,
|
| 978 |
+
"50": 44,
|
| 979 |
+
"supported": 2103,
|
| 980 |
+
"several": 1949,
|
| 981 |
+
"purpose": 1709,
|
| 982 |
+
"extreme": 823,
|
| 983 |
+
"measures": 1345,
|
| 984 |
+
"experimental": 809,
|
| 985 |
+
"treatments": 2230,
|
| 986 |
+
"ucsf": 2262,
|
| 987 |
+
"chief": 394,
|
| 988 |
+
"officer": 1484,
|
| 989 |
+
"verbal": 2316,
|
| 990 |
+
"directive": 644,
|
| 991 |
+
"staff": 2038,
|
| 992 |
+
"nurses": 1464,
|
| 993 |
+
"techs": 2145,
|
| 994 |
+
"etc": 775,
|
| 995 |
+
"specifically": 2022,
|
| 996 |
+
"instructed": 1135,
|
| 997 |
+
"associate": 217,
|
| 998 |
+
"injuries": 1122,
|
| 999 |
+
"believe": 286,
|
| 1000 |
+
"injury": 1123,
|
| 1001 |
+
"allowed": 152,
|
| 1002 |
+
"talk": 2135,
|
| 1003 |
+
"patient": 1549,
|
| 1004 |
+
"explain": 812,
|
| 1005 |
+
"interest": 1140,
|
| 1006 |
+
"discusses": 660,
|
| 1007 |
+
"higher": 1018,
|
| 1008 |
+
"sensitivity": 1934,
|
| 1009 |
+
"black": 307,
|
| 1010 |
+
"challenge": 384,
|
| 1011 |
+
"great": 970,
|
| 1012 |
+
"natural": 1417,
|
| 1013 |
+
"alternative": 161,
|
| 1014 |
+
"2015": 18,
|
| 1015 |
+
"ingredient": 1116,
|
| 1016 |
+
"half": 989,
|
| 1017 |
+
"nobel": 1446,
|
| 1018 |
+
"prize": 1662,
|
| 1019 |
+
"malaria": 1313,
|
| 1020 |
+
"benefits": 291,
|
| 1021 |
+
"truly": 2242,
|
| 1022 |
+
"symptoms": 2128,
|
| 1023 |
+
"started": 2048,
|
| 1024 |
+
"within": 2396,
|
| 1025 |
+
"hour": 1043,
|
| 1026 |
+
"diagnosed": 636,
|
| 1027 |
+
"different": 642,
|
| 1028 |
+
"yet": 2418,
|
| 1029 |
+
"rejected": 1788,
|
| 1030 |
+
"enforced": 757,
|
| 1031 |
+
"mandate": 1317,
|
| 1032 |
+
"decide": 594,
|
| 1033 |
+
"whether": 2383,
|
| 1034 |
+
"injured": 1121,
|
| 1035 |
+
"conflict": 489,
|
| 1036 |
+
"predictable": 1630,
|
| 1037 |
+
"seeing": 1921,
|
| 1038 |
+
"increase": 1091,
|
| 1039 |
+
"fast": 840,
|
| 1040 |
+
"cancers": 355,
|
| 1041 |
+
"offers": 1482,
|
| 1042 |
+
"insight": 1127,
|
| 1043 |
+
"enough": 759,
|
| 1044 |
+
"concerned": 479,
|
| 1045 |
+
"pierre": 1592,
|
| 1046 |
+
"summary": 2097,
|
| 1047 |
+
"visit": 2337,
|
| 1048 |
+
"site": 1991,
|
| 1049 |
+
"learn": 1232,
|
| 1050 |
+
"bombshell": 319,
|
| 1051 |
+
"sends": 1931,
|
| 1052 |
+
"scathing": 1903,
|
| 1053 |
+
"letter": 1246,
|
| 1054 |
+
"condemning": 483,
|
| 1055 |
+
"criminal": 559,
|
| 1056 |
+
"fraud": 910,
|
| 1057 |
+
"perpetrated": 1573,
|
| 1058 |
+
"gang": 931,
|
| 1059 |
+
"grifters": 975,
|
| 1060 |
+
"joey": 1181,
|
| 1061 |
+
"gilbert": 947,
|
| 1062 |
+
"avenatti": 251,
|
| 1063 |
+
"lite": 1273,
|
| 1064 |
+
"kevin": 1198,
|
| 1065 |
+
"jenkins": 1176,
|
| 1066 |
+
"rachel": 1724,
|
| 1067 |
+
"rodriguez": 1863,
|
| 1068 |
+
"smoking": 2000,
|
| 1069 |
+
"gun": 987,
|
| 1070 |
+
"potential": 1623,
|
| 1071 |
+
"referrals": 1770,
|
| 1072 |
+
"peter": 1579,
|
| 1073 |
+
"hotez": 1042,
|
| 1074 |
+
"yale": 2414,
|
| 1075 |
+
"graduated": 967,
|
| 1076 |
+
"pediatrician": 1557,
|
| 1077 |
+
"claimed": 416,
|
| 1078 |
+
"article": 206,
|
| 1079 |
+
"antivaccine": 187,
|
| 1080 |
+
"antiscience": 185,
|
| 1081 |
+
"movement": 1399,
|
| 1082 |
+
"driven": 704,
|
| 1083 |
+
"antisemitism": 186,
|
| 1084 |
+
"opposition": 1503,
|
| 1085 |
+
"science": 1908,
|
| 1086 |
+
"analysis": 173,
|
| 1087 |
+
"pulmonologists": 1708,
|
| 1088 |
+
"northwestern": 1453,
|
| 1089 |
+
"illinois": 1065,
|
| 1090 |
+
"ventilators": 2315,
|
| 1091 |
+
"governor": 966,
|
| 1092 |
+
"cuomo": 566,
|
| 1093 |
+
"prosecuted": 1688,
|
| 1094 |
+
"elderly": 732,
|
| 1095 |
+
"god": 957,
|
| 1096 |
+
"legal": 1238,
|
| 1097 |
+
"defense": 601,
|
| 1098 |
+
"strong": 2070,
|
| 1099 |
+
"immune": 1069,
|
| 1100 |
+
"shares": 1955,
|
| 1101 |
+
"practical": 1628,
|
| 1102 |
+
"tips": 2198,
|
| 1103 |
+
"implement": 1077,
|
| 1104 |
+
"demonstrated": 610,
|
| 1105 |
+
"bacterial": 266,
|
| 1106 |
+
"plasmid": 1597,
|
| 1107 |
+
"affect": 121,
|
| 1108 |
+
"unvaccinated": 2289,
|
| 1109 |
+
"read": 1736,
|
| 1110 |
+
"brief": 334,
|
| 1111 |
+
"listen": 1271,
|
| 1112 |
+
"explains": 813,
|
| 1113 |
+
"find": 866,
|
| 1114 |
+
"org": 1508,
|
| 1115 |
+
"ca": 346,
|
| 1116 |
+
"ab659": 61,
|
| 1117 |
+
"billed": 299,
|
| 1118 |
+
"cancer": 353,
|
| 1119 |
+
"prevention": 1650,
|
| 1120 |
+
"bill": 298,
|
| 1121 |
+
"hpv": 1047,
|
| 1122 |
+
"attend": 233,
|
| 1123 |
+
"universities": 2282,
|
| 1124 |
+
"colleges": 443,
|
| 1125 |
+
"problem": 1663,
|
| 1126 |
+
"reduce": 1765,
|
| 1127 |
+
"indicate": 1097,
|
| 1128 |
+
"cervical": 382,
|
| 1129 |
+
"plus": 1601,
|
| 1130 |
+
"comes": 450,
|
| 1131 |
+
"host": 1039,
|
| 1132 |
+
"side": 1971,
|
| 1133 |
+
"affects": 122,
|
| 1134 |
+
"realizing": 1741,
|
| 1135 |
+
"errors": 769,
|
| 1136 |
+
"ways": 2367,
|
| 1137 |
+
"along": 156,
|
| 1138 |
+
"tyranny": 2260,
|
| 1139 |
+
"attacks": 228,
|
| 1140 |
+
"defamatory": 599,
|
| 1141 |
+
"hit": 1025,
|
| 1142 |
+
"pieces": 1591,
|
| 1143 |
+
"destroy": 624,
|
| 1144 |
+
"name": 1414,
|
| 1145 |
+
"hostile": 1040,
|
| 1146 |
+
"takeover": 2132,
|
| 1147 |
+
"officially": 1487,
|
| 1148 |
+
"resigned": 1820,
|
| 1149 |
+
"directors": 647,
|
| 1150 |
+
"thank": 2165,
|
| 1151 |
+
"supporters": 2104,
|
| 1152 |
+
"wavering": 2365,
|
| 1153 |
+
"undue": 2274,
|
| 1154 |
+
"pressure": 1646,
|
| 1155 |
+
"mission": 1380,
|
| 1156 |
+
"battle": 274,
|
| 1157 |
+
"constitutional": 502,
|
| 1158 |
+
"forward": 900,
|
| 1159 |
+
"designed": 619,
|
| 1160 |
+
"curtail": 569,
|
| 1161 |
+
"fled": 879,
|
| 1162 |
+
"plenty": 1600,
|
| 1163 |
+
"reasons": 1744,
|
| 1164 |
+
"reason": 1743,
|
| 1165 |
+
"noticed": 1458,
|
| 1166 |
+
"shortage": 1963,
|
| 1167 |
+
"labor": 1214,
|
| 1168 |
+
"related": 1789,
|
| 1169 |
+
"spike": 2029,
|
| 1170 |
+
"adult": 107,
|
| 1171 |
+
"disability": 648,
|
| 1172 |
+
"claims": 417,
|
| 1173 |
+
"rollout": 1866,
|
| 1174 |
+
"part": 1537,
|
| 1175 |
+
"scientific": 1909,
|
| 1176 |
+
"progress": 1677,
|
| 1177 |
+
"mandated": 1318,
|
| 1178 |
+
"say": 1895,
|
| 1179 |
+
"test": 2160,
|
| 1180 |
+
"subject": 2081,
|
| 1181 |
+
"experiment": 808,
|
| 1182 |
+
"close": 427,
|
| 1183 |
+
"billion": 300,
|
| 1184 |
+
"advertising": 113,
|
| 1185 |
+
"2022": 23,
|
| 1186 |
+
"spend": 2027,
|
| 1187 |
+
"cover": 549,
|
| 1188 |
+
"book": 321,
|
| 1189 |
+
"author": 243,
|
| 1190 |
+
"edward": 725,
|
| 1191 |
+
"dowd": 697,
|
| 1192 |
+
"roll": 1865,
|
| 1193 |
+
"rival": 1858,
|
| 1194 |
+
"losses": 1297,
|
| 1195 |
+
"vietnam": 2325,
|
| 1196 |
+
"stop": 2062,
|
| 1197 |
+
"useless": 2298,
|
| 1198 |
+
"therapy": 2172,
|
| 1199 |
+
"pushed": 1712,
|
| 1200 |
+
"sheds": 1959,
|
| 1201 |
+
"topic": 2207,
|
| 1202 |
+
"evidence": 790,
|
| 1203 |
+
"obtained": 1475,
|
| 1204 |
+
"select": 1926,
|
| 1205 |
+
"subcommittee": 2079,
|
| 1206 |
+
"reveals": 1842,
|
| 1207 |
+
"prompted": 1684,
|
| 1208 |
+
"drafting": 702,
|
| 1209 |
+
"proximal": 1702,
|
| 1210 |
+
"disprove": 672,
|
| 1211 |
+
"leak": 1231,
|
| 1212 |
+
"sweating": 2126,
|
| 1213 |
+
"bullets": 341,
|
| 1214 |
+
"denied": 613,
|
| 1215 |
+
"freedom": 913,
|
| 1216 |
+
"win": 2391,
|
| 1217 |
+
"alert": 145,
|
| 1218 |
+
"granted": 969,
|
| 1219 |
+
"ab2098": 60,
|
| 1220 |
+
"essentially": 772,
|
| 1221 |
+
"eliminates": 738,
|
| 1222 |
+
"ability": 63,
|
| 1223 |
+
"second": 1916,
|
| 1224 |
+
"opinion": 1497,
|
| 1225 |
+
"promoting": 1683,
|
| 1226 |
+
"priority": 1658,
|
| 1227 |
+
"sharing": 1956,
|
| 1228 |
+
"truthful": 2248,
|
| 1229 |
+
"paramount": 1532,
|
| 1230 |
+
"least": 1233,
|
| 1231 |
+
"qualified": 1717,
|
| 1232 |
+
"oversee": 1521,
|
| 1233 |
+
"credentials": 556,
|
| 1234 |
+
"morally": 1393,
|
| 1235 |
+
"bankrupt": 270,
|
| 1236 |
+
"atmosphere": 225,
|
| 1237 |
+
"air": 140,
|
| 1238 |
+
"traffic": 2216,
|
| 1239 |
+
"controller": 524,
|
| 1240 |
+
"asked": 210,
|
| 1241 |
+
"making": 1312,
|
| 1242 |
+
"impact": 1072,
|
| 1243 |
+
"culture": 565,
|
| 1244 |
+
"weapon": 2368,
|
| 1245 |
+
"ago": 136,
|
| 1246 |
+
"statement": 2052,
|
| 1247 |
+
"aging": 135,
|
| 1248 |
+
"majority": 1310,
|
| 1249 |
+
"jabbed": 1167,
|
| 1250 |
+
"january": 1172,
|
| 1251 |
+
"11": 5,
|
| 1252 |
+
"department": 615,
|
| 1253 |
+
"human": 1049,
|
| 1254 |
+
"services": 1941,
|
| 1255 |
+
"extending": 820,
|
| 1256 |
+
"defies": 603,
|
| 1257 |
+
"logic": 1288,
|
| 1258 |
+
"conflicts": 490,
|
| 1259 |
+
"prior": 1656,
|
| 1260 |
+
"statements": 2053,
|
| 1261 |
+
"became": 276,
|
| 1262 |
+
"right": 1851,
|
| 1263 |
+
"gold": 960,
|
| 1264 |
+
"sounding": 2014,
|
| 1265 |
+
"alarm": 142,
|
| 1266 |
+
"harmful": 999,
|
| 1267 |
+
"legislation": 1240,
|
| 1268 |
+
"happens": 996,
|
| 1269 |
+
"cancerous": 354,
|
| 1270 |
+
"spreads": 2036,
|
| 1271 |
+
"listening": 1272,
|
| 1272 |
+
"wrong": 2413,
|
| 1273 |
+
"experts": 811,
|
| 1274 |
+
"throws": 2190,
|
| 1275 |
+
"common": 453,
|
| 1276 |
+
"sense": 1932,
|
| 1277 |
+
"sb107": 1898,
|
| 1278 |
+
"destined": 623,
|
| 1279 |
+
"ruin": 1874,
|
| 1280 |
+
"interesting": 1141,
|
| 1281 |
+
"statistics": 2056,
|
| 1282 |
+
"africa": 125,
|
| 1283 |
+
"low": 1302,
|
| 1284 |
+
"saved": 1893,
|
| 1285 |
+
"life": 1261,
|
| 1286 |
+
"spite": 2030,
|
| 1287 |
+
"multiple": 1406,
|
| 1288 |
+
"attempts": 232,
|
| 1289 |
+
"block": 311,
|
| 1290 |
+
"heard": 1008,
|
| 1291 |
+
"wi": 2387,
|
| 1292 |
+
"press": 1645,
|
| 1293 |
+
"conference": 488,
|
| 1294 |
+
"exposing": 819,
|
| 1295 |
+
"theft": 2167,
|
| 1296 |
+
"corruption": 534,
|
| 1297 |
+
"rogue": 1864,
|
| 1298 |
+
"members": 1351,
|
| 1299 |
+
"richard": 1850,
|
| 1300 |
+
"mack": 1306,
|
| 1301 |
+
"sued": 2087,
|
| 1302 |
+
"rasmussen": 1729,
|
| 1303 |
+
"poll": 1613,
|
| 1304 |
+
"73": 52,
|
| 1305 |
+
"million": 1367,
|
| 1306 |
+
"someone": 2009,
|
| 1307 |
+
"personally": 1577,
|
| 1308 |
+
"attempted": 230,
|
| 1309 |
+
"lawyer": 1226,
|
| 1310 |
+
"leveled": 1248,
|
| 1311 |
+
"false": 836,
|
| 1312 |
+
"baseless": 272,
|
| 1313 |
+
"allegations": 148,
|
| 1314 |
+
"suffers": 2090,
|
| 1315 |
+
"another": 179,
|
| 1316 |
+
"setback": 1945,
|
| 1317 |
+
"abused": 67,
|
| 1318 |
+
"position": 1617,
|
| 1319 |
+
"threaten": 2184,
|
| 1320 |
+
"cpa": 552,
|
| 1321 |
+
"mismanage": 1377,
|
| 1322 |
+
"funds": 928,
|
| 1323 |
+
"filed": 855,
|
| 1324 |
+
"frivolous": 917,
|
| 1325 |
+
"tracks": 2214,
|
| 1326 |
+
"pattern": 1552,
|
| 1327 |
+
"release": 1791,
|
| 1328 |
+
"forgot": 896,
|
| 1329 |
+
"2009": 17,
|
| 1330 |
+
"settled": 1946,
|
| 1331 |
+
"settlement": 1947,
|
| 1332 |
+
"history": 1024,
|
| 1333 |
+
"marketed": 1329,
|
| 1334 |
+
"completely": 467,
|
| 1335 |
+
"voices": 2343,
|
| 1336 |
+
"blood": 312,
|
| 1337 |
+
"dared": 578,
|
| 1338 |
+
"fired": 868,
|
| 1339 |
+
"result": 1834,
|
| 1340 |
+
"proves": 1697,
|
| 1341 |
+
"attacking": 227,
|
| 1342 |
+
"fake": 834,
|
| 1343 |
+
"story": 2064,
|
| 1344 |
+
"tactic": 2130,
|
| 1345 |
+
"trump": 2243,
|
| 1346 |
+
"colluded": 444,
|
| 1347 |
+
"immunity": 1070,
|
| 1348 |
+
"done": 692,
|
| 1349 |
+
"see": 1920,
|
| 1350 |
+
"full": 923,
|
| 1351 |
+
"interview": 1145,
|
| 1352 |
+
"troops": 2240,
|
| 1353 |
+
"biological": 303,
|
| 1354 |
+
"agent": 131,
|
| 1355 |
+
"agrees": 137,
|
| 1356 |
+
"hopefully": 1032,
|
| 1357 |
+
"subpoena": 2083,
|
| 1358 |
+
"desk": 621,
|
| 1359 |
+
"soon": 2012,
|
| 1360 |
+
"breath": 333,
|
| 1361 |
+
"physician": 1588,
|
| 1362 |
+
"gone": 961,
|
| 1363 |
+
"prevents": 1651,
|
| 1364 |
+
"risks": 1856,
|
| 1365 |
+
"associated": 218,
|
| 1366 |
+
"words": 2400,
|
| 1367 |
+
"revoked": 1848,
|
| 1368 |
+
"unbelievable": 2266,
|
| 1369 |
+
"reinstated": 1786,
|
| 1370 |
+
"andrew": 176,
|
| 1371 |
+
"bostom": 326,
|
| 1372 |
+
"suspended": 2121,
|
| 1373 |
+
"link": 1268,
|
| 1374 |
+
"shot": 1964,
|
| 1375 |
+
"fertility": 851,
|
| 1376 |
+
"counts": 546,
|
| 1377 |
+
"haphazard": 992,
|
| 1378 |
+
"unjustified": 2284,
|
| 1379 |
+
"suspensions": 2122,
|
| 1380 |
+
"needs": 1426,
|
| 1381 |
+
"banned": 271,
|
| 1382 |
+
"thousands": 2183,
|
| 1383 |
+
"credentialed": 555,
|
| 1384 |
+
"restore": 1829,
|
| 1385 |
+
"accounts": 76,
|
| 1386 |
+
"apologize": 191,
|
| 1387 |
+
"hindering": 1022,
|
| 1388 |
+
"thought": 2182,
|
| 1389 |
+
"diversity": 681,
|
| 1390 |
+
"inclusion": 1089,
|
| 1391 |
+
"lot": 1299,
|
| 1392 |
+
"suppressing": 2108,
|
| 1393 |
+
"cheap": 390,
|
| 1394 |
+
"easy": 720,
|
| 1395 |
+
"generic": 939,
|
| 1396 |
+
"drugs": 710,
|
| 1397 |
+
"available": 250,
|
| 1398 |
+
"worldwide": 2407,
|
| 1399 |
+
"favor": 843,
|
| 1400 |
+
"technologies": 2143,
|
| 1401 |
+
"present": 1642,
|
| 1402 |
+
"products": 1670,
|
| 1403 |
+
"offered": 1481,
|
| 1404 |
+
"auspices": 240,
|
| 1405 |
+
"approval": 196,
|
| 1406 |
+
"authorization": 246,
|
| 1407 |
+
"mandating": 1319,
|
| 1408 |
+
"investigational": 1150,
|
| 1409 |
+
"therapies": 2171,
|
| 1410 |
+
"therefore": 2173,
|
| 1411 |
+
"21": 26,
|
| 1412 |
+
"360bbb": 37,
|
| 1413 |
+
"emergencies": 744,
|
| 1414 |
+
"organization": 1509,
|
| 1415 |
+
"violating": 2331,
|
| 1416 |
+
"action": 83,
|
| 1417 |
+
"facts": 830,
|
| 1418 |
+
"epidemic": 765,
|
| 1419 |
+
"illness": 1066,
|
| 1420 |
+
"receive": 1749,
|
| 1421 |
+
"warrior": 2361,
|
| 1422 |
+
"heather": 1011,
|
| 1423 |
+
"gibson": 946,
|
| 1424 |
+
"joined": 1184,
|
| 1425 |
+
"alive": 147,
|
| 1426 |
+
"today": 2199,
|
| 1427 |
+
"senate": 1929,
|
| 1428 |
+
"proposal": 1687,
|
| 1429 |
+
"transportation": 2224,
|
| 1430 |
+
"measure": 1344,
|
| 1431 |
+
"passenger": 1545,
|
| 1432 |
+
"airlines": 141,
|
| 1433 |
+
"trains": 2218,
|
| 1434 |
+
"rapid": 1728,
|
| 1435 |
+
"transit": 2221,
|
| 1436 |
+
"buses": 343,
|
| 1437 |
+
"program": 1676,
|
| 1438 |
+
"receives": 1751,
|
| 1439 |
+
"current": 568,
|
| 1440 |
+
"fiscal": 872,
|
| 1441 |
+
"masks": 1334,
|
| 1442 |
+
"imposed": 1082,
|
| 1443 |
+
"place": 1594,
|
| 1444 |
+
"wearing": 2371,
|
| 1445 |
+
"significant": 1977,
|
| 1446 |
+
"request": 1812,
|
| 1447 |
+
"wear": 2369,
|
| 1448 |
+
"benefited": 290,
|
| 1449 |
+
"work": 2401,
|
| 1450 |
+
"supporting": 2105,
|
| 1451 |
+
"donation": 690,
|
| 1452 |
+
"propaganda": 1686,
|
| 1453 |
+
"thing": 2174,
|
| 1454 |
+
"involved": 1153,
|
| 1455 |
+
"communities": 456,
|
| 1456 |
+
"assault": 215,
|
| 1457 |
+
"acidosis": 79,
|
| 1458 |
+
"permissive": 1572,
|
| 1459 |
+
"everyday": 786,
|
| 1460 |
+
"induces": 1103,
|
| 1461 |
+
"levels": 1249,
|
| 1462 |
+
"carbon": 359,
|
| 1463 |
+
"dioxide": 643,
|
| 1464 |
+
"body": 316,
|
| 1465 |
+
"unity": 2281,
|
| 1466 |
+
"participation": 1539,
|
| 1467 |
+
"forget": 895,
|
| 1468 |
+
"actions": 84,
|
| 1469 |
+
"matter": 1336,
|
| 1470 |
+
"winning": 2392,
|
| 1471 |
+
"looks": 1296,
|
| 1472 |
+
"like": 1264,
|
| 1473 |
+
"stay": 2058,
|
| 1474 |
+
"keep": 1197,
|
| 1475 |
+
"moving": 1401,
|
| 1476 |
+
"amazing": 164,
|
| 1477 |
+
"patriots": 1551,
|
| 1478 |
+
"salute": 1889,
|
| 1479 |
+
"ashish": 208,
|
| 1480 |
+
"jha": 1177,
|
| 1481 |
+
"coordinator": 527,
|
| 1482 |
+
"flipped": 881,
|
| 1483 |
+
"till": 2195,
|
| 1484 |
+
"day": 581,
|
| 1485 |
+
"suffering": 2089,
|
| 1486 |
+
"political": 1610,
|
| 1487 |
+
"socioeconomic": 2004,
|
| 1488 |
+
"spectrum": 2023,
|
| 1489 |
+
"starting": 2049,
|
| 1490 |
+
"homeschool": 1030,
|
| 1491 |
+
"john": 1182,
|
| 1492 |
+
"oliver": 1491,
|
| 1493 |
+
"team": 2141,
|
| 1494 |
+
"excellent": 794,
|
| 1495 |
+
"resource": 1823,
|
| 1496 |
+
"considering": 497,
|
| 1497 |
+
"option": 1504,
|
| 1498 |
+
"check": 391,
|
| 1499 |
+
"reimagine": 1783,
|
| 1500 |
+
"education": 724,
|
| 1501 |
+
"expose": 816,
|
| 1502 |
+
"toxins": 2212,
|
| 1503 |
+
"published": 1705,
|
| 1504 |
+
"journal": 1186,
|
| 1505 |
+
"ecotoxicology": 723,
|
| 1506 |
+
"environmental": 764,
|
| 1507 |
+
"pose": 1616,
|
| 1508 |
+
"wearers": 2370,
|
| 1509 |
+
"due": 712,
|
| 1510 |
+
"emitted": 745,
|
| 1511 |
+
"tight": 2194,
|
| 1512 |
+
"fitting": 875,
|
| 1513 |
+
"face": 826,
|
| 1514 |
+
"coverings": 551,
|
| 1515 |
+
"worth": 2410,
|
| 1516 |
+
"backed": 263,
|
| 1517 |
+
"gates": 933,
|
| 1518 |
+
"pandemics": 1529,
|
| 1519 |
+
"debate": 590,
|
| 1520 |
+
"cause": 368,
|
| 1521 |
+
"damage": 573,
|
| 1522 |
+
"leaders": 1228,
|
| 1523 |
+
"encourage": 752,
|
| 1524 |
+
"lawlessness": 1223,
|
| 1525 |
+
"create": 553,
|
| 1526 |
+
"chaos": 388,
|
| 1527 |
+
"accept": 68,
|
| 1528 |
+
"surveillance": 2117,
|
| 1529 |
+
"poisoning": 1607,
|
| 1530 |
+
"earlier": 717,
|
| 1531 |
+
"german": 943,
|
| 1532 |
+
"review": 1845,
|
| 1533 |
+
"final": 861,
|
| 1534 |
+
"nail": 1413,
|
| 1535 |
+
"coffin": 436,
|
| 1536 |
+
"fresh": 915,
|
| 1537 |
+
"04": 1,
|
| 1538 |
+
"concentration": 477,
|
| 1539 |
+
"800": 55,
|
| 1540 |
+
"acute": 88,
|
| 1541 |
+
"toxicity": 2211,
|
| 1542 |
+
"come": 449,
|
| 1543 |
+
"laundry": 1222,
|
| 1544 |
+
"harms": 1000,
|
| 1545 |
+
"surprised": 2116,
|
| 1546 |
+
"inaccurate": 1084,
|
| 1547 |
+
"misrepresented": 1378,
|
| 1548 |
+
"advance": 109,
|
| 1549 |
+
"objective": 1472,
|
| 1550 |
+
"informed": 1115,
|
| 1551 |
+
"flawed": 878,
|
| 1552 |
+
"excluding": 797,
|
| 1553 |
+
"reinforce": 1785,
|
| 1554 |
+
"anyone": 189,
|
| 1555 |
+
"selectively": 1927,
|
| 1556 |
+
"choosing": 403,
|
| 1557 |
+
"desired": 620,
|
| 1558 |
+
"trillion": 2239,
|
| 1559 |
+
"vitamins": 2341,
|
| 1560 |
+
"nepute": 1431,
|
| 1561 |
+
"brave": 331,
|
| 1562 |
+
"tellers": 2149,
|
| 1563 |
+
"chose": 404,
|
| 1564 |
+
"stand": 2042,
|
| 1565 |
+
"report": 1805,
|
| 1566 |
+
"week": 2375,
|
| 1567 |
+
"hear": 1007,
|
| 1568 |
+
"dry": 711,
|
| 1569 |
+
"navigate": 1418,
|
| 1570 |
+
"carefully": 361,
|
| 1571 |
+
"cross": 562,
|
| 1572 |
+
"collaborative": 440,
|
| 1573 |
+
"scientists": 1911,
|
| 1574 |
+
"performed": 1567,
|
| 1575 |
+
"rigorous": 1853,
|
| 1576 |
+
"examining": 792,
|
| 1577 |
+
"effectiveness": 728,
|
| 1578 |
+
"home": 1028,
|
| 1579 |
+
"orders": 1507,
|
| 1580 |
+
"short": 1962,
|
| 1581 |
+
"term": 2154,
|
| 1582 |
+
"determined": 629,
|
| 1583 |
+
"restricting": 1832,
|
| 1584 |
+
"leaving": 1234,
|
| 1585 |
+
"homes": 1029,
|
| 1586 |
+
"protocols": 1695,
|
| 1587 |
+
"despair": 622,
|
| 1588 |
+
"unrelated": 2287,
|
| 1589 |
+
"perceived": 1563,
|
| 1590 |
+
"comply": 471,
|
| 1591 |
+
"tell": 2148,
|
| 1592 |
+
"greatest": 972,
|
| 1593 |
+
"purveyor": 1710,
|
| 1594 |
+
"far": 839,
|
| 1595 |
+
"looking": 1295,
|
| 1596 |
+
"independent": 1096,
|
| 1597 |
+
"frontline": 919,
|
| 1598 |
+
"ever": 783,
|
| 1599 |
+
"podcast": 1603,
|
| 1600 |
+
"filmed": 859,
|
| 1601 |
+
"submit": 2082,
|
| 1602 |
+
"thegoldreport": 2168,
|
| 1603 |
+
"com": 446,
|
| 1604 |
+
"malone": 1314,
|
| 1605 |
+
"weigh": 2378,
|
| 1606 |
+
"awarded": 255,
|
| 1607 |
+
"financial": 864,
|
| 1608 |
+
"incentives": 1085,
|
| 1609 |
+
"factor": 829,
|
| 1610 |
+
"key": 1199,
|
| 1611 |
+
"question": 1718,
|
| 1612 |
+
"episode": 766,
|
| 1613 |
+
"america": 165,
|
| 1614 |
+
"broken": 339,
|
| 1615 |
+
"patients": 1550,
|
| 1616 |
+
"special": 2021,
|
| 1617 |
+
"previously": 1653,
|
| 1618 |
+
"kaiser": 1195,
|
| 1619 |
+
"permanente": 1571,
|
| 1620 |
+
"santa": 1891,
|
| 1621 |
+
"rosa": 1869,
|
| 1622 |
+
"reintroduced": 1787,
|
| 1623 |
+
"reversed": 1844,
|
| 1624 |
+
"applying": 194,
|
| 1625 |
+
"compliance": 469,
|
| 1626 |
+
"order": 1505,
|
| 1627 |
+
"disobedience": 667,
|
| 1628 |
+
"residents": 1819,
|
| 1629 |
+
"formula": 899,
|
| 1630 |
+
"grow": 982,
|
| 1631 |
+
"backbone": 262,
|
| 1632 |
+
"ron": 1867,
|
| 1633 |
+
"johnson": 1183,
|
| 1634 |
+
"small": 1997,
|
| 1635 |
+
"offices": 1485,
|
| 1636 |
+
"hospitals": 1038,
|
| 1637 |
+
"schools": 1907,
|
| 1638 |
+
"100": 4,
|
| 1639 |
+
"ineffective": 1105,
|
| 1640 |
+
"always": 163,
|
| 1641 |
+
"insanity": 1125,
|
| 1642 |
+
"expecting": 806,
|
| 1643 |
+
"abandon": 62,
|
| 1644 |
+
"resources": 1824,
|
| 1645 |
+
"welcome": 2379,
|
| 1646 |
+
"exposed": 817,
|
| 1647 |
+
"blow": 313,
|
| 1648 |
+
"whistles": 2384,
|
| 1649 |
+
"provide": 1698,
|
| 1650 |
+
"fought": 902,
|
| 1651 |
+
"forefront": 894,
|
| 1652 |
+
"others": 1513,
|
| 1653 |
+
"bring": 335,
|
| 1654 |
+
"students": 2074,
|
| 1655 |
+
"especially": 770,
|
| 1656 |
+
"preexisting": 1632,
|
| 1657 |
+
"concerns": 480,
|
| 1658 |
+
"screen": 1914,
|
| 1659 |
+
"sadness": 1882,
|
| 1660 |
+
"frustration": 922,
|
| 1661 |
+
"sleep": 1995,
|
| 1662 |
+
"problems": 1664,
|
| 1663 |
+
"forced": 892,
|
| 1664 |
+
"detriment": 630,
|
| 1665 |
+
"little": 1276,
|
| 1666 |
+
"negatively": 1428,
|
| 1667 |
+
"impacted": 1073,
|
| 1668 |
+
"yielding": 2420,
|
| 1669 |
+
"results": 1837,
|
| 1670 |
+
"better": 293,
|
| 1671 |
+
"job": 1178,
|
| 1672 |
+
"managing": 1316,
|
| 1673 |
+
"politician": 1611,
|
| 1674 |
+
"meta": 1361,
|
| 1675 |
+
"conducted": 486,
|
| 1676 |
+
"cochran": 434,
|
| 1677 |
+
"institute": 1133,
|
| 1678 |
+
"considered": 496,
|
| 1679 |
+
"standard": 2043,
|
| 1680 |
+
"reviews": 1847,
|
| 1681 |
+
"concluded": 481,
|
| 1682 |
+
"n95": 1412,
|
| 1683 |
+
"p2": 1525,
|
| 1684 |
+
"respirators": 1825,
|
| 1685 |
+
"offer": 1480,
|
| 1686 |
+
"protection": 1691,
|
| 1687 |
+
"implementing": 1079,
|
| 1688 |
+
"subdued": 2080,
|
| 1689 |
+
"survive": 2119,
|
| 1690 |
+
"reckoning": 1754,
|
| 1691 |
+
"ready": 1738,
|
| 1692 |
+
"back": 261,
|
| 1693 |
+
"sold": 2005,
|
| 1694 |
+
"solution": 2008,
|
| 1695 |
+
"improve": 1083,
|
| 1696 |
+
"individuals": 1101,
|
| 1697 |
+
"struggling": 2073,
|
| 1698 |
+
"dysphoria": 714,
|
| 1699 |
+
"actually": 87,
|
| 1700 |
+
"exacerbate": 791,
|
| 1701 |
+
"leading": 1229,
|
| 1702 |
+
"permanent": 1570,
|
| 1703 |
+
"irreversible": 1157,
|
| 1704 |
+
"coat": 433,
|
| 1705 |
+
"summit": 2099,
|
| 1706 |
+
"live": 1277,
|
| 1707 |
+
"kick": 1200,
|
| 1708 |
+
"collusion": 445,
|
| 1709 |
+
"totalitarian": 2208,
|
| 1710 |
+
"disguised": 664,
|
| 1711 |
+
"plandemic": 1596,
|
| 1712 |
+
"streaming": 2066,
|
| 1713 |
+
"salemnow": 1887,
|
| 1714 |
+
"fire": 867,
|
| 1715 |
+
"evaluation": 779,
|
| 1716 |
+
"simone": 1986,
|
| 1717 |
+
"alfie": 146,
|
| 1718 |
+
"oakes": 1469,
|
| 1719 |
+
"premiere": 1636,
|
| 1720 |
+
"films": 860,
|
| 1721 |
+
"film": 858,
|
| 1722 |
+
"frontlinefilmsusa": 920,
|
| 1723 |
+
"astounding": 221,
|
| 1724 |
+
"97": 57,
|
| 1725 |
+
"recommended": 1757,
|
| 1726 |
+
"line": 1267,
|
| 1727 |
+
"survival": 2118,
|
| 1728 |
+
"isolating": 1158,
|
| 1729 |
+
"inside": 1126,
|
| 1730 |
+
"machine": 1304,
|
| 1731 |
+
"sacrificing": 1881,
|
| 1732 |
+
"behavior": 283,
|
| 1733 |
+
"main": 1307,
|
| 1734 |
+
"agenda": 130,
|
| 1735 |
+
"give": 949,
|
| 1736 |
+
"fruits": 921,
|
| 1737 |
+
"corrupt": 533,
|
| 1738 |
+
"viruses": 2335,
|
| 1739 |
+
"speaking": 2020,
|
| 1740 |
+
"quite": 1722,
|
| 1741 |
+
"combat": 447,
|
| 1742 |
+
"waking": 2353,
|
| 1743 |
+
"realize": 1740,
|
| 1744 |
+
"protecting": 1690,
|
| 1745 |
+
"advancing": 110,
|
| 1746 |
+
"scammers": 1901,
|
| 1747 |
+
"impersonators": 1076,
|
| 1748 |
+
"attempting": 231,
|
| 1749 |
+
"private": 1660,
|
| 1750 |
+
"message": 1357,
|
| 1751 |
+
"followers": 889,
|
| 1752 |
+
"note": 1454,
|
| 1753 |
+
"telegram": 2147,
|
| 1754 |
+
"scam": 1900,
|
| 1755 |
+
"account": 73,
|
| 1756 |
+
"official": 1486,
|
| 1757 |
+
"awakening": 253,
|
| 1758 |
+
"movie": 1400,
|
| 1759 |
+
"premieres": 1637,
|
| 1760 |
+
"austin": 241,
|
| 1761 |
+
"tx": 2258,
|
| 1762 |
+
"june": 1191,
|
| 1763 |
+
"6pm": 49,
|
| 1764 |
+
"ct": 564,
|
| 1765 |
+
"let": 1245,
|
| 1766 |
+
"word": 2399,
|
| 1767 |
+
"awesome": 258,
|
| 1768 |
+
"project": 1680,
|
| 1769 |
+
"gather": 934,
|
| 1770 |
+
"friends": 916,
|
| 1771 |
+
"family": 837,
|
| 1772 |
+
"together": 2202,
|
| 1773 |
+
"april": 199,
|
| 1774 |
+
"moss": 1395,
|
| 1775 |
+
"hosting": 1041,
|
| 1776 |
+
"virtual": 2334,
|
| 1777 |
+
"meet": 1348,
|
| 1778 |
+
"greet": 974,
|
| 1779 |
+
"parties": 1541,
|
| 1780 |
+
"beginning": 281,
|
| 1781 |
+
"15": 8,
|
| 1782 |
+
"pm": 1602,
|
| 1783 |
+
"cst": 563,
|
| 1784 |
+
"red": 1763,
|
| 1785 |
+
"carpet": 363,
|
| 1786 |
+
"sometime": 2011,
|
| 1787 |
+
"highwire": 1020,
|
| 1788 |
+
"livestream": 1281,
|
| 1789 |
+
"entire": 762,
|
| 1790 |
+
"event": 781,
|
| 1791 |
+
"set": 1944,
|
| 1792 |
+
"reminder": 1799,
|
| 1793 |
+
"signed": 1976,
|
| 1794 |
+
"worried": 2408,
|
| 1795 |
+
"occurring": 1478,
|
| 1796 |
+
"thegreatawakeningmovie": 2169,
|
| 1797 |
+
"travel": 2226,
|
| 1798 |
+
"tickets": 2191,
|
| 1799 |
+
"screening": 1915,
|
| 1800 |
+
"historic": 1023,
|
| 1801 |
+
"interviews": 1146,
|
| 1802 |
+
"night": 1443,
|
| 1803 |
+
"guests": 984,
|
| 1804 |
+
"vibe": 2321,
|
| 1805 |
+
"evening": 780,
|
| 1806 |
+
"convinced": 525,
|
| 1807 |
+
"save": 1892,
|
| 1808 |
+
"un": 2265,
|
| 1809 |
+
"seeking": 1922,
|
| 1810 |
+
"vast": 2312,
|
| 1811 |
+
"powers": 1627,
|
| 1812 |
+
"stronger": 2071,
|
| 1813 |
+
"governance": 964,
|
| 1814 |
+
"tools": 2205,
|
| 1815 |
+
"deal": 586,
|
| 1816 |
+
"international": 1144,
|
| 1817 |
+
"crises": 560,
|
| 1818 |
+
"every": 785,
|
| 1819 |
+
"separate": 1936,
|
| 1820 |
+
"phenomena": 1585,
|
| 1821 |
+
"mass": 1335,
|
| 1822 |
+
"hysteria": 1057,
|
| 1823 |
+
"refuse": 1771,
|
| 1824 |
+
"consistent": 498,
|
| 1825 |
+
"bad": 267,
|
| 1826 |
+
"nothing": 1456,
|
| 1827 |
+
"discrimination": 659,
|
| 1828 |
+
"pretext": 1649,
|
| 1829 |
+
"discriminate": 658,
|
| 1830 |
+
"basis": 273,
|
| 1831 |
+
"viewpoints": 2327,
|
| 1832 |
+
"pay": 1554,
|
| 1833 |
+
"attention": 234,
|
| 1834 |
+
"happening": 995,
|
| 1835 |
+
"locked": 1287,
|
| 1836 |
+
"things": 2175,
|
| 1837 |
+
"complacent": 465,
|
| 1838 |
+
"oppose": 1499,
|
| 1839 |
+
"opposed": 1500,
|
| 1840 |
+
"constitution": 501,
|
| 1841 |
+
"unconstitutional": 2269,
|
| 1842 |
+
"unconscionable": 2268,
|
| 1843 |
+
"casualty": 367,
|
| 1844 |
+
"admitting": 105,
|
| 1845 |
+
"asks": 212,
|
| 1846 |
+
"proving": 1701,
|
| 1847 |
+
"last": 1219,
|
| 1848 |
+
"approximately": 198,
|
| 1849 |
+
"answer": 180,
|
| 1850 |
+
"relinquish": 1795,
|
| 1851 |
+
"irrational": 1155,
|
| 1852 |
+
"destructive": 626,
|
| 1853 |
+
"responsible": 1828,
|
| 1854 |
+
"rule": 1875,
|
| 1855 |
+
"40": 38,
|
| 1856 |
+
"britain": 337,
|
| 1857 |
+
"taking": 2134,
|
| 1858 |
+
"month": 1391,
|
| 1859 |
+
"fear": 848,
|
| 1860 |
+
"marxism": 1331,
|
| 1861 |
+
"fighting": 854,
|
| 1862 |
+
"underestimate": 2270,
|
| 1863 |
+
"extent": 822,
|
| 1864 |
+
"power": 1626,
|
| 1865 |
+
"go": 956,
|
| 1866 |
+
"impose": 1081,
|
| 1867 |
+
"choice": 399,
|
| 1868 |
+
"bid": 295,
|
| 1869 |
+
"remove": 1800,
|
| 1870 |
+
"founded": 905,
|
| 1871 |
+
"defend": 600,
|
| 1872 |
+
"suspiciously": 2123,
|
| 1873 |
+
"parallel": 1531,
|
| 1874 |
+
"veritas": 2318,
|
| 1875 |
+
"debacle": 589,
|
| 1876 |
+
"james": 1170,
|
| 1877 |
+
"keefe": 1196,
|
| 1878 |
+
"comprised": 472,
|
| 1879 |
+
"pastor": 1548,
|
| 1880 |
+
"jurgen": 1192,
|
| 1881 |
+
"matthesius": 1337,
|
| 1882 |
+
"entrusted": 763,
|
| 1883 |
+
"certain": 381,
|
| 1884 |
+
"enduring": 754,
|
| 1885 |
+
"unjust": 2283,
|
| 1886 |
+
"prison": 1659,
|
| 1887 |
+
"sentence": 1935,
|
| 1888 |
+
"discovered": 656,
|
| 1889 |
+
"acted": 82,
|
| 1890 |
+
"corruptly": 535,
|
| 1891 |
+
"misappropriating": 1373,
|
| 1892 |
+
"dealing": 587,
|
| 1893 |
+
"operational": 1496,
|
| 1894 |
+
"unjustly": 2285,
|
| 1895 |
+
"existing": 802,
|
| 1896 |
+
"threatening": 2186,
|
| 1897 |
+
"lawsuits": 1225,
|
| 1898 |
+
"confronted": 491,
|
| 1899 |
+
"privately": 1661,
|
| 1900 |
+
"urged": 2296,
|
| 1901 |
+
"correct": 530,
|
| 1902 |
+
"retaliated": 1838,
|
| 1903 |
+
"startling": 2050,
|
| 1904 |
+
"accusations": 78,
|
| 1905 |
+
"dispute": 673,
|
| 1906 |
+
"litigation": 1275,
|
| 1907 |
+
"advised": 115,
|
| 1908 |
+
"amicable": 169,
|
| 1909 |
+
"resolution": 1822,
|
| 1910 |
+
"essential": 771,
|
| 1911 |
+
"surviving": 2120,
|
| 1912 |
+
"counsel": 541,
|
| 1913 |
+
"bod": 315,
|
| 1914 |
+
"chicago": 393,
|
| 1915 |
+
"firm": 869,
|
| 1916 |
+
"wagenmaker": 2347,
|
| 1917 |
+
"oberly": 1471,
|
| 1918 |
+
"wagenmakerlaw": 2348,
|
| 1919 |
+
"sally": 1888,
|
| 1920 |
+
"behind": 284,
|
| 1921 |
+
"scenes": 1904,
|
| 1922 |
+
"embolden": 742,
|
| 1923 |
+
"aim": 138,
|
| 1924 |
+
"eliminate": 737,
|
| 1925 |
+
"founder": 906,
|
| 1926 |
+
"uniquely": 2278,
|
| 1927 |
+
"uniting": 2280,
|
| 1928 |
+
"push": 1711,
|
| 1929 |
+
"info": 1113,
|
| 1930 |
+
"312": 34,
|
| 1931 |
+
"626": 48,
|
| 1932 |
+
"1600": 10,
|
| 1933 |
+
"urge": 2295,
|
| 1934 |
+
"reach": 1734,
|
| 1935 |
+
"distracted": 676,
|
| 1936 |
+
"intend": 1139,
|
| 1937 |
+
"inflict": 1110,
|
| 1938 |
+
"efficacious": 729,
|
| 1939 |
+
"continued": 512,
|
| 1940 |
+
"uses": 2300,
|
| 1941 |
+
"restrictions": 1833,
|
| 1942 |
+
"violated": 2330,
|
| 1943 |
+
"demand": 608,
|
| 1944 |
+
"pretend": 1648,
|
| 1945 |
+
"normal": 1452,
|
| 1946 |
+
"fall": 835,
|
| 1947 |
+
"nobody": 1447,
|
| 1948 |
+
"seems": 1923,
|
| 1949 |
+
"mishandling": 1375,
|
| 1950 |
+
"classified": 419,
|
| 1951 |
+
"hillary": 1021,
|
| 1952 |
+
"clinton": 426,
|
| 1953 |
+
"tried": 2236,
|
| 1954 |
+
"restrict": 1831,
|
| 1955 |
+
"given": 950,
|
| 1956 |
+
"persisted": 1574,
|
| 1957 |
+
"fact": 828,
|
| 1958 |
+
"disaster": 650,
|
| 1959 |
+
"tricked": 2235,
|
| 1960 |
+
"believing": 287,
|
| 1961 |
+
"kaira": 1194,
|
| 1962 |
+
"mccallum": 1340,
|
| 1963 |
+
"jp": 1188,
|
| 1964 |
+
"complaint": 466,
|
| 1965 |
+
"harsh": 1001,
|
| 1966 |
+
"aware": 256,
|
| 1967 |
+
"messaging": 1358,
|
| 1968 |
+
"users": 2299,
|
| 1969 |
+
"dm": 683,
|
| 1970 |
+
"asking": 211,
|
| 1971 |
+
"donations": 691,
|
| 1972 |
+
"personal": 1576,
|
| 1973 |
+
"co": 432,
|
| 1974 |
+
"reveal": 1841,
|
| 1975 |
+
"space": 2017,
|
| 1976 |
+
"7pm": 54,
|
| 1977 |
+
"est": 773,
|
| 1978 |
+
"wednesday": 2374,
|
| 1979 |
+
"28th": 31,
|
| 1980 |
+
"real": 1739,
|
| 1981 |
+
"supplementing": 2101,
|
| 1982 |
+
"vitamin": 2340,
|
| 1983 |
+
"chooses": 402,
|
| 1984 |
+
"says": 1897,
|
| 1985 |
+
"watching": 2364,
|
| 1986 |
+
"nazism": 1420,
|
| 1987 |
+
"unfold": 2277,
|
| 1988 |
+
"height": 1013,
|
| 1989 |
+
"gave": 935,
|
| 1990 |
+
"simple": 1987,
|
| 1991 |
+
"included": 1087,
|
| 1992 |
+
"protocol": 1694,
|
| 1993 |
+
"reputation": 1811,
|
| 1994 |
+
"aimed": 139,
|
| 1995 |
+
"discrediting": 657,
|
| 1996 |
+
"character": 389,
|
| 1997 |
+
"silencing": 1983,
|
| 1998 |
+
"voice": 2342,
|
| 1999 |
+
"happy": 997,
|
| 2000 |
+
"value": 2309,
|
| 2001 |
+
"nv": 1466,
|
| 2002 |
+
"sisolak": 1990,
|
| 2003 |
+
"announced": 177,
|
| 2004 |
+
"lifted": 1262,
|
| 2005 |
+
"immediately": 1068,
|
| 2006 |
+
"ditto": 680,
|
| 2007 |
+
"newsom": 1440,
|
| 2008 |
+
"reversals": 1843,
|
| 2009 |
+
"motivated": 1397,
|
| 2010 |
+
"upcoming": 2290,
|
| 2011 |
+
"elections": 735,
|
| 2012 |
+
"rather": 1731,
|
| 2013 |
+
"actual": 86,
|
| 2014 |
+
"uncensored": 2267,
|
| 2015 |
+
"tour": 2209,
|
| 2016 |
+
"lone": 1290,
|
| 2017 |
+
"star": 2046,
|
| 2018 |
+
"texas": 2164,
|
| 2019 |
+
"sized": 1994,
|
| 2020 |
+
"heading": 1004,
|
| 2021 |
+
"houston": 1045,
|
| 2022 |
+
"liberties": 1251,
|
| 2023 |
+
"miss": 1379,
|
| 2024 |
+
"near": 1422,
|
| 2025 |
+
"register": 1776,
|
| 2026 |
+
"rumble": 1878,
|
| 2027 |
+
"uploaded": 2293,
|
| 2028 |
+
"videos": 2324,
|
| 2029 |
+
"silenced": 1982,
|
| 2030 |
+
"directly": 645,
|
| 2031 |
+
"attorneys": 236,
|
| 2032 |
+
"drsimonegold": 708,
|
| 2033 |
+
"lockdown": 1285,
|
| 2034 |
+
"protest": 1693,
|
| 2035 |
+
"london": 1289,
|
| 2036 |
+
"weekend": 2376,
|
| 2037 |
+
"participants": 1538,
|
| 2038 |
+
"outlets": 1517,
|
| 2039 |
+
"covered": 550,
|
| 2040 |
+
"mentioned": 1355,
|
| 2041 |
+
"americasfrontlinedoctors": 168,
|
| 2042 |
+
"citizen": 411,
|
| 2043 |
+
"corps": 529,
|
| 2044 |
+
"theaters": 2166,
|
| 2045 |
+
"georgetown": 941,
|
| 2046 |
+
"dallas": 572,
|
| 2047 |
+
"literature": 1274,
|
| 2048 |
+
"suggests": 2094,
|
| 2049 |
+
"legitimate": 1242,
|
| 2050 |
+
"childhood": 397,
|
| 2051 |
+
"vaccinations": 2305,
|
| 2052 |
+
"owe": 1524,
|
| 2053 |
+
"validity": 2308,
|
| 2054 |
+
"regardless": 1775,
|
| 2055 |
+
"six": 1992,
|
| 2056 |
+
"doses": 694,
|
| 2057 |
+
"vaccinated": 2303,
|
| 2058 |
+
"canada": 352,
|
| 2059 |
+
"advisor": 116,
|
| 2060 |
+
"supriya": 2110,
|
| 2061 |
+
"sharma": 1957,
|
| 2062 |
+
"september": 1937,
|
| 2063 |
+
"nonprofit": 1450,
|
| 2064 |
+
"council": 540,
|
| 2065 |
+
"safer": 1884,
|
| 2066 |
+
"wait": 2349,
|
| 2067 |
+
"approach": 195,
|
| 2068 |
+
"pointed": 1605,
|
| 2069 |
+
"worse": 2409,
|
| 2070 |
+
"outcomes": 1516,
|
| 2071 |
+
"non": 1448,
|
| 2072 |
+
"diseases": 663,
|
| 2073 |
+
"ratio": 1732,
|
| 2074 |
+
"taken": 2131,
|
| 2075 |
+
"consideration": 495,
|
| 2076 |
+
"deciding": 596,
|
| 2077 |
+
"instead": 1132,
|
| 2078 |
+
"blindly": 310,
|
| 2079 |
+
"recommendation": 1756,
|
| 2080 |
+
"smell": 1999,
|
| 2081 |
+
"british": 338,
|
| 2082 |
+
"level": 1247,
|
| 2083 |
+
"regulatory": 1782,
|
| 2084 |
+
"oversight": 1522,
|
| 2085 |
+
"accepted": 70,
|
| 2086 |
+
"jobs": 1179,
|
| 2087 |
+
"signing": 1979,
|
| 2088 |
+
"licensure": 1257,
|
| 2089 |
+
"company": 459,
|
| 2090 |
+
"product": 1668,
|
| 2091 |
+
"revolving": 1849,
|
| 2092 |
+
"door": 693,
|
| 2093 |
+
"whose": 2386,
|
| 2094 |
+
"regulates": 1779,
|
| 2095 |
+
"raises": 1725,
|
| 2096 |
+
"impartiality": 1075,
|
| 2097 |
+
"independence": 1095,
|
| 2098 |
+
"regulators": 1781,
|
| 2099 |
+
"almost": 154,
|
| 2100 |
+
"neurological": 1435,
|
| 2101 |
+
"complications": 470,
|
| 2102 |
+
"astra": 222,
|
| 2103 |
+
"zenica": 2425,
|
| 2104 |
+
"headaches": 1003,
|
| 2105 |
+
"tremors": 2231,
|
| 2106 |
+
"muscle": 1407,
|
| 2107 |
+
"spasms": 2018,
|
| 2108 |
+
"insomnia": 1129,
|
| 2109 |
+
"tinnitus": 2197,
|
| 2110 |
+
"sleepiness": 1996,
|
| 2111 |
+
"vertigo": 2319,
|
| 2112 |
+
"double": 695,
|
| 2113 |
+
"vision": 2336,
|
| 2114 |
+
"numbness": 1462,
|
| 2115 |
+
"itching": 1164,
|
| 2116 |
+
"taste": 2138,
|
| 2117 |
+
"alterations": 159,
|
| 2118 |
+
"hoarseness": 1026,
|
| 2119 |
+
"cognitive": 437,
|
| 2120 |
+
"fog": 885,
|
| 2121 |
+
"developing": 633,
|
| 2122 |
+
"females": 850,
|
| 2123 |
+
"brain": 330,
|
| 2124 |
+
"clots": 431,
|
| 2125 |
+
"bell": 288,
|
| 2126 |
+
"palsy": 1528,
|
| 2127 |
+
"touted": 2210,
|
| 2128 |
+
"2017": 19,
|
| 2129 |
+
"allergies": 150,
|
| 2130 |
+
"neurodevelopmental": 1434,
|
| 2131 |
+
"ndd": 1421,
|
| 2132 |
+
"compared": 461,
|
| 2133 |
+
"paul": 1553,
|
| 2134 |
+
"thomas": 2180,
|
| 2135 |
+
"studied": 2075,
|
| 2136 |
+
"practice": 1629,
|
| 2137 |
+
"063": 2,
|
| 2138 |
+
"percent": 1564,
|
| 2139 |
+
"deficit": 602,
|
| 2140 |
+
"hyperactivity": 1055,
|
| 2141 |
+
"disorder": 668,
|
| 2142 |
+
"adhd": 96,
|
| 2143 |
+
"none": 1449,
|
| 2144 |
+
"odds": 1479,
|
| 2145 |
+
"developmental": 635,
|
| 2146 |
+
"delays": 606,
|
| 2147 |
+
"asthma": 220,
|
| 2148 |
+
"ear": 716,
|
| 2149 |
+
"infections": 1108,
|
| 2150 |
+
"schedule": 1905,
|
| 2151 |
+
"evergreen": 784,
|
| 2152 |
+
"business": 344,
|
| 2153 |
+
"simian": 1984,
|
| 2154 |
+
"sv40": 2125,
|
| 2155 |
+
"excluded": 796,
|
| 2156 |
+
"filings": 857,
|
| 2157 |
+
"oncogenesis": 1492,
|
| 2158 |
+
"causing": 371,
|
| 2159 |
+
"recall": 1746,
|
| 2160 |
+
"refuses": 1773,
|
| 2161 |
+
"supports": 2106,
|
| 2162 |
+
"conclusion": 482,
|
| 2163 |
+
"signal": 1974,
|
| 2164 |
+
"seizures": 1925,
|
| 2165 |
+
"convulsions": 526,
|
| 2166 |
+
"met": 1360,
|
| 2167 |
+
"statistical": 2055,
|
| 2168 |
+
"threshold": 2188,
|
| 2169 |
+
"aged": 127,
|
| 2170 |
+
"receipt": 1748,
|
| 2171 |
+
"sign": 1973,
|
| 2172 |
+
"condition": 484,
|
| 2173 |
+
"required": 1814,
|
| 2174 |
+
"verify": 2317,
|
| 2175 |
+
"overall": 1519,
|
| 2176 |
+
"72": 51,
|
| 2177 |
+
"recorded": 1761,
|
| 2178 |
+
"toddlers": 2201,
|
| 2179 |
+
"arm": 203,
|
| 2180 |
+
"clinical": 424,
|
| 2181 |
+
"trial": 2233,
|
| 2182 |
+
"filing": 856,
|
| 2183 |
+
"withheld": 2395,
|
| 2184 |
+
"agency": 129,
|
| 2185 |
+
"denial": 611,
|
| 2186 |
+
"eua": 778,
|
| 2187 |
+
"additionally": 95,
|
| 2188 |
+
"identified": 1059,
|
| 2189 |
+
"instances": 1131,
|
| 2190 |
+
"attributed": 237,
|
| 2191 |
+
"causes": 370,
|
| 2192 |
+
"undermined": 2271,
|
| 2193 |
+
"lost": 1298,
|
| 2194 |
+
"comparison": 462,
|
| 2195 |
+
"grossing": 977,
|
| 2196 |
+
"puts": 1715,
|
| 2197 |
+
"healthier": 1005,
|
| 2198 |
+
"200": 16,
|
| 2199 |
+
"papers": 1530,
|
| 2200 |
+
"suggesting": 2093,
|
| 2201 |
+
"dysregulation": 715,
|
| 2202 |
+
"neuropsychiatric": 1436,
|
| 2203 |
+
"asperger": 214,
|
| 2204 |
+
"autism": 248,
|
| 2205 |
+
"hypervaccination": 1056,
|
| 2206 |
+
"mccullough": 1341,
|
| 2207 |
+
"outcome": 1515,
|
| 2208 |
+
"supposed": 2107,
|
| 2209 |
+
"disease": 662,
|
| 2210 |
+
"cleveland": 421,
|
| 2211 |
+
"clinic": 423,
|
| 2212 |
+
"date": 580,
|
| 2213 |
+
"lower": 1303,
|
| 2214 |
+
"contracting": 516,
|
| 2215 |
+
"counterparts": 542,
|
| 2216 |
+
"23": 27,
|
| 2217 |
+
"got": 963,
|
| 2218 |
+
"discernible": 651,
|
| 2219 |
+
"vulnerable": 2346,
|
| 2220 |
+
"18": 12,
|
| 2221 |
+
"2x": 32,
|
| 2222 |
+
"menstrual": 1353,
|
| 2223 |
+
"4x": 43,
|
| 2224 |
+
"infants": 1107,
|
| 2225 |
+
"cureus": 567,
|
| 2226 |
+
"five": 876,
|
| 2227 |
+
"developed": 632,
|
| 2228 |
+
"countries": 544,
|
| 2229 |
+
"infant": 1106,
|
| 2230 |
+
"variables": 2310,
|
| 2231 |
+
"authorities": 244,
|
| 2232 |
+
"size": 1993,
|
| 2233 |
+
"fits": 874,
|
| 2234 |
+
"twice": 2256,
|
| 2235 |
+
"recommends": 1759,
|
| 2236 |
+
"financially": 865,
|
| 2237 |
+
"incentivized": 1086,
|
| 2238 |
+
"college": 442,
|
| 2239 |
+
"obstetricians": 1474,
|
| 2240 |
+
"gynecologists": 988,
|
| 2241 |
+
"acog": 80,
|
| 2242 |
+
"promote": 1682,
|
| 2243 |
+
"pregnant": 1634,
|
| 2244 |
+
"women": 2397,
|
| 2245 |
+
"exclusion": 798,
|
| 2246 |
+
"trials": 2234,
|
| 2247 |
+
"tested": 2161,
|
| 2248 |
+
"pregnancy": 1633,
|
| 2249 |
+
"accepting": 71,
|
| 2250 |
+
"grant": 968,
|
| 2251 |
+
"contingent": 510,
|
| 2252 |
+
"guidance": 985,
|
| 2253 |
+
"medicine": 1347,
|
| 2254 |
+
"compromised": 474,
|
| 2255 |
+
"heart": 1009,
|
| 2256 |
+
"inflammation": 1109,
|
| 2257 |
+
"scarring": 1902,
|
| 2258 |
+
"hearts": 1010,
|
| 2259 |
+
"indicates": 1099,
|
| 2260 |
+
"foundation": 903,
|
| 2261 |
+
"arrhythmias": 205,
|
| 2262 |
+
"exercise": 801,
|
| 2263 |
+
"serving": 1942,
|
| 2264 |
+
"trigger": 2238,
|
| 2265 |
+
"koka": 1208,
|
| 2266 |
+
"putting": 1716,
|
| 2267 |
+
"concedes": 476,
|
| 2268 |
+
"apparent": 192,
|
| 2269 |
+
"per": 1562,
|
| 2270 |
+
"lack": 1216,
|
| 2271 |
+
"record": 1760,
|
| 2272 |
+
"secretary": 1917,
|
| 2273 |
+
"becerra": 277,
|
| 2274 |
+
"bold": 317,
|
| 2275 |
+
"boosters": 324,
|
| 2276 |
+
"development": 634,
|
| 2277 |
+
"start": 2047,
|
| 2278 |
+
"although": 162,
|
| 2279 |
+
"definition": 605,
|
| 2280 |
+
"turbo": 2252,
|
| 2281 |
+
"commonly": 454,
|
| 2282 |
+
"define": 604,
|
| 2283 |
+
"aggressive": 134,
|
| 2284 |
+
"onset": 1494,
|
| 2285 |
+
"resistant": 1821,
|
| 2286 |
+
"primarily": 1655,
|
| 2287 |
+
"increasing": 1094,
|
| 2288 |
+
"expected": 805,
|
| 2289 |
+
"countless": 543,
|
| 2290 |
+
"clinicians": 425,
|
| 2291 |
+
"around": 204,
|
| 2292 |
+
"coincidence": 439,
|
| 2293 |
+
"anthrax": 182,
|
| 2294 |
+
"closer": 429,
|
| 2295 |
+
"look": 1294,
|
| 2296 |
+
"gives": 951,
|
| 2297 |
+
"understanding": 2272,
|
| 2298 |
+
"stage": 2040,
|
| 2299 |
+
"1906": 13,
|
| 2300 |
+
"regulation": 1780,
|
| 2301 |
+
"stringent": 2067,
|
| 2302 |
+
"standards": 2044,
|
| 2303 |
+
"injection": 1118,
|
| 2304 |
+
"director": 646,
|
| 2305 |
+
"mandy": 1321,
|
| 2306 |
+
"cohen": 438,
|
| 2307 |
+
"anticipate": 184,
|
| 2308 |
+
"flu": 884,
|
| 2309 |
+
"annual": 178,
|
| 2310 |
+
"preparing": 1640,
|
| 2311 |
+
"influenza": 1112,
|
| 2312 |
+
"expect": 804,
|
| 2313 |
+
"pushing": 1713,
|
| 2314 |
+
"thirty": 2179,
|
| 2315 |
+
"swiss": 2127,
|
| 2316 |
+
"signs": 1980,
|
| 2317 |
+
"possible": 1620,
|
| 2318 |
+
"repeated": 1803,
|
| 2319 |
+
"moderate": 1384,
|
| 2320 |
+
"cells": 374,
|
| 2321 |
+
"christian": 405,
|
| 2322 |
+
"mueller": 1405,
|
| 2323 |
+
"addition": 93,
|
| 2324 |
+
"dangerous": 577,
|
| 2325 |
+
"wake": 2352,
|
| 2326 |
+
"argued": 201,
|
| 2327 |
+
"lie": 1258,
|
| 2328 |
+
"followed": 888,
|
| 2329 |
+
"pulmonary": 1707,
|
| 2330 |
+
"embolism": 743,
|
| 2331 |
+
"formation": 897,
|
| 2332 |
+
"everywhere": 789,
|
| 2333 |
+
"forcing": 893,
|
| 2334 |
+
"perfectly": 1565,
|
| 2335 |
+
"unethical": 2275,
|
| 2336 |
+
"500": 45,
|
| 2337 |
+
"additional": 94,
|
| 2338 |
+
"involving": 1154,
|
| 2339 |
+
"england": 758,
|
| 2340 |
+
"began": 279,
|
| 2341 |
+
"linked": 1269,
|
| 2342 |
+
"myocardial": 1409,
|
| 2343 |
+
"turn": 2253,
|
| 2344 |
+
"lead": 1227,
|
| 2345 |
+
"sponsored": 2032,
|
| 2346 |
+
"assessed": 216,
|
| 2347 |
+
"methodology": 1363,
|
| 2348 |
+
"glaring": 953,
|
| 2349 |
+
"compare": 460,
|
| 2350 |
+
"cots": 538,
|
| 2351 |
+
"compromise": 473,
|
| 2352 |
+
"flow": 883,
|
| 2353 |
+
"baby": 260,
|
| 2354 |
+
"dramatic": 703,
|
| 2355 |
+
"drop": 706,
|
| 2356 |
+
"birthrates": 306,
|
| 2357 |
+
"post": 1621,
|
| 2358 |
+
"decrease": 598,
|
| 2359 |
+
"severity": 1951,
|
| 2360 |
+
"hospitalization": 1036,
|
| 2361 |
+
"released": 1792,
|
| 2362 |
+
"myocarditis": 1410,
|
| 2363 |
+
"kye": 1211,
|
| 2364 |
+
"hun": 1051,
|
| 2365 |
+
"kim": 1204,
|
| 2366 |
+
"chonnam": 400,
|
| 2367 |
+
"south": 2016,
|
| 2368 |
+
"korean": 1210,
|
| 2369 |
+
"compensated": 463,
|
| 2370 |
+
"korea": 1209,
|
| 2371 |
+
"august": 239,
|
| 2372 |
+
"contrast": 521,
|
| 2373 |
+
"add": 91,
|
| 2374 |
+
"sole": 2007,
|
| 2375 |
+
"repeating": 1804,
|
| 2376 |
+
"eventually": 782,
|
| 2377 |
+
"27": 29,
|
| 2378 |
+
"fold": 886,
|
| 2379 |
+
"miscarriages": 1374,
|
| 2380 |
+
"adverse": 112,
|
| 2381 |
+
"fetal": 852,
|
| 2382 |
+
"quoting": 1723,
|
| 2383 |
+
"reaction": 1735,
|
| 2384 |
+
"reports": 1808,
|
| 2385 |
+
"gardasil": 932,
|
| 2386 |
+
"dental": 614,
|
| 2387 |
+
"adamant": 89,
|
| 2388 |
+
"monetarily": 1388,
|
| 2389 |
+
"insurance": 1137,
|
| 2390 |
+
"cardiologists": 360,
|
| 2391 |
+
"suggested": 2092,
|
| 2392 |
+
"award": 254,
|
| 2393 |
+
"actor": 85,
|
| 2394 |
+
"jamie": 1171,
|
| 2395 |
+
"foxx": 908,
|
| 2396 |
+
"mysterious": 1411,
|
| 2397 |
+
"stroke": 2068,
|
| 2398 |
+
"12th": 6,
|
| 2399 |
+
"undisclosed": 2273,
|
| 2400 |
+
"wish": 2394,
|
| 2401 |
+
"speedy": 2026,
|
| 2402 |
+
"recovery": 1762,
|
| 2403 |
+
"hope": 1031,
|
| 2404 |
+
"trend": 2232,
|
| 2405 |
+
"downward": 698,
|
| 2406 |
+
"australian": 242,
|
| 2407 |
+
"astrazeneca": 223,
|
| 2408 |
+
"dying": 713,
|
| 2409 |
+
"significantly": 1978,
|
| 2410 |
+
"spotlighted": 2034,
|
| 2411 |
+
"bounty": 328,
|
| 2412 |
+
"400": 39,
|
| 2413 |
+
"bonus": 320,
|
| 2414 |
+
"paid": 1526,
|
| 2415 |
+
"pediatricians": 1558,
|
| 2416 |
+
"administered": 101,
|
| 2417 |
+
"wonder": 2398,
|
| 2418 |
+
"payouts": 1556,
|
| 2419 |
+
"average": 252,
|
| 2420 |
+
"repeat": 1802,
|
| 2421 |
+
"insulting": 1136,
|
| 2422 |
+
"victims": 2322,
|
| 2423 |
+
"vaers": 2307,
|
| 2424 |
+
"17": 11,
|
| 2425 |
+
"28": 30,
|
| 2426 |
+
"relatively": 1790,
|
| 2427 |
+
"testimony": 2162,
|
| 2428 |
+
"stephanie": 2061,
|
| 2429 |
+
"foster": 901,
|
| 2430 |
+
"citizens": 412,
|
| 2431 |
+
"inquiry": 1124,
|
| 2432 |
+
"details": 627,
|
| 2433 |
+
"mother": 1396,
|
| 2434 |
+
"begged": 280,
|
| 2435 |
+
"minutes": 1372,
|
| 2436 |
+
"travesty": 2227,
|
| 2437 |
+
"something": 2010,
|
| 2438 |
+
"market": 1328,
|
| 2439 |
+
"ensure": 760,
|
| 2440 |
+
"price": 1654,
|
| 2441 |
+
"sure": 2111,
|
| 2442 |
+
"paints": 1527,
|
| 2443 |
+
"picture": 1590,
|
| 2444 |
+
"maybe": 1338,
|
| 2445 |
+
"ignoring": 1063,
|
| 2446 |
+
"elephant": 736,
|
| 2447 |
+
"room": 1868,
|
| 2448 |
+
"lengthy": 1243,
|
| 2449 |
+
"choose": 401,
|
| 2450 |
+
"wisely": 2393,
|
| 2451 |
+
"licensed": 1254,
|
| 2452 |
+
"mean": 1342,
|
| 2453 |
+
"anyway": 190,
|
| 2454 |
+
"ample": 171,
|
| 2455 |
+
"mixture": 1383,
|
| 2456 |
+
"adjuvants": 98,
|
| 2457 |
+
"contained": 506,
|
| 2458 |
+
"induced": 1102,
|
| 2459 |
+
"autoimmune": 249,
|
| 2460 |
+
"sobering": 2001,
|
| 2461 |
+
"reduced": 1766,
|
| 2462 |
+
"old": 1490,
|
| 2463 |
+
"diagnosis": 637,
|
| 2464 |
+
"codes": 435,
|
| 2465 |
+
"status": 2057,
|
| 2466 |
+
"already": 157,
|
| 2467 |
+
"tracking": 2213,
|
| 2468 |
+
"advents": 111,
|
| 2469 |
+
"mounting": 1398,
|
| 2470 |
+
"continuing": 513,
|
| 2471 |
+
"foundational": 904,
|
| 2472 |
+
"explanation": 814,
|
| 2473 |
+
"faa": 825,
|
| 2474 |
+
"longstanding": 1293,
|
| 2475 |
+
"ekg": 731,
|
| 2476 |
+
"limit": 1266,
|
| 2477 |
+
"commercial": 452,
|
| 2478 |
+
"pilot": 1593,
|
| 2479 |
+
"ticking": 2192,
|
| 2480 |
+
"bomb": 318,
|
| 2481 |
+
"added": 92,
|
| 2482 |
+
"routine": 1872,
|
| 2483 |
+
"immunization": 1071,
|
| 2484 |
+
"might": 1366,
|
| 2485 |
+
"1986": 14,
|
| 2486 |
+
"sound": 2013,
|
| 2487 |
+
"contradiction": 520,
|
| 2488 |
+
"recommending": 1758,
|
| 2489 |
+
"signals": 1975,
|
| 2490 |
+
"waited": 2350,
|
| 2491 |
+
"mutating": 1408,
|
| 2492 |
+
"faster": 841,
|
| 2493 |
+
"updated": 2291,
|
| 2494 |
+
"scientifically": 1910,
|
| 2495 |
+
"tyrants": 2261,
|
| 2496 |
+
"ny": 1467,
|
| 2497 |
+
"boosted": 322,
|
| 2498 |
+
"variant": 2311,
|
| 2499 |
+
"removed": 1801,
|
| 2500 |
+
"equation": 767,
|
| 2501 |
+
"admits": 104,
|
| 2502 |
+
"superior": 2100,
|
| 2503 |
+
"reinfection": 1784,
|
| 2504 |
+
"remain": 1796,
|
| 2505 |
+
"transfusions": 2219,
|
| 2506 |
+
"shared": 1954,
|
| 2507 |
+
"widely": 2388,
|
| 2508 |
+
"nursing": 1465,
|
| 2509 |
+
"livelihood": 1278,
|
| 2510 |
+
"altering": 160,
|
| 2511 |
+
"twenty": 2255,
|
| 2512 |
+
"former": 898,
|
| 2513 |
+
"nyc": 1468,
|
| 2514 |
+
"refusing": 1774,
|
| 2515 |
+
"demanding": 609,
|
| 2516 |
+
"upheld": 2292,
|
| 2517 |
+
"previous": 1652,
|
| 2518 |
+
"ruling": 1877,
|
| 2519 |
+
"invalidating": 1148,
|
| 2520 |
+
"resulting": 1836,
|
| 2521 |
+
"departure": 616,
|
| 2522 |
+
"termination": 2155,
|
| 2523 |
+
"positions": 1618,
|
| 2524 |
+
"justice": 1193,
|
| 2525 |
+
"neri": 1432,
|
| 2526 |
+
"arbitrary": 200,
|
| 2527 |
+
"capricious": 358,
|
| 2528 |
+
"meaning": 1343,
|
| 2529 |
+
"rational": 1733,
|
| 2530 |
+
"served": 1940,
|
| 2531 |
+
"10": 3,
|
| 2532 |
+
"employees": 747,
|
| 2533 |
+
"backpay": 264,
|
| 2534 |
+
"ralph": 1726,
|
| 2535 |
+
"porzio": 1615,
|
| 2536 |
+
"denials": 612,
|
| 2537 |
+
"religious": 1794,
|
| 2538 |
+
"exemptions": 800,
|
| 2539 |
+
"teachers": 2140,
|
| 2540 |
+
"indicated": 1098,
|
| 2541 |
+
"staffers": 2039,
|
| 2542 |
+
"adhering": 97,
|
| 2543 |
+
"illegal": 1064,
|
| 2544 |
+
"pennsylvania": 1560,
|
| 2545 |
+
"requires": 1815,
|
| 2546 |
+
"threatened": 2185,
|
| 2547 |
+
"discipline": 652,
|
| 2548 |
+
"employment": 749,
|
| 2549 |
+
"favoring": 844,
|
| 2550 |
+
"compromising": 475,
|
| 2551 |
+
"process": 1666,
|
| 2552 |
+
"jeffrey": 1174,
|
| 2553 |
+
"sutton": 2124,
|
| 2554 |
+
"appeals": 193,
|
| 2555 |
+
"6th": 50,
|
| 2556 |
+
"circuit": 408,
|
| 2557 |
+
"allows": 153,
|
| 2558 |
+
"prohibit": 1678,
|
| 2559 |
+
"providers": 1700,
|
| 2560 |
+
"performing": 1568,
|
| 2561 |
+
"administering": 102,
|
| 2562 |
+
"procedures": 1665,
|
| 2563 |
+
"minors": 1371,
|
| 2564 |
+
"capacity": 357,
|
| 2565 |
+
"consent": 493,
|
| 2566 |
+
"admin": 99,
|
| 2567 |
+
"ended": 753,
|
| 2568 |
+
"contractors": 518,
|
| 2569 |
+
"decided": 595,
|
| 2570 |
+
"veteran": 2320,
|
| 2571 |
+
"affairs": 120,
|
| 2572 |
+
"victory": 2323,
|
| 2573 |
+
"mississippi": 1381,
|
| 2574 |
+
"mandatory": 1320,
|
| 2575 |
+
"brings": 336,
|
| 2576 |
+
"restoring": 1830,
|
| 2577 |
+
"georgia": 942,
|
| 2578 |
+
"seven": 1948,
|
| 2579 |
+
"transplant": 2223,
|
| 2580 |
+
"emory": 746,
|
| 2581 |
+
"beliefs": 285,
|
| 2582 |
+
"scored": 1912,
|
| 2583 |
+
"huge": 1048,
|
| 2584 |
+
"march": 1326,
|
| 2585 |
+
"sided": 1972,
|
| 2586 |
+
"sharp": 1958,
|
| 2587 |
+
"memorial": 1352,
|
| 2588 |
+
"san": 1890,
|
| 2589 |
+
"diego": 641,
|
| 2590 |
+
"navy": 1419,
|
| 2591 |
+
"deployment": 617,
|
| 2592 |
+
"sailors": 1886,
|
| 2593 |
+
"livelihoods": 1279,
|
| 2594 |
+
"destroyed": 625,
|
| 2595 |
+
"opposes": 1501,
|
| 2596 |
+
"struck": 2072,
|
| 2597 |
+
"bills": 302,
|
| 2598 |
+
"freedoms": 914,
|
| 2599 |
+
"contact": 505,
|
| 2600 |
+
"vote": 2344,
|
| 2601 |
+
"round": 1871,
|
| 2602 |
+
"legislative": 1241,
|
| 2603 |
+
"session": 1943,
|
| 2604 |
+
"5th": 47,
|
| 2605 |
+
"contracts": 519,
|
| 2606 |
+
"draconian": 701,
|
| 2607 |
+
"agents": 132,
|
| 2608 |
+
"waitress": 2351,
|
| 2609 |
+
"yankee": 2415,
|
| 2610 |
+
"stadium": 2037,
|
| 2611 |
+
"athletes": 224,
|
| 2612 |
+
"exempt": 799,
|
| 2613 |
+
"mayor": 1339,
|
| 2614 |
+
"eric": 768,
|
| 2615 |
+
"adams": 90,
|
| 2616 |
+
"thinks": 2177,
|
| 2617 |
+
"class": 418,
|
| 2618 |
+
"dispensable": 670,
|
| 2619 |
+
"worthy": 2411,
|
| 2620 |
+
"millionaire": 1368,
|
| 2621 |
+
"chad": 383,
|
| 2622 |
+
"carswell": 364,
|
| 2623 |
+
"born": 325,
|
| 2624 |
+
"mind": 1370,
|
| 2625 |
+
"pentagon": 1561,
|
| 2626 |
+
"legally": 1239,
|
| 2627 |
+
"c19": 345,
|
| 2628 |
+
"um": 2264,
|
| 2629 |
+
"obviously": 1477,
|
| 2630 |
+
"sensible": 1933,
|
| 2631 |
+
"soldiers": 2006,
|
| 2632 |
+
"99": 58,
|
| 2633 |
+
"prohibits": 1679,
|
| 2634 |
+
"employers": 748,
|
| 2635 |
+
"requiring": 1816
|
| 2636 |
+
}
|
| 2637 |
+
}
|
| 2638 |
+
}
|
topic_embeddings.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ec7b7d19e3633ada9d3cf955e009c35001dd8c953f274228b6648a6aa2159bc
|
| 3 |
+
size 16472
|
topics.json
ADDED
|
@@ -0,0 +1,382 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"topic_representations": {
|
| 3 |
+
"-1": [
|
| 4 |
+
[
|
| 5 |
+
"fauci",
|
| 6 |
+
0.5911860466003418
|
| 7 |
+
],
|
| 8 |
+
[
|
| 9 |
+
"misinformation",
|
| 10 |
+
0.5288810729980469
|
| 11 |
+
],
|
| 12 |
+
[
|
| 13 |
+
"censor",
|
| 14 |
+
0.4909350872039795
|
| 15 |
+
],
|
| 16 |
+
[
|
| 17 |
+
"ivermectin",
|
| 18 |
+
0.48051369190216064
|
| 19 |
+
],
|
| 20 |
+
[
|
| 21 |
+
"missouri",
|
| 22 |
+
0.47592994570732117
|
| 23 |
+
]
|
| 24 |
+
],
|
| 25 |
+
"0": [
|
| 26 |
+
[
|
| 27 |
+
"lockdowns",
|
| 28 |
+
0.5408705472946167
|
| 29 |
+
],
|
| 30 |
+
[
|
| 31 |
+
"fauci",
|
| 32 |
+
0.5250968933105469
|
| 33 |
+
],
|
| 34 |
+
[
|
| 35 |
+
"mask",
|
| 36 |
+
0.5095757842063904
|
| 37 |
+
],
|
| 38 |
+
[
|
| 39 |
+
"live",
|
| 40 |
+
0.5005893707275391
|
| 41 |
+
],
|
| 42 |
+
[
|
| 43 |
+
"austin",
|
| 44 |
+
0.48056912422180176
|
| 45 |
+
]
|
| 46 |
+
],
|
| 47 |
+
"1": [
|
| 48 |
+
[
|
| 49 |
+
"vaccinated",
|
| 50 |
+
0.5975531339645386
|
| 51 |
+
],
|
| 52 |
+
[
|
| 53 |
+
"pfizer",
|
| 54 |
+
0.5520672798156738
|
| 55 |
+
],
|
| 56 |
+
[
|
| 57 |
+
"myocarditis",
|
| 58 |
+
0.45418816804885864
|
| 59 |
+
],
|
| 60 |
+
[
|
| 61 |
+
"hpv",
|
| 62 |
+
0.4428684115409851
|
| 63 |
+
],
|
| 64 |
+
[
|
| 65 |
+
"deaths",
|
| 66 |
+
0.4220045208930969
|
| 67 |
+
]
|
| 68 |
+
],
|
| 69 |
+
"2": [
|
| 70 |
+
[
|
| 71 |
+
"unvaccinated",
|
| 72 |
+
0.5199500322341919
|
| 73 |
+
],
|
| 74 |
+
[
|
| 75 |
+
"upheld",
|
| 76 |
+
0.5053120851516724
|
| 77 |
+
],
|
| 78 |
+
[
|
| 79 |
+
"unconstitutional",
|
| 80 |
+
0.5005941390991211
|
| 81 |
+
],
|
| 82 |
+
[
|
| 83 |
+
"mandatory",
|
| 84 |
+
0.4533640444278717
|
| 85 |
+
],
|
| 86 |
+
[
|
| 87 |
+
"exemptions",
|
| 88 |
+
0.4429168403148651
|
| 89 |
+
]
|
| 90 |
+
]
|
| 91 |
+
},
|
| 92 |
+
"topics": [
|
| 93 |
+
-1,
|
| 94 |
+
1,
|
| 95 |
+
-1,
|
| 96 |
+
2,
|
| 97 |
+
-1,
|
| 98 |
+
-1,
|
| 99 |
+
1,
|
| 100 |
+
-1,
|
| 101 |
+
-1,
|
| 102 |
+
1,
|
| 103 |
+
0,
|
| 104 |
+
1,
|
| 105 |
+
-1,
|
| 106 |
+
1,
|
| 107 |
+
1,
|
| 108 |
+
-1,
|
| 109 |
+
1,
|
| 110 |
+
0,
|
| 111 |
+
0,
|
| 112 |
+
0,
|
| 113 |
+
1,
|
| 114 |
+
0,
|
| 115 |
+
2,
|
| 116 |
+
-1,
|
| 117 |
+
0,
|
| 118 |
+
1,
|
| 119 |
+
1,
|
| 120 |
+
-1,
|
| 121 |
+
0,
|
| 122 |
+
1,
|
| 123 |
+
-1,
|
| 124 |
+
1,
|
| 125 |
+
-1,
|
| 126 |
+
0,
|
| 127 |
+
1,
|
| 128 |
+
0,
|
| 129 |
+
0,
|
| 130 |
+
0,
|
| 131 |
+
0,
|
| 132 |
+
0,
|
| 133 |
+
1,
|
| 134 |
+
0,
|
| 135 |
+
0,
|
| 136 |
+
-1,
|
| 137 |
+
-1,
|
| 138 |
+
-1,
|
| 139 |
+
0,
|
| 140 |
+
-1,
|
| 141 |
+
-1,
|
| 142 |
+
0,
|
| 143 |
+
-1,
|
| 144 |
+
0,
|
| 145 |
+
-1,
|
| 146 |
+
0,
|
| 147 |
+
0,
|
| 148 |
+
0,
|
| 149 |
+
0,
|
| 150 |
+
1,
|
| 151 |
+
0,
|
| 152 |
+
-1,
|
| 153 |
+
2,
|
| 154 |
+
0,
|
| 155 |
+
-1,
|
| 156 |
+
0,
|
| 157 |
+
0,
|
| 158 |
+
1,
|
| 159 |
+
0,
|
| 160 |
+
0,
|
| 161 |
+
0,
|
| 162 |
+
-1,
|
| 163 |
+
1,
|
| 164 |
+
1,
|
| 165 |
+
1,
|
| 166 |
+
0,
|
| 167 |
+
-1,
|
| 168 |
+
1,
|
| 169 |
+
1,
|
| 170 |
+
0,
|
| 171 |
+
-1,
|
| 172 |
+
1,
|
| 173 |
+
2,
|
| 174 |
+
-1,
|
| 175 |
+
-1,
|
| 176 |
+
-1,
|
| 177 |
+
0,
|
| 178 |
+
0,
|
| 179 |
+
-1,
|
| 180 |
+
-1,
|
| 181 |
+
2,
|
| 182 |
+
-1,
|
| 183 |
+
-1,
|
| 184 |
+
1,
|
| 185 |
+
0,
|
| 186 |
+
0,
|
| 187 |
+
-1,
|
| 188 |
+
1,
|
| 189 |
+
-1,
|
| 190 |
+
1,
|
| 191 |
+
-1,
|
| 192 |
+
1,
|
| 193 |
+
-1,
|
| 194 |
+
-1,
|
| 195 |
+
1,
|
| 196 |
+
0,
|
| 197 |
+
2,
|
| 198 |
+
0,
|
| 199 |
+
2,
|
| 200 |
+
1,
|
| 201 |
+
-1,
|
| 202 |
+
0,
|
| 203 |
+
-1,
|
| 204 |
+
1,
|
| 205 |
+
0,
|
| 206 |
+
0,
|
| 207 |
+
1,
|
| 208 |
+
1,
|
| 209 |
+
-1,
|
| 210 |
+
0,
|
| 211 |
+
-1,
|
| 212 |
+
1,
|
| 213 |
+
0,
|
| 214 |
+
0,
|
| 215 |
+
-1,
|
| 216 |
+
1,
|
| 217 |
+
-1,
|
| 218 |
+
2,
|
| 219 |
+
0,
|
| 220 |
+
1,
|
| 221 |
+
1,
|
| 222 |
+
-1,
|
| 223 |
+
-1,
|
| 224 |
+
1,
|
| 225 |
+
1,
|
| 226 |
+
1,
|
| 227 |
+
1,
|
| 228 |
+
1,
|
| 229 |
+
1,
|
| 230 |
+
0,
|
| 231 |
+
1,
|
| 232 |
+
1,
|
| 233 |
+
-1,
|
| 234 |
+
1,
|
| 235 |
+
0,
|
| 236 |
+
-1,
|
| 237 |
+
1,
|
| 238 |
+
0,
|
| 239 |
+
2,
|
| 240 |
+
1,
|
| 241 |
+
-1,
|
| 242 |
+
0,
|
| 243 |
+
-1,
|
| 244 |
+
0,
|
| 245 |
+
0,
|
| 246 |
+
2,
|
| 247 |
+
-1,
|
| 248 |
+
0,
|
| 249 |
+
0,
|
| 250 |
+
-1,
|
| 251 |
+
-1,
|
| 252 |
+
1,
|
| 253 |
+
0,
|
| 254 |
+
0,
|
| 255 |
+
-1,
|
| 256 |
+
1,
|
| 257 |
+
-1,
|
| 258 |
+
1,
|
| 259 |
+
2,
|
| 260 |
+
0,
|
| 261 |
+
1,
|
| 262 |
+
-1,
|
| 263 |
+
0,
|
| 264 |
+
-1,
|
| 265 |
+
-1,
|
| 266 |
+
1,
|
| 267 |
+
2,
|
| 268 |
+
0,
|
| 269 |
+
1,
|
| 270 |
+
-1,
|
| 271 |
+
2,
|
| 272 |
+
-1,
|
| 273 |
+
2,
|
| 274 |
+
-1,
|
| 275 |
+
-1,
|
| 276 |
+
-1,
|
| 277 |
+
1,
|
| 278 |
+
-1,
|
| 279 |
+
0,
|
| 280 |
+
-1,
|
| 281 |
+
0,
|
| 282 |
+
-1,
|
| 283 |
+
-1,
|
| 284 |
+
0,
|
| 285 |
+
1,
|
| 286 |
+
-1,
|
| 287 |
+
0,
|
| 288 |
+
0,
|
| 289 |
+
-1,
|
| 290 |
+
-1,
|
| 291 |
+
0,
|
| 292 |
+
1,
|
| 293 |
+
1,
|
| 294 |
+
0,
|
| 295 |
+
2,
|
| 296 |
+
0,
|
| 297 |
+
0,
|
| 298 |
+
-1,
|
| 299 |
+
-1,
|
| 300 |
+
0,
|
| 301 |
+
-1,
|
| 302 |
+
-1,
|
| 303 |
+
1,
|
| 304 |
+
-1,
|
| 305 |
+
1,
|
| 306 |
+
-1,
|
| 307 |
+
-1,
|
| 308 |
+
0,
|
| 309 |
+
-1,
|
| 310 |
+
-1,
|
| 311 |
+
-1,
|
| 312 |
+
-1,
|
| 313 |
+
0,
|
| 314 |
+
1,
|
| 315 |
+
0,
|
| 316 |
+
0,
|
| 317 |
+
-1,
|
| 318 |
+
0,
|
| 319 |
+
0,
|
| 320 |
+
1,
|
| 321 |
+
1,
|
| 322 |
+
0,
|
| 323 |
+
0,
|
| 324 |
+
0,
|
| 325 |
+
1,
|
| 326 |
+
2,
|
| 327 |
+
0,
|
| 328 |
+
0,
|
| 329 |
+
0,
|
| 330 |
+
-1,
|
| 331 |
+
-1,
|
| 332 |
+
2,
|
| 333 |
+
0,
|
| 334 |
+
2,
|
| 335 |
+
0,
|
| 336 |
+
0,
|
| 337 |
+
0,
|
| 338 |
+
0,
|
| 339 |
+
-1,
|
| 340 |
+
-1,
|
| 341 |
+
0,
|
| 342 |
+
2,
|
| 343 |
+
2
|
| 344 |
+
],
|
| 345 |
+
"topic_sizes": {
|
| 346 |
+
"-1": 84,
|
| 347 |
+
"1": 62,
|
| 348 |
+
"2": 20,
|
| 349 |
+
"0": 85
|
| 350 |
+
},
|
| 351 |
+
"topic_mapper": [
|
| 352 |
+
[
|
| 353 |
+
-1,
|
| 354 |
+
-1,
|
| 355 |
+
-1
|
| 356 |
+
],
|
| 357 |
+
[
|
| 358 |
+
0,
|
| 359 |
+
0,
|
| 360 |
+
0
|
| 361 |
+
],
|
| 362 |
+
[
|
| 363 |
+
1,
|
| 364 |
+
1,
|
| 365 |
+
1
|
| 366 |
+
],
|
| 367 |
+
[
|
| 368 |
+
2,
|
| 369 |
+
2,
|
| 370 |
+
2
|
| 371 |
+
]
|
| 372 |
+
],
|
| 373 |
+
"topic_labels": {
|
| 374 |
+
"-1": "-1_fauci_misinformation_censor_ivermectin",
|
| 375 |
+
"0": "0_lockdowns_fauci_mask_live",
|
| 376 |
+
"1": "1_vaccinated_pfizer_myocarditis_hpv",
|
| 377 |
+
"2": "2_unvaccinated_upheld_unconstitutional_mandatory"
|
| 378 |
+
},
|
| 379 |
+
"custom_labels": null,
|
| 380 |
+
"_outliers": 1,
|
| 381 |
+
"topic_aspects": {}
|
| 382 |
+
}
|