updated README, evaluation
Browse files- README.md +28 -36
- data/tweet_emoji/test.jsonl +2 -2
- data/tweet_emoji/train.jsonl +2 -2
- data/tweet_emoji/validation.jsonl +2 -2
- evaluation/README.txt +12 -0
- evaluation/dummy_predictions/tempo-wic.txt +1472 -0
- evaluation/dummy_predictions/tweet-emoji.txt +0 -0
- evaluation/dummy_predictions/tweet-emotion.txt +3259 -0
- evaluation/dummy_predictions/tweet-hate.txt +1433 -0
- evaluation/dummy_predictions/tweet-intimacy.txt +396 -0
- evaluation/dummy_predictions/tweet-ner7.txt +0 -0
- evaluation/dummy_predictions/tweet-nerd.txt +407 -0
- evaluation/dummy_predictions/tweet-qa.txt +1203 -0
- evaluation/dummy_predictions/tweet-qg.txt +1203 -0
- evaluation/dummy_predictions/tweet-sentiment.txt +0 -0
- evaluation/dummy_predictions/tweet-similarity.txt +450 -0
- evaluation/dummy_predictions/tweet-topic.txt +1679 -0
- evaluation.py → evaluation/evaluation.py +24 -11
- requirements.txt → evaluation/requirements.txt +0 -0
- evaluation/scores.json +27 -0
- super_tweeteval.py +2 -1
README.md
CHANGED
|
@@ -43,18 +43,18 @@ All tasks provide custom training, validation and test splits.
|
|
| 43 |
|
| 44 |
| **task** | **dataset** | **load dataset** | **description** | **number of instances** |
|
| 45 |
|----------------------------|----------------|------------------|------------------------------------|-------------------------|
|
| 46 |
-
| Topic Classification |
|
| 47 |
-
| NER |
|
| 48 |
-
| Question Answering |
|
| 49 |
-
| Question Generation |
|
| 50 |
-
| Intimacy Analysis |
|
| 51 |
-
| Tweet Similarity |
|
| 52 |
-
| Meaning Shift Detection |
|
| 53 |
-
| Hate Speech Detection |
|
| 54 |
-
| Emoji Classification |
|
| 55 |
-
| Sentiment Classification |
|
| 56 |
-
| Name Entity Disambiguation |
|
| 57 |
-
| Emotion Classification |
|
| 58 |
|
| 59 |
## Dataset Structure
|
| 60 |
### Data Fields
|
|
@@ -112,6 +112,7 @@ In the following we present the information contained in each of the datasets.
|
|
| 112 |
#### tweet_emoji
|
| 113 |
- `gold_label`: a `int` feature.
|
| 114 |
- `text`: a `string` feature.
|
|
|
|
| 115 |
|
| 116 |
#### tweet_sentiment
|
| 117 |
- `gold_label`: a `int` feature.
|
|
@@ -133,30 +134,21 @@ In the following we present the information contained in each of the datasets.
|
|
| 133 |
|
| 134 |
|
| 135 |
|
| 136 |
-
## Evaluation
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
- __tweet_intimacy:__ ```spearman correlation```
|
| 152 |
-
|
| 153 |
-
- __tweet_qa:__ ```answer-F1```
|
| 154 |
-
|
| 155 |
-
- __tweet_topic:__ ```macro-F1```
|
| 156 |
-
|
| 157 |
-
- __tweet_hate:__ ```combined-F1 (micro-F1 for hate/not-hate & macro-F1 for hate speech subclasses)```
|
| 158 |
-
|
| 159 |
-
- __tweet_similarity:__ ```spearman correlation```
|
| 160 |
|
| 161 |
|
| 162 |
## Citation Information
|
|
|
|
| 43 |
|
| 44 |
| **task** | **dataset** | **load dataset** | **description** | **number of instances** |
|
| 45 |
|----------------------------|----------------|------------------|------------------------------------|-------------------------|
|
| 46 |
+
| Topic Classification | TweetTopic | tweet_topic | multi-label classification | 4,585 / 573 / 1,679 |
|
| 47 |
+
| NER | TweetNER7 | tweet_ner7 | sequence labeling | 4,616 / 576 / 2,807 |
|
| 48 |
+
| Question Answering | TweettQA | tweet_qa | generation | 9,489 / 1,086 / 1,203 |
|
| 49 |
+
| Question Generation | TweetQG | tweet_qg | generation | 9,489 / 1,086 / 1,203 |
|
| 50 |
+
| Intimacy Analysis | TweetIntimacy | tweet_intimacy | regression on a single text | 1,191 / 396 / 396 |
|
| 51 |
+
| Tweet Similarity | TweetSIM | tweet_similarity | regression on two texts | 450 / 100 / 450 |
|
| 52 |
+
| Meaning Shift Detection | TempoWIC | tempo_wic | binary classification on two texts | 1,427 / 395 / 1,472 |
|
| 53 |
+
| Hate Speech Detection | TweetHate | tweet_hate | multi-class classification | 5,019 / 716 / 1,433 |
|
| 54 |
+
| Emoji Classification | TweetEmoji100 | tweet_emoji | multi-class classification | 50,000 / 5,000 / 50,000 |
|
| 55 |
+
| Sentiment Classification | TweetSentiment | tweet_sentiment | ABSA on a five-pointscale | 26,632 / 4,000 / 12,379 |
|
| 56 |
+
| Name Entity Disambiguation | TweetNERD | tweet_nerd | binary classification | 20,164 / 4,100 / 20,075 |
|
| 57 |
+
| Emotion Classification | TweetEmotion | tweet_emotion | multi-label classification | 6,838 / 886 / 3,259 |
|
| 58 |
|
| 59 |
## Dataset Structure
|
| 60 |
### Data Fields
|
|
|
|
| 112 |
#### tweet_emoji
|
| 113 |
- `gold_label`: a `int` feature.
|
| 114 |
- `text`: a `string` feature.
|
| 115 |
+
- `date`: a `string` feature.
|
| 116 |
|
| 117 |
#### tweet_sentiment
|
| 118 |
- `gold_label`: a `int` feature.
|
|
|
|
| 134 |
|
| 135 |
|
| 136 |
|
| 137 |
+
## Evaluation metrics & models
|
| 138 |
+
| **dataset** | **evaluation metric** | **gold label/s** | **model card** |
|
| 139 |
+
|---------------- |---------------------------------------------------------------------------------------------------------------- |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |---------------- |
|
| 140 |
+
| TweetTopic | ```macro-F1``` | _arts\_&\_culture, business\_&\_entrepreneurs, celebrity\_&\_pop\_culture, <br />diaries\_&\_daily\_life, family, fashion\_&\_style, <br />film\_tv\_&\_video, fitness\_&\_health, food\_&\_dining, <br />gaming, learning\_&\_educational, music, <br />news\_&\_social\_concern, other\_hobbies, relationships, <br />science\_&\_technology, sports, travel\_&\_adventure, <br />youth\_&\_student\_life_ | |
|
| 141 |
+
| TweetNER7 | ```macro-F1``` | _B-corporation, B-creative_work, B-event, <br />B-group, B-location, B-person, <br />B-product, I-corporation, I-creative_work, <br />I-event, I-group, I-location, <br />I-person, I-product, O_ | |
|
| 142 |
+
| TweettQA | ```answer-F1``` | - | |
|
| 143 |
+
| TweetQG | ```METEOR``` | - | |
|
| 144 |
+
| TweetIntimacy | ```spearman correlation``` | _[1 - 5]_ | |
|
| 145 |
+
| TweetSIM | ```spearman correlation``` | _[0 - 5]_ | |
|
| 146 |
+
| TempoWIC | ```accuracy``` | _no, yes_ | |
|
| 147 |
+
| TweetHate | ```combined-F1```<br /> ```(micro-F1 for hate/not-hate &```<br /> ``` macro-F1 for hate speech subclasses)``` | _hate_gender, hate_race, hate_sexuality, hate_religion, hate_origin, <br />hate_disability, hate_age, not_hate_ | |
|
| 148 |
+
| TweetEmoji100 | ```accuracy at top 5``` | _Full emoji list: ./data/tweet_emoji/map.txt_ | |
|
| 149 |
+
| TweetSentiment | ```1 - MAE^M``` <br /> ```(MAE^M : Macro Averaged Mean Absolute Error)``` | _'strongly negative' , 'negative', 'negative or neutral', <br /> 'positive', 'strongly positive'_ | |
|
| 150 |
+
| TweetNERD | ```accuracy``` | _no, yes_ | |
|
| 151 |
+
| TweetEmotion | ```macro-F1``` | _anger, anticipation, disgust, fear, joy, love, optimism, <br />pessimism, sadness, surprise, trust_ | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
|
| 153 |
|
| 154 |
## Citation Information
|
data/tweet_emoji/test.jsonl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0deddb648c34b88efbc05c40d1334609036b1590667a26a4d66e79347027622a
|
| 3 |
+
size 6215663
|
data/tweet_emoji/train.jsonl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39f983fff64d0babaab148eb936357d4d0c85b45f077dcd0349c29d76a2b3e02
|
| 3 |
+
size 6229182
|
data/tweet_emoji/validation.jsonl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4da99ff8ca6f97d88be152e2baa7ec4518330a44e98b8c8a95b36bb86295e35
|
| 3 |
+
size 621420
|
evaluation/README.txt
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Evalution script (evalution.py) instructions
|
| 2 |
+
* We provide an evaluation script that can easily calculate the scores achieved in each task, cluster and overall.
|
| 3 |
+
- The predictions must be in .txt format.
|
| 4 |
+
- All predictions files should be in the same directory and follow the naming conversions as in the "dummy_predictions" directory provided.
|
| 5 |
+
- Each prediction file must contain the predictions made on the test set of the respective task with each line corresponding to one line.
|
| 6 |
+
- The predictions should be written in full (e.g. 'strongly negative', instead of 0) and in cases of multiple outputs (e.g. TweetTopic) should be comma separated.
|
| 7 |
+
|
| 8 |
+
* "dummy_predictions" directory provides the prediciton files produced by the roberta-base model tested and can be used as a template.
|
| 9 |
+
|
| 10 |
+
* Steps to run the script:
|
| 11 |
+
1. Install requirements.txt
|
| 12 |
+
2. Run script: python evalution.py -p {directory with predictions}. e.g. python -p ./dummy_predictions
|
evaluation/dummy_predictions/tempo-wic.txt
ADDED
|
@@ -0,0 +1,1472 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
no
|
| 2 |
+
no
|
| 3 |
+
yes
|
| 4 |
+
no
|
| 5 |
+
no
|
| 6 |
+
no
|
| 7 |
+
no
|
| 8 |
+
no
|
| 9 |
+
no
|
| 10 |
+
no
|
| 11 |
+
yes
|
| 12 |
+
no
|
| 13 |
+
yes
|
| 14 |
+
no
|
| 15 |
+
yes
|
| 16 |
+
no
|
| 17 |
+
no
|
| 18 |
+
no
|
| 19 |
+
no
|
| 20 |
+
no
|
| 21 |
+
no
|
| 22 |
+
yes
|
| 23 |
+
no
|
| 24 |
+
no
|
| 25 |
+
yes
|
| 26 |
+
no
|
| 27 |
+
yes
|
| 28 |
+
yes
|
| 29 |
+
no
|
| 30 |
+
no
|
| 31 |
+
yes
|
| 32 |
+
no
|
| 33 |
+
no
|
| 34 |
+
no
|
| 35 |
+
no
|
| 36 |
+
yes
|
| 37 |
+
no
|
| 38 |
+
no
|
| 39 |
+
no
|
| 40 |
+
no
|
| 41 |
+
no
|
| 42 |
+
yes
|
| 43 |
+
no
|
| 44 |
+
no
|
| 45 |
+
no
|
| 46 |
+
no
|
| 47 |
+
no
|
| 48 |
+
no
|
| 49 |
+
no
|
| 50 |
+
no
|
| 51 |
+
no
|
| 52 |
+
no
|
| 53 |
+
no
|
| 54 |
+
no
|
| 55 |
+
no
|
| 56 |
+
no
|
| 57 |
+
no
|
| 58 |
+
no
|
| 59 |
+
no
|
| 60 |
+
no
|
| 61 |
+
no
|
| 62 |
+
no
|
| 63 |
+
no
|
| 64 |
+
no
|
| 65 |
+
no
|
| 66 |
+
no
|
| 67 |
+
no
|
| 68 |
+
no
|
| 69 |
+
yes
|
| 70 |
+
no
|
| 71 |
+
no
|
| 72 |
+
no
|
| 73 |
+
no
|
| 74 |
+
yes
|
| 75 |
+
no
|
| 76 |
+
no
|
| 77 |
+
yes
|
| 78 |
+
no
|
| 79 |
+
no
|
| 80 |
+
no
|
| 81 |
+
no
|
| 82 |
+
no
|
| 83 |
+
yes
|
| 84 |
+
no
|
| 85 |
+
no
|
| 86 |
+
no
|
| 87 |
+
no
|
| 88 |
+
yes
|
| 89 |
+
no
|
| 90 |
+
yes
|
| 91 |
+
no
|
| 92 |
+
no
|
| 93 |
+
no
|
| 94 |
+
no
|
| 95 |
+
no
|
| 96 |
+
no
|
| 97 |
+
no
|
| 98 |
+
no
|
| 99 |
+
no
|
| 100 |
+
no
|
| 101 |
+
no
|
| 102 |
+
no
|
| 103 |
+
no
|
| 104 |
+
yes
|
| 105 |
+
no
|
| 106 |
+
no
|
| 107 |
+
no
|
| 108 |
+
no
|
| 109 |
+
no
|
| 110 |
+
no
|
| 111 |
+
yes
|
| 112 |
+
no
|
| 113 |
+
no
|
| 114 |
+
no
|
| 115 |
+
no
|
| 116 |
+
no
|
| 117 |
+
no
|
| 118 |
+
yes
|
| 119 |
+
no
|
| 120 |
+
no
|
| 121 |
+
yes
|
| 122 |
+
no
|
| 123 |
+
no
|
| 124 |
+
no
|
| 125 |
+
no
|
| 126 |
+
no
|
| 127 |
+
no
|
| 128 |
+
no
|
| 129 |
+
no
|
| 130 |
+
no
|
| 131 |
+
no
|
| 132 |
+
no
|
| 133 |
+
no
|
| 134 |
+
no
|
| 135 |
+
no
|
| 136 |
+
no
|
| 137 |
+
no
|
| 138 |
+
no
|
| 139 |
+
yes
|
| 140 |
+
no
|
| 141 |
+
yes
|
| 142 |
+
no
|
| 143 |
+
no
|
| 144 |
+
no
|
| 145 |
+
no
|
| 146 |
+
no
|
| 147 |
+
no
|
| 148 |
+
yes
|
| 149 |
+
no
|
| 150 |
+
yes
|
| 151 |
+
no
|
| 152 |
+
no
|
| 153 |
+
yes
|
| 154 |
+
no
|
| 155 |
+
yes
|
| 156 |
+
no
|
| 157 |
+
no
|
| 158 |
+
no
|
| 159 |
+
no
|
| 160 |
+
no
|
| 161 |
+
no
|
| 162 |
+
no
|
| 163 |
+
no
|
| 164 |
+
no
|
| 165 |
+
yes
|
| 166 |
+
no
|
| 167 |
+
no
|
| 168 |
+
no
|
| 169 |
+
no
|
| 170 |
+
no
|
| 171 |
+
no
|
| 172 |
+
no
|
| 173 |
+
no
|
| 174 |
+
no
|
| 175 |
+
no
|
| 176 |
+
no
|
| 177 |
+
yes
|
| 178 |
+
no
|
| 179 |
+
no
|
| 180 |
+
no
|
| 181 |
+
yes
|
| 182 |
+
no
|
| 183 |
+
no
|
| 184 |
+
no
|
| 185 |
+
no
|
| 186 |
+
no
|
| 187 |
+
yes
|
| 188 |
+
yes
|
| 189 |
+
no
|
| 190 |
+
no
|
| 191 |
+
yes
|
| 192 |
+
no
|
| 193 |
+
yes
|
| 194 |
+
no
|
| 195 |
+
no
|
| 196 |
+
no
|
| 197 |
+
no
|
| 198 |
+
no
|
| 199 |
+
no
|
| 200 |
+
no
|
| 201 |
+
no
|
| 202 |
+
no
|
| 203 |
+
no
|
| 204 |
+
no
|
| 205 |
+
no
|
| 206 |
+
no
|
| 207 |
+
yes
|
| 208 |
+
no
|
| 209 |
+
no
|
| 210 |
+
no
|
| 211 |
+
no
|
| 212 |
+
yes
|
| 213 |
+
no
|
| 214 |
+
no
|
| 215 |
+
no
|
| 216 |
+
no
|
| 217 |
+
no
|
| 218 |
+
no
|
| 219 |
+
no
|
| 220 |
+
no
|
| 221 |
+
yes
|
| 222 |
+
no
|
| 223 |
+
no
|
| 224 |
+
no
|
| 225 |
+
no
|
| 226 |
+
no
|
| 227 |
+
no
|
| 228 |
+
no
|
| 229 |
+
yes
|
| 230 |
+
no
|
| 231 |
+
no
|
| 232 |
+
no
|
| 233 |
+
yes
|
| 234 |
+
no
|
| 235 |
+
no
|
| 236 |
+
no
|
| 237 |
+
no
|
| 238 |
+
no
|
| 239 |
+
no
|
| 240 |
+
no
|
| 241 |
+
no
|
| 242 |
+
yes
|
| 243 |
+
no
|
| 244 |
+
no
|
| 245 |
+
no
|
| 246 |
+
no
|
| 247 |
+
no
|
| 248 |
+
yes
|
| 249 |
+
no
|
| 250 |
+
no
|
| 251 |
+
yes
|
| 252 |
+
no
|
| 253 |
+
no
|
| 254 |
+
no
|
| 255 |
+
yes
|
| 256 |
+
no
|
| 257 |
+
no
|
| 258 |
+
no
|
| 259 |
+
no
|
| 260 |
+
no
|
| 261 |
+
no
|
| 262 |
+
no
|
| 263 |
+
no
|
| 264 |
+
no
|
| 265 |
+
no
|
| 266 |
+
yes
|
| 267 |
+
no
|
| 268 |
+
no
|
| 269 |
+
no
|
| 270 |
+
no
|
| 271 |
+
no
|
| 272 |
+
yes
|
| 273 |
+
no
|
| 274 |
+
no
|
| 275 |
+
no
|
| 276 |
+
no
|
| 277 |
+
no
|
| 278 |
+
no
|
| 279 |
+
no
|
| 280 |
+
no
|
| 281 |
+
no
|
| 282 |
+
no
|
| 283 |
+
no
|
| 284 |
+
no
|
| 285 |
+
no
|
| 286 |
+
no
|
| 287 |
+
no
|
| 288 |
+
no
|
| 289 |
+
no
|
| 290 |
+
no
|
| 291 |
+
no
|
| 292 |
+
no
|
| 293 |
+
no
|
| 294 |
+
no
|
| 295 |
+
no
|
| 296 |
+
no
|
| 297 |
+
no
|
| 298 |
+
yes
|
| 299 |
+
no
|
| 300 |
+
yes
|
| 301 |
+
no
|
| 302 |
+
no
|
| 303 |
+
no
|
| 304 |
+
yes
|
| 305 |
+
no
|
| 306 |
+
no
|
| 307 |
+
no
|
| 308 |
+
no
|
| 309 |
+
no
|
| 310 |
+
no
|
| 311 |
+
no
|
| 312 |
+
no
|
| 313 |
+
no
|
| 314 |
+
no
|
| 315 |
+
no
|
| 316 |
+
no
|
| 317 |
+
no
|
| 318 |
+
no
|
| 319 |
+
no
|
| 320 |
+
no
|
| 321 |
+
no
|
| 322 |
+
no
|
| 323 |
+
no
|
| 324 |
+
yes
|
| 325 |
+
yes
|
| 326 |
+
no
|
| 327 |
+
no
|
| 328 |
+
no
|
| 329 |
+
no
|
| 330 |
+
no
|
| 331 |
+
no
|
| 332 |
+
yes
|
| 333 |
+
no
|
| 334 |
+
no
|
| 335 |
+
no
|
| 336 |
+
no
|
| 337 |
+
no
|
| 338 |
+
yes
|
| 339 |
+
no
|
| 340 |
+
yes
|
| 341 |
+
no
|
| 342 |
+
no
|
| 343 |
+
no
|
| 344 |
+
no
|
| 345 |
+
yes
|
| 346 |
+
no
|
| 347 |
+
no
|
| 348 |
+
no
|
| 349 |
+
no
|
| 350 |
+
no
|
| 351 |
+
no
|
| 352 |
+
no
|
| 353 |
+
no
|
| 354 |
+
no
|
| 355 |
+
yes
|
| 356 |
+
no
|
| 357 |
+
no
|
| 358 |
+
no
|
| 359 |
+
no
|
| 360 |
+
no
|
| 361 |
+
no
|
| 362 |
+
no
|
| 363 |
+
no
|
| 364 |
+
yes
|
| 365 |
+
no
|
| 366 |
+
yes
|
| 367 |
+
no
|
| 368 |
+
no
|
| 369 |
+
no
|
| 370 |
+
no
|
| 371 |
+
yes
|
| 372 |
+
no
|
| 373 |
+
yes
|
| 374 |
+
no
|
| 375 |
+
no
|
| 376 |
+
no
|
| 377 |
+
no
|
| 378 |
+
no
|
| 379 |
+
no
|
| 380 |
+
no
|
| 381 |
+
yes
|
| 382 |
+
no
|
| 383 |
+
no
|
| 384 |
+
no
|
| 385 |
+
no
|
| 386 |
+
no
|
| 387 |
+
no
|
| 388 |
+
yes
|
| 389 |
+
no
|
| 390 |
+
no
|
| 391 |
+
no
|
| 392 |
+
no
|
| 393 |
+
no
|
| 394 |
+
no
|
| 395 |
+
no
|
| 396 |
+
no
|
| 397 |
+
no
|
| 398 |
+
yes
|
| 399 |
+
no
|
| 400 |
+
no
|
| 401 |
+
yes
|
| 402 |
+
no
|
| 403 |
+
yes
|
| 404 |
+
no
|
| 405 |
+
no
|
| 406 |
+
yes
|
| 407 |
+
no
|
| 408 |
+
no
|
| 409 |
+
no
|
| 410 |
+
no
|
| 411 |
+
no
|
| 412 |
+
yes
|
| 413 |
+
yes
|
| 414 |
+
yes
|
| 415 |
+
no
|
| 416 |
+
no
|
| 417 |
+
no
|
| 418 |
+
no
|
| 419 |
+
no
|
| 420 |
+
yes
|
| 421 |
+
no
|
| 422 |
+
no
|
| 423 |
+
no
|
| 424 |
+
no
|
| 425 |
+
no
|
| 426 |
+
yes
|
| 427 |
+
no
|
| 428 |
+
yes
|
| 429 |
+
yes
|
| 430 |
+
no
|
| 431 |
+
no
|
| 432 |
+
no
|
| 433 |
+
no
|
| 434 |
+
no
|
| 435 |
+
no
|
| 436 |
+
no
|
| 437 |
+
no
|
| 438 |
+
no
|
| 439 |
+
no
|
| 440 |
+
no
|
| 441 |
+
yes
|
| 442 |
+
no
|
| 443 |
+
no
|
| 444 |
+
yes
|
| 445 |
+
no
|
| 446 |
+
no
|
| 447 |
+
no
|
| 448 |
+
yes
|
| 449 |
+
no
|
| 450 |
+
no
|
| 451 |
+
yes
|
| 452 |
+
no
|
| 453 |
+
no
|
| 454 |
+
no
|
| 455 |
+
no
|
| 456 |
+
no
|
| 457 |
+
no
|
| 458 |
+
no
|
| 459 |
+
no
|
| 460 |
+
no
|
| 461 |
+
no
|
| 462 |
+
no
|
| 463 |
+
no
|
| 464 |
+
no
|
| 465 |
+
no
|
| 466 |
+
no
|
| 467 |
+
no
|
| 468 |
+
no
|
| 469 |
+
no
|
| 470 |
+
yes
|
| 471 |
+
yes
|
| 472 |
+
no
|
| 473 |
+
no
|
| 474 |
+
no
|
| 475 |
+
no
|
| 476 |
+
no
|
| 477 |
+
no
|
| 478 |
+
no
|
| 479 |
+
no
|
| 480 |
+
no
|
| 481 |
+
no
|
| 482 |
+
no
|
| 483 |
+
no
|
| 484 |
+
no
|
| 485 |
+
no
|
| 486 |
+
no
|
| 487 |
+
no
|
| 488 |
+
no
|
| 489 |
+
no
|
| 490 |
+
no
|
| 491 |
+
no
|
| 492 |
+
no
|
| 493 |
+
no
|
| 494 |
+
no
|
| 495 |
+
no
|
| 496 |
+
no
|
| 497 |
+
no
|
| 498 |
+
no
|
| 499 |
+
yes
|
| 500 |
+
no
|
| 501 |
+
no
|
| 502 |
+
no
|
| 503 |
+
no
|
| 504 |
+
no
|
| 505 |
+
no
|
| 506 |
+
no
|
| 507 |
+
yes
|
| 508 |
+
no
|
| 509 |
+
no
|
| 510 |
+
no
|
| 511 |
+
no
|
| 512 |
+
no
|
| 513 |
+
no
|
| 514 |
+
no
|
| 515 |
+
no
|
| 516 |
+
no
|
| 517 |
+
no
|
| 518 |
+
no
|
| 519 |
+
no
|
| 520 |
+
no
|
| 521 |
+
no
|
| 522 |
+
yes
|
| 523 |
+
no
|
| 524 |
+
no
|
| 525 |
+
no
|
| 526 |
+
no
|
| 527 |
+
no
|
| 528 |
+
no
|
| 529 |
+
yes
|
| 530 |
+
no
|
| 531 |
+
yes
|
| 532 |
+
no
|
| 533 |
+
no
|
| 534 |
+
no
|
| 535 |
+
no
|
| 536 |
+
no
|
| 537 |
+
no
|
| 538 |
+
no
|
| 539 |
+
no
|
| 540 |
+
no
|
| 541 |
+
no
|
| 542 |
+
no
|
| 543 |
+
no
|
| 544 |
+
no
|
| 545 |
+
no
|
| 546 |
+
yes
|
| 547 |
+
no
|
| 548 |
+
no
|
| 549 |
+
no
|
| 550 |
+
no
|
| 551 |
+
no
|
| 552 |
+
no
|
| 553 |
+
no
|
| 554 |
+
no
|
| 555 |
+
no
|
| 556 |
+
no
|
| 557 |
+
no
|
| 558 |
+
no
|
| 559 |
+
yes
|
| 560 |
+
no
|
| 561 |
+
no
|
| 562 |
+
no
|
| 563 |
+
no
|
| 564 |
+
yes
|
| 565 |
+
no
|
| 566 |
+
no
|
| 567 |
+
no
|
| 568 |
+
no
|
| 569 |
+
no
|
| 570 |
+
no
|
| 571 |
+
no
|
| 572 |
+
no
|
| 573 |
+
no
|
| 574 |
+
no
|
| 575 |
+
yes
|
| 576 |
+
no
|
| 577 |
+
no
|
| 578 |
+
no
|
| 579 |
+
no
|
| 580 |
+
no
|
| 581 |
+
no
|
| 582 |
+
no
|
| 583 |
+
no
|
| 584 |
+
no
|
| 585 |
+
no
|
| 586 |
+
yes
|
| 587 |
+
yes
|
| 588 |
+
yes
|
| 589 |
+
no
|
| 590 |
+
no
|
| 591 |
+
no
|
| 592 |
+
no
|
| 593 |
+
yes
|
| 594 |
+
no
|
| 595 |
+
no
|
| 596 |
+
no
|
| 597 |
+
no
|
| 598 |
+
no
|
| 599 |
+
no
|
| 600 |
+
yes
|
| 601 |
+
no
|
| 602 |
+
no
|
| 603 |
+
no
|
| 604 |
+
no
|
| 605 |
+
no
|
| 606 |
+
no
|
| 607 |
+
no
|
| 608 |
+
no
|
| 609 |
+
yes
|
| 610 |
+
no
|
| 611 |
+
no
|
| 612 |
+
no
|
| 613 |
+
no
|
| 614 |
+
yes
|
| 615 |
+
no
|
| 616 |
+
no
|
| 617 |
+
no
|
| 618 |
+
yes
|
| 619 |
+
no
|
| 620 |
+
yes
|
| 621 |
+
yes
|
| 622 |
+
no
|
| 623 |
+
no
|
| 624 |
+
no
|
| 625 |
+
no
|
| 626 |
+
no
|
| 627 |
+
no
|
| 628 |
+
no
|
| 629 |
+
no
|
| 630 |
+
no
|
| 631 |
+
no
|
| 632 |
+
no
|
| 633 |
+
no
|
| 634 |
+
no
|
| 635 |
+
yes
|
| 636 |
+
no
|
| 637 |
+
no
|
| 638 |
+
no
|
| 639 |
+
no
|
| 640 |
+
no
|
| 641 |
+
no
|
| 642 |
+
no
|
| 643 |
+
no
|
| 644 |
+
no
|
| 645 |
+
no
|
| 646 |
+
no
|
| 647 |
+
yes
|
| 648 |
+
no
|
| 649 |
+
yes
|
| 650 |
+
no
|
| 651 |
+
no
|
| 652 |
+
yes
|
| 653 |
+
no
|
| 654 |
+
no
|
| 655 |
+
no
|
| 656 |
+
no
|
| 657 |
+
yes
|
| 658 |
+
no
|
| 659 |
+
no
|
| 660 |
+
no
|
| 661 |
+
no
|
| 662 |
+
yes
|
| 663 |
+
no
|
| 664 |
+
no
|
| 665 |
+
no
|
| 666 |
+
no
|
| 667 |
+
no
|
| 668 |
+
no
|
| 669 |
+
no
|
| 670 |
+
no
|
| 671 |
+
no
|
| 672 |
+
no
|
| 673 |
+
yes
|
| 674 |
+
yes
|
| 675 |
+
no
|
| 676 |
+
no
|
| 677 |
+
no
|
| 678 |
+
yes
|
| 679 |
+
yes
|
| 680 |
+
no
|
| 681 |
+
no
|
| 682 |
+
no
|
| 683 |
+
no
|
| 684 |
+
no
|
| 685 |
+
no
|
| 686 |
+
no
|
| 687 |
+
no
|
| 688 |
+
no
|
| 689 |
+
no
|
| 690 |
+
no
|
| 691 |
+
no
|
| 692 |
+
no
|
| 693 |
+
no
|
| 694 |
+
yes
|
| 695 |
+
no
|
| 696 |
+
no
|
| 697 |
+
no
|
| 698 |
+
no
|
| 699 |
+
no
|
| 700 |
+
no
|
| 701 |
+
no
|
| 702 |
+
no
|
| 703 |
+
no
|
| 704 |
+
no
|
| 705 |
+
yes
|
| 706 |
+
no
|
| 707 |
+
no
|
| 708 |
+
no
|
| 709 |
+
no
|
| 710 |
+
no
|
| 711 |
+
yes
|
| 712 |
+
no
|
| 713 |
+
no
|
| 714 |
+
no
|
| 715 |
+
yes
|
| 716 |
+
no
|
| 717 |
+
no
|
| 718 |
+
no
|
| 719 |
+
no
|
| 720 |
+
no
|
| 721 |
+
no
|
| 722 |
+
yes
|
| 723 |
+
no
|
| 724 |
+
no
|
| 725 |
+
no
|
| 726 |
+
no
|
| 727 |
+
no
|
| 728 |
+
yes
|
| 729 |
+
no
|
| 730 |
+
no
|
| 731 |
+
no
|
| 732 |
+
no
|
| 733 |
+
yes
|
| 734 |
+
no
|
| 735 |
+
yes
|
| 736 |
+
no
|
| 737 |
+
yes
|
| 738 |
+
no
|
| 739 |
+
no
|
| 740 |
+
no
|
| 741 |
+
no
|
| 742 |
+
no
|
| 743 |
+
no
|
| 744 |
+
no
|
| 745 |
+
yes
|
| 746 |
+
no
|
| 747 |
+
no
|
| 748 |
+
no
|
| 749 |
+
no
|
| 750 |
+
no
|
| 751 |
+
no
|
| 752 |
+
no
|
| 753 |
+
no
|
| 754 |
+
yes
|
| 755 |
+
no
|
| 756 |
+
no
|
| 757 |
+
no
|
| 758 |
+
no
|
| 759 |
+
no
|
| 760 |
+
yes
|
| 761 |
+
no
|
| 762 |
+
no
|
| 763 |
+
no
|
| 764 |
+
no
|
| 765 |
+
no
|
| 766 |
+
no
|
| 767 |
+
no
|
| 768 |
+
no
|
| 769 |
+
yes
|
| 770 |
+
no
|
| 771 |
+
yes
|
| 772 |
+
no
|
| 773 |
+
yes
|
| 774 |
+
yes
|
| 775 |
+
no
|
| 776 |
+
no
|
| 777 |
+
no
|
| 778 |
+
no
|
| 779 |
+
no
|
| 780 |
+
no
|
| 781 |
+
no
|
| 782 |
+
no
|
| 783 |
+
no
|
| 784 |
+
no
|
| 785 |
+
yes
|
| 786 |
+
no
|
| 787 |
+
no
|
| 788 |
+
no
|
| 789 |
+
no
|
| 790 |
+
no
|
| 791 |
+
no
|
| 792 |
+
no
|
| 793 |
+
no
|
| 794 |
+
yes
|
| 795 |
+
no
|
| 796 |
+
no
|
| 797 |
+
yes
|
| 798 |
+
no
|
| 799 |
+
no
|
| 800 |
+
no
|
| 801 |
+
no
|
| 802 |
+
no
|
| 803 |
+
yes
|
| 804 |
+
no
|
| 805 |
+
no
|
| 806 |
+
no
|
| 807 |
+
no
|
| 808 |
+
no
|
| 809 |
+
no
|
| 810 |
+
no
|
| 811 |
+
no
|
| 812 |
+
no
|
| 813 |
+
no
|
| 814 |
+
no
|
| 815 |
+
no
|
| 816 |
+
yes
|
| 817 |
+
no
|
| 818 |
+
no
|
| 819 |
+
no
|
| 820 |
+
no
|
| 821 |
+
no
|
| 822 |
+
no
|
| 823 |
+
no
|
| 824 |
+
no
|
| 825 |
+
yes
|
| 826 |
+
no
|
| 827 |
+
no
|
| 828 |
+
no
|
| 829 |
+
no
|
| 830 |
+
yes
|
| 831 |
+
yes
|
| 832 |
+
yes
|
| 833 |
+
no
|
| 834 |
+
yes
|
| 835 |
+
no
|
| 836 |
+
no
|
| 837 |
+
no
|
| 838 |
+
no
|
| 839 |
+
no
|
| 840 |
+
no
|
| 841 |
+
yes
|
| 842 |
+
no
|
| 843 |
+
no
|
| 844 |
+
no
|
| 845 |
+
no
|
| 846 |
+
no
|
| 847 |
+
no
|
| 848 |
+
no
|
| 849 |
+
no
|
| 850 |
+
no
|
| 851 |
+
no
|
| 852 |
+
no
|
| 853 |
+
no
|
| 854 |
+
yes
|
| 855 |
+
no
|
| 856 |
+
no
|
| 857 |
+
no
|
| 858 |
+
no
|
| 859 |
+
no
|
| 860 |
+
yes
|
| 861 |
+
no
|
| 862 |
+
no
|
| 863 |
+
no
|
| 864 |
+
no
|
| 865 |
+
no
|
| 866 |
+
no
|
| 867 |
+
yes
|
| 868 |
+
no
|
| 869 |
+
no
|
| 870 |
+
yes
|
| 871 |
+
yes
|
| 872 |
+
no
|
| 873 |
+
no
|
| 874 |
+
no
|
| 875 |
+
yes
|
| 876 |
+
no
|
| 877 |
+
no
|
| 878 |
+
no
|
| 879 |
+
no
|
| 880 |
+
no
|
| 881 |
+
yes
|
| 882 |
+
no
|
| 883 |
+
no
|
| 884 |
+
no
|
| 885 |
+
no
|
| 886 |
+
no
|
| 887 |
+
no
|
| 888 |
+
no
|
| 889 |
+
no
|
| 890 |
+
no
|
| 891 |
+
no
|
| 892 |
+
no
|
| 893 |
+
no
|
| 894 |
+
no
|
| 895 |
+
no
|
| 896 |
+
no
|
| 897 |
+
no
|
| 898 |
+
no
|
| 899 |
+
no
|
| 900 |
+
no
|
| 901 |
+
no
|
| 902 |
+
no
|
| 903 |
+
no
|
| 904 |
+
no
|
| 905 |
+
yes
|
| 906 |
+
no
|
| 907 |
+
no
|
| 908 |
+
no
|
| 909 |
+
no
|
| 910 |
+
no
|
| 911 |
+
no
|
| 912 |
+
no
|
| 913 |
+
no
|
| 914 |
+
no
|
| 915 |
+
no
|
| 916 |
+
no
|
| 917 |
+
yes
|
| 918 |
+
no
|
| 919 |
+
no
|
| 920 |
+
no
|
| 921 |
+
yes
|
| 922 |
+
yes
|
| 923 |
+
no
|
| 924 |
+
no
|
| 925 |
+
no
|
| 926 |
+
no
|
| 927 |
+
no
|
| 928 |
+
no
|
| 929 |
+
no
|
| 930 |
+
yes
|
| 931 |
+
no
|
| 932 |
+
yes
|
| 933 |
+
no
|
| 934 |
+
no
|
| 935 |
+
no
|
| 936 |
+
no
|
| 937 |
+
no
|
| 938 |
+
no
|
| 939 |
+
no
|
| 940 |
+
no
|
| 941 |
+
no
|
| 942 |
+
no
|
| 943 |
+
no
|
| 944 |
+
no
|
| 945 |
+
no
|
| 946 |
+
no
|
| 947 |
+
no
|
| 948 |
+
no
|
| 949 |
+
no
|
| 950 |
+
no
|
| 951 |
+
no
|
| 952 |
+
no
|
| 953 |
+
no
|
| 954 |
+
no
|
| 955 |
+
no
|
| 956 |
+
no
|
| 957 |
+
no
|
| 958 |
+
no
|
| 959 |
+
no
|
| 960 |
+
no
|
| 961 |
+
no
|
| 962 |
+
no
|
| 963 |
+
yes
|
| 964 |
+
no
|
| 965 |
+
yes
|
| 966 |
+
no
|
| 967 |
+
no
|
| 968 |
+
no
|
| 969 |
+
no
|
| 970 |
+
yes
|
| 971 |
+
no
|
| 972 |
+
no
|
| 973 |
+
yes
|
| 974 |
+
yes
|
| 975 |
+
no
|
| 976 |
+
no
|
| 977 |
+
no
|
| 978 |
+
no
|
| 979 |
+
no
|
| 980 |
+
no
|
| 981 |
+
yes
|
| 982 |
+
no
|
| 983 |
+
no
|
| 984 |
+
no
|
| 985 |
+
no
|
| 986 |
+
no
|
| 987 |
+
no
|
| 988 |
+
no
|
| 989 |
+
yes
|
| 990 |
+
no
|
| 991 |
+
no
|
| 992 |
+
no
|
| 993 |
+
no
|
| 994 |
+
no
|
| 995 |
+
no
|
| 996 |
+
no
|
| 997 |
+
yes
|
| 998 |
+
no
|
| 999 |
+
no
|
| 1000 |
+
no
|
| 1001 |
+
no
|
| 1002 |
+
no
|
| 1003 |
+
no
|
| 1004 |
+
no
|
| 1005 |
+
no
|
| 1006 |
+
yes
|
| 1007 |
+
no
|
| 1008 |
+
no
|
| 1009 |
+
no
|
| 1010 |
+
no
|
| 1011 |
+
no
|
| 1012 |
+
no
|
| 1013 |
+
no
|
| 1014 |
+
no
|
| 1015 |
+
no
|
| 1016 |
+
no
|
| 1017 |
+
no
|
| 1018 |
+
yes
|
| 1019 |
+
no
|
| 1020 |
+
no
|
| 1021 |
+
no
|
| 1022 |
+
no
|
| 1023 |
+
no
|
| 1024 |
+
no
|
| 1025 |
+
yes
|
| 1026 |
+
no
|
| 1027 |
+
no
|
| 1028 |
+
no
|
| 1029 |
+
no
|
| 1030 |
+
no
|
| 1031 |
+
no
|
| 1032 |
+
no
|
| 1033 |
+
no
|
| 1034 |
+
no
|
| 1035 |
+
yes
|
| 1036 |
+
no
|
| 1037 |
+
no
|
| 1038 |
+
no
|
| 1039 |
+
no
|
| 1040 |
+
no
|
| 1041 |
+
no
|
| 1042 |
+
no
|
| 1043 |
+
no
|
| 1044 |
+
no
|
| 1045 |
+
yes
|
| 1046 |
+
no
|
| 1047 |
+
yes
|
| 1048 |
+
no
|
| 1049 |
+
no
|
| 1050 |
+
yes
|
| 1051 |
+
no
|
| 1052 |
+
no
|
| 1053 |
+
yes
|
| 1054 |
+
no
|
| 1055 |
+
no
|
| 1056 |
+
yes
|
| 1057 |
+
no
|
| 1058 |
+
yes
|
| 1059 |
+
no
|
| 1060 |
+
yes
|
| 1061 |
+
no
|
| 1062 |
+
yes
|
| 1063 |
+
yes
|
| 1064 |
+
yes
|
| 1065 |
+
no
|
| 1066 |
+
no
|
| 1067 |
+
no
|
| 1068 |
+
no
|
| 1069 |
+
no
|
| 1070 |
+
no
|
| 1071 |
+
no
|
| 1072 |
+
no
|
| 1073 |
+
yes
|
| 1074 |
+
no
|
| 1075 |
+
no
|
| 1076 |
+
no
|
| 1077 |
+
no
|
| 1078 |
+
no
|
| 1079 |
+
no
|
| 1080 |
+
no
|
| 1081 |
+
no
|
| 1082 |
+
no
|
| 1083 |
+
no
|
| 1084 |
+
no
|
| 1085 |
+
no
|
| 1086 |
+
no
|
| 1087 |
+
no
|
| 1088 |
+
no
|
| 1089 |
+
yes
|
| 1090 |
+
no
|
| 1091 |
+
no
|
| 1092 |
+
no
|
| 1093 |
+
no
|
| 1094 |
+
no
|
| 1095 |
+
no
|
| 1096 |
+
no
|
| 1097 |
+
no
|
| 1098 |
+
no
|
| 1099 |
+
no
|
| 1100 |
+
no
|
| 1101 |
+
no
|
| 1102 |
+
no
|
| 1103 |
+
no
|
| 1104 |
+
no
|
| 1105 |
+
no
|
| 1106 |
+
no
|
| 1107 |
+
no
|
| 1108 |
+
yes
|
| 1109 |
+
no
|
| 1110 |
+
no
|
| 1111 |
+
no
|
| 1112 |
+
no
|
| 1113 |
+
no
|
| 1114 |
+
no
|
| 1115 |
+
yes
|
| 1116 |
+
no
|
| 1117 |
+
no
|
| 1118 |
+
no
|
| 1119 |
+
no
|
| 1120 |
+
no
|
| 1121 |
+
no
|
| 1122 |
+
no
|
| 1123 |
+
yes
|
| 1124 |
+
no
|
| 1125 |
+
no
|
| 1126 |
+
no
|
| 1127 |
+
no
|
| 1128 |
+
yes
|
| 1129 |
+
yes
|
| 1130 |
+
no
|
| 1131 |
+
yes
|
| 1132 |
+
no
|
| 1133 |
+
no
|
| 1134 |
+
yes
|
| 1135 |
+
no
|
| 1136 |
+
yes
|
| 1137 |
+
no
|
| 1138 |
+
no
|
| 1139 |
+
no
|
| 1140 |
+
no
|
| 1141 |
+
no
|
| 1142 |
+
yes
|
| 1143 |
+
no
|
| 1144 |
+
yes
|
| 1145 |
+
no
|
| 1146 |
+
yes
|
| 1147 |
+
no
|
| 1148 |
+
no
|
| 1149 |
+
no
|
| 1150 |
+
no
|
| 1151 |
+
no
|
| 1152 |
+
no
|
| 1153 |
+
no
|
| 1154 |
+
no
|
| 1155 |
+
no
|
| 1156 |
+
no
|
| 1157 |
+
no
|
| 1158 |
+
yes
|
| 1159 |
+
no
|
| 1160 |
+
no
|
| 1161 |
+
no
|
| 1162 |
+
no
|
| 1163 |
+
no
|
| 1164 |
+
yes
|
| 1165 |
+
no
|
| 1166 |
+
no
|
| 1167 |
+
no
|
| 1168 |
+
no
|
| 1169 |
+
no
|
| 1170 |
+
no
|
| 1171 |
+
no
|
| 1172 |
+
no
|
| 1173 |
+
yes
|
| 1174 |
+
no
|
| 1175 |
+
no
|
| 1176 |
+
no
|
| 1177 |
+
no
|
| 1178 |
+
no
|
| 1179 |
+
no
|
| 1180 |
+
no
|
| 1181 |
+
no
|
| 1182 |
+
no
|
| 1183 |
+
no
|
| 1184 |
+
yes
|
| 1185 |
+
no
|
| 1186 |
+
no
|
| 1187 |
+
no
|
| 1188 |
+
yes
|
| 1189 |
+
no
|
| 1190 |
+
no
|
| 1191 |
+
no
|
| 1192 |
+
no
|
| 1193 |
+
yes
|
| 1194 |
+
no
|
| 1195 |
+
no
|
| 1196 |
+
no
|
| 1197 |
+
no
|
| 1198 |
+
no
|
| 1199 |
+
no
|
| 1200 |
+
no
|
| 1201 |
+
no
|
| 1202 |
+
no
|
| 1203 |
+
no
|
| 1204 |
+
yes
|
| 1205 |
+
no
|
| 1206 |
+
yes
|
| 1207 |
+
no
|
| 1208 |
+
no
|
| 1209 |
+
no
|
| 1210 |
+
yes
|
| 1211 |
+
no
|
| 1212 |
+
no
|
| 1213 |
+
no
|
| 1214 |
+
yes
|
| 1215 |
+
yes
|
| 1216 |
+
no
|
| 1217 |
+
no
|
| 1218 |
+
no
|
| 1219 |
+
no
|
| 1220 |
+
yes
|
| 1221 |
+
no
|
| 1222 |
+
no
|
| 1223 |
+
yes
|
| 1224 |
+
no
|
| 1225 |
+
no
|
| 1226 |
+
no
|
| 1227 |
+
no
|
| 1228 |
+
no
|
| 1229 |
+
yes
|
| 1230 |
+
no
|
| 1231 |
+
no
|
| 1232 |
+
no
|
| 1233 |
+
no
|
| 1234 |
+
no
|
| 1235 |
+
no
|
| 1236 |
+
no
|
| 1237 |
+
no
|
| 1238 |
+
no
|
| 1239 |
+
no
|
| 1240 |
+
no
|
| 1241 |
+
no
|
| 1242 |
+
no
|
| 1243 |
+
no
|
| 1244 |
+
no
|
| 1245 |
+
no
|
| 1246 |
+
no
|
| 1247 |
+
no
|
| 1248 |
+
no
|
| 1249 |
+
yes
|
| 1250 |
+
no
|
| 1251 |
+
yes
|
| 1252 |
+
no
|
| 1253 |
+
no
|
| 1254 |
+
no
|
| 1255 |
+
no
|
| 1256 |
+
no
|
| 1257 |
+
no
|
| 1258 |
+
no
|
| 1259 |
+
no
|
| 1260 |
+
no
|
| 1261 |
+
no
|
| 1262 |
+
no
|
| 1263 |
+
no
|
| 1264 |
+
no
|
| 1265 |
+
no
|
| 1266 |
+
no
|
| 1267 |
+
no
|
| 1268 |
+
no
|
| 1269 |
+
no
|
| 1270 |
+
no
|
| 1271 |
+
no
|
| 1272 |
+
no
|
| 1273 |
+
no
|
| 1274 |
+
no
|
| 1275 |
+
no
|
| 1276 |
+
no
|
| 1277 |
+
no
|
| 1278 |
+
no
|
| 1279 |
+
no
|
| 1280 |
+
no
|
| 1281 |
+
no
|
| 1282 |
+
no
|
| 1283 |
+
no
|
| 1284 |
+
yes
|
| 1285 |
+
no
|
| 1286 |
+
no
|
| 1287 |
+
no
|
| 1288 |
+
yes
|
| 1289 |
+
yes
|
| 1290 |
+
no
|
| 1291 |
+
no
|
| 1292 |
+
no
|
| 1293 |
+
yes
|
| 1294 |
+
yes
|
| 1295 |
+
no
|
| 1296 |
+
no
|
| 1297 |
+
yes
|
| 1298 |
+
no
|
| 1299 |
+
no
|
| 1300 |
+
no
|
| 1301 |
+
no
|
| 1302 |
+
no
|
| 1303 |
+
no
|
| 1304 |
+
no
|
| 1305 |
+
no
|
| 1306 |
+
no
|
| 1307 |
+
yes
|
| 1308 |
+
no
|
| 1309 |
+
no
|
| 1310 |
+
yes
|
| 1311 |
+
no
|
| 1312 |
+
no
|
| 1313 |
+
no
|
| 1314 |
+
yes
|
| 1315 |
+
no
|
| 1316 |
+
no
|
| 1317 |
+
no
|
| 1318 |
+
no
|
| 1319 |
+
no
|
| 1320 |
+
no
|
| 1321 |
+
no
|
| 1322 |
+
no
|
| 1323 |
+
no
|
| 1324 |
+
no
|
| 1325 |
+
no
|
| 1326 |
+
no
|
| 1327 |
+
yes
|
| 1328 |
+
no
|
| 1329 |
+
no
|
| 1330 |
+
no
|
| 1331 |
+
no
|
| 1332 |
+
no
|
| 1333 |
+
no
|
| 1334 |
+
yes
|
| 1335 |
+
no
|
| 1336 |
+
no
|
| 1337 |
+
yes
|
| 1338 |
+
no
|
| 1339 |
+
yes
|
| 1340 |
+
no
|
| 1341 |
+
no
|
| 1342 |
+
no
|
| 1343 |
+
no
|
| 1344 |
+
yes
|
| 1345 |
+
yes
|
| 1346 |
+
yes
|
| 1347 |
+
no
|
| 1348 |
+
no
|
| 1349 |
+
no
|
| 1350 |
+
no
|
| 1351 |
+
no
|
| 1352 |
+
no
|
| 1353 |
+
yes
|
| 1354 |
+
yes
|
| 1355 |
+
no
|
| 1356 |
+
yes
|
| 1357 |
+
yes
|
| 1358 |
+
no
|
| 1359 |
+
no
|
| 1360 |
+
no
|
| 1361 |
+
no
|
| 1362 |
+
yes
|
| 1363 |
+
no
|
| 1364 |
+
no
|
| 1365 |
+
no
|
| 1366 |
+
yes
|
| 1367 |
+
no
|
| 1368 |
+
no
|
| 1369 |
+
no
|
| 1370 |
+
yes
|
| 1371 |
+
no
|
| 1372 |
+
no
|
| 1373 |
+
no
|
| 1374 |
+
yes
|
| 1375 |
+
no
|
| 1376 |
+
no
|
| 1377 |
+
no
|
| 1378 |
+
no
|
| 1379 |
+
no
|
| 1380 |
+
no
|
| 1381 |
+
no
|
| 1382 |
+
yes
|
| 1383 |
+
no
|
| 1384 |
+
yes
|
| 1385 |
+
no
|
| 1386 |
+
no
|
| 1387 |
+
no
|
| 1388 |
+
yes
|
| 1389 |
+
no
|
| 1390 |
+
no
|
| 1391 |
+
no
|
| 1392 |
+
no
|
| 1393 |
+
no
|
| 1394 |
+
no
|
| 1395 |
+
no
|
| 1396 |
+
no
|
| 1397 |
+
yes
|
| 1398 |
+
no
|
| 1399 |
+
yes
|
| 1400 |
+
no
|
| 1401 |
+
no
|
| 1402 |
+
no
|
| 1403 |
+
no
|
| 1404 |
+
no
|
| 1405 |
+
no
|
| 1406 |
+
no
|
| 1407 |
+
no
|
| 1408 |
+
no
|
| 1409 |
+
yes
|
| 1410 |
+
no
|
| 1411 |
+
no
|
| 1412 |
+
no
|
| 1413 |
+
no
|
| 1414 |
+
yes
|
| 1415 |
+
no
|
| 1416 |
+
no
|
| 1417 |
+
yes
|
| 1418 |
+
yes
|
| 1419 |
+
no
|
| 1420 |
+
no
|
| 1421 |
+
yes
|
| 1422 |
+
no
|
| 1423 |
+
no
|
| 1424 |
+
no
|
| 1425 |
+
no
|
| 1426 |
+
no
|
| 1427 |
+
no
|
| 1428 |
+
no
|
| 1429 |
+
no
|
| 1430 |
+
no
|
| 1431 |
+
no
|
| 1432 |
+
no
|
| 1433 |
+
no
|
| 1434 |
+
no
|
| 1435 |
+
yes
|
| 1436 |
+
yes
|
| 1437 |
+
no
|
| 1438 |
+
yes
|
| 1439 |
+
no
|
| 1440 |
+
no
|
| 1441 |
+
no
|
| 1442 |
+
no
|
| 1443 |
+
no
|
| 1444 |
+
no
|
| 1445 |
+
no
|
| 1446 |
+
no
|
| 1447 |
+
no
|
| 1448 |
+
no
|
| 1449 |
+
no
|
| 1450 |
+
yes
|
| 1451 |
+
no
|
| 1452 |
+
no
|
| 1453 |
+
no
|
| 1454 |
+
no
|
| 1455 |
+
no
|
| 1456 |
+
no
|
| 1457 |
+
no
|
| 1458 |
+
no
|
| 1459 |
+
no
|
| 1460 |
+
no
|
| 1461 |
+
no
|
| 1462 |
+
no
|
| 1463 |
+
no
|
| 1464 |
+
no
|
| 1465 |
+
no
|
| 1466 |
+
no
|
| 1467 |
+
no
|
| 1468 |
+
no
|
| 1469 |
+
no
|
| 1470 |
+
yes
|
| 1471 |
+
no
|
| 1472 |
+
no
|
evaluation/dummy_predictions/tweet-emoji.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
evaluation/dummy_predictions/tweet-emotion.txt
ADDED
|
@@ -0,0 +1,3259 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
anger,disgust,fear
|
| 2 |
+
anger,disgust,sadness
|
| 3 |
+
anger,disgust,sadness
|
| 4 |
+
anticipation,joy,optimism
|
| 5 |
+
fear,pessimism,sadness
|
| 6 |
+
anger,disgust,fear
|
| 7 |
+
joy,optimism
|
| 8 |
+
anger,disgust,sadness
|
| 9 |
+
joy,love,optimism
|
| 10 |
+
anger,disgust,sadness
|
| 11 |
+
joy,optimism
|
| 12 |
+
joy,optimism
|
| 13 |
+
joy,love,optimism
|
| 14 |
+
joy,optimism
|
| 15 |
+
anger,disgust,sadness
|
| 16 |
+
joy,love,optimism
|
| 17 |
+
joy,optimism
|
| 18 |
+
joy,optimism
|
| 19 |
+
anger,disgust,sadness
|
| 20 |
+
joy,optimism
|
| 21 |
+
joy,optimism
|
| 22 |
+
anger,disgust,sadness
|
| 23 |
+
anticipation,joy,optimism
|
| 24 |
+
anger,disgust,sadness
|
| 25 |
+
joy,love,optimism
|
| 26 |
+
anger,disgust,sadness
|
| 27 |
+
anger,disgust,joy
|
| 28 |
+
anticipation,joy,optimism
|
| 29 |
+
anger,disgust,sadness
|
| 30 |
+
anger,disgust,sadness
|
| 31 |
+
joy,love,optimism
|
| 32 |
+
anticipation,joy,optimism
|
| 33 |
+
joy,optimism
|
| 34 |
+
anger,disgust,sadness
|
| 35 |
+
anger,disgust,sadness
|
| 36 |
+
sadness
|
| 37 |
+
joy,optimism
|
| 38 |
+
anger,disgust,sadness
|
| 39 |
+
anger,disgust,joy
|
| 40 |
+
anger,disgust,sadness
|
| 41 |
+
anger,disgust,fear
|
| 42 |
+
joy,optimism
|
| 43 |
+
anger,disgust,sadness
|
| 44 |
+
anger,disgust,sadness
|
| 45 |
+
sadness
|
| 46 |
+
anger,disgust,sadness
|
| 47 |
+
joy,optimism
|
| 48 |
+
anger,disgust,sadness
|
| 49 |
+
joy,optimism
|
| 50 |
+
optimism
|
| 51 |
+
anticipation,joy,optimism
|
| 52 |
+
anger,disgust,sadness
|
| 53 |
+
joy,optimism
|
| 54 |
+
anger,disgust,fear
|
| 55 |
+
anger,disgust,fear
|
| 56 |
+
joy,optimism
|
| 57 |
+
fear,pessimism,sadness
|
| 58 |
+
joy,optimism
|
| 59 |
+
anger,disgust,sadness
|
| 60 |
+
anger,disgust,sadness
|
| 61 |
+
joy,optimism
|
| 62 |
+
joy,love,optimism
|
| 63 |
+
anger,disgust,sadness
|
| 64 |
+
joy,optimism
|
| 65 |
+
anger,disgust,sadness
|
| 66 |
+
anger,disgust,sadness
|
| 67 |
+
anger,disgust,sadness
|
| 68 |
+
anger,disgust,sadness
|
| 69 |
+
anger,disgust,sadness
|
| 70 |
+
anger,disgust,optimism
|
| 71 |
+
anger,disgust,sadness
|
| 72 |
+
anger,disgust,sadness
|
| 73 |
+
joy,optimism
|
| 74 |
+
anger,disgust,fear
|
| 75 |
+
anger,disgust,sadness
|
| 76 |
+
joy,optimism
|
| 77 |
+
anger,disgust,sadness
|
| 78 |
+
joy,love,optimism
|
| 79 |
+
joy,optimism
|
| 80 |
+
joy,love,optimism
|
| 81 |
+
fear,sadness
|
| 82 |
+
joy,love,optimism
|
| 83 |
+
anger,disgust,sadness
|
| 84 |
+
anger,disgust,sadness
|
| 85 |
+
anger,disgust,sadness
|
| 86 |
+
anger,disgust,sadness
|
| 87 |
+
anger,disgust,joy
|
| 88 |
+
anger,disgust,sadness
|
| 89 |
+
joy,love,optimism
|
| 90 |
+
anger,disgust,sadness
|
| 91 |
+
joy,love,optimism
|
| 92 |
+
anger,disgust,sadness
|
| 93 |
+
anger,disgust,fear
|
| 94 |
+
joy,optimism
|
| 95 |
+
optimism,trust
|
| 96 |
+
joy,optimism
|
| 97 |
+
anger,disgust,fear
|
| 98 |
+
joy,love,optimism
|
| 99 |
+
anger,disgust,sadness
|
| 100 |
+
sadness
|
| 101 |
+
joy,optimism
|
| 102 |
+
joy,optimism
|
| 103 |
+
joy,optimism
|
| 104 |
+
joy,optimism
|
| 105 |
+
joy,optimism
|
| 106 |
+
fear,pessimism,sadness
|
| 107 |
+
joy,optimism
|
| 108 |
+
joy,optimism
|
| 109 |
+
joy,optimism
|
| 110 |
+
anger,disgust,fear
|
| 111 |
+
anger,disgust,sadness
|
| 112 |
+
optimism,sadness
|
| 113 |
+
anger,disgust,fear
|
| 114 |
+
joy,optimism
|
| 115 |
+
joy,love,optimism
|
| 116 |
+
fear,pessimism,sadness
|
| 117 |
+
optimism,trust
|
| 118 |
+
fear,joy,optimism
|
| 119 |
+
anger,disgust,sadness
|
| 120 |
+
fear,pessimism,sadness
|
| 121 |
+
joy,optimism
|
| 122 |
+
joy,optimism
|
| 123 |
+
joy,optimism
|
| 124 |
+
joy,love,optimism
|
| 125 |
+
anger,disgust,sadness
|
| 126 |
+
anger,disgust,sadness
|
| 127 |
+
joy,love,optimism
|
| 128 |
+
joy,optimism
|
| 129 |
+
anticipation,joy,optimism
|
| 130 |
+
joy,love,optimism
|
| 131 |
+
anger,disgust,sadness
|
| 132 |
+
joy,optimism
|
| 133 |
+
optimism
|
| 134 |
+
anger,disgust,fear
|
| 135 |
+
anger,disgust,joy
|
| 136 |
+
anger,disgust,sadness
|
| 137 |
+
joy,optimism
|
| 138 |
+
fear
|
| 139 |
+
joy,optimism
|
| 140 |
+
anger,disgust,sadness
|
| 141 |
+
anger,disgust,sadness
|
| 142 |
+
joy,optimism
|
| 143 |
+
joy,love,optimism
|
| 144 |
+
optimism
|
| 145 |
+
joy,love,optimism
|
| 146 |
+
anger,disgust,sadness
|
| 147 |
+
joy,optimism
|
| 148 |
+
anger,disgust
|
| 149 |
+
anger,disgust,sadness
|
| 150 |
+
anger,disgust,fear
|
| 151 |
+
anger,disgust,sadness
|
| 152 |
+
joy,optimism
|
| 153 |
+
joy,optimism
|
| 154 |
+
anger,disgust,fear
|
| 155 |
+
anticipation,joy,optimism
|
| 156 |
+
joy,optimism
|
| 157 |
+
anger,disgust,sadness
|
| 158 |
+
anger,disgust,fear
|
| 159 |
+
joy,optimism
|
| 160 |
+
joy,optimism
|
| 161 |
+
anger,disgust,sadness
|
| 162 |
+
anger,disgust,sadness
|
| 163 |
+
joy,optimism
|
| 164 |
+
joy,optimism
|
| 165 |
+
anticipation,joy,optimism
|
| 166 |
+
anger,disgust,sadness
|
| 167 |
+
sadness
|
| 168 |
+
anger,disgust,joy
|
| 169 |
+
anger,disgust,sadness
|
| 170 |
+
joy,love,optimism
|
| 171 |
+
joy,love,optimism
|
| 172 |
+
anger,disgust,sadness
|
| 173 |
+
anger,disgust,sadness
|
| 174 |
+
joy,optimism
|
| 175 |
+
joy,optimism
|
| 176 |
+
joy,love,optimism
|
| 177 |
+
joy,optimism
|
| 178 |
+
joy,optimism
|
| 179 |
+
joy,optimism
|
| 180 |
+
joy,optimism
|
| 181 |
+
joy,optimism
|
| 182 |
+
anger,disgust,sadness
|
| 183 |
+
anger,disgust,sadness
|
| 184 |
+
anger,disgust,fear,sadness
|
| 185 |
+
anger,disgust,sadness
|
| 186 |
+
joy,love,optimism
|
| 187 |
+
anger,disgust,sadness
|
| 188 |
+
fear,optimism
|
| 189 |
+
joy,love,optimism
|
| 190 |
+
joy,optimism
|
| 191 |
+
anger,disgust,sadness
|
| 192 |
+
anger,disgust,sadness
|
| 193 |
+
joy,optimism
|
| 194 |
+
joy,optimism
|
| 195 |
+
joy,optimism
|
| 196 |
+
joy,optimism
|
| 197 |
+
joy,love,optimism
|
| 198 |
+
joy,optimism
|
| 199 |
+
anger,disgust,sadness
|
| 200 |
+
anger,disgust,sadness
|
| 201 |
+
anger,disgust,sadness
|
| 202 |
+
joy,love,optimism
|
| 203 |
+
anger,disgust,sadness
|
| 204 |
+
joy,optimism
|
| 205 |
+
anger,disgust
|
| 206 |
+
anger,disgust,fear
|
| 207 |
+
anticipation,joy,optimism
|
| 208 |
+
anger,disgust,sadness
|
| 209 |
+
joy,love,optimism
|
| 210 |
+
anger,disgust,sadness
|
| 211 |
+
joy,love,optimism
|
| 212 |
+
disgust,fear,sadness
|
| 213 |
+
joy,optimism
|
| 214 |
+
anger,disgust,sadness
|
| 215 |
+
anger,disgust,sadness
|
| 216 |
+
anger,disgust,sadness
|
| 217 |
+
joy,optimism
|
| 218 |
+
anger,disgust,sadness
|
| 219 |
+
joy,love,optimism
|
| 220 |
+
anticipation,joy,optimism
|
| 221 |
+
joy,optimism
|
| 222 |
+
joy,optimism
|
| 223 |
+
anger,disgust,sadness
|
| 224 |
+
anger,disgust,fear
|
| 225 |
+
anger,disgust,fear
|
| 226 |
+
anger,disgust,sadness
|
| 227 |
+
anger,disgust,sadness
|
| 228 |
+
anger,disgust,fear,sadness
|
| 229 |
+
joy,love,optimism
|
| 230 |
+
joy,love,optimism
|
| 231 |
+
joy,optimism
|
| 232 |
+
joy,love,optimism
|
| 233 |
+
anger,disgust,joy
|
| 234 |
+
anger,disgust,sadness
|
| 235 |
+
disgust,sadness
|
| 236 |
+
anger,disgust,sadness
|
| 237 |
+
joy,love,optimism
|
| 238 |
+
joy,love,optimism
|
| 239 |
+
anger,disgust
|
| 240 |
+
anger,disgust,fear
|
| 241 |
+
joy,love,optimism
|
| 242 |
+
anger,disgust,sadness
|
| 243 |
+
joy,optimism
|
| 244 |
+
anger,disgust,fear
|
| 245 |
+
anger,disgust,sadness
|
| 246 |
+
joy,optimism
|
| 247 |
+
joy,optimism
|
| 248 |
+
joy,love,optimism
|
| 249 |
+
anger,disgust,sadness
|
| 250 |
+
anger,disgust
|
| 251 |
+
joy,optimism
|
| 252 |
+
joy,love,optimism
|
| 253 |
+
anger,disgust,fear
|
| 254 |
+
fear,optimism
|
| 255 |
+
anger,disgust,sadness
|
| 256 |
+
anger,disgust,sadness
|
| 257 |
+
anger,disgust,sadness
|
| 258 |
+
fear,pessimism,sadness
|
| 259 |
+
anger,disgust
|
| 260 |
+
fear,joy,optimism
|
| 261 |
+
anger,disgust,sadness
|
| 262 |
+
anger,disgust,sadness
|
| 263 |
+
pessimism,sadness
|
| 264 |
+
joy,optimism
|
| 265 |
+
anger,disgust,sadness
|
| 266 |
+
joy,optimism
|
| 267 |
+
anger,disgust,sadness
|
| 268 |
+
joy,love,optimism
|
| 269 |
+
anger,disgust
|
| 270 |
+
fear,pessimism,sadness
|
| 271 |
+
joy,optimism
|
| 272 |
+
anger,disgust,sadness
|
| 273 |
+
joy,love,optimism
|
| 274 |
+
anger,disgust,sadness
|
| 275 |
+
optimism
|
| 276 |
+
fear,pessimism,sadness
|
| 277 |
+
anger,disgust,sadness
|
| 278 |
+
anticipation,joy,optimism
|
| 279 |
+
anger,disgust,sadness
|
| 280 |
+
anticipation,joy,optimism
|
| 281 |
+
joy,optimism
|
| 282 |
+
anger,disgust,sadness
|
| 283 |
+
anger,disgust,sadness
|
| 284 |
+
anger,disgust,sadness
|
| 285 |
+
anger,disgust,sadness
|
| 286 |
+
anger,disgust,sadness
|
| 287 |
+
anger,disgust,sadness
|
| 288 |
+
anger,disgust,sadness
|
| 289 |
+
anger,disgust,sadness
|
| 290 |
+
fear,joy,optimism
|
| 291 |
+
disgust,sadness
|
| 292 |
+
anger,disgust,sadness
|
| 293 |
+
joy,optimism
|
| 294 |
+
anticipation,joy,optimism
|
| 295 |
+
joy,optimism
|
| 296 |
+
anger,disgust
|
| 297 |
+
joy,love,optimism
|
| 298 |
+
joy,love,optimism
|
| 299 |
+
anticipation,joy,optimism
|
| 300 |
+
anger,disgust,sadness
|
| 301 |
+
fear,pessimism,sadness
|
| 302 |
+
joy,love,optimism
|
| 303 |
+
fear,joy,optimism
|
| 304 |
+
anger,disgust,sadness
|
| 305 |
+
joy,optimism
|
| 306 |
+
joy,optimism
|
| 307 |
+
anger,disgust,sadness
|
| 308 |
+
anticipation,joy,optimism
|
| 309 |
+
anticipation,joy,optimism
|
| 310 |
+
anticipation,joy,optimism
|
| 311 |
+
anger,disgust,fear
|
| 312 |
+
anger,disgust,sadness
|
| 313 |
+
anger,disgust,sadness
|
| 314 |
+
joy,love,optimism
|
| 315 |
+
anger,disgust,sadness
|
| 316 |
+
joy,love,optimism
|
| 317 |
+
joy,optimism
|
| 318 |
+
anger,disgust,sadness
|
| 319 |
+
joy,love,optimism
|
| 320 |
+
joy,love,optimism
|
| 321 |
+
anger,disgust,sadness
|
| 322 |
+
joy,optimism
|
| 323 |
+
anger,disgust,fear
|
| 324 |
+
joy,optimism
|
| 325 |
+
joy,love,optimism
|
| 326 |
+
joy,optimism
|
| 327 |
+
anger,disgust,sadness
|
| 328 |
+
joy,optimism
|
| 329 |
+
joy,optimism
|
| 330 |
+
joy,optimism
|
| 331 |
+
anger,disgust,sadness
|
| 332 |
+
anger,disgust,sadness
|
| 333 |
+
anger,disgust,sadness
|
| 334 |
+
joy,love,optimism
|
| 335 |
+
anger,disgust,sadness
|
| 336 |
+
fear,joy,optimism
|
| 337 |
+
anger,disgust,sadness
|
| 338 |
+
joy,optimism
|
| 339 |
+
anger,disgust,sadness
|
| 340 |
+
anger,disgust,sadness
|
| 341 |
+
anger,disgust,fear
|
| 342 |
+
anger,disgust,sadness
|
| 343 |
+
anger,disgust,sadness
|
| 344 |
+
fear,pessimism,sadness
|
| 345 |
+
fear,optimism
|
| 346 |
+
optimism
|
| 347 |
+
anger,disgust,fear
|
| 348 |
+
anger,disgust,sadness
|
| 349 |
+
anger,disgust,sadness
|
| 350 |
+
fear,pessimism,sadness
|
| 351 |
+
anger,disgust
|
| 352 |
+
anger,disgust,sadness
|
| 353 |
+
joy,love,optimism
|
| 354 |
+
joy,optimism
|
| 355 |
+
anger,disgust,fear
|
| 356 |
+
joy,love,optimism
|
| 357 |
+
anger,disgust,sadness
|
| 358 |
+
joy,love,optimism
|
| 359 |
+
anger,disgust,sadness
|
| 360 |
+
anger,disgust,sadness
|
| 361 |
+
joy,love,optimism
|
| 362 |
+
joy,optimism
|
| 363 |
+
anger,disgust,sadness
|
| 364 |
+
anger,disgust,sadness
|
| 365 |
+
joy,optimism
|
| 366 |
+
anger,disgust,fear
|
| 367 |
+
anger,disgust,sadness
|
| 368 |
+
anger,disgust,optimism
|
| 369 |
+
joy,love,optimism
|
| 370 |
+
fear,pessimism,sadness
|
| 371 |
+
joy,optimism
|
| 372 |
+
joy,optimism
|
| 373 |
+
joy,optimism
|
| 374 |
+
joy,love,optimism
|
| 375 |
+
anger,disgust,sadness
|
| 376 |
+
joy,optimism
|
| 377 |
+
anger,disgust,joy
|
| 378 |
+
joy,optimism
|
| 379 |
+
joy,love,optimism
|
| 380 |
+
anger,disgust,fear
|
| 381 |
+
joy,optimism
|
| 382 |
+
anger,disgust,sadness
|
| 383 |
+
joy,love,optimism
|
| 384 |
+
anger,disgust,sadness
|
| 385 |
+
fear,pessimism,sadness
|
| 386 |
+
anger,disgust,fear
|
| 387 |
+
joy,optimism
|
| 388 |
+
anticipation,joy,optimism
|
| 389 |
+
anger,disgust,sadness
|
| 390 |
+
anger,disgust,joy
|
| 391 |
+
anger,disgust,sadness
|
| 392 |
+
joy,optimism
|
| 393 |
+
joy,love,optimism
|
| 394 |
+
anger,disgust,joy
|
| 395 |
+
joy,love,optimism
|
| 396 |
+
joy,optimism
|
| 397 |
+
joy,love,optimism
|
| 398 |
+
anticipation,joy,optimism
|
| 399 |
+
anger,disgust,sadness
|
| 400 |
+
joy,love,optimism
|
| 401 |
+
joy,love,optimism
|
| 402 |
+
fear,joy,optimism
|
| 403 |
+
anger,disgust,sadness
|
| 404 |
+
joy,love,optimism
|
| 405 |
+
anger,disgust,fear
|
| 406 |
+
anger,disgust,fear,sadness
|
| 407 |
+
fear,pessimism,sadness
|
| 408 |
+
joy,optimism
|
| 409 |
+
joy,optimism
|
| 410 |
+
anger,disgust,sadness
|
| 411 |
+
anger,disgust,sadness
|
| 412 |
+
joy,optimism
|
| 413 |
+
joy,optimism
|
| 414 |
+
anger,disgust,joy
|
| 415 |
+
joy,optimism
|
| 416 |
+
anger,disgust,sadness
|
| 417 |
+
anticipation,joy,optimism
|
| 418 |
+
joy,optimism
|
| 419 |
+
joy,optimism
|
| 420 |
+
joy,optimism
|
| 421 |
+
joy,optimism
|
| 422 |
+
anger,disgust,sadness
|
| 423 |
+
anger,disgust,joy
|
| 424 |
+
anger,disgust
|
| 425 |
+
anger,disgust,sadness
|
| 426 |
+
anger,disgust,sadness
|
| 427 |
+
anger,disgust,sadness
|
| 428 |
+
anger,disgust,sadness
|
| 429 |
+
anger,disgust,sadness
|
| 430 |
+
joy,love,optimism
|
| 431 |
+
joy,love,optimism
|
| 432 |
+
anger,disgust,sadness
|
| 433 |
+
anger,disgust,sadness
|
| 434 |
+
joy,optimism
|
| 435 |
+
joy,optimism
|
| 436 |
+
anger,disgust,sadness
|
| 437 |
+
anger,disgust,sadness
|
| 438 |
+
anger,disgust,sadness
|
| 439 |
+
joy,love,optimism
|
| 440 |
+
anger,disgust,sadness
|
| 441 |
+
joy,optimism
|
| 442 |
+
anger,disgust,sadness
|
| 443 |
+
joy,optimism
|
| 444 |
+
joy,optimism
|
| 445 |
+
joy,optimism
|
| 446 |
+
joy,optimism
|
| 447 |
+
anger,disgust,sadness
|
| 448 |
+
anger,disgust,sadness
|
| 449 |
+
joy,optimism
|
| 450 |
+
joy,love,optimism
|
| 451 |
+
anger,disgust,fear
|
| 452 |
+
joy,optimism
|
| 453 |
+
optimism
|
| 454 |
+
anger,disgust,fear
|
| 455 |
+
anger,disgust,sadness
|
| 456 |
+
fear,pessimism,sadness
|
| 457 |
+
anger,disgust,sadness
|
| 458 |
+
joy,love,optimism
|
| 459 |
+
joy,love,optimism
|
| 460 |
+
anger,disgust,sadness
|
| 461 |
+
joy,optimism
|
| 462 |
+
anger,disgust,sadness
|
| 463 |
+
anger,disgust,sadness
|
| 464 |
+
anger,disgust,sadness
|
| 465 |
+
anticipation,joy,optimism
|
| 466 |
+
anger,disgust,sadness
|
| 467 |
+
optimism,trust
|
| 468 |
+
joy,optimism
|
| 469 |
+
anger,disgust,sadness
|
| 470 |
+
anger,disgust,sadness
|
| 471 |
+
joy,love,optimism
|
| 472 |
+
joy,love,optimism
|
| 473 |
+
anger,disgust,sadness
|
| 474 |
+
anger,disgust
|
| 475 |
+
joy,optimism
|
| 476 |
+
joy,optimism
|
| 477 |
+
joy,optimism
|
| 478 |
+
anger,disgust,sadness
|
| 479 |
+
joy,love,optimism
|
| 480 |
+
anticipation,joy,optimism
|
| 481 |
+
fear,pessimism,sadness
|
| 482 |
+
joy,love,optimism
|
| 483 |
+
joy,optimism
|
| 484 |
+
joy,optimism
|
| 485 |
+
fear,pessimism,sadness
|
| 486 |
+
anger,disgust,sadness
|
| 487 |
+
joy,optimism
|
| 488 |
+
anger,disgust,fear
|
| 489 |
+
anger,disgust,sadness
|
| 490 |
+
joy,optimism
|
| 491 |
+
fear,pessimism,sadness
|
| 492 |
+
anger,disgust,fear
|
| 493 |
+
joy,love,optimism
|
| 494 |
+
anger,disgust,sadness
|
| 495 |
+
joy,optimism
|
| 496 |
+
anger,disgust,sadness
|
| 497 |
+
joy,optimism
|
| 498 |
+
anticipation,joy,optimism
|
| 499 |
+
anger,disgust
|
| 500 |
+
joy,love,optimism
|
| 501 |
+
anger,disgust,sadness
|
| 502 |
+
anger,disgust,sadness
|
| 503 |
+
joy,optimism
|
| 504 |
+
joy,optimism
|
| 505 |
+
joy,optimism
|
| 506 |
+
anger,disgust,sadness
|
| 507 |
+
anticipation,joy,optimism
|
| 508 |
+
joy,optimism
|
| 509 |
+
anger,disgust,sadness
|
| 510 |
+
anger,disgust,joy
|
| 511 |
+
anger,disgust,sadness
|
| 512 |
+
fear,pessimism,sadness
|
| 513 |
+
anger,disgust,sadness
|
| 514 |
+
anger,disgust,sadness
|
| 515 |
+
joy,optimism
|
| 516 |
+
anger,disgust,sadness
|
| 517 |
+
joy,love,optimism
|
| 518 |
+
anger,disgust,fear
|
| 519 |
+
anger,disgust,sadness
|
| 520 |
+
joy,optimism
|
| 521 |
+
joy,optimism
|
| 522 |
+
joy,optimism
|
| 523 |
+
anger,disgust,fear
|
| 524 |
+
optimism,trust
|
| 525 |
+
anticipation,joy,optimism
|
| 526 |
+
joy,optimism
|
| 527 |
+
joy,love,optimism
|
| 528 |
+
joy,optimism
|
| 529 |
+
anger,disgust,fear
|
| 530 |
+
anger,disgust,sadness
|
| 531 |
+
anger,disgust,sadness
|
| 532 |
+
anger,disgust,sadness
|
| 533 |
+
anger,disgust
|
| 534 |
+
sadness
|
| 535 |
+
joy,love,optimism
|
| 536 |
+
anger,disgust,sadness
|
| 537 |
+
anger,disgust,sadness
|
| 538 |
+
anger,disgust,sadness
|
| 539 |
+
anger,disgust,sadness
|
| 540 |
+
joy,love,optimism
|
| 541 |
+
anger,disgust,sadness
|
| 542 |
+
anger,disgust,sadness
|
| 543 |
+
anger,disgust
|
| 544 |
+
anger,disgust,sadness
|
| 545 |
+
joy,love,optimism
|
| 546 |
+
anticipation,joy,optimism
|
| 547 |
+
anger,disgust,sadness
|
| 548 |
+
anger,disgust,joy
|
| 549 |
+
joy,optimism
|
| 550 |
+
joy,optimism
|
| 551 |
+
sadness
|
| 552 |
+
anger,disgust
|
| 553 |
+
joy,optimism
|
| 554 |
+
fear,sadness
|
| 555 |
+
joy,love,optimism
|
| 556 |
+
anger,disgust,fear
|
| 557 |
+
anger,disgust,sadness
|
| 558 |
+
anger,disgust,pessimism
|
| 559 |
+
joy,love,optimism
|
| 560 |
+
joy,optimism
|
| 561 |
+
joy,optimism
|
| 562 |
+
anger,disgust,sadness
|
| 563 |
+
joy,optimism
|
| 564 |
+
fear,pessimism,sadness
|
| 565 |
+
anger,disgust,sadness
|
| 566 |
+
joy,love,optimism
|
| 567 |
+
anger,disgust,sadness
|
| 568 |
+
joy,love,optimism
|
| 569 |
+
anger,disgust,sadness
|
| 570 |
+
fear,pessimism,sadness
|
| 571 |
+
joy,optimism
|
| 572 |
+
anticipation,joy,optimism
|
| 573 |
+
anger,disgust,sadness
|
| 574 |
+
joy,optimism
|
| 575 |
+
anger,disgust,sadness
|
| 576 |
+
joy,love,optimism
|
| 577 |
+
fear,pessimism,sadness
|
| 578 |
+
anger,disgust,fear,sadness
|
| 579 |
+
joy,love,optimism
|
| 580 |
+
anger,disgust,sadness
|
| 581 |
+
anger,disgust,joy
|
| 582 |
+
joy,optimism
|
| 583 |
+
joy,optimism
|
| 584 |
+
anger,disgust,sadness
|
| 585 |
+
joy,optimism
|
| 586 |
+
anger,disgust,sadness
|
| 587 |
+
anger,disgust,sadness
|
| 588 |
+
anger,disgust,fear
|
| 589 |
+
anger,disgust,sadness
|
| 590 |
+
joy,optimism
|
| 591 |
+
anger,disgust,sadness
|
| 592 |
+
anger,disgust,sadness
|
| 593 |
+
anger,disgust,sadness
|
| 594 |
+
anger,disgust,sadness
|
| 595 |
+
joy,optimism
|
| 596 |
+
anger,disgust,sadness
|
| 597 |
+
joy,love,optimism
|
| 598 |
+
anger,disgust,sadness
|
| 599 |
+
anger,disgust,sadness
|
| 600 |
+
joy,optimism
|
| 601 |
+
anger,disgust,fear
|
| 602 |
+
anger,disgust,sadness
|
| 603 |
+
joy,love,optimism
|
| 604 |
+
joy,optimism
|
| 605 |
+
anger,disgust
|
| 606 |
+
joy,love,optimism
|
| 607 |
+
anticipation,joy,optimism
|
| 608 |
+
joy,love,optimism
|
| 609 |
+
anger,disgust,sadness
|
| 610 |
+
joy,optimism
|
| 611 |
+
anger,disgust,fear
|
| 612 |
+
joy,optimism
|
| 613 |
+
joy,optimism
|
| 614 |
+
anger,disgust,sadness
|
| 615 |
+
joy,optimism
|
| 616 |
+
anger,disgust
|
| 617 |
+
anger,disgust,fear
|
| 618 |
+
anger,disgust,fear
|
| 619 |
+
joy,optimism
|
| 620 |
+
anger,disgust,sadness
|
| 621 |
+
anger,disgust,fear
|
| 622 |
+
joy,optimism
|
| 623 |
+
anger,disgust,sadness
|
| 624 |
+
fear,optimism
|
| 625 |
+
joy,love,optimism
|
| 626 |
+
joy,love,optimism
|
| 627 |
+
joy,optimism
|
| 628 |
+
anger,disgust,fear
|
| 629 |
+
joy,optimism
|
| 630 |
+
joy,optimism
|
| 631 |
+
anger,disgust
|
| 632 |
+
anger,disgust,sadness
|
| 633 |
+
joy,love,optimism
|
| 634 |
+
anger,disgust,sadness
|
| 635 |
+
anger,disgust,sadness
|
| 636 |
+
anticipation,joy,optimism
|
| 637 |
+
anger,disgust,sadness
|
| 638 |
+
joy,optimism
|
| 639 |
+
joy,optimism
|
| 640 |
+
anger,disgust,joy
|
| 641 |
+
anger,disgust,sadness
|
| 642 |
+
anger,disgust,sadness
|
| 643 |
+
joy,love,optimism
|
| 644 |
+
anger,disgust,sadness
|
| 645 |
+
fear,pessimism,sadness
|
| 646 |
+
anger,disgust,sadness
|
| 647 |
+
anger,disgust,sadness
|
| 648 |
+
anger,disgust,sadness
|
| 649 |
+
anger,disgust,sadness
|
| 650 |
+
anger,disgust,fear
|
| 651 |
+
joy,optimism
|
| 652 |
+
anger,disgust,sadness
|
| 653 |
+
joy,optimism
|
| 654 |
+
joy,love,optimism
|
| 655 |
+
anger,disgust,sadness
|
| 656 |
+
anger,disgust,sadness
|
| 657 |
+
anger,disgust,joy
|
| 658 |
+
anger,disgust,sadness
|
| 659 |
+
disgust,sadness
|
| 660 |
+
anger,disgust,sadness
|
| 661 |
+
anticipation,joy,optimism
|
| 662 |
+
anger,disgust,fear
|
| 663 |
+
joy,love,optimism
|
| 664 |
+
joy,love,optimism
|
| 665 |
+
anger,disgust,fear
|
| 666 |
+
fear,pessimism,sadness
|
| 667 |
+
anger,disgust,sadness
|
| 668 |
+
joy,love,optimism
|
| 669 |
+
fear,pessimism,sadness
|
| 670 |
+
anger,disgust,sadness
|
| 671 |
+
fear,optimism
|
| 672 |
+
joy,optimism
|
| 673 |
+
anger,disgust,sadness
|
| 674 |
+
anger,disgust,fear
|
| 675 |
+
anger,disgust,fear
|
| 676 |
+
joy,optimism
|
| 677 |
+
joy,optimism
|
| 678 |
+
anger,disgust,sadness
|
| 679 |
+
joy,love,optimism
|
| 680 |
+
anger,disgust,sadness
|
| 681 |
+
anger,disgust,sadness
|
| 682 |
+
anger,disgust,sadness
|
| 683 |
+
anger,disgust,sadness
|
| 684 |
+
anger,disgust,sadness
|
| 685 |
+
fear,pessimism,sadness
|
| 686 |
+
anger,disgust,sadness
|
| 687 |
+
anger,disgust,sadness
|
| 688 |
+
joy,optimism
|
| 689 |
+
joy,love,optimism
|
| 690 |
+
anticipation,joy,optimism
|
| 691 |
+
joy,love,optimism
|
| 692 |
+
anger,disgust,sadness
|
| 693 |
+
joy,optimism
|
| 694 |
+
fear,pessimism,sadness
|
| 695 |
+
anger,disgust,sadness
|
| 696 |
+
joy,optimism
|
| 697 |
+
joy,love,optimism
|
| 698 |
+
sadness
|
| 699 |
+
anger,disgust,sadness
|
| 700 |
+
joy,optimism
|
| 701 |
+
anger,disgust,sadness
|
| 702 |
+
joy,optimism
|
| 703 |
+
anger,disgust,sadness
|
| 704 |
+
anticipation,joy,optimism
|
| 705 |
+
joy,love,optimism
|
| 706 |
+
anger,disgust,sadness
|
| 707 |
+
anger,disgust,sadness
|
| 708 |
+
anger,disgust,fear
|
| 709 |
+
anger,disgust,fear
|
| 710 |
+
anger,disgust,sadness
|
| 711 |
+
fear,joy,optimism
|
| 712 |
+
anger,disgust,sadness
|
| 713 |
+
joy,optimism
|
| 714 |
+
disgust,fear,sadness
|
| 715 |
+
anger,disgust,fear
|
| 716 |
+
anger,disgust,sadness
|
| 717 |
+
anger,disgust,fear
|
| 718 |
+
joy,love,optimism
|
| 719 |
+
anger,disgust,sadness
|
| 720 |
+
anger,disgust,sadness
|
| 721 |
+
joy,optimism
|
| 722 |
+
fear,optimism
|
| 723 |
+
anger,disgust,joy
|
| 724 |
+
anger,disgust,joy
|
| 725 |
+
joy,love,optimism
|
| 726 |
+
anger,disgust,sadness
|
| 727 |
+
joy,love,optimism
|
| 728 |
+
anger,disgust,fear
|
| 729 |
+
anger,disgust,sadness
|
| 730 |
+
anticipation,joy,optimism
|
| 731 |
+
joy,optimism
|
| 732 |
+
joy,optimism
|
| 733 |
+
anger,disgust
|
| 734 |
+
anger,disgust,sadness
|
| 735 |
+
joy,optimism
|
| 736 |
+
anger,disgust,sadness
|
| 737 |
+
joy,love,optimism
|
| 738 |
+
joy,optimism
|
| 739 |
+
anger,disgust,sadness
|
| 740 |
+
joy,optimism
|
| 741 |
+
anger,disgust,sadness
|
| 742 |
+
anger,disgust,sadness
|
| 743 |
+
anger,disgust,fear
|
| 744 |
+
anticipation,joy,optimism
|
| 745 |
+
joy,optimism
|
| 746 |
+
anger,disgust,fear
|
| 747 |
+
anger,disgust,sadness
|
| 748 |
+
anger,disgust,sadness
|
| 749 |
+
joy,optimism
|
| 750 |
+
anger,disgust,sadness
|
| 751 |
+
anger,disgust,fear
|
| 752 |
+
anger,disgust,sadness
|
| 753 |
+
fear,pessimism,sadness
|
| 754 |
+
joy,love,optimism
|
| 755 |
+
anger,disgust,sadness
|
| 756 |
+
anger,disgust,sadness
|
| 757 |
+
anger,disgust,sadness
|
| 758 |
+
joy,optimism
|
| 759 |
+
joy,love,optimism
|
| 760 |
+
anger,disgust,sadness
|
| 761 |
+
anger,disgust,fear
|
| 762 |
+
joy,love,optimism
|
| 763 |
+
anger,disgust,sadness
|
| 764 |
+
anger,disgust,sadness
|
| 765 |
+
anticipation,joy,optimism
|
| 766 |
+
joy,optimism
|
| 767 |
+
joy,optimism
|
| 768 |
+
joy,love,optimism
|
| 769 |
+
anger,disgust
|
| 770 |
+
joy,love,optimism
|
| 771 |
+
anger,disgust,sadness
|
| 772 |
+
joy,love,optimism
|
| 773 |
+
fear,pessimism,sadness
|
| 774 |
+
joy,optimism
|
| 775 |
+
anger,disgust,sadness
|
| 776 |
+
joy,optimism
|
| 777 |
+
anticipation,joy,optimism
|
| 778 |
+
joy,optimism
|
| 779 |
+
joy,optimism
|
| 780 |
+
fear,pessimism,sadness
|
| 781 |
+
joy,optimism
|
| 782 |
+
anger,disgust,sadness
|
| 783 |
+
joy,love,optimism
|
| 784 |
+
anger,disgust,fear
|
| 785 |
+
anticipation,joy,optimism
|
| 786 |
+
anger,disgust,sadness
|
| 787 |
+
anger,disgust,sadness
|
| 788 |
+
anger,disgust
|
| 789 |
+
anger,disgust,sadness
|
| 790 |
+
anger,disgust,sadness
|
| 791 |
+
joy,love,optimism
|
| 792 |
+
joy,optimism
|
| 793 |
+
joy,optimism
|
| 794 |
+
anger,disgust,fear
|
| 795 |
+
joy,optimism
|
| 796 |
+
anger,disgust,sadness
|
| 797 |
+
joy,optimism
|
| 798 |
+
fear,optimism
|
| 799 |
+
anger,disgust,sadness
|
| 800 |
+
joy,optimism
|
| 801 |
+
anger,disgust,sadness
|
| 802 |
+
joy,love,optimism
|
| 803 |
+
anger,disgust,sadness
|
| 804 |
+
sadness
|
| 805 |
+
anger,disgust
|
| 806 |
+
joy,love,optimism
|
| 807 |
+
joy,optimism
|
| 808 |
+
joy,love,optimism
|
| 809 |
+
anger,disgust,sadness
|
| 810 |
+
fear,joy,optimism
|
| 811 |
+
anger,disgust,fear
|
| 812 |
+
anger,disgust,sadness
|
| 813 |
+
anger,disgust,sadness
|
| 814 |
+
anger,disgust,sadness
|
| 815 |
+
anger,disgust
|
| 816 |
+
joy,love,optimism
|
| 817 |
+
joy,optimism
|
| 818 |
+
anticipation,joy,optimism
|
| 819 |
+
anger,disgust,sadness
|
| 820 |
+
anger,disgust,fear
|
| 821 |
+
joy,love,optimism
|
| 822 |
+
joy,optimism
|
| 823 |
+
fear,pessimism,sadness
|
| 824 |
+
anger,disgust,sadness
|
| 825 |
+
joy,love,optimism
|
| 826 |
+
joy,love,optimism
|
| 827 |
+
anger,disgust,fear
|
| 828 |
+
anger,disgust,sadness
|
| 829 |
+
joy,love,optimism
|
| 830 |
+
fear,joy,optimism
|
| 831 |
+
anger,disgust,sadness
|
| 832 |
+
joy,love,optimism
|
| 833 |
+
anger,disgust,sadness
|
| 834 |
+
anger,disgust,sadness
|
| 835 |
+
joy,optimism
|
| 836 |
+
joy,love,optimism
|
| 837 |
+
joy,optimism
|
| 838 |
+
anger,disgust,sadness
|
| 839 |
+
anger,disgust,sadness
|
| 840 |
+
anger,disgust,sadness
|
| 841 |
+
joy,love,optimism
|
| 842 |
+
anger,disgust,sadness
|
| 843 |
+
anger,disgust,sadness
|
| 844 |
+
anger,disgust,sadness
|
| 845 |
+
anger,disgust,sadness
|
| 846 |
+
anger,disgust,sadness
|
| 847 |
+
joy,love,optimism
|
| 848 |
+
fear,pessimism,sadness
|
| 849 |
+
joy,optimism
|
| 850 |
+
joy,optimism
|
| 851 |
+
anger,disgust
|
| 852 |
+
fear,sadness
|
| 853 |
+
anger,disgust,sadness
|
| 854 |
+
optimism
|
| 855 |
+
fear,optimism
|
| 856 |
+
anger,disgust,sadness
|
| 857 |
+
anger,disgust,fear
|
| 858 |
+
anger,disgust,sadness
|
| 859 |
+
anger,disgust,sadness
|
| 860 |
+
joy,optimism
|
| 861 |
+
joy,optimism
|
| 862 |
+
joy,optimism
|
| 863 |
+
joy,love,optimism
|
| 864 |
+
joy,love,optimism
|
| 865 |
+
anger,disgust,sadness
|
| 866 |
+
anger,disgust,sadness
|
| 867 |
+
optimism,trust
|
| 868 |
+
joy,love,optimism
|
| 869 |
+
anger,disgust,sadness
|
| 870 |
+
joy,optimism
|
| 871 |
+
joy,optimism
|
| 872 |
+
anger,disgust,sadness
|
| 873 |
+
anger,disgust,sadness
|
| 874 |
+
anger,disgust,sadness
|
| 875 |
+
anger,disgust,optimism
|
| 876 |
+
joy,optimism
|
| 877 |
+
joy,optimism
|
| 878 |
+
joy,optimism
|
| 879 |
+
fear,pessimism,sadness
|
| 880 |
+
anticipation,joy,optimism
|
| 881 |
+
joy,love,optimism
|
| 882 |
+
anger,disgust,sadness
|
| 883 |
+
anger,disgust,sadness
|
| 884 |
+
joy,love,optimism
|
| 885 |
+
anger,disgust,sadness
|
| 886 |
+
fear,pessimism,sadness
|
| 887 |
+
fear,pessimism,sadness
|
| 888 |
+
joy,optimism
|
| 889 |
+
anticipation,joy,optimism
|
| 890 |
+
anger,disgust,sadness
|
| 891 |
+
anger,disgust,sadness
|
| 892 |
+
joy,optimism
|
| 893 |
+
anger,disgust,sadness
|
| 894 |
+
joy,love,optimism
|
| 895 |
+
anger,disgust,fear
|
| 896 |
+
anger,disgust,sadness
|
| 897 |
+
joy,optimism
|
| 898 |
+
anger,disgust,sadness
|
| 899 |
+
anger,disgust,fear
|
| 900 |
+
anger,disgust,fear
|
| 901 |
+
anger,disgust,fear
|
| 902 |
+
joy,optimism
|
| 903 |
+
joy,optimism
|
| 904 |
+
sadness
|
| 905 |
+
joy,optimism
|
| 906 |
+
joy,love,optimism
|
| 907 |
+
anger,disgust,sadness
|
| 908 |
+
anger,disgust
|
| 909 |
+
optimism,trust
|
| 910 |
+
joy,optimism
|
| 911 |
+
joy,optimism
|
| 912 |
+
anger,disgust,sadness
|
| 913 |
+
anger,disgust,sadness
|
| 914 |
+
anger,disgust,sadness
|
| 915 |
+
anger,disgust,sadness
|
| 916 |
+
joy,optimism
|
| 917 |
+
joy,optimism
|
| 918 |
+
anger,disgust,joy
|
| 919 |
+
fear,joy,optimism
|
| 920 |
+
joy,love,optimism
|
| 921 |
+
anger,disgust,fear
|
| 922 |
+
joy,optimism
|
| 923 |
+
anger,disgust,sadness
|
| 924 |
+
joy,optimism
|
| 925 |
+
joy,optimism
|
| 926 |
+
anger,disgust,sadness
|
| 927 |
+
anger,disgust,fear
|
| 928 |
+
anger,disgust,sadness
|
| 929 |
+
joy,optimism
|
| 930 |
+
joy,optimism
|
| 931 |
+
anger,disgust,sadness
|
| 932 |
+
anger,disgust,sadness
|
| 933 |
+
anger,disgust,sadness
|
| 934 |
+
anger,disgust,sadness
|
| 935 |
+
joy,optimism
|
| 936 |
+
anger,disgust,sadness
|
| 937 |
+
fear,sadness
|
| 938 |
+
joy,optimism
|
| 939 |
+
anger,disgust,sadness
|
| 940 |
+
anger,disgust,fear
|
| 941 |
+
fear,joy,optimism
|
| 942 |
+
anger,disgust,fear,sadness
|
| 943 |
+
fear,joy,optimism
|
| 944 |
+
joy,optimism
|
| 945 |
+
anger,disgust,optimism
|
| 946 |
+
joy,optimism
|
| 947 |
+
anticipation,joy,optimism
|
| 948 |
+
joy,optimism
|
| 949 |
+
anger,disgust,sadness
|
| 950 |
+
joy,optimism
|
| 951 |
+
anger,disgust,sadness
|
| 952 |
+
joy,love,optimism
|
| 953 |
+
joy,optimism
|
| 954 |
+
joy,optimism
|
| 955 |
+
pessimism,sadness
|
| 956 |
+
anger,disgust,fear
|
| 957 |
+
anger,disgust,fear
|
| 958 |
+
joy,optimism
|
| 959 |
+
joy,love,optimism
|
| 960 |
+
joy,love,optimism
|
| 961 |
+
joy,optimism
|
| 962 |
+
joy,love,optimism
|
| 963 |
+
joy,optimism
|
| 964 |
+
anger,disgust,sadness
|
| 965 |
+
sadness
|
| 966 |
+
anger,disgust,sadness
|
| 967 |
+
anger,disgust,sadness
|
| 968 |
+
anger,disgust,sadness
|
| 969 |
+
optimism
|
| 970 |
+
anger,disgust,sadness
|
| 971 |
+
anger,disgust
|
| 972 |
+
anger,disgust,fear
|
| 973 |
+
anger,disgust,sadness
|
| 974 |
+
optimism
|
| 975 |
+
joy,love,optimism
|
| 976 |
+
joy,optimism
|
| 977 |
+
fear,pessimism,sadness
|
| 978 |
+
anger,disgust,sadness
|
| 979 |
+
anger,disgust,sadness
|
| 980 |
+
sadness
|
| 981 |
+
anger,disgust,sadness
|
| 982 |
+
joy,optimism
|
| 983 |
+
joy,optimism
|
| 984 |
+
joy,optimism
|
| 985 |
+
anger,disgust,sadness
|
| 986 |
+
fear,pessimism,sadness
|
| 987 |
+
joy,optimism
|
| 988 |
+
sadness
|
| 989 |
+
anticipation,joy,optimism
|
| 990 |
+
anger,disgust,sadness
|
| 991 |
+
anger,disgust,sadness
|
| 992 |
+
anger,disgust,sadness
|
| 993 |
+
joy,optimism
|
| 994 |
+
anger,disgust,sadness
|
| 995 |
+
fear,sadness
|
| 996 |
+
joy,optimism
|
| 997 |
+
anger,disgust,sadness
|
| 998 |
+
anger,disgust,sadness
|
| 999 |
+
joy,love,optimism
|
| 1000 |
+
anger,disgust,sadness
|
| 1001 |
+
joy,love,optimism
|
| 1002 |
+
joy,optimism
|
| 1003 |
+
anticipation,joy,optimism
|
| 1004 |
+
anger,disgust,fear
|
| 1005 |
+
optimism
|
| 1006 |
+
joy,love,optimism
|
| 1007 |
+
joy,love,optimism
|
| 1008 |
+
anger,disgust,fear
|
| 1009 |
+
anger,disgust,joy
|
| 1010 |
+
anticipation,joy,optimism
|
| 1011 |
+
joy,optimism
|
| 1012 |
+
joy,optimism
|
| 1013 |
+
anger,disgust,sadness
|
| 1014 |
+
joy,love,optimism
|
| 1015 |
+
anger,disgust,sadness
|
| 1016 |
+
pessimism,sadness
|
| 1017 |
+
anger,disgust,sadness
|
| 1018 |
+
anger,disgust,sadness
|
| 1019 |
+
optimism
|
| 1020 |
+
anger,disgust,fear,sadness
|
| 1021 |
+
anger,disgust,sadness
|
| 1022 |
+
joy,optimism
|
| 1023 |
+
anger,disgust,fear
|
| 1024 |
+
anger,disgust,fear,sadness
|
| 1025 |
+
joy,love,optimism
|
| 1026 |
+
anger,disgust,sadness
|
| 1027 |
+
fear,pessimism,sadness
|
| 1028 |
+
anger,disgust,sadness
|
| 1029 |
+
joy,optimism
|
| 1030 |
+
joy,optimism
|
| 1031 |
+
anger,disgust,sadness
|
| 1032 |
+
joy,optimism
|
| 1033 |
+
anger,disgust,sadness
|
| 1034 |
+
joy,optimism
|
| 1035 |
+
joy,optimism
|
| 1036 |
+
anger,disgust,sadness
|
| 1037 |
+
anger,disgust,optimism
|
| 1038 |
+
joy,optimism
|
| 1039 |
+
joy,optimism
|
| 1040 |
+
anger,disgust,sadness
|
| 1041 |
+
joy,love,optimism
|
| 1042 |
+
anger,disgust,sadness
|
| 1043 |
+
joy,optimism
|
| 1044 |
+
joy,optimism
|
| 1045 |
+
anticipation,joy,optimism
|
| 1046 |
+
joy,optimism
|
| 1047 |
+
joy,love,optimism
|
| 1048 |
+
anger,disgust,sadness
|
| 1049 |
+
joy,optimism
|
| 1050 |
+
anger,disgust,fear,sadness
|
| 1051 |
+
anticipation,disgust,fear
|
| 1052 |
+
fear,joy,optimism
|
| 1053 |
+
anger,disgust,fear
|
| 1054 |
+
joy,optimism
|
| 1055 |
+
fear,pessimism,sadness
|
| 1056 |
+
anger,disgust
|
| 1057 |
+
anger,disgust,sadness
|
| 1058 |
+
anger,disgust,sadness
|
| 1059 |
+
anger,disgust,sadness
|
| 1060 |
+
joy,optimism
|
| 1061 |
+
joy,optimism
|
| 1062 |
+
joy,optimism
|
| 1063 |
+
anger,disgust,sadness
|
| 1064 |
+
anger,disgust,sadness
|
| 1065 |
+
joy,love,optimism
|
| 1066 |
+
joy,optimism
|
| 1067 |
+
anger,disgust,sadness
|
| 1068 |
+
anger,disgust,sadness
|
| 1069 |
+
joy,love,optimism
|
| 1070 |
+
fear,joy,optimism
|
| 1071 |
+
anger,disgust,fear
|
| 1072 |
+
pessimism,sadness
|
| 1073 |
+
anger,disgust,sadness
|
| 1074 |
+
anger,disgust,sadness
|
| 1075 |
+
joy,optimism
|
| 1076 |
+
joy,love,optimism
|
| 1077 |
+
anger,disgust,sadness
|
| 1078 |
+
|
| 1079 |
+
anger,disgust,sadness
|
| 1080 |
+
joy,optimism
|
| 1081 |
+
joy,optimism
|
| 1082 |
+
joy,optimism
|
| 1083 |
+
anger,disgust,sadness
|
| 1084 |
+
anger,disgust,sadness
|
| 1085 |
+
anger,disgust,fear
|
| 1086 |
+
anger,disgust,sadness
|
| 1087 |
+
anger,disgust,fear
|
| 1088 |
+
anger,disgust,sadness
|
| 1089 |
+
joy,optimism
|
| 1090 |
+
anger,disgust,sadness
|
| 1091 |
+
anger,disgust,sadness
|
| 1092 |
+
anger,disgust,joy
|
| 1093 |
+
joy,love,optimism
|
| 1094 |
+
anger,disgust,sadness
|
| 1095 |
+
anger,disgust,sadness
|
| 1096 |
+
anger,disgust,sadness
|
| 1097 |
+
anger,disgust,sadness
|
| 1098 |
+
joy,optimism
|
| 1099 |
+
joy,optimism
|
| 1100 |
+
joy,love,optimism
|
| 1101 |
+
sadness
|
| 1102 |
+
anger,disgust,sadness
|
| 1103 |
+
sadness
|
| 1104 |
+
anger,disgust,fear
|
| 1105 |
+
anger,disgust,fear
|
| 1106 |
+
joy,optimism
|
| 1107 |
+
joy,love,optimism
|
| 1108 |
+
sadness
|
| 1109 |
+
joy,optimism
|
| 1110 |
+
anger,disgust,sadness
|
| 1111 |
+
anger,disgust,sadness
|
| 1112 |
+
anger,disgust,fear
|
| 1113 |
+
joy,optimism
|
| 1114 |
+
anger,disgust,sadness
|
| 1115 |
+
joy,love,optimism
|
| 1116 |
+
joy,optimism
|
| 1117 |
+
joy,love,optimism
|
| 1118 |
+
anger,disgust,sadness
|
| 1119 |
+
joy,love,optimism
|
| 1120 |
+
joy,optimism
|
| 1121 |
+
joy,optimism
|
| 1122 |
+
joy,optimism
|
| 1123 |
+
joy,love,optimism
|
| 1124 |
+
joy,optimism
|
| 1125 |
+
anger,disgust,sadness
|
| 1126 |
+
anger,disgust,sadness
|
| 1127 |
+
joy,optimism
|
| 1128 |
+
joy,optimism
|
| 1129 |
+
joy,love,optimism
|
| 1130 |
+
joy,optimism
|
| 1131 |
+
joy,optimism
|
| 1132 |
+
anticipation,joy,optimism
|
| 1133 |
+
joy,optimism
|
| 1134 |
+
joy,optimism
|
| 1135 |
+
anticipation,joy,optimism
|
| 1136 |
+
anger,disgust,sadness
|
| 1137 |
+
anger,disgust,sadness
|
| 1138 |
+
joy,love,optimism
|
| 1139 |
+
anticipation,joy,optimism
|
| 1140 |
+
anger,disgust,sadness
|
| 1141 |
+
anger,disgust,joy
|
| 1142 |
+
anticipation,joy,optimism
|
| 1143 |
+
joy,optimism
|
| 1144 |
+
sadness
|
| 1145 |
+
anger,disgust,sadness
|
| 1146 |
+
anger,disgust,sadness
|
| 1147 |
+
anger,disgust,sadness
|
| 1148 |
+
sadness
|
| 1149 |
+
anger,disgust,fear
|
| 1150 |
+
anger,disgust,optimism
|
| 1151 |
+
sadness
|
| 1152 |
+
joy,love,optimism
|
| 1153 |
+
anger,disgust,sadness
|
| 1154 |
+
anger,disgust,sadness
|
| 1155 |
+
joy,optimism
|
| 1156 |
+
joy,optimism
|
| 1157 |
+
joy,optimism
|
| 1158 |
+
joy,optimism
|
| 1159 |
+
anger,disgust,fear
|
| 1160 |
+
anger,disgust
|
| 1161 |
+
anger,disgust,sadness
|
| 1162 |
+
anger,disgust,sadness
|
| 1163 |
+
anger,disgust,sadness
|
| 1164 |
+
fear,pessimism,sadness
|
| 1165 |
+
anger,disgust,optimism
|
| 1166 |
+
joy,optimism
|
| 1167 |
+
anticipation,joy,optimism
|
| 1168 |
+
joy,optimism
|
| 1169 |
+
joy,optimism
|
| 1170 |
+
joy,optimism
|
| 1171 |
+
joy,optimism
|
| 1172 |
+
joy,optimism
|
| 1173 |
+
joy,love,optimism
|
| 1174 |
+
anger,disgust
|
| 1175 |
+
joy,optimism
|
| 1176 |
+
anger,disgust,sadness
|
| 1177 |
+
optimism
|
| 1178 |
+
anger,disgust,sadness
|
| 1179 |
+
joy,love,optimism
|
| 1180 |
+
anger,disgust,fear
|
| 1181 |
+
anger,disgust,sadness
|
| 1182 |
+
joy,optimism
|
| 1183 |
+
anger,disgust,sadness
|
| 1184 |
+
fear,pessimism,sadness
|
| 1185 |
+
anger,disgust,sadness
|
| 1186 |
+
anger,disgust,sadness
|
| 1187 |
+
joy,optimism
|
| 1188 |
+
anticipation,joy,optimism
|
| 1189 |
+
joy,love,optimism
|
| 1190 |
+
anger,disgust,sadness
|
| 1191 |
+
anger,disgust,sadness
|
| 1192 |
+
anger,disgust,fear
|
| 1193 |
+
joy,love,optimism
|
| 1194 |
+
anger,disgust
|
| 1195 |
+
anger,disgust,sadness
|
| 1196 |
+
anger,disgust,joy,optimism
|
| 1197 |
+
joy,optimism
|
| 1198 |
+
joy,love,optimism
|
| 1199 |
+
anger,disgust,fear
|
| 1200 |
+
anticipation,joy,optimism
|
| 1201 |
+
anger,disgust,sadness
|
| 1202 |
+
anger,disgust,sadness
|
| 1203 |
+
anticipation,joy,optimism
|
| 1204 |
+
joy,optimism
|
| 1205 |
+
anger,disgust,sadness
|
| 1206 |
+
anger,disgust,sadness
|
| 1207 |
+
joy,optimism
|
| 1208 |
+
anger,disgust,sadness
|
| 1209 |
+
joy,optimism
|
| 1210 |
+
anger,disgust,fear
|
| 1211 |
+
anger,disgust
|
| 1212 |
+
anger,disgust,sadness
|
| 1213 |
+
anger,disgust,sadness
|
| 1214 |
+
anger,disgust,sadness
|
| 1215 |
+
anger,disgust,sadness
|
| 1216 |
+
anticipation,fear,pessimism,sadness
|
| 1217 |
+
joy,optimism
|
| 1218 |
+
anger,disgust,sadness
|
| 1219 |
+
fear,sadness
|
| 1220 |
+
joy,optimism
|
| 1221 |
+
anticipation,joy,optimism
|
| 1222 |
+
joy,love,optimism
|
| 1223 |
+
joy,optimism
|
| 1224 |
+
anger,disgust,sadness
|
| 1225 |
+
anger,disgust
|
| 1226 |
+
anger,disgust,sadness
|
| 1227 |
+
joy,love,optimism
|
| 1228 |
+
joy,love,optimism
|
| 1229 |
+
joy,optimism
|
| 1230 |
+
pessimism,sadness
|
| 1231 |
+
joy,love,optimism
|
| 1232 |
+
anger,disgust,sadness
|
| 1233 |
+
anger,disgust,sadness
|
| 1234 |
+
anger,disgust,sadness
|
| 1235 |
+
anticipation,joy,optimism
|
| 1236 |
+
anger,disgust,sadness
|
| 1237 |
+
joy,love,optimism
|
| 1238 |
+
joy,optimism
|
| 1239 |
+
joy,love,optimism
|
| 1240 |
+
joy,optimism
|
| 1241 |
+
anger,disgust,sadness
|
| 1242 |
+
joy,optimism
|
| 1243 |
+
joy,optimism
|
| 1244 |
+
anger,disgust,sadness
|
| 1245 |
+
joy,optimism
|
| 1246 |
+
anger,disgust
|
| 1247 |
+
anger,disgust,sadness
|
| 1248 |
+
anger,disgust,sadness
|
| 1249 |
+
fear,pessimism,sadness
|
| 1250 |
+
joy,love,optimism
|
| 1251 |
+
joy,optimism
|
| 1252 |
+
anger,disgust,fear
|
| 1253 |
+
joy,optimism
|
| 1254 |
+
anger,disgust,sadness
|
| 1255 |
+
joy,optimism
|
| 1256 |
+
anger,disgust,joy
|
| 1257 |
+
joy,optimism
|
| 1258 |
+
anger,disgust,sadness
|
| 1259 |
+
joy,optimism
|
| 1260 |
+
joy,love,optimism
|
| 1261 |
+
anticipation,joy,optimism
|
| 1262 |
+
anger,disgust,sadness
|
| 1263 |
+
anticipation,joy,optimism
|
| 1264 |
+
joy,optimism
|
| 1265 |
+
joy,love,optimism
|
| 1266 |
+
fear,joy,optimism
|
| 1267 |
+
joy,optimism
|
| 1268 |
+
anger,disgust,fear
|
| 1269 |
+
anger,disgust,fear
|
| 1270 |
+
joy,love,optimism
|
| 1271 |
+
joy,optimism
|
| 1272 |
+
joy,optimism
|
| 1273 |
+
joy,optimism
|
| 1274 |
+
anger,disgust,sadness
|
| 1275 |
+
joy,optimism
|
| 1276 |
+
fear,optimism
|
| 1277 |
+
anger,disgust,fear
|
| 1278 |
+
anger,disgust,sadness
|
| 1279 |
+
anger,disgust
|
| 1280 |
+
anger,disgust,sadness
|
| 1281 |
+
anger,disgust,sadness
|
| 1282 |
+
joy,love,optimism
|
| 1283 |
+
joy,love,optimism
|
| 1284 |
+
joy,optimism
|
| 1285 |
+
joy,optimism
|
| 1286 |
+
anticipation,joy,optimism
|
| 1287 |
+
joy,love,optimism
|
| 1288 |
+
joy,optimism
|
| 1289 |
+
joy,optimism
|
| 1290 |
+
joy,optimism
|
| 1291 |
+
joy,love,optimism
|
| 1292 |
+
anger,disgust,sadness
|
| 1293 |
+
joy,optimism
|
| 1294 |
+
anger,disgust,fear
|
| 1295 |
+
anger,disgust,sadness
|
| 1296 |
+
anger,disgust,sadness
|
| 1297 |
+
anger,disgust,sadness
|
| 1298 |
+
joy,optimism
|
| 1299 |
+
sadness
|
| 1300 |
+
joy,optimism
|
| 1301 |
+
joy,love,optimism
|
| 1302 |
+
anger,disgust,sadness
|
| 1303 |
+
sadness
|
| 1304 |
+
joy,love,optimism
|
| 1305 |
+
joy,optimism
|
| 1306 |
+
joy,love,optimism
|
| 1307 |
+
joy,optimism
|
| 1308 |
+
joy,optimism
|
| 1309 |
+
anger,disgust,sadness
|
| 1310 |
+
joy,optimism
|
| 1311 |
+
fear,joy,optimism
|
| 1312 |
+
anger,disgust,sadness
|
| 1313 |
+
fear,optimism
|
| 1314 |
+
anticipation,joy,optimism
|
| 1315 |
+
fear,optimism
|
| 1316 |
+
anger,disgust,fear
|
| 1317 |
+
anticipation,joy,optimism
|
| 1318 |
+
anger,disgust,fear
|
| 1319 |
+
anger,disgust,sadness
|
| 1320 |
+
joy,optimism
|
| 1321 |
+
anger,disgust,sadness
|
| 1322 |
+
anger,disgust,sadness
|
| 1323 |
+
anger,disgust,optimism
|
| 1324 |
+
joy,optimism
|
| 1325 |
+
anger,disgust,sadness
|
| 1326 |
+
anger,disgust,sadness
|
| 1327 |
+
anger,disgust,sadness
|
| 1328 |
+
anger,disgust,sadness
|
| 1329 |
+
anticipation,joy,optimism
|
| 1330 |
+
anger,disgust
|
| 1331 |
+
joy,optimism
|
| 1332 |
+
fear,pessimism,sadness
|
| 1333 |
+
anger,disgust,joy
|
| 1334 |
+
joy,optimism
|
| 1335 |
+
joy,optimism
|
| 1336 |
+
joy,optimism
|
| 1337 |
+
joy,optimism
|
| 1338 |
+
joy,optimism
|
| 1339 |
+
anger,disgust,sadness
|
| 1340 |
+
anger,disgust,sadness
|
| 1341 |
+
joy,optimism
|
| 1342 |
+
joy,optimism
|
| 1343 |
+
joy,love,optimism
|
| 1344 |
+
fear,pessimism,sadness
|
| 1345 |
+
anger,disgust,fear
|
| 1346 |
+
joy,love,optimism
|
| 1347 |
+
anger,disgust,sadness
|
| 1348 |
+
joy,love,optimism
|
| 1349 |
+
anger,disgust,sadness
|
| 1350 |
+
fear,pessimism,sadness
|
| 1351 |
+
anger,disgust,sadness
|
| 1352 |
+
joy,optimism
|
| 1353 |
+
joy,optimism
|
| 1354 |
+
anger,disgust,sadness
|
| 1355 |
+
joy,optimism
|
| 1356 |
+
joy,love,optimism
|
| 1357 |
+
joy,optimism
|
| 1358 |
+
anger,disgust,sadness
|
| 1359 |
+
joy,optimism
|
| 1360 |
+
anger,disgust
|
| 1361 |
+
anger,disgust,sadness
|
| 1362 |
+
anger,disgust,fear
|
| 1363 |
+
joy,love,optimism
|
| 1364 |
+
anger,disgust,sadness
|
| 1365 |
+
joy,optimism
|
| 1366 |
+
joy,love,optimism
|
| 1367 |
+
anticipation,optimism
|
| 1368 |
+
anger,disgust,sadness
|
| 1369 |
+
fear,sadness
|
| 1370 |
+
joy,optimism
|
| 1371 |
+
joy,love,optimism
|
| 1372 |
+
fear,joy,optimism
|
| 1373 |
+
anticipation,joy,optimism
|
| 1374 |
+
joy,optimism
|
| 1375 |
+
anticipation,optimism
|
| 1376 |
+
joy,love,optimism
|
| 1377 |
+
optimism,trust
|
| 1378 |
+
anger,disgust,sadness
|
| 1379 |
+
joy,optimism
|
| 1380 |
+
joy,optimism
|
| 1381 |
+
anger,disgust,sadness
|
| 1382 |
+
joy,optimism
|
| 1383 |
+
anger,disgust,sadness
|
| 1384 |
+
anger,disgust,sadness
|
| 1385 |
+
anger,disgust,sadness
|
| 1386 |
+
anger,disgust,sadness
|
| 1387 |
+
joy,love,optimism
|
| 1388 |
+
fear
|
| 1389 |
+
joy,optimism
|
| 1390 |
+
joy,optimism
|
| 1391 |
+
anger,disgust,sadness
|
| 1392 |
+
anger,disgust
|
| 1393 |
+
anger,disgust,sadness
|
| 1394 |
+
pessimism,sadness
|
| 1395 |
+
anger,disgust,fear
|
| 1396 |
+
fear,sadness
|
| 1397 |
+
joy,optimism
|
| 1398 |
+
joy,love,optimism
|
| 1399 |
+
anticipation,joy,optimism
|
| 1400 |
+
anger,disgust,sadness
|
| 1401 |
+
joy,optimism
|
| 1402 |
+
anger,disgust,fear
|
| 1403 |
+
fear,joy,optimism
|
| 1404 |
+
joy,love,optimism
|
| 1405 |
+
joy,optimism
|
| 1406 |
+
anger,disgust
|
| 1407 |
+
joy,optimism
|
| 1408 |
+
joy,love,optimism
|
| 1409 |
+
fear,pessimism,sadness
|
| 1410 |
+
joy,love,optimism
|
| 1411 |
+
anticipation,joy,optimism
|
| 1412 |
+
anger,disgust,sadness
|
| 1413 |
+
anger,disgust,sadness
|
| 1414 |
+
anger,disgust,sadness
|
| 1415 |
+
fear,pessimism,sadness
|
| 1416 |
+
anger,disgust,fear
|
| 1417 |
+
anger,disgust,sadness
|
| 1418 |
+
fear,optimism
|
| 1419 |
+
joy,love,optimism
|
| 1420 |
+
anger,disgust
|
| 1421 |
+
anger,disgust,fear
|
| 1422 |
+
joy,optimism
|
| 1423 |
+
anger,disgust,sadness
|
| 1424 |
+
anger,disgust,fear
|
| 1425 |
+
anger,disgust,sadness
|
| 1426 |
+
anger,disgust,sadness
|
| 1427 |
+
joy,love,optimism
|
| 1428 |
+
anger,disgust,fear
|
| 1429 |
+
anger,disgust,sadness
|
| 1430 |
+
anger,disgust,sadness
|
| 1431 |
+
anticipation,joy,optimism
|
| 1432 |
+
joy,love,optimism
|
| 1433 |
+
anger,disgust,sadness
|
| 1434 |
+
anticipation,joy,optimism
|
| 1435 |
+
anger,disgust,sadness
|
| 1436 |
+
anger,disgust,sadness
|
| 1437 |
+
joy,love,optimism
|
| 1438 |
+
joy,love,optimism
|
| 1439 |
+
fear,pessimism,sadness
|
| 1440 |
+
joy,optimism
|
| 1441 |
+
anger,disgust,sadness
|
| 1442 |
+
joy,optimism
|
| 1443 |
+
joy,optimism
|
| 1444 |
+
joy,love,optimism
|
| 1445 |
+
anger,disgust,fear
|
| 1446 |
+
joy,optimism
|
| 1447 |
+
fear,joy,optimism
|
| 1448 |
+
anger,disgust,sadness
|
| 1449 |
+
joy,love,optimism
|
| 1450 |
+
anger,disgust,sadness
|
| 1451 |
+
anger,disgust,sadness
|
| 1452 |
+
joy,optimism
|
| 1453 |
+
joy,optimism
|
| 1454 |
+
anger,disgust,sadness
|
| 1455 |
+
anger,disgust,sadness
|
| 1456 |
+
joy,optimism
|
| 1457 |
+
anger,disgust,sadness
|
| 1458 |
+
anger,disgust,sadness
|
| 1459 |
+
anger,disgust,sadness
|
| 1460 |
+
anger,disgust
|
| 1461 |
+
anger,disgust,fear
|
| 1462 |
+
anger,disgust,fear
|
| 1463 |
+
anger,disgust,sadness
|
| 1464 |
+
anger,disgust,sadness
|
| 1465 |
+
joy,love,optimism
|
| 1466 |
+
fear,pessimism,sadness
|
| 1467 |
+
anger,disgust,sadness
|
| 1468 |
+
anger,disgust,fear
|
| 1469 |
+
anger,disgust,sadness
|
| 1470 |
+
anger,disgust,sadness
|
| 1471 |
+
joy,optimism
|
| 1472 |
+
anticipation,joy,optimism
|
| 1473 |
+
anger,disgust,sadness
|
| 1474 |
+
fear,pessimism,sadness
|
| 1475 |
+
anger,disgust,fear
|
| 1476 |
+
anger,disgust
|
| 1477 |
+
joy,optimism
|
| 1478 |
+
anger,disgust,sadness
|
| 1479 |
+
sadness
|
| 1480 |
+
joy,love,optimism
|
| 1481 |
+
joy,optimism
|
| 1482 |
+
joy,love,optimism
|
| 1483 |
+
joy,optimism
|
| 1484 |
+
joy,optimism
|
| 1485 |
+
anger,disgust,sadness
|
| 1486 |
+
anger,disgust,sadness
|
| 1487 |
+
anger,disgust,fear
|
| 1488 |
+
anger,disgust,joy,optimism
|
| 1489 |
+
anger,disgust,sadness
|
| 1490 |
+
joy,optimism
|
| 1491 |
+
fear,pessimism,sadness
|
| 1492 |
+
anger,disgust,sadness
|
| 1493 |
+
joy,optimism
|
| 1494 |
+
joy,love,optimism
|
| 1495 |
+
joy,love,optimism
|
| 1496 |
+
anger,disgust,sadness
|
| 1497 |
+
joy,optimism
|
| 1498 |
+
joy,love,optimism
|
| 1499 |
+
anticipation,joy,optimism
|
| 1500 |
+
anger,disgust,sadness
|
| 1501 |
+
anger,disgust,sadness
|
| 1502 |
+
anger,disgust,fear
|
| 1503 |
+
anger,disgust,fear
|
| 1504 |
+
joy,optimism
|
| 1505 |
+
joy,optimism
|
| 1506 |
+
anger,disgust,sadness
|
| 1507 |
+
fear,pessimism,sadness
|
| 1508 |
+
joy,love,optimism
|
| 1509 |
+
joy,optimism
|
| 1510 |
+
sadness
|
| 1511 |
+
anger,disgust,sadness
|
| 1512 |
+
joy,optimism
|
| 1513 |
+
joy,love,optimism
|
| 1514 |
+
anger,disgust,sadness
|
| 1515 |
+
joy,optimism
|
| 1516 |
+
anger,disgust,fear
|
| 1517 |
+
anger,disgust,sadness
|
| 1518 |
+
anger,disgust,sadness
|
| 1519 |
+
fear,sadness
|
| 1520 |
+
joy,optimism
|
| 1521 |
+
joy,optimism
|
| 1522 |
+
joy,optimism
|
| 1523 |
+
anticipation,joy,optimism
|
| 1524 |
+
joy,optimism
|
| 1525 |
+
anger,disgust,optimism
|
| 1526 |
+
joy,optimism
|
| 1527 |
+
anger,disgust,fear
|
| 1528 |
+
joy,optimism
|
| 1529 |
+
anger,disgust,sadness
|
| 1530 |
+
anger,disgust
|
| 1531 |
+
anger,disgust,sadness
|
| 1532 |
+
joy,optimism
|
| 1533 |
+
anger,disgust,sadness
|
| 1534 |
+
fear,pessimism,sadness
|
| 1535 |
+
joy,love,optimism
|
| 1536 |
+
|
| 1537 |
+
anger,disgust,sadness
|
| 1538 |
+
joy,optimism
|
| 1539 |
+
joy,optimism
|
| 1540 |
+
joy,optimism
|
| 1541 |
+
joy,optimism
|
| 1542 |
+
anger,disgust,sadness
|
| 1543 |
+
fear,optimism
|
| 1544 |
+
joy,optimism
|
| 1545 |
+
joy,optimism
|
| 1546 |
+
joy,optimism
|
| 1547 |
+
anger,disgust,sadness
|
| 1548 |
+
anger,disgust,sadness
|
| 1549 |
+
joy,love,optimism
|
| 1550 |
+
anger,disgust,sadness
|
| 1551 |
+
anger,disgust,sadness
|
| 1552 |
+
anger,disgust,sadness
|
| 1553 |
+
joy,love,optimism
|
| 1554 |
+
joy,optimism
|
| 1555 |
+
joy,optimism
|
| 1556 |
+
fear,pessimism,sadness
|
| 1557 |
+
anger,disgust
|
| 1558 |
+
anger,disgust,sadness
|
| 1559 |
+
anger,disgust,sadness
|
| 1560 |
+
anger,disgust,sadness
|
| 1561 |
+
fear,pessimism,sadness
|
| 1562 |
+
anticipation,joy,optimism
|
| 1563 |
+
joy,optimism
|
| 1564 |
+
anger,disgust,sadness
|
| 1565 |
+
anticipation,joy,optimism
|
| 1566 |
+
anger,disgust,sadness
|
| 1567 |
+
joy,love,optimism
|
| 1568 |
+
anger,disgust,joy
|
| 1569 |
+
anger,disgust,sadness
|
| 1570 |
+
anticipation,joy,optimism
|
| 1571 |
+
joy,optimism
|
| 1572 |
+
anger,disgust,sadness
|
| 1573 |
+
anger,disgust,fear
|
| 1574 |
+
anger,disgust,sadness
|
| 1575 |
+
joy,optimism
|
| 1576 |
+
anger,disgust,sadness
|
| 1577 |
+
anger,disgust,sadness
|
| 1578 |
+
anger,disgust,sadness
|
| 1579 |
+
joy,love,optimism
|
| 1580 |
+
anger,disgust,fear
|
| 1581 |
+
anger,disgust,optimism
|
| 1582 |
+
fear,pessimism,sadness
|
| 1583 |
+
anger,disgust,sadness
|
| 1584 |
+
joy,optimism
|
| 1585 |
+
anger,disgust,sadness
|
| 1586 |
+
anger,disgust,sadness
|
| 1587 |
+
joy,optimism
|
| 1588 |
+
anger,disgust,optimism
|
| 1589 |
+
anger,disgust,sadness
|
| 1590 |
+
anger,disgust,sadness
|
| 1591 |
+
fear,pessimism,sadness
|
| 1592 |
+
anger,disgust,sadness
|
| 1593 |
+
joy,optimism
|
| 1594 |
+
anticipation,joy,optimism
|
| 1595 |
+
anger,disgust,sadness
|
| 1596 |
+
anger,disgust,joy,optimism
|
| 1597 |
+
joy,optimism
|
| 1598 |
+
anticipation,joy,optimism
|
| 1599 |
+
joy,optimism
|
| 1600 |
+
anger,disgust,sadness
|
| 1601 |
+
anticipation,joy,optimism
|
| 1602 |
+
fear,pessimism,sadness
|
| 1603 |
+
joy,love,optimism
|
| 1604 |
+
joy,love,optimism
|
| 1605 |
+
joy,love,optimism
|
| 1606 |
+
joy,optimism
|
| 1607 |
+
anger,disgust,sadness
|
| 1608 |
+
joy,optimism
|
| 1609 |
+
anger,disgust,sadness
|
| 1610 |
+
anger,disgust
|
| 1611 |
+
fear,joy,optimism
|
| 1612 |
+
anger,disgust,fear
|
| 1613 |
+
anger,disgust,sadness
|
| 1614 |
+
anger,disgust,sadness
|
| 1615 |
+
anticipation,joy,optimism
|
| 1616 |
+
joy,love,optimism
|
| 1617 |
+
anger,disgust,fear
|
| 1618 |
+
joy,optimism
|
| 1619 |
+
joy,optimism
|
| 1620 |
+
fear,pessimism,sadness
|
| 1621 |
+
anger,disgust,sadness
|
| 1622 |
+
anger,disgust,fear
|
| 1623 |
+
joy,optimism
|
| 1624 |
+
fear,sadness
|
| 1625 |
+
anger,disgust,sadness
|
| 1626 |
+
anger,disgust,sadness
|
| 1627 |
+
anger,disgust,sadness
|
| 1628 |
+
fear,sadness
|
| 1629 |
+
anger,disgust,sadness
|
| 1630 |
+
joy,love,optimism
|
| 1631 |
+
anger,disgust,sadness
|
| 1632 |
+
optimism,trust
|
| 1633 |
+
anger,disgust,joy
|
| 1634 |
+
anticipation,joy,optimism
|
| 1635 |
+
anger,disgust,sadness
|
| 1636 |
+
anger,disgust,sadness
|
| 1637 |
+
joy,optimism
|
| 1638 |
+
anger,disgust,sadness
|
| 1639 |
+
fear,optimism
|
| 1640 |
+
sadness
|
| 1641 |
+
anticipation,joy,optimism
|
| 1642 |
+
joy,love,optimism
|
| 1643 |
+
anger,disgust,sadness
|
| 1644 |
+
anger,disgust,sadness
|
| 1645 |
+
joy,optimism
|
| 1646 |
+
anger,disgust,sadness
|
| 1647 |
+
anger,disgust,joy
|
| 1648 |
+
anticipation,joy,optimism
|
| 1649 |
+
joy,optimism
|
| 1650 |
+
anger,disgust,fear
|
| 1651 |
+
joy,love,optimism
|
| 1652 |
+
anger,disgust,sadness
|
| 1653 |
+
anger,disgust,sadness
|
| 1654 |
+
anger,disgust,sadness
|
| 1655 |
+
anticipation,joy,optimism
|
| 1656 |
+
anger,disgust,sadness
|
| 1657 |
+
anger,disgust,sadness
|
| 1658 |
+
joy,love,optimism
|
| 1659 |
+
anger,disgust,sadness
|
| 1660 |
+
joy,optimism
|
| 1661 |
+
anger,disgust,sadness
|
| 1662 |
+
joy,love,optimism
|
| 1663 |
+
anger,disgust,sadness
|
| 1664 |
+
joy,love,optimism
|
| 1665 |
+
joy,optimism
|
| 1666 |
+
joy,optimism
|
| 1667 |
+
anger,disgust,sadness
|
| 1668 |
+
joy,optimism
|
| 1669 |
+
joy,love,optimism
|
| 1670 |
+
joy,optimism
|
| 1671 |
+
anticipation,fear,sadness
|
| 1672 |
+
fear,joy,optimism
|
| 1673 |
+
joy,love,optimism
|
| 1674 |
+
anger,disgust
|
| 1675 |
+
joy,optimism
|
| 1676 |
+
fear,pessimism,sadness
|
| 1677 |
+
joy,optimism
|
| 1678 |
+
anger,disgust,sadness
|
| 1679 |
+
fear,love,optimism
|
| 1680 |
+
anticipation,joy,optimism
|
| 1681 |
+
anger,disgust,sadness
|
| 1682 |
+
anger,disgust,sadness
|
| 1683 |
+
joy,optimism
|
| 1684 |
+
anger,disgust,sadness
|
| 1685 |
+
joy,optimism
|
| 1686 |
+
anger,disgust,sadness
|
| 1687 |
+
anger,disgust,sadness
|
| 1688 |
+
joy,optimism
|
| 1689 |
+
sadness
|
| 1690 |
+
anger,disgust,fear
|
| 1691 |
+
anger,disgust,sadness
|
| 1692 |
+
anger,disgust,sadness
|
| 1693 |
+
joy,optimism
|
| 1694 |
+
anger,disgust,sadness
|
| 1695 |
+
anger,disgust,sadness
|
| 1696 |
+
joy,optimism
|
| 1697 |
+
joy,optimism
|
| 1698 |
+
joy,love,optimism
|
| 1699 |
+
joy,optimism
|
| 1700 |
+
anger,disgust,sadness
|
| 1701 |
+
joy,optimism
|
| 1702 |
+
joy,love,optimism
|
| 1703 |
+
joy,optimism
|
| 1704 |
+
anger,disgust,fear
|
| 1705 |
+
joy,optimism
|
| 1706 |
+
joy,optimism
|
| 1707 |
+
anger,disgust,sadness
|
| 1708 |
+
joy,optimism
|
| 1709 |
+
anger,disgust,sadness
|
| 1710 |
+
anger,disgust,fear
|
| 1711 |
+
pessimism,sadness
|
| 1712 |
+
anger,disgust,sadness
|
| 1713 |
+
joy,optimism
|
| 1714 |
+
anger,disgust,sadness
|
| 1715 |
+
joy,optimism
|
| 1716 |
+
anticipation,joy,optimism
|
| 1717 |
+
joy,optimism
|
| 1718 |
+
joy,love,optimism
|
| 1719 |
+
fear,pessimism,sadness
|
| 1720 |
+
anticipation,joy,optimism
|
| 1721 |
+
joy,love,optimism
|
| 1722 |
+
anger,disgust,sadness
|
| 1723 |
+
joy,optimism
|
| 1724 |
+
anticipation,joy,optimism
|
| 1725 |
+
anger,disgust
|
| 1726 |
+
joy,optimism
|
| 1727 |
+
anger,disgust,sadness
|
| 1728 |
+
joy,optimism
|
| 1729 |
+
anger,disgust,sadness
|
| 1730 |
+
joy,optimism
|
| 1731 |
+
joy,love,optimism
|
| 1732 |
+
anger,disgust,fear
|
| 1733 |
+
anger,disgust,sadness
|
| 1734 |
+
joy,optimism
|
| 1735 |
+
fear,optimism
|
| 1736 |
+
joy,love,optimism
|
| 1737 |
+
anticipation,joy,optimism
|
| 1738 |
+
anger,disgust
|
| 1739 |
+
anger,disgust,fear
|
| 1740 |
+
joy,love,optimism
|
| 1741 |
+
fear,pessimism,sadness
|
| 1742 |
+
anticipation,joy,optimism
|
| 1743 |
+
anger,disgust,fear
|
| 1744 |
+
anger,disgust,fear
|
| 1745 |
+
anger,disgust,sadness
|
| 1746 |
+
joy,love,optimism
|
| 1747 |
+
anger,disgust,joy
|
| 1748 |
+
anticipation,joy,optimism
|
| 1749 |
+
anger,disgust
|
| 1750 |
+
anger,disgust,sadness
|
| 1751 |
+
joy,optimism
|
| 1752 |
+
anger,disgust,sadness
|
| 1753 |
+
joy,optimism
|
| 1754 |
+
sadness
|
| 1755 |
+
joy,love,optimism
|
| 1756 |
+
joy,love,optimism
|
| 1757 |
+
joy,optimism
|
| 1758 |
+
joy,love,optimism
|
| 1759 |
+
anticipation,joy,optimism
|
| 1760 |
+
joy,optimism
|
| 1761 |
+
anticipation,joy,optimism
|
| 1762 |
+
anger,disgust,sadness
|
| 1763 |
+
anger,disgust,sadness
|
| 1764 |
+
anticipation,joy,optimism
|
| 1765 |
+
anger,disgust,sadness
|
| 1766 |
+
fear,optimism
|
| 1767 |
+
joy,optimism
|
| 1768 |
+
joy,optimism
|
| 1769 |
+
anger,disgust,sadness
|
| 1770 |
+
joy,love,optimism
|
| 1771 |
+
anger,disgust,sadness
|
| 1772 |
+
anger,disgust,sadness
|
| 1773 |
+
joy,love,optimism
|
| 1774 |
+
joy,optimism
|
| 1775 |
+
joy,optimism
|
| 1776 |
+
joy,optimism
|
| 1777 |
+
joy,love,optimism
|
| 1778 |
+
disgust,fear,sadness
|
| 1779 |
+
anger,disgust,joy
|
| 1780 |
+
anger,disgust,sadness
|
| 1781 |
+
joy,love,optimism
|
| 1782 |
+
anger,disgust,fear
|
| 1783 |
+
anger,disgust,sadness
|
| 1784 |
+
joy,optimism
|
| 1785 |
+
anger,disgust,sadness
|
| 1786 |
+
anticipation,joy,optimism
|
| 1787 |
+
joy,optimism
|
| 1788 |
+
joy,optimism
|
| 1789 |
+
anger,disgust,sadness
|
| 1790 |
+
joy,love,optimism
|
| 1791 |
+
anger,disgust,sadness
|
| 1792 |
+
anger,disgust
|
| 1793 |
+
pessimism,sadness
|
| 1794 |
+
anger,disgust,sadness
|
| 1795 |
+
joy,optimism
|
| 1796 |
+
anger,disgust,sadness
|
| 1797 |
+
joy,love,optimism
|
| 1798 |
+
anger,disgust,sadness
|
| 1799 |
+
anger,disgust,fear
|
| 1800 |
+
joy,love,optimism
|
| 1801 |
+
anger,disgust,sadness
|
| 1802 |
+
joy,optimism
|
| 1803 |
+
joy,optimism
|
| 1804 |
+
joy,optimism
|
| 1805 |
+
fear,pessimism,sadness
|
| 1806 |
+
joy,love,optimism
|
| 1807 |
+
sadness
|
| 1808 |
+
fear,pessimism,sadness
|
| 1809 |
+
joy,optimism
|
| 1810 |
+
joy,optimism
|
| 1811 |
+
anger,disgust,sadness
|
| 1812 |
+
anger,disgust,sadness
|
| 1813 |
+
joy,optimism
|
| 1814 |
+
joy,love,optimism
|
| 1815 |
+
joy,love,optimism
|
| 1816 |
+
joy,love,optimism
|
| 1817 |
+
fear,optimism
|
| 1818 |
+
joy,optimism
|
| 1819 |
+
anger,disgust,sadness
|
| 1820 |
+
joy,love,optimism
|
| 1821 |
+
fear,pessimism,sadness
|
| 1822 |
+
anticipation,joy,optimism
|
| 1823 |
+
anger,disgust,fear
|
| 1824 |
+
fear,optimism
|
| 1825 |
+
joy,optimism
|
| 1826 |
+
anger,disgust,sadness
|
| 1827 |
+
sadness
|
| 1828 |
+
joy,love,optimism
|
| 1829 |
+
joy,optimism
|
| 1830 |
+
anger,disgust,sadness
|
| 1831 |
+
joy,love,optimism
|
| 1832 |
+
joy,optimism
|
| 1833 |
+
joy,optimism
|
| 1834 |
+
anger,disgust,fear
|
| 1835 |
+
fear,pessimism,sadness
|
| 1836 |
+
joy,love,optimism
|
| 1837 |
+
anger,disgust,sadness
|
| 1838 |
+
joy,love,optimism
|
| 1839 |
+
anger,disgust,fear
|
| 1840 |
+
joy,optimism
|
| 1841 |
+
joy,optimism
|
| 1842 |
+
joy,optimism
|
| 1843 |
+
joy,love,optimism
|
| 1844 |
+
anger,disgust,sadness
|
| 1845 |
+
joy,love,optimism
|
| 1846 |
+
anger,disgust,sadness
|
| 1847 |
+
anger,disgust,fear
|
| 1848 |
+
anger,disgust,sadness
|
| 1849 |
+
anticipation,joy,optimism
|
| 1850 |
+
joy,optimism
|
| 1851 |
+
joy,optimism
|
| 1852 |
+
anger,disgust,sadness
|
| 1853 |
+
anger,disgust,sadness
|
| 1854 |
+
sadness
|
| 1855 |
+
joy,optimism
|
| 1856 |
+
joy,love,optimism
|
| 1857 |
+
anger,disgust,sadness
|
| 1858 |
+
joy,optimism
|
| 1859 |
+
joy,love,optimism
|
| 1860 |
+
anticipation,joy,optimism
|
| 1861 |
+
anger,disgust,sadness
|
| 1862 |
+
anger,disgust,sadness
|
| 1863 |
+
fear,pessimism,sadness
|
| 1864 |
+
anger,disgust,sadness
|
| 1865 |
+
joy,optimism
|
| 1866 |
+
anger,disgust,sadness
|
| 1867 |
+
anger,disgust,sadness
|
| 1868 |
+
joy,love,optimism
|
| 1869 |
+
anger,disgust,sadness
|
| 1870 |
+
anger,disgust,fear
|
| 1871 |
+
joy,optimism
|
| 1872 |
+
joy,love,optimism
|
| 1873 |
+
joy,optimism
|
| 1874 |
+
joy,optimism
|
| 1875 |
+
anger,disgust,sadness
|
| 1876 |
+
sadness
|
| 1877 |
+
anger,disgust,sadness
|
| 1878 |
+
sadness
|
| 1879 |
+
joy,love,optimism
|
| 1880 |
+
anger,disgust,fear
|
| 1881 |
+
anger,disgust,sadness
|
| 1882 |
+
joy,optimism
|
| 1883 |
+
joy,love,optimism
|
| 1884 |
+
anger,disgust,sadness
|
| 1885 |
+
joy,love,optimism
|
| 1886 |
+
anger,disgust,sadness
|
| 1887 |
+
pessimism,sadness
|
| 1888 |
+
fear,pessimism
|
| 1889 |
+
anger,disgust,sadness
|
| 1890 |
+
joy,optimism
|
| 1891 |
+
joy,love,optimism
|
| 1892 |
+
anticipation,joy,optimism
|
| 1893 |
+
anger,disgust,sadness
|
| 1894 |
+
joy,optimism
|
| 1895 |
+
joy,love,optimism
|
| 1896 |
+
joy,love,optimism
|
| 1897 |
+
anger,disgust,sadness
|
| 1898 |
+
anger,disgust
|
| 1899 |
+
disgust,sadness
|
| 1900 |
+
anger,disgust,sadness
|
| 1901 |
+
anger,disgust,fear
|
| 1902 |
+
anger,disgust,sadness
|
| 1903 |
+
joy,love,optimism
|
| 1904 |
+
anger,disgust,sadness
|
| 1905 |
+
anger,disgust,sadness
|
| 1906 |
+
anger,disgust,sadness
|
| 1907 |
+
anger,disgust,sadness
|
| 1908 |
+
joy,love,optimism
|
| 1909 |
+
fear,optimism
|
| 1910 |
+
anger,disgust,joy
|
| 1911 |
+
joy,optimism
|
| 1912 |
+
sadness
|
| 1913 |
+
joy,optimism
|
| 1914 |
+
anger,disgust,sadness
|
| 1915 |
+
anger,disgust,sadness
|
| 1916 |
+
joy,love,optimism
|
| 1917 |
+
joy,optimism
|
| 1918 |
+
joy,optimism
|
| 1919 |
+
joy,optimism
|
| 1920 |
+
anger,disgust,sadness
|
| 1921 |
+
anger,disgust,sadness
|
| 1922 |
+
joy,love,optimism
|
| 1923 |
+
anger,disgust,sadness
|
| 1924 |
+
fear,pessimism,sadness
|
| 1925 |
+
anticipation,joy,optimism
|
| 1926 |
+
joy,love,optimism
|
| 1927 |
+
joy,love,optimism
|
| 1928 |
+
anger,disgust,sadness
|
| 1929 |
+
anger,disgust,sadness
|
| 1930 |
+
anger,disgust,sadness
|
| 1931 |
+
joy,optimism
|
| 1932 |
+
joy,optimism
|
| 1933 |
+
anger,disgust
|
| 1934 |
+
anger,disgust,fear
|
| 1935 |
+
anger,disgust
|
| 1936 |
+
anger,disgust,sadness
|
| 1937 |
+
joy,love,optimism
|
| 1938 |
+
anger,disgust,fear
|
| 1939 |
+
joy,optimism
|
| 1940 |
+
anger,disgust,fear
|
| 1941 |
+
optimism
|
| 1942 |
+
joy,optimism
|
| 1943 |
+
anger,disgust,sadness
|
| 1944 |
+
anger,disgust,fear
|
| 1945 |
+
joy,love,optimism
|
| 1946 |
+
joy,love,optimism
|
| 1947 |
+
anger,disgust,sadness
|
| 1948 |
+
joy,love,optimism
|
| 1949 |
+
anger,disgust,sadness
|
| 1950 |
+
anger,disgust,fear
|
| 1951 |
+
anger,disgust,sadness
|
| 1952 |
+
anger,disgust,sadness
|
| 1953 |
+
anger,disgust,sadness
|
| 1954 |
+
fear,optimism
|
| 1955 |
+
joy,optimism
|
| 1956 |
+
anger,disgust,sadness
|
| 1957 |
+
anger,disgust,sadness
|
| 1958 |
+
anger,disgust,sadness
|
| 1959 |
+
anger,disgust,sadness
|
| 1960 |
+
anger,disgust,sadness
|
| 1961 |
+
joy,optimism
|
| 1962 |
+
anger,disgust,sadness
|
| 1963 |
+
anger,disgust,fear
|
| 1964 |
+
joy,love,optimism
|
| 1965 |
+
anger,disgust,sadness
|
| 1966 |
+
joy,optimism
|
| 1967 |
+
joy,love,optimism
|
| 1968 |
+
anger,disgust,sadness
|
| 1969 |
+
joy,love,optimism
|
| 1970 |
+
anger,disgust,sadness
|
| 1971 |
+
joy,optimism
|
| 1972 |
+
joy,love,optimism
|
| 1973 |
+
joy,optimism
|
| 1974 |
+
anger,disgust,fear
|
| 1975 |
+
anger,disgust,sadness
|
| 1976 |
+
joy,optimism
|
| 1977 |
+
anger,disgust,sadness
|
| 1978 |
+
anger,disgust,sadness
|
| 1979 |
+
anger,disgust,fear
|
| 1980 |
+
joy,optimism
|
| 1981 |
+
joy,love,optimism
|
| 1982 |
+
anger,disgust,fear
|
| 1983 |
+
anger,disgust,sadness
|
| 1984 |
+
anger,disgust,fear
|
| 1985 |
+
joy,optimism
|
| 1986 |
+
joy,optimism
|
| 1987 |
+
joy,optimism
|
| 1988 |
+
anticipation,joy,optimism
|
| 1989 |
+
joy,optimism
|
| 1990 |
+
joy,optimism
|
| 1991 |
+
joy,love,optimism
|
| 1992 |
+
joy,love,optimism
|
| 1993 |
+
anger,disgust,fear,sadness
|
| 1994 |
+
anger,disgust,sadness
|
| 1995 |
+
sadness
|
| 1996 |
+
joy,optimism
|
| 1997 |
+
joy,optimism
|
| 1998 |
+
anger,disgust,sadness
|
| 1999 |
+
anger,disgust,sadness
|
| 2000 |
+
joy,optimism
|
| 2001 |
+
anger,disgust,sadness
|
| 2002 |
+
anger,disgust,fear
|
| 2003 |
+
joy,love,optimism
|
| 2004 |
+
anger,disgust
|
| 2005 |
+
anger,disgust,fear
|
| 2006 |
+
anger,disgust,sadness
|
| 2007 |
+
joy,optimism
|
| 2008 |
+
joy,optimism
|
| 2009 |
+
joy,optimism
|
| 2010 |
+
anger,disgust,fear
|
| 2011 |
+
anger,disgust,sadness
|
| 2012 |
+
joy,optimism
|
| 2013 |
+
joy,optimism
|
| 2014 |
+
anger,disgust,sadness
|
| 2015 |
+
anger,disgust,sadness
|
| 2016 |
+
joy,optimism
|
| 2017 |
+
anticipation,joy,optimism
|
| 2018 |
+
joy,love,optimism
|
| 2019 |
+
anticipation,joy,optimism
|
| 2020 |
+
joy,love,optimism
|
| 2021 |
+
joy,love,optimism
|
| 2022 |
+
joy,optimism
|
| 2023 |
+
anger,disgust,sadness
|
| 2024 |
+
anger,disgust,fear
|
| 2025 |
+
anger,disgust,sadness
|
| 2026 |
+
anger,disgust,sadness
|
| 2027 |
+
anger,disgust,sadness
|
| 2028 |
+
anger,disgust,fear
|
| 2029 |
+
anger,disgust,joy
|
| 2030 |
+
joy,optimism
|
| 2031 |
+
joy,optimism
|
| 2032 |
+
anger,disgust
|
| 2033 |
+
joy,optimism
|
| 2034 |
+
joy,love,optimism
|
| 2035 |
+
anger,disgust,sadness
|
| 2036 |
+
anger,disgust,sadness
|
| 2037 |
+
anger,disgust,fear
|
| 2038 |
+
anger,disgust,sadness
|
| 2039 |
+
anger,disgust,fear
|
| 2040 |
+
joy,optimism
|
| 2041 |
+
anticipation,joy,optimism
|
| 2042 |
+
joy,optimism
|
| 2043 |
+
anger,disgust,sadness
|
| 2044 |
+
joy,love,optimism
|
| 2045 |
+
joy,optimism
|
| 2046 |
+
joy,optimism
|
| 2047 |
+
anger,disgust,sadness
|
| 2048 |
+
anger,disgust
|
| 2049 |
+
fear,pessimism,sadness
|
| 2050 |
+
joy,optimism
|
| 2051 |
+
anger,disgust,sadness
|
| 2052 |
+
anger,disgust,sadness
|
| 2053 |
+
anger,disgust
|
| 2054 |
+
anger,disgust,sadness
|
| 2055 |
+
joy,optimism
|
| 2056 |
+
joy,love,optimism
|
| 2057 |
+
anger,disgust,sadness
|
| 2058 |
+
joy,optimism
|
| 2059 |
+
anger,disgust,sadness
|
| 2060 |
+
joy,love,optimism
|
| 2061 |
+
anger,disgust,fear
|
| 2062 |
+
fear,joy,optimism
|
| 2063 |
+
anger,disgust,joy
|
| 2064 |
+
joy,optimism
|
| 2065 |
+
anger,disgust,joy
|
| 2066 |
+
joy,optimism
|
| 2067 |
+
joy,love,optimism
|
| 2068 |
+
sadness
|
| 2069 |
+
anger,disgust,sadness
|
| 2070 |
+
anger,disgust,sadness
|
| 2071 |
+
anticipation,joy,optimism
|
| 2072 |
+
anticipation,joy,optimism
|
| 2073 |
+
joy,optimism
|
| 2074 |
+
anger,disgust,sadness
|
| 2075 |
+
anger,disgust,sadness
|
| 2076 |
+
anger,disgust,sadness
|
| 2077 |
+
joy,optimism
|
| 2078 |
+
joy,love,optimism
|
| 2079 |
+
anger,disgust,sadness
|
| 2080 |
+
joy,love,optimism
|
| 2081 |
+
disgust,sadness
|
| 2082 |
+
anger,disgust,sadness
|
| 2083 |
+
joy,optimism
|
| 2084 |
+
joy,optimism
|
| 2085 |
+
joy,love,optimism
|
| 2086 |
+
anger,disgust,sadness
|
| 2087 |
+
joy,optimism
|
| 2088 |
+
joy,love,optimism
|
| 2089 |
+
fear,optimism
|
| 2090 |
+
anger,disgust
|
| 2091 |
+
anticipation,joy,optimism
|
| 2092 |
+
anger,disgust
|
| 2093 |
+
anger,disgust,sadness
|
| 2094 |
+
anger,disgust,fear
|
| 2095 |
+
anger,disgust,fear
|
| 2096 |
+
anger,disgust,sadness
|
| 2097 |
+
anger,disgust,sadness
|
| 2098 |
+
anger,disgust,fear
|
| 2099 |
+
anger,disgust,joy
|
| 2100 |
+
anger,disgust,fear
|
| 2101 |
+
joy,optimism
|
| 2102 |
+
anger,disgust,sadness
|
| 2103 |
+
anticipation,joy,optimism
|
| 2104 |
+
anger,disgust
|
| 2105 |
+
anger,disgust,sadness
|
| 2106 |
+
anger,disgust,fear
|
| 2107 |
+
anger,disgust,sadness
|
| 2108 |
+
sadness
|
| 2109 |
+
anger,disgust,sadness
|
| 2110 |
+
joy,optimism
|
| 2111 |
+
joy,love,optimism
|
| 2112 |
+
joy,optimism
|
| 2113 |
+
joy,optimism
|
| 2114 |
+
anger,disgust,sadness
|
| 2115 |
+
anger,disgust,sadness
|
| 2116 |
+
anger,disgust,sadness
|
| 2117 |
+
joy,optimism
|
| 2118 |
+
anger,disgust,sadness
|
| 2119 |
+
joy,optimism
|
| 2120 |
+
joy,love,optimism
|
| 2121 |
+
fear,joy,optimism
|
| 2122 |
+
anger,disgust,sadness
|
| 2123 |
+
anger,disgust,sadness
|
| 2124 |
+
anger,disgust,sadness
|
| 2125 |
+
anger,disgust,sadness
|
| 2126 |
+
joy,optimism
|
| 2127 |
+
anger,disgust,sadness
|
| 2128 |
+
anger,disgust,sadness
|
| 2129 |
+
anger,disgust,sadness
|
| 2130 |
+
anger,disgust,sadness
|
| 2131 |
+
disgust,sadness
|
| 2132 |
+
joy,optimism
|
| 2133 |
+
anger,disgust,sadness
|
| 2134 |
+
anger,disgust,sadness
|
| 2135 |
+
joy,optimism
|
| 2136 |
+
anger,disgust
|
| 2137 |
+
anger,disgust,sadness
|
| 2138 |
+
joy,love,optimism
|
| 2139 |
+
anger,disgust,fear
|
| 2140 |
+
joy,love,optimism
|
| 2141 |
+
sadness
|
| 2142 |
+
joy,love,optimism
|
| 2143 |
+
anger,disgust,sadness
|
| 2144 |
+
anger,disgust,sadness
|
| 2145 |
+
joy,love,optimism
|
| 2146 |
+
joy,love,optimism
|
| 2147 |
+
joy,love,optimism
|
| 2148 |
+
joy,love,optimism
|
| 2149 |
+
anger,disgust,sadness
|
| 2150 |
+
fear,pessimism,sadness
|
| 2151 |
+
joy,optimism
|
| 2152 |
+
joy,optimism
|
| 2153 |
+
joy,optimism
|
| 2154 |
+
joy,optimism
|
| 2155 |
+
joy,love,optimism
|
| 2156 |
+
anger,disgust,sadness
|
| 2157 |
+
anger,disgust,sadness
|
| 2158 |
+
anger,disgust,sadness
|
| 2159 |
+
joy,optimism
|
| 2160 |
+
anger,disgust,fear
|
| 2161 |
+
anger,disgust,sadness
|
| 2162 |
+
anger,disgust,sadness
|
| 2163 |
+
anticipation,joy,optimism
|
| 2164 |
+
anger,disgust,fear
|
| 2165 |
+
optimism,trust
|
| 2166 |
+
anger,disgust,fear
|
| 2167 |
+
fear,pessimism,sadness
|
| 2168 |
+
joy,love,optimism
|
| 2169 |
+
anger,disgust,sadness
|
| 2170 |
+
anticipation,joy,optimism
|
| 2171 |
+
joy,optimism
|
| 2172 |
+
joy,love,optimism
|
| 2173 |
+
joy,optimism
|
| 2174 |
+
anger,disgust,sadness
|
| 2175 |
+
anger,disgust,sadness
|
| 2176 |
+
anger,disgust,sadness
|
| 2177 |
+
pessimism,sadness
|
| 2178 |
+
joy,love,optimism
|
| 2179 |
+
anger,disgust,sadness
|
| 2180 |
+
anger,disgust,joy,optimism
|
| 2181 |
+
joy,optimism
|
| 2182 |
+
joy,optimism
|
| 2183 |
+
joy,love,optimism
|
| 2184 |
+
anger,disgust,sadness
|
| 2185 |
+
anger,disgust,fear
|
| 2186 |
+
anger,disgust,fear
|
| 2187 |
+
anger,disgust,sadness
|
| 2188 |
+
anger,disgust
|
| 2189 |
+
anger,disgust,sadness
|
| 2190 |
+
joy,optimism
|
| 2191 |
+
joy,optimism
|
| 2192 |
+
fear,sadness
|
| 2193 |
+
joy,optimism
|
| 2194 |
+
joy,love,optimism
|
| 2195 |
+
joy,optimism
|
| 2196 |
+
anger,disgust,sadness
|
| 2197 |
+
joy,love,optimism
|
| 2198 |
+
anger,disgust,sadness
|
| 2199 |
+
joy,love,optimism
|
| 2200 |
+
joy,optimism
|
| 2201 |
+
anger,disgust,fear
|
| 2202 |
+
joy,optimism
|
| 2203 |
+
joy,optimism
|
| 2204 |
+
fear,pessimism,sadness
|
| 2205 |
+
anger,disgust,sadness
|
| 2206 |
+
anticipation,joy,optimism
|
| 2207 |
+
joy,optimism
|
| 2208 |
+
anger,disgust,sadness
|
| 2209 |
+
joy,optimism
|
| 2210 |
+
anger,disgust,joy
|
| 2211 |
+
anticipation,joy,optimism
|
| 2212 |
+
joy,love,optimism
|
| 2213 |
+
fear,optimism
|
| 2214 |
+
fear,pessimism,sadness
|
| 2215 |
+
anger,disgust,sadness
|
| 2216 |
+
joy,love,optimism
|
| 2217 |
+
anger,disgust,sadness
|
| 2218 |
+
joy,optimism
|
| 2219 |
+
anger,disgust,sadness
|
| 2220 |
+
anger,disgust,sadness
|
| 2221 |
+
joy,love,optimism
|
| 2222 |
+
anger,disgust,sadness
|
| 2223 |
+
joy,optimism
|
| 2224 |
+
joy,love,optimism
|
| 2225 |
+
joy,optimism
|
| 2226 |
+
joy,love,optimism
|
| 2227 |
+
anger,disgust,sadness
|
| 2228 |
+
anger,disgust,sadness
|
| 2229 |
+
joy,optimism
|
| 2230 |
+
anticipation,joy,optimism
|
| 2231 |
+
fear,pessimism,sadness
|
| 2232 |
+
joy,optimism
|
| 2233 |
+
joy,optimism
|
| 2234 |
+
joy,optimism
|
| 2235 |
+
anger,disgust,sadness
|
| 2236 |
+
joy,optimism
|
| 2237 |
+
fear,optimism
|
| 2238 |
+
anger,disgust,sadness
|
| 2239 |
+
fear,pessimism,sadness
|
| 2240 |
+
joy,optimism
|
| 2241 |
+
joy,love,optimism
|
| 2242 |
+
anger,disgust,sadness
|
| 2243 |
+
joy,optimism
|
| 2244 |
+
anticipation,joy,optimism
|
| 2245 |
+
anger,disgust,optimism
|
| 2246 |
+
pessimism,sadness
|
| 2247 |
+
anger,disgust,sadness
|
| 2248 |
+
joy,optimism
|
| 2249 |
+
fear,pessimism,sadness
|
| 2250 |
+
anticipation,joy,optimism
|
| 2251 |
+
fear,pessimism,sadness
|
| 2252 |
+
anger,disgust,fear
|
| 2253 |
+
anger,disgust,sadness
|
| 2254 |
+
anger,disgust,fear
|
| 2255 |
+
anger,disgust,sadness
|
| 2256 |
+
fear,joy,optimism
|
| 2257 |
+
joy,optimism
|
| 2258 |
+
anger,disgust,sadness
|
| 2259 |
+
joy,optimism
|
| 2260 |
+
anger,disgust
|
| 2261 |
+
joy,optimism
|
| 2262 |
+
fear,pessimism,sadness
|
| 2263 |
+
sadness
|
| 2264 |
+
anger,disgust,sadness
|
| 2265 |
+
joy,optimism
|
| 2266 |
+
anger,disgust,sadness
|
| 2267 |
+
joy,love,optimism
|
| 2268 |
+
anger,disgust,fear,sadness
|
| 2269 |
+
anger,disgust,sadness
|
| 2270 |
+
anger,disgust,sadness
|
| 2271 |
+
fear,joy,optimism
|
| 2272 |
+
fear,pessimism,sadness
|
| 2273 |
+
anger,disgust,sadness
|
| 2274 |
+
anger,disgust,sadness
|
| 2275 |
+
joy,optimism
|
| 2276 |
+
joy,optimism
|
| 2277 |
+
joy,love,optimism
|
| 2278 |
+
anger,disgust,sadness
|
| 2279 |
+
pessimism,sadness
|
| 2280 |
+
joy,optimism
|
| 2281 |
+
joy,love,optimism
|
| 2282 |
+
anger,disgust,sadness
|
| 2283 |
+
joy,love,optimism
|
| 2284 |
+
anger,disgust
|
| 2285 |
+
anger,disgust,fear
|
| 2286 |
+
joy,love,optimism
|
| 2287 |
+
joy,optimism
|
| 2288 |
+
anger,disgust
|
| 2289 |
+
joy,optimism
|
| 2290 |
+
joy,love,optimism
|
| 2291 |
+
joy,optimism
|
| 2292 |
+
joy,optimism
|
| 2293 |
+
anger,disgust,joy
|
| 2294 |
+
joy,optimism
|
| 2295 |
+
joy,love,optimism
|
| 2296 |
+
joy,love,optimism
|
| 2297 |
+
joy,optimism
|
| 2298 |
+
joy,love,optimism
|
| 2299 |
+
anger,disgust,joy
|
| 2300 |
+
anger,disgust,fear
|
| 2301 |
+
joy,optimism
|
| 2302 |
+
anger,disgust,sadness
|
| 2303 |
+
joy,love,optimism
|
| 2304 |
+
joy,love,optimism
|
| 2305 |
+
joy,love,optimism
|
| 2306 |
+
fear,pessimism,sadness
|
| 2307 |
+
anger,disgust,sadness
|
| 2308 |
+
joy,optimism
|
| 2309 |
+
anger,disgust,sadness
|
| 2310 |
+
joy,optimism
|
| 2311 |
+
anger,disgust
|
| 2312 |
+
joy,love,optimism
|
| 2313 |
+
anger,disgust,sadness
|
| 2314 |
+
joy,optimism
|
| 2315 |
+
anger,disgust,joy
|
| 2316 |
+
fear,optimism
|
| 2317 |
+
joy,optimism
|
| 2318 |
+
joy,optimism
|
| 2319 |
+
anger,disgust,fear
|
| 2320 |
+
joy,love,optimism
|
| 2321 |
+
joy,love,optimism
|
| 2322 |
+
joy,optimism
|
| 2323 |
+
joy,optimism
|
| 2324 |
+
joy,love,optimism
|
| 2325 |
+
anger,disgust,sadness
|
| 2326 |
+
anticipation,joy,optimism
|
| 2327 |
+
anger,disgust,sadness
|
| 2328 |
+
joy,love,optimism
|
| 2329 |
+
anger,disgust,sadness
|
| 2330 |
+
anger,disgust,sadness
|
| 2331 |
+
joy,optimism
|
| 2332 |
+
joy,optimism
|
| 2333 |
+
joy,optimism
|
| 2334 |
+
anger,disgust,sadness
|
| 2335 |
+
anger,disgust,sadness
|
| 2336 |
+
anger,disgust,sadness
|
| 2337 |
+
joy,optimism
|
| 2338 |
+
anger,disgust,sadness
|
| 2339 |
+
anger,disgust,sadness
|
| 2340 |
+
anger,disgust
|
| 2341 |
+
joy,love,optimism
|
| 2342 |
+
joy,love,optimism
|
| 2343 |
+
anger,disgust,sadness
|
| 2344 |
+
anger,disgust,sadness
|
| 2345 |
+
anger,disgust
|
| 2346 |
+
joy,optimism
|
| 2347 |
+
joy,optimism
|
| 2348 |
+
anger,disgust,fear
|
| 2349 |
+
anger,disgust,fear
|
| 2350 |
+
joy,optimism
|
| 2351 |
+
fear,pessimism,sadness
|
| 2352 |
+
joy,optimism
|
| 2353 |
+
joy,optimism
|
| 2354 |
+
anger,disgust,sadness
|
| 2355 |
+
anger,disgust,sadness
|
| 2356 |
+
anticipation,joy,optimism
|
| 2357 |
+
joy,optimism
|
| 2358 |
+
anger,disgust,sadness
|
| 2359 |
+
joy,optimism
|
| 2360 |
+
anger,disgust,sadness
|
| 2361 |
+
anger,disgust,sadness
|
| 2362 |
+
joy,love,optimism
|
| 2363 |
+
anticipation,joy,optimism
|
| 2364 |
+
anger,disgust,sadness
|
| 2365 |
+
anger,disgust,sadness
|
| 2366 |
+
fear,pessimism,sadness
|
| 2367 |
+
joy,love,optimism
|
| 2368 |
+
fear,sadness
|
| 2369 |
+
fear,optimism
|
| 2370 |
+
joy,optimism
|
| 2371 |
+
fear,pessimism,sadness
|
| 2372 |
+
joy,optimism
|
| 2373 |
+
joy,optimism
|
| 2374 |
+
anticipation,joy,optimism
|
| 2375 |
+
anger,disgust,sadness
|
| 2376 |
+
joy,optimism
|
| 2377 |
+
anger,disgust,sadness
|
| 2378 |
+
joy,love,optimism
|
| 2379 |
+
anger,disgust,sadness
|
| 2380 |
+
fear,optimism
|
| 2381 |
+
anger,disgust
|
| 2382 |
+
joy,love,optimism
|
| 2383 |
+
joy,optimism
|
| 2384 |
+
anger,disgust,fear
|
| 2385 |
+
joy,optimism
|
| 2386 |
+
joy,love,optimism
|
| 2387 |
+
fear,optimism
|
| 2388 |
+
anger,joy,optimism
|
| 2389 |
+
joy,love,optimism
|
| 2390 |
+
joy,optimism
|
| 2391 |
+
joy,optimism
|
| 2392 |
+
anger,disgust,sadness
|
| 2393 |
+
joy,optimism
|
| 2394 |
+
anger,disgust,fear,sadness
|
| 2395 |
+
anger,disgust,fear
|
| 2396 |
+
joy,love,optimism
|
| 2397 |
+
anger,disgust,sadness
|
| 2398 |
+
anger,disgust,joy
|
| 2399 |
+
anger,disgust,fear
|
| 2400 |
+
pessimism,sadness
|
| 2401 |
+
joy,love,optimism
|
| 2402 |
+
joy,optimism
|
| 2403 |
+
anger,disgust,sadness
|
| 2404 |
+
anger,disgust,sadness
|
| 2405 |
+
joy,optimism
|
| 2406 |
+
joy,love,optimism
|
| 2407 |
+
anger,disgust,sadness
|
| 2408 |
+
anger,disgust,sadness
|
| 2409 |
+
joy,love,optimism
|
| 2410 |
+
anger,disgust,sadness
|
| 2411 |
+
|
| 2412 |
+
anger,disgust,sadness
|
| 2413 |
+
anger,disgust,sadness
|
| 2414 |
+
joy,optimism
|
| 2415 |
+
anger,disgust,sadness
|
| 2416 |
+
joy,optimism
|
| 2417 |
+
joy,optimism
|
| 2418 |
+
anger,disgust,sadness
|
| 2419 |
+
anticipation,joy,optimism
|
| 2420 |
+
joy,optimism
|
| 2421 |
+
sadness
|
| 2422 |
+
joy,optimism
|
| 2423 |
+
anger,disgust,fear
|
| 2424 |
+
anger,disgust,sadness
|
| 2425 |
+
anger,disgust,fear
|
| 2426 |
+
joy,optimism
|
| 2427 |
+
joy,optimism
|
| 2428 |
+
anger,disgust,sadness
|
| 2429 |
+
joy,optimism
|
| 2430 |
+
anger,disgust,sadness
|
| 2431 |
+
anger,disgust
|
| 2432 |
+
joy,optimism
|
| 2433 |
+
anger,disgust,sadness
|
| 2434 |
+
anger,disgust,sadness
|
| 2435 |
+
anger,disgust,sadness
|
| 2436 |
+
anger,disgust,sadness
|
| 2437 |
+
joy,optimism
|
| 2438 |
+
joy,love,optimism
|
| 2439 |
+
fear,sadness
|
| 2440 |
+
joy,optimism
|
| 2441 |
+
fear,pessimism,sadness
|
| 2442 |
+
anger,disgust,sadness
|
| 2443 |
+
joy,optimism
|
| 2444 |
+
joy,love,optimism
|
| 2445 |
+
joy,optimism
|
| 2446 |
+
anger,disgust,fear
|
| 2447 |
+
optimism,trust
|
| 2448 |
+
joy,optimism
|
| 2449 |
+
anger,disgust,sadness
|
| 2450 |
+
joy,love,optimism
|
| 2451 |
+
anger,disgust,fear,sadness
|
| 2452 |
+
anger,disgust,sadness
|
| 2453 |
+
joy,optimism
|
| 2454 |
+
joy,optimism
|
| 2455 |
+
joy,love,optimism
|
| 2456 |
+
joy,love,optimism
|
| 2457 |
+
anger,disgust,joy
|
| 2458 |
+
joy,optimism
|
| 2459 |
+
anger,disgust,sadness
|
| 2460 |
+
joy,optimism
|
| 2461 |
+
joy,love,optimism
|
| 2462 |
+
anger,disgust,sadness
|
| 2463 |
+
anger,disgust,sadness
|
| 2464 |
+
anger,disgust,fear
|
| 2465 |
+
anger,disgust,joy
|
| 2466 |
+
joy,love,optimism
|
| 2467 |
+
anticipation,joy,optimism
|
| 2468 |
+
joy,optimism
|
| 2469 |
+
anger,disgust,joy
|
| 2470 |
+
joy,optimism
|
| 2471 |
+
joy,optimism
|
| 2472 |
+
anger,disgust,sadness
|
| 2473 |
+
anger,disgust,sadness
|
| 2474 |
+
joy,love,optimism
|
| 2475 |
+
joy,optimism
|
| 2476 |
+
anger,disgust,sadness
|
| 2477 |
+
anger,disgust,sadness
|
| 2478 |
+
joy,love,optimism
|
| 2479 |
+
joy,optimism
|
| 2480 |
+
joy,love,optimism
|
| 2481 |
+
anticipation,joy,optimism
|
| 2482 |
+
anger,disgust,sadness
|
| 2483 |
+
anger,disgust,sadness
|
| 2484 |
+
fear,joy,optimism
|
| 2485 |
+
joy,optimism
|
| 2486 |
+
anger,disgust,sadness
|
| 2487 |
+
anger,disgust,fear
|
| 2488 |
+
anger,disgust,sadness
|
| 2489 |
+
fear,pessimism,sadness
|
| 2490 |
+
joy,optimism
|
| 2491 |
+
joy,optimism
|
| 2492 |
+
joy,optimism
|
| 2493 |
+
anger,disgust,sadness
|
| 2494 |
+
joy,love,optimism
|
| 2495 |
+
anticipation,joy,optimism
|
| 2496 |
+
anger,disgust,fear
|
| 2497 |
+
anger,disgust,sadness
|
| 2498 |
+
anger,disgust,sadness
|
| 2499 |
+
anger,disgust,sadness
|
| 2500 |
+
joy,love,optimism
|
| 2501 |
+
joy,optimism
|
| 2502 |
+
anger,disgust,sadness
|
| 2503 |
+
joy,optimism
|
| 2504 |
+
joy,optimism
|
| 2505 |
+
anger,disgust,sadness
|
| 2506 |
+
joy,optimism
|
| 2507 |
+
joy,love,optimism
|
| 2508 |
+
sadness
|
| 2509 |
+
joy,optimism
|
| 2510 |
+
anger,disgust,sadness
|
| 2511 |
+
joy,optimism
|
| 2512 |
+
anger,disgust,sadness
|
| 2513 |
+
anger,disgust,fear
|
| 2514 |
+
joy,love,optimism
|
| 2515 |
+
anger,disgust,fear
|
| 2516 |
+
joy,optimism
|
| 2517 |
+
fear,joy,optimism
|
| 2518 |
+
joy,optimism
|
| 2519 |
+
anticipation,joy,optimism
|
| 2520 |
+
anger,disgust,joy
|
| 2521 |
+
joy,love,optimism
|
| 2522 |
+
fear,pessimism,sadness
|
| 2523 |
+
anger,disgust,sadness
|
| 2524 |
+
anger,disgust,sadness
|
| 2525 |
+
joy,optimism
|
| 2526 |
+
anger,disgust
|
| 2527 |
+
sadness
|
| 2528 |
+
anger,disgust,sadness
|
| 2529 |
+
anticipation,joy,optimism
|
| 2530 |
+
anger,disgust,fear
|
| 2531 |
+
joy,optimism
|
| 2532 |
+
joy,optimism
|
| 2533 |
+
sadness
|
| 2534 |
+
anger,disgust,sadness
|
| 2535 |
+
anger,disgust,sadness
|
| 2536 |
+
anger,disgust,sadness
|
| 2537 |
+
anger,disgust,fear
|
| 2538 |
+
joy,love,optimism
|
| 2539 |
+
anger,disgust,sadness
|
| 2540 |
+
anger,disgust,sadness
|
| 2541 |
+
anger,disgust,sadness
|
| 2542 |
+
anger,disgust,fear
|
| 2543 |
+
joy,love,optimism
|
| 2544 |
+
fear,pessimism,sadness
|
| 2545 |
+
joy,optimism
|
| 2546 |
+
anger,disgust
|
| 2547 |
+
anticipation,joy,optimism
|
| 2548 |
+
joy,love,optimism
|
| 2549 |
+
anger,disgust,optimism
|
| 2550 |
+
joy,optimism
|
| 2551 |
+
joy,optimism
|
| 2552 |
+
anger,disgust,sadness
|
| 2553 |
+
anger,disgust,sadness
|
| 2554 |
+
anger,disgust,fear
|
| 2555 |
+
joy,optimism
|
| 2556 |
+
joy,love,optimism
|
| 2557 |
+
anger,disgust,sadness
|
| 2558 |
+
anger,disgust,sadness
|
| 2559 |
+
anger,disgust
|
| 2560 |
+
anger,disgust,sadness
|
| 2561 |
+
anger,disgust,sadness
|
| 2562 |
+
fear,pessimism,sadness
|
| 2563 |
+
anger,disgust,sadness
|
| 2564 |
+
anger,disgust,sadness
|
| 2565 |
+
joy,love,optimism
|
| 2566 |
+
joy,optimism
|
| 2567 |
+
joy,optimism
|
| 2568 |
+
joy,love,optimism
|
| 2569 |
+
anger,disgust,sadness
|
| 2570 |
+
joy,love,optimism
|
| 2571 |
+
joy,love,optimism
|
| 2572 |
+
anger,disgust,sadness
|
| 2573 |
+
joy,love,optimism
|
| 2574 |
+
joy,optimism
|
| 2575 |
+
anger,disgust,sadness
|
| 2576 |
+
anger,disgust,sadness
|
| 2577 |
+
joy,optimism
|
| 2578 |
+
joy,optimism
|
| 2579 |
+
joy,optimism
|
| 2580 |
+
anger,disgust,fear
|
| 2581 |
+
anger,disgust
|
| 2582 |
+
anger,disgust,sadness
|
| 2583 |
+
fear,pessimism,sadness
|
| 2584 |
+
anger,disgust,fear
|
| 2585 |
+
joy,love,optimism
|
| 2586 |
+
joy,love,optimism
|
| 2587 |
+
anger,disgust,sadness
|
| 2588 |
+
joy,love,optimism
|
| 2589 |
+
anticipation,fear,optimism
|
| 2590 |
+
joy,optimism
|
| 2591 |
+
joy,love,optimism
|
| 2592 |
+
anger,disgust,fear,sadness
|
| 2593 |
+
joy,optimism
|
| 2594 |
+
anger,disgust,sadness
|
| 2595 |
+
anger,disgust,sadness
|
| 2596 |
+
anger,disgust
|
| 2597 |
+
joy,optimism
|
| 2598 |
+
fear,joy,optimism
|
| 2599 |
+
optimism,trust
|
| 2600 |
+
anger,disgust,sadness
|
| 2601 |
+
anticipation,joy,optimism
|
| 2602 |
+
joy,optimism
|
| 2603 |
+
anger,disgust
|
| 2604 |
+
anger,disgust
|
| 2605 |
+
anger,disgust,sadness
|
| 2606 |
+
fear,pessimism,sadness
|
| 2607 |
+
anger,disgust,sadness
|
| 2608 |
+
joy,love,optimism
|
| 2609 |
+
joy,optimism
|
| 2610 |
+
anger,disgust
|
| 2611 |
+
joy,optimism
|
| 2612 |
+
anger,disgust,sadness
|
| 2613 |
+
fear,optimism
|
| 2614 |
+
anticipation,joy,optimism
|
| 2615 |
+
joy,optimism
|
| 2616 |
+
anger,disgust,sadness
|
| 2617 |
+
anger,disgust,sadness
|
| 2618 |
+
anger,disgust
|
| 2619 |
+
anger,disgust,fear
|
| 2620 |
+
optimism,trust
|
| 2621 |
+
joy,optimism
|
| 2622 |
+
joy,love,optimism
|
| 2623 |
+
joy,optimism
|
| 2624 |
+
anger,disgust,sadness
|
| 2625 |
+
anger,disgust,sadness
|
| 2626 |
+
joy,optimism
|
| 2627 |
+
anger,disgust,sadness
|
| 2628 |
+
joy,optimism
|
| 2629 |
+
anger,disgust,fear
|
| 2630 |
+
anger,disgust,sadness
|
| 2631 |
+
fear,pessimism,sadness
|
| 2632 |
+
joy,optimism
|
| 2633 |
+
anger,disgust
|
| 2634 |
+
anger,disgust,sadness
|
| 2635 |
+
anger,disgust,sadness
|
| 2636 |
+
joy,optimism
|
| 2637 |
+
anger,disgust,sadness
|
| 2638 |
+
anger,disgust,fear
|
| 2639 |
+
fear,pessimism,sadness
|
| 2640 |
+
anger,disgust,sadness
|
| 2641 |
+
joy,optimism
|
| 2642 |
+
fear,pessimism,sadness
|
| 2643 |
+
joy,optimism
|
| 2644 |
+
anger,disgust,joy
|
| 2645 |
+
joy,love,optimism
|
| 2646 |
+
anger,disgust,sadness
|
| 2647 |
+
joy,love,optimism
|
| 2648 |
+
anger,disgust,sadness
|
| 2649 |
+
anger,disgust,sadness
|
| 2650 |
+
fear,joy,optimism
|
| 2651 |
+
joy,love,optimism
|
| 2652 |
+
anger,disgust,sadness
|
| 2653 |
+
joy,optimism
|
| 2654 |
+
joy,love,optimism
|
| 2655 |
+
anger,disgust,sadness
|
| 2656 |
+
anger,disgust,sadness
|
| 2657 |
+
anger,disgust
|
| 2658 |
+
joy,optimism
|
| 2659 |
+
joy,optimism
|
| 2660 |
+
anger,disgust,sadness
|
| 2661 |
+
joy,optimism
|
| 2662 |
+
anger,disgust
|
| 2663 |
+
anger,disgust,joy
|
| 2664 |
+
anger,disgust,sadness
|
| 2665 |
+
joy,optimism
|
| 2666 |
+
anger,disgust,sadness
|
| 2667 |
+
joy,optimism
|
| 2668 |
+
joy,optimism
|
| 2669 |
+
joy,love,optimism
|
| 2670 |
+
joy,optimism
|
| 2671 |
+
anger,disgust
|
| 2672 |
+
joy,optimism
|
| 2673 |
+
anger,disgust,sadness
|
| 2674 |
+
anger,disgust,fear
|
| 2675 |
+
anger,disgust,sadness
|
| 2676 |
+
anger,disgust,sadness
|
| 2677 |
+
anger,disgust,fear
|
| 2678 |
+
anger,disgust,sadness
|
| 2679 |
+
sadness
|
| 2680 |
+
anger,disgust,joy
|
| 2681 |
+
anger,disgust,sadness
|
| 2682 |
+
joy,optimism
|
| 2683 |
+
joy,optimism
|
| 2684 |
+
joy,optimism
|
| 2685 |
+
joy,optimism
|
| 2686 |
+
joy,optimism
|
| 2687 |
+
joy,love,optimism
|
| 2688 |
+
anger,disgust,sadness
|
| 2689 |
+
anger,disgust,sadness
|
| 2690 |
+
anger,disgust,sadness
|
| 2691 |
+
joy,love,optimism
|
| 2692 |
+
anticipation,joy,optimism
|
| 2693 |
+
anger,disgust,fear
|
| 2694 |
+
anger,disgust,sadness
|
| 2695 |
+
anger,disgust,fear
|
| 2696 |
+
anger,disgust,sadness
|
| 2697 |
+
anticipation,joy,optimism
|
| 2698 |
+
anger,disgust,sadness
|
| 2699 |
+
anger,disgust,fear
|
| 2700 |
+
joy,love,optimism
|
| 2701 |
+
anger,disgust,sadness
|
| 2702 |
+
anger,disgust,sadness
|
| 2703 |
+
anger,disgust,sadness
|
| 2704 |
+
anger,disgust
|
| 2705 |
+
joy,love,optimism
|
| 2706 |
+
anger,disgust,joy
|
| 2707 |
+
anger,disgust
|
| 2708 |
+
anticipation,joy,optimism
|
| 2709 |
+
joy,love,optimism
|
| 2710 |
+
anticipation,joy,optimism
|
| 2711 |
+
anticipation,joy,optimism
|
| 2712 |
+
joy,optimism
|
| 2713 |
+
anticipation,joy,optimism
|
| 2714 |
+
anger,disgust
|
| 2715 |
+
anger,disgust,fear
|
| 2716 |
+
anger,disgust,sadness
|
| 2717 |
+
joy,optimism
|
| 2718 |
+
joy,love,optimism
|
| 2719 |
+
joy,optimism
|
| 2720 |
+
anger,disgust,sadness
|
| 2721 |
+
joy,optimism
|
| 2722 |
+
anger,disgust,sadness
|
| 2723 |
+
joy,love,optimism
|
| 2724 |
+
joy,love,optimism
|
| 2725 |
+
joy,love,optimism
|
| 2726 |
+
anger,disgust,sadness
|
| 2727 |
+
anger,disgust,sadness
|
| 2728 |
+
anger,disgust,fear
|
| 2729 |
+
anticipation,joy,optimism
|
| 2730 |
+
anger,disgust,fear
|
| 2731 |
+
anger,disgust,sadness
|
| 2732 |
+
anger,disgust,joy
|
| 2733 |
+
joy,love,optimism
|
| 2734 |
+
joy,optimism
|
| 2735 |
+
joy,love,optimism
|
| 2736 |
+
joy,optimism
|
| 2737 |
+
anger,disgust,fear
|
| 2738 |
+
joy,optimism
|
| 2739 |
+
anger,disgust,optimism
|
| 2740 |
+
disgust,sadness
|
| 2741 |
+
joy,optimism
|
| 2742 |
+
joy,optimism
|
| 2743 |
+
joy,love,optimism
|
| 2744 |
+
anger,disgust,sadness
|
| 2745 |
+
joy,love,optimism
|
| 2746 |
+
joy,optimism
|
| 2747 |
+
joy,optimism
|
| 2748 |
+
anger,disgust,fear
|
| 2749 |
+
fear,joy,optimism
|
| 2750 |
+
joy,love,optimism
|
| 2751 |
+
joy,optimism
|
| 2752 |
+
fear,pessimism,sadness
|
| 2753 |
+
joy,optimism
|
| 2754 |
+
anger,disgust,sadness
|
| 2755 |
+
joy,optimism
|
| 2756 |
+
joy,love,optimism
|
| 2757 |
+
anger,disgust,sadness
|
| 2758 |
+
joy,love,optimism
|
| 2759 |
+
joy,optimism
|
| 2760 |
+
anger,disgust,fear
|
| 2761 |
+
anger,disgust,sadness
|
| 2762 |
+
anger,disgust,sadness
|
| 2763 |
+
anger,disgust,fear
|
| 2764 |
+
anger,disgust,sadness
|
| 2765 |
+
anticipation,optimism
|
| 2766 |
+
anger,disgust,fear
|
| 2767 |
+
joy,optimism
|
| 2768 |
+
joy,optimism
|
| 2769 |
+
disgust,fear,pessimism,sadness
|
| 2770 |
+
joy,optimism
|
| 2771 |
+
anger,disgust,optimism
|
| 2772 |
+
joy,optimism
|
| 2773 |
+
joy,optimism
|
| 2774 |
+
anger,disgust,sadness
|
| 2775 |
+
joy,love,optimism
|
| 2776 |
+
anger,disgust,sadness
|
| 2777 |
+
joy,optimism
|
| 2778 |
+
joy,optimism
|
| 2779 |
+
anger,disgust,fear
|
| 2780 |
+
anger,joy,optimism
|
| 2781 |
+
anger,disgust,sadness
|
| 2782 |
+
anger,disgust,sadness
|
| 2783 |
+
joy,optimism
|
| 2784 |
+
anger,disgust,sadness
|
| 2785 |
+
anger,disgust,sadness
|
| 2786 |
+
joy,love,optimism
|
| 2787 |
+
fear,pessimism,sadness
|
| 2788 |
+
anger,disgust,sadness
|
| 2789 |
+
joy,love,optimism
|
| 2790 |
+
joy,optimism
|
| 2791 |
+
anger,disgust,fear
|
| 2792 |
+
anger,disgust,sadness
|
| 2793 |
+
joy,optimism
|
| 2794 |
+
joy,optimism
|
| 2795 |
+
pessimism,sadness
|
| 2796 |
+
joy,optimism
|
| 2797 |
+
anger,disgust,sadness
|
| 2798 |
+
anger,disgust,sadness
|
| 2799 |
+
joy,optimism
|
| 2800 |
+
anger,disgust,sadness
|
| 2801 |
+
joy,optimism
|
| 2802 |
+
anger,disgust,fear
|
| 2803 |
+
anger,disgust,fear,sadness
|
| 2804 |
+
joy,optimism
|
| 2805 |
+
joy,optimism
|
| 2806 |
+
anger,disgust,sadness
|
| 2807 |
+
anger,disgust,fear
|
| 2808 |
+
joy,optimism
|
| 2809 |
+
anger,disgust,sadness
|
| 2810 |
+
anger,disgust,sadness
|
| 2811 |
+
joy,optimism
|
| 2812 |
+
joy,love,optimism
|
| 2813 |
+
joy,love,optimism
|
| 2814 |
+
joy,love,optimism
|
| 2815 |
+
anger,disgust,sadness
|
| 2816 |
+
joy,optimism
|
| 2817 |
+
anger,disgust,fear
|
| 2818 |
+
anger,disgust,optimism
|
| 2819 |
+
joy,optimism
|
| 2820 |
+
anger,disgust,fear
|
| 2821 |
+
joy,optimism
|
| 2822 |
+
joy,love,optimism
|
| 2823 |
+
joy,optimism
|
| 2824 |
+
fear,pessimism,sadness
|
| 2825 |
+
anger,disgust,sadness
|
| 2826 |
+
anger,disgust
|
| 2827 |
+
anger,disgust,fear
|
| 2828 |
+
joy,love,optimism
|
| 2829 |
+
anger,disgust,fear
|
| 2830 |
+
joy,love,optimism
|
| 2831 |
+
anger,disgust,sadness
|
| 2832 |
+
anger,disgust,sadness
|
| 2833 |
+
anger,disgust,sadness
|
| 2834 |
+
joy,optimism
|
| 2835 |
+
joy,love,optimism
|
| 2836 |
+
anger,disgust,fear
|
| 2837 |
+
joy,optimism
|
| 2838 |
+
fear,pessimism,sadness
|
| 2839 |
+
joy,optimism
|
| 2840 |
+
joy,love,optimism
|
| 2841 |
+
anger,disgust,joy
|
| 2842 |
+
joy,optimism
|
| 2843 |
+
joy,love,optimism
|
| 2844 |
+
anger,disgust,sadness
|
| 2845 |
+
anger,disgust,sadness
|
| 2846 |
+
joy,optimism
|
| 2847 |
+
anger,disgust,fear,sadness
|
| 2848 |
+
anger,disgust,sadness
|
| 2849 |
+
disgust,fear,pessimism,sadness
|
| 2850 |
+
joy,love,optimism
|
| 2851 |
+
anger,disgust,sadness
|
| 2852 |
+
joy,optimism
|
| 2853 |
+
joy,optimism
|
| 2854 |
+
anger,disgust,sadness
|
| 2855 |
+
anger,disgust,sadness
|
| 2856 |
+
anger,disgust,sadness
|
| 2857 |
+
anger,disgust,fear
|
| 2858 |
+
anger,disgust,sadness
|
| 2859 |
+
anger,disgust,sadness
|
| 2860 |
+
joy,optimism
|
| 2861 |
+
fear,pessimism,sadness
|
| 2862 |
+
anger,disgust,sadness
|
| 2863 |
+
anger,disgust,fear
|
| 2864 |
+
sadness
|
| 2865 |
+
anger,disgust,sadness
|
| 2866 |
+
anger,disgust,sadness
|
| 2867 |
+
anger,disgust,sadness
|
| 2868 |
+
joy,love,optimism
|
| 2869 |
+
anger,disgust,sadness
|
| 2870 |
+
joy,optimism
|
| 2871 |
+
joy,love,optimism
|
| 2872 |
+
anger,disgust,sadness
|
| 2873 |
+
anger,disgust,fear
|
| 2874 |
+
joy,optimism
|
| 2875 |
+
joy,optimism
|
| 2876 |
+
anger,disgust,fear
|
| 2877 |
+
joy,optimism
|
| 2878 |
+
anger,disgust,fear
|
| 2879 |
+
joy,optimism
|
| 2880 |
+
joy,love,optimism
|
| 2881 |
+
anger,disgust,fear
|
| 2882 |
+
anger,disgust,sadness
|
| 2883 |
+
anger,disgust,sadness
|
| 2884 |
+
anger,disgust,sadness
|
| 2885 |
+
anticipation,joy,optimism
|
| 2886 |
+
joy,optimism
|
| 2887 |
+
fear,pessimism,sadness
|
| 2888 |
+
anger,disgust,fear
|
| 2889 |
+
anger,disgust,sadness
|
| 2890 |
+
joy,love,optimism
|
| 2891 |
+
anger,disgust,sadness
|
| 2892 |
+
joy,love,optimism
|
| 2893 |
+
anger,disgust,fear
|
| 2894 |
+
anger,disgust,fear
|
| 2895 |
+
joy,love,optimism
|
| 2896 |
+
joy,optimism
|
| 2897 |
+
joy,optimism
|
| 2898 |
+
joy,optimism
|
| 2899 |
+
joy,love,optimism
|
| 2900 |
+
fear,pessimism,sadness
|
| 2901 |
+
joy,love,optimism
|
| 2902 |
+
joy,optimism
|
| 2903 |
+
joy,optimism
|
| 2904 |
+
anger,disgust,sadness
|
| 2905 |
+
fear,pessimism,sadness
|
| 2906 |
+
anger,disgust,sadness
|
| 2907 |
+
anger,disgust,sadness
|
| 2908 |
+
anger,disgust,sadness
|
| 2909 |
+
joy,love,optimism
|
| 2910 |
+
anger,disgust,sadness
|
| 2911 |
+
joy,optimism
|
| 2912 |
+
anger,disgust,sadness
|
| 2913 |
+
anger,disgust,sadness
|
| 2914 |
+
joy,love,optimism
|
| 2915 |
+
joy,love,optimism
|
| 2916 |
+
joy,optimism
|
| 2917 |
+
anger,disgust,sadness
|
| 2918 |
+
joy,optimism
|
| 2919 |
+
joy,optimism
|
| 2920 |
+
joy,optimism
|
| 2921 |
+
anger,disgust,sadness
|
| 2922 |
+
anger,disgust
|
| 2923 |
+
anger,disgust
|
| 2924 |
+
anger,disgust,sadness
|
| 2925 |
+
anger,disgust,sadness
|
| 2926 |
+
anger,disgust,sadness
|
| 2927 |
+
anticipation,joy,optimism
|
| 2928 |
+
anger,disgust,sadness
|
| 2929 |
+
fear,sadness
|
| 2930 |
+
anger,disgust
|
| 2931 |
+
joy,love,optimism
|
| 2932 |
+
fear,pessimism,sadness
|
| 2933 |
+
fear,sadness
|
| 2934 |
+
fear,optimism
|
| 2935 |
+
joy,optimism
|
| 2936 |
+
anticipation,joy,optimism
|
| 2937 |
+
anger,disgust,fear
|
| 2938 |
+
joy,love,optimism
|
| 2939 |
+
anger,disgust,fear
|
| 2940 |
+
anger,disgust
|
| 2941 |
+
anger,disgust,sadness
|
| 2942 |
+
sadness
|
| 2943 |
+
joy,optimism
|
| 2944 |
+
anger,disgust,fear,sadness
|
| 2945 |
+
fear,pessimism,sadness
|
| 2946 |
+
joy,optimism
|
| 2947 |
+
fear,pessimism,sadness
|
| 2948 |
+
anger,disgust,fear
|
| 2949 |
+
anger,disgust,fear
|
| 2950 |
+
anger,disgust,sadness
|
| 2951 |
+
anger,disgust
|
| 2952 |
+
joy,optimism
|
| 2953 |
+
anger,disgust,sadness
|
| 2954 |
+
anticipation,joy,optimism
|
| 2955 |
+
anticipation,joy,optimism
|
| 2956 |
+
joy,optimism
|
| 2957 |
+
anger,disgust
|
| 2958 |
+
anger,disgust,sadness
|
| 2959 |
+
anger,disgust,fear
|
| 2960 |
+
anger,disgust,sadness
|
| 2961 |
+
anger,disgust,fear
|
| 2962 |
+
anger,disgust
|
| 2963 |
+
joy,optimism
|
| 2964 |
+
anger,disgust,sadness
|
| 2965 |
+
anger,disgust,fear
|
| 2966 |
+
anger,disgust,fear
|
| 2967 |
+
joy,optimism
|
| 2968 |
+
anger,disgust,fear
|
| 2969 |
+
joy,love,optimism
|
| 2970 |
+
anger,disgust,sadness
|
| 2971 |
+
joy,optimism
|
| 2972 |
+
anticipation,joy,optimism
|
| 2973 |
+
joy,love,optimism
|
| 2974 |
+
anger,disgust,sadness
|
| 2975 |
+
joy,optimism
|
| 2976 |
+
fear,pessimism,sadness
|
| 2977 |
+
anger,disgust,sadness
|
| 2978 |
+
anger,disgust,sadness
|
| 2979 |
+
joy,optimism
|
| 2980 |
+
joy,love,optimism
|
| 2981 |
+
anger,disgust,fear
|
| 2982 |
+
anger,disgust,sadness
|
| 2983 |
+
joy,optimism
|
| 2984 |
+
anger,disgust,sadness
|
| 2985 |
+
joy,optimism
|
| 2986 |
+
joy,love,optimism
|
| 2987 |
+
joy,optimism
|
| 2988 |
+
joy,optimism
|
| 2989 |
+
joy,love,optimism
|
| 2990 |
+
anger,disgust,sadness
|
| 2991 |
+
anger,disgust,sadness
|
| 2992 |
+
anticipation,joy,optimism
|
| 2993 |
+
anger,disgust,sadness
|
| 2994 |
+
anger,disgust,optimism
|
| 2995 |
+
joy,optimism
|
| 2996 |
+
anger,disgust,fear
|
| 2997 |
+
anger,disgust,sadness
|
| 2998 |
+
anger,disgust,sadness
|
| 2999 |
+
optimism
|
| 3000 |
+
joy,optimism
|
| 3001 |
+
anger,disgust,fear
|
| 3002 |
+
joy,love,optimism
|
| 3003 |
+
joy,optimism
|
| 3004 |
+
joy,love,optimism
|
| 3005 |
+
anger,disgust,fear
|
| 3006 |
+
joy,love,optimism
|
| 3007 |
+
anger,disgust,fear
|
| 3008 |
+
anger,disgust,sadness
|
| 3009 |
+
anger,disgust,sadness
|
| 3010 |
+
anger,disgust
|
| 3011 |
+
anger,disgust
|
| 3012 |
+
joy,love,optimism
|
| 3013 |
+
joy,optimism
|
| 3014 |
+
anger,disgust,sadness
|
| 3015 |
+
anger,disgust
|
| 3016 |
+
anger,disgust,sadness
|
| 3017 |
+
joy,optimism
|
| 3018 |
+
anger,disgust,fear
|
| 3019 |
+
joy,love,optimism
|
| 3020 |
+
anger,disgust,fear
|
| 3021 |
+
joy,optimism
|
| 3022 |
+
anger,disgust,sadness
|
| 3023 |
+
joy,optimism
|
| 3024 |
+
anger,disgust,joy
|
| 3025 |
+
anger,disgust,sadness
|
| 3026 |
+
joy,love,optimism
|
| 3027 |
+
fear,optimism
|
| 3028 |
+
joy,optimism
|
| 3029 |
+
fear,pessimism,sadness
|
| 3030 |
+
joy,optimism
|
| 3031 |
+
anger,disgust,optimism
|
| 3032 |
+
fear,pessimism,sadness
|
| 3033 |
+
anger,disgust,sadness
|
| 3034 |
+
anger,disgust,sadness
|
| 3035 |
+
fear,sadness
|
| 3036 |
+
anger,disgust
|
| 3037 |
+
anger,disgust
|
| 3038 |
+
sadness
|
| 3039 |
+
joy,optimism
|
| 3040 |
+
joy,love,optimism
|
| 3041 |
+
joy,optimism
|
| 3042 |
+
anger,disgust,sadness
|
| 3043 |
+
joy,optimism
|
| 3044 |
+
joy,optimism
|
| 3045 |
+
joy,love,optimism
|
| 3046 |
+
fear,pessimism,sadness
|
| 3047 |
+
anger,disgust,sadness
|
| 3048 |
+
joy,optimism
|
| 3049 |
+
disgust,sadness
|
| 3050 |
+
fear,pessimism,sadness
|
| 3051 |
+
anger,disgust,sadness
|
| 3052 |
+
anger,disgust,sadness
|
| 3053 |
+
fear,pessimism,sadness
|
| 3054 |
+
sadness
|
| 3055 |
+
joy,optimism
|
| 3056 |
+
joy,optimism
|
| 3057 |
+
anger,disgust,joy
|
| 3058 |
+
optimism
|
| 3059 |
+
fear,pessimism,sadness
|
| 3060 |
+
anger,disgust,sadness
|
| 3061 |
+
joy,love,optimism
|
| 3062 |
+
anger,disgust,sadness
|
| 3063 |
+
anger,disgust,sadness
|
| 3064 |
+
joy,love,optimism
|
| 3065 |
+
joy,optimism
|
| 3066 |
+
joy,optimism
|
| 3067 |
+
anger,disgust,sadness
|
| 3068 |
+
disgust,sadness
|
| 3069 |
+
anger,disgust,sadness
|
| 3070 |
+
anger,disgust,sadness
|
| 3071 |
+
anger,disgust,sadness
|
| 3072 |
+
joy,optimism
|
| 3073 |
+
joy,love,optimism
|
| 3074 |
+
anger,disgust,fear
|
| 3075 |
+
joy,love,optimism
|
| 3076 |
+
anger,disgust,sadness
|
| 3077 |
+
anger,disgust,fear
|
| 3078 |
+
anger,disgust,sadness
|
| 3079 |
+
anger,disgust,fear
|
| 3080 |
+
anger,disgust,sadness
|
| 3081 |
+
anger,disgust
|
| 3082 |
+
joy,love,optimism
|
| 3083 |
+
joy,love,optimism
|
| 3084 |
+
fear,pessimism,sadness
|
| 3085 |
+
anger,disgust,fear
|
| 3086 |
+
anger,disgust,optimism
|
| 3087 |
+
fear,pessimism,sadness
|
| 3088 |
+
joy,love,optimism
|
| 3089 |
+
joy,love,optimism
|
| 3090 |
+
anger,disgust,sadness
|
| 3091 |
+
anger,disgust,sadness
|
| 3092 |
+
anger,disgust,sadness
|
| 3093 |
+
anticipation,joy,optimism
|
| 3094 |
+
anticipation,joy,optimism
|
| 3095 |
+
anger,disgust,sadness
|
| 3096 |
+
joy,optimism
|
| 3097 |
+
joy,optimism
|
| 3098 |
+
anticipation,joy,optimism
|
| 3099 |
+
sadness
|
| 3100 |
+
joy,love,optimism
|
| 3101 |
+
anger,disgust,optimism
|
| 3102 |
+
anticipation,joy,optimism
|
| 3103 |
+
anger,disgust,sadness
|
| 3104 |
+
joy,optimism
|
| 3105 |
+
joy,love,optimism
|
| 3106 |
+
anger,disgust,sadness
|
| 3107 |
+
joy,love,optimism
|
| 3108 |
+
anger,disgust,sadness
|
| 3109 |
+
joy,optimism
|
| 3110 |
+
anger,disgust,sadness
|
| 3111 |
+
anger,disgust,sadness
|
| 3112 |
+
joy,love,optimism
|
| 3113 |
+
anger,disgust,sadness
|
| 3114 |
+
joy,optimism
|
| 3115 |
+
anger,disgust,sadness
|
| 3116 |
+
joy,optimism
|
| 3117 |
+
joy,love,optimism
|
| 3118 |
+
sadness
|
| 3119 |
+
anger,disgust,sadness
|
| 3120 |
+
anger,disgust,fear
|
| 3121 |
+
joy,optimism
|
| 3122 |
+
anger,disgust,sadness
|
| 3123 |
+
anger,disgust
|
| 3124 |
+
fear,pessimism,sadness
|
| 3125 |
+
anger,disgust
|
| 3126 |
+
anticipation,joy,optimism
|
| 3127 |
+
joy,optimism
|
| 3128 |
+
sadness
|
| 3129 |
+
joy,optimism
|
| 3130 |
+
joy,optimism
|
| 3131 |
+
joy,love,optimism
|
| 3132 |
+
anger,disgust,sadness
|
| 3133 |
+
joy,love,optimism
|
| 3134 |
+
joy,love,optimism
|
| 3135 |
+
joy,optimism
|
| 3136 |
+
anger,disgust,fear
|
| 3137 |
+
fear,pessimism,sadness
|
| 3138 |
+
fear,pessimism,sadness
|
| 3139 |
+
anger,disgust
|
| 3140 |
+
anger,disgust,sadness
|
| 3141 |
+
joy,optimism
|
| 3142 |
+
anger,disgust,sadness
|
| 3143 |
+
fear,joy,optimism
|
| 3144 |
+
anger,disgust,fear
|
| 3145 |
+
joy,love,optimism
|
| 3146 |
+
anger,disgust,sadness
|
| 3147 |
+
anger,disgust,sadness
|
| 3148 |
+
joy,love,optimism
|
| 3149 |
+
anger,disgust,fear
|
| 3150 |
+
sadness
|
| 3151 |
+
anger,disgust,sadness
|
| 3152 |
+
anger,disgust,fear
|
| 3153 |
+
joy,optimism
|
| 3154 |
+
anger,disgust,joy
|
| 3155 |
+
anger,disgust,sadness
|
| 3156 |
+
fear,pessimism,sadness
|
| 3157 |
+
fear,optimism
|
| 3158 |
+
anger,disgust,sadness
|
| 3159 |
+
anger,disgust,optimism
|
| 3160 |
+
anger,disgust,sadness
|
| 3161 |
+
anger,disgust,sadness
|
| 3162 |
+
anger,disgust,sadness
|
| 3163 |
+
joy,love,optimism
|
| 3164 |
+
anticipation,joy,optimism
|
| 3165 |
+
joy,optimism
|
| 3166 |
+
joy,optimism
|
| 3167 |
+
joy,optimism
|
| 3168 |
+
anticipation,joy,optimism
|
| 3169 |
+
fear,pessimism,sadness
|
| 3170 |
+
joy,love,optimism
|
| 3171 |
+
joy,optimism
|
| 3172 |
+
anger,disgust,sadness
|
| 3173 |
+
joy,love,optimism
|
| 3174 |
+
anticipation,joy,optimism
|
| 3175 |
+
joy,love,optimism
|
| 3176 |
+
joy,optimism
|
| 3177 |
+
anger,disgust,sadness
|
| 3178 |
+
fear,sadness
|
| 3179 |
+
joy,optimism
|
| 3180 |
+
joy,love,optimism
|
| 3181 |
+
anticipation,joy,optimism
|
| 3182 |
+
anger,disgust,sadness
|
| 3183 |
+
anger,disgust,sadness
|
| 3184 |
+
joy,optimism
|
| 3185 |
+
anticipation,joy,optimism
|
| 3186 |
+
joy,love,optimism
|
| 3187 |
+
optimism,trust
|
| 3188 |
+
anger,disgust,sadness
|
| 3189 |
+
joy,optimism
|
| 3190 |
+
joy,optimism
|
| 3191 |
+
joy,optimism
|
| 3192 |
+
anger,disgust,sadness
|
| 3193 |
+
joy,love,optimism
|
| 3194 |
+
joy,love,optimism
|
| 3195 |
+
anticipation,joy,optimism
|
| 3196 |
+
anticipation,joy,optimism
|
| 3197 |
+
joy,love,optimism
|
| 3198 |
+
anger,disgust,sadness
|
| 3199 |
+
anger,disgust,sadness
|
| 3200 |
+
anger,disgust,sadness
|
| 3201 |
+
fear,joy,optimism
|
| 3202 |
+
fear,sadness
|
| 3203 |
+
anger,disgust,sadness
|
| 3204 |
+
anger,disgust
|
| 3205 |
+
joy,optimism
|
| 3206 |
+
joy,love,optimism
|
| 3207 |
+
fear,pessimism,sadness
|
| 3208 |
+
joy,optimism
|
| 3209 |
+
fear,pessimism,sadness
|
| 3210 |
+
fear,optimism
|
| 3211 |
+
joy,love,optimism
|
| 3212 |
+
fear,pessimism,sadness
|
| 3213 |
+
anger,disgust,joy
|
| 3214 |
+
discouraged
|
| 3215 |
+
joy,love,optimism
|
| 3216 |
+
joy,optimism
|
| 3217 |
+
anger,disgust,sadness
|
| 3218 |
+
joy,optimism
|
| 3219 |
+
joy,optimism
|
| 3220 |
+
anger,disgust,fear
|
| 3221 |
+
anger,disgust,sadness
|
| 3222 |
+
anger,disgust,joy
|
| 3223 |
+
anger,disgust,fear
|
| 3224 |
+
joy,love,optimism
|
| 3225 |
+
joy,optimism
|
| 3226 |
+
anticipation,joy,optimism
|
| 3227 |
+
anger,disgust,fear
|
| 3228 |
+
joy,love,optimism
|
| 3229 |
+
anger,disgust
|
| 3230 |
+
joy,optimism
|
| 3231 |
+
joy,love,optimism
|
| 3232 |
+
joy,optimism
|
| 3233 |
+
joy,love,optimism
|
| 3234 |
+
joy,optimism
|
| 3235 |
+
anger,disgust,joy
|
| 3236 |
+
anger,disgust,sadness
|
| 3237 |
+
joy,love,optimism
|
| 3238 |
+
anger,disgust,sadness
|
| 3239 |
+
fear,pessimism,sadness
|
| 3240 |
+
joy,optimism
|
| 3241 |
+
joy,love,optimism
|
| 3242 |
+
joy,optimism
|
| 3243 |
+
anger,disgust,sadness
|
| 3244 |
+
joy,optimism
|
| 3245 |
+
anger,disgust,sadness
|
| 3246 |
+
joy,love,optimism
|
| 3247 |
+
joy,love,optimism
|
| 3248 |
+
anger,disgust,sadness
|
| 3249 |
+
joy,optimism
|
| 3250 |
+
anticipation,joy,optimism
|
| 3251 |
+
fear,joy,optimism
|
| 3252 |
+
sadness
|
| 3253 |
+
anticipation,joy,optimism
|
| 3254 |
+
anger,disgust,sadness
|
| 3255 |
+
anger,disgust,sadness
|
| 3256 |
+
anticipation,joy,optimism
|
| 3257 |
+
anger,disgust,fear
|
| 3258 |
+
joy,love,optimism
|
| 3259 |
+
joy,love,optimism
|
evaluation/dummy_predictions/tweet-hate.txt
ADDED
|
@@ -0,0 +1,1433 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
hate_race
|
| 2 |
+
not_hate
|
| 3 |
+
not_hate
|
| 4 |
+
not_hate
|
| 5 |
+
not_hate
|
| 6 |
+
hate_race
|
| 7 |
+
not_hate
|
| 8 |
+
hate_race
|
| 9 |
+
hate_gender
|
| 10 |
+
not_hate
|
| 11 |
+
not_hate
|
| 12 |
+
not_hate
|
| 13 |
+
not_hate
|
| 14 |
+
not_hate
|
| 15 |
+
not_hate
|
| 16 |
+
not_hate
|
| 17 |
+
hate_race
|
| 18 |
+
not_hate
|
| 19 |
+
not_hate
|
| 20 |
+
not_hate
|
| 21 |
+
hate_gender
|
| 22 |
+
not_hate
|
| 23 |
+
hate_race
|
| 24 |
+
hate_race
|
| 25 |
+
not_hate
|
| 26 |
+
not_hate
|
| 27 |
+
not_hate
|
| 28 |
+
hate_religion
|
| 29 |
+
not_hate
|
| 30 |
+
hate_race
|
| 31 |
+
not_hate
|
| 32 |
+
not_hate
|
| 33 |
+
not_hate
|
| 34 |
+
hate_sexuality
|
| 35 |
+
not_hate
|
| 36 |
+
hate_origin
|
| 37 |
+
not_hate
|
| 38 |
+
hate_gender
|
| 39 |
+
not_hate
|
| 40 |
+
not_hate
|
| 41 |
+
not_hate
|
| 42 |
+
not_hate
|
| 43 |
+
not_hate
|
| 44 |
+
not_hate
|
| 45 |
+
not_hate
|
| 46 |
+
hate_religion
|
| 47 |
+
hate_gender
|
| 48 |
+
not_hate
|
| 49 |
+
not_hate
|
| 50 |
+
not_hate
|
| 51 |
+
hate_sexuality
|
| 52 |
+
not_hate
|
| 53 |
+
not_hate
|
| 54 |
+
not_hate
|
| 55 |
+
not_hate
|
| 56 |
+
not_hate
|
| 57 |
+
not_hate
|
| 58 |
+
not_hate
|
| 59 |
+
hate_race
|
| 60 |
+
not_hate
|
| 61 |
+
not_hate
|
| 62 |
+
hate_sexuality
|
| 63 |
+
hate_gender
|
| 64 |
+
hate_gender
|
| 65 |
+
hate_gender
|
| 66 |
+
not_hate
|
| 67 |
+
hate_gender
|
| 68 |
+
not_hate
|
| 69 |
+
not_hate
|
| 70 |
+
hate_gender
|
| 71 |
+
not_hate
|
| 72 |
+
hate_race
|
| 73 |
+
hate_gender
|
| 74 |
+
not_hate
|
| 75 |
+
not_hate
|
| 76 |
+
hate_origin
|
| 77 |
+
not_hate
|
| 78 |
+
hate_gender
|
| 79 |
+
hate_gender
|
| 80 |
+
hate_gender
|
| 81 |
+
not_hate
|
| 82 |
+
not_hate
|
| 83 |
+
not_hate
|
| 84 |
+
not_hate
|
| 85 |
+
not_hate
|
| 86 |
+
not_hate
|
| 87 |
+
not_hate
|
| 88 |
+
not_hate
|
| 89 |
+
not_hate
|
| 90 |
+
hate_religion
|
| 91 |
+
not_hate
|
| 92 |
+
hate_gender
|
| 93 |
+
not_hate
|
| 94 |
+
not_hate
|
| 95 |
+
hate_gender
|
| 96 |
+
not_hate
|
| 97 |
+
not_hate
|
| 98 |
+
not_hate
|
| 99 |
+
not_hate
|
| 100 |
+
hate_race
|
| 101 |
+
not_hate
|
| 102 |
+
not_hate
|
| 103 |
+
not_hate
|
| 104 |
+
hate_gender
|
| 105 |
+
not_hate
|
| 106 |
+
not_hate
|
| 107 |
+
hate_origin
|
| 108 |
+
hate_gender
|
| 109 |
+
not_hate
|
| 110 |
+
hate_race
|
| 111 |
+
not_hate
|
| 112 |
+
not_hate
|
| 113 |
+
not_hate
|
| 114 |
+
not_hate
|
| 115 |
+
not_hate
|
| 116 |
+
not_hate
|
| 117 |
+
not_hate
|
| 118 |
+
not_hate
|
| 119 |
+
not_hate
|
| 120 |
+
hate_gender
|
| 121 |
+
not_hate
|
| 122 |
+
not_hate
|
| 123 |
+
not_hate
|
| 124 |
+
hate_religion
|
| 125 |
+
hate_race
|
| 126 |
+
hate_origin
|
| 127 |
+
not_hate
|
| 128 |
+
hate_sexuality
|
| 129 |
+
not_hate
|
| 130 |
+
not_hate
|
| 131 |
+
hate_gender
|
| 132 |
+
not_hate
|
| 133 |
+
not_hate
|
| 134 |
+
hate_religion
|
| 135 |
+
not_hate
|
| 136 |
+
not_hate
|
| 137 |
+
not_hate
|
| 138 |
+
not_hate
|
| 139 |
+
hate_religion
|
| 140 |
+
hate_gender
|
| 141 |
+
not_hate
|
| 142 |
+
not_hate
|
| 143 |
+
not_hate
|
| 144 |
+
not_hate
|
| 145 |
+
not_hate
|
| 146 |
+
not_hate
|
| 147 |
+
hate_gender
|
| 148 |
+
not_hate
|
| 149 |
+
hate_gender
|
| 150 |
+
not_hate
|
| 151 |
+
not_hate
|
| 152 |
+
not_hate
|
| 153 |
+
not_hate
|
| 154 |
+
hate_gender
|
| 155 |
+
not_hate
|
| 156 |
+
hate_religion
|
| 157 |
+
not_hate
|
| 158 |
+
hate_gender
|
| 159 |
+
not_hate
|
| 160 |
+
not_hate
|
| 161 |
+
not_hate
|
| 162 |
+
not_hate
|
| 163 |
+
not_hate
|
| 164 |
+
not_hate
|
| 165 |
+
not_hate
|
| 166 |
+
not_hate
|
| 167 |
+
hate_gender
|
| 168 |
+
not_hate
|
| 169 |
+
hate_gender
|
| 170 |
+
not_hate
|
| 171 |
+
not_hate
|
| 172 |
+
not_hate
|
| 173 |
+
hate_race
|
| 174 |
+
not_hate
|
| 175 |
+
not_hate
|
| 176 |
+
not_hate
|
| 177 |
+
hate_race
|
| 178 |
+
not_hate
|
| 179 |
+
not_hate
|
| 180 |
+
not_hate
|
| 181 |
+
not_hate
|
| 182 |
+
hate_race
|
| 183 |
+
not_hate
|
| 184 |
+
not_hate
|
| 185 |
+
not_hate
|
| 186 |
+
hate_religion
|
| 187 |
+
not_hate
|
| 188 |
+
not_hate
|
| 189 |
+
not_hate
|
| 190 |
+
not_hate
|
| 191 |
+
not_hate
|
| 192 |
+
hate_gender
|
| 193 |
+
hate_gender
|
| 194 |
+
not_hate
|
| 195 |
+
not_hate
|
| 196 |
+
not_hate
|
| 197 |
+
hate_gender
|
| 198 |
+
hate_race
|
| 199 |
+
not_hate
|
| 200 |
+
not_hate
|
| 201 |
+
not_hate
|
| 202 |
+
hate_sexuality
|
| 203 |
+
hate_gender
|
| 204 |
+
not_hate
|
| 205 |
+
hate_religion
|
| 206 |
+
hate_gender
|
| 207 |
+
not_hate
|
| 208 |
+
not_hate
|
| 209 |
+
not_hate
|
| 210 |
+
not_hate
|
| 211 |
+
not_hate
|
| 212 |
+
not_hate
|
| 213 |
+
hate_gender
|
| 214 |
+
hate_gender
|
| 215 |
+
hate_gender
|
| 216 |
+
not_hate
|
| 217 |
+
not_hate
|
| 218 |
+
hate_origin
|
| 219 |
+
not_hate
|
| 220 |
+
not_hate
|
| 221 |
+
not_hate
|
| 222 |
+
not_hate
|
| 223 |
+
not_hate
|
| 224 |
+
not_hate
|
| 225 |
+
not_hate
|
| 226 |
+
not_hate
|
| 227 |
+
not_hate
|
| 228 |
+
not_hate
|
| 229 |
+
hate_race
|
| 230 |
+
not_hate
|
| 231 |
+
not_hate
|
| 232 |
+
not_hate
|
| 233 |
+
not_hate
|
| 234 |
+
hate_sexuality
|
| 235 |
+
hate_race
|
| 236 |
+
not_hate
|
| 237 |
+
not_hate
|
| 238 |
+
not_hate
|
| 239 |
+
hate_race
|
| 240 |
+
not_hate
|
| 241 |
+
not_hate
|
| 242 |
+
not_hate
|
| 243 |
+
hate_gender
|
| 244 |
+
not_hate
|
| 245 |
+
not_hate
|
| 246 |
+
hate_origin
|
| 247 |
+
not_hate
|
| 248 |
+
not_hate
|
| 249 |
+
not_hate
|
| 250 |
+
not_hate
|
| 251 |
+
hate_origin
|
| 252 |
+
hate_race
|
| 253 |
+
not_hate
|
| 254 |
+
hate_race
|
| 255 |
+
not_hate
|
| 256 |
+
hate_gender
|
| 257 |
+
not_hate
|
| 258 |
+
not_hate
|
| 259 |
+
not_hate
|
| 260 |
+
hate_race
|
| 261 |
+
hate_gender
|
| 262 |
+
hate_race
|
| 263 |
+
not_hate
|
| 264 |
+
hate_gender
|
| 265 |
+
hate_origin
|
| 266 |
+
not_hate
|
| 267 |
+
not_hate
|
| 268 |
+
not_hate
|
| 269 |
+
not_hate
|
| 270 |
+
not_hate
|
| 271 |
+
not_hate
|
| 272 |
+
not_hate
|
| 273 |
+
hate_gender
|
| 274 |
+
not_hate
|
| 275 |
+
not_hate
|
| 276 |
+
not_hate
|
| 277 |
+
not_hate
|
| 278 |
+
not_hate
|
| 279 |
+
hate_gender
|
| 280 |
+
not_hate
|
| 281 |
+
not_hate
|
| 282 |
+
not_hate
|
| 283 |
+
not_hate
|
| 284 |
+
not_hate
|
| 285 |
+
hate_origin
|
| 286 |
+
not_hate
|
| 287 |
+
hate_race
|
| 288 |
+
hate_sexuality
|
| 289 |
+
not_hate
|
| 290 |
+
not_hate
|
| 291 |
+
not_hate
|
| 292 |
+
not_hate
|
| 293 |
+
not_hate
|
| 294 |
+
not_hate
|
| 295 |
+
not_hate
|
| 296 |
+
not_hate
|
| 297 |
+
hate_gender
|
| 298 |
+
not_hate
|
| 299 |
+
not_hate
|
| 300 |
+
not_hate
|
| 301 |
+
hate_race
|
| 302 |
+
not_hate
|
| 303 |
+
not_hate
|
| 304 |
+
not_hate
|
| 305 |
+
not_hate
|
| 306 |
+
not_hate
|
| 307 |
+
hate_religion
|
| 308 |
+
not_hate
|
| 309 |
+
hate_race
|
| 310 |
+
not_hate
|
| 311 |
+
hate_gender
|
| 312 |
+
not_hate
|
| 313 |
+
not_hate
|
| 314 |
+
not_hate
|
| 315 |
+
not_hate
|
| 316 |
+
not_hate
|
| 317 |
+
hate_race
|
| 318 |
+
not_hate
|
| 319 |
+
hate_race
|
| 320 |
+
hate_origin
|
| 321 |
+
hate_gender
|
| 322 |
+
not_hate
|
| 323 |
+
not_hate
|
| 324 |
+
not_hate
|
| 325 |
+
not_hate
|
| 326 |
+
hate_race
|
| 327 |
+
hate_race
|
| 328 |
+
not_hate
|
| 329 |
+
hate_race
|
| 330 |
+
not_hate
|
| 331 |
+
not_hate
|
| 332 |
+
not_hate
|
| 333 |
+
not_hate
|
| 334 |
+
not_hate
|
| 335 |
+
not_hate
|
| 336 |
+
not_hate
|
| 337 |
+
not_hate
|
| 338 |
+
not_hate
|
| 339 |
+
hate_gender
|
| 340 |
+
not_hate
|
| 341 |
+
hate_sexuality
|
| 342 |
+
hate_sexuality
|
| 343 |
+
not_hate
|
| 344 |
+
not_hate
|
| 345 |
+
not_hate
|
| 346 |
+
hate_origin
|
| 347 |
+
not_hate
|
| 348 |
+
not_hate
|
| 349 |
+
not_hate
|
| 350 |
+
hate_race
|
| 351 |
+
hate_religion
|
| 352 |
+
not_hate
|
| 353 |
+
not_hate
|
| 354 |
+
not_hate
|
| 355 |
+
not_hate
|
| 356 |
+
not_hate
|
| 357 |
+
not_hate
|
| 358 |
+
not_hate
|
| 359 |
+
not_hate
|
| 360 |
+
not_hate
|
| 361 |
+
not_hate
|
| 362 |
+
hate_gender
|
| 363 |
+
not_hate
|
| 364 |
+
hate_gender
|
| 365 |
+
hate_gender
|
| 366 |
+
not_hate
|
| 367 |
+
hate_religion
|
| 368 |
+
not_hate
|
| 369 |
+
not_hate
|
| 370 |
+
not_hate
|
| 371 |
+
hate_gender
|
| 372 |
+
not_hate
|
| 373 |
+
not_hate
|
| 374 |
+
hate_gender
|
| 375 |
+
hate_sexuality
|
| 376 |
+
not_hate
|
| 377 |
+
hate_race
|
| 378 |
+
not_hate
|
| 379 |
+
not_hate
|
| 380 |
+
not_hate
|
| 381 |
+
not_hate
|
| 382 |
+
hate_gender
|
| 383 |
+
not_hate
|
| 384 |
+
not_hate
|
| 385 |
+
not_hate
|
| 386 |
+
not_hate
|
| 387 |
+
not_hate
|
| 388 |
+
not_hate
|
| 389 |
+
not_hate
|
| 390 |
+
not_hate
|
| 391 |
+
not_hate
|
| 392 |
+
hate_gender
|
| 393 |
+
hate_origin
|
| 394 |
+
not_hate
|
| 395 |
+
hate_gender
|
| 396 |
+
not_hate
|
| 397 |
+
not_hate
|
| 398 |
+
not_hate
|
| 399 |
+
hate_gender
|
| 400 |
+
not_hate
|
| 401 |
+
not_hate
|
| 402 |
+
not_hate
|
| 403 |
+
not_hate
|
| 404 |
+
not_hate
|
| 405 |
+
hate_gender
|
| 406 |
+
not_hate
|
| 407 |
+
hate_gender
|
| 408 |
+
not_hate
|
| 409 |
+
hate_race
|
| 410 |
+
hate_religion
|
| 411 |
+
hate_race
|
| 412 |
+
not_hate
|
| 413 |
+
hate_origin
|
| 414 |
+
not_hate
|
| 415 |
+
not_hate
|
| 416 |
+
not_hate
|
| 417 |
+
not_hate
|
| 418 |
+
not_hate
|
| 419 |
+
hate_gender
|
| 420 |
+
not_hate
|
| 421 |
+
hate_gender
|
| 422 |
+
not_hate
|
| 423 |
+
not_hate
|
| 424 |
+
not_hate
|
| 425 |
+
not_hate
|
| 426 |
+
not_hate
|
| 427 |
+
not_hate
|
| 428 |
+
not_hate
|
| 429 |
+
not_hate
|
| 430 |
+
not_hate
|
| 431 |
+
not_hate
|
| 432 |
+
not_hate
|
| 433 |
+
not_hate
|
| 434 |
+
not_hate
|
| 435 |
+
not_hate
|
| 436 |
+
not_hate
|
| 437 |
+
not_hate
|
| 438 |
+
hate_race
|
| 439 |
+
not_hate
|
| 440 |
+
hate_gender
|
| 441 |
+
not_hate
|
| 442 |
+
not_hate
|
| 443 |
+
not_hate
|
| 444 |
+
not_hate
|
| 445 |
+
not_hate
|
| 446 |
+
not_hate
|
| 447 |
+
not_hate
|
| 448 |
+
hate_race
|
| 449 |
+
not_hate
|
| 450 |
+
not_hate
|
| 451 |
+
hate_gender
|
| 452 |
+
hate_race
|
| 453 |
+
not_hate
|
| 454 |
+
not_hate
|
| 455 |
+
not_hate
|
| 456 |
+
not_hate
|
| 457 |
+
hate_race
|
| 458 |
+
not_hate
|
| 459 |
+
hate_origin
|
| 460 |
+
not_hate
|
| 461 |
+
not_hate
|
| 462 |
+
not_hate
|
| 463 |
+
not_hate
|
| 464 |
+
hate_gender
|
| 465 |
+
hate_gender
|
| 466 |
+
hate_religion
|
| 467 |
+
not_hate
|
| 468 |
+
hate_origin
|
| 469 |
+
not_hate
|
| 470 |
+
not_hate
|
| 471 |
+
not_hate
|
| 472 |
+
not_hate
|
| 473 |
+
not_hate
|
| 474 |
+
not_hate
|
| 475 |
+
not_hate
|
| 476 |
+
not_hate
|
| 477 |
+
not_hate
|
| 478 |
+
not_hate
|
| 479 |
+
hate_gender
|
| 480 |
+
not_hate
|
| 481 |
+
hate_race
|
| 482 |
+
not_hate
|
| 483 |
+
not_hate
|
| 484 |
+
hate_race
|
| 485 |
+
hate_gender
|
| 486 |
+
hate_gender
|
| 487 |
+
hate_gender
|
| 488 |
+
not_hate
|
| 489 |
+
hate_gender
|
| 490 |
+
hate_sexuality
|
| 491 |
+
not_hate
|
| 492 |
+
hate_race
|
| 493 |
+
not_hate
|
| 494 |
+
hate_gender
|
| 495 |
+
not_hate
|
| 496 |
+
hate_sexuality
|
| 497 |
+
not_hate
|
| 498 |
+
not_hate
|
| 499 |
+
not_hate
|
| 500 |
+
hate_race
|
| 501 |
+
hate_race
|
| 502 |
+
not_hate
|
| 503 |
+
not_hate
|
| 504 |
+
hate_race
|
| 505 |
+
hate_sexuality
|
| 506 |
+
not_hate
|
| 507 |
+
not_hate
|
| 508 |
+
not_hate
|
| 509 |
+
not_hate
|
| 510 |
+
hate_gender
|
| 511 |
+
not_hate
|
| 512 |
+
not_hate
|
| 513 |
+
not_hate
|
| 514 |
+
hate_race
|
| 515 |
+
not_hate
|
| 516 |
+
not_hate
|
| 517 |
+
not_hate
|
| 518 |
+
not_hate
|
| 519 |
+
not_hate
|
| 520 |
+
not_hate
|
| 521 |
+
not_hate
|
| 522 |
+
not_hate
|
| 523 |
+
not_hate
|
| 524 |
+
not_hate
|
| 525 |
+
not_hate
|
| 526 |
+
not_hate
|
| 527 |
+
hate_sexuality
|
| 528 |
+
hate_gender
|
| 529 |
+
not_hate
|
| 530 |
+
not_hate
|
| 531 |
+
hate_sexuality
|
| 532 |
+
not_hate
|
| 533 |
+
hate_gender
|
| 534 |
+
hate_gender
|
| 535 |
+
not_hate
|
| 536 |
+
hate_race
|
| 537 |
+
not_hate
|
| 538 |
+
not_hate
|
| 539 |
+
hate_gender
|
| 540 |
+
not_hate
|
| 541 |
+
not_hate
|
| 542 |
+
not_hate
|
| 543 |
+
not_hate
|
| 544 |
+
hate_gender
|
| 545 |
+
not_hate
|
| 546 |
+
hate_gender
|
| 547 |
+
not_hate
|
| 548 |
+
not_hate
|
| 549 |
+
hate_gender
|
| 550 |
+
not_hate
|
| 551 |
+
not_hate
|
| 552 |
+
hate_sexuality
|
| 553 |
+
not_hate
|
| 554 |
+
not_hate
|
| 555 |
+
not_hate
|
| 556 |
+
not_hate
|
| 557 |
+
not_hate
|
| 558 |
+
hate_gender
|
| 559 |
+
hate_gender
|
| 560 |
+
not_hate
|
| 561 |
+
not_hate
|
| 562 |
+
hate_race
|
| 563 |
+
hate_gender
|
| 564 |
+
hate_gender
|
| 565 |
+
hate_gender
|
| 566 |
+
not_hate
|
| 567 |
+
not_hate
|
| 568 |
+
not_hate
|
| 569 |
+
not_hate
|
| 570 |
+
hate_gender
|
| 571 |
+
hate_gender
|
| 572 |
+
hate_sexuality
|
| 573 |
+
not_hate
|
| 574 |
+
not_hate
|
| 575 |
+
hate_gender
|
| 576 |
+
not_hate
|
| 577 |
+
not_hate
|
| 578 |
+
not_hate
|
| 579 |
+
not_hate
|
| 580 |
+
not_hate
|
| 581 |
+
not_hate
|
| 582 |
+
not_hate
|
| 583 |
+
not_hate
|
| 584 |
+
not_hate
|
| 585 |
+
not_hate
|
| 586 |
+
not_hate
|
| 587 |
+
not_hate
|
| 588 |
+
not_hate
|
| 589 |
+
not_hate
|
| 590 |
+
hate_race
|
| 591 |
+
not_hate
|
| 592 |
+
not_hate
|
| 593 |
+
hate_religion
|
| 594 |
+
not_hate
|
| 595 |
+
not_hate
|
| 596 |
+
hate_gender
|
| 597 |
+
hate_sexuality
|
| 598 |
+
hate_race
|
| 599 |
+
hate_gender
|
| 600 |
+
not_hate
|
| 601 |
+
not_hate
|
| 602 |
+
not_hate
|
| 603 |
+
not_hate
|
| 604 |
+
hate_origin
|
| 605 |
+
hate_gender
|
| 606 |
+
hate_religion
|
| 607 |
+
hate_gender
|
| 608 |
+
not_hate
|
| 609 |
+
not_hate
|
| 610 |
+
not_hate
|
| 611 |
+
not_hate
|
| 612 |
+
not_hate
|
| 613 |
+
hate_gender
|
| 614 |
+
not_hate
|
| 615 |
+
hate_gender
|
| 616 |
+
not_hate
|
| 617 |
+
hate_religion
|
| 618 |
+
not_hate
|
| 619 |
+
not_hate
|
| 620 |
+
not_hate
|
| 621 |
+
not_hate
|
| 622 |
+
hate_race
|
| 623 |
+
not_hate
|
| 624 |
+
hate_religion
|
| 625 |
+
hate_gender
|
| 626 |
+
not_hate
|
| 627 |
+
not_hate
|
| 628 |
+
hate_gender
|
| 629 |
+
hate_race
|
| 630 |
+
not_hate
|
| 631 |
+
not_hate
|
| 632 |
+
hate_gender
|
| 633 |
+
not_hate
|
| 634 |
+
not_hate
|
| 635 |
+
not_hate
|
| 636 |
+
not_hate
|
| 637 |
+
not_hate
|
| 638 |
+
not_hate
|
| 639 |
+
not_hate
|
| 640 |
+
hate_gender
|
| 641 |
+
not_hate
|
| 642 |
+
not_hate
|
| 643 |
+
not_hate
|
| 644 |
+
not_hate
|
| 645 |
+
not_hate
|
| 646 |
+
not_hate
|
| 647 |
+
not_hate
|
| 648 |
+
not_hate
|
| 649 |
+
not_hate
|
| 650 |
+
not_hate
|
| 651 |
+
not_hate
|
| 652 |
+
not_hate
|
| 653 |
+
not_hate
|
| 654 |
+
not_hate
|
| 655 |
+
not_hate
|
| 656 |
+
not_hate
|
| 657 |
+
hate_gender
|
| 658 |
+
hate_religion
|
| 659 |
+
hate_gender
|
| 660 |
+
not_hate
|
| 661 |
+
not_hate
|
| 662 |
+
not_hate
|
| 663 |
+
not_hate
|
| 664 |
+
not_hate
|
| 665 |
+
hate_gender
|
| 666 |
+
not_hate
|
| 667 |
+
not_hate
|
| 668 |
+
hate_race
|
| 669 |
+
hate_gender
|
| 670 |
+
not_hate
|
| 671 |
+
hate_gender
|
| 672 |
+
not_hate
|
| 673 |
+
hate_sexuality
|
| 674 |
+
not_hate
|
| 675 |
+
hate_gender
|
| 676 |
+
not_hate
|
| 677 |
+
hate_gender
|
| 678 |
+
hate_religion
|
| 679 |
+
hate_gender
|
| 680 |
+
not_hate
|
| 681 |
+
not_hate
|
| 682 |
+
not_hate
|
| 683 |
+
not_hate
|
| 684 |
+
hate_race
|
| 685 |
+
not_hate
|
| 686 |
+
hate_gender
|
| 687 |
+
not_hate
|
| 688 |
+
not_hate
|
| 689 |
+
not_hate
|
| 690 |
+
not_hate
|
| 691 |
+
not_hate
|
| 692 |
+
not_hate
|
| 693 |
+
hate_gender
|
| 694 |
+
not_hate
|
| 695 |
+
not_hate
|
| 696 |
+
hate_origin
|
| 697 |
+
not_hate
|
| 698 |
+
not_hate
|
| 699 |
+
hate_gender
|
| 700 |
+
not_hate
|
| 701 |
+
hate_race
|
| 702 |
+
hate_race
|
| 703 |
+
hate_sexuality
|
| 704 |
+
hate_gender
|
| 705 |
+
not_hate
|
| 706 |
+
not_hate
|
| 707 |
+
hate_race
|
| 708 |
+
hate_religion
|
| 709 |
+
hate_gender
|
| 710 |
+
not_hate
|
| 711 |
+
hate_gender
|
| 712 |
+
not_hate
|
| 713 |
+
hate_gender
|
| 714 |
+
not_hate
|
| 715 |
+
not_hate
|
| 716 |
+
not_hate
|
| 717 |
+
not_hate
|
| 718 |
+
hate_gender
|
| 719 |
+
hate_gender
|
| 720 |
+
not_hate
|
| 721 |
+
not_hate
|
| 722 |
+
not_hate
|
| 723 |
+
not_hate
|
| 724 |
+
not_hate
|
| 725 |
+
hate_gender
|
| 726 |
+
not_hate
|
| 727 |
+
not_hate
|
| 728 |
+
not_hate
|
| 729 |
+
hate_race
|
| 730 |
+
not_hate
|
| 731 |
+
hate_religion
|
| 732 |
+
not_hate
|
| 733 |
+
hate_gender
|
| 734 |
+
not_hate
|
| 735 |
+
not_hate
|
| 736 |
+
not_hate
|
| 737 |
+
not_hate
|
| 738 |
+
hate_race
|
| 739 |
+
hate_religion
|
| 740 |
+
not_hate
|
| 741 |
+
hate_gender
|
| 742 |
+
not_hate
|
| 743 |
+
not_hate
|
| 744 |
+
not_hate
|
| 745 |
+
hate_sexuality
|
| 746 |
+
hate_origin
|
| 747 |
+
not_hate
|
| 748 |
+
not_hate
|
| 749 |
+
not_hate
|
| 750 |
+
not_hate
|
| 751 |
+
not_hate
|
| 752 |
+
not_hate
|
| 753 |
+
not_hate
|
| 754 |
+
not_hate
|
| 755 |
+
not_hate
|
| 756 |
+
hate_gender
|
| 757 |
+
not_hate
|
| 758 |
+
not_hate
|
| 759 |
+
not_hate
|
| 760 |
+
hate_race
|
| 761 |
+
not_hate
|
| 762 |
+
hate_race
|
| 763 |
+
hate_origin
|
| 764 |
+
hate_race
|
| 765 |
+
not_hate
|
| 766 |
+
not_hate
|
| 767 |
+
hate_gender
|
| 768 |
+
not_hate
|
| 769 |
+
not_hate
|
| 770 |
+
not_hate
|
| 771 |
+
not_hate
|
| 772 |
+
hate_gender
|
| 773 |
+
hate_origin
|
| 774 |
+
hate_religion
|
| 775 |
+
not_hate
|
| 776 |
+
not_hate
|
| 777 |
+
not_hate
|
| 778 |
+
not_hate
|
| 779 |
+
not_hate
|
| 780 |
+
not_hate
|
| 781 |
+
not_hate
|
| 782 |
+
not_hate
|
| 783 |
+
not_hate
|
| 784 |
+
hate_race
|
| 785 |
+
not_hate
|
| 786 |
+
hate_gender
|
| 787 |
+
hate_gender
|
| 788 |
+
hate_religion
|
| 789 |
+
not_hate
|
| 790 |
+
not_hate
|
| 791 |
+
not_hate
|
| 792 |
+
hate_gender
|
| 793 |
+
not_hate
|
| 794 |
+
not_hate
|
| 795 |
+
not_hate
|
| 796 |
+
hate_race
|
| 797 |
+
not_hate
|
| 798 |
+
not_hate
|
| 799 |
+
hate_sexuality
|
| 800 |
+
not_hate
|
| 801 |
+
not_hate
|
| 802 |
+
hate_gender
|
| 803 |
+
not_hate
|
| 804 |
+
not_hate
|
| 805 |
+
not_hate
|
| 806 |
+
not_hate
|
| 807 |
+
not_hate
|
| 808 |
+
not_hate
|
| 809 |
+
not_hate
|
| 810 |
+
not_hate
|
| 811 |
+
not_hate
|
| 812 |
+
not_hate
|
| 813 |
+
not_hate
|
| 814 |
+
not_hate
|
| 815 |
+
not_hate
|
| 816 |
+
not_hate
|
| 817 |
+
hate_race
|
| 818 |
+
not_hate
|
| 819 |
+
hate_gender
|
| 820 |
+
not_hate
|
| 821 |
+
not_hate
|
| 822 |
+
hate_race
|
| 823 |
+
hate_religion
|
| 824 |
+
not_hate
|
| 825 |
+
hate_religion
|
| 826 |
+
not_hate
|
| 827 |
+
not_hate
|
| 828 |
+
hate_race
|
| 829 |
+
not_hate
|
| 830 |
+
not_hate
|
| 831 |
+
not_hate
|
| 832 |
+
not_hate
|
| 833 |
+
not_hate
|
| 834 |
+
not_hate
|
| 835 |
+
not_hate
|
| 836 |
+
hate_gender
|
| 837 |
+
not_hate
|
| 838 |
+
hate_race
|
| 839 |
+
not_hate
|
| 840 |
+
not_hate
|
| 841 |
+
not_hate
|
| 842 |
+
hate_origin
|
| 843 |
+
not_hate
|
| 844 |
+
not_hate
|
| 845 |
+
hate_gender
|
| 846 |
+
not_hate
|
| 847 |
+
not_hate
|
| 848 |
+
not_hate
|
| 849 |
+
not_hate
|
| 850 |
+
not_hate
|
| 851 |
+
not_hate
|
| 852 |
+
not_hate
|
| 853 |
+
not_hate
|
| 854 |
+
not_hate
|
| 855 |
+
not_hate
|
| 856 |
+
not_hate
|
| 857 |
+
not_hate
|
| 858 |
+
hate_religion
|
| 859 |
+
hate_gender
|
| 860 |
+
not_hate
|
| 861 |
+
hate_religion
|
| 862 |
+
not_hate
|
| 863 |
+
not_hate
|
| 864 |
+
not_hate
|
| 865 |
+
hate_gender
|
| 866 |
+
not_hate
|
| 867 |
+
hate_gender
|
| 868 |
+
not_hate
|
| 869 |
+
hate_race
|
| 870 |
+
not_hate
|
| 871 |
+
not_hate
|
| 872 |
+
hate_gender
|
| 873 |
+
not_hate
|
| 874 |
+
hate_race
|
| 875 |
+
not_hate
|
| 876 |
+
not_hate
|
| 877 |
+
not_hate
|
| 878 |
+
not_hate
|
| 879 |
+
hate_religion
|
| 880 |
+
hate_race
|
| 881 |
+
not_hate
|
| 882 |
+
not_hate
|
| 883 |
+
not_hate
|
| 884 |
+
not_hate
|
| 885 |
+
hate_race
|
| 886 |
+
hate_race
|
| 887 |
+
hate_gender
|
| 888 |
+
hate_race
|
| 889 |
+
not_hate
|
| 890 |
+
not_hate
|
| 891 |
+
not_hate
|
| 892 |
+
not_hate
|
| 893 |
+
hate_gender
|
| 894 |
+
not_hate
|
| 895 |
+
hate_gender
|
| 896 |
+
not_hate
|
| 897 |
+
not_hate
|
| 898 |
+
hate_religion
|
| 899 |
+
not_hate
|
| 900 |
+
not_hate
|
| 901 |
+
not_hate
|
| 902 |
+
not_hate
|
| 903 |
+
hate_gender
|
| 904 |
+
not_hate
|
| 905 |
+
hate_origin
|
| 906 |
+
hate_gender
|
| 907 |
+
hate_gender
|
| 908 |
+
hate_gender
|
| 909 |
+
hate_race
|
| 910 |
+
not_hate
|
| 911 |
+
not_hate
|
| 912 |
+
not_hate
|
| 913 |
+
hate_race
|
| 914 |
+
not_hate
|
| 915 |
+
not_hate
|
| 916 |
+
not_hate
|
| 917 |
+
hate_gender
|
| 918 |
+
not_hate
|
| 919 |
+
not_hate
|
| 920 |
+
not_hate
|
| 921 |
+
not_hate
|
| 922 |
+
hate_gender
|
| 923 |
+
hate_race
|
| 924 |
+
hate_race
|
| 925 |
+
not_hate
|
| 926 |
+
hate_race
|
| 927 |
+
not_hate
|
| 928 |
+
not_hate
|
| 929 |
+
hate_race
|
| 930 |
+
not_hate
|
| 931 |
+
not_hate
|
| 932 |
+
not_hate
|
| 933 |
+
not_hate
|
| 934 |
+
not_hate
|
| 935 |
+
not_hate
|
| 936 |
+
hate_sexuality
|
| 937 |
+
hate_sexuality
|
| 938 |
+
not_hate
|
| 939 |
+
not_hate
|
| 940 |
+
not_hate
|
| 941 |
+
hate_race
|
| 942 |
+
not_hate
|
| 943 |
+
hate_gender
|
| 944 |
+
hate_religion
|
| 945 |
+
not_hate
|
| 946 |
+
not_hate
|
| 947 |
+
not_hate
|
| 948 |
+
not_hate
|
| 949 |
+
not_hate
|
| 950 |
+
not_hate
|
| 951 |
+
not_hate
|
| 952 |
+
hate_religion
|
| 953 |
+
not_hate
|
| 954 |
+
not_hate
|
| 955 |
+
not_hate
|
| 956 |
+
not_hate
|
| 957 |
+
hate_gender
|
| 958 |
+
hate_sexuality
|
| 959 |
+
not_hate
|
| 960 |
+
not_hate
|
| 961 |
+
hate_race
|
| 962 |
+
not_hate
|
| 963 |
+
hate_religion
|
| 964 |
+
not_hate
|
| 965 |
+
not_hate
|
| 966 |
+
hate_origin
|
| 967 |
+
not_hate
|
| 968 |
+
not_hate
|
| 969 |
+
not_hate
|
| 970 |
+
not_hate
|
| 971 |
+
hate_gender
|
| 972 |
+
hate_gender
|
| 973 |
+
hate_gender
|
| 974 |
+
hate_origin
|
| 975 |
+
not_hate
|
| 976 |
+
not_hate
|
| 977 |
+
not_hate
|
| 978 |
+
not_hate
|
| 979 |
+
hate_gender
|
| 980 |
+
hate_gender
|
| 981 |
+
hate_gender
|
| 982 |
+
hate_origin
|
| 983 |
+
not_hate
|
| 984 |
+
not_hate
|
| 985 |
+
not_hate
|
| 986 |
+
hate_race
|
| 987 |
+
hate_race
|
| 988 |
+
hate_race
|
| 989 |
+
not_hate
|
| 990 |
+
hate_gender
|
| 991 |
+
hate_gender
|
| 992 |
+
hate_race
|
| 993 |
+
hate_religion
|
| 994 |
+
not_hate
|
| 995 |
+
not_hate
|
| 996 |
+
not_hate
|
| 997 |
+
not_hate
|
| 998 |
+
hate_gender
|
| 999 |
+
hate_sexuality
|
| 1000 |
+
not_hate
|
| 1001 |
+
hate_religion
|
| 1002 |
+
hate_sexuality
|
| 1003 |
+
not_hate
|
| 1004 |
+
hate_race
|
| 1005 |
+
not_hate
|
| 1006 |
+
not_hate
|
| 1007 |
+
not_hate
|
| 1008 |
+
not_hate
|
| 1009 |
+
not_hate
|
| 1010 |
+
not_hate
|
| 1011 |
+
not_hate
|
| 1012 |
+
hate_sexuality
|
| 1013 |
+
not_hate
|
| 1014 |
+
not_hate
|
| 1015 |
+
not_hate
|
| 1016 |
+
not_hate
|
| 1017 |
+
hate_race
|
| 1018 |
+
not_hate
|
| 1019 |
+
hate_race
|
| 1020 |
+
not_hate
|
| 1021 |
+
not_hate
|
| 1022 |
+
not_hate
|
| 1023 |
+
hate_race
|
| 1024 |
+
not_hate
|
| 1025 |
+
hate_race
|
| 1026 |
+
not_hate
|
| 1027 |
+
not_hate
|
| 1028 |
+
hate_gender
|
| 1029 |
+
not_hate
|
| 1030 |
+
hate_gender
|
| 1031 |
+
not_hate
|
| 1032 |
+
not_hate
|
| 1033 |
+
not_hate
|
| 1034 |
+
hate_gender
|
| 1035 |
+
not_hate
|
| 1036 |
+
not_hate
|
| 1037 |
+
hate_gender
|
| 1038 |
+
hate_race
|
| 1039 |
+
hate_sexuality
|
| 1040 |
+
not_hate
|
| 1041 |
+
not_hate
|
| 1042 |
+
not_hate
|
| 1043 |
+
hate_race
|
| 1044 |
+
not_hate
|
| 1045 |
+
hate_sexuality
|
| 1046 |
+
hate_religion
|
| 1047 |
+
not_hate
|
| 1048 |
+
not_hate
|
| 1049 |
+
hate_gender
|
| 1050 |
+
not_hate
|
| 1051 |
+
not_hate
|
| 1052 |
+
not_hate
|
| 1053 |
+
not_hate
|
| 1054 |
+
not_hate
|
| 1055 |
+
not_hate
|
| 1056 |
+
not_hate
|
| 1057 |
+
not_hate
|
| 1058 |
+
not_hate
|
| 1059 |
+
not_hate
|
| 1060 |
+
hate_origin
|
| 1061 |
+
not_hate
|
| 1062 |
+
hate_race
|
| 1063 |
+
not_hate
|
| 1064 |
+
not_hate
|
| 1065 |
+
not_hate
|
| 1066 |
+
not_hate
|
| 1067 |
+
not_hate
|
| 1068 |
+
hate_race
|
| 1069 |
+
hate_race
|
| 1070 |
+
not_hate
|
| 1071 |
+
hate_origin
|
| 1072 |
+
hate_race
|
| 1073 |
+
not_hate
|
| 1074 |
+
not_hate
|
| 1075 |
+
not_hate
|
| 1076 |
+
not_hate
|
| 1077 |
+
not_hate
|
| 1078 |
+
not_hate
|
| 1079 |
+
not_hate
|
| 1080 |
+
not_hate
|
| 1081 |
+
hate_race
|
| 1082 |
+
not_hate
|
| 1083 |
+
hate_gender
|
| 1084 |
+
not_hate
|
| 1085 |
+
not_hate
|
| 1086 |
+
not_hate
|
| 1087 |
+
not_hate
|
| 1088 |
+
not_hate
|
| 1089 |
+
not_hate
|
| 1090 |
+
not_hate
|
| 1091 |
+
hate_origin
|
| 1092 |
+
hate_religion
|
| 1093 |
+
hate_sexuality
|
| 1094 |
+
hate_sexuality
|
| 1095 |
+
not_hate
|
| 1096 |
+
not_hate
|
| 1097 |
+
hate_race
|
| 1098 |
+
hate_gender
|
| 1099 |
+
not_hate
|
| 1100 |
+
hate_sexuality
|
| 1101 |
+
not_hate
|
| 1102 |
+
not_hate
|
| 1103 |
+
not_hate
|
| 1104 |
+
not_hate
|
| 1105 |
+
not_hate
|
| 1106 |
+
not_hate
|
| 1107 |
+
not_hate
|
| 1108 |
+
not_hate
|
| 1109 |
+
not_hate
|
| 1110 |
+
not_hate
|
| 1111 |
+
not_hate
|
| 1112 |
+
hate_sexuality
|
| 1113 |
+
not_hate
|
| 1114 |
+
not_hate
|
| 1115 |
+
not_hate
|
| 1116 |
+
not_hate
|
| 1117 |
+
not_hate
|
| 1118 |
+
not_hate
|
| 1119 |
+
not_hate
|
| 1120 |
+
not_hate
|
| 1121 |
+
hate_religion
|
| 1122 |
+
hate_gender
|
| 1123 |
+
hate_religion
|
| 1124 |
+
not_hate
|
| 1125 |
+
hate_race
|
| 1126 |
+
not_hate
|
| 1127 |
+
hate_race
|
| 1128 |
+
not_hate
|
| 1129 |
+
hate_race
|
| 1130 |
+
hate_gender
|
| 1131 |
+
not_hate
|
| 1132 |
+
not_hate
|
| 1133 |
+
not_hate
|
| 1134 |
+
not_hate
|
| 1135 |
+
not_hate
|
| 1136 |
+
not_hate
|
| 1137 |
+
not_hate
|
| 1138 |
+
not_hate
|
| 1139 |
+
not_hate
|
| 1140 |
+
hate_gender
|
| 1141 |
+
not_hate
|
| 1142 |
+
not_hate
|
| 1143 |
+
not_hate
|
| 1144 |
+
hate_gender
|
| 1145 |
+
not_hate
|
| 1146 |
+
not_hate
|
| 1147 |
+
not_hate
|
| 1148 |
+
not_hate
|
| 1149 |
+
hate_gender
|
| 1150 |
+
not_hate
|
| 1151 |
+
not_hate
|
| 1152 |
+
hate_race
|
| 1153 |
+
not_hate
|
| 1154 |
+
not_hate
|
| 1155 |
+
hate_gender
|
| 1156 |
+
hate_gender
|
| 1157 |
+
not_hate
|
| 1158 |
+
hate_race
|
| 1159 |
+
not_hate
|
| 1160 |
+
hate_gender
|
| 1161 |
+
not_hate
|
| 1162 |
+
not_hate
|
| 1163 |
+
not_hate
|
| 1164 |
+
not_hate
|
| 1165 |
+
not_hate
|
| 1166 |
+
hate_origin
|
| 1167 |
+
hate_gender
|
| 1168 |
+
hate_gender
|
| 1169 |
+
not_hate
|
| 1170 |
+
not_hate
|
| 1171 |
+
hate_religion
|
| 1172 |
+
hate_religion
|
| 1173 |
+
not_hate
|
| 1174 |
+
not_hate
|
| 1175 |
+
not_hate
|
| 1176 |
+
not_hate
|
| 1177 |
+
not_hate
|
| 1178 |
+
not_hate
|
| 1179 |
+
not_hate
|
| 1180 |
+
not_hate
|
| 1181 |
+
not_hate
|
| 1182 |
+
hate_religion
|
| 1183 |
+
not_hate
|
| 1184 |
+
hate_gender
|
| 1185 |
+
not_hate
|
| 1186 |
+
not_hate
|
| 1187 |
+
hate_gender
|
| 1188 |
+
not_hate
|
| 1189 |
+
hate_sexuality
|
| 1190 |
+
not_hate
|
| 1191 |
+
hate_sexuality
|
| 1192 |
+
not_hate
|
| 1193 |
+
hate_race
|
| 1194 |
+
hate_race
|
| 1195 |
+
not_hate
|
| 1196 |
+
not_hate
|
| 1197 |
+
hate_gender
|
| 1198 |
+
not_hate
|
| 1199 |
+
hate_race
|
| 1200 |
+
not_hate
|
| 1201 |
+
not_hate
|
| 1202 |
+
not_hate
|
| 1203 |
+
not_hate
|
| 1204 |
+
not_hate
|
| 1205 |
+
hate_race
|
| 1206 |
+
hate_gender
|
| 1207 |
+
not_hate
|
| 1208 |
+
hate_race
|
| 1209 |
+
hate_race
|
| 1210 |
+
not_hate
|
| 1211 |
+
not_hate
|
| 1212 |
+
not_hate
|
| 1213 |
+
not_hate
|
| 1214 |
+
not_hate
|
| 1215 |
+
hate_religion
|
| 1216 |
+
not_hate
|
| 1217 |
+
not_hate
|
| 1218 |
+
not_hate
|
| 1219 |
+
not_hate
|
| 1220 |
+
hate_race
|
| 1221 |
+
not_hate
|
| 1222 |
+
hate_race
|
| 1223 |
+
hate_race
|
| 1224 |
+
not_hate
|
| 1225 |
+
hate_race
|
| 1226 |
+
not_hate
|
| 1227 |
+
not_hate
|
| 1228 |
+
hate_origin
|
| 1229 |
+
hate_race
|
| 1230 |
+
hate_religion
|
| 1231 |
+
hate_gender
|
| 1232 |
+
hate_race
|
| 1233 |
+
hate_gender
|
| 1234 |
+
not_hate
|
| 1235 |
+
not_hate
|
| 1236 |
+
not_hate
|
| 1237 |
+
hate_race
|
| 1238 |
+
not_hate
|
| 1239 |
+
hate_sexuality
|
| 1240 |
+
not_hate
|
| 1241 |
+
not_hate
|
| 1242 |
+
not_hate
|
| 1243 |
+
not_hate
|
| 1244 |
+
not_hate
|
| 1245 |
+
not_hate
|
| 1246 |
+
not_hate
|
| 1247 |
+
not_hate
|
| 1248 |
+
hate_race
|
| 1249 |
+
hate_gender
|
| 1250 |
+
not_hate
|
| 1251 |
+
not_hate
|
| 1252 |
+
hate_gender
|
| 1253 |
+
not_hate
|
| 1254 |
+
not_hate
|
| 1255 |
+
not_hate
|
| 1256 |
+
not_hate
|
| 1257 |
+
not_hate
|
| 1258 |
+
hate_gender
|
| 1259 |
+
not_hate
|
| 1260 |
+
hate_gender
|
| 1261 |
+
not_hate
|
| 1262 |
+
not_hate
|
| 1263 |
+
not_hate
|
| 1264 |
+
not_hate
|
| 1265 |
+
hate_race
|
| 1266 |
+
hate_religion
|
| 1267 |
+
not_hate
|
| 1268 |
+
hate_race
|
| 1269 |
+
not_hate
|
| 1270 |
+
hate_origin
|
| 1271 |
+
not_hate
|
| 1272 |
+
not_hate
|
| 1273 |
+
not_hate
|
| 1274 |
+
not_hate
|
| 1275 |
+
not_hate
|
| 1276 |
+
not_hate
|
| 1277 |
+
not_hate
|
| 1278 |
+
hate_gender
|
| 1279 |
+
not_hate
|
| 1280 |
+
not_hate
|
| 1281 |
+
not_hate
|
| 1282 |
+
not_hate
|
| 1283 |
+
hate_race
|
| 1284 |
+
not_hate
|
| 1285 |
+
hate_gender
|
| 1286 |
+
not_hate
|
| 1287 |
+
hate_gender
|
| 1288 |
+
not_hate
|
| 1289 |
+
hate_origin
|
| 1290 |
+
not_hate
|
| 1291 |
+
not_hate
|
| 1292 |
+
not_hate
|
| 1293 |
+
not_hate
|
| 1294 |
+
not_hate
|
| 1295 |
+
not_hate
|
| 1296 |
+
hate_gender
|
| 1297 |
+
not_hate
|
| 1298 |
+
not_hate
|
| 1299 |
+
hate_gender
|
| 1300 |
+
hate_gender
|
| 1301 |
+
not_hate
|
| 1302 |
+
hate_race
|
| 1303 |
+
not_hate
|
| 1304 |
+
not_hate
|
| 1305 |
+
hate_gender
|
| 1306 |
+
not_hate
|
| 1307 |
+
not_hate
|
| 1308 |
+
not_hate
|
| 1309 |
+
not_hate
|
| 1310 |
+
not_hate
|
| 1311 |
+
hate_sexuality
|
| 1312 |
+
not_hate
|
| 1313 |
+
not_hate
|
| 1314 |
+
not_hate
|
| 1315 |
+
not_hate
|
| 1316 |
+
not_hate
|
| 1317 |
+
hate_race
|
| 1318 |
+
not_hate
|
| 1319 |
+
hate_race
|
| 1320 |
+
not_hate
|
| 1321 |
+
not_hate
|
| 1322 |
+
not_hate
|
| 1323 |
+
not_hate
|
| 1324 |
+
not_hate
|
| 1325 |
+
hate_origin
|
| 1326 |
+
not_hate
|
| 1327 |
+
not_hate
|
| 1328 |
+
hate_gender
|
| 1329 |
+
hate_race
|
| 1330 |
+
hate_race
|
| 1331 |
+
not_hate
|
| 1332 |
+
hate_gender
|
| 1333 |
+
not_hate
|
| 1334 |
+
hate_sexuality
|
| 1335 |
+
not_hate
|
| 1336 |
+
not_hate
|
| 1337 |
+
hate_gender
|
| 1338 |
+
not_hate
|
| 1339 |
+
not_hate
|
| 1340 |
+
not_hate
|
| 1341 |
+
not_hate
|
| 1342 |
+
not_hate
|
| 1343 |
+
not_hate
|
| 1344 |
+
hate_gender
|
| 1345 |
+
not_hate
|
| 1346 |
+
hate_race
|
| 1347 |
+
not_hate
|
| 1348 |
+
not_hate
|
| 1349 |
+
not_hate
|
| 1350 |
+
not_hate
|
| 1351 |
+
not_hate
|
| 1352 |
+
hate_gender
|
| 1353 |
+
not_hate
|
| 1354 |
+
not_hate
|
| 1355 |
+
not_hate
|
| 1356 |
+
not_hate
|
| 1357 |
+
not_hate
|
| 1358 |
+
hate_gender
|
| 1359 |
+
hate_sexuality
|
| 1360 |
+
hate_race
|
| 1361 |
+
hate_race
|
| 1362 |
+
not_hate
|
| 1363 |
+
not_hate
|
| 1364 |
+
not_hate
|
| 1365 |
+
not_hate
|
| 1366 |
+
not_hate
|
| 1367 |
+
not_hate
|
| 1368 |
+
not_hate
|
| 1369 |
+
hate_gender
|
| 1370 |
+
not_hate
|
| 1371 |
+
not_hate
|
| 1372 |
+
hate_sexuality
|
| 1373 |
+
hate_religion
|
| 1374 |
+
not_hate
|
| 1375 |
+
not_hate
|
| 1376 |
+
hate_gender
|
| 1377 |
+
hate_race
|
| 1378 |
+
not_hate
|
| 1379 |
+
not_hate
|
| 1380 |
+
not_hate
|
| 1381 |
+
hate_gender
|
| 1382 |
+
not_hate
|
| 1383 |
+
hate_race
|
| 1384 |
+
not_hate
|
| 1385 |
+
hate_race
|
| 1386 |
+
hate_gender
|
| 1387 |
+
not_hate
|
| 1388 |
+
not_hate
|
| 1389 |
+
not_hate
|
| 1390 |
+
not_hate
|
| 1391 |
+
not_hate
|
| 1392 |
+
not_hate
|
| 1393 |
+
not_hate
|
| 1394 |
+
not_hate
|
| 1395 |
+
not_hate
|
| 1396 |
+
not_hate
|
| 1397 |
+
hate_gender
|
| 1398 |
+
not_hate
|
| 1399 |
+
not_hate
|
| 1400 |
+
not_hate
|
| 1401 |
+
not_hate
|
| 1402 |
+
not_hate
|
| 1403 |
+
not_hate
|
| 1404 |
+
not_hate
|
| 1405 |
+
hate_gender
|
| 1406 |
+
not_hate
|
| 1407 |
+
not_hate
|
| 1408 |
+
not_hate
|
| 1409 |
+
not_hate
|
| 1410 |
+
not_hate
|
| 1411 |
+
not_hate
|
| 1412 |
+
not_hate
|
| 1413 |
+
hate_sexuality
|
| 1414 |
+
hate_gender
|
| 1415 |
+
not_hate
|
| 1416 |
+
hate_sexuality
|
| 1417 |
+
not_hate
|
| 1418 |
+
hate_sexuality
|
| 1419 |
+
not_hate
|
| 1420 |
+
not_hate
|
| 1421 |
+
hate_gender
|
| 1422 |
+
not_hate
|
| 1423 |
+
hate_gender
|
| 1424 |
+
not_hate
|
| 1425 |
+
not_hate
|
| 1426 |
+
not_hate
|
| 1427 |
+
not_hate
|
| 1428 |
+
hate_gender
|
| 1429 |
+
hate_race
|
| 1430 |
+
hate_gender
|
| 1431 |
+
hate_religion
|
| 1432 |
+
not_hate
|
| 1433 |
+
not_hate
|
evaluation/dummy_predictions/tweet-intimacy.txt
ADDED
|
@@ -0,0 +1,396 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2
|
| 2 |
+
2
|
| 3 |
+
2
|
| 4 |
+
3
|
| 5 |
+
1
|
| 6 |
+
1
|
| 7 |
+
3
|
| 8 |
+
2
|
| 9 |
+
2
|
| 10 |
+
1
|
| 11 |
+
1
|
| 12 |
+
2
|
| 13 |
+
1
|
| 14 |
+
2
|
| 15 |
+
3
|
| 16 |
+
1
|
| 17 |
+
2
|
| 18 |
+
2
|
| 19 |
+
3
|
| 20 |
+
2
|
| 21 |
+
3
|
| 22 |
+
2
|
| 23 |
+
1
|
| 24 |
+
2
|
| 25 |
+
2
|
| 26 |
+
2
|
| 27 |
+
1
|
| 28 |
+
2
|
| 29 |
+
2
|
| 30 |
+
2
|
| 31 |
+
2
|
| 32 |
+
2
|
| 33 |
+
2
|
| 34 |
+
2
|
| 35 |
+
2
|
| 36 |
+
3
|
| 37 |
+
2
|
| 38 |
+
3
|
| 39 |
+
1
|
| 40 |
+
2
|
| 41 |
+
1
|
| 42 |
+
1
|
| 43 |
+
2
|
| 44 |
+
1
|
| 45 |
+
1
|
| 46 |
+
2
|
| 47 |
+
2
|
| 48 |
+
2
|
| 49 |
+
2
|
| 50 |
+
3
|
| 51 |
+
1
|
| 52 |
+
2
|
| 53 |
+
1
|
| 54 |
+
2
|
| 55 |
+
2
|
| 56 |
+
3
|
| 57 |
+
2
|
| 58 |
+
2
|
| 59 |
+
2
|
| 60 |
+
1
|
| 61 |
+
2
|
| 62 |
+
1
|
| 63 |
+
2
|
| 64 |
+
1
|
| 65 |
+
3
|
| 66 |
+
2
|
| 67 |
+
3
|
| 68 |
+
2
|
| 69 |
+
1
|
| 70 |
+
2
|
| 71 |
+
3
|
| 72 |
+
2
|
| 73 |
+
1
|
| 74 |
+
3
|
| 75 |
+
2
|
| 76 |
+
3
|
| 77 |
+
2
|
| 78 |
+
2
|
| 79 |
+
1
|
| 80 |
+
1
|
| 81 |
+
3
|
| 82 |
+
2
|
| 83 |
+
2
|
| 84 |
+
2
|
| 85 |
+
2
|
| 86 |
+
3
|
| 87 |
+
2
|
| 88 |
+
1
|
| 89 |
+
2
|
| 90 |
+
1
|
| 91 |
+
2
|
| 92 |
+
2
|
| 93 |
+
1
|
| 94 |
+
2
|
| 95 |
+
1
|
| 96 |
+
2
|
| 97 |
+
1
|
| 98 |
+
1
|
| 99 |
+
2
|
| 100 |
+
2
|
| 101 |
+
1
|
| 102 |
+
2
|
| 103 |
+
1
|
| 104 |
+
2
|
| 105 |
+
2
|
| 106 |
+
2
|
| 107 |
+
2
|
| 108 |
+
3
|
| 109 |
+
2
|
| 110 |
+
2
|
| 111 |
+
1
|
| 112 |
+
2
|
| 113 |
+
1
|
| 114 |
+
2
|
| 115 |
+
3
|
| 116 |
+
3
|
| 117 |
+
2
|
| 118 |
+
1
|
| 119 |
+
1
|
| 120 |
+
2
|
| 121 |
+
3
|
| 122 |
+
2
|
| 123 |
+
2
|
| 124 |
+
2
|
| 125 |
+
2
|
| 126 |
+
2
|
| 127 |
+
2
|
| 128 |
+
1
|
| 129 |
+
1
|
| 130 |
+
2
|
| 131 |
+
2
|
| 132 |
+
3
|
| 133 |
+
2
|
| 134 |
+
2
|
| 135 |
+
3
|
| 136 |
+
3
|
| 137 |
+
2
|
| 138 |
+
2
|
| 139 |
+
1
|
| 140 |
+
2
|
| 141 |
+
2
|
| 142 |
+
2
|
| 143 |
+
2
|
| 144 |
+
1
|
| 145 |
+
2
|
| 146 |
+
1
|
| 147 |
+
1
|
| 148 |
+
2
|
| 149 |
+
2
|
| 150 |
+
2
|
| 151 |
+
1
|
| 152 |
+
2
|
| 153 |
+
2
|
| 154 |
+
2
|
| 155 |
+
1
|
| 156 |
+
2
|
| 157 |
+
1
|
| 158 |
+
1
|
| 159 |
+
2
|
| 160 |
+
2
|
| 161 |
+
2
|
| 162 |
+
2
|
| 163 |
+
1
|
| 164 |
+
2
|
| 165 |
+
1
|
| 166 |
+
2
|
| 167 |
+
1
|
| 168 |
+
2
|
| 169 |
+
2
|
| 170 |
+
2
|
| 171 |
+
2
|
| 172 |
+
2
|
| 173 |
+
1
|
| 174 |
+
1
|
| 175 |
+
2
|
| 176 |
+
2
|
| 177 |
+
2
|
| 178 |
+
2
|
| 179 |
+
3
|
| 180 |
+
2
|
| 181 |
+
3
|
| 182 |
+
2
|
| 183 |
+
1
|
| 184 |
+
1
|
| 185 |
+
2
|
| 186 |
+
2
|
| 187 |
+
3
|
| 188 |
+
2
|
| 189 |
+
2
|
| 190 |
+
2
|
| 191 |
+
1
|
| 192 |
+
3
|
| 193 |
+
1
|
| 194 |
+
2
|
| 195 |
+
1
|
| 196 |
+
3
|
| 197 |
+
1
|
| 198 |
+
2
|
| 199 |
+
1
|
| 200 |
+
2
|
| 201 |
+
1
|
| 202 |
+
2
|
| 203 |
+
1
|
| 204 |
+
1
|
| 205 |
+
2
|
| 206 |
+
2
|
| 207 |
+
2
|
| 208 |
+
2
|
| 209 |
+
1
|
| 210 |
+
2
|
| 211 |
+
2
|
| 212 |
+
2
|
| 213 |
+
2
|
| 214 |
+
2
|
| 215 |
+
1
|
| 216 |
+
2
|
| 217 |
+
1
|
| 218 |
+
1
|
| 219 |
+
2
|
| 220 |
+
2
|
| 221 |
+
2
|
| 222 |
+
2
|
| 223 |
+
2
|
| 224 |
+
2
|
| 225 |
+
2
|
| 226 |
+
2
|
| 227 |
+
2
|
| 228 |
+
2
|
| 229 |
+
2
|
| 230 |
+
2
|
| 231 |
+
3
|
| 232 |
+
2
|
| 233 |
+
1
|
| 234 |
+
1
|
| 235 |
+
1
|
| 236 |
+
2
|
| 237 |
+
1
|
| 238 |
+
2
|
| 239 |
+
2
|
| 240 |
+
2
|
| 241 |
+
2
|
| 242 |
+
2
|
| 243 |
+
1
|
| 244 |
+
2
|
| 245 |
+
2
|
| 246 |
+
3
|
| 247 |
+
1
|
| 248 |
+
1
|
| 249 |
+
1
|
| 250 |
+
3
|
| 251 |
+
1
|
| 252 |
+
2
|
| 253 |
+
3
|
| 254 |
+
2
|
| 255 |
+
1
|
| 256 |
+
2
|
| 257 |
+
2
|
| 258 |
+
1
|
| 259 |
+
1
|
| 260 |
+
1
|
| 261 |
+
3
|
| 262 |
+
2
|
| 263 |
+
3
|
| 264 |
+
2
|
| 265 |
+
2
|
| 266 |
+
2
|
| 267 |
+
1
|
| 268 |
+
2
|
| 269 |
+
2
|
| 270 |
+
2
|
| 271 |
+
1
|
| 272 |
+
1
|
| 273 |
+
2
|
| 274 |
+
2
|
| 275 |
+
1
|
| 276 |
+
1
|
| 277 |
+
1
|
| 278 |
+
1
|
| 279 |
+
2
|
| 280 |
+
2
|
| 281 |
+
2
|
| 282 |
+
3
|
| 283 |
+
2
|
| 284 |
+
2
|
| 285 |
+
1
|
| 286 |
+
2
|
| 287 |
+
1
|
| 288 |
+
1
|
| 289 |
+
1
|
| 290 |
+
1
|
| 291 |
+
2
|
| 292 |
+
3
|
| 293 |
+
1
|
| 294 |
+
3
|
| 295 |
+
3
|
| 296 |
+
3
|
| 297 |
+
3
|
| 298 |
+
1
|
| 299 |
+
2
|
| 300 |
+
3
|
| 301 |
+
1
|
| 302 |
+
1
|
| 303 |
+
2
|
| 304 |
+
2
|
| 305 |
+
2
|
| 306 |
+
2
|
| 307 |
+
1
|
| 308 |
+
3
|
| 309 |
+
1
|
| 310 |
+
3
|
| 311 |
+
2
|
| 312 |
+
2
|
| 313 |
+
1
|
| 314 |
+
2
|
| 315 |
+
1
|
| 316 |
+
2
|
| 317 |
+
2
|
| 318 |
+
3
|
| 319 |
+
1
|
| 320 |
+
2
|
| 321 |
+
3
|
| 322 |
+
1
|
| 323 |
+
2
|
| 324 |
+
2
|
| 325 |
+
1
|
| 326 |
+
2
|
| 327 |
+
2
|
| 328 |
+
1
|
| 329 |
+
1
|
| 330 |
+
1
|
| 331 |
+
3
|
| 332 |
+
2
|
| 333 |
+
2
|
| 334 |
+
2
|
| 335 |
+
2
|
| 336 |
+
3
|
| 337 |
+
1
|
| 338 |
+
3
|
| 339 |
+
1
|
| 340 |
+
1
|
| 341 |
+
1
|
| 342 |
+
2
|
| 343 |
+
2
|
| 344 |
+
3
|
| 345 |
+
2
|
| 346 |
+
1
|
| 347 |
+
2
|
| 348 |
+
2
|
| 349 |
+
1
|
| 350 |
+
2
|
| 351 |
+
3
|
| 352 |
+
1
|
| 353 |
+
2
|
| 354 |
+
2
|
| 355 |
+
2
|
| 356 |
+
2
|
| 357 |
+
1
|
| 358 |
+
2
|
| 359 |
+
3
|
| 360 |
+
2
|
| 361 |
+
2
|
| 362 |
+
1
|
| 363 |
+
2
|
| 364 |
+
2
|
| 365 |
+
1
|
| 366 |
+
2
|
| 367 |
+
2
|
| 368 |
+
2
|
| 369 |
+
2
|
| 370 |
+
1
|
| 371 |
+
3
|
| 372 |
+
2
|
| 373 |
+
2
|
| 374 |
+
2
|
| 375 |
+
1
|
| 376 |
+
2
|
| 377 |
+
1
|
| 378 |
+
2
|
| 379 |
+
1
|
| 380 |
+
2
|
| 381 |
+
1
|
| 382 |
+
2
|
| 383 |
+
1
|
| 384 |
+
2
|
| 385 |
+
1
|
| 386 |
+
2
|
| 387 |
+
2
|
| 388 |
+
1
|
| 389 |
+
3
|
| 390 |
+
2
|
| 391 |
+
2
|
| 392 |
+
3
|
| 393 |
+
2
|
| 394 |
+
1
|
| 395 |
+
2
|
| 396 |
+
2
|
evaluation/dummy_predictions/tweet-ner7.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
evaluation/dummy_predictions/tweet-nerd.txt
ADDED
|
@@ -0,0 +1,407 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
yes
|
| 2 |
+
yes
|
| 3 |
+
yes
|
| 4 |
+
no
|
| 5 |
+
yes
|
| 6 |
+
yes
|
| 7 |
+
yes
|
| 8 |
+
no
|
| 9 |
+
yes
|
| 10 |
+
yes
|
| 11 |
+
yes
|
| 12 |
+
no
|
| 13 |
+
yes
|
| 14 |
+
no
|
| 15 |
+
yes
|
| 16 |
+
no
|
| 17 |
+
yes
|
| 18 |
+
no
|
| 19 |
+
yes
|
| 20 |
+
yes
|
| 21 |
+
yes
|
| 22 |
+
yes
|
| 23 |
+
yes
|
| 24 |
+
no
|
| 25 |
+
yes
|
| 26 |
+
yes
|
| 27 |
+
yes
|
| 28 |
+
yes
|
| 29 |
+
yes
|
| 30 |
+
yes
|
| 31 |
+
yes
|
| 32 |
+
yes
|
| 33 |
+
yes
|
| 34 |
+
yes
|
| 35 |
+
yes
|
| 36 |
+
no
|
| 37 |
+
yes
|
| 38 |
+
yes
|
| 39 |
+
yes
|
| 40 |
+
yes
|
| 41 |
+
yes
|
| 42 |
+
yes
|
| 43 |
+
yes
|
| 44 |
+
no
|
| 45 |
+
yes
|
| 46 |
+
no
|
| 47 |
+
no
|
| 48 |
+
no
|
| 49 |
+
yes
|
| 50 |
+
yes
|
| 51 |
+
yes
|
| 52 |
+
no
|
| 53 |
+
yes
|
| 54 |
+
no
|
| 55 |
+
yes
|
| 56 |
+
yes
|
| 57 |
+
yes
|
| 58 |
+
no
|
| 59 |
+
yes
|
| 60 |
+
yes
|
| 61 |
+
no
|
| 62 |
+
no
|
| 63 |
+
yes
|
| 64 |
+
no
|
| 65 |
+
no
|
| 66 |
+
yes
|
| 67 |
+
yes
|
| 68 |
+
no
|
| 69 |
+
yes
|
| 70 |
+
no
|
| 71 |
+
yes
|
| 72 |
+
yes
|
| 73 |
+
yes
|
| 74 |
+
yes
|
| 75 |
+
yes
|
| 76 |
+
no
|
| 77 |
+
no
|
| 78 |
+
no
|
| 79 |
+
yes
|
| 80 |
+
yes
|
| 81 |
+
no
|
| 82 |
+
yes
|
| 83 |
+
no
|
| 84 |
+
yes
|
| 85 |
+
no
|
| 86 |
+
yes
|
| 87 |
+
yes
|
| 88 |
+
no
|
| 89 |
+
yes
|
| 90 |
+
no
|
| 91 |
+
no
|
| 92 |
+
yes
|
| 93 |
+
yes
|
| 94 |
+
yes
|
| 95 |
+
yes
|
| 96 |
+
yes
|
| 97 |
+
yes
|
| 98 |
+
no
|
| 99 |
+
no
|
| 100 |
+
no
|
| 101 |
+
yes
|
| 102 |
+
no
|
| 103 |
+
yes
|
| 104 |
+
no
|
| 105 |
+
yes
|
| 106 |
+
yes
|
| 107 |
+
yes
|
| 108 |
+
yes
|
| 109 |
+
yes
|
| 110 |
+
yes
|
| 111 |
+
no
|
| 112 |
+
no
|
| 113 |
+
yes
|
| 114 |
+
yes
|
| 115 |
+
yes
|
| 116 |
+
yes
|
| 117 |
+
yes
|
| 118 |
+
yes
|
| 119 |
+
yes
|
| 120 |
+
yes
|
| 121 |
+
no
|
| 122 |
+
yes
|
| 123 |
+
no
|
| 124 |
+
yes
|
| 125 |
+
no
|
| 126 |
+
yes
|
| 127 |
+
yes
|
| 128 |
+
yes
|
| 129 |
+
no
|
| 130 |
+
yes
|
| 131 |
+
yes
|
| 132 |
+
yes
|
| 133 |
+
yes
|
| 134 |
+
yes
|
| 135 |
+
yes
|
| 136 |
+
yes
|
| 137 |
+
no
|
| 138 |
+
yes
|
| 139 |
+
no
|
| 140 |
+
yes
|
| 141 |
+
no
|
| 142 |
+
yes
|
| 143 |
+
no
|
| 144 |
+
yes
|
| 145 |
+
no
|
| 146 |
+
yes
|
| 147 |
+
no
|
| 148 |
+
yes
|
| 149 |
+
yes
|
| 150 |
+
no
|
| 151 |
+
yes
|
| 152 |
+
yes
|
| 153 |
+
yes
|
| 154 |
+
no
|
| 155 |
+
no
|
| 156 |
+
no
|
| 157 |
+
no
|
| 158 |
+
no
|
| 159 |
+
yes
|
| 160 |
+
no
|
| 161 |
+
no
|
| 162 |
+
yes
|
| 163 |
+
yes
|
| 164 |
+
yes
|
| 165 |
+
yes
|
| 166 |
+
no
|
| 167 |
+
yes
|
| 168 |
+
yes
|
| 169 |
+
no
|
| 170 |
+
no
|
| 171 |
+
yes
|
| 172 |
+
yes
|
| 173 |
+
yes
|
| 174 |
+
no
|
| 175 |
+
yes
|
| 176 |
+
yes
|
| 177 |
+
yes
|
| 178 |
+
yes
|
| 179 |
+
yes
|
| 180 |
+
no
|
| 181 |
+
no
|
| 182 |
+
yes
|
| 183 |
+
yes
|
| 184 |
+
no
|
| 185 |
+
yes
|
| 186 |
+
yes
|
| 187 |
+
yes
|
| 188 |
+
yes
|
| 189 |
+
no
|
| 190 |
+
no
|
| 191 |
+
no
|
| 192 |
+
no
|
| 193 |
+
yes
|
| 194 |
+
no
|
| 195 |
+
yes
|
| 196 |
+
yes
|
| 197 |
+
yes
|
| 198 |
+
no
|
| 199 |
+
yes
|
| 200 |
+
no
|
| 201 |
+
yes
|
| 202 |
+
no
|
| 203 |
+
no
|
| 204 |
+
no
|
| 205 |
+
yes
|
| 206 |
+
yes
|
| 207 |
+
yes
|
| 208 |
+
yes
|
| 209 |
+
no
|
| 210 |
+
yes
|
| 211 |
+
yes
|
| 212 |
+
yes
|
| 213 |
+
no
|
| 214 |
+
yes
|
| 215 |
+
no
|
| 216 |
+
yes
|
| 217 |
+
no
|
| 218 |
+
yes
|
| 219 |
+
yes
|
| 220 |
+
yes
|
| 221 |
+
yes
|
| 222 |
+
yes
|
| 223 |
+
yes
|
| 224 |
+
yes
|
| 225 |
+
no
|
| 226 |
+
yes
|
| 227 |
+
yes
|
| 228 |
+
yes
|
| 229 |
+
yes
|
| 230 |
+
yes
|
| 231 |
+
yes
|
| 232 |
+
yes
|
| 233 |
+
yes
|
| 234 |
+
yes
|
| 235 |
+
yes
|
| 236 |
+
yes
|
| 237 |
+
yes
|
| 238 |
+
yes
|
| 239 |
+
yes
|
| 240 |
+
yes
|
| 241 |
+
yes
|
| 242 |
+
no
|
| 243 |
+
yes
|
| 244 |
+
no
|
| 245 |
+
yes
|
| 246 |
+
yes
|
| 247 |
+
yes
|
| 248 |
+
yes
|
| 249 |
+
yes
|
| 250 |
+
yes
|
| 251 |
+
yes
|
| 252 |
+
yes
|
| 253 |
+
no
|
| 254 |
+
yes
|
| 255 |
+
yes
|
| 256 |
+
yes
|
| 257 |
+
yes
|
| 258 |
+
yes
|
| 259 |
+
yes
|
| 260 |
+
no
|
| 261 |
+
yes
|
| 262 |
+
no
|
| 263 |
+
yes
|
| 264 |
+
no
|
| 265 |
+
yes
|
| 266 |
+
no
|
| 267 |
+
yes
|
| 268 |
+
yes
|
| 269 |
+
yes
|
| 270 |
+
no
|
| 271 |
+
yes
|
| 272 |
+
no
|
| 273 |
+
yes
|
| 274 |
+
yes
|
| 275 |
+
yes
|
| 276 |
+
yes
|
| 277 |
+
yes
|
| 278 |
+
no
|
| 279 |
+
yes
|
| 280 |
+
yes
|
| 281 |
+
no
|
| 282 |
+
yes
|
| 283 |
+
no
|
| 284 |
+
yes
|
| 285 |
+
no
|
| 286 |
+
yes
|
| 287 |
+
yes
|
| 288 |
+
yes
|
| 289 |
+
yes
|
| 290 |
+
yes
|
| 291 |
+
yes
|
| 292 |
+
yes
|
| 293 |
+
yes
|
| 294 |
+
no
|
| 295 |
+
yes
|
| 296 |
+
yes
|
| 297 |
+
no
|
| 298 |
+
yes
|
| 299 |
+
yes
|
| 300 |
+
yes
|
| 301 |
+
yes
|
| 302 |
+
yes
|
| 303 |
+
yes
|
| 304 |
+
yes
|
| 305 |
+
yes
|
| 306 |
+
yes
|
| 307 |
+
yes
|
| 308 |
+
no
|
| 309 |
+
no
|
| 310 |
+
no
|
| 311 |
+
yes
|
| 312 |
+
no
|
| 313 |
+
yes
|
| 314 |
+
yes
|
| 315 |
+
yes
|
| 316 |
+
yes
|
| 317 |
+
yes
|
| 318 |
+
yes
|
| 319 |
+
no
|
| 320 |
+
no
|
| 321 |
+
no
|
| 322 |
+
yes
|
| 323 |
+
yes
|
| 324 |
+
yes
|
| 325 |
+
yes
|
| 326 |
+
yes
|
| 327 |
+
yes
|
| 328 |
+
yes
|
| 329 |
+
yes
|
| 330 |
+
no
|
| 331 |
+
no
|
| 332 |
+
yes
|
| 333 |
+
yes
|
| 334 |
+
yes
|
| 335 |
+
yes
|
| 336 |
+
yes
|
| 337 |
+
yes
|
| 338 |
+
yes
|
| 339 |
+
yes
|
| 340 |
+
yes
|
| 341 |
+
yes
|
| 342 |
+
no
|
| 343 |
+
no
|
| 344 |
+
yes
|
| 345 |
+
no
|
| 346 |
+
yes
|
| 347 |
+
yes
|
| 348 |
+
yes
|
| 349 |
+
yes
|
| 350 |
+
yes
|
| 351 |
+
yes
|
| 352 |
+
yes
|
| 353 |
+
yes
|
| 354 |
+
no
|
| 355 |
+
yes
|
| 356 |
+
no
|
| 357 |
+
no
|
| 358 |
+
yes
|
| 359 |
+
yes
|
| 360 |
+
no
|
| 361 |
+
no
|
| 362 |
+
no
|
| 363 |
+
yes
|
| 364 |
+
no
|
| 365 |
+
yes
|
| 366 |
+
yes
|
| 367 |
+
yes
|
| 368 |
+
no
|
| 369 |
+
no
|
| 370 |
+
yes
|
| 371 |
+
yes
|
| 372 |
+
yes
|
| 373 |
+
yes
|
| 374 |
+
yes
|
| 375 |
+
yes
|
| 376 |
+
no
|
| 377 |
+
yes
|
| 378 |
+
yes
|
| 379 |
+
yes
|
| 380 |
+
yes
|
| 381 |
+
no
|
| 382 |
+
yes
|
| 383 |
+
yes
|
| 384 |
+
yes
|
| 385 |
+
no
|
| 386 |
+
no
|
| 387 |
+
yes
|
| 388 |
+
yes
|
| 389 |
+
no
|
| 390 |
+
yes
|
| 391 |
+
yes
|
| 392 |
+
no
|
| 393 |
+
yes
|
| 394 |
+
yes
|
| 395 |
+
no
|
| 396 |
+
no
|
| 397 |
+
no
|
| 398 |
+
yes
|
| 399 |
+
yes
|
| 400 |
+
no
|
| 401 |
+
no
|
| 402 |
+
no
|
| 403 |
+
yes
|
| 404 |
+
yes
|
| 405 |
+
no
|
| 406 |
+
no
|
| 407 |
+
yes
|
evaluation/dummy_predictions/tweet-qa.txt
ADDED
|
@@ -0,0 +1,1203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
a website
|
| 2 |
+
5 years
|
| 3 |
+
5 years in 5 seconds
|
| 4 |
+
5 years in 5 seconds
|
| 5 |
+
southwest airlines
|
| 6 |
+
maintenance checks
|
| 7 |
+
crying
|
| 8 |
+
she is crying because she is crying because she is crying because she is crying because she is crying
|
| 9 |
+
blank space
|
| 10 |
+
taylor
|
| 11 |
+
tomorrow
|
| 12 |
+
37500
|
| 13 |
+
zach lowe
|
| 14 |
+
presumably w a straight face
|
| 15 |
+
ebola
|
| 16 |
+
the flight
|
| 17 |
+
5%
|
| 18 |
+
25%
|
| 19 |
+
ucshooting tragedy
|
| 20 |
+
portland
|
| 21 |
+
washington post
|
| 22 |
+
poll numbers
|
| 23 |
+
jeff gordon
|
| 24 |
+
sideburns, mullet and taxi cab
|
| 25 |
+
i can't see the tweet
|
| 26 |
+
i can't see the tweet
|
| 27 |
+
nbcsnl
|
| 28 |
+
trump
|
| 29 |
+
south carolina
|
| 30 |
+
picking cotton
|
| 31 |
+
china
|
| 32 |
+
the winner's room
|
| 33 |
+
the top of a staircase
|
| 34 |
+
st. samuel
|
| 35 |
+
ticket refunds
|
| 36 |
+
entertainment weekly
|
| 37 |
+
16
|
| 38 |
+
adult day care center
|
| 39 |
+
the white house
|
| 40 |
+
migrant & refugees
|
| 41 |
+
sri croatia
|
| 42 |
+
lauren hill
|
| 43 |
+
kdemoff
|
| 44 |
+
regret
|
| 45 |
+
not being able to do something
|
| 46 |
+
dumb media
|
| 47 |
+
dumb
|
| 48 |
+
consistency
|
| 49 |
+
atletico
|
| 50 |
+
durbanites
|
| 51 |
+
immigrants
|
| 52 |
+
scotland
|
| 53 |
+
panmure golf club
|
| 54 |
+
tulip seeds
|
| 55 |
+
snow
|
| 56 |
+
west boca
|
| 57 |
+
us marshals
|
| 58 |
+
going to white house
|
| 59 |
+
white house
|
| 60 |
+
one year
|
| 61 |
+
bring back our girls
|
| 62 |
+
chris rock
|
| 63 |
+
the oscars
|
| 64 |
+
jharrison9292
|
| 65 |
+
steelers
|
| 66 |
+
make sure her mama answers
|
| 67 |
+
paul walker
|
| 68 |
+
death
|
| 69 |
+
talent
|
| 70 |
+
yes
|
| 71 |
+
he was a good person.
|
| 72 |
+
yes
|
| 73 |
+
they make the right choices in their stressful jobs
|
| 74 |
+
a sandwich
|
| 75 |
+
a broomstick
|
| 76 |
+
megynkelly
|
| 77 |
+
fox news
|
| 78 |
+
roger rees
|
| 79 |
+
a friend and colleague
|
| 80 |
+
it will happen here.
|
| 81 |
+
internet
|
| 82 |
+
kkk jokes
|
| 83 |
+
khloe kardashian
|
| 84 |
+
kellyanne conway
|
| 85 |
+
britney ever after
|
| 86 |
+
stop
|
| 87 |
+
kanyewest
|
| 88 |
+
real donald trump
|
| 89 |
+
russian
|
| 90 |
+
prime minister
|
| 91 |
+
duke and duchess of cambridge
|
| 92 |
+
disgusting
|
| 93 |
+
nytimes
|
| 94 |
+
booyah
|
| 95 |
+
zero
|
| 96 |
+
pOTUS
|
| 97 |
+
led and served our country
|
| 98 |
+
she is trending
|
| 99 |
+
eric the actor
|
| 100 |
+
eric the actor
|
| 101 |
+
the democrats
|
| 102 |
+
because so many obama democrats voted for him.
|
| 103 |
+
years
|
| 104 |
+
michigan, ohio, penn
|
| 105 |
+
the daily show
|
| 106 |
+
uefa european league
|
| 107 |
+
group b
|
| 108 |
+
june 20, 2016
|
| 109 |
+
group b
|
| 110 |
+
another spider-man movie reboot
|
| 111 |
+
joshua peck and drake bell
|
| 112 |
+
he got married
|
| 113 |
+
philly
|
| 114 |
+
1,000
|
| 115 |
+
jacob escenskii
|
| 116 |
+
they are a straight guy.
|
| 117 |
+
beyonce
|
| 118 |
+
beyonce
|
| 119 |
+
0
|
| 120 |
+
90 percent
|
| 121 |
+
iraq
|
| 122 |
+
kurdistan
|
| 123 |
+
haradh
|
| 124 |
+
15
|
| 125 |
+
every moment i exist is agony
|
| 126 |
+
katy
|
| 127 |
+
her son
|
| 128 |
+
presents for the girls
|
| 129 |
+
presents
|
| 130 |
+
new owners and a new management team
|
| 131 |
+
here
|
| 132 |
+
caterham f1
|
| 133 |
+
why he feels sorry for john heilemann
|
| 134 |
+
dummy reporter john heilemann
|
| 135 |
+
yvette d. clarke
|
| 136 |
+
rep john lewis
|
| 137 |
+
potus
|
| 138 |
+
statement on north korea nukes
|
| 139 |
+
spend less time voting in the senate
|
| 140 |
+
to spend less time voting
|
| 141 |
+
because they said what many of us want to say.
|
| 142 |
+
the khans
|
| 143 |
+
presidential bling
|
| 144 |
+
campus
|
| 145 |
+
steve bannon
|
| 146 |
+
in my drafts
|
| 147 |
+
sacramento kings
|
| 148 |
+
nba emarcus cousins
|
| 149 |
+
iran
|
| 150 |
+
nuclear deal
|
| 151 |
+
counts
|
| 152 |
+
switzerland
|
| 153 |
+
honduras
|
| 154 |
+
two
|
| 155 |
+
two
|
| 156 |
+
wilmariel and jason
|
| 157 |
+
orange county vigil
|
| 158 |
+
the family
|
| 159 |
+
r.i.p. chester bennington
|
| 160 |
+
proper eyewear
|
| 161 |
+
solar eclipse
|
| 162 |
+
make the us rich again
|
| 163 |
+
inaugural
|
| 164 |
+
cleveland
|
| 165 |
+
tara the hero cat and family
|
| 166 |
+
BOGO
|
| 167 |
+
lebron james
|
| 168 |
+
colombia
|
| 169 |
+
2018
|
| 170 |
+
democratic
|
| 171 |
+
muslim
|
| 172 |
+
mosques
|
| 173 |
+
women
|
| 174 |
+
perspective
|
| 175 |
+
3 feet
|
| 176 |
+
the fcc
|
| 177 |
+
wind
|
| 178 |
+
senzo meyiwa
|
| 179 |
+
james gunn
|
| 180 |
+
guardians of the galaxy
|
| 181 |
+
the city
|
| 182 |
+
donald trump
|
| 183 |
+
and then what?
|
| 184 |
+
good
|
| 185 |
+
iowa
|
| 186 |
+
winter storm
|
| 187 |
+
miss cleo
|
| 188 |
+
mom
|
| 189 |
+
domino
|
| 190 |
+
deadpool
|
| 191 |
+
the toy story
|
| 192 |
+
a toy story
|
| 193 |
+
michelle obama
|
| 194 |
+
to get a diplomatic resolution
|
| 195 |
+
sanctions
|
| 196 |
+
beyonce
|
| 197 |
+
solar
|
| 198 |
+
climate action
|
| 199 |
+
paris
|
| 200 |
+
paris agreement and climate action
|
| 201 |
+
iraqi command
|
| 202 |
+
reclaiming territory from isil
|
| 203 |
+
kanye
|
| 204 |
+
kanye and trump
|
| 205 |
+
superbowl
|
| 206 |
+
falls on beat
|
| 207 |
+
basic human decency
|
| 208 |
+
RATINGS
|
| 209 |
+
basic human decency
|
| 210 |
+
work harder
|
| 211 |
+
four
|
| 212 |
+
the redstate gathering
|
| 213 |
+
ben bradlee
|
| 214 |
+
jennifer aniston
|
| 215 |
+
jimmy roux
|
| 216 |
+
beyonce
|
| 217 |
+
emmys
|
| 218 |
+
nytimes critic
|
| 219 |
+
shonda rhimes
|
| 220 |
+
wish
|
| 221 |
+
charlotte
|
| 222 |
+
a flower
|
| 223 |
+
because he felt that we are all one
|
| 224 |
+
ijesse williams
|
| 225 |
+
jonathan bennett
|
| 226 |
+
jonathan bennett
|
| 227 |
+
tomorrow morning
|
| 228 |
+
hip hoo
|
| 229 |
+
we salute you all
|
| 230 |
+
2015
|
| 231 |
+
boston
|
| 232 |
+
hillary clinton
|
| 233 |
+
philly
|
| 234 |
+
david burtka
|
| 235 |
+
in italy
|
| 236 |
+
wedding
|
| 237 |
+
italy
|
| 238 |
+
reds to braves
|
| 239 |
+
$14 million
|
| 240 |
+
arkansas
|
| 241 |
+
august 4, 2014
|
| 242 |
+
a million
|
| 243 |
+
camelot
|
| 244 |
+
president obama
|
| 245 |
+
he's a little cow
|
| 246 |
+
youtube
|
| 247 |
+
night
|
| 248 |
+
crickets
|
| 249 |
+
democrat congresswoman
|
| 250 |
+
zachary hammond
|
| 251 |
+
in the light
|
| 252 |
+
he met him
|
| 253 |
+
gordie howe
|
| 254 |
+
peas in guac
|
| 255 |
+
the nyt
|
| 256 |
+
her country
|
| 257 |
+
bed
|
| 258 |
+
this morning
|
| 259 |
+
bexley rd
|
| 260 |
+
uk
|
| 261 |
+
uk
|
| 262 |
+
uk
|
| 263 |
+
tuesday
|
| 264 |
+
the secret menu at mcdonalds uk
|
| 265 |
+
secret menu
|
| 266 |
+
mcdonalds uk
|
| 267 |
+
the culture
|
| 268 |
+
tucker carlson and steve hindonx
|
| 269 |
+
blue
|
| 270 |
+
nicolespag
|
| 271 |
+
true blood series finale
|
| 272 |
+
museum modern art
|
| 273 |
+
big bird and baby bear
|
| 274 |
+
dylan
|
| 275 |
+
she has done a face smear
|
| 276 |
+
gwen stefani
|
| 277 |
+
lesan mccoy
|
| 278 |
+
restaurant receipt
|
| 279 |
+
fidel cárzo
|
| 280 |
+
3 minutes to midnight
|
| 281 |
+
executive director and publisher of the bulletin
|
| 282 |
+
20 week abortion bans
|
| 283 |
+
unpopular
|
| 284 |
+
kept it
|
| 285 |
+
divine right to live
|
| 286 |
+
william
|
| 287 |
+
dolores
|
| 288 |
+
cheese dust
|
| 289 |
+
michelle obama
|
| 290 |
+
different
|
| 291 |
+
oranges
|
| 292 |
+
pstons
|
| 293 |
+
reggie jackson
|
| 294 |
+
millions march
|
| 295 |
+
union square
|
| 296 |
+
silenced
|
| 297 |
+
to take nisa home to palembang
|
| 298 |
+
surabaya
|
| 299 |
+
creeped out
|
| 300 |
+
face ID
|
| 301 |
+
atlanta
|
| 302 |
+
google africa
|
| 303 |
+
alabama
|
| 304 |
+
a stair master in hell
|
| 305 |
+
hell
|
| 306 |
+
hell
|
| 307 |
+
backup qbs
|
| 308 |
+
khightower
|
| 309 |
+
black protester
|
| 310 |
+
4
|
| 311 |
+
parents
|
| 312 |
+
many years
|
| 313 |
+
milestone
|
| 314 |
+
bem program
|
| 315 |
+
kurt helin
|
| 316 |
+
kurt helin
|
| 317 |
+
facebook and twitter
|
| 318 |
+
russell crowe
|
| 319 |
+
prime minister nawaz sharif
|
| 320 |
+
emotional things
|
| 321 |
+
never showed up
|
| 322 |
+
mariah carey
|
| 323 |
+
brazil
|
| 324 |
+
brazil
|
| 325 |
+
golf course
|
| 326 |
+
jimmy fallon
|
| 327 |
+
donald trump
|
| 328 |
+
hillary clinton
|
| 329 |
+
hillary clinton
|
| 330 |
+
text dunham to 47246
|
| 331 |
+
dem convention
|
| 332 |
+
farmer downstream
|
| 333 |
+
loading this beast
|
| 334 |
+
emma watson
|
| 335 |
+
marchers
|
| 336 |
+
scared af
|
| 337 |
+
henrik harlaut lost pants during slopestyle
|
| 338 |
+
henrik harlaut lost pants during slopestyle
|
| 339 |
+
natural gas leaks
|
| 340 |
+
if we could see natural gas leaks
|
| 341 |
+
an elephant
|
| 342 |
+
john d. sutter
|
| 343 |
+
nap
|
| 344 |
+
pillow and blanket
|
| 345 |
+
julian louis-dreyfus
|
| 346 |
+
julian louis-dreyfus
|
| 347 |
+
to help others
|
| 348 |
+
everyone
|
| 349 |
+
republican lefties
|
| 350 |
+
on his money
|
| 351 |
+
eng
|
| 352 |
+
his organization
|
| 353 |
+
league apology
|
| 354 |
+
the ballon d'or
|
| 355 |
+
second
|
| 356 |
+
siria
|
| 357 |
+
siria
|
| 358 |
+
rest in peace
|
| 359 |
+
porto alegre
|
| 360 |
+
training session
|
| 361 |
+
slanderous
|
| 362 |
+
veterans
|
| 363 |
+
beseiged fortress
|
| 364 |
+
benghazi
|
| 365 |
+
cops
|
| 366 |
+
luck
|
| 367 |
+
luck
|
| 368 |
+
cops
|
| 369 |
+
nazis
|
| 370 |
+
swastika
|
| 371 |
+
uninvited guests
|
| 372 |
+
restaurants
|
| 373 |
+
dr pepper
|
| 374 |
+
he is a fan of pepper.
|
| 375 |
+
coke
|
| 376 |
+
immigrants
|
| 377 |
+
sitting with family
|
| 378 |
+
april
|
| 379 |
+
show
|
| 380 |
+
too busy pulling out pages on evolution in his kids' biology textbooks
|
| 381 |
+
autographed it
|
| 382 |
+
his stick
|
| 383 |
+
a young canucks fan
|
| 384 |
+
so he could be in front of nato group
|
| 385 |
+
montenegro pm
|
| 386 |
+
vote for romney
|
| 387 |
+
one
|
| 388 |
+
romney
|
| 389 |
+
romney
|
| 390 |
+
romney
|
| 391 |
+
romney
|
| 392 |
+
something back
|
| 393 |
+
lus figo
|
| 394 |
+
tony awards
|
| 395 |
+
patti lupone
|
| 396 |
+
mourning
|
| 397 |
+
america
|
| 398 |
+
the president
|
| 399 |
+
prince
|
| 400 |
+
prince
|
| 401 |
+
the patriots
|
| 402 |
+
the nfl
|
| 403 |
+
rachel nichols
|
| 404 |
+
an apology
|
| 405 |
+
wind gusts
|
| 406 |
+
in kenting
|
| 407 |
+
israel
|
| 408 |
+
clear-cut support
|
| 409 |
+
wall
|
| 410 |
+
continue working on outstanding issues
|
| 411 |
+
thanksgiving
|
| 412 |
+
father
|
| 413 |
+
two
|
| 414 |
+
start their holiday
|
| 415 |
+
a cat is out of a bag.
|
| 416 |
+
happy
|
| 417 |
+
andrew garfield
|
| 418 |
+
asian
|
| 419 |
+
a warm wind
|
| 420 |
+
42 degrees celsius
|
| 421 |
+
yorktown
|
| 422 |
+
hamilton
|
| 423 |
+
danny granger/josh mcroberts
|
| 424 |
+
lebron james
|
| 425 |
+
google glass is being retooled
|
| 426 |
+
a retooled version of google
|
| 427 |
+
cesare prandelli
|
| 428 |
+
american horror story
|
| 429 |
+
kill me
|
| 430 |
+
trying to kill me
|
| 431 |
+
lfc
|
| 432 |
+
saturday
|
| 433 |
+
anfield
|
| 434 |
+
lfc
|
| 435 |
+
saturday
|
| 436 |
+
shoreham
|
| 437 |
+
shoreham air show
|
| 438 |
+
liberty island
|
| 439 |
+
civilians
|
| 440 |
+
solange
|
| 441 |
+
upload the audio to that elevator fight feat.
|
| 442 |
+
fergie's
|
| 443 |
+
milf money
|
| 444 |
+
john glenn and annie
|
| 445 |
+
glenn
|
| 446 |
+
ariannahuff
|
| 447 |
+
because she is a dog who wrongfully comments on him.
|
| 448 |
+
yes
|
| 449 |
+
yes
|
| 450 |
+
deleting tweets
|
| 451 |
+
shameful
|
| 452 |
+
tweets
|
| 453 |
+
tHC
|
| 454 |
+
2.71 inches
|
| 455 |
+
3 inches
|
| 456 |
+
as soon as tuesday
|
| 457 |
+
in vegas
|
| 458 |
+
2 hours
|
| 459 |
+
trafalgar square bookstore
|
| 460 |
+
mars
|
| 461 |
+
a man with no legs
|
| 462 |
+
legs
|
| 463 |
+
pac
|
| 464 |
+
cradled in her heart for eternity
|
| 465 |
+
no
|
| 466 |
+
a brave and right decision
|
| 467 |
+
mlb
|
| 468 |
+
confident
|
| 469 |
+
jedezal
|
| 470 |
+
he has a new tattoo.
|
| 471 |
+
trailer
|
| 472 |
+
a big screen
|
| 473 |
+
$125
|
| 474 |
+
their family's initials
|
| 475 |
+
veterinarian
|
| 476 |
+
switzerland
|
| 477 |
+
barf bag
|
| 478 |
+
kim kardashian
|
| 479 |
+
og crew
|
| 480 |
+
one
|
| 481 |
+
in honor of leonard nimoy
|
| 482 |
+
generations of scientists and engineers
|
| 483 |
+
first hockey contract
|
| 484 |
+
flapanterns
|
| 485 |
+
heart
|
| 486 |
+
mixed
|
| 487 |
+
it's hot
|
| 488 |
+
half brother
|
| 489 |
+
evacuated passengers
|
| 490 |
+
at travelers beach hotel
|
| 491 |
+
at travelers beach hotel
|
| 492 |
+
cs nkaisserry & ps ambjuma
|
| 493 |
+
unpredictable
|
| 494 |
+
unpredictable
|
| 495 |
+
anaconda
|
| 496 |
+
choreo and vid
|
| 497 |
+
express support
|
| 498 |
+
they appreciate it
|
| 499 |
+
jeb bush
|
| 500 |
+
special interest
|
| 501 |
+
us
|
| 502 |
+
je suis charlie
|
| 503 |
+
cpd
|
| 504 |
+
970
|
| 505 |
+
hilary clinton's gold and white logo
|
| 506 |
+
2015-04-12
|
| 507 |
+
mtv
|
| 508 |
+
2015
|
| 509 |
+
mtv
|
| 510 |
+
you never monkey with the truth.
|
| 511 |
+
ben bradlee
|
| 512 |
+
the truth
|
| 513 |
+
ben bradlee
|
| 514 |
+
misunderstood
|
| 515 |
+
a specific tweet
|
| 516 |
+
74
|
| 517 |
+
muhammad ali
|
| 518 |
+
lesdoggg
|
| 519 |
+
passed
|
| 520 |
+
sony pictures
|
| 521 |
+
steve israel
|
| 522 |
+
a new type enter a us fleet
|
| 523 |
+
787
|
| 524 |
+
bachelor finale
|
| 525 |
+
last night's bachelor finale
|
| 526 |
+
amazon and icloud
|
| 527 |
+
fans
|
| 528 |
+
beyonce
|
| 529 |
+
three
|
| 530 |
+
20
|
| 531 |
+
the notorious b.i.g.
|
| 532 |
+
always
|
| 533 |
+
she's still gonna be pretty private.
|
| 534 |
+
the democratic
|
| 535 |
+
shutdown
|
| 536 |
+
at a time we need it most
|
| 537 |
+
january 30, 2014
|
| 538 |
+
#homesweethome
|
| 539 |
+
bullying
|
| 540 |
+
laverne cox
|
| 541 |
+
jeff flake
|
| 542 |
+
stan freberg
|
| 543 |
+
stan freberg
|
| 544 |
+
269
|
| 545 |
+
fc barcelona
|
| 546 |
+
kris jenner
|
| 547 |
+
kris jenner
|
| 548 |
+
apple
|
| 549 |
+
make the biggest, coolest, sexiest, funnest movie ever
|
| 550 |
+
gwenstefani
|
| 551 |
+
whoever did her face
|
| 552 |
+
lost contact of mh17
|
| 553 |
+
from amsterdam
|
| 554 |
+
three us presidents
|
| 555 |
+
three
|
| 556 |
+
go black
|
| 557 |
+
dean
|
| 558 |
+
posting extra hard on instagram
|
| 559 |
+
posting extra hard
|
| 560 |
+
shooting
|
| 561 |
+
charlotte
|
| 562 |
+
to be you
|
| 563 |
+
cars
|
| 564 |
+
a family to feed
|
| 565 |
+
their privilege
|
| 566 |
+
barbie
|
| 567 |
+
buy her daughter a barbie
|
| 568 |
+
kat graham and dshippjr
|
| 569 |
+
code
|
| 570 |
+
STEM
|
| 571 |
+
like a king
|
| 572 |
+
justin bieber
|
| 573 |
+
check the forecast
|
| 574 |
+
i-24 in ky
|
| 575 |
+
rakim kake krs chuck cube jaz e
|
| 576 |
+
all the people that have inspired him
|
| 577 |
+
buzzfeed team
|
| 578 |
+
buzzfeed team
|
| 579 |
+
buzzfeed
|
| 580 |
+
an amazing november
|
| 581 |
+
delusion
|
| 582 |
+
ted cruz
|
| 583 |
+
passive aggressiveness
|
| 584 |
+
her daughter
|
| 585 |
+
vegas
|
| 586 |
+
dwyane wade
|
| 587 |
+
ffwmaneevent supporters
|
| 588 |
+
fvwmane event
|
| 589 |
+
before
|
| 590 |
+
#fvwmaneevent
|
| 591 |
+
disappointed
|
| 592 |
+
rickie fowler PGA
|
| 593 |
+
dur'g maid testimony
|
| 594 |
+
can not conclude bc you saw a gun at residence
|
| 595 |
+
the tony awards press room
|
| 596 |
+
thanking people
|
| 597 |
+
twice as good
|
| 598 |
+
half as much
|
| 599 |
+
tears
|
| 600 |
+
george
|
| 601 |
+
super bowl 47
|
| 602 |
+
47
|
| 603 |
+
acoustic guitar
|
| 604 |
+
lady gaga
|
| 605 |
+
core mission
|
| 606 |
+
today
|
| 607 |
+
the sc championship game
|
| 608 |
+
jim mcelwain
|
| 609 |
+
wash mystics
|
| 610 |
+
chicago
|
| 611 |
+
bulls fans
|
| 612 |
+
the st louis blues camp
|
| 613 |
+
a stanley cup
|
| 614 |
+
passed away
|
| 615 |
+
all
|
| 616 |
+
win the arc
|
| 617 |
+
france galop
|
| 618 |
+
yuichi fukunaga
|
| 619 |
+
kuzma
|
| 620 |
+
vote their conscience
|
| 621 |
+
hilary clinton
|
| 622 |
+
pep talk from the hanson brothers
|
| 623 |
+
pep talk from the hanson brothers.
|
| 624 |
+
the hanson brothers
|
| 625 |
+
johnstown, pa
|
| 626 |
+
tsarnaev
|
| 627 |
+
rolling stone
|
| 628 |
+
nepal
|
| 629 |
+
find more information
|
| 630 |
+
marcus morris
|
| 631 |
+
kurt helin
|
| 632 |
+
kaley cuoco
|
| 633 |
+
long ago
|
| 634 |
+
sergey_bubka
|
| 635 |
+
scenes in kiev
|
| 636 |
+
bringing a son into this world
|
| 637 |
+
bringing a son into this world
|
| 638 |
+
blue
|
| 639 |
+
sen. murkowski
|
| 640 |
+
bill murray
|
| 641 |
+
x's victory
|
| 642 |
+
x
|
| 643 |
+
bill murray
|
| 644 |
+
in trump's jock
|
| 645 |
+
socks
|
| 646 |
+
chiraq
|
| 647 |
+
because it was sexualizing and making a comedy out of gun violence.
|
| 648 |
+
lesdoggg
|
| 649 |
+
arrested and prosecuted
|
| 650 |
+
all
|
| 651 |
+
death
|
| 652 |
+
40 pounds
|
| 653 |
+
40 pounds
|
| 654 |
+
chris martin
|
| 655 |
+
getting divorced
|
| 656 |
+
insufferable similarities
|
| 657 |
+
10 minutes
|
| 658 |
+
the bachelorette finale
|
| 659 |
+
thursday
|
| 660 |
+
midnight
|
| 661 |
+
president
|
| 662 |
+
russia
|
| 663 |
+
russia
|
| 664 |
+
#charliehebdo
|
| 665 |
+
andrew lesnie
|
| 666 |
+
humor and love
|
| 667 |
+
only coaches in major college or pro sports to win 10 titles.
|
| 668 |
+
george auriemma
|
| 669 |
+
to dunkin donuts
|
| 670 |
+
starbucks
|
| 671 |
+
hassan rouhani
|
| 672 |
+
second term
|
| 673 |
+
extratv
|
| 674 |
+
cheese baby
|
| 675 |
+
pregnancy
|
| 676 |
+
ia
|
| 677 |
+
van
|
| 678 |
+
heat
|
| 679 |
+
model
|
| 680 |
+
california
|
| 681 |
+
change
|
| 682 |
+
that the bill would benefit the wealthy over the middle class
|
| 683 |
+
hawaii
|
| 684 |
+
hawaii
|
| 685 |
+
reporting them
|
| 686 |
+
rape
|
| 687 |
+
google
|
| 688 |
+
best designer
|
| 689 |
+
4-3-3
|
| 690 |
+
4-3-3
|
| 691 |
+
j klinsmann
|
| 692 |
+
j klinsmann
|
| 693 |
+
his district
|
| 694 |
+
john lewis
|
| 695 |
+
mike munchak
|
| 696 |
+
5 hours
|
| 697 |
+
copper breaks
|
| 698 |
+
grasshoppers and beetles
|
| 699 |
+
raven gates
|
| 700 |
+
raven gates09
|
| 701 |
+
subway rides and bowling alley
|
| 702 |
+
footseps
|
| 703 |
+
political events
|
| 704 |
+
ides of march
|
| 705 |
+
a neighbor
|
| 706 |
+
7k miles
|
| 707 |
+
in homage
|
| 708 |
+
superbowl and halftime show
|
| 709 |
+
william and harry
|
| 710 |
+
prince of wales
|
| 711 |
+
prince of wales
|
| 712 |
+
william and harry
|
| 713 |
+
police "don't ask if you're black or white. they just come to
|
| 714 |
+
police don't ask if you're black or white.
|
| 715 |
+
himself and obama
|
| 716 |
+
racism
|
| 717 |
+
hijacking
|
| 718 |
+
ethiopian airlines flight 702
|
| 719 |
+
a personal friend
|
| 720 |
+
rance howard
|
| 721 |
+
luis garcia abad
|
| 722 |
+
lunch time
|
| 723 |
+
skin of the person who killed me
|
| 724 |
+
under my fingernails
|
| 725 |
+
crying
|
| 726 |
+
tear gas and water canons
|
| 727 |
+
nazem kadri
|
| 728 |
+
cross-check
|
| 729 |
+
hungarian
|
| 730 |
+
tom and jerry
|
| 731 |
+
charlottesville
|
| 732 |
+
unite the country
|
| 733 |
+
good sex
|
| 734 |
+
she's sorry
|
| 735 |
+
she is sorry about that.
|
| 736 |
+
pittsburg
|
| 737 |
+
new york slough
|
| 738 |
+
goalless
|
| 739 |
+
fc shakhtar
|
| 740 |
+
on the phone
|
| 741 |
+
in july
|
| 742 |
+
no
|
| 743 |
+
dACA
|
| 744 |
+
wall
|
| 745 |
+
pregnant
|
| 746 |
+
pictures
|
| 747 |
+
movie going experience
|
| 748 |
+
a movie theatre
|
| 749 |
+
as much as possible
|
| 750 |
+
meaningful things
|
| 751 |
+
emotional
|
| 752 |
+
he's hectoring and yelling at me
|
| 753 |
+
hectoring and yelling at me
|
| 754 |
+
syrian envoy to the nsc
|
| 755 |
+
fallujah, iraq
|
| 756 |
+
iraqi pm
|
| 757 |
+
fallujah, iraq
|
| 758 |
+
miss seeing u two
|
| 759 |
+
in a movie
|
| 760 |
+
paid
|
| 761 |
+
paid paternity leave
|
| 762 |
+
mama june
|
| 763 |
+
introducing the new me
|
| 764 |
+
raise your hand
|
| 765 |
+
academia
|
| 766 |
+
yes
|
| 767 |
+
the sands hotel in vegas
|
| 768 |
+
be there
|
| 769 |
+
3 republicans and 48 democratic
|
| 770 |
+
joe biden
|
| 771 |
+
paul ryan
|
| 772 |
+
adidas
|
| 773 |
+
#photooftheday
|
| 774 |
+
1.5m
|
| 775 |
+
obese
|
| 776 |
+
addicts to drugs and alcohol
|
| 777 |
+
the beatles
|
| 778 |
+
after the sing premiere
|
| 779 |
+
portraits/art, headline or intro
|
| 780 |
+
janet mock
|
| 781 |
+
grace lee whitney
|
| 782 |
+
grace lee whitney
|
| 783 |
+
new george michael single
|
| 784 |
+
george michael
|
| 785 |
+
after the fantasy draft
|
| 786 |
+
honda
|
| 787 |
+
smiled
|
| 788 |
+
the hollywood bowl
|
| 789 |
+
the browns
|
| 790 |
+
colin kaepernick
|
| 791 |
+
ruby rose
|
| 792 |
+
social media
|
| 793 |
+
the new york rangers
|
| 794 |
+
tbay
|
| 795 |
+
gym
|
| 796 |
+
motion
|
| 797 |
+
senator john maccain
|
| 798 |
+
senjohn mccain
|
| 799 |
+
gaby amarantos
|
| 800 |
+
tottustu
|
| 801 |
+
ciaara
|
| 802 |
+
baby future
|
| 803 |
+
loss of life
|
| 804 |
+
attack
|
| 805 |
+
zordon
|
| 806 |
+
powerrangers
|
| 807 |
+
nicky
|
| 808 |
+
for his and many others safety
|
| 809 |
+
nigerians
|
| 810 |
+
#malalafund
|
| 811 |
+
he tweets about his favorite senator
|
| 812 |
+
tweets
|
| 813 |
+
false news
|
| 814 |
+
adam
|
| 815 |
+
great
|
| 816 |
+
beautiful picture
|
| 817 |
+
mohammed bin zayed
|
| 818 |
+
ministers
|
| 819 |
+
spirit of change and progress
|
| 820 |
+
new ministers
|
| 821 |
+
lakers
|
| 822 |
+
2018
|
| 823 |
+
la
|
| 824 |
+
basketball
|
| 825 |
+
pacers and clippers
|
| 826 |
+
lorde
|
| 827 |
+
snl
|
| 828 |
+
she feels like she has never/will never
|
| 829 |
+
alan rickman
|
| 830 |
+
funny and engaging
|
| 831 |
+
dana harper music
|
| 832 |
+
11
|
| 833 |
+
greg schiano
|
| 834 |
+
three
|
| 835 |
+
death row records
|
| 836 |
+
beats by dre
|
| 837 |
+
beats by dre
|
| 838 |
+
joseph fiennes
|
| 839 |
+
james bond
|
| 840 |
+
because it is a waste of money.
|
| 841 |
+
the house of representatives
|
| 842 |
+
66-57
|
| 843 |
+
flint
|
| 844 |
+
political statements and finger pointing
|
| 845 |
+
long shirts
|
| 846 |
+
talk
|
| 847 |
+
mama
|
| 848 |
+
tapping
|
| 849 |
+
sticky
|
| 850 |
+
aaron schwarzenegger
|
| 851 |
+
swamped
|
| 852 |
+
6 months
|
| 853 |
+
legalize dACA
|
| 854 |
+
beyonce
|
| 855 |
+
the super bowl
|
| 856 |
+
black
|
| 857 |
+
american
|
| 858 |
+
how to sit like a lady
|
| 859 |
+
missamerica
|
| 860 |
+
south korean president moon jae-in
|
| 861 |
+
pyeongchang 2018
|
| 862 |
+
the emma
|
| 863 |
+
a sex addict
|
| 864 |
+
sad
|
| 865 |
+
exclamation points
|
| 866 |
+
strongly
|
| 867 |
+
twitter
|
| 868 |
+
in heaven
|
| 869 |
+
little jimmy dickens
|
| 870 |
+
pickin and grinnin
|
| 871 |
+
in heaven
|
| 872 |
+
less qualified
|
| 873 |
+
coal country
|
| 874 |
+
oliver sacks
|
| 875 |
+
beautiful minerals
|
| 876 |
+
bearcam
|
| 877 |
+
bearcam
|
| 878 |
+
exploreorg
|
| 879 |
+
music
|
| 880 |
+
the voice
|
| 881 |
+
cavs
|
| 882 |
+
hidden fences
|
| 883 |
+
pharrell
|
| 884 |
+
nasa and/or fort meade public affairs
|
| 885 |
+
comey
|
| 886 |
+
confidence
|
| 887 |
+
beliebers
|
| 888 |
+
van gaal
|
| 889 |
+
united
|
| 890 |
+
arsene wenger
|
| 891 |
+
this summer
|
| 892 |
+
voter fraud
|
| 893 |
+
voter fraud
|
| 894 |
+
incredible progress
|
| 895 |
+
kevin hart
|
| 896 |
+
google maps
|
| 897 |
+
pacman
|
| 898 |
+
world sport
|
| 899 |
+
yes
|
| 900 |
+
her/him
|
| 901 |
+
5 minutes
|
| 902 |
+
soccer
|
| 903 |
+
soccer
|
| 904 |
+
every 5 minutes
|
| 905 |
+
ed sheeran
|
| 906 |
+
ed sheeran
|
| 907 |
+
the shark
|
| 908 |
+
ed sheeran
|
| 909 |
+
hats
|
| 910 |
+
pharrell hat
|
| 911 |
+
alex gavan
|
| 912 |
+
search and rescue victims through huge debris area
|
| 913 |
+
he was effortlessly golden
|
| 914 |
+
rippaul walker
|
| 915 |
+
rippaul walker
|
| 916 |
+
effortlessly golden
|
| 917 |
+
rippaul walker
|
| 918 |
+
golden
|
| 919 |
+
florida gators
|
| 920 |
+
a nephew and Barrett sallee
|
| 921 |
+
measured and inclusive
|
| 922 |
+
michael chertoff
|
| 923 |
+
measured and inclusive
|
| 924 |
+
michael chertoff
|
| 925 |
+
2:30am
|
| 926 |
+
jfk
|
| 927 |
+
every article he's read about it
|
| 928 |
+
tuesday
|
| 929 |
+
being shocked he won
|
| 930 |
+
they say it was surprising.
|
| 931 |
+
a million
|
| 932 |
+
under a boulder
|
| 933 |
+
philae
|
| 934 |
+
chester bennington's passing
|
| 935 |
+
chester bennington
|
| 936 |
+
cousins
|
| 937 |
+
4 boys, cousins
|
| 938 |
+
gaza beach
|
| 939 |
+
she loves the pictures
|
| 940 |
+
@si_swimsuit
|
| 941 |
+
mesiah
|
| 942 |
+
mesiah
|
| 943 |
+
an interview and a major photo shoot
|
| 944 |
+
genesis
|
| 945 |
+
bruce jener
|
| 946 |
+
luis figo
|
| 947 |
+
finland
|
| 948 |
+
joseph fiennes
|
| 949 |
+
jelena
|
| 950 |
+
selena gomez
|
| 951 |
+
lavar ball
|
| 952 |
+
charles barkley
|
| 953 |
+
religion
|
| 954 |
+
yaya toure
|
| 955 |
+
death
|
| 956 |
+
selling cigarettes
|
| 957 |
+
rsd jelen
|
| 958 |
+
julienblanc
|
| 959 |
+
many scenes out of the book
|
| 960 |
+
50 shades
|
| 961 |
+
earthquake
|
| 962 |
+
this morning
|
| 963 |
+
poland
|
| 964 |
+
pacman
|
| 965 |
+
highway
|
| 966 |
+
btwn btwn btwn btw
|
| 967 |
+
he started to run for president
|
| 968 |
+
c cruz
|
| 969 |
+
section 5 public order act
|
| 970 |
+
at bristol magistrates court
|
| 971 |
+
colin kazim-richards
|
| 972 |
+
section 5 public order act
|
| 973 |
+
marche republicaine
|
| 974 |
+
je suis charlie
|
| 975 |
+
houston
|
| 976 |
+
$500,000
|
| 977 |
+
brain
|
| 978 |
+
human rights issues
|
| 979 |
+
p!nk's face during christina aguilera'
|
| 980 |
+
christina guilera
|
| 981 |
+
will smith
|
| 982 |
+
new orleans
|
| 983 |
+
tesco's bouncy aisles
|
| 984 |
+
bouncy aisles
|
| 985 |
+
yale
|
| 986 |
+
removing pane of slaves picking cotton
|
| 987 |
+
germany and ghana
|
| 988 |
+
rand paul
|
| 989 |
+
for the good of the party
|
| 990 |
+
0
|
| 991 |
+
2022
|
| 992 |
+
2022
|
| 993 |
+
late-novel/late-december
|
| 994 |
+
late november/late dc
|
| 995 |
+
2022
|
| 996 |
+
97
|
| 997 |
+
you don't drink do you?
|
| 998 |
+
the cops
|
| 999 |
+
cops
|
| 1000 |
+
fabricate
|
| 1001 |
+
humor, talent, and capacity to love
|
| 1002 |
+
brother
|
| 1003 |
+
listens carefully to the concerns of the people
|
| 1004 |
+
annulment process
|
| 1005 |
+
francis
|
| 1006 |
+
made their own
|
| 1007 |
+
okay
|
| 1008 |
+
bowling alley
|
| 1009 |
+
she is taking a different angle.
|
| 1010 |
+
mel tillis
|
| 1011 |
+
good luck with this guys
|
| 1012 |
+
cantor
|
| 1013 |
+
the knicks
|
| 1014 |
+
center
|
| 1015 |
+
germany
|
| 1016 |
+
underpants
|
| 1017 |
+
a blond
|
| 1018 |
+
university of washington
|
| 1019 |
+
anakocovic
|
| 1020 |
+
people
|
| 1021 |
+
stuck on the runway
|
| 1022 |
+
they are throwing them a pizza party.
|
| 1023 |
+
anti-racist with humour
|
| 1024 |
+
a racist character
|
| 1025 |
+
racial and religious groups
|
| 1026 |
+
tv show
|
| 1027 |
+
abortion
|
| 1028 |
+
openly heterosexual
|
| 1029 |
+
matt damon
|
| 1030 |
+
pence
|
| 1031 |
+
it isn't feasible
|
| 1032 |
+
pushed his head down in a car towards his exposed penis
|
| 1033 |
+
james franco
|
| 1034 |
+
that they have to be aware
|
| 1035 |
+
classy
|
| 1036 |
+
#rubertsfault
|
| 1037 |
+
christian
|
| 1038 |
+
10pm
|
| 1039 |
+
the fake news
|
| 1040 |
+
press the wrong button
|
| 1041 |
+
man
|
| 1042 |
+
march 15th
|
| 1043 |
+
mike porcaro
|
| 1044 |
+
it's okay if it made you laugh.
|
| 1045 |
+
power
|
| 1046 |
+
meryl
|
| 1047 |
+
take her seat
|
| 1048 |
+
his spouse and kids
|
| 1049 |
+
ted cruz
|
| 1050 |
+
it's not acceptable to attack anyone's spouse or anyone's kids
|
| 1051 |
+
since 2007
|
| 1052 |
+
letterman
|
| 1053 |
+
dial
|
| 1054 |
+
take over
|
| 1055 |
+
the twitter challenge
|
| 1056 |
+
black holes merging into one
|
| 1057 |
+
orange team has reactivated the power and sent the power turning
|
| 1058 |
+
orange
|
| 1059 |
+
white supremacists
|
| 1060 |
+
the president
|
| 1061 |
+
before they die
|
| 1062 |
+
reporters
|
| 1063 |
+
memes
|
| 1064 |
+
lady gaga's Oscars look
|
| 1065 |
+
my children
|
| 1066 |
+
venomous
|
| 1067 |
+
fia16
|
| 1068 |
+
a380
|
| 1069 |
+
we do exactly what they say
|
| 1070 |
+
terrorists
|
| 1071 |
+
empire fox finale
|
| 1072 |
+
finale
|
| 1073 |
+
stay safe and stay warm.
|
| 1074 |
+
tomorrow
|
| 1075 |
+
everybody
|
| 1076 |
+
consciously thinking
|
| 1077 |
+
cnn sport
|
| 1078 |
+
senate majlr mcconnell
|
| 1079 |
+
7 years
|
| 1080 |
+
cindy mannings
|
| 1081 |
+
rahman suspects
|
| 1082 |
+
facebook
|
| 1083 |
+
facebook down
|
| 1084 |
+
great healthcare plan
|
| 1085 |
+
a great healthcare plan
|
| 1086 |
+
worry
|
| 1087 |
+
the toffs
|
| 1088 |
+
transparency
|
| 1089 |
+
a tweet is not there.
|
| 1090 |
+
new york pc
|
| 1091 |
+
officer brian moore
|
| 1092 |
+
200
|
| 1093 |
+
act on climate
|
| 1094 |
+
leonard
|
| 1095 |
+
millions
|
| 1096 |
+
lebron james
|
| 1097 |
+
chris broussard
|
| 1098 |
+
english and spanish
|
| 1099 |
+
Sophie cruz
|
| 1100 |
+
a dog
|
| 1101 |
+
betty willis
|
| 1102 |
+
visual fabric
|
| 1103 |
+
promoting
|
| 1104 |
+
media attention
|
| 1105 |
+
jessica lang
|
| 1106 |
+
bruce jenner
|
| 1107 |
+
across the globe
|
| 1108 |
+
laughter
|
| 1109 |
+
get out and vote
|
| 1110 |
+
he learned that jon ossoff is running for congress in georgi
|
| 1111 |
+
facebook
|
| 1112 |
+
bbc reports
|
| 1113 |
+
sorority
|
| 1114 |
+
she likes it.
|
| 1115 |
+
ted cruz
|
| 1116 |
+
donald trump
|
| 1117 |
+
too busy worrying about the controllers strike.
|
| 1118 |
+
airport
|
| 1119 |
+
netanyahu's
|
| 1120 |
+
for his speech to congress
|
| 1121 |
+
a cake
|
| 1122 |
+
a grilled chicken
|
| 1123 |
+
a cake
|
| 1124 |
+
september 24, 2014
|
| 1125 |
+
nine matches
|
| 1126 |
+
four months
|
| 1127 |
+
beta awards
|
| 1128 |
+
right now
|
| 1129 |
+
pakistan
|
| 1130 |
+
navy SEALS
|
| 1131 |
+
15 years
|
| 1132 |
+
the united states
|
| 1133 |
+
kellan lutz and anakenrick47
|
| 1134 |
+
ship them
|
| 1135 |
+
sam tageson
|
| 1136 |
+
what you have
|
| 1137 |
+
his loved ones
|
| 1138 |
+
messages of support, love and encouragement
|
| 1139 |
+
pratt
|
| 1140 |
+
spielberg
|
| 1141 |
+
a partisan who takes the other side seriously
|
| 1142 |
+
grand slam
|
| 1143 |
+
netflix
|
| 1144 |
+
how to get away with murder
|
| 1145 |
+
dallas police shooting
|
| 1146 |
+
obama
|
| 1147 |
+
katie holmes' golden pants
|
| 1148 |
+
katie holmes
|
| 1149 |
+
Corey menafee
|
| 1150 |
+
Corey menafee
|
| 1151 |
+
the us chamber
|
| 1152 |
+
better and stronger trade deals
|
| 1153 |
+
flint
|
| 1154 |
+
flint
|
| 1155 |
+
february
|
| 1156 |
+
shark
|
| 1157 |
+
the bachelor producers
|
| 1158 |
+
a democrat
|
| 1159 |
+
he is a jackass.
|
| 1160 |
+
my rapist
|
| 1161 |
+
hollywood/media
|
| 1162 |
+
tomi lahren
|
| 1163 |
+
obamacare
|
| 1164 |
+
female
|
| 1165 |
+
female
|
| 1166 |
+
cup holders in movie theater seats
|
| 1167 |
+
movie theater seats
|
| 1168 |
+
impeachment of donald trump
|
| 1169 |
+
plays racist calls
|
| 1170 |
+
murray
|
| 1171 |
+
dimitrov
|
| 1172 |
+
paul walkerfdn
|
| 1173 |
+
paul walker fdn
|
| 1174 |
+
ebola, marburg, lassa, ccf, RV
|
| 1175 |
+
wilmington bsl4 lab
|
| 1176 |
+
kampala serena
|
| 1177 |
+
solar power
|
| 1178 |
+
tuesday
|
| 1179 |
+
all humanity
|
| 1180 |
+
the wheel of fortune
|
| 1181 |
+
plane
|
| 1182 |
+
vanished
|
| 1183 |
+
it's crazy
|
| 1184 |
+
people
|
| 1185 |
+
hard but liberating
|
| 1186 |
+
watch the evening news
|
| 1187 |
+
south africa
|
| 1188 |
+
every praise
|
| 1189 |
+
michael brown
|
| 1190 |
+
the movement house
|
| 1191 |
+
farmers
|
| 1192 |
+
plowing up dirt
|
| 1193 |
+
creme eggs
|
| 1194 |
+
kim kardashian pierced her daughters ears
|
| 1195 |
+
kim kardashian
|
| 1196 |
+
jimmy bieber
|
| 1197 |
+
myspace
|
| 1198 |
+
margot
|
| 1199 |
+
hittingchbot
|
| 1200 |
+
the national weather service map
|
| 1201 |
+
to serve something more important than himself
|
| 1202 |
+
john mccain
|
| 1203 |
+
a bit player in the story of america
|
evaluation/dummy_predictions/tweet-qg.txt
ADDED
|
@@ -0,0 +1,1203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
what is the name of the vine?
|
| 2 |
+
how many years in 5 seconds?
|
| 3 |
+
how many years in 5 seconds?
|
| 4 |
+
how long is the tweet?
|
| 5 |
+
who removed the aircraft from service?
|
| 6 |
+
what is the aircraft removed from service for?
|
| 7 |
+
what is candyce crying about?
|
| 8 |
+
what is the movie about?
|
| 9 |
+
what does perrieele give perrieele?
|
| 10 |
+
who is back?
|
| 11 |
+
when is the evacuation scheduled to be completed?
|
| 12 |
+
how many people have been evacuated from aleppo?
|
| 13 |
+
who is zach lowe?
|
| 14 |
+
what is zach lowe implying?
|
| 15 |
+
what virus is being discussed?
|
| 16 |
+
when did the person not get sick?
|
| 17 |
+
how many people are in the us?
|
| 18 |
+
how many prisons does the united states have?
|
| 19 |
+
where are the agents from portland sent?
|
| 20 |
+
where are the agents from?
|
| 21 |
+
who is chris cillizza of?
|
| 22 |
+
what does moron hate?
|
| 23 |
+
who had to use sideburns, a mullet and a taxi cab
|
| 24 |
+
what did jeff gordon use for test drive 2?
|
| 25 |
+
what is the tweet not visible?
|
| 26 |
+
what is the tweet not visible?
|
| 27 |
+
what show did donald trump watch last night?
|
| 28 |
+
who watched parts of nbcsnl Saturday night live?
|
| 29 |
+
where is it in america?
|
| 30 |
+
what is the grandfather doing in south carolina?
|
| 31 |
+
who could easily solve this problem?
|
| 32 |
+
where did loe and kate meet?
|
| 33 |
+
where did they fall in love?
|
| 34 |
+
where did the fans attend the defeat?
|
| 35 |
+
what was offered to the fans who attended the defeat at seattle?
|
| 36 |
+
who is the tweet from?
|
| 37 |
+
how many portraits are there?
|
| 38 |
+
what is the white house?
|
| 39 |
+
what is a shame?
|
| 40 |
+
what are the croatian police waiting for?
|
| 41 |
+
where is the border?
|
| 42 |
+
who does lost lettermen wish they had something poignant to say about?
|
| 43 |
+
who did the apology say took offense?
|
| 44 |
+
what did the apology say?
|
| 45 |
+
why did the apology express regret?
|
| 46 |
+
who does farrah franklin hate?
|
| 47 |
+
what kind of media does farrah hate?
|
| 48 |
+
what has atletico lost?
|
| 49 |
+
who is falling behind improving rivals?
|
| 50 |
+
who is standing in defence of immigrants?
|
| 51 |
+
what are the durbanites standing in defence of?
|
| 52 |
+
where is the world hickory championship being held?
|
| 53 |
+
where is the world hickory championship being supported?
|
| 54 |
+
what is hitting john d. sutter's face like snow?
|
| 55 |
+
what is the tulip seeds hitting john's face like?
|
| 56 |
+
where was the treasure hunter arrested?
|
| 57 |
+
who arrested the fugitive treasure hunter?
|
| 58 |
+
what was a great honor until you showed up?
|
| 59 |
+
where was a great honor until you showed up?
|
| 60 |
+
how long ago did clem bessade tweet about bring back our girls?
|
| 61 |
+
what hashtag is being used?
|
| 62 |
+
who should boycott the oscars?
|
| 63 |
+
what is chris rock boycotting?
|
| 64 |
+
who is the tweeter referring to?
|
| 65 |
+
who is the lb who is accused of alleged comments?
|
| 66 |
+
what does anomaly rho esq want her mama to
|
| 67 |
+
who died?
|
| 68 |
+
what happened to paul walker?
|
| 69 |
+
what movie is mary j. blige saddened by?
|
| 70 |
+
what happened to paul walker?
|
| 71 |
+
what is paul walker's personality?
|
| 72 |
+
what does capoeira MMA want to know about people praying?
|
| 73 |
+
who is asking if people are praying every day?
|
| 74 |
+
what does joseph o'brien need?
|
| 75 |
+
what did the australian horse see coming towards him?
|
| 76 |
+
who is donald trump asking what he can do to help?
|
| 77 |
+
where is donald trump from?
|
| 78 |
+
who died this morning?
|
| 79 |
+
who was roger rees?
|
| 80 |
+
what is the future of?
|
| 81 |
+
what will be brought back?
|
| 82 |
+
what are you consigning?
|
| 83 |
+
who is consigning kkk jokes?
|
| 84 |
+
who directed this biopic?
|
| 85 |
+
what is the name of the biopic?
|
| 86 |
+
what should eva g l do?
|
| 87 |
+
who is eva gl upset with?
|
| 88 |
+
who is senator rand paul agreeing with?
|
| 89 |
+
who did donald trump say had reported incidental contacts with?
|
| 90 |
+
who is delighted by the news?
|
| 91 |
+
who is expecting a baby?
|
| 92 |
+
what does jimmy think of the story?
|
| 93 |
+
what newspaper is the story from?
|
| 94 |
+
who is the black man?
|
| 95 |
+
what number of guns does a black man have?
|
| 96 |
+
who will be missed?
|
| 97 |
+
what is potus doing?
|
| 98 |
+
what might happen to angela lansbury?
|
| 99 |
+
who was artie langle sorry to hear about?
|
| 100 |
+
who is artie langle sorry to hear about?
|
| 101 |
+
who is angry that so many obama democrats voted for donal
|
| 102 |
+
what is the democrats angry about?
|
| 103 |
+
how long did lz granderson report?
|
| 104 |
+
what did lz granderson believe pOTUS won?
|
| 105 |
+
what show is jon stewart a long-time host of?
|
| 106 |
+
what league is this article in?
|
| 107 |
+
what group is the final standings for?
|
| 108 |
+
how late is the final standings for group b?
|
| 109 |
+
what group is the final standings for?
|
| 110 |
+
what did everyone want?
|
| 111 |
+
who got married yesterday?
|
| 112 |
+
what happened yesterday?
|
| 113 |
+
where is the pope?
|
| 114 |
+
how many photos has chris denshuick been in?
|
| 115 |
+
who made a huge impact everywhere?
|
| 116 |
+
what does he think of jacob lescenskii?
|
| 117 |
+
who is standing up with her slurpee up?
|
| 118 |
+
what is beyonce standing with?
|
| 119 |
+
what website is being discussed?
|
| 120 |
+
how much chance does king james return to cavs?
|
| 121 |
+
what did people fleeing do?
|
| 122 |
+
where did people fleeing intensified fighting in mosul head?
|
| 123 |
+
where is the team working?
|
| 124 |
+
how many dead bodies were received?
|
| 125 |
+
what does ryan broderick want to kill katy?
|
| 126 |
+
who is ryan broderick asking to kill?
|
| 127 |
+
who is zahir's mother waiting to see?
|
| 128 |
+
what does zahir's mother give to the girls?
|
| 129 |
+
what does zahir's mother wait for?
|
| 130 |
+
what are they delighted to confirm?
|
| 131 |
+
how can you get to know the new owners and management team?
|
| 132 |
+
who is the new owner of the car?
|
| 133 |
+
why does donald trump not know why?
|
| 134 |
+
who does donald trump feel sorry for?
|
| 135 |
+
who will not attend the inauguration of donald trump?
|
| 136 |
+
who does yvette d. clarke insult?
|
| 137 |
+
who is being attacked?
|
| 138 |
+
why are attacks on potus ridiculous?
|
| 139 |
+
what does rand paul want to do?
|
| 140 |
+
how much time does rand paul want to spend voting in the senate?
|
| 141 |
+
why did the khans thank the nc in phl?
|
| 142 |
+
who did suhaib webb say he was grateful for?
|
| 143 |
+
what does marty hope to show drake?
|
| 144 |
+
where is drake coming to?
|
| 145 |
+
who is the tweet about?
|
| 146 |
+
what has the tweet been doing for too long?
|
| 147 |
+
who can nba nba cousins do a little
|
| 148 |
+
who can do a little bit of everything for the sacramento king
|
| 149 |
+
who is dr. trump tweeting about?
|
| 150 |
+
what is iran doing?
|
| 151 |
+
what is tsarnaev reading?
|
| 152 |
+
who is granit xhaka confident will beat honduras?
|
| 153 |
+
who will switzerland beat?
|
| 154 |
+
how many nations are out of the world cup?
|
| 155 |
+
what team is out of the world cup?
|
| 156 |
+
who broke down talking about their loved ones during the orlando's pulse nightclub
|
| 157 |
+
where did wilmariel and jason meet?
|
| 158 |
+
who is chester bennington praying for?
|
| 159 |
+
who was a legend?
|
| 160 |
+
what did pepe reina and xabi alonso enjoy the solar eclipse with
|
| 161 |
+
what kind of eclipse is being enjoyed?
|
| 162 |
+
what does donald trump want to do?
|
| 163 |
+
what event is marcia l. fudge not attending?
|
| 164 |
+
where will marcia l. fudge be at home?
|
| 165 |
+
who will throw out the first pitch?
|
| 166 |
+
what is the offer for fans donating animal food/toy?
|
| 167 |
+
who is lebron james' favorite player?
|
| 168 |
+
what game is lebron james watching?
|
| 169 |
+
what year is the house in?
|
| 170 |
+
who are the current favorites to pick up the house in 2018?
|
| 171 |
+
what religion does jada pinkett smith not belong to?
|
| 172 |
+
where has jada pinkett smith prayed?
|
| 173 |
+
who is being criticized?
|
| 174 |
+
what is the author recommending for people who are judging women?
|
| 175 |
+
how far away can multiple devices be recharged?
|
| 176 |
+
who approved the first wireless, "power-at-a-distance" charging technology
|
| 177 |
+
what does no one prepare you for?
|
| 178 |
+
who is gone?
|
| 179 |
+
who is elizabeth banks buying tix for?
|
| 180 |
+
what movie is elizabeth banks buying her tix for?
|
| 181 |
+
what is grace van der waal performing?
|
| 182 |
+
who has not spoken to roger in a long time?
|
| 183 |
+
what should we ask before bombing syria?
|
| 184 |
+
what does a brief bombing campaign make us feel?
|
| 185 |
+
where is the winter storm warning going strong?
|
| 186 |
+
what is the weather warning for?
|
| 187 |
+
who did mya call at a sleepover?
|
| 188 |
+
who ran the phone bill up?
|
| 189 |
+
who will steal the next deadpool movie?
|
| 190 |
+
what movie is domino stealing?
|
| 191 |
+
what is the third one trying to tie up?
|
| 192 |
+
what is the third one trying to tie up?
|
| 193 |
+
who does sadie abood thank for not choosing what they get served?
|
| 194 |
+
why did the white house put sanctions in place?
|
| 195 |
+
what did the white house put in place to get a diplomatic resolution?
|
| 196 |
+
who tried to break racial barriers?
|
| 197 |
+
what did the delegates hold up?
|
| 198 |
+
what is being discussed at COP22?
|
| 199 |
+
where is the climate action being held?
|
| 200 |
+
what are the globe and delegates holding up solar lanterns in honor of?
|
| 201 |
+
what command is the force operating under?
|
| 202 |
+
what are the iraqi forces working on?
|
| 203 |
+
who is being talked about?
|
| 204 |
+
who is talking about selling their company?
|
| 205 |
+
what show did nathan ryan tweet about?
|
| 206 |
+
what does beyonce say about the superbowl?
|
| 207 |
+
what message does the new pope have?
|
| 208 |
+
what does the message of basic human decency translate into?
|
| 209 |
+
what message does the new pope have?
|
| 210 |
+
what did he do with his friends?
|
| 211 |
+
how long is the redstate gathering?
|
| 212 |
+
what event is being discussed?
|
| 213 |
+
who was the person who passed away?
|
| 214 |
+
who is celebrating?
|
| 215 |
+
who has everyone seen?
|
| 216 |
+
who is the person who lost to grease live?
|
| 217 |
+
what awards did beyonce win?
|
| 218 |
+
who doesn't know the identity of the creator of the show she's reviewing?
|
| 219 |
+
who is the creator of the show?
|
| 220 |
+
what did he tweet about the movie?
|
| 221 |
+
who was the protester?
|
| 222 |
+
what did the protester give the cop?
|
| 223 |
+
why was he inspired by ijesse williams speech?
|
| 224 |
+
who was he inspired by?
|
| 225 |
+
who is going to ask you a very important question tomorrow morning?
|
| 226 |
+
who is going to ask you a very important question tomorrow morning?
|
| 227 |
+
when is jonathan going to ask you all a very important question?
|
| 228 |
+
what is madeone of the pioneers?
|
| 229 |
+
what did joan nethea say was the reason for her tweet?
|
| 230 |
+
what year is the snow blitz?
|
| 231 |
+
where is the snow blitz?
|
| 232 |
+
who must become the next president of the united states?
|
| 233 |
+
where is hillary clinton?
|
| 234 |
+
who got married?
|
| 235 |
+
where did david burtka and neil harris get married?
|
| 236 |
+
what did david burtka and neil do over the weekend?
|
| 237 |
+
where did david burtka and neil harris get married?
|
| 238 |
+
what team is phillips trading from?
|
| 239 |
+
what will cin pay?
|
| 240 |
+
where did dale bumps die?
|
| 241 |
+
when was what3words posted?
|
| 242 |
+
how many words are used to address favelas?
|
| 243 |
+
what does mia farrow think the obamas represent?
|
| 244 |
+
who is mia farrow going to miss?
|
| 245 |
+
why is cmoore asking you to watch her turn?
|
| 246 |
+
what website is this turn of little cmoore?
|
| 247 |
+
what time of day does the crickets think it is?
|
| 248 |
+
what did the crickets do during the solar eclipse?
|
| 249 |
+
who totally fabricated what donald trump said to the wife of a soldier
|
| 250 |
+
who is all the people looking funny in the light?
|
| 251 |
+
where are all the people looking funny?
|
| 252 |
+
what was one of the greatest honors he's had as an athlete?
|
| 253 |
+
who was matt saddened by?
|
| 254 |
+
what is not in guac?
|
| 255 |
+
what does president obama respect?
|
| 256 |
+
who is laverne cox sending love to?
|
| 257 |
+
what does laverne cox need to get ready for?
|
| 258 |
+
when was the person rescued?
|
| 259 |
+
where was the person rescued?
|
| 260 |
+
where is the secret menu?
|
| 261 |
+
where is the secret menu?
|
| 262 |
+
where is the secret menu?
|
| 263 |
+
when did the secret menu at mcdonald's UK come out?
|
| 264 |
+
what does the tweeter think?
|
| 265 |
+
what does mcdonalds uk not exist?
|
| 266 |
+
where is the secret menu?
|
| 267 |
+
what is being disagreed about?
|
| 268 |
+
who are more nuanced?
|
| 269 |
+
what is the reason for pools being blue?
|
| 270 |
+
who is comparing the finale of true blood to the finale of true blood?
|
| 271 |
+
what series finale was horrible?
|
| 272 |
+
where did big bird and baby bear go?
|
| 273 |
+
who has been to museum modern art before?
|
| 274 |
+
who is dylan waiting for?
|
| 275 |
+
what has gwen stefani done to?
|
| 276 |
+
who has done a face smear?
|
| 277 |
+
who asked about the restaurant receipt thing?
|
| 278 |
+
what did lesean mccoy ask about?
|
| 279 |
+
who has millions suffered?
|
| 280 |
+
how long is the clock still at?
|
| 281 |
+
what is rachel bronson's job?
|
| 282 |
+
what is part of the agenda to ban all abortion?
|
| 283 |
+
what is the reason for 20 week abortion bans?
|
| 284 |
+
what did trish do to her baby?
|
| 285 |
+
what did trish keep her baby for?
|
| 286 |
+
who is the observant westworld visitor?
|
| 287 |
+
who holds a gun to head?
|
| 288 |
+
what is not food?
|
| 289 |
+
who says cheese dust is not food?
|
| 290 |
+
what is the difference between comparing and reminding?
|
| 291 |
+
what does apple remind seth of?
|
| 292 |
+
who did serge ibaka lift over?
|
| 293 |
+
who was serge ibaka returning to?
|
| 294 |
+
who organized the protest in union square?
|
| 295 |
+
where is the protest?
|
| 296 |
+
what will happen to those who believe in justice and dignity?
|
| 297 |
+
why is he arriving in surabaya?
|
| 298 |
+
where is nisa going home?
|
| 299 |
+
what is makada a little?
|
| 300 |
+
what will iphones have?
|
| 301 |
+
where is the match being played?
|
| 302 |
+
what advantage did errol cnn think it was?
|
| 303 |
+
where did errol cnn win the match?
|
| 304 |
+
what does this feel like?
|
| 305 |
+
where does this feel like a stair master?
|
| 306 |
+
what does he think of the stairs?
|
| 307 |
+
who played a key role in the super bowl run?
|
| 308 |
+
who played backup quarterbacks in the super bowl run?
|
| 309 |
+
who is the person who ignored barricade?
|
| 310 |
+
how many cops pounce on the protester?
|
| 311 |
+
who brought in the immigrants?
|
| 312 |
+
how long have they been in our country?
|
| 313 |
+
what has been accomplished?
|
| 314 |
+
what program is bigelow aerospace involved in?
|
| 315 |
+
who is the author of the tweet?
|
| 316 |
+
who is the author of the tweet?
|
| 317 |
+
what have they communicated this on?
|
| 318 |
+
who is the subject of the tweet?
|
| 319 |
+
who did narendra modi talk with earlier in the evening?
|
| 320 |
+
what did nawaz sharif share?
|
| 321 |
+
what did mariah carey do in high school?
|
| 322 |
+
who was nicknamed "mirage" in high school?
|
| 323 |
+
who ended hopes of the neutrals' favorite team?
|
| 324 |
+
who ended hopes of the neutrals' favorite team?
|
| 325 |
+
where did rory meet the fresh prince?
|
| 326 |
+
who did donald trump go on?
|
| 327 |
+
who went on jimmy fallon?
|
| 328 |
+
who will accept the nomination?
|
| 329 |
+
who will accept the nomination?
|
| 330 |
+
what should lena do to see hillary clinton accept the nomination?
|
| 331 |
+
what will lena dunham be doing?
|
| 332 |
+
who is john d. sutter hoping to meet?
|
| 333 |
+
what is the man doing?
|
| 334 |
+
who is asking for barricade to be removed?
|
| 335 |
+
who does emma watson greet?
|
| 336 |
+
what did the tweeter feel when watching american horror story?
|
| 337 |
+
what does he hope someone gets to the bottom of?
|
| 338 |
+
what does he hope someone gets to the bottom of?
|
| 339 |
+
what might people be more outraged by?
|
| 340 |
+
why would people be more outraged?
|
| 341 |
+
what is the boat equivalent weight?
|
| 342 |
+
who is trying to make all the gear fit?
|
| 343 |
+
what is jo ready for?
|
| 344 |
+
what does jo carry in the backseat of his car?
|
| 345 |
+
who is sending love to julian louis-dreyfus?
|
| 346 |
+
who is sending love to?
|
| 347 |
+
what happened to the people in vegas?
|
| 348 |
+
where is the event being held?
|
| 349 |
+
who left prince philip alone?
|
| 350 |
+
what did prince philip let us put a picture of his wife on?
|
| 351 |
+
who had the wrong team?
|
| 352 |
+
what does kraft say many jump to conclusions about?
|
| 353 |
+
what does kraft expect if no wrongdoing is found?
|
| 354 |
+
what award did cristiano win?
|
| 355 |
+
how many times has cristiano won the ballon d'or?
|
| 356 |
+
what region is jan egeland visiting?
|
| 357 |
+
what region is jan egeland visiting?
|
| 358 |
+
what is robin williams doing?
|
| 359 |
+
where is the super eagles training session?
|
| 360 |
+
why is the super eagles flying from porto alegre?
|
| 361 |
+
what kind of attacks are being attacked?
|
| 362 |
+
who is jeb bush tweeting about?
|
| 363 |
+
who is the real benghazi?
|
| 364 |
+
what is benghazi?
|
| 365 |
+
who stopped chris rock?
|
| 366 |
+
what did the cops stop him by?
|
| 367 |
+
what did the cops stop him by?
|
| 368 |
+
who stopped chris rock?
|
| 369 |
+
what does covfefe detest?
|
| 370 |
+
what symbol is nearly shaped like?
|
| 371 |
+
what is the definition of being in the travel industry?
|
| 372 |
+
what are destinations not?
|
| 373 |
+
who is mac mourning?
|
| 374 |
+
why is mac miller drinking a dr pepper?
|
| 375 |
+
what did everyone who used speakamerica oppose?
|
| 376 |
+
who is the country of?
|
| 377 |
+
what was shonda rhimes doing?
|
| 378 |
+
what day was the worst day of the entire week?
|
| 379 |
+
what show did stephen at home miss?
|
| 380 |
+
what did bobby jindal do last night?
|
| 381 |
+
what did he do with the stick?
|
| 382 |
+
what did henrik sedin give to a young canucks fan?
|
| 383 |
+
who was hit by a puck?
|
| 384 |
+
why did trump shove montenegro pm?
|
| 385 |
+
who is trump allegedly shoveling?
|
| 386 |
+
what is the only choice for your future?
|
| 387 |
+
how many choices are there for romney?
|
| 388 |
+
who is the only choice for your future?
|
| 389 |
+
who is the only choice for your future?
|
| 390 |
+
who is the only choice for your future?
|
| 391 |
+
who is the only choice for your future?
|
| 392 |
+
what does luis figo want to give back?
|
| 393 |
+
who announced his candidacy for the fifa presidency?
|
| 394 |
+
what awards did trump watch tonight?
|
| 395 |
+
who is patti lupone tweeting to?
|
| 396 |
+
what is germany doing?
|
| 397 |
+
what country does senorrin hatch think welcomes the best and bright
|
| 398 |
+
who is looking forward to getting a more detailed explanation regarding the president's comments?
|
| 399 |
+
who didn't even perform tonight?
|
| 400 |
+
who didn't even perform tonight?
|
| 401 |
+
who tampered with footballs?
|
| 402 |
+
who does robert kraft expect an apology from?
|
| 403 |
+
who is rebecca nicks tweeting about patriots tamper
|
| 404 |
+
what does robert kraft expect from the nfl?
|
| 405 |
+
what is getting more violent in kenting?
|
| 406 |
+
where is the super typhoon?
|
| 407 |
+
what country is trump supporting?
|
| 408 |
+
what kind of support does trump thank trump for?
|
| 409 |
+
what is being taken off the table?
|
| 410 |
+
what can negotiators do now?
|
| 411 |
+
what holiday is bryce dwight wishing for?
|
| 412 |
+
who has taught, respected, included, loved and lifted bryce?
|
| 413 |
+
how many kids are at the airport?
|
| 414 |
+
what is joel trying to do?
|
| 415 |
+
what did stephen fry hope for?
|
| 416 |
+
how is stephen fry feeling?
|
| 417 |
+
who says he's gay because he watches ru paul's drag
|
| 418 |
+
what does the kid think he is?
|
| 419 |
+
what makes it feel even hotter?
|
| 420 |
+
what temperature is it?
|
| 421 |
+
where did hamilton scream?
|
| 422 |
+
who screamed "here we go yo, here we go
|
| 423 |
+
who committed to heat?
|
| 424 |
+
who is a teammate?
|
| 425 |
+
what is happening to google glass?
|
| 426 |
+
what is being retooled?
|
| 427 |
+
who posed with his cromo de panini?
|
| 428 |
+
what is trying to kill me?
|
| 429 |
+
what is the american horror story trying to do?
|
| 430 |
+
what is the american horror story trying to do?
|
| 431 |
+
who is the host of manutd?
|
| 432 |
+
when will lfc host manutd at anfield?
|
| 433 |
+
where is manutd playing?
|
| 434 |
+
who is the host of manutd at anfield?
|
| 435 |
+
when will lfc host manutd at anfield?
|
| 436 |
+
where did the air show crash occur?
|
| 437 |
+
what crash happened?
|
| 438 |
+
where were civilians evacuated?
|
| 439 |
+
who is moving in?
|
| 440 |
+
who is the person who wants everybody to sign up to tidal?
|
| 441 |
+
what does hov need to do if he wants everybody to sign up to t
|
| 442 |
+
who is the video for milf money?
|
| 443 |
+
what is fergie's video for?
|
| 444 |
+
who is sherrod brown's mentor?
|
| 445 |
+
who is sherrod brown's friend?
|
| 446 |
+
who is a dog who wrongfully comments on donald trump?
|
| 447 |
+
why is it necessary to comment on ariannahuff?
|
| 448 |
+
what has been done within durant's inner circle?
|
| 449 |
+
how did durant ride the endorsement wave of change?
|
| 450 |
+
what is the rnc forced to do?
|
| 451 |
+
what is the attack about?
|
| 452 |
+
what does the rnc delete?
|
| 453 |
+
what is in the water?
|
| 454 |
+
how much rainfall did phoenix have in the past 7 hours?
|
| 455 |
+
how many inches of rainfall did phoenix have in just the past 7 hours?
|
| 456 |
+
when could lebron's meeting with pat riley take place?
|
| 457 |
+
where is lebron's meeting with pat riley going to take place?
|
| 458 |
+
how long has he been locked inside the bookstore?
|
| 459 |
+
where is dwill locked in?
|
| 460 |
+
where did the robot land?
|
| 461 |
+
who ran in the olympics?
|
| 462 |
+
what did the man have?
|
| 463 |
+
who is jada pinkett smith celebrating birthday?
|
| 464 |
+
what does jada pinkett smith say pac is cradled in her
|
| 465 |
+
what is the author's opinion about thomas hitzlsperger?
|
| 466 |
+
who is thomas hitzlsperger?
|
| 467 |
+
who is jedezal's fan?
|
| 468 |
+
what is kevin hynson's opinion of jdeezal
|
| 469 |
+
who is jedezal's fan?
|
| 470 |
+
what is jdeezal's new tattoo?
|
| 471 |
+
what did john boyega not see?
|
| 472 |
+
what does the lakers game deserve?
|
| 473 |
+
how much is the shirt being sold for?
|
| 474 |
+
what did kendall and kylie put on a tupac shirt
|
| 475 |
+
what is sam smith dressed like?
|
| 476 |
+
who is the top 10 tweeter in the world?
|
| 477 |
+
what should the issue come with?
|
| 478 |
+
who was on the cover of vogue?
|
| 479 |
+
who is back together?
|
| 480 |
+
what are worth waiting for?
|
| 481 |
+
why did the national science fdn raise an eyebrow?
|
| 482 |
+
what did leonard nimoy do?
|
| 483 |
+
what did aaron ekblad sign?
|
| 484 |
+
who signed aaron ekblad's first hockey contract?
|
| 485 |
+
what was dragged through emotional ambiguity?
|
| 486 |
+
what should you have?
|
| 487 |
+
why is snow miser angry?
|
| 488 |
+
what is snow miser's relationship to dallas?
|
| 489 |
+
who did cs nkaisserry and ps ambjuma
|
| 490 |
+
where did the evacuated passengers have lunch?
|
| 491 |
+
where did the evacuated passengers have lunch?
|
| 492 |
+
who did cs nkaisserry and ps ambjuma
|
| 493 |
+
what does the patriots thrive on?
|
| 494 |
+
what does greg cosell think of patriots?
|
| 495 |
+
what kind of artist is nicki minaj?
|
| 496 |
+
what would be nominated for?
|
| 497 |
+
why did many people call the stations and dispatch center?
|
| 498 |
+
how does phoenix police feel about the support?
|
| 499 |
+
who took millions of $'s in special interest money?
|
| 500 |
+
what money did jeb bush take?
|
| 501 |
+
where is the us embassy located?
|
| 502 |
+
what is the image of the us embassy in france?
|
| 503 |
+
where are the new 970 police officer positions coming?
|
| 504 |
+
how many police officer positions are coming to cpd?
|
| 505 |
+
what does matt o'brien like?
|
| 506 |
+
when did matthew o'brien tweet about clinton's gold and
|
| 507 |
+
what event is the most awkward moment?
|
| 508 |
+
what year did the oscars take place?
|
| 509 |
+
who is the most awkward moment?
|
| 510 |
+
what does ryan parker say about ben bradlee?
|
| 511 |
+
who is ryan parker tweeting about?
|
| 512 |
+
what does he never monkey with?
|
| 513 |
+
who is ryan parker tweeting about?
|
| 514 |
+
how does jimberlake feel?
|
| 515 |
+
what did jimberlake do?
|
| 516 |
+
how old was morgan ali when he died?
|
| 517 |
+
who is dead at 74?
|
| 518 |
+
who attacked lesdoggg?
|
| 519 |
+
what happened to frank victor?
|
| 520 |
+
who is steve israel asking to make the interview movie available in dvd?
|
| 521 |
+
who is asking for the interview movie to be made available in dvd?
|
| 522 |
+
what is it nice to have?
|
| 523 |
+
what type of aircraft is being operated by another american airline?
|
| 524 |
+
what was the finale last night?
|
| 525 |
+
what was jojo doing last night?
|
| 526 |
+
what is the album in the top of?
|
| 527 |
+
what is joey fatone doing with the album?
|
| 528 |
+
who is pregnant again?
|
| 529 |
+
how many twins are there?
|
| 530 |
+
how long ago did the notorious b.i.g. lose their superstar?
|
| 531 |
+
who was the greatest rapper of all time?
|
| 532 |
+
how is mara wilson going to be about her relationships?
|
| 533 |
+
what is mara wilson going to be about her relationships?
|
| 534 |
+
who will threaten shutdown?
|
| 535 |
+
what will the dems threaten?
|
| 536 |
+
when is the shutdown of the military?
|
| 537 |
+
when did he tweet this tweet?
|
| 538 |
+
what hashtag is being used?
|
| 539 |
+
what is laverne cox taking a stand against?
|
| 540 |
+
who is taking a stand against bullying?
|
| 541 |
+
who is trying to find an acceptable rationale for comey's firing?
|
| 542 |
+
who was one of al yankovic's all-time heroes?
|
| 543 |
+
who was one of al yankovic's all-time heroes?
|
| 544 |
+
how many goals has lionel messi scored?
|
| 545 |
+
who has lionel messi scored 269 goals in la liga games?
|
| 546 |
+
who might be one of the greatest minds ever in pop culture?
|
| 547 |
+
who might be one of the greatest minds ever in pop culture?
|
| 548 |
+
who is the movie being filmed with?
|
| 549 |
+
what did dwayne johnson team with apple to do?
|
| 550 |
+
who does brooklyn heare love?
|
| 551 |
+
who did gwenstefani fire?
|
| 552 |
+
what happened to malayan airlines?
|
| 553 |
+
where was the last known position?
|
| 554 |
+
who can you take a selfie with?
|
| 555 |
+
how many presidents are mentioned in the tweet?
|
| 556 |
+
what is dean ready to do?
|
| 557 |
+
who is ready to go black?
|
| 558 |
+
what is growing home doing on instagram?
|
| 559 |
+
what is growing home doing lately?
|
| 560 |
+
what did keith lamont scott do?
|
| 561 |
+
who should release police video of the keith lamont scott shooting?
|
| 562 |
+
who is manuela arbelaez tweeting about?
|
| 563 |
+
what does manuela arbelaez want to give away on the show?
|
| 564 |
+
why are women protesting?
|
| 565 |
+
what should the protestors do?
|
| 566 |
+
who is johnalyn peluso thanking?
|
| 567 |
+
what is johnalyn proud to do?
|
| 568 |
+
who is jada pinkett smith thanking for bringing heart and spirit to their
|
| 569 |
+
what do the girls learn from the mentors?
|
| 570 |
+
what kind of science is being taught?
|
| 571 |
+
how will dee treat justin?
|
| 572 |
+
who is dee bieber referring to?
|
| 573 |
+
what should dan do first?
|
| 574 |
+
where were the travelers stranded?
|
| 575 |
+
who is rakim kaney?
|
| 576 |
+
who is mr. carter thanking?
|
| 577 |
+
who is jonah peretti congratulating?
|
| 578 |
+
who is jonah peretti congratulating?
|
| 579 |
+
who is jonah peretti congratulating?
|
| 580 |
+
what was the buzzfeed team celebrating?
|
| 581 |
+
what is certainly in the air?
|
| 582 |
+
who is a tweeter?
|
| 583 |
+
what is real?
|
| 584 |
+
who did chrissy teigen love?
|
| 585 |
+
where did lebron james and dwyane wade meet?
|
| 586 |
+
who is expected to be on a flight back to miami with lebron james
|
| 587 |
+
who is the vfw national HQ tweeting about?
|
| 588 |
+
what event is being supported?
|
| 589 |
+
what are the amazing photos from?
|
| 590 |
+
what link is being used?
|
| 591 |
+
how did ian poulter feel about his performance today?
|
| 592 |
+
who did ian poulter congratulate?
|
| 593 |
+
what does the judge say you can't do?
|
| 594 |
+
what did the judge say he did at residence?
|
| 595 |
+
what awards did bette midler arrive at?
|
| 596 |
+
what is bette doing?
|
| 597 |
+
how much does she need to be?
|
| 598 |
+
how much does she want to get?
|
| 599 |
+
what is the tone of the tweet?
|
| 600 |
+
who is tracey bellew referring to?
|
| 601 |
+
what sports event is being discussed?
|
| 602 |
+
how many people are laughing at the super bowl?
|
| 603 |
+
what instrument is lady gaga playing?
|
| 604 |
+
who is performing bad romance?
|
| 605 |
+
what is the agency restoring?
|
| 606 |
+
when is the action taking place?
|
| 607 |
+
what game did jim mcelwain strike the best surrender cobra pose
|
| 608 |
+
who struck the best surrender cobra pose?
|
| 609 |
+
who added de11e donne to the dc family?
|
| 610 |
+
who did dwyane wade apologize to?
|
| 611 |
+
who did dwyane wade apologize to?
|
| 612 |
+
where was scottie upshall invited to?
|
| 613 |
+
what is the team close to winning?
|
| 614 |
+
what happened to david cassidy tonight?
|
| 615 |
+
who will miss david cassidy?
|
| 616 |
+
what is the dream of japan?
|
| 617 |
+
who is the jockey of just a way?
|
| 618 |
+
who is the jockey of just a way?
|
| 619 |
+
who is going to look nice in the Spurs jersey?
|
| 620 |
+
what does hillary clinton want you to do?
|
| 621 |
+
who is voting for your conscience?
|
| 622 |
+
what is the best way to get amped up for a game in johnstown
|
| 623 |
+
what is the best way to get amped up for a game in johnstown
|
| 624 |
+
who is the best way to get amped up for a game in johnstown
|
| 625 |
+
where is the game being played?
|
| 626 |
+
what was controversial?
|
| 627 |
+
what magazine does josh levs subscribe to?
|
| 628 |
+
what is the situation in nepal?
|
| 629 |
+
what is the process of doing?
|
| 630 |
+
who did aaron gordon throw an inbound pass off?
|
| 631 |
+
who throws an inbound pass off marcus morris' back?
|
| 632 |
+
who underlines one of modern feminism's real problems?
|
| 633 |
+
when were the real battles fought and won?
|
| 634 |
+
who can't believe scenes in kiev?
|
| 635 |
+
what can't sergey_bubka believe?
|
| 636 |
+
what does the couple worry about?
|
| 637 |
+
what happened to the couple?
|
| 638 |
+
what color is the hulk tie?
|
| 639 |
+
what is sen. murkowski wearing?
|
| 640 |
+
who is celebrating x's victory?
|
| 641 |
+
what is bill murray celebrating?
|
| 642 |
+
what is bill murray celebrating?
|
| 643 |
+
who is celebrating x's victory?
|
| 644 |
+
what will spicer keep his nose in?
|
| 645 |
+
what can spicer not carry?
|
| 646 |
+
what is the word "chicago" used for?
|
| 647 |
+
why is it not the way to go?
|
| 648 |
+
who hacked lesdoggg's site?
|
| 649 |
+
what should anyone who hacked lesdoggg's site be doing?
|
| 650 |
+
who should be concerned about this crisis?
|
| 651 |
+
what happened at the scene?
|
| 652 |
+
how much is wes woodland down to?
|
| 653 |
+
how much weight is wes woodland down to?
|
| 654 |
+
who is getting divorced?
|
| 655 |
+
what are gwyneth paltrow and chris martin doing
|
| 656 |
+
what did gwyneth paltrow and chris martin
|
| 657 |
+
how long did robyn watch the bachelorette finale?
|
| 658 |
+
what is robyn sarah watching?
|
| 659 |
+
when will robin van persie be retiring?
|
| 660 |
+
when will robin van persie be retired?
|
| 661 |
+
who did donald trump want to share with russia?
|
| 662 |
+
who did donald trump want to share with?
|
| 663 |
+
who did donald trump want to share with?
|
| 664 |
+
what is the name of the event?
|
| 665 |
+
who was taken too soon?
|
| 666 |
+
what did elijah wood thank adam lennie for
|
| 667 |
+
what is george auriemma's profession?
|
| 668 |
+
who is the only coach in major college or pro sports to win 10 titles?
|
| 669 |
+
where is the race going?
|
| 670 |
+
who is claude gray sorry to be sorry about?
|
| 671 |
+
who won the second term?
|
| 672 |
+
how many terms did hassan rouhani win?
|
| 673 |
+
who is the celebrity who set the record straight on pregnancy rumors?
|
| 674 |
+
what was eva laongoria having?
|
| 675 |
+
what is the record straight on?
|
| 676 |
+
what was hillary clinton doing?
|
| 677 |
+
why did hillary clinton load the van?
|
| 678 |
+
what caused the model to be undone?
|
| 679 |
+
who was undone by the heat at yeezy?
|
| 680 |
+
where is the soberanes fire?
|
| 681 |
+
what does speaker ryan think minds will do?
|
| 682 |
+
what is the criticism of the roosevelt tax bill?
|
| 683 |
+
where is the first state to raise smoking age to 21?
|
| 684 |
+
when did hawaii become the first state to raise smoking age to 21?
|
| 685 |
+
how can you help the subject of the PSA?
|
| 686 |
+
what is the subject of the PSA getting on the comments?
|
| 687 |
+
who is in charge of google glass?
|
| 688 |
+
who is google's best designer?
|
| 689 |
+
what is the lineup called?
|
| 690 |
+
what is the lineup called?
|
| 691 |
+
who is the head coach of usmnt?
|
| 692 |
+
who is the head coach of usmnt?
|
| 693 |
+
what is in horrible shape?
|
| 694 |
+
who should spend more time fixing and helping his district?
|
| 695 |
+
who was fired?
|
| 696 |
+
how many hours after the titans fired mike munchak?
|
| 697 |
+
what park is mentioned?
|
| 698 |
+
what is the radar doing?
|
| 699 |
+
who is essentially his entire dating life in one scene?
|
| 700 |
+
who drops a chip in her hair?
|
| 701 |
+
what two places did officials retrace the ebola patient's foots
|
| 702 |
+
what did officials retrace?
|
| 703 |
+
what political think pieces are being bombarded with?
|
| 704 |
+
when are the political "ideas of march" think pieces going to be bombarded
|
| 705 |
+
what does michael moore say about being on the roof of his home?
|
| 706 |
+
what did invaders do to the roof of their home?
|
| 707 |
+
why did she make this collage?
|
| 708 |
+
what show is the collage from?
|
| 709 |
+
who is mario testino taking a picture of?
|
| 710 |
+
who is the prince of wales?
|
| 711 |
+
who is william and harry with?
|
| 712 |
+
who is mario testino taking pictures of?
|
| 713 |
+
what did rudy giulianiani say police don't ask about?
|
| 714 |
+
what was the rnc doing?
|
| 715 |
+
who is eric holder referring to?
|
| 716 |
+
what does eric holder say there's towards himself and obama
|
| 717 |
+
what did the ethiopian airlines squawk about?
|
| 718 |
+
what flight squawked for reasons unknown?
|
| 719 |
+
what was rance howard?
|
| 720 |
+
who was a legend?
|
| 721 |
+
who is luis guirda abad thanking for his support
|
| 722 |
+
what time is it?
|
| 723 |
+
what will be there?
|
| 724 |
+
where does charles blow look?
|
| 725 |
+
what is the little refugee kid doing?
|
| 726 |
+
what did the hungarian police use to disperse migrants?
|
| 727 |
+
who spent a few minutes in the penalty box?
|
| 728 |
+
why did kadri spend a few minutes in the penalty box?
|
| 729 |
+
who set up the projector?
|
| 730 |
+
what is the projector playing?
|
| 731 |
+
what events did jeb bush urge president potus to unite the country?
|
| 732 |
+
what does jeb bush urge potus to do?
|
| 733 |
+
what does caleb make his case for?
|
| 734 |
+
what does geri horner say about the situation?
|
| 735 |
+
what movie is geri horner sorry about?
|
| 736 |
+
where did john d. sutter make it to?
|
| 737 |
+
where is the boat?
|
| 738 |
+
what happened to the team?
|
| 739 |
+
who is the team that finished goalless?
|
| 740 |
+
how did kwk and janet mock speak in july?
|
| 741 |
+
when did kwk and janet mock speak?
|
| 742 |
+
what did trump say about the bipartisan dACA deal?
|
| 743 |
+
what was presented to donald trump?
|
| 744 |
+
what was not properly funded?
|
| 745 |
+
what is beyonce doing with beyonce?
|
| 746 |
+
what is beyonce missing?
|
| 747 |
+
what is adam arron confident all guests will enjoy?
|
| 748 |
+
where is the movie going experience?
|
| 749 |
+
how much is chelsea hoping to stay connected with this account?
|
| 750 |
+
what would chelsea tweet about?
|
| 751 |
+
what kind of content did sia want to create?
|
| 752 |
+
what is he going to do with taxes?
|
| 753 |
+
what is he doing while he's saying he's going to raise our
|
| 754 |
+
who used the photo of iraqi pm helping a woman in
|
| 755 |
+
where is the photo of the iraqi pmu?
|
| 756 |
+
what is the photo of?
|
| 757 |
+
where is the photo of the syrian envoy?
|
| 758 |
+
what does ibekwe bonaventure want to do in a movie?
|
| 759 |
+
where is ibekwe bonaventure going to see genevieve?
|
| 760 |
+
what kind of leave is being proposed?
|
| 761 |
+
what is sweden proposing?
|
| 762 |
+
who is proud of where she came from?
|
| 763 |
+
what is mama june proud of?
|
| 764 |
+
what should you do if you know of a serial harasser/bully in science
|
| 765 |
+
what is the reason for the harassment?
|
| 766 |
+
what did sandra bernhard do?
|
| 767 |
+
where did diahann carrol open?
|
| 768 |
+
what should we do when someone is hurting?
|
| 769 |
+
who let the american people down?
|
| 770 |
+
who is having a scotch?
|
| 771 |
+
who is joe biden's mom putting his "debate participation"
|
| 772 |
+
who is the organization that is showing what happens when an organization does not support those tasked
|
| 773 |
+
what hashtag is being used to describe the situation?
|
| 774 |
+
how many people were uprooted by violence in nigeria?
|
| 775 |
+
what is the nation's population?
|
| 776 |
+
what is the nation full of?
|
| 777 |
+
what band is jennifer hudson singing?
|
| 778 |
+
what was the concert?
|
| 779 |
+
what did janet mock not write?
|
| 780 |
+
who did not choose the portraits/art, headline or write the intro?
|
| 781 |
+
who died?
|
| 782 |
+
who died?
|
| 783 |
+
what is daniel living for?
|
| 784 |
+
who is danny champken living for?
|
| 785 |
+
when did honda enter the picture?
|
| 786 |
+
who did not enter the picture after the fantasy draft?
|
| 787 |
+
what did tom petty do through every song?
|
| 788 |
+
where did tom petty perform?
|
| 789 |
+
who won't take a chance on colin kaepernick?
|
| 790 |
+
who is the browns taking a chance on?
|
| 791 |
+
who is taking a detox?
|
| 792 |
+
what is ruby taking a detox from?
|
| 793 |
+
what team is st louis locked on?
|
| 794 |
+
who is st louis locked on?
|
| 795 |
+
where can so much be done?
|
| 796 |
+
what does the machine encourage?
|
| 797 |
+
who is the dad?
|
| 798 |
+
who is thanking everyone for their best wishes?
|
| 799 |
+
what is the name of the tweeter's tweet?
|
| 800 |
+
what is the star and heart?
|
| 801 |
+
who acts like he really doesn't have his own father?
|
| 802 |
+
who is too old to be naked in the photoshoot?
|
| 803 |
+
what was the attack on the UN?
|
| 804 |
+
what did nick kay condemn?
|
| 805 |
+
who is bryan cranston excited to play?
|
| 806 |
+
what movie is zordon playing in?
|
| 807 |
+
who's stop is being asked to cancel?
|
| 808 |
+
why is madi emblem asking for a cancellation of nicky's
|
| 809 |
+
who is malala standing in solidarity with?
|
| 810 |
+
what is malala calling for action to?
|
| 811 |
+
what is rand paul posting?
|
| 812 |
+
what type of shorts are being discussed?
|
| 813 |
+
what does russia call the nprts of aedah
|
| 814 |
+
who is russia calling a fake news?
|
| 815 |
+
what is the healthcare coming along?
|
| 816 |
+
how will healthcare end?
|
| 817 |
+
who is swearing in the new ministers?
|
| 818 |
+
what is the new ministers?
|
| 819 |
+
how do they look to the future?
|
| 820 |
+
who was sworn in?
|
| 821 |
+
who does paul george prefer?
|
| 822 |
+
when is paul george leaving the pacers?
|
| 823 |
+
where did the pacers last play?
|
| 824 |
+
what team did pacers last play?
|
| 825 |
+
who played on a road trip?
|
| 826 |
+
who is the tweeter tweeting about?
|
| 827 |
+
what website does lorde think people thought she was lip syncing on?
|
| 828 |
+
what does lorde think of the fact that some people thought lorde was lip
|
| 829 |
+
who passed away?
|
| 830 |
+
what kind of person did a shy young actor put at ease when he was on
|
| 831 |
+
who auditioned for season 11 of the voicetune?
|
| 832 |
+
what season did dranaharpermusic audition for?
|
| 833 |
+
who is responding to media reports?
|
| 834 |
+
how many debates did hilary clinton represent death row records?
|
| 835 |
+
what did hilary clinton not represent?
|
| 836 |
+
what game did dre beat before the game?
|
| 837 |
+
what is the game before the game?
|
| 838 |
+
who can joseph fiennes play?
|
| 839 |
+
who can idris play?
|
| 840 |
+
what does ron wyden think of the trump budget?
|
| 841 |
+
who is seeking contempt citations?
|
| 842 |
+
how many wins did michigan win over illinois?
|
| 843 |
+
where is the water crisis?
|
| 844 |
+
what distracts from solving the flint water crisis?
|
| 845 |
+
what do we wear from time to time?
|
| 846 |
+
what will christina applegate do if she wants to find her?
|
| 847 |
+
who is christina applegate talking to?
|
| 848 |
+
what did jim himself do?
|
| 849 |
+
what is the name of the song?
|
| 850 |
+
who got "swamped"?
|
| 851 |
+
what did aaron schwarzenegger get?
|
| 852 |
+
how long does congress have to legalize daa?
|
| 853 |
+
what does congress need to do?
|
| 854 |
+
who is practicing for the super bowl?
|
| 855 |
+
where is beyonce practicing for the super bowl?
|
| 856 |
+
who has never met a person who didn't get the talk about the cops?
|
| 857 |
+
what country is michae from?
|
| 858 |
+
what class did miss nebraska skip?
|
| 859 |
+
what etiquette class did miss nebraska skip?
|
| 860 |
+
who is moon jae-in with?
|
| 861 |
+
what event is being discussed?
|
| 862 |
+
what is the mood of lorde?
|
| 863 |
+
who is lorde?
|
| 864 |
+
how does michael mcdonald feel about trump?
|
| 865 |
+
what can trump no longer afford?
|
| 866 |
+
how did the source feel about the situation?
|
| 867 |
+
what website is being suggested to dismiss the suggestion?
|
| 868 |
+
where are you "pickin & grinnin" tonight?
|
| 869 |
+
who is alan jackson mourning?
|
| 870 |
+
what are you doing tonight?
|
| 871 |
+
where are you?
|
| 872 |
+
what did he think hillary clinton couldn't be?
|
| 873 |
+
what is hillary clinton brags about?
|
| 874 |
+
who will we miss?
|
| 875 |
+
what did oliver sacks speak about?
|
| 876 |
+
what is it?
|
| 877 |
+
what is it that we've waited for all year?
|
| 878 |
+
what website is being used to watch bearcam?
|
| 879 |
+
what does the voice hope will inspire, comfort and bring us together?
|
| 880 |
+
who stands in unity with all those affected?
|
| 881 |
+
who is lj going to?
|
| 882 |
+
what website is this red carpet correspondent talking with?
|
| 883 |
+
what did pharrell say he was nominated for?
|
| 884 |
+
who is the @aacopd asking for inquiries?
|
| 885 |
+
who lost the confidence of almost everyone in washington?
|
| 886 |
+
what did comey lose?
|
| 887 |
+
what is the mayor listening to?
|
| 888 |
+
who is a miracle worker?
|
| 889 |
+
who looks worse than they did under moyes?
|
| 890 |
+
who could leave arsenal this summer?
|
| 891 |
+
when could arsene wenger leave arsenal?
|
| 892 |
+
who is being investigated?
|
| 893 |
+
what will trump be asking for a major investigation into?
|
| 894 |
+
what has happened in 2017 for women?
|
| 895 |
+
who is the opening monologue of the nbcsnl?
|
| 896 |
+
what website is being used to play pacman?
|
| 897 |
+
what game is being discussed?
|
| 898 |
+
what network is louis asking about his bestie?
|
| 899 |
+
what is louis asking about his bestie?
|
| 900 |
+
who is louis's bestie?
|
| 901 |
+
how long can you go without this happening?
|
| 902 |
+
what sport is the minion playing?
|
| 903 |
+
what sport is the minion playing?
|
| 904 |
+
how often can you go of a soccer game without this happening?
|
| 905 |
+
who is the addition of the game of thrones?
|
| 906 |
+
what is the name of the movie that ed sheeran is a part of
|
| 907 |
+
what did ed sheeran jump?
|
| 908 |
+
who is the addition of the game of thrones?
|
| 909 |
+
what must you do to get lucky?
|
| 910 |
+
who was tweeting?
|
| 911 |
+
who helped search and rescue victims?
|
| 912 |
+
what did the help do?
|
| 913 |
+
how does james van der beek describe him?
|
| 914 |
+
who was effortlessly golden?
|
| 915 |
+
who was effortlessly golden?
|
| 916 |
+
how does james van der beek describe him?
|
| 917 |
+
who was effortlessly golden?
|
| 918 |
+
what color is rippaul walker?
|
| 919 |
+
who does the 6 yo like?
|
| 920 |
+
who are u fans?
|
| 921 |
+
what has trump had since election?
|
| 922 |
+
who is the secretary of homeland security?
|
| 923 |
+
what has trump had since election?
|
| 924 |
+
who is the secretary of homeland security?
|
| 925 |
+
when did si2 take off?
|
| 926 |
+
where did si2 take off?
|
| 927 |
+
what did john legend read about it?
|
| 928 |
+
when did john legend win the olympics?
|
| 929 |
+
what would have been a sin?
|
| 930 |
+
what does john legend think of the article?
|
| 931 |
+
how many people are talking about this?
|
| 932 |
+
where is philae stuck?
|
| 933 |
+
who couldn't reestablish contact?
|
| 934 |
+
what happened to system of a down?
|
| 935 |
+
who passed away?
|
| 936 |
+
what were the boys killed in?
|
| 937 |
+
how many cousins were killed in the strike?
|
| 938 |
+
where was the funeral held?
|
| 939 |
+
what does caroline wozniacki love?
|
| 940 |
+
what is caroline woozniacki thanking for?
|
| 941 |
+
what was dave foley going to be named?
|
| 942 |
+
what was dave foley going to be named?
|
| 943 |
+
what did dave foley agree to?
|
| 944 |
+
what bible is bruce jenner forbidden from?
|
| 945 |
+
who is logical about bruce jenner?
|
| 946 |
+
who is the next president of fifa?
|
| 947 |
+
what is luis figo's race to become?
|
| 948 |
+
who is michael jackson's character?
|
| 949 |
+
who is he posting nudes of?
|
| 950 |
+
who is he hacking?
|
| 951 |
+
who responded to charles barkley's criticism?
|
| 952 |
+
who is lavar ball criticizing?
|
| 953 |
+
what should newspapers be more respectful in?
|
| 954 |
+
who says newspapers need to be more respectful in depiction of religion?
|
| 955 |
+
what happened to eric garner?
|
| 956 |
+
what crime did eric garner die from?
|
| 957 |
+
who is silencing harris speech?
|
| 958 |
+
who is being taken down?
|
| 959 |
+
what did taylor see in the preview?
|
| 960 |
+
what movie is going to be just like the book?
|
| 961 |
+
what caused the church of san benedetto to collapse?
|
| 962 |
+
when did the earthquake happen?
|
| 963 |
+
what is pac world?
|
| 964 |
+
what game is Melanie deziel playing?
|
| 965 |
+
where did chelss spend the night?
|
| 966 |
+
where was chelss stuck?
|
| 967 |
+
why did cruz not renounce his canadian citizenship?
|
| 968 |
+
who did not renounce his canadian citizenship?
|
| 969 |
+
what was colin kazim-richards found guilty of?
|
| 970 |
+
where was colin kazim-richards found guilty of section 5 public
|
| 971 |
+
who was found guilty of section 5 public order act?
|
| 972 |
+
what was colin kazim-richards found guilty of?
|
| 973 |
+
what is the hashtag for this tweet?
|
| 974 |
+
who is the name of the marche republicaine?
|
| 975 |
+
where is kim kardashian praying for?
|
| 976 |
+
how much will kim kardashian donate to redcross and salvation army?
|
| 977 |
+
what is information food for?
|
| 978 |
+
what does insufficient access impact?
|
| 979 |
+
who is during christina guilera's whitney hou
|
| 980 |
+
who was p!nk at during the whitney houston tribute?
|
| 981 |
+
who was murdered on new orleans?
|
| 982 |
+
where was will smith murdered?
|
| 983 |
+
what is the product bouncy aisles?
|
| 984 |
+
what is tesco introducing?
|
| 985 |
+
who fired the black worker?
|
| 986 |
+
why was the black worker fired?
|
| 987 |
+
what two teams are being played tomorrow?
|
| 988 |
+
who does donald trump think may find a way to get there?
|
| 989 |
+
why does donald trump think rand paul may find a way to
|
| 990 |
+
how many people are being proposed for the 2022 world cup?
|
| 991 |
+
what year is the world cup?
|
| 992 |
+
when is the 2022 fifa world cup proposed?
|
| 993 |
+
when was the 2022 fifa world cup proposed?
|
| 994 |
+
when was the 2022 fifa world cup proposed?
|
| 995 |
+
when is the world cup to be held?
|
| 996 |
+
how many times has she asked "you don't drink do you?"
|
| 997 |
+
what is the 97th time she's asked?
|
| 998 |
+
what did nick gordon not talk to the cops?
|
| 999 |
+
who has nick talked to?
|
| 1000 |
+
what does nick gordon think is cool?
|
| 1001 |
+
what will we all miss?
|
| 1002 |
+
what did william shatner love him like?
|
| 1003 |
+
what does the pope do?
|
| 1004 |
+
what process was frank's streamlining?
|
| 1005 |
+
who is the presiding over the annulment process?
|
| 1006 |
+
what did philip lord do?
|
| 1007 |
+
what is philip lord saying?
|
| 1008 |
+
where did she grow up?
|
| 1009 |
+
what is she taking here?
|
| 1010 |
+
who did blakes shelton spend time with?
|
| 1011 |
+
what does cantor say to the leadership?
|
| 1012 |
+
who is backslapping the gop leadership?
|
| 1013 |
+
who has kristaps porzingis, enes kanter,
|
| 1014 |
+
what does kristaps porzingis need to play?
|
| 1015 |
+
who is mat whitehead better dressed than?
|
| 1016 |
+
what was on inside out during sweden?
|
| 1017 |
+
what does eggy look like?
|
| 1018 |
+
who is the university of washington committing to?
|
| 1019 |
+
who is a gay person?
|
| 1020 |
+
what does j.k. rowling think gay people look like?
|
| 1021 |
+
why is riley vasquez sitting on a delta flight?
|
| 1022 |
+
what is the flight throwing us?
|
| 1023 |
+
what was the post meant to be?
|
| 1024 |
+
who apologized for the post?
|
| 1025 |
+
what ethnicity is the post against?
|
| 1026 |
+
what is true detective?
|
| 1027 |
+
what did favianna do?
|
| 1028 |
+
what has never happened to matt damon?
|
| 1029 |
+
who has never suffered from being openly heterosexual?
|
| 1030 |
+
who is trump's number one enabler?
|
| 1031 |
+
what is the reason for calling for pence to replace the nominee?
|
| 1032 |
+
what did james franco do?
|
| 1033 |
+
who is violet paley pining?
|
| 1034 |
+
what does he agree with?
|
| 1035 |
+
why does james Blake think it is classy of maria harapova
|
| 1036 |
+
what hashtag is being used?
|
| 1037 |
+
what religion is the militia?
|
| 1038 |
+
when is the show on?
|
| 1039 |
+
what is ed helms talking about?
|
| 1040 |
+
what does john peterson want you to do?
|
| 1041 |
+
who is the tweeter?
|
| 1042 |
+
when did steve lukather say mike porcaro is at
|
| 1043 |
+
who is at peace?
|
| 1044 |
+
what is the problem with humor?
|
| 1045 |
+
what can no one hold?
|
| 1046 |
+
who is mariah carey asking for forgiveness?
|
| 1047 |
+
what can meryl do?
|
| 1048 |
+
who is ted cruz attacking?
|
| 1049 |
+
who is not acceptable to attack anyone's spouse or kids?
|
| 1050 |
+
what does ted cruz say about his family?
|
| 1051 |
+
when did clinton announce she's running for president?
|
| 1052 |
+
who broke the mold for late night?
|
| 1053 |
+
what is letterman's influence seen everywhere?
|
| 1054 |
+
what is the twister challenge about to do?
|
| 1055 |
+
what is about to take over?
|
| 1056 |
+
what is merging into one?
|
| 1057 |
+
what is the name of the challenge?
|
| 1058 |
+
who has reactivated the power?
|
| 1059 |
+
who does the president need to reject?
|
| 1060 |
+
who needs to clearly and categorically reject white supremacists?
|
| 1061 |
+
when should we honor people?
|
| 1062 |
+
who should honor people before they die?
|
| 1063 |
+
what is the look inspiring?
|
| 1064 |
+
what is inspiring memes?
|
| 1065 |
+
who bothers lou dobbs?
|
| 1066 |
+
what is the tweet about?
|
| 1067 |
+
what airshow is this?
|
| 1068 |
+
what is the world's biggest airliner?
|
| 1069 |
+
what does wayans say we do?
|
| 1070 |
+
who does damon wayans yunior not negotiate with?
|
| 1071 |
+
what show is being congratulated?
|
| 1072 |
+
what was the show one of a kind?
|
| 1073 |
+
what should everyone do tomorrow?
|
| 1074 |
+
when is snow day?
|
| 1075 |
+
who is being warned about snow?
|
| 1076 |
+
what does rory say about swinging?
|
| 1077 |
+
who is rary talking to?
|
| 1078 |
+
who is the leader of the senators?
|
| 1079 |
+
how many years of o'care disaster must happen?
|
| 1080 |
+
who is the tweeter tweeting about?
|
| 1081 |
+
what were the investigators believed to have been in the building?
|
| 1082 |
+
what is the moment when you realize our life revolves around?
|
| 1083 |
+
what is the moment when you realize our life revolves around?
|
| 1084 |
+
what will we piece together?
|
| 1085 |
+
what will we piece together?
|
| 1086 |
+
what should not be done?
|
| 1087 |
+
who did rupert murdoch tell uk's cliver receiving
|
| 1088 |
+
what is under attack?
|
| 1089 |
+
what is the tweet not visible?
|
| 1090 |
+
who is brian moore of?
|
| 1091 |
+
who is the officer?
|
| 1092 |
+
how many countries took an historic step to act on climate?
|
| 1093 |
+
what did 200 countries take an historic step to do?
|
| 1094 |
+
who lived long and prospered?
|
| 1095 |
+
who was an inspiration to london?
|
| 1096 |
+
who will not make/announce his decision tonight?
|
| 1097 |
+
who is the source of this tweet?
|
| 1098 |
+
what languages did sylvia cruz memorize a message about her family?
|
| 1099 |
+
who has memorized a message about her family?
|
| 1100 |
+
what was scanned into nba 2k15?
|
| 1101 |
+
who is saddened at the loss of?
|
| 1102 |
+
what is betty willis's iconic neon designs defined?
|
| 1103 |
+
what is a good idea?
|
| 1104 |
+
what should you not get distracted from?
|
| 1105 |
+
who does sarah bennett think the new brunel jenner looks
|
| 1106 |
+
who is the new brunel jenner aka?
|
| 1107 |
+
where does the kc chiefs believe in the power of laughter to end poverty?
|
| 1108 |
+
what does the chiefs believe in?
|
| 1109 |
+
what should democrats do to the republicans?
|
| 1110 |
+
what did donald trump do?
|
| 1111 |
+
what is going down?
|
| 1112 |
+
what hashtag is being used to describe the situation?
|
| 1113 |
+
what is the name of the sorority?
|
| 1114 |
+
how is the sorority getting more affordable?
|
| 1115 |
+
who follows donald trump on twitter?
|
| 1116 |
+
who does ted cruz follow on twitter?
|
| 1117 |
+
what is mafleen worried about?
|
| 1118 |
+
where would mafleen prefer not to spend her holiday?
|
| 1119 |
+
who is the speaker on the plane?
|
| 1120 |
+
why is netanyahu heading to dc?
|
| 1121 |
+
what is the name of the person who is tweeting?
|
| 1122 |
+
what is the first thing you notice about chibi tori?
|
| 1123 |
+
what is the name of the person who is tweeting?
|
| 1124 |
+
when was the tweet posted?
|
| 1125 |
+
how many matches was luis suarez suspended for?
|
| 1126 |
+
how long was luis suarez banned from football-related activity?
|
| 1127 |
+
what awards show is being discussed?
|
| 1128 |
+
when are people leaving the awards show?
|
| 1129 |
+
who is not our friend?
|
| 1130 |
+
who took out osama bin Laden?
|
| 1131 |
+
how long has the us given pakistan aid?
|
| 1132 |
+
who has given pakistan more than 33 billion dollars in aid?
|
| 1133 |
+
who is aditikadam sending a package to?
|
| 1134 |
+
what does aditi kadam want to do?
|
| 1135 |
+
who did jason demers want to lose tonight?
|
| 1136 |
+
what does jason demers appreciate?
|
| 1137 |
+
who gives lucis suarez strength?
|
| 1138 |
+
what did luis suarez thank for throughout the day?
|
| 1139 |
+
who has no idea is even in the mix?
|
| 1140 |
+
who is pratt's writer?
|
| 1141 |
+
who is rick wilson saying this as?
|
| 1142 |
+
what is the speech for democrats?
|
| 1143 |
+
what streaming service is cthagod hoping to watch how to get away with murder
|
| 1144 |
+
what movie is charlamagne tha god wishing was on netflix
|
| 1145 |
+
what event has roots in anti white/cop events?
|
| 1146 |
+
who illuminated the first of the anti-white/cop events?
|
| 1147 |
+
what does maeve want to come back as?
|
| 1148 |
+
who does maeve want to come back as?
|
| 1149 |
+
who is glad his actions weren't in vain?
|
| 1150 |
+
who is glad his actions weren't in vain?
|
| 1151 |
+
who would be upset by donald trump's trade deal?
|
| 1152 |
+
what does donald trump want to negotiate?
|
| 1153 |
+
where was the poisoning of water?
|
| 1154 |
+
what water was poisoned?
|
| 1155 |
+
when did he tweet about the poisoning of flint's water?
|
| 1156 |
+
what did ravengates09 punch in the face?
|
| 1157 |
+
who would he throw his savings account at?
|
| 1158 |
+
who would vpaul alvarez have made the same mistake with?
|
| 1159 |
+
what does vpaul alvarez still make?
|
| 1160 |
+
what did the media do to rose mcgowan?
|
| 1161 |
+
who shamed rose mcgowan?
|
| 1162 |
+
who is eager to get rid of obamacare?
|
| 1163 |
+
what is tomi lahren eager to get rid of?
|
| 1164 |
+
what gender is the person who is being hailed?
|
| 1165 |
+
what gender is the cdt?
|
| 1166 |
+
what does ed helms wish were asked?
|
| 1167 |
+
what type of seats do cup holders exist in?
|
| 1168 |
+
what did rep al green speak about?
|
| 1169 |
+
what did rep algreen do after his speech?
|
| 1170 |
+
who did dimitrov knock out?
|
| 1171 |
+
who knocked out defending champ murray?
|
| 1172 |
+
who is honored to share his voice today?
|
| 1173 |
+
who is adrian grenier thanking for his work with lonely whale?
|
| 1174 |
+
what is the suspected ebola?
|
| 1175 |
+
where is the lab located?
|
| 1176 |
+
where did the kayoola solar bus arrive?
|
| 1177 |
+
what is the bus made of?
|
| 1178 |
+
when did the kayoola solar bus arrive at kampala serena?
|
| 1179 |
+
who pays the price?
|
| 1180 |
+
what is aint the wheel of fortune?
|
| 1181 |
+
what has vanished?
|
| 1182 |
+
what happened to the plane?
|
| 1183 |
+
what is the reaction to the tweet?
|
| 1184 |
+
what was joey sigler doing?
|
| 1185 |
+
what was joey-lynn sigler doing?
|
| 1186 |
+
what should trump do when not talking weather?
|
| 1187 |
+
what country is a total mess?
|
| 1188 |
+
what hymn is being sang?
|
| 1189 |
+
who was the funeral for?
|
| 1190 |
+
where is the caravan?
|
| 1191 |
+
who is plowing up dirt?
|
| 1192 |
+
what are farmers doing?
|
| 1193 |
+
where does scotty write the tweet?
|
| 1194 |
+
what can't pamela woolard believe?
|
| 1195 |
+
who pierced her daughters ears?
|
| 1196 |
+
who is the author of the single?
|
| 1197 |
+
where is the single?
|
| 1198 |
+
who sent the pic?
|
| 1199 |
+
what is margot doing?
|
| 1200 |
+
where is the winter storm spreading?
|
| 1201 |
+
what has john mccain been blessed to do?
|
| 1202 |
+
who is a bit player in the story of america?
|
| 1203 |
+
who is john mccain?
|
evaluation/dummy_predictions/tweet-sentiment.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
evaluation/dummy_predictions/tweet-similarity.txt
ADDED
|
@@ -0,0 +1,450 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2
|
| 2 |
+
2
|
| 3 |
+
2
|
| 4 |
+
2
|
| 5 |
+
2
|
| 6 |
+
2
|
| 7 |
+
2
|
| 8 |
+
2
|
| 9 |
+
2
|
| 10 |
+
2
|
| 11 |
+
2
|
| 12 |
+
2
|
| 13 |
+
2
|
| 14 |
+
2
|
| 15 |
+
2
|
| 16 |
+
2
|
| 17 |
+
2
|
| 18 |
+
3
|
| 19 |
+
2
|
| 20 |
+
2
|
| 21 |
+
2
|
| 22 |
+
2
|
| 23 |
+
2
|
| 24 |
+
2
|
| 25 |
+
2
|
| 26 |
+
2
|
| 27 |
+
2
|
| 28 |
+
2
|
| 29 |
+
2
|
| 30 |
+
3
|
| 31 |
+
2
|
| 32 |
+
3
|
| 33 |
+
2
|
| 34 |
+
2
|
| 35 |
+
3
|
| 36 |
+
2
|
| 37 |
+
2
|
| 38 |
+
2
|
| 39 |
+
2
|
| 40 |
+
2
|
| 41 |
+
2
|
| 42 |
+
2
|
| 43 |
+
2
|
| 44 |
+
2
|
| 45 |
+
2
|
| 46 |
+
2
|
| 47 |
+
2
|
| 48 |
+
2
|
| 49 |
+
2
|
| 50 |
+
2
|
| 51 |
+
2
|
| 52 |
+
2
|
| 53 |
+
2
|
| 54 |
+
2
|
| 55 |
+
3
|
| 56 |
+
2
|
| 57 |
+
2
|
| 58 |
+
2
|
| 59 |
+
2
|
| 60 |
+
2
|
| 61 |
+
2
|
| 62 |
+
3
|
| 63 |
+
2
|
| 64 |
+
2
|
| 65 |
+
2
|
| 66 |
+
2
|
| 67 |
+
2
|
| 68 |
+
2
|
| 69 |
+
2
|
| 70 |
+
2
|
| 71 |
+
2
|
| 72 |
+
2
|
| 73 |
+
2
|
| 74 |
+
2
|
| 75 |
+
0
|
| 76 |
+
2
|
| 77 |
+
3
|
| 78 |
+
2
|
| 79 |
+
2
|
| 80 |
+
2
|
| 81 |
+
2
|
| 82 |
+
3
|
| 83 |
+
2
|
| 84 |
+
2
|
| 85 |
+
2
|
| 86 |
+
3
|
| 87 |
+
2
|
| 88 |
+
2
|
| 89 |
+
2
|
| 90 |
+
2
|
| 91 |
+
2
|
| 92 |
+
3
|
| 93 |
+
2
|
| 94 |
+
2
|
| 95 |
+
2
|
| 96 |
+
2
|
| 97 |
+
2
|
| 98 |
+
2
|
| 99 |
+
3
|
| 100 |
+
2
|
| 101 |
+
2
|
| 102 |
+
2
|
| 103 |
+
2
|
| 104 |
+
2
|
| 105 |
+
2
|
| 106 |
+
2
|
| 107 |
+
2
|
| 108 |
+
2
|
| 109 |
+
2
|
| 110 |
+
2
|
| 111 |
+
3
|
| 112 |
+
2
|
| 113 |
+
3
|
| 114 |
+
2
|
| 115 |
+
3
|
| 116 |
+
2
|
| 117 |
+
2
|
| 118 |
+
2
|
| 119 |
+
2
|
| 120 |
+
2
|
| 121 |
+
3
|
| 122 |
+
3
|
| 123 |
+
2
|
| 124 |
+
2
|
| 125 |
+
2
|
| 126 |
+
2
|
| 127 |
+
3
|
| 128 |
+
2
|
| 129 |
+
2
|
| 130 |
+
2
|
| 131 |
+
2
|
| 132 |
+
2
|
| 133 |
+
2
|
| 134 |
+
3
|
| 135 |
+
2
|
| 136 |
+
2
|
| 137 |
+
2
|
| 138 |
+
3
|
| 139 |
+
3
|
| 140 |
+
2
|
| 141 |
+
2
|
| 142 |
+
2
|
| 143 |
+
2
|
| 144 |
+
2
|
| 145 |
+
3
|
| 146 |
+
2
|
| 147 |
+
2
|
| 148 |
+
2
|
| 149 |
+
2
|
| 150 |
+
2
|
| 151 |
+
2
|
| 152 |
+
2
|
| 153 |
+
2
|
| 154 |
+
2
|
| 155 |
+
2
|
| 156 |
+
2
|
| 157 |
+
2
|
| 158 |
+
2
|
| 159 |
+
2
|
| 160 |
+
2
|
| 161 |
+
2
|
| 162 |
+
2
|
| 163 |
+
2
|
| 164 |
+
2
|
| 165 |
+
3
|
| 166 |
+
2
|
| 167 |
+
2
|
| 168 |
+
2
|
| 169 |
+
2
|
| 170 |
+
2
|
| 171 |
+
2
|
| 172 |
+
2
|
| 173 |
+
2
|
| 174 |
+
2
|
| 175 |
+
2
|
| 176 |
+
2
|
| 177 |
+
3
|
| 178 |
+
2
|
| 179 |
+
3
|
| 180 |
+
2
|
| 181 |
+
2
|
| 182 |
+
2
|
| 183 |
+
2
|
| 184 |
+
3
|
| 185 |
+
2
|
| 186 |
+
2
|
| 187 |
+
3
|
| 188 |
+
2
|
| 189 |
+
2
|
| 190 |
+
2
|
| 191 |
+
3
|
| 192 |
+
2
|
| 193 |
+
3
|
| 194 |
+
2
|
| 195 |
+
3
|
| 196 |
+
2
|
| 197 |
+
2
|
| 198 |
+
2
|
| 199 |
+
2
|
| 200 |
+
3
|
| 201 |
+
2
|
| 202 |
+
2
|
| 203 |
+
3
|
| 204 |
+
2
|
| 205 |
+
2
|
| 206 |
+
2
|
| 207 |
+
2
|
| 208 |
+
2
|
| 209 |
+
3
|
| 210 |
+
2
|
| 211 |
+
2
|
| 212 |
+
2
|
| 213 |
+
3
|
| 214 |
+
3
|
| 215 |
+
2
|
| 216 |
+
2
|
| 217 |
+
2
|
| 218 |
+
3
|
| 219 |
+
2
|
| 220 |
+
3
|
| 221 |
+
2
|
| 222 |
+
2
|
| 223 |
+
2
|
| 224 |
+
2
|
| 225 |
+
2
|
| 226 |
+
2
|
| 227 |
+
2
|
| 228 |
+
2
|
| 229 |
+
2
|
| 230 |
+
2
|
| 231 |
+
2
|
| 232 |
+
2
|
| 233 |
+
2
|
| 234 |
+
2
|
| 235 |
+
2
|
| 236 |
+
2
|
| 237 |
+
2
|
| 238 |
+
2
|
| 239 |
+
2
|
| 240 |
+
2
|
| 241 |
+
2
|
| 242 |
+
2
|
| 243 |
+
3
|
| 244 |
+
2
|
| 245 |
+
2
|
| 246 |
+
2
|
| 247 |
+
2
|
| 248 |
+
2
|
| 249 |
+
2
|
| 250 |
+
2
|
| 251 |
+
2
|
| 252 |
+
2
|
| 253 |
+
2
|
| 254 |
+
2
|
| 255 |
+
3
|
| 256 |
+
2
|
| 257 |
+
3
|
| 258 |
+
2
|
| 259 |
+
2
|
| 260 |
+
2
|
| 261 |
+
2
|
| 262 |
+
2
|
| 263 |
+
2
|
| 264 |
+
2
|
| 265 |
+
2
|
| 266 |
+
2
|
| 267 |
+
2
|
| 268 |
+
2
|
| 269 |
+
2
|
| 270 |
+
3
|
| 271 |
+
2
|
| 272 |
+
2
|
| 273 |
+
2
|
| 274 |
+
2
|
| 275 |
+
2
|
| 276 |
+
2
|
| 277 |
+
2
|
| 278 |
+
3
|
| 279 |
+
2
|
| 280 |
+
2
|
| 281 |
+
2
|
| 282 |
+
2
|
| 283 |
+
3
|
| 284 |
+
2
|
| 285 |
+
3
|
| 286 |
+
2
|
| 287 |
+
2
|
| 288 |
+
2
|
| 289 |
+
3
|
| 290 |
+
2
|
| 291 |
+
2
|
| 292 |
+
2
|
| 293 |
+
2
|
| 294 |
+
2
|
| 295 |
+
2
|
| 296 |
+
2
|
| 297 |
+
2
|
| 298 |
+
2
|
| 299 |
+
2
|
| 300 |
+
2
|
| 301 |
+
2
|
| 302 |
+
2
|
| 303 |
+
2
|
| 304 |
+
2
|
| 305 |
+
2
|
| 306 |
+
2
|
| 307 |
+
2
|
| 308 |
+
2
|
| 309 |
+
2
|
| 310 |
+
2
|
| 311 |
+
3
|
| 312 |
+
1
|
| 313 |
+
2
|
| 314 |
+
2
|
| 315 |
+
3
|
| 316 |
+
3
|
| 317 |
+
2
|
| 318 |
+
2
|
| 319 |
+
2
|
| 320 |
+
2
|
| 321 |
+
2
|
| 322 |
+
2
|
| 323 |
+
3
|
| 324 |
+
2
|
| 325 |
+
2
|
| 326 |
+
2
|
| 327 |
+
2
|
| 328 |
+
2
|
| 329 |
+
2
|
| 330 |
+
2
|
| 331 |
+
2
|
| 332 |
+
2
|
| 333 |
+
2
|
| 334 |
+
2
|
| 335 |
+
2
|
| 336 |
+
2
|
| 337 |
+
2
|
| 338 |
+
3
|
| 339 |
+
2
|
| 340 |
+
2
|
| 341 |
+
2
|
| 342 |
+
2
|
| 343 |
+
2
|
| 344 |
+
2
|
| 345 |
+
2
|
| 346 |
+
2
|
| 347 |
+
3
|
| 348 |
+
2
|
| 349 |
+
2
|
| 350 |
+
2
|
| 351 |
+
2
|
| 352 |
+
2
|
| 353 |
+
2
|
| 354 |
+
2
|
| 355 |
+
3
|
| 356 |
+
2
|
| 357 |
+
3
|
| 358 |
+
2
|
| 359 |
+
3
|
| 360 |
+
2
|
| 361 |
+
2
|
| 362 |
+
2
|
| 363 |
+
2
|
| 364 |
+
2
|
| 365 |
+
2
|
| 366 |
+
2
|
| 367 |
+
3
|
| 368 |
+
2
|
| 369 |
+
3
|
| 370 |
+
2
|
| 371 |
+
2
|
| 372 |
+
2
|
| 373 |
+
2
|
| 374 |
+
3
|
| 375 |
+
2
|
| 376 |
+
2
|
| 377 |
+
2
|
| 378 |
+
2
|
| 379 |
+
2
|
| 380 |
+
2
|
| 381 |
+
2
|
| 382 |
+
3
|
| 383 |
+
2
|
| 384 |
+
2
|
| 385 |
+
2
|
| 386 |
+
2
|
| 387 |
+
2
|
| 388 |
+
2
|
| 389 |
+
2
|
| 390 |
+
2
|
| 391 |
+
2
|
| 392 |
+
2
|
| 393 |
+
3
|
| 394 |
+
2
|
| 395 |
+
2
|
| 396 |
+
2
|
| 397 |
+
2
|
| 398 |
+
2
|
| 399 |
+
3
|
| 400 |
+
2
|
| 401 |
+
2
|
| 402 |
+
2
|
| 403 |
+
2
|
| 404 |
+
2
|
| 405 |
+
2
|
| 406 |
+
2
|
| 407 |
+
2
|
| 408 |
+
2
|
| 409 |
+
2
|
| 410 |
+
2
|
| 411 |
+
2
|
| 412 |
+
2
|
| 413 |
+
2
|
| 414 |
+
2
|
| 415 |
+
2
|
| 416 |
+
2
|
| 417 |
+
2
|
| 418 |
+
2
|
| 419 |
+
2
|
| 420 |
+
2
|
| 421 |
+
2
|
| 422 |
+
2
|
| 423 |
+
2
|
| 424 |
+
2
|
| 425 |
+
2
|
| 426 |
+
2
|
| 427 |
+
2
|
| 428 |
+
2
|
| 429 |
+
2
|
| 430 |
+
3
|
| 431 |
+
2
|
| 432 |
+
2
|
| 433 |
+
2
|
| 434 |
+
2
|
| 435 |
+
2
|
| 436 |
+
2
|
| 437 |
+
2
|
| 438 |
+
2
|
| 439 |
+
3
|
| 440 |
+
2
|
| 441 |
+
2
|
| 442 |
+
2
|
| 443 |
+
2
|
| 444 |
+
3
|
| 445 |
+
2
|
| 446 |
+
2
|
| 447 |
+
2
|
| 448 |
+
2
|
| 449 |
+
2
|
| 450 |
+
2
|
evaluation/dummy_predictions/tweet-topic.txt
ADDED
|
@@ -0,0 +1,1679 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
sports
|
| 2 |
+
sports
|
| 3 |
+
sports
|
| 4 |
+
sports
|
| 5 |
+
sports
|
| 6 |
+
fitness_&_health,news_&_social_concern
|
| 7 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 8 |
+
film_tv_&_video
|
| 9 |
+
diaries_&_daily_life,sports
|
| 10 |
+
news_&_social_concern
|
| 11 |
+
sports
|
| 12 |
+
celebrity_&_pop_culture,music
|
| 13 |
+
celebrity_&_pop_culture,music
|
| 14 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 15 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 16 |
+
music
|
| 17 |
+
diaries_&_daily_life,music
|
| 18 |
+
diaries_&_daily_life,family
|
| 19 |
+
film_tv_&_video
|
| 20 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 21 |
+
news_&_social_concern
|
| 22 |
+
music
|
| 23 |
+
celebrity_&_pop_culture,music
|
| 24 |
+
music
|
| 25 |
+
diaries_&_daily_life,sports
|
| 26 |
+
diaries_&_daily_life,food_&_dining
|
| 27 |
+
film_tv_&_video
|
| 28 |
+
news_&_social_concern
|
| 29 |
+
news_&_social_concern
|
| 30 |
+
sports
|
| 31 |
+
music
|
| 32 |
+
film_tv_&_video
|
| 33 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 34 |
+
sports
|
| 35 |
+
news_&_social_concern
|
| 36 |
+
arts_&_culture,fashion_&_style
|
| 37 |
+
film_tv_&_video
|
| 38 |
+
fashion_&_style
|
| 39 |
+
food_&_dining,news_&_social_concern
|
| 40 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 41 |
+
sports
|
| 42 |
+
film_tv_&_video
|
| 43 |
+
gaming,sports
|
| 44 |
+
news_&_social_concern
|
| 45 |
+
diaries_&_daily_life,film_tv_&_video
|
| 46 |
+
sports
|
| 47 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 48 |
+
diaries_&_daily_life,sports
|
| 49 |
+
diaries_&_daily_life,travel_&_adventure
|
| 50 |
+
sports
|
| 51 |
+
diaries_&_daily_life,news_&_social_concer
|
| 52 |
+
sports
|
| 53 |
+
sports
|
| 54 |
+
news_&_social_concern
|
| 55 |
+
sports
|
| 56 |
+
sports
|
| 57 |
+
sports
|
| 58 |
+
sports
|
| 59 |
+
sports
|
| 60 |
+
sports
|
| 61 |
+
sports
|
| 62 |
+
sports
|
| 63 |
+
sports
|
| 64 |
+
sports
|
| 65 |
+
news_&_social_concern
|
| 66 |
+
sports
|
| 67 |
+
sports
|
| 68 |
+
news_&_social_concern
|
| 69 |
+
celebrity_&_pop_culture,sports
|
| 70 |
+
diaries_&_daily_life,news_&_social_concer
|
| 71 |
+
sports
|
| 72 |
+
sports
|
| 73 |
+
sports
|
| 74 |
+
gaming
|
| 75 |
+
sports
|
| 76 |
+
sports
|
| 77 |
+
sports
|
| 78 |
+
sports
|
| 79 |
+
sports
|
| 80 |
+
sports
|
| 81 |
+
sports
|
| 82 |
+
sports
|
| 83 |
+
sports
|
| 84 |
+
news_&_social_concern
|
| 85 |
+
news_&_social_concern
|
| 86 |
+
sports
|
| 87 |
+
sports
|
| 88 |
+
news_&_social_concern
|
| 89 |
+
music
|
| 90 |
+
diaries_&_daily_life,news_&_social_concer
|
| 91 |
+
film_tv_&_video
|
| 92 |
+
arts_&_culture,diaries_&_daily_life,learning
|
| 93 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 94 |
+
gaming,news_&_social_concern
|
| 95 |
+
sports
|
| 96 |
+
film_tv_&_video
|
| 97 |
+
sports
|
| 98 |
+
sports
|
| 99 |
+
diaries_&_daily_life,film_tv_&_video
|
| 100 |
+
celebrity_&_pop_culture,music
|
| 101 |
+
sports
|
| 102 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 103 |
+
celebrity_&_pop_culture,music
|
| 104 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 105 |
+
diaries_&_daily_life,news_&_social_concer
|
| 106 |
+
diaries_&_daily_life,other_hobbies
|
| 107 |
+
sports
|
| 108 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 109 |
+
sports
|
| 110 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 111 |
+
music
|
| 112 |
+
news_&_social_concern
|
| 113 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 114 |
+
sports
|
| 115 |
+
news_&_social_concern
|
| 116 |
+
sports
|
| 117 |
+
sports
|
| 118 |
+
sports
|
| 119 |
+
sports
|
| 120 |
+
sports
|
| 121 |
+
music
|
| 122 |
+
music
|
| 123 |
+
celebrity_&_pop_culture,sports
|
| 124 |
+
music
|
| 125 |
+
sports
|
| 126 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 127 |
+
gaming
|
| 128 |
+
celebrity_&_pop_culture,music
|
| 129 |
+
music
|
| 130 |
+
diaries_&_daily_life,news_&_social_concer
|
| 131 |
+
music
|
| 132 |
+
celebrity_&_pop_culture,music
|
| 133 |
+
news_&_social_concern
|
| 134 |
+
news_&_social_concern
|
| 135 |
+
sports
|
| 136 |
+
celebrity_&_pop_culture,film_tv_&_video,news_
|
| 137 |
+
sports
|
| 138 |
+
sports
|
| 139 |
+
sports
|
| 140 |
+
sports
|
| 141 |
+
sports
|
| 142 |
+
sports
|
| 143 |
+
sports
|
| 144 |
+
news_&_social_concern
|
| 145 |
+
sports
|
| 146 |
+
celebrity_&_pop_culture,sports
|
| 147 |
+
music
|
| 148 |
+
sports
|
| 149 |
+
sports
|
| 150 |
+
news_&_social_concern
|
| 151 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 152 |
+
sports
|
| 153 |
+
news_&_social_concern
|
| 154 |
+
sports
|
| 155 |
+
music
|
| 156 |
+
sports
|
| 157 |
+
music
|
| 158 |
+
music
|
| 159 |
+
music
|
| 160 |
+
news_&_social_concern
|
| 161 |
+
diaries_&_daily_life,music
|
| 162 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 163 |
+
music
|
| 164 |
+
film_tv_&_video
|
| 165 |
+
fashion_&_style
|
| 166 |
+
celebrity_&_pop_culture,music
|
| 167 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 168 |
+
sports
|
| 169 |
+
celebrity_&_pop_culture,music
|
| 170 |
+
fashion_&_style
|
| 171 |
+
gaming
|
| 172 |
+
music
|
| 173 |
+
diaries_&_daily_life,news_&_social_concer
|
| 174 |
+
news_&_social_concern
|
| 175 |
+
sports
|
| 176 |
+
celebrity_&_pop_culture,music
|
| 177 |
+
news_&_social_concern
|
| 178 |
+
fashion_&_style
|
| 179 |
+
celebrity_&_pop_culture,music
|
| 180 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 181 |
+
sports
|
| 182 |
+
sports
|
| 183 |
+
film_tv_&_video
|
| 184 |
+
news_&_social_concern
|
| 185 |
+
film_tv_&_video
|
| 186 |
+
news_&_social_concern
|
| 187 |
+
news_&_social_concern
|
| 188 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 189 |
+
news_&_social_concern
|
| 190 |
+
music
|
| 191 |
+
sports
|
| 192 |
+
news_&_social_concern
|
| 193 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 194 |
+
celebrity_&_pop_culture,music
|
| 195 |
+
film_tv_&_video
|
| 196 |
+
film_tv_&_video
|
| 197 |
+
film_tv_&_video
|
| 198 |
+
sports
|
| 199 |
+
celebrity_&_pop_culture,music
|
| 200 |
+
sports
|
| 201 |
+
news_&_social_concern
|
| 202 |
+
sports
|
| 203 |
+
sports
|
| 204 |
+
sports
|
| 205 |
+
sports
|
| 206 |
+
sports
|
| 207 |
+
sports
|
| 208 |
+
sports
|
| 209 |
+
sports
|
| 210 |
+
sports
|
| 211 |
+
sports
|
| 212 |
+
sports
|
| 213 |
+
sports
|
| 214 |
+
sports
|
| 215 |
+
celebrity_&_pop_culture,film_tv_&_video,news_
|
| 216 |
+
celebrity_&_pop_culture,music
|
| 217 |
+
sports
|
| 218 |
+
sports
|
| 219 |
+
sports
|
| 220 |
+
celebrity_&_pop_culture,music
|
| 221 |
+
film_tv_&_video
|
| 222 |
+
news_&_social_concern
|
| 223 |
+
film_tv_&_video,film_tv_&_video
|
| 224 |
+
sports
|
| 225 |
+
sports
|
| 226 |
+
science_&_technology
|
| 227 |
+
news_&_social_concern
|
| 228 |
+
sports
|
| 229 |
+
diaries_&_daily_life,music
|
| 230 |
+
news_&_social_concern
|
| 231 |
+
sports
|
| 232 |
+
sports
|
| 233 |
+
sports
|
| 234 |
+
sports
|
| 235 |
+
sports
|
| 236 |
+
sports
|
| 237 |
+
news_&_social_concern
|
| 238 |
+
news_&_social_concern
|
| 239 |
+
news_&_social_concern
|
| 240 |
+
sports
|
| 241 |
+
news_&_social_concern
|
| 242 |
+
sports
|
| 243 |
+
sports
|
| 244 |
+
news_&_social_concern
|
| 245 |
+
sports
|
| 246 |
+
news_&_social_concern
|
| 247 |
+
celebrity_&_pop_culture,music
|
| 248 |
+
sports
|
| 249 |
+
sports
|
| 250 |
+
diaries_&_daily_life,news_&_social_concer
|
| 251 |
+
sports
|
| 252 |
+
celebrity_&_pop_culture,music
|
| 253 |
+
news_&_social_concern
|
| 254 |
+
news_&_social_concern
|
| 255 |
+
music
|
| 256 |
+
news_&_social_concern
|
| 257 |
+
gaming
|
| 258 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 259 |
+
sports
|
| 260 |
+
news_&_social_concern
|
| 261 |
+
news_&_social_concern
|
| 262 |
+
sports
|
| 263 |
+
sports
|
| 264 |
+
sports
|
| 265 |
+
sports
|
| 266 |
+
sports
|
| 267 |
+
sports
|
| 268 |
+
sports
|
| 269 |
+
sports
|
| 270 |
+
sports
|
| 271 |
+
sports
|
| 272 |
+
sports
|
| 273 |
+
news_&_social_concern
|
| 274 |
+
sports
|
| 275 |
+
sports
|
| 276 |
+
sports
|
| 277 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 278 |
+
film_tv_&_video,music
|
| 279 |
+
diaries_&_daily_life,news_&_social_concer
|
| 280 |
+
news_&_social_concern
|
| 281 |
+
diaries_&_daily_life,news_&_social_concer
|
| 282 |
+
news_&_social_concern
|
| 283 |
+
news_&_social_concern
|
| 284 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 285 |
+
news_&_social_concern
|
| 286 |
+
news_&_social_concern
|
| 287 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 288 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 289 |
+
film_tv_&_video
|
| 290 |
+
news_&_social_concern
|
| 291 |
+
news_&_social_concern
|
| 292 |
+
news_&_social_concern
|
| 293 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 294 |
+
diaries_&_daily_life,news_&_social_concer
|
| 295 |
+
celebrity_&_pop_culture,music
|
| 296 |
+
celebrity_&_pop_culture,music
|
| 297 |
+
arts_&_culture,diaries_&_daily_life,family
|
| 298 |
+
diaries_&_daily_life,news_&_social_concer
|
| 299 |
+
news_&_social_concern
|
| 300 |
+
diaries_&_daily_life,health_&_health
|
| 301 |
+
news_&_social_concern
|
| 302 |
+
news_&_social_concern
|
| 303 |
+
news_&_social_concern
|
| 304 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 305 |
+
news_&_social_concern
|
| 306 |
+
fitness_&_health,news_&_social_concern
|
| 307 |
+
celebrity_&_pop_culture,music
|
| 308 |
+
celebrity_&_pop_culture,music
|
| 309 |
+
diaries_&_daily_life,family,relationships
|
| 310 |
+
celebrity_&_pop_culture,music
|
| 311 |
+
diaries_&_daily_life,family,relationships
|
| 312 |
+
news_&_social_concern
|
| 313 |
+
gaming
|
| 314 |
+
music
|
| 315 |
+
news_&_social_concern
|
| 316 |
+
sports
|
| 317 |
+
sports
|
| 318 |
+
diaries_&_daily_life,travel_&_adventure
|
| 319 |
+
sports
|
| 320 |
+
diaries_&_daily_life,music
|
| 321 |
+
sports
|
| 322 |
+
sports
|
| 323 |
+
news_&_social_concern
|
| 324 |
+
celebrity_&_pop_culture,music
|
| 325 |
+
film_tv_&_video
|
| 326 |
+
gaming
|
| 327 |
+
news_&_social_concern
|
| 328 |
+
music
|
| 329 |
+
gaming
|
| 330 |
+
sports
|
| 331 |
+
sports
|
| 332 |
+
news_&_social_concern
|
| 333 |
+
arts_&_culture,diaries_&_daily_life,family
|
| 334 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 335 |
+
diaries_&_daily_life,news_&_social_concer
|
| 336 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 337 |
+
sports
|
| 338 |
+
sports
|
| 339 |
+
sports
|
| 340 |
+
gaming
|
| 341 |
+
sports
|
| 342 |
+
news_&_social_concern
|
| 343 |
+
gaming
|
| 344 |
+
gaming,news_&_social_concern
|
| 345 |
+
celebrity_&_pop_culture,music
|
| 346 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 347 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 348 |
+
sports
|
| 349 |
+
news_&_social_concern
|
| 350 |
+
diaries_&_daily_life,sports
|
| 351 |
+
film_tv_&_video
|
| 352 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 353 |
+
sports
|
| 354 |
+
music
|
| 355 |
+
celebrity_&_pop_culture,music
|
| 356 |
+
music
|
| 357 |
+
music
|
| 358 |
+
sports
|
| 359 |
+
music
|
| 360 |
+
music
|
| 361 |
+
music
|
| 362 |
+
music
|
| 363 |
+
music
|
| 364 |
+
music
|
| 365 |
+
news_&_social_concern
|
| 366 |
+
music
|
| 367 |
+
news_&_social_concern
|
| 368 |
+
diaries_&_daily_life,news_&_social_concer
|
| 369 |
+
celebrity_&_pop_culture,music
|
| 370 |
+
film_tv_&_video
|
| 371 |
+
sports
|
| 372 |
+
sports
|
| 373 |
+
sports
|
| 374 |
+
news_&_social_concern
|
| 375 |
+
music
|
| 376 |
+
film_tv_&_video
|
| 377 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 378 |
+
film_tv_&_video
|
| 379 |
+
film_tv_&_video
|
| 380 |
+
beauty_&_style,news_&_social_concern
|
| 381 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 382 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 383 |
+
film_tv_&_video
|
| 384 |
+
sports
|
| 385 |
+
film_tv_&_video
|
| 386 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 387 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 388 |
+
sports
|
| 389 |
+
music
|
| 390 |
+
celebrity_&_pop_culture,music
|
| 391 |
+
music
|
| 392 |
+
sports
|
| 393 |
+
music
|
| 394 |
+
film_tv_&_video
|
| 395 |
+
sports
|
| 396 |
+
sports
|
| 397 |
+
sports
|
| 398 |
+
sports
|
| 399 |
+
sports
|
| 400 |
+
sports
|
| 401 |
+
sports
|
| 402 |
+
film_tv_&_video
|
| 403 |
+
celebrity_&_pop_culture,music
|
| 404 |
+
news_&_social_concern
|
| 405 |
+
sports
|
| 406 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 407 |
+
news_&_social_concern
|
| 408 |
+
film_tv_&_video
|
| 409 |
+
music
|
| 410 |
+
music
|
| 411 |
+
film_tv_&_video
|
| 412 |
+
music
|
| 413 |
+
music
|
| 414 |
+
film_tv_&_video
|
| 415 |
+
music
|
| 416 |
+
music
|
| 417 |
+
film_tv_&_video
|
| 418 |
+
sports
|
| 419 |
+
sports
|
| 420 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 421 |
+
sports
|
| 422 |
+
film_tv_&_video
|
| 423 |
+
diaries_&_daily_life,news_&_social_concer
|
| 424 |
+
film_tv_&_video
|
| 425 |
+
sports
|
| 426 |
+
film_tv_&_video
|
| 427 |
+
film_tv_&_video
|
| 428 |
+
gaming
|
| 429 |
+
news_&_social_concern
|
| 430 |
+
sports
|
| 431 |
+
film_tv_&_video
|
| 432 |
+
gaming,news_&_social_concern
|
| 433 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 434 |
+
food_&_dining,restaurant_&_dining
|
| 435 |
+
sports
|
| 436 |
+
sports
|
| 437 |
+
sports
|
| 438 |
+
sports
|
| 439 |
+
sports
|
| 440 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 441 |
+
celebrity_&_pop_culture,music
|
| 442 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 443 |
+
sports
|
| 444 |
+
celebrity_&_pop_culture,music
|
| 445 |
+
sports
|
| 446 |
+
sports
|
| 447 |
+
sports
|
| 448 |
+
music
|
| 449 |
+
sports
|
| 450 |
+
sports
|
| 451 |
+
diaries_&_daily_life,learning_&_educational,news
|
| 452 |
+
sports
|
| 453 |
+
sports
|
| 454 |
+
gaming,games
|
| 455 |
+
film_tv_&_video
|
| 456 |
+
sports
|
| 457 |
+
news_&_social_concern
|
| 458 |
+
sports
|
| 459 |
+
sports
|
| 460 |
+
sports
|
| 461 |
+
sports
|
| 462 |
+
arts_&_culture,diaries_&_daily_life,news
|
| 463 |
+
sports
|
| 464 |
+
medical_&_health,news_&_social_concern
|
| 465 |
+
news_&_social_concern
|
| 466 |
+
sports
|
| 467 |
+
sports
|
| 468 |
+
sports
|
| 469 |
+
sports
|
| 470 |
+
sports
|
| 471 |
+
sports
|
| 472 |
+
celebrity_&_pop_culture,music
|
| 473 |
+
sports
|
| 474 |
+
sports
|
| 475 |
+
sports
|
| 476 |
+
diaries_&_daily_life,music
|
| 477 |
+
sports
|
| 478 |
+
sports
|
| 479 |
+
diaries_&_daily_life,family,relationships
|
| 480 |
+
sports
|
| 481 |
+
science_&_technology
|
| 482 |
+
sports
|
| 483 |
+
sports
|
| 484 |
+
sports
|
| 485 |
+
news_&_social_concern
|
| 486 |
+
gaming
|
| 487 |
+
sports
|
| 488 |
+
sports
|
| 489 |
+
news_&_social_concern
|
| 490 |
+
music
|
| 491 |
+
diaries_&_daily_life,family,relationships
|
| 492 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 493 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 494 |
+
sports
|
| 495 |
+
sports
|
| 496 |
+
diaries_&_daily_life,film_tv_&_video
|
| 497 |
+
sports
|
| 498 |
+
film_tv_&_video
|
| 499 |
+
sports
|
| 500 |
+
diaries_&_daily_life,family,relationships
|
| 501 |
+
music
|
| 502 |
+
sports
|
| 503 |
+
film_tv_&_video
|
| 504 |
+
diaries_&_daily_life,news_&_social_concer
|
| 505 |
+
diaries_&_daily_life,educational_&_educational
|
| 506 |
+
diaries_&_daily_life,news_&_social_concer
|
| 507 |
+
news_&_social_concern
|
| 508 |
+
film_tv_&_video
|
| 509 |
+
news_&_social_concern
|
| 510 |
+
news_&_social_concern
|
| 511 |
+
diaries_&_daily_life,family
|
| 512 |
+
diaries_&_daily_life,family,relationships
|
| 513 |
+
film_tv_&_video
|
| 514 |
+
film_tv_&_video
|
| 515 |
+
film_tv_&_video
|
| 516 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 517 |
+
news_&_social_concern
|
| 518 |
+
diaries_&_daily_life,film_tv_&_video
|
| 519 |
+
music
|
| 520 |
+
music
|
| 521 |
+
celebrity_&_pop_culture,music
|
| 522 |
+
sports
|
| 523 |
+
celebrity_&_pop_culture,food_&_dining
|
| 524 |
+
diaries_&_daily_life,family
|
| 525 |
+
sports
|
| 526 |
+
celebrity_&_pop_culture,music
|
| 527 |
+
sports
|
| 528 |
+
diaries_&_daily_life,family,relationships
|
| 529 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 530 |
+
sports
|
| 531 |
+
fashion_&_style
|
| 532 |
+
sports
|
| 533 |
+
diaries_&_daily_life,family,relationships
|
| 534 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 535 |
+
sports
|
| 536 |
+
news_&_social_concern
|
| 537 |
+
sports
|
| 538 |
+
music
|
| 539 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 540 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 541 |
+
news_&_social_concern
|
| 542 |
+
sports
|
| 543 |
+
diaries_&_daily_life,news_&_social_concer
|
| 544 |
+
diaries_&_daily_life,family,relationships
|
| 545 |
+
diaries_&_daily_life,family,relationships
|
| 546 |
+
celebrity_&_pop_culture,music
|
| 547 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 548 |
+
news_&_social_concern
|
| 549 |
+
film_tv_&_video
|
| 550 |
+
music
|
| 551 |
+
music
|
| 552 |
+
music
|
| 553 |
+
celebrity_&_pop_culture,music
|
| 554 |
+
celebrity_&_pop_culture,music
|
| 555 |
+
diaries_&_daily_life,film_tv_&_video
|
| 556 |
+
film_tv_&_video
|
| 557 |
+
diaries_&_daily_life,news_&_social_concer
|
| 558 |
+
music
|
| 559 |
+
film_tv_&_video
|
| 560 |
+
news_&_social_concern
|
| 561 |
+
music
|
| 562 |
+
news_&_social_concern
|
| 563 |
+
diaries_&_daily_life,other_hobbies
|
| 564 |
+
news_&_social_concern
|
| 565 |
+
film_tv_&_video
|
| 566 |
+
sports
|
| 567 |
+
sports
|
| 568 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 569 |
+
film_tv_&_video
|
| 570 |
+
news_&_social_concern
|
| 571 |
+
sports
|
| 572 |
+
sports
|
| 573 |
+
film_tv_&_video
|
| 574 |
+
sports
|
| 575 |
+
celebrity_&_pop_culture,music
|
| 576 |
+
fitness_&_health,news_&_social_concern
|
| 577 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 578 |
+
music
|
| 579 |
+
diaries_&_daily_life,news_&_social_concer
|
| 580 |
+
music
|
| 581 |
+
music
|
| 582 |
+
music
|
| 583 |
+
diaries_&_daily_life,family
|
| 584 |
+
sports
|
| 585 |
+
music
|
| 586 |
+
sports
|
| 587 |
+
film_tv_&_video
|
| 588 |
+
diaries_&_daily_life,news_&_social_concer
|
| 589 |
+
film_tv_&_video
|
| 590 |
+
film_tv_&_video
|
| 591 |
+
sports
|
| 592 |
+
film_tv_&_video
|
| 593 |
+
sports
|
| 594 |
+
sports
|
| 595 |
+
sports
|
| 596 |
+
sports
|
| 597 |
+
music
|
| 598 |
+
diaries_&_daily_life,music
|
| 599 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 600 |
+
music
|
| 601 |
+
celebrity_&_pop_culture,music
|
| 602 |
+
celebrity_&_pop_culture,music
|
| 603 |
+
news_&_social_concern
|
| 604 |
+
diaries_&_daily_life,news_&_social_concer
|
| 605 |
+
celebrity_&_pop_culture,music
|
| 606 |
+
music
|
| 607 |
+
celebrity_&_pop_culture,music
|
| 608 |
+
news_&_social_concern
|
| 609 |
+
diaries_&_daily_life,news_&_social_concer
|
| 610 |
+
news_&_social_concern
|
| 611 |
+
music
|
| 612 |
+
diaries_&_daily_life,news_&_social_concer
|
| 613 |
+
music
|
| 614 |
+
celebrity_&_pop_culture,music
|
| 615 |
+
music
|
| 616 |
+
sports
|
| 617 |
+
diaries_&_daily_life,sports
|
| 618 |
+
celebrity_&_pop_culture,music
|
| 619 |
+
sports
|
| 620 |
+
sports
|
| 621 |
+
sports
|
| 622 |
+
sports
|
| 623 |
+
music
|
| 624 |
+
celebrity_&_pop_culture,music
|
| 625 |
+
music
|
| 626 |
+
music
|
| 627 |
+
celebrity_&_pop_culture,fashion_&_style
|
| 628 |
+
film_tv_&_video
|
| 629 |
+
sports
|
| 630 |
+
music
|
| 631 |
+
celebrity_&_pop_culture,music
|
| 632 |
+
sports
|
| 633 |
+
music
|
| 634 |
+
sports
|
| 635 |
+
sports
|
| 636 |
+
sports
|
| 637 |
+
diaries_&_daily_life,music
|
| 638 |
+
music
|
| 639 |
+
music
|
| 640 |
+
news_&_social_concern
|
| 641 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 642 |
+
music
|
| 643 |
+
celebrity_&_pop_culture,music
|
| 644 |
+
music
|
| 645 |
+
sports
|
| 646 |
+
celebrity_&_pop_culture,music
|
| 647 |
+
music
|
| 648 |
+
sports
|
| 649 |
+
sports
|
| 650 |
+
celebrity_&_pop_culture,music
|
| 651 |
+
celebrity_&_pop_culture,music
|
| 652 |
+
diaries_&_daily_life,film_tv_&_video
|
| 653 |
+
music
|
| 654 |
+
music
|
| 655 |
+
music
|
| 656 |
+
film_tv_&_video
|
| 657 |
+
news_&_social_concern
|
| 658 |
+
diaries_&_daily_life,news_&_social_concer
|
| 659 |
+
celebrity_&_pop_culture,music
|
| 660 |
+
sports
|
| 661 |
+
music
|
| 662 |
+
celebrity_&_pop_culture,music
|
| 663 |
+
sports
|
| 664 |
+
news_&_social_concern
|
| 665 |
+
news_&_social_concern
|
| 666 |
+
arts_&_culture,diaries_&_daily_life,news
|
| 667 |
+
film_tv_&_video,news_&_social_concern
|
| 668 |
+
sports
|
| 669 |
+
news_&_social_concern
|
| 670 |
+
sports
|
| 671 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 672 |
+
gaming
|
| 673 |
+
sports
|
| 674 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 675 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 676 |
+
film_tv_&_video,music
|
| 677 |
+
sports
|
| 678 |
+
sports
|
| 679 |
+
film_tv_&_video
|
| 680 |
+
news_&_social_concern
|
| 681 |
+
film_tv_&_video
|
| 682 |
+
sports
|
| 683 |
+
news_&_social_concern
|
| 684 |
+
sports
|
| 685 |
+
sports
|
| 686 |
+
sports
|
| 687 |
+
celebrity_&_pop_culture,music
|
| 688 |
+
news_&_social_concern
|
| 689 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 690 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 691 |
+
news_&_social_concern
|
| 692 |
+
news_&_social_concern
|
| 693 |
+
film_tv_&_video
|
| 694 |
+
arts_&_culture,diaries_&_daily_life,family
|
| 695 |
+
celebrity_&_pop_culture,music
|
| 696 |
+
sports
|
| 697 |
+
sports
|
| 698 |
+
sports
|
| 699 |
+
sports
|
| 700 |
+
film_tv_&_video
|
| 701 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 702 |
+
diaries_&_daily_life,news_&_social_concer
|
| 703 |
+
celebrity_&_pop_culture,music
|
| 704 |
+
celebrity_&_pop_culture,film_tv_&_video,news_
|
| 705 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 706 |
+
celebrity_&_pop_culture,music
|
| 707 |
+
diaries_&_daily_life,sports
|
| 708 |
+
news_&_social_concern
|
| 709 |
+
film_tv_&_video
|
| 710 |
+
sports
|
| 711 |
+
celebrity_&_pop_culture,music
|
| 712 |
+
sports
|
| 713 |
+
film_tv_&_video
|
| 714 |
+
gaming
|
| 715 |
+
news_&_social_concern
|
| 716 |
+
music
|
| 717 |
+
sports
|
| 718 |
+
sports
|
| 719 |
+
gaming
|
| 720 |
+
celebrity_&_pop_culture,music
|
| 721 |
+
sports
|
| 722 |
+
sports
|
| 723 |
+
news_&_social_concern
|
| 724 |
+
celebrity_&_pop_culture,music
|
| 725 |
+
celebrity_&_pop_culture,music
|
| 726 |
+
celebrity_&_pop_culture,music
|
| 727 |
+
news_&_social_concern
|
| 728 |
+
music
|
| 729 |
+
sports
|
| 730 |
+
diaries_&_daily_life,news_&_social_concer
|
| 731 |
+
sports
|
| 732 |
+
film_tv_&_video
|
| 733 |
+
sports
|
| 734 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 735 |
+
business_&_entrepreneurs,food_&_dining
|
| 736 |
+
music
|
| 737 |
+
sports
|
| 738 |
+
sports
|
| 739 |
+
sports
|
| 740 |
+
sports
|
| 741 |
+
sports
|
| 742 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 743 |
+
celebrity_&_pop_culture,music
|
| 744 |
+
sports
|
| 745 |
+
sports
|
| 746 |
+
sports
|
| 747 |
+
news_&_social_concern
|
| 748 |
+
sports
|
| 749 |
+
sports
|
| 750 |
+
sports
|
| 751 |
+
sports
|
| 752 |
+
sports
|
| 753 |
+
sports
|
| 754 |
+
sports
|
| 755 |
+
sports
|
| 756 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 757 |
+
sports
|
| 758 |
+
film_tv_&_video
|
| 759 |
+
sports
|
| 760 |
+
news_&_social_concern
|
| 761 |
+
sports
|
| 762 |
+
sports
|
| 763 |
+
film_tv_&_video
|
| 764 |
+
diaries_&_daily_life,family,relationships
|
| 765 |
+
diaries_&_daily_life,family,relationships
|
| 766 |
+
celebrity_&_pop_culture,music
|
| 767 |
+
celebrity_&_pop_culture,music
|
| 768 |
+
diaries_&_daily_life,family,relationships
|
| 769 |
+
celebrity_&_pop_culture,music
|
| 770 |
+
sports
|
| 771 |
+
sports
|
| 772 |
+
film_tv_&_video
|
| 773 |
+
sports
|
| 774 |
+
diaries_&_daily_life,family,relationships
|
| 775 |
+
sports
|
| 776 |
+
diaries_&_daily_life,family
|
| 777 |
+
diaries_&_daily_life,family,relationships
|
| 778 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 779 |
+
diaries_&_daily_life,food_&_dining
|
| 780 |
+
diaries_&_daily_life,family
|
| 781 |
+
news_&_social_concern
|
| 782 |
+
news_&_social_concern
|
| 783 |
+
news_&_social_concern
|
| 784 |
+
sports
|
| 785 |
+
diaries_&_daily_life,sports
|
| 786 |
+
diaries_&_daily_life,sports
|
| 787 |
+
diaries_&_daily_life,sports
|
| 788 |
+
sports
|
| 789 |
+
news_&_social_concern
|
| 790 |
+
film_tv_&_video
|
| 791 |
+
film_tv_&_video
|
| 792 |
+
diaries_&_daily_life,news_&_social_concer
|
| 793 |
+
celebrity_&_pop_culture,music
|
| 794 |
+
arts_&_culture,diaries_&_daily_life,news
|
| 795 |
+
film_tv_&_video,film_tv_&_video
|
| 796 |
+
news_&_social_concern
|
| 797 |
+
news_&_social_concern
|
| 798 |
+
film_tv_&_video
|
| 799 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 800 |
+
diaries_&_daily_life,news_&_social_concer
|
| 801 |
+
news_&_social_concern
|
| 802 |
+
news_&_social_concern
|
| 803 |
+
film_tv_&_video
|
| 804 |
+
news_&_social_concern
|
| 805 |
+
sports
|
| 806 |
+
diaries_&_daily_life,sports
|
| 807 |
+
diaries_&_daily_life,sports
|
| 808 |
+
sports
|
| 809 |
+
news_&_social_concern
|
| 810 |
+
sports
|
| 811 |
+
music
|
| 812 |
+
news_&_social_concern
|
| 813 |
+
news_&_social_concern
|
| 814 |
+
sports
|
| 815 |
+
sports
|
| 816 |
+
music
|
| 817 |
+
science_&_technology
|
| 818 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 819 |
+
film_tv_&_video,news_&_social_concern
|
| 820 |
+
celebrity_&_pop_culture,music
|
| 821 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 822 |
+
music
|
| 823 |
+
sports
|
| 824 |
+
fashion_&_style
|
| 825 |
+
music
|
| 826 |
+
sports
|
| 827 |
+
music
|
| 828 |
+
news_&_social_concern
|
| 829 |
+
celebrity_&_pop_culture,music
|
| 830 |
+
film_tv_&_video
|
| 831 |
+
sports
|
| 832 |
+
celebrity_&_pop_culture,music
|
| 833 |
+
sports
|
| 834 |
+
music
|
| 835 |
+
film_tv_&_video,music
|
| 836 |
+
film_tv_&_video
|
| 837 |
+
sports
|
| 838 |
+
sports
|
| 839 |
+
sports
|
| 840 |
+
celebrity_&_pop_culture,music
|
| 841 |
+
celebrity_&_pop_culture,music
|
| 842 |
+
news_&_social_concern
|
| 843 |
+
diaries_&_daily_life,film_tv_&_video
|
| 844 |
+
sports
|
| 845 |
+
sports
|
| 846 |
+
sports
|
| 847 |
+
sports
|
| 848 |
+
film_tv_&_video
|
| 849 |
+
film_tv_&_video
|
| 850 |
+
diaries_&_daily_life,news_&_social_concer
|
| 851 |
+
film_tv_&_video
|
| 852 |
+
film_tv_&_video
|
| 853 |
+
film_tv_&_video
|
| 854 |
+
diaries_&_daily_life,music
|
| 855 |
+
film_tv_&_video
|
| 856 |
+
film_tv_&_video
|
| 857 |
+
sports
|
| 858 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 859 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 860 |
+
film_tv_&_video
|
| 861 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 862 |
+
film_tv_&_video
|
| 863 |
+
celebrity_&_pop_culture,music
|
| 864 |
+
film_tv_&_video
|
| 865 |
+
film_tv_&_video
|
| 866 |
+
film_tv_&_video
|
| 867 |
+
sports
|
| 868 |
+
news_&_social_concern
|
| 869 |
+
diaries_&_daily_life,sports
|
| 870 |
+
sports
|
| 871 |
+
music
|
| 872 |
+
sports
|
| 873 |
+
sports
|
| 874 |
+
sports
|
| 875 |
+
film_tv_&_video
|
| 876 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 877 |
+
sports
|
| 878 |
+
film_tv_&_video,music
|
| 879 |
+
film_tv_&_video
|
| 880 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 881 |
+
diaries_&_daily_life,family
|
| 882 |
+
news_&_social_concern
|
| 883 |
+
sports
|
| 884 |
+
celebrity_&_pop_culture,music
|
| 885 |
+
news_&_social_concern
|
| 886 |
+
sports
|
| 887 |
+
sports
|
| 888 |
+
gaming
|
| 889 |
+
arts_&_culture,film_tv_&_video
|
| 890 |
+
news_&_social_concern
|
| 891 |
+
celebrity_&_pop_culture,music
|
| 892 |
+
news_&_social_concern
|
| 893 |
+
news_&_social_concern
|
| 894 |
+
news_&_social_concern
|
| 895 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 896 |
+
news_&_social_concern
|
| 897 |
+
sports
|
| 898 |
+
diaries_&_daily_life,news_&_social_concer
|
| 899 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 900 |
+
diaries_&_daily_life,music
|
| 901 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 902 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 903 |
+
diaries_&_daily_life,sports
|
| 904 |
+
sports
|
| 905 |
+
sports
|
| 906 |
+
family,relationships
|
| 907 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 908 |
+
sports
|
| 909 |
+
sports
|
| 910 |
+
sports
|
| 911 |
+
sports
|
| 912 |
+
sports
|
| 913 |
+
sports
|
| 914 |
+
arts_&_culture,music
|
| 915 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 916 |
+
news_&_social_concern
|
| 917 |
+
sports
|
| 918 |
+
sports
|
| 919 |
+
diaries_&_daily_life,news_&_social_concer
|
| 920 |
+
film_tv_&_video,film_tv_&_video
|
| 921 |
+
celebrity_&_pop_culture,music
|
| 922 |
+
sports
|
| 923 |
+
news_&_social_concern
|
| 924 |
+
gaming,sports
|
| 925 |
+
sports
|
| 926 |
+
film_tv_&_video
|
| 927 |
+
music
|
| 928 |
+
news_&_social_concern
|
| 929 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 930 |
+
news_&_social_concern
|
| 931 |
+
news_&_social_concern
|
| 932 |
+
sports
|
| 933 |
+
sports
|
| 934 |
+
sports
|
| 935 |
+
sports
|
| 936 |
+
sports
|
| 937 |
+
film_tv_&_video
|
| 938 |
+
sports
|
| 939 |
+
sports
|
| 940 |
+
sports
|
| 941 |
+
music
|
| 942 |
+
sports
|
| 943 |
+
diaries_&_daily_life,family,relationships
|
| 944 |
+
news_&_social_concern
|
| 945 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 946 |
+
sports
|
| 947 |
+
diaries_&_daily_life,news_&_social_concer
|
| 948 |
+
music
|
| 949 |
+
arts_&_culture,diaries_&_daily_life,museum
|
| 950 |
+
news_&_social_concern
|
| 951 |
+
diaries_&_daily_life,news_&_social_concer
|
| 952 |
+
sports
|
| 953 |
+
celebrity_&_pop_culture,music
|
| 954 |
+
celebrity_&_pop_culture,music
|
| 955 |
+
news_&_social_concern
|
| 956 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 957 |
+
news_&_social_concern
|
| 958 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 959 |
+
diaries_&_daily_life,news_&_social_concer
|
| 960 |
+
fitness_&_health,news_&_social_concern
|
| 961 |
+
celebrity_&_pop_culture,music
|
| 962 |
+
sports
|
| 963 |
+
news_&_social_concern
|
| 964 |
+
diaries_&_daily_life,news_&_social_concer
|
| 965 |
+
news_&_social_concern
|
| 966 |
+
fiction_&_fiction
|
| 967 |
+
celebrity_&_pop_culture,music
|
| 968 |
+
news_&_social_concern
|
| 969 |
+
music
|
| 970 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 971 |
+
diaries_&_daily_life,news_&_social_concer
|
| 972 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 973 |
+
film_tv_&_video
|
| 974 |
+
diaries_&_daily_life,family,relationships
|
| 975 |
+
diaries_&_daily_life,food_&_dining
|
| 976 |
+
news_&_social_concern
|
| 977 |
+
music
|
| 978 |
+
sports
|
| 979 |
+
news_&_social_concern
|
| 980 |
+
music
|
| 981 |
+
music
|
| 982 |
+
diaries_&_daily_life,news_&_social_concer
|
| 983 |
+
arts_&_culture,diaries_&_daily_life,family
|
| 984 |
+
diaries_&_daily_life,family,relationships
|
| 985 |
+
sports
|
| 986 |
+
family,food_&_dining
|
| 987 |
+
diaries_&_daily_life,film_tv_&_video
|
| 988 |
+
diaries_&_daily_life,food_&_dining
|
| 989 |
+
sports
|
| 990 |
+
diaries_&_daily_life,news_&_social_concer
|
| 991 |
+
music
|
| 992 |
+
music
|
| 993 |
+
celebrity_&_pop_culture,music
|
| 994 |
+
music
|
| 995 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 996 |
+
music
|
| 997 |
+
arts_&_culture,music
|
| 998 |
+
music
|
| 999 |
+
celebrity_&_pop_culture,music
|
| 1000 |
+
music
|
| 1001 |
+
music
|
| 1002 |
+
music
|
| 1003 |
+
sports
|
| 1004 |
+
sports
|
| 1005 |
+
music
|
| 1006 |
+
celebrity_&_pop_culture,sports
|
| 1007 |
+
film_tv_&_video
|
| 1008 |
+
news_&_social_concern
|
| 1009 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1010 |
+
music
|
| 1011 |
+
music
|
| 1012 |
+
music
|
| 1013 |
+
sports
|
| 1014 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1015 |
+
gaming
|
| 1016 |
+
gaming
|
| 1017 |
+
sports
|
| 1018 |
+
sports
|
| 1019 |
+
news_&_social_concern
|
| 1020 |
+
arts_&_culture,music
|
| 1021 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1022 |
+
sports
|
| 1023 |
+
sports
|
| 1024 |
+
sports
|
| 1025 |
+
sports
|
| 1026 |
+
sports
|
| 1027 |
+
sports
|
| 1028 |
+
news_&_social_concern
|
| 1029 |
+
news_&_social_concern
|
| 1030 |
+
news_&_social_concern
|
| 1031 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1032 |
+
news_&_social_concern
|
| 1033 |
+
news_&_social_concern
|
| 1034 |
+
news_&_social_concern
|
| 1035 |
+
sports
|
| 1036 |
+
diaries_&_daily_life,family,relationships
|
| 1037 |
+
sports
|
| 1038 |
+
film_tv_&_video
|
| 1039 |
+
film_tv_&_video
|
| 1040 |
+
gaming,news_&_social_concern
|
| 1041 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1042 |
+
sports
|
| 1043 |
+
diaries_&_daily_life,life_&_style
|
| 1044 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1045 |
+
news_&_social_concern
|
| 1046 |
+
news_&_social_concern
|
| 1047 |
+
news_&_social_concern
|
| 1048 |
+
sports
|
| 1049 |
+
news_&_social_concern
|
| 1050 |
+
news_&_social_concern
|
| 1051 |
+
news_&_social_concern
|
| 1052 |
+
news_&_social_concern
|
| 1053 |
+
news_&_social_concern
|
| 1054 |
+
sports
|
| 1055 |
+
sports
|
| 1056 |
+
sports
|
| 1057 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1058 |
+
news_&_social_concern
|
| 1059 |
+
news_&_social_concern
|
| 1060 |
+
news_&_social_concern
|
| 1061 |
+
news_&_social_concern
|
| 1062 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 1063 |
+
sports
|
| 1064 |
+
sports
|
| 1065 |
+
news_&_social_concern
|
| 1066 |
+
sports
|
| 1067 |
+
sports
|
| 1068 |
+
sports
|
| 1069 |
+
sports
|
| 1070 |
+
news_&_social_concern
|
| 1071 |
+
gaming
|
| 1072 |
+
music
|
| 1073 |
+
film_tv_&_video
|
| 1074 |
+
news_&_social_concern
|
| 1075 |
+
news_&_social_concern
|
| 1076 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 1077 |
+
sports
|
| 1078 |
+
music
|
| 1079 |
+
sports
|
| 1080 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1081 |
+
diaries_&_daily_life,family,relationships
|
| 1082 |
+
celebrity_&_pop_culture,music
|
| 1083 |
+
news_&_social_concern
|
| 1084 |
+
diaries_&_daily_life,relationships
|
| 1085 |
+
celebrity_&_pop_culture,music
|
| 1086 |
+
celebrity_&_pop_culture,music
|
| 1087 |
+
sports
|
| 1088 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1089 |
+
sports
|
| 1090 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1091 |
+
celebrity_&_pop_culture,music
|
| 1092 |
+
sports
|
| 1093 |
+
sports
|
| 1094 |
+
celebrity_&_pop_culture,music
|
| 1095 |
+
sports
|
| 1096 |
+
diaries_&_daily_life,sports
|
| 1097 |
+
celebrity_&_pop_culture,food_&_dining
|
| 1098 |
+
gaming,sports
|
| 1099 |
+
sports
|
| 1100 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1101 |
+
sports
|
| 1102 |
+
celebrity_&_pop_culture,music
|
| 1103 |
+
sports
|
| 1104 |
+
sports
|
| 1105 |
+
celebrity_&_pop_culture,music
|
| 1106 |
+
celebrity_&_pop_culture,music
|
| 1107 |
+
news_&_social_concern
|
| 1108 |
+
diaries_&_daily_life,music
|
| 1109 |
+
music
|
| 1110 |
+
celebrity_&_pop_culture,music
|
| 1111 |
+
sports
|
| 1112 |
+
business_&_entrepreneurs,science_&_technology
|
| 1113 |
+
celebrity_&_pop_culture,music
|
| 1114 |
+
film_tv_&_video
|
| 1115 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1116 |
+
film_tv_&_video
|
| 1117 |
+
celebrity_&_pop_culture,music
|
| 1118 |
+
music
|
| 1119 |
+
sports
|
| 1120 |
+
news_&_social_concern
|
| 1121 |
+
music
|
| 1122 |
+
celebrity_&_pop_culture,music
|
| 1123 |
+
sports
|
| 1124 |
+
arts_&_culture,diaries_&_daily_life,music
|
| 1125 |
+
sports
|
| 1126 |
+
sports
|
| 1127 |
+
sports
|
| 1128 |
+
music
|
| 1129 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1130 |
+
music
|
| 1131 |
+
food_&_dining
|
| 1132 |
+
celebrity_&_pop_culture,music
|
| 1133 |
+
celebrity_&_pop_culture,music
|
| 1134 |
+
sports
|
| 1135 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1136 |
+
gaming,film_tv_&_video
|
| 1137 |
+
diaries_&_daily_life,music
|
| 1138 |
+
diaries_&_daily_life,family,relationships
|
| 1139 |
+
music
|
| 1140 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1141 |
+
sports
|
| 1142 |
+
music
|
| 1143 |
+
celebrity_&_pop_culture,music
|
| 1144 |
+
sports
|
| 1145 |
+
diaries_&_daily_life,family
|
| 1146 |
+
sports
|
| 1147 |
+
music
|
| 1148 |
+
music
|
| 1149 |
+
music
|
| 1150 |
+
fashion_&_style
|
| 1151 |
+
fashion_&_style
|
| 1152 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1153 |
+
film_tv_&_video
|
| 1154 |
+
sports
|
| 1155 |
+
music
|
| 1156 |
+
sports
|
| 1157 |
+
celebrity_&_pop_culture,diaries_&_daily_life
|
| 1158 |
+
news_&_social_concern
|
| 1159 |
+
sports
|
| 1160 |
+
sports
|
| 1161 |
+
news_&_social_concern
|
| 1162 |
+
music
|
| 1163 |
+
sports
|
| 1164 |
+
sports
|
| 1165 |
+
sports
|
| 1166 |
+
fashion_&_style
|
| 1167 |
+
sports
|
| 1168 |
+
celebrity_&_pop_culture,fashion_&_style
|
| 1169 |
+
sports
|
| 1170 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1171 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1172 |
+
news_&_social_concern
|
| 1173 |
+
music
|
| 1174 |
+
sports
|
| 1175 |
+
sports
|
| 1176 |
+
sports
|
| 1177 |
+
sports
|
| 1178 |
+
film_tv_&_video,games
|
| 1179 |
+
news_&_social_concern
|
| 1180 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1181 |
+
news_&_social_concern
|
| 1182 |
+
news_&_social_concern
|
| 1183 |
+
news_&_social_concern
|
| 1184 |
+
news_&_social_concern
|
| 1185 |
+
celebrity_&_pop_culture,music
|
| 1186 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1187 |
+
news_&_social_concern
|
| 1188 |
+
news_&_social_concern
|
| 1189 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1190 |
+
sports
|
| 1191 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1192 |
+
news_&_social_concern
|
| 1193 |
+
sports
|
| 1194 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1195 |
+
sports
|
| 1196 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1197 |
+
sports
|
| 1198 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1199 |
+
sports
|
| 1200 |
+
music
|
| 1201 |
+
sports
|
| 1202 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1203 |
+
celebrity_&_pop_culture,music
|
| 1204 |
+
diaries_&_daily_life,sports
|
| 1205 |
+
film_tv_&_video
|
| 1206 |
+
sports
|
| 1207 |
+
celebrity_&_pop_culture,music
|
| 1208 |
+
music
|
| 1209 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1210 |
+
celebrity_&_pop_culture,music
|
| 1211 |
+
celebrity_&_pop_culture,music
|
| 1212 |
+
diaries_&_daily_life,other_hobbies
|
| 1213 |
+
sports
|
| 1214 |
+
celebrity_&_pop_culture,music
|
| 1215 |
+
news_&_social_concern
|
| 1216 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1217 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1218 |
+
fashion_&_style
|
| 1219 |
+
celebrity_&_pop_culture,music
|
| 1220 |
+
diaries_&_daily_life,family,relationships
|
| 1221 |
+
news_&_social_concern
|
| 1222 |
+
sports
|
| 1223 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1224 |
+
music
|
| 1225 |
+
sports
|
| 1226 |
+
sports
|
| 1227 |
+
gaming
|
| 1228 |
+
sports
|
| 1229 |
+
sports
|
| 1230 |
+
sports
|
| 1231 |
+
sports
|
| 1232 |
+
music
|
| 1233 |
+
sports
|
| 1234 |
+
film_tv_&_video
|
| 1235 |
+
sports
|
| 1236 |
+
music
|
| 1237 |
+
sports
|
| 1238 |
+
sports
|
| 1239 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1240 |
+
food_&_dining
|
| 1241 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1242 |
+
sports
|
| 1243 |
+
sports
|
| 1244 |
+
sports
|
| 1245 |
+
sports
|
| 1246 |
+
music
|
| 1247 |
+
sports
|
| 1248 |
+
news_&_social_concern
|
| 1249 |
+
gaming,news_&_social_concern
|
| 1250 |
+
sports
|
| 1251 |
+
celebrity_&_pop_culture,music
|
| 1252 |
+
celebrity_&_pop_culture,music
|
| 1253 |
+
news_&_social_concern
|
| 1254 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1255 |
+
news_&_social_concern
|
| 1256 |
+
sports
|
| 1257 |
+
diaries_&_daily_life,other_hobbies
|
| 1258 |
+
sports
|
| 1259 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1260 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1261 |
+
sports
|
| 1262 |
+
sports
|
| 1263 |
+
sports
|
| 1264 |
+
sports
|
| 1265 |
+
sports
|
| 1266 |
+
music
|
| 1267 |
+
news_&_social_concern
|
| 1268 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1269 |
+
sports
|
| 1270 |
+
sports
|
| 1271 |
+
music
|
| 1272 |
+
sports
|
| 1273 |
+
diaries_&_daily_life,travel_&_adventure
|
| 1274 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1275 |
+
film_tv_&_video
|
| 1276 |
+
film_tv_&_video
|
| 1277 |
+
film_tv_&_video
|
| 1278 |
+
sports
|
| 1279 |
+
film_tv_&_video
|
| 1280 |
+
music
|
| 1281 |
+
film_tv_&_video
|
| 1282 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1283 |
+
film_tv_&_video
|
| 1284 |
+
sports
|
| 1285 |
+
sports
|
| 1286 |
+
news_&_social_concern
|
| 1287 |
+
sports
|
| 1288 |
+
music
|
| 1289 |
+
celebrity_&_pop_culture,music
|
| 1290 |
+
news_&_social_concern
|
| 1291 |
+
diaries_&_daily_life,food_&_dining
|
| 1292 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1293 |
+
sports
|
| 1294 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1295 |
+
gaming,news_&_social_concern
|
| 1296 |
+
music
|
| 1297 |
+
film_tv_&_video
|
| 1298 |
+
celebrity_&_pop_culture,music
|
| 1299 |
+
sports
|
| 1300 |
+
sports
|
| 1301 |
+
sports
|
| 1302 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1303 |
+
sports
|
| 1304 |
+
sports
|
| 1305 |
+
sports
|
| 1306 |
+
beauty_&_style,news_&_social_concern
|
| 1307 |
+
film_tv_&_video
|
| 1308 |
+
sports
|
| 1309 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1310 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1311 |
+
music
|
| 1312 |
+
celebrity_&_pop_culture,music
|
| 1313 |
+
sports
|
| 1314 |
+
film_tv_&_video
|
| 1315 |
+
news_&_social_concern
|
| 1316 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1317 |
+
sports
|
| 1318 |
+
sports
|
| 1319 |
+
news_&_social_concern
|
| 1320 |
+
film_tv_&_video,news_&_social_concern
|
| 1321 |
+
sports
|
| 1322 |
+
celebrity_&_pop_culture,music
|
| 1323 |
+
sports
|
| 1324 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1325 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1326 |
+
sports
|
| 1327 |
+
gaming
|
| 1328 |
+
news_&_social_concern
|
| 1329 |
+
news_&_social_concern
|
| 1330 |
+
film_tv_&_video
|
| 1331 |
+
film_tv_&_video
|
| 1332 |
+
sports
|
| 1333 |
+
music
|
| 1334 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1335 |
+
sports
|
| 1336 |
+
sports
|
| 1337 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1338 |
+
gaming
|
| 1339 |
+
news_&_social_concern
|
| 1340 |
+
sports
|
| 1341 |
+
sports
|
| 1342 |
+
diaries_&_daily_life,learning_&_educational
|
| 1343 |
+
diaries_&_daily_life,family,relationships
|
| 1344 |
+
diaries_&_daily_life,family,relationships
|
| 1345 |
+
celebrity_&_pop_culture,music
|
| 1346 |
+
celebrity_&_pop_culture,music
|
| 1347 |
+
film_tv_&_video
|
| 1348 |
+
film_tv_&_video
|
| 1349 |
+
music
|
| 1350 |
+
sports
|
| 1351 |
+
diaries_&_daily_life,family,relationships
|
| 1352 |
+
diaries_&_daily_life,family,relationships
|
| 1353 |
+
film_tv_&_video
|
| 1354 |
+
science_&_technology
|
| 1355 |
+
music
|
| 1356 |
+
diaries_&_daily_life,food_&_dining
|
| 1357 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1358 |
+
music
|
| 1359 |
+
music
|
| 1360 |
+
diaries_&_daily_life,family
|
| 1361 |
+
diaries_&_daily_life,family,relationships
|
| 1362 |
+
food_&_dining
|
| 1363 |
+
news_&_social_concern
|
| 1364 |
+
family,news_&_social_concern
|
| 1365 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1366 |
+
celebrity_&_pop_culture,music
|
| 1367 |
+
sports
|
| 1368 |
+
sports
|
| 1369 |
+
news_&_social_concern
|
| 1370 |
+
news_&_social_concern
|
| 1371 |
+
film_tv_&_video
|
| 1372 |
+
music
|
| 1373 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1374 |
+
celebrity_&_pop_culture,music
|
| 1375 |
+
sports
|
| 1376 |
+
music
|
| 1377 |
+
sports
|
| 1378 |
+
celebrity_&_pop_culture,music
|
| 1379 |
+
celebrity_&_pop_culture,music
|
| 1380 |
+
film_tv_&_video
|
| 1381 |
+
music
|
| 1382 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1383 |
+
celebrity_&_pop_culture,music
|
| 1384 |
+
music
|
| 1385 |
+
sports
|
| 1386 |
+
music
|
| 1387 |
+
celebrity_&_pop_culture,music
|
| 1388 |
+
music
|
| 1389 |
+
sports
|
| 1390 |
+
music
|
| 1391 |
+
music
|
| 1392 |
+
sports
|
| 1393 |
+
music
|
| 1394 |
+
diaries_&_daily_life,sports
|
| 1395 |
+
music
|
| 1396 |
+
film_tv_&_video
|
| 1397 |
+
diaries_&_daily_life,family,relationships
|
| 1398 |
+
sports
|
| 1399 |
+
sports
|
| 1400 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1401 |
+
sports
|
| 1402 |
+
music
|
| 1403 |
+
news_&_social_concern
|
| 1404 |
+
sports
|
| 1405 |
+
news_&_social_concern
|
| 1406 |
+
news_&_social_concern
|
| 1407 |
+
celebrity_&_pop_culture,music
|
| 1408 |
+
news_&_social_concern
|
| 1409 |
+
film_tv_&_video
|
| 1410 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1411 |
+
music
|
| 1412 |
+
sports
|
| 1413 |
+
diaries_&_daily_life,music
|
| 1414 |
+
sports
|
| 1415 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 1416 |
+
music
|
| 1417 |
+
news_&_social_concern
|
| 1418 |
+
music
|
| 1419 |
+
sports
|
| 1420 |
+
news_&_social_concern
|
| 1421 |
+
music
|
| 1422 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1423 |
+
sports
|
| 1424 |
+
celebrity_&_pop_culture,music
|
| 1425 |
+
sports
|
| 1426 |
+
sports
|
| 1427 |
+
film_tv_&_video
|
| 1428 |
+
film_tv_&_video
|
| 1429 |
+
fitness_&_health,news_&_social_concern
|
| 1430 |
+
sports
|
| 1431 |
+
music
|
| 1432 |
+
sports
|
| 1433 |
+
music
|
| 1434 |
+
news_&_social_concern
|
| 1435 |
+
sports
|
| 1436 |
+
sports
|
| 1437 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1438 |
+
music
|
| 1439 |
+
music
|
| 1440 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1441 |
+
celebrity_&_pop_culture,music
|
| 1442 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1443 |
+
celebrity_&_pop_culture,music
|
| 1444 |
+
music
|
| 1445 |
+
sports
|
| 1446 |
+
sports
|
| 1447 |
+
sports
|
| 1448 |
+
celebrity_&_pop_culture,music
|
| 1449 |
+
celebrity_&_pop_culture,music
|
| 1450 |
+
celebrity_&_pop_culture,music
|
| 1451 |
+
music
|
| 1452 |
+
celebrity_&_pop_culture,music
|
| 1453 |
+
sports
|
| 1454 |
+
sports
|
| 1455 |
+
celebrity_&_pop_culture,music
|
| 1456 |
+
sports
|
| 1457 |
+
sports
|
| 1458 |
+
sports
|
| 1459 |
+
music
|
| 1460 |
+
music
|
| 1461 |
+
music
|
| 1462 |
+
film_tv_&_video
|
| 1463 |
+
music
|
| 1464 |
+
gaming
|
| 1465 |
+
sports
|
| 1466 |
+
celebrity_&_pop_culture,music
|
| 1467 |
+
sports
|
| 1468 |
+
gaming,sports
|
| 1469 |
+
sports
|
| 1470 |
+
sports
|
| 1471 |
+
music
|
| 1472 |
+
music
|
| 1473 |
+
sports
|
| 1474 |
+
celebrity_&_pop_culture,music
|
| 1475 |
+
music
|
| 1476 |
+
sports
|
| 1477 |
+
sports
|
| 1478 |
+
diaries_&_daily_life,sports
|
| 1479 |
+
sports
|
| 1480 |
+
sports
|
| 1481 |
+
news_&_social_concern
|
| 1482 |
+
sports
|
| 1483 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1484 |
+
business_&_entrepreneurs,relationships
|
| 1485 |
+
music
|
| 1486 |
+
news_&_social_concern
|
| 1487 |
+
gaming
|
| 1488 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1489 |
+
celebrity_&_pop_culture,music
|
| 1490 |
+
music
|
| 1491 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1492 |
+
music
|
| 1493 |
+
diaries_&_daily_life,sports
|
| 1494 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1495 |
+
film_tv_&_video
|
| 1496 |
+
celebrity_&_pop_culture,music
|
| 1497 |
+
sports
|
| 1498 |
+
sports
|
| 1499 |
+
diaries_&_daily_life,family,relationships
|
| 1500 |
+
news_&_social_concern
|
| 1501 |
+
news_&_social_concern
|
| 1502 |
+
news_&_social_concern
|
| 1503 |
+
fitness_&_health,news_&_social_concern
|
| 1504 |
+
news_&_social_concern
|
| 1505 |
+
sports
|
| 1506 |
+
sports
|
| 1507 |
+
diaries_&_daily_life,family
|
| 1508 |
+
news_&_social_concern
|
| 1509 |
+
music
|
| 1510 |
+
music
|
| 1511 |
+
sports
|
| 1512 |
+
sports
|
| 1513 |
+
music
|
| 1514 |
+
celebrity_&_pop_culture,music
|
| 1515 |
+
sports
|
| 1516 |
+
music
|
| 1517 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1518 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1519 |
+
sports
|
| 1520 |
+
music
|
| 1521 |
+
sports
|
| 1522 |
+
sports
|
| 1523 |
+
celebrity_&_pop_culture,music
|
| 1524 |
+
news_&_social_concern
|
| 1525 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1526 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1527 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1528 |
+
celebrity_&_pop_culture,music
|
| 1529 |
+
sports
|
| 1530 |
+
music
|
| 1531 |
+
celebrity_&_pop_culture,music
|
| 1532 |
+
sports
|
| 1533 |
+
sports
|
| 1534 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1535 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1536 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1537 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1538 |
+
music
|
| 1539 |
+
music
|
| 1540 |
+
sports
|
| 1541 |
+
sports
|
| 1542 |
+
celebrity_&_pop_culture,music
|
| 1543 |
+
music
|
| 1544 |
+
celebrity_&_pop_culture,music
|
| 1545 |
+
celebrity_&_pop_culture,music
|
| 1546 |
+
music
|
| 1547 |
+
music
|
| 1548 |
+
film_tv_&_video
|
| 1549 |
+
sports
|
| 1550 |
+
news_&_social_concern
|
| 1551 |
+
sports
|
| 1552 |
+
sports
|
| 1553 |
+
engineering_&_technology
|
| 1554 |
+
sports
|
| 1555 |
+
news_&_social_concern
|
| 1556 |
+
sports
|
| 1557 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1558 |
+
celebrity_&_pop_culture,music
|
| 1559 |
+
celebrity_&_pop_culture,music
|
| 1560 |
+
sports
|
| 1561 |
+
sports
|
| 1562 |
+
diaries_&_daily_life,music
|
| 1563 |
+
gaming
|
| 1564 |
+
news_&_social_concern
|
| 1565 |
+
film_tv_&_video
|
| 1566 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1567 |
+
music
|
| 1568 |
+
film_tv_&_video,news_&_social_concern
|
| 1569 |
+
celebrity_&_pop_culture,music
|
| 1570 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1571 |
+
arts_&_culture,music
|
| 1572 |
+
diaries_&_daily_life,family,relationships
|
| 1573 |
+
news_&_social_concern
|
| 1574 |
+
music
|
| 1575 |
+
arts_&_culture,diaries_&_daily_life,news
|
| 1576 |
+
celebrity_&_pop_culture,sports
|
| 1577 |
+
sports
|
| 1578 |
+
sports
|
| 1579 |
+
sports
|
| 1580 |
+
sports
|
| 1581 |
+
film_tv_&_video
|
| 1582 |
+
sports
|
| 1583 |
+
sports
|
| 1584 |
+
film_tv_&_video
|
| 1585 |
+
music
|
| 1586 |
+
film_tv_&_video
|
| 1587 |
+
sports
|
| 1588 |
+
film_tv_&_video,film_tv_&_video
|
| 1589 |
+
sports
|
| 1590 |
+
sports
|
| 1591 |
+
sports
|
| 1592 |
+
sports
|
| 1593 |
+
news_&_social_concern
|
| 1594 |
+
sports
|
| 1595 |
+
sports
|
| 1596 |
+
diaries_&_daily_life,family,travel_&_ad
|
| 1597 |
+
film_tv_&_video
|
| 1598 |
+
sports
|
| 1599 |
+
diaries_&_daily_life,sports
|
| 1600 |
+
film_tv_&_video
|
| 1601 |
+
sports
|
| 1602 |
+
film_tv_&_video,news_&_social_concern
|
| 1603 |
+
sports
|
| 1604 |
+
sports
|
| 1605 |
+
celebrity_&_pop_culture,music
|
| 1606 |
+
sports
|
| 1607 |
+
sports
|
| 1608 |
+
diaries_&_daily_life,film_tv_&_video
|
| 1609 |
+
music
|
| 1610 |
+
celebrity_&_pop_culture,music
|
| 1611 |
+
music
|
| 1612 |
+
sports
|
| 1613 |
+
music
|
| 1614 |
+
music
|
| 1615 |
+
sports
|
| 1616 |
+
sports
|
| 1617 |
+
sports
|
| 1618 |
+
music
|
| 1619 |
+
sports
|
| 1620 |
+
music
|
| 1621 |
+
gaming
|
| 1622 |
+
sports
|
| 1623 |
+
music
|
| 1624 |
+
sports
|
| 1625 |
+
sports
|
| 1626 |
+
celebrity_&_pop_culture,music
|
| 1627 |
+
sports
|
| 1628 |
+
sports
|
| 1629 |
+
music
|
| 1630 |
+
music
|
| 1631 |
+
news_&_social_concern
|
| 1632 |
+
sports
|
| 1633 |
+
music
|
| 1634 |
+
music
|
| 1635 |
+
sports
|
| 1636 |
+
sports
|
| 1637 |
+
music
|
| 1638 |
+
news_&_social_concern
|
| 1639 |
+
music
|
| 1640 |
+
music
|
| 1641 |
+
celebrity_&_pop_culture,music
|
| 1642 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1643 |
+
sports
|
| 1644 |
+
film_tv_&_video
|
| 1645 |
+
celebrity_&_pop_culture,music
|
| 1646 |
+
celebrity_&_pop_culture,music
|
| 1647 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1648 |
+
music
|
| 1649 |
+
news_&_social_concern
|
| 1650 |
+
music
|
| 1651 |
+
music
|
| 1652 |
+
news_&_social_concern
|
| 1653 |
+
news_&_social_concern
|
| 1654 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1655 |
+
film_tv_&_video
|
| 1656 |
+
sports
|
| 1657 |
+
music
|
| 1658 |
+
sports
|
| 1659 |
+
sports
|
| 1660 |
+
news_&_social_concern
|
| 1661 |
+
business_&_entrepreneurs,news_&_social_concern
|
| 1662 |
+
music
|
| 1663 |
+
film_tv_&_video
|
| 1664 |
+
celebrity_&_pop_culture,music
|
| 1665 |
+
film_tv_&_video
|
| 1666 |
+
celebrity_&_pop_culture,music
|
| 1667 |
+
sports
|
| 1668 |
+
news_&_social_concern
|
| 1669 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1670 |
+
celebrity_&_pop_culture,film_tv_&_video
|
| 1671 |
+
celebrity_&_pop_culture,news_&_social_concern
|
| 1672 |
+
news_&_social_concern
|
| 1673 |
+
sports
|
| 1674 |
+
news_&_social_concern
|
| 1675 |
+
diaries_&_daily_life,family,relationships
|
| 1676 |
+
diaries_&_daily_life,other_hobbies
|
| 1677 |
+
diaries_&_daily_life,news_&_social_concer
|
| 1678 |
+
fitness_&_health,news_&_social_concern
|
| 1679 |
+
business_&_entrepreneurs,news_&_social_concern
|
evaluation.py → evaluation/evaluation.py
RENAMED
|
@@ -6,15 +6,15 @@ from evaluate import load
|
|
| 6 |
import numpy as np
|
| 7 |
import argparse
|
| 8 |
from collections import defaultdict
|
| 9 |
-
|
| 10 |
|
| 11 |
logging.basicConfig(format='%(asctime)s %(levelname)-8s %(message)s', level=logging.INFO, datefmt='%Y-%m-%d %H:%M:%S')
|
| 12 |
|
| 13 |
# argument
|
| 14 |
parser = argparse.ArgumentParser(description='Super TweetEval evaluation script.')
|
| 15 |
parser.add_argument('-p', '--prediction-path', required=True, type=str,
|
| 16 |
-
help="
|
| 17 |
-
parser.add_argument('-o', '--output-file', default="
|
| 18 |
parser.add_argument('--t2t-format', action="store_false", default=True, help="format prediction file in T2T format (ONLY for NER7)")
|
| 19 |
|
| 20 |
|
|
@@ -48,7 +48,8 @@ for task in task_names:
|
|
| 48 |
eval_metric = {"accuracy": np.mean([int(a == b) for a, b in zip(_predictions, gold_labels)])}
|
| 49 |
scores[task] = eval_metric["accuracy"]
|
| 50 |
elif task == "tweet_emoji":
|
| 51 |
-
|
|
|
|
| 52 |
label_classes = f.readlines()
|
| 53 |
label_names = [x.strip('\n') for x in label_classes]
|
| 54 |
|
|
@@ -284,11 +285,10 @@ for task in task_names:
|
|
| 284 |
except FileNotFoundError:
|
| 285 |
not_found.append(task)
|
| 286 |
continue
|
| 287 |
-
|
| 288 |
# clusters/groups to evaluate
|
| 289 |
subgroups = {
|
| 290 |
"temporal": ["tweet_ner7", "tempo_wic", "tweet_topic", "tweet_nerd"],
|
| 291 |
-
"temporal**": ["tempo_wic", "tweet_topic", "tweet_nerd"],
|
| 292 |
"multi-label": ["tweet_topic", "tweet_emotion"],
|
| 293 |
"multi-class": ["tweet_sentiment", "tweet_hate"],
|
| 294 |
"regression": ["tweet_similarity", "tweet_intimacy", "tweet_sentiment"],
|
|
@@ -298,9 +298,22 @@ subgroups = {
|
|
| 298 |
"generation": ["tweet_qa", "tweet_qg"],
|
| 299 |
}
|
| 300 |
|
| 301 |
-
scores = {k:round(v*100, 2) for k,v in scores.items()}
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 305 |
for group in subgroups:
|
| 306 |
-
logging.info(f"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
import numpy as np
|
| 7 |
import argparse
|
| 8 |
from collections import defaultdict
|
| 9 |
+
import json
|
| 10 |
|
| 11 |
logging.basicConfig(format='%(asctime)s %(levelname)-8s %(message)s', level=logging.INFO, datefmt='%Y-%m-%d %H:%M:%S')
|
| 12 |
|
| 13 |
# argument
|
| 14 |
parser = argparse.ArgumentParser(description='Super TweetEval evaluation script.')
|
| 15 |
parser.add_argument('-p', '--prediction-path', required=True, type=str,
|
| 16 |
+
help="path to directory wiht that contains the model predictions on the test sets. One file per task.")
|
| 17 |
+
parser.add_argument('-o', '--output-file', default="scores.json", type=str, help="path to the output file")
|
| 18 |
parser.add_argument('--t2t-format', action="store_false", default=True, help="format prediction file in T2T format (ONLY for NER7)")
|
| 19 |
|
| 20 |
|
|
|
|
| 48 |
eval_metric = {"accuracy": np.mean([int(a == b) for a, b in zip(_predictions, gold_labels)])}
|
| 49 |
scores[task] = eval_metric["accuracy"]
|
| 50 |
elif task == "tweet_emoji":
|
| 51 |
+
# load label names
|
| 52 |
+
with open('../data/tweet_emoji/map.txt') as f:
|
| 53 |
label_classes = f.readlines()
|
| 54 |
label_names = [x.strip('\n') for x in label_classes]
|
| 55 |
|
|
|
|
| 285 |
except FileNotFoundError:
|
| 286 |
not_found.append(task)
|
| 287 |
continue
|
| 288 |
+
|
| 289 |
# clusters/groups to evaluate
|
| 290 |
subgroups = {
|
| 291 |
"temporal": ["tweet_ner7", "tempo_wic", "tweet_topic", "tweet_nerd"],
|
|
|
|
| 292 |
"multi-label": ["tweet_topic", "tweet_emotion"],
|
| 293 |
"multi-class": ["tweet_sentiment", "tweet_hate"],
|
| 294 |
"regression": ["tweet_similarity", "tweet_intimacy", "tweet_sentiment"],
|
|
|
|
| 298 |
"generation": ["tweet_qa", "tweet_qg"],
|
| 299 |
}
|
| 300 |
|
| 301 |
+
#scores = {k:round(v*100, 2) for k,v in scores.items()}
|
| 302 |
+
score_avg = np.mean(list(scores.values()))
|
| 303 |
+
subgroups_scores = {group: np.mean([scores[task] for task in subgroups[group] if task not in not_found]) for group in subgroups}
|
| 304 |
+
|
| 305 |
+
logging.info(f"Tasks not found: {not_found}\n")
|
| 306 |
+
logging.info("*** Scores ***")
|
| 307 |
+
for sc in scores:
|
| 308 |
+
logging.info(f"{sc}: {scores[sc]:.2f}")
|
| 309 |
+
|
| 310 |
+
logging.info("*** Clusters scores ***")
|
| 311 |
for group in subgroups:
|
| 312 |
+
logging.info(f"{group}: {subgroups_scores[group]:.2f}")
|
| 313 |
+
|
| 314 |
+
logging.info(f"*** Average score: {score_avg:.2f} ***")
|
| 315 |
+
|
| 316 |
+
# write scores to file
|
| 317 |
+
results = {"scores": scores, "clusters": subgroups_scores, "average": score_avg}
|
| 318 |
+
with open(opt.output_file, "w") as f:
|
| 319 |
+
json.dump(results, f, indent=4)
|
requirements.txt → evaluation/requirements.txt
RENAMED
|
File without changes
|
evaluation/scores.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"scores": {
|
| 3 |
+
"tweet_topic": 0.40525181881981903,
|
| 4 |
+
"tweet_ner7": 0.32218714121699193,
|
| 5 |
+
"tweet_qa": 0.6608790569147024,
|
| 6 |
+
"tweet_qg": 0.440418680172199,
|
| 7 |
+
"tweet_intimacy": 0.5690298081483209,
|
| 8 |
+
"tweet_similarity": 0.05453888057160435,
|
| 9 |
+
"tempo_wic": 0.6283967391304348,
|
| 10 |
+
"tweet_hate": 0.6947538661959578,
|
| 11 |
+
"tweet_nerd": 0.547911547911548,
|
| 12 |
+
"tweet_emoji": 0.007575,
|
| 13 |
+
"tweet_sentiment": 0.023789768669752798,
|
| 14 |
+
"tweet_emotion": 0.47725029878042746
|
| 15 |
+
},
|
| 16 |
+
"clusters": {
|
| 17 |
+
"temporal": 0.47593681176969843,
|
| 18 |
+
"multi-label": 0.4412510588001233,
|
| 19 |
+
"multi-class": 0.3592718174328553,
|
| 20 |
+
"regression": 0.21578615246322605,
|
| 21 |
+
"target-based": 0.40003268523724517,
|
| 22 |
+
"big-label": 0.20641340940990952,
|
| 23 |
+
"disambiguation": 0.5881541435209914,
|
| 24 |
+
"generation": 0.5506488685434507
|
| 25 |
+
},
|
| 26 |
+
"average": 0.4026652172109799
|
| 27 |
+
}
|
super_tweeteval.py
CHANGED
|
@@ -271,7 +271,7 @@ class SuperTweetEval(datasets.GeneratorBasedBuilder):
|
|
| 271 |
name="tweet_emoji",
|
| 272 |
description=_TWEET_EMOJI_DESCRIPTION,
|
| 273 |
citation=_TWEET_EMOJI_CITATION,
|
| 274 |
-
features=[
|
| 275 |
data_url="https://huggingface.co/datasets/cardiffnlp/super_tweet_eval/resolve/main/data/tweet_emoji",
|
| 276 |
),
|
| 277 |
SuperTweetEvalConfig(
|
|
@@ -350,6 +350,7 @@ class SuperTweetEval(datasets.GeneratorBasedBuilder):
|
|
| 350 |
names=label_classes)
|
| 351 |
features['gold_label'] = datasets.Value("int32")
|
| 352 |
features["text"] = datasets.Value("string")
|
|
|
|
| 353 |
if self.config.name == "tweet_sentiment":
|
| 354 |
names = ['strongly negative', 'negative', 'negative or neutral', 'positive', 'strongly positive']
|
| 355 |
features["gold_label"] = datasets.features.ClassLabel(
|
|
|
|
| 271 |
name="tweet_emoji",
|
| 272 |
description=_TWEET_EMOJI_DESCRIPTION,
|
| 273 |
citation=_TWEET_EMOJI_CITATION,
|
| 274 |
+
features=["text", "gold_label", "date"],
|
| 275 |
data_url="https://huggingface.co/datasets/cardiffnlp/super_tweet_eval/resolve/main/data/tweet_emoji",
|
| 276 |
),
|
| 277 |
SuperTweetEvalConfig(
|
|
|
|
| 350 |
names=label_classes)
|
| 351 |
features['gold_label'] = datasets.Value("int32")
|
| 352 |
features["text"] = datasets.Value("string")
|
| 353 |
+
features['date'] = datasets.Value("string")
|
| 354 |
if self.config.name == "tweet_sentiment":
|
| 355 |
names = ['strongly negative', 'negative', 'negative or neutral', 'positive', 'strongly positive']
|
| 356 |
features["gold_label"] = datasets.features.ClassLabel(
|