Palplatine commited on
Commit
429485e
1 Parent(s): 3f5fdd7

All our files + requirements.txt

Browse files
5_artefact_streamlit.py ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import numpy as np
3
+ import matplotlib.pyplot as plt
4
+ import seaborn as sns
5
+ from sentence_transformers import SentenceTransformer
6
+ from tensorflow.keras.models import model_from_json
7
+ from tensorflow.keras.optimizers import Adam
8
+ import os
9
+ import cv2
10
+ from PIL import Image
11
+ import plotly.express as px
12
+ import shap
13
+ import streamlit as st
14
+
15
+
16
+ #####################################################################################################################################
17
+ st.set_page_config(layout='wide')
18
+
19
+ # Sidebar: logo Artefact + main info on text
20
+ with st.sidebar:
21
+ col1, col2, col3 = st.columns(3)
22
+ with col2:
23
+ logo_facebook = Image.open('static/logo_facebook.png')
24
+ st.image(logo_facebook)
25
+
26
+ # Checkboxes to see some info on our vocabularies
27
+ hateful = st.checkbox('Check to see top hateful words used')
28
+
29
+ if hateful:
30
+ # Loading some hateful text data
31
+ df_hate = pd.read_csv('static/data_hate.csv')
32
+
33
+ number_chosen_hate = st.number_input('How many top hateful words do you want to see?', value=5)
34
+ df_chosen_hate = df_hate.iloc[:number_chosen_hate, :]
35
+
36
+ st.write(f'{number_chosen_hate} most used words in the hateful vocabulary:')
37
+ st.dataframe(df_chosen_hate)
38
+
39
+ non_hateful = st.checkbox('Check to see top non-hateful words used')
40
+
41
+ if non_hateful:
42
+ # Loading some non-hateful text data
43
+ df_no_hate = pd.read_csv('static/data_no_hate.csv')
44
+
45
+ number_chosen = st.number_input('How many top non-hateful words do you want to see?', value=5)
46
+ df_chosen = df_no_hate.iloc[:number_chosen, :]
47
+
48
+ st.write(f'{number_chosen} most used words in the hateful vocabulary:')
49
+ st.dataframe(df_chosen)
50
+
51
+
52
+ #####################################################################################################################################
53
+ st.title('Facebook: Hateful Memes recognition')
54
+ st.write("---")
55
+
56
+ # Image selection
57
+ img_filepath = 'static/images_streamlit'
58
+ list_images = sorted([img for img in os.listdir(img_filepath)])
59
+
60
+ st.subheader('Some examples of hateful and non-hateful memes:')
61
+ with st.expander('Want to see some memes?'):
62
+
63
+ selected_image = st.select_slider('Select a meme to show it', options = [list_images[i] for i in range(10)], value=(list_images[0]))
64
+
65
+ col1, col2, col3 = st.columns(3)
66
+
67
+ with col2:
68
+ st.image(f'{img_filepath}/{selected_image}')
69
+
70
+ st.write("---")
71
+ #####################################################################################################################################
72
+
73
+ # Hateful test
74
+ st.subheader('Is a word in our hateful vocabulary or not?')
75
+ with st.expander('Hateful? Non-hateful?'):
76
+
77
+ word = st.text_input('Write a word to test it', 'like')
78
+ word_lower = word.lower()
79
+
80
+ # Need to reload them in case it was not done in the sidebar
81
+ df_hate = pd.read_csv('static/data_hate.csv')
82
+ df_no_hate = pd.read_csv('static/data_no_hate.csv')
83
+
84
+ try:
85
+ if word_lower not in df_hate['word'].values:
86
+ st.write(f'"{word}" is not in our hateful vocabulary.')
87
+ else:
88
+ appeared_hate = df_hate[df_hate['word'] == word_lower]['count'].values[0]
89
+ st.write(f'"{word}" is in our hateful vocabulary, it appears {appeared_hate} times.')
90
+
91
+ if word_lower not in df_no_hate['word'].values:
92
+ st.write(f'"{word}"is not in our non-hateful vocabulary.')
93
+ else:
94
+ appeared_no_hate = df_no_hate[df_no_hate['word'] == word_lower]['count'].values[0]
95
+ st.write(f'"{word}" is in our non-hateful vocabulary, it appears {appeared_no_hate} times.')
96
+
97
+ st.write(f'Ratio hateful vs non-hateful: {round(appeared_hate/appeared_no_hate, 2)}.')
98
+
99
+ except:
100
+ st.write(f'"{word}" is not in our hateful and non-hateful vocabulary.')
101
+
102
+ st.write("---")
103
+ #####################################################################################################################################
104
+
105
+ # Slider to choose how many words we want to see and plot the countplot
106
+ st.subheader('Barplot of top selected words:')
107
+ with st.expander('Select to choose how many top words you want to see and their count'):
108
+
109
+ option = st.selectbox('Which vocabulary to select?', ('Hateful vocabulary', 'Non-hateful vocabulary', 'Both vocabularies'))
110
+ st.write('You selected', option)
111
+
112
+ if option == 'Hateful vocabulary':
113
+
114
+ df_hate_subset = df_hate[df_hate.iloc[:, 1] >= 20]
115
+
116
+ start_word, end_word = st.select_slider(
117
+ 'Select a range of top words',
118
+ options=[x for x in range(1, df_hate_subset.shape[0]+1)],
119
+ value=(1, 10))
120
+
121
+ df_slider_hate = df_hate_subset.iloc[start_word-1:end_word, :]
122
+
123
+ fig, ax = plt.subplots()
124
+ bars = plt.barh(y=df_slider_hate['word'], width=df_slider_hate['count'], color=['darkmagenta', 'darkblue', 'darkgreen', 'darkred', 'darkgrey', 'darkorange'])
125
+
126
+ ax.bar_label(bars)
127
+ ax = plt.gca().invert_yaxis()
128
+
129
+ st.subheader('Selected words hateful vocabulary:')
130
+ st.pyplot(fig)
131
+
132
+ elif option == 'Non-hateful vocabulary':
133
+
134
+ df_no_hate_subset = df_no_hate[df_no_hate.iloc[:, 1] >= 30]
135
+
136
+ start_word, end_word = st.select_slider(
137
+ 'Select a range of top words',
138
+ options=[x for x in range(1, df_no_hate_subset.shape[0]+1)],
139
+ value=(1, 10))
140
+
141
+ df_slider_no_hate = df_no_hate_subset.iloc[start_word-1:end_word, :]
142
+
143
+ fig, ax = plt.subplots()
144
+ bars = plt.barh(y=df_slider_no_hate['word'], width=df_slider_no_hate['count'], color=['darkmagenta', 'darkblue', 'darkgreen', 'darkred', 'darkgrey', 'darkorange'])
145
+
146
+ ax.bar_label(bars)
147
+ ax = plt.gca().invert_yaxis()
148
+
149
+ st.subheader('Selected words non-hateful vocabulary:')
150
+ st.pyplot(fig)
151
+
152
+ else:
153
+
154
+ df_top = pd.read_csv('./static/data_top.csv')
155
+
156
+ start_word, end_word = st.select_slider(
157
+ 'Select a range of top words',
158
+ options=[x for x in range(1, df_top.shape[0]+1)],
159
+ value=(1, 10))
160
+
161
+ df_slider = df_top.iloc[start_word-1:end_word, :]
162
+
163
+ fig, ax = plt.subplots()
164
+ bars = plt.barh(y=df_slider['word'], width=df_slider['count'], color=['darkmagenta', 'darkblue', 'darkgreen', 'darkred', 'darkgrey', 'darkorange'])
165
+
166
+ ax.bar_label(bars)
167
+ ax = plt.gca().invert_yaxis()
168
+
169
+ st.subheader('Selected words (hateful & non-hateful vocabularies):')
170
+ st.pyplot(fig)
171
+
172
+
173
+ st.write("---")
174
+ #####################################################################################################################################
175
+
176
+ # Testing some sentences
177
+ st.subheader('Testing some sentences if you dare:')
178
+ with st.expander('Input a sentence and check the probability of it being hateful:'):
179
+
180
+ # Some user input
181
+ model_nlp = SentenceTransformer('all-mpnet-base-v2')
182
+ sentence = st.text_input('Write a sentence to test it.', "Hopefully I don't write some hateful content.")
183
+
184
+ # Encoding
185
+ preprocessed_sentence = model_nlp.encode(sentence)
186
+ preprocessed_sentence = preprocessed_sentence.reshape(1, -1)
187
+
188
+ # load json and create model
189
+ json_file = open('static/model_nlp/model_nlp.json', 'r')
190
+ loaded_model_json = json_file.read()
191
+ json_file.close()
192
+ loaded_model = model_from_json(loaded_model_json)
193
+
194
+ # load weights into new model
195
+ loaded_model.load_weights("static/model_nlp/model_nlp.h5")
196
+
197
+ # Our predictions
198
+ y_pred = loaded_model.predict(preprocessed_sentence)
199
+ percentage = y_pred[0][0] * 100
200
+
201
+ st.write(f'Probability of being hateful: {round(percentage, 2)/100}')
202
+ if y_pred[0][0] < 0.5:
203
+ st.write(f"Congrats, it's not hateful!!!")
204
+ else:
205
+ st.write(f"Shame on you, it's hateful!!!")
206
+
207
+ st.write("---")
208
+ #####################################################################################################################################
209
+ col1, col2, col3, col4, col5 = st.columns(5)
210
+ with col5:
211
+ logo_artefact = Image.open('static/logo_artefact.png')
212
+ st.image(logo_artefact)
requirements.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ streamlit
2
+ pandas
3
+ numpy
4
+ matplotlib
5
+ sentence_transformers
6
+ tensorflow
7
+ Pillow
static/.DS_Store ADDED
Binary file (6.15 kB). View file
 
static/data_hate.csv ADDED
@@ -0,0 +1,4868 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ word,count
2
+ muslim,305
3
+ people,288
4
+ black,283
5
+ like,261
6
+ white,254
7
+ get,166
8
+ woman,157
9
+ one,145
10
+ jew,139
11
+ see,106
12
+ kill,106
13
+ fuck,98
14
+ u,98
15
+ goat,98
16
+ look,97
17
+ know,95
18
+ time,91
19
+ make,90
20
+ gay,86
21
+ got,84
22
+ go,83
23
+ want,83
24
+ girl,82
25
+ islam,81
26
+ kid,80
27
+ man,80
28
+ men,77
29
+ shit,75
30
+ let,73
31
+ say,73
32
+ country,72
33
+ ca,71
34
+ tranny,71
35
+ hate,67
36
+ year,67
37
+ back,62
38
+ day,62
39
+ dishwasher,61
40
+ would,61
41
+ take,59
42
+ think,59
43
+ fucking,57
44
+ child,57
45
+ new,56
46
+ na,55
47
+ come,54
48
+ guy,54
49
+ trash,53
50
+ racist,53
51
+ call,51
52
+ never,50
53
+ love,49
54
+ jewish,48
55
+ stop,46
56
+ stupid,46
57
+ life,46
58
+ need,46
59
+ right,45
60
+ keep,45
61
+ america,44
62
+ bitch,43
63
+ tell,43
64
+ baby,43
65
+ boy,43
66
+ give,43
67
+ american,43
68
+ way,43
69
+ god,43
70
+ bomb,42
71
+ mean,42
72
+ could,42
73
+ first,42
74
+ allah,41
75
+ wife,41
76
+ as,41
77
+ said,40
78
+ nigger,40
79
+ good,40
80
+ friend,39
81
+ gas,39
82
+ mexican,39
83
+ even,39
84
+ still,39
85
+ sex,39
86
+ school,39
87
+ home,38
88
+ problem,38
89
+ gon,38
90
+ old,37
91
+ last,36
92
+ every,36
93
+ told,36
94
+ going,36
95
+ killed,35
96
+ trump,35
97
+ religion,35
98
+ everyone,34
99
+ christian,34
100
+ son,34
101
+ dog,34
102
+ start,34
103
+ world,33
104
+ free,32
105
+ killing,32
106
+ thing,31
107
+ find,31
108
+ rape,31
109
+ oh,31
110
+ dick,30
111
+ put,30
112
+ difference,30
113
+ well,30
114
+ work,30
115
+ million,29
116
+ happy,29
117
+ little,29
118
+ ever,29
119
+ terrorist,29
120
+ slave,28
121
+ head,28
122
+ shoot,28
123
+ face,28
124
+ im,28
125
+ today,27
126
+ part,27
127
+ oven,27
128
+ hand,27
129
+ really,27
130
+ eat,26
131
+ someone,26
132
+ show,26
133
+ cop,26
134
+ another,25
135
+ asian,25
136
+ many,25
137
+ smell,25
138
+ chemical,25
139
+ real,25
140
+ government,25
141
+ wrong,25
142
+ much,25
143
+ called,24
144
+ play,24
145
+ camp,24
146
+ car,24
147
+ transgender,24
148
+ run,24
149
+ nobody,23
150
+ talk,23
151
+ father,23
152
+ eye,23
153
+ getting,23
154
+ made,23
155
+ please,23
156
+ retarded,23
157
+ always,23
158
+ race,23
159
+ turn,23
160
+ law,22
161
+ remove,22
162
+ peace,22
163
+ polish,22
164
+ anything,22
165
+ found,22
166
+ joke,22
167
+ liberal,22
168
+ gender,22
169
+ congress,21
170
+ monkey,21
171
+ obama,21
172
+ name,21
173
+ enough,21
174
+ sandwich,21
175
+ brother,21
176
+ steal,21
177
+ away,21
178
+ better,21
179
+ illegal,21
180
+ hitler,21
181
+ finally,21
182
+ girlfriend,21
183
+ fucker,21
184
+ hear,21
185
+ trying,20
186
+ blow,20
187
+ bro,20
188
+ stand,20
189
+ die,20
190
+ sure,20
191
+ kind,20
192
+ diaper,20
193
+ started,20
194
+ dad,20
195
+ word,20
196
+ mom,20
197
+ great,20
198
+ something,20
199
+ mental,20
200
+ big,20
201
+ hard,19
202
+ special,19
203
+ shooting,19
204
+ yes,19
205
+ death,19
206
+ pick,19
207
+ two,19
208
+ long,19
209
+ racism,19
210
+ hey,19
211
+ walk,19
212
+ went,19
213
+ family,19
214
+ brain,19
215
+ auschwitz,19
216
+ africa,18
217
+ person,18
218
+ pregnant,18
219
+ crime,18
220
+ try,18
221
+ dark,18
222
+ pussy,18
223
+ money,18
224
+ slavery,18
225
+ thought,18
226
+ feeling,18
227
+ number,18
228
+ stole,18
229
+ nazi,18
230
+ wait,18
231
+ mouth,18
232
+ hit,18
233
+ islamic,18
234
+ food,17
235
+ suicide,17
236
+ fat,17
237
+ suck,17
238
+ making,17
239
+ wan,17
240
+ bad,17
241
+ wear,17
242
+ best,17
243
+ immigrant,17
244
+ may,17
245
+ shot,17
246
+ female,17
247
+ trans,17
248
+ born,16
249
+ shut,16
250
+ history,16
251
+ talking,16
252
+ allowed,16
253
+ yeah,16
254
+ jesus,16
255
+ job,16
256
+ cotton,16
257
+ class,16
258
+ indian,16
259
+ help,16
260
+ remember,16
261
+ security,16
262
+ leave,16
263
+ sister,16
264
+ hell,16
265
+ holocaust,16
266
+ pride,16
267
+ mosque,16
268
+ open,16
269
+ end,16
270
+ nothing,16
271
+ maker,16
272
+ probably,16
273
+ forget,16
274
+ anyone,15
275
+ house,15
276
+ beat,15
277
+ homeland,15
278
+ full,15
279
+ inside,15
280
+ israel,15
281
+ group,15
282
+ without,15
283
+ bag,15
284
+ male,15
285
+ game,15
286
+ public,15
287
+ refugee,15
288
+ attack,14
289
+ behind,14
290
+ vegetable,14
291
+ pull,14
292
+ president,14
293
+ else,14
294
+ ask,14
295
+ normal,14
296
+ fear,14
297
+ kitchen,14
298
+ dont,14
299
+ become,14
300
+ hello,14
301
+ radical,14
302
+ pig,14
303
+ loses,14
304
+ might,14
305
+ believe,14
306
+ police,14
307
+ mohammed,14
308
+ porn,14
309
+ lesbian,14
310
+ akbar,13
311
+ party,13
312
+ virgin,13
313
+ sharia,13
314
+ master,13
315
+ alien,13
316
+ husband,13
317
+ shooter,13
318
+ dead,13
319
+ democrat,13
320
+ actually,13
321
+ since,13
322
+ bat,13
323
+ must,13
324
+ nice,13
325
+ done,13
326
+ saying,13
327
+ abortion,13
328
+ everybody,13
329
+ cute,13
330
+ later,13
331
+ potato,13
332
+ human,13
333
+ control,13
334
+ change,13
335
+ land,13
336
+ african,13
337
+ ugly,12
338
+ cause,12
339
+ lost,12
340
+ act,12
341
+ yo,12
342
+ chamber,12
343
+ ok,12
344
+ instead,12
345
+ feminist,12
346
+ month,12
347
+ daughter,12
348
+ street,12
349
+ defund,12
350
+ walmart,12
351
+ negro,12
352
+ homosexual,12
353
+ finger,12
354
+ agree,12
355
+ crazy,12
356
+ wo,12
357
+ damn,12
358
+ ai,12
359
+ welcome,12
360
+ color,12
361
+ married,12
362
+ war,12
363
+ working,12
364
+ bar,12
365
+ died,12
366
+ wearing,12
367
+ chick,12
368
+ fuckin,12
369
+ tv,12
370
+ matter,12
371
+ ta,11
372
+ mind,11
373
+ minority,11
374
+ cry,11
375
+ place,11
376
+ terrorism,11
377
+ moderate,11
378
+ laugh,11
379
+ nation,11
380
+ faggot,11
381
+ destroy,11
382
+ left,11
383
+ follow,11
384
+ germany,11
385
+ blind,11
386
+ funny,11
387
+ lie,11
388
+ hot,11
389
+ teacher,11
390
+ favorite,11
391
+ culture,11
392
+ bringing,11
393
+ neighbor,11
394
+ chinese,11
395
+ shower,11
396
+ grow,11
397
+ looking,11
398
+ sorry,11
399
+ card,11
400
+ dress,11
401
+ question,11
402
+ enemy,11
403
+ city,11
404
+ night,11
405
+ imagine,11
406
+ peaceful,11
407
+ ernie,11
408
+ send,11
409
+ burn,11
410
+ idea,11
411
+ next,11
412
+ cock,11
413
+ building,11
414
+ straight,11
415
+ coming,11
416
+ broken,11
417
+ meme,11
418
+ rapist,11
419
+ use,11
420
+ treat,11
421
+ used,11
422
+ ban,11
423
+ murder,10
424
+ innocent,10
425
+ move,10
426
+ isi,10
427
+ week,10
428
+ ya,10
429
+ single,10
430
+ water,10
431
+ juice,10
432
+ stolen,10
433
+ maybe,10
434
+ animal,10
435
+ gun,10
436
+ wall,10
437
+ sir,10
438
+ fire,10
439
+ mass,10
440
+ book,10
441
+ fly,10
442
+ whats,10
443
+ border,10
444
+ also,10
445
+ gave,10
446
+ already,10
447
+ beer,10
448
+ sale,10
449
+ lol,10
450
+ savage,10
451
+ remind,10
452
+ mother,10
453
+ light,10
454
+ power,10
455
+ celebrate,10
456
+ illegals,10
457
+ church,10
458
+ asked,10
459
+ plane,10
460
+ ur,10
461
+ parent,10
462
+ pant,10
463
+ dirty,10
464
+ order,10
465
+ cat,10
466
+ thanks,10
467
+ teach,10
468
+ came,10
469
+ safe,9
470
+ sign,9
471
+ tired,9
472
+ fucked,9
473
+ date,9
474
+ cool,9
475
+ small,9
476
+ flag,9
477
+ frank,9
478
+ raped,9
479
+ rice,9
480
+ room,9
481
+ punch,9
482
+ proof,9
483
+ usa,9
484
+ devil,9
485
+ poor,9
486
+ noise,9
487
+ disorder,9
488
+ door,9
489
+ european,9
490
+ arab,9
491
+ evil,9
492
+ except,9
493
+ trust,9
494
+ cracker,9
495
+ victim,9
496
+ motherfucker,9
497
+ fun,9
498
+ chicken,9
499
+ sit,9
500
+ extra,9
501
+ wanted,9
502
+ modern,9
503
+ farm,9
504
+ watch,9
505
+ drop,9
506
+ required,9
507
+ middle,9
508
+ michelle,9
509
+ fight,9
510
+ retard,9
511
+ medium,9
512
+ sense,9
513
+ christchurch,9
514
+ coffee,9
515
+ thinking,9
516
+ learn,9
517
+ thats,9
518
+ glass,9
519
+ choice,9
520
+ wonder,9
521
+ hold,9
522
+ july,9
523
+ letter,9
524
+ belong,9
525
+ kick,9
526
+ bacon,8
527
+ yard,8
528
+ half,8
529
+ respect,8
530
+ ape,8
531
+ catch,8
532
+ japanese,8
533
+ solution,8
534
+ cant,8
535
+ burning,8
536
+ cum,8
537
+ hide,8
538
+ using,8
539
+ pizza,8
540
+ watching,8
541
+ second,8
542
+ support,8
543
+ muhammad,8
544
+ europe,8
545
+ outside,8
546
+ christianity,8
547
+ accept,8
548
+ driver,8
549
+ pay,8
550
+ illness,8
551
+ around,8
552
+ equipment,8
553
+ pedophile,8
554
+ yet,8
555
+ dollar,8
556
+ penis,8
557
+ throw,8
558
+ humor,8
559
+ hardest,8
560
+ read,8
561
+ buy,8
562
+ n,8
563
+ happen,8
564
+ hijab,8
565
+ twice,8
566
+ christmas,8
567
+ german,8
568
+ alabama,8
569
+ unarmed,8
570
+ zionist,8
571
+ smoke,8
572
+ load,8
573
+ privilege,8
574
+ aid,8
575
+ brings,8
576
+ mad,8
577
+ forced,8
578
+ attention,8
579
+ tried,8
580
+ concentration,8
581
+ completely,8
582
+ stuff,8
583
+ le,8
584
+ lot,8
585
+ saw,8
586
+ breaking,8
587
+ deserve,8
588
+ begin,8
589
+ post,8
590
+ slow,8
591
+ march,8
592
+ anne,8
593
+ gift,8
594
+ ago,8
595
+ live,8
596
+ bruce,8
597
+ giving,8
598
+ stoned,8
599
+ autistic,8
600
+ different,8
601
+ hope,8
602
+ red,7
603
+ abdul,7
604
+ asks,7
605
+ putting,7
606
+ panty,7
607
+ criminal,7
608
+ dude,7
609
+ birthday,7
610
+ care,7
611
+ sell,7
612
+ point,7
613
+ deep,7
614
+ pushed,7
615
+ ready,7
616
+ hindu,7
617
+ dinner,7
618
+ pool,7
619
+ sold,7
620
+ soldier,7
621
+ hour,7
622
+ bill,7
623
+ piss,7
624
+ piece,7
625
+ top,7
626
+ pray,7
627
+ pet,7
628
+ horse,7
629
+ uncle,7
630
+ hole,7
631
+ ass,7
632
+ skin,7
633
+ disgusting,7
634
+ immigration,7
635
+ spell,7
636
+ worse,7
637
+ missing,7
638
+ miss,7
639
+ owner,7
640
+ scout,7
641
+ behead,7
642
+ midget,7
643
+ join,7
644
+ answer,7
645
+ silk,7
646
+ kfc,7
647
+ da,7
648
+ meat,7
649
+ three,7
650
+ green,7
651
+ lady,7
652
+ ahmed,7
653
+ broke,7
654
+ rich,7
655
+ fluid,7
656
+ bring,7
657
+ wheelchair,7
658
+ four,7
659
+ frankly,7
660
+ future,7
661
+ listen,7
662
+ allahu,7
663
+ stealing,7
664
+ sea,7
665
+ yelling,7
666
+ nut,7
667
+ camel,7
668
+ crack,7
669
+ violence,7
670
+ hating,7
671
+ news,7
672
+ republican,7
673
+ cousin,7
674
+ blame,7
675
+ national,7
676
+ naked,7
677
+ sport,7
678
+ star,7
679
+ murdered,7
680
+ infidel,7
681
+ offensive,7
682
+ ham,7
683
+ guess,7
684
+ apparently,7
685
+ guard,7
686
+ idk,7
687
+ seen,6
688
+ colorized,6
689
+ saggin,6
690
+ turkey,6
691
+ running,6
692
+ bang,6
693
+ require,6
694
+ close,6
695
+ realize,6
696
+ clean,6
697
+ baked,6
698
+ cook,6
699
+ raping,6
700
+ truck,6
701
+ tree,6
702
+ true,6
703
+ club,6
704
+ twin,6
705
+ raise,6
706
+ bert,6
707
+ daddy,6
708
+ alone,6
709
+ lazy,6
710
+ least,6
711
+ wing,6
712
+ gamer,6
713
+ wind,6
714
+ fruit,6
715
+ lord,6
716
+ makeup,6
717
+ whenever,6
718
+ form,6
719
+ forgotten,6
720
+ low,6
721
+ folk,6
722
+ fluffy,6
723
+ genocide,6
724
+ gorilla,6
725
+ jihad,6
726
+ greatest,6
727
+ jenner,6
728
+ hair,6
729
+ ilhan,6
730
+ idiot,6
731
+ heard,6
732
+ ice,6
733
+ heaven,6
734
+ hebrew,6
735
+ hung,6
736
+ hi,6
737
+ high,6
738
+ hooker,6
739
+ homosexuality,6
740
+ flower,6
741
+ floor,6
742
+ tyrone,6
743
+ double,6
744
+ offended,6
745
+ okay,6
746
+ ash,6
747
+ dumb,6
748
+ park,6
749
+ drink,6
750
+ vaccination,6
751
+ weird,6
752
+ per,6
753
+ donald,6
754
+ picture,6
755
+ pipe,6
756
+ pork,6
757
+ understand,6
758
+ violent,6
759
+ equal,6
760
+ everything,6
761
+ nahir,6
762
+ exemption,6
763
+ share,6
764
+ apple,6
765
+ fake,6
766
+ mohammad,6
767
+ mohamed,6
768
+ fan,6
769
+ milk,6
770
+ feel,6
771
+ meth,6
772
+ mentally,6
773
+ weapon,6
774
+ marriage,6
775
+ shame,6
776
+ period,6
777
+ body,6
778
+ town,6
779
+ bombing,6
780
+ blast,6
781
+ touch,6
782
+ sucking,6
783
+ birth,6
784
+ beating,6
785
+ telling,6
786
+ boyfriend,6
787
+ cancer,6
788
+ choose,6
789
+ taking,6
790
+ sound,6
791
+ side,6
792
+ soul,6
793
+ canada,6
794
+ social,6
795
+ cheating,6
796
+ christ,6
797
+ blowjob,6
798
+ taste,6
799
+ british,6
800
+ third,6
801
+ stone,6
802
+ bunch,6
803
+ somehow,6
804
+ handjobs,5
805
+ rolling,5
806
+ drunk,5
807
+ drug,5
808
+ balcony,5
809
+ hanging,5
810
+ local,5
811
+ role,5
812
+ hang,5
813
+ specie,5
814
+ throwing,5
815
+ attacking,5
816
+ happens,5
817
+ kept,5
818
+ member,5
819
+ russian,5
820
+ s,5
821
+ met,5
822
+ poland,5
823
+ literally,5
824
+ r,5
825
+ redneck,5
826
+ complete,5
827
+ tattoo,5
828
+ turned,5
829
+ friday,5
830
+ though,5
831
+ sleep,5
832
+ lose,5
833
+ restaurant,5
834
+ brown,5
835
+ taken,5
836
+ gold,5
837
+ islamophobia,5
838
+ century,5
839
+ worship,5
840
+ marry,5
841
+ center,5
842
+ crackas,5
843
+ fit,5
844
+ anal,5
845
+ backwards,5
846
+ jamal,5
847
+ japan,5
848
+ course,5
849
+ worst,5
850
+ photo,5
851
+ adult,5
852
+ student,5
853
+ killer,5
854
+ chime,5
855
+ meet,5
856
+ drinking,5
857
+ minute,5
858
+ internet,5
859
+ bread,5
860
+ longer,5
861
+ attached,5
862
+ sympathizer,5
863
+ rid,5
864
+ break,5
865
+ type,5
866
+ angry,5
867
+ cooker,5
868
+ cut,5
869
+ invited,5
870
+ blood,5
871
+ kinda,5
872
+ goy,5
873
+ created,5
874
+ spending,5
875
+ strong,5
876
+ exist,5
877
+ armed,5
878
+ punching,5
879
+ service,5
880
+ fool,5
881
+ voter,5
882
+ wipe,5
883
+ keeping,5
884
+ benefit,5
885
+ planet,5
886
+ non,5
887
+ none,5
888
+ deal,5
889
+ english,5
890
+ england,5
891
+ deaf,5
892
+ state,5
893
+ unclean,5
894
+ nibba,5
895
+ arm,5
896
+ chromosome,5
897
+ neighborhood,5
898
+ voting,5
899
+ leaf,5
900
+ claim,5
901
+ holiday,5
902
+ prove,5
903
+ argument,5
904
+ squad,5
905
+ ethiopian,5
906
+ citizen,5
907
+ together,5
908
+ pump,5
909
+ nativity,5
910
+ wish,5
911
+ nevermind,5
912
+ visit,5
913
+ excited,5
914
+ decide,5
915
+ sexual,5
916
+ whatever,5
917
+ supremacist,5
918
+ step,5
919
+ heroin,5
920
+ teeth,5
921
+ heart,5
922
+ train,5
923
+ young,5
924
+ egg,5
925
+ burned,5
926
+ orgasm,5
927
+ creates,5
928
+ comment,5
929
+ present,5
930
+ commit,5
931
+ ed,5
932
+ mix,5
933
+ mississippi,5
934
+ common,5
935
+ truth,5
936
+ whole,5
937
+ hurt,5
938
+ jaw,5
939
+ size,5
940
+ scream,5
941
+ morning,5
942
+ stay,5
943
+ f,5
944
+ reason,5
945
+ hump,5
946
+ rebuilt,5
947
+ playing,5
948
+ lgbt,5
949
+ fact,5
950
+ supporter,5
951
+ abuse,5
952
+ hundred,5
953
+ anymore,5
954
+ canadian,5
955
+ omar,5
956
+ win,5
957
+ pretty,5
958
+ forgive,4
959
+ socialist,4
960
+ upset,4
961
+ vote,4
962
+ breed,4
963
+ subway,4
964
+ proud,4
965
+ protesting,4
966
+ prophet,4
967
+ champion,4
968
+ definitely,4
969
+ bow,4
970
+ prison,4
971
+ supposed,4
972
+ demand,4
973
+ lick,4
974
+ preserve,4
975
+ whore,4
976
+ line,4
977
+ list,4
978
+ lit,4
979
+ praise,4
980
+ plantation,4
981
+ front,4
982
+ pound,4
983
+ living,4
984
+ snake,4
985
+ french,4
986
+ lock,4
987
+ population,4
988
+ almost,4
989
+ uno,4
990
+ poo,4
991
+ foreigner,4
992
+ south,4
993
+ ford,4
994
+ candle,4
995
+ omg,4
996
+ steak,4
997
+ wash,4
998
+ bus,4
999
+ either,4
1000
+ burnt,4
1001
+ far,4
1002
+ edition,4
1003
+ outta,4
1004
+ officer,4
1005
+ fast,4
1006
+ mine,4
1007
+ faster,4
1008
+ stevie,4
1009
+ earth,4
1010
+ military,4
1011
+ watermelon,4
1012
+ bullet,4
1013
+ moment,4
1014
+ momma,4
1015
+ beautiful,4
1016
+ entire,4
1017
+ waiting,4
1018
+ needed,4
1019
+ natural,4
1020
+ named,4
1021
+ excuse,4
1022
+ walked,4
1023
+ expensive,4
1024
+ muhammed,4
1025
+ starving,4
1026
+ offer,4
1027
+ calling,4
1028
+ muddin,4
1029
+ arrested,4
1030
+ north,4
1031
+ spot,4
1032
+ nuclear,4
1033
+ status,4
1034
+ facebook,4
1035
+ palestine,4
1036
+ feminism,4
1037
+ disease,4
1038
+ picked,4
1039
+ v,4
1040
+ marries,4
1041
+ thanksgiving,4
1042
+ somewhere,4
1043
+ fix,4
1044
+ case,4
1045
+ phobia,4
1046
+ pic,4
1047
+ bed,4
1048
+ fish,4
1049
+ diversity,4
1050
+ asshole,4
1051
+ till,4
1052
+ pink,4
1053
+ pissed,4
1054
+ caucasian,4
1055
+ caught,4
1056
+ strip,4
1057
+ soon,4
1058
+ martin,4
1059
+ speech,4
1060
+ patient,4
1061
+ message,4
1062
+ mess,4
1063
+ build,4
1064
+ speak,4
1065
+ mein,4
1066
+ drive,4
1067
+ tone,4
1068
+ medicine,4
1069
+ meanwhile,4
1070
+ mashed,4
1071
+ mayo,4
1072
+ store,4
1073
+ dozen,4
1074
+ vagina,4
1075
+ fine,4
1076
+ story,4
1077
+ finished,4
1078
+ ancestor,4
1079
+ gear,4
1080
+ protect,4
1081
+ cooking,4
1082
+ invading,4
1083
+ robbed,4
1084
+ blew,4
1085
+ conservative,4
1086
+ india,4
1087
+ showing,4
1088
+ harder,4
1089
+ harry,4
1090
+ saddle,4
1091
+ target,4
1092
+ accident,4
1093
+ trailer,4
1094
+ salute,4
1095
+ tax,4
1096
+ accepted,4
1097
+ company,4
1098
+ community,4
1099
+ ill,4
1100
+ belief,4
1101
+ rev,4
1102
+ kicked,4
1103
+ invite,4
1104
+ crotch,4
1105
+ justin,4
1106
+ credit,4
1107
+ adding,4
1108
+ crap,4
1109
+ jewelry,4
1110
+ cowboy,4
1111
+ chewbacca,4
1112
+ sink,4
1113
+ toy,4
1114
+ cost,4
1115
+ israeli,4
1116
+ thousand,4
1117
+ simple,4
1118
+ rest,4
1119
+ result,4
1120
+ acting,4
1121
+ tea,4
1122
+ sandy,4
1123
+ satan,4
1124
+ believer,4
1125
+ sent,4
1126
+ terror,4
1127
+ highest,4
1128
+ horny,4
1129
+ test,4
1130
+ serving,4
1131
+ zealand,4
1132
+ hook,4
1133
+ sexist,4
1134
+ honor,4
1135
+ texas,4
1136
+ honest,4
1137
+ transgenderism,4
1138
+ hmmm,4
1139
+ holding,4
1140
+ sheep,4
1141
+ shes,4
1142
+ cinco,4
1143
+ clue,4
1144
+ abomination,4
1145
+ bird,4
1146
+ team,4
1147
+ hears,4
1148
+ scared,4
1149
+ bit,4
1150
+ hurry,4
1151
+ hunting,4
1152
+ screaming,4
1153
+ scum,4
1154
+ housing,4
1155
+ secret,4
1156
+ humpers,4
1157
+ bank,4
1158
+ seeing,4
1159
+ seem,4
1160
+ humanity,4
1161
+ seizure,4
1162
+ reaction,4
1163
+ neck,4
1164
+ quick,4
1165
+ glad,4
1166
+ purpose,4
1167
+ bastard,4
1168
+ dating,4
1169
+ dear,4
1170
+ average,4
1171
+ cunt,4
1172
+ kidding,4
1173
+ queer,4
1174
+ swallow,4
1175
+ knock,4
1176
+ goddamn,4
1177
+ towel,4
1178
+ ginger,4
1179
+ pushing,4
1180
+ rag,4
1181
+ knew,4
1182
+ bomber,4
1183
+ uber,4
1184
+ sleeve,4
1185
+ automatic,4
1186
+ slip,4
1187
+ air,4
1188
+ de,4
1189
+ cult,4
1190
+ laid,4
1191
+ wondering,4
1192
+ afghan,4
1193
+ gone,4
1194
+ dangerous,4
1195
+ quran,4
1196
+ racing,4
1197
+ australia,4
1198
+ sweet,3
1199
+ academy,3
1200
+ youth,3
1201
+ google,3
1202
+ lack,3
1203
+ helping,3
1204
+ ghetto,3
1205
+ faceswap,3
1206
+ level,3
1207
+ mommy,3
1208
+ warm,3
1209
+ bowl,3
1210
+ molesting,3
1211
+ healthcare,3
1212
+ heightened,3
1213
+ hungry,3
1214
+ accidently,3
1215
+ stick,3
1216
+ frog,3
1217
+ knowing,3
1218
+ alive,3
1219
+ korean,3
1220
+ fuel,3
1221
+ ignorant,3
1222
+ todd,3
1223
+ super,3
1224
+ lifestyle,3
1225
+ mixed,3
1226
+ identity,3
1227
+ mock,3
1228
+ anus,3
1229
+ healthy,3
1230
+ krispies,3
1231
+ wide,3
1232
+ given,3
1233
+ absolutely,3
1234
+ window,3
1235
+ monster,3
1236
+ wake,3
1237
+ hiroshima,3
1238
+ hispanic,3
1239
+ walking,3
1240
+ survive,3
1241
+ garbage,3
1242
+ able,3
1243
+ language,3
1244
+ standard,3
1245
+ honey,3
1246
+ bos,3
1247
+ toilet,3
1248
+ gentleman,3
1249
+ starting,3
1250
+ stamp,3
1251
+ latino,3
1252
+ hockey,3
1253
+ hoe,3
1254
+ thank,3
1255
+ laundry,3
1256
+ evolved,3
1257
+ bible,3
1258
+ navy,3
1259
+ bet,3
1260
+ threesome,3
1261
+ murdering,3
1262
+ expect,3
1263
+ buslim,3
1264
+ butt,3
1265
+ eyebrow,3
1266
+ buslims,3
1267
+ exterminate,3
1268
+ moslem,3
1269
+ harvey,3
1270
+ mosquito,3
1271
+ yr,3
1272
+ motel,3
1273
+ busy,3
1274
+ station,3
1275
+ mountain,3
1276
+ wine,3
1277
+ expected,3
1278
+ ten,3
1279
+ term,3
1280
+ legal,3
1281
+ ah,3
1282
+ ahead,3
1283
+ explode,3
1284
+ hotline,3
1285
+ bigot,3
1286
+ leg,3
1287
+ bought,3
1288
+ theft,3
1289
+ fault,3
1290
+ michael,3
1291
+ livestock,3
1292
+ jelly,3
1293
+ wwii,3
1294
+ table,3
1295
+ west,3
1296
+ strength,3
1297
+ successfully,3
1298
+ welfare,3
1299
+ add,3
1300
+ mandatory,3
1301
+ manditory,3
1302
+ king,3
1303
+ manual,3
1304
+ flat,3
1305
+ jill,3
1306
+ becomes,3
1307
+ map,3
1308
+ blowing,3
1309
+ tire,3
1310
+ fixed,3
1311
+ kiss,3
1312
+ adam,3
1313
+ jackson,3
1314
+ jack,3
1315
+ iz,3
1316
+ beheaded,3
1317
+ board,3
1318
+ britney,3
1319
+ wave,3
1320
+ adopt,3
1321
+ loud,3
1322
+ bold,3
1323
+ kenyan,3
1324
+ forgiven,3
1325
+ adhd,3
1326
+ wheel,3
1327
+ forever,3
1328
+ grab,3
1329
+ wrote,3
1330
+ foreign,3
1331
+ forehead,3
1332
+ jump,3
1333
+ joe,3
1334
+ lunch,3
1335
+ bob,3
1336
+ grand,3
1337
+ grande,3
1338
+ grandfather,3
1339
+ syndrome,3
1340
+ maga,3
1341
+ amazing,3
1342
+ juan,3
1343
+ syrian,3
1344
+ john,3
1345
+ france,3
1346
+ marrying,3
1347
+ wood,3
1348
+ harass,3
1349
+ buddhist,3
1350
+ fresh,3
1351
+ ankle,3
1352
+ tho,3
1353
+ yell,3
1354
+ lmao,3
1355
+ tit,3
1356
+ incest,3
1357
+ menu,3
1358
+ happened,3
1359
+ according,3
1360
+ harbor,3
1361
+ yall,3
1362
+ fridge,3
1363
+ felt,3
1364
+ tap,3
1365
+ mexico,3
1366
+ answering,3
1367
+ feed,3
1368
+ style,3
1369
+ microwave,3
1370
+ ant,3
1371
+ bullshit,3
1372
+ sticking,3
1373
+ thrown,3
1374
+ fighting,3
1375
+ across,3
1376
+ instructor,3
1377
+ lonely,3
1378
+ gum,3
1379
+ whip,3
1380
+ islamaphobic,3
1381
+ masturbate,3
1382
+ match,3
1383
+ action,3
1384
+ wont,3
1385
+ weed,3
1386
+ kkk,3
1387
+ bored,3
1388
+ invisible,3
1389
+ invasion,3
1390
+ loaf,3
1391
+ meant,3
1392
+ invader,3
1393
+ stopped,3
1394
+ interracial,3
1395
+ filipino,3
1396
+ halal,3
1397
+ taliban,3
1398
+ became,3
1399
+ insult,3
1400
+ booty,3
1401
+ transphobic,3
1402
+ area,3
1403
+ degree,3
1404
+ uncertain,3
1405
+ proving,3
1406
+ protest,3
1407
+ promised,3
1408
+ august,3
1409
+ smile,3
1410
+ prisoner,3
1411
+ bathroom,3
1412
+ chain,3
1413
+ price,3
1414
+ understanding,3
1415
+ prefer,3
1416
+ deport,3
1417
+ deported,3
1418
+ prayer,3
1419
+ practice,3
1420
+ decent,3
1421
+ purchase,3
1422
+ smash,3
1423
+ smart,3
1424
+ range,3
1425
+ randomly,3
1426
+ raised,3
1427
+ cuz,3
1428
+ raid,3
1429
+ typical,3
1430
+ tyranny,3
1431
+ dame,3
1432
+ quite,3
1433
+ autism,3
1434
+ queen,3
1435
+ dat,3
1436
+ dated,3
1437
+ uk,3
1438
+ slut,3
1439
+ poverty,3
1440
+ potter,3
1441
+ cure,3
1442
+ usually,3
1443
+ somebody,3
1444
+ catholic,3
1445
+ cathedral,3
1446
+ dna,3
1447
+ phone,3
1448
+ pew,3
1449
+ sometimes,3
1450
+ perfect,3
1451
+ snap,3
1452
+ took,3
1453
+ donkey,3
1454
+ tonight,3
1455
+ dot,3
1456
+ pedophilia,3
1457
+ down,3
1458
+ downer,3
1459
+ plan,3
1460
+ celebrating,3
1461
+ pls,3
1462
+ society,3
1463
+ destroyed,3
1464
+ destroying,3
1465
+ destruction,3
1466
+ position,3
1467
+ sneaky,3
1468
+ attacked,3
1469
+ diary,3
1470
+ didnt,3
1471
+ unless,3
1472
+ atheist,3
1473
+ pop,3
1474
+ poop,3
1475
+ dike,3
1476
+ socialism,3
1477
+ upper,3
1478
+ awesome,3
1479
+ cupcake,3
1480
+ drain,3
1481
+ commercial,3
1482
+ short,3
1483
+ tribe,3
1484
+ trick,3
1485
+ chong,3
1486
+ saving,3
1487
+ save,3
1488
+ chocolate,3
1489
+ compare,3
1490
+ rude,3
1491
+ trip,3
1492
+ showed,3
1493
+ safety,3
1494
+ tragedy,3
1495
+ sad,3
1496
+ tradition,3
1497
+ triple,3
1498
+ shop,3
1499
+ scientist,3
1500
+ barn,3
1501
+ scratch,3
1502
+ barack,3
1503
+ clear,3
1504
+ sexbomb,3
1505
+ travel,3
1506
+ seriously,3
1507
+ separately,3
1508
+ sentence,3
1509
+ shoe,3
1510
+ senior,3
1511
+ selling,3
1512
+ self,3
1513
+ seek,3
1514
+ section,3
1515
+ trannies,3
1516
+ cold,3
1517
+ rule,3
1518
+ rookie,3
1519
+ slap,3
1520
+ record,3
1521
+ chicago,3
1522
+ cover,3
1523
+ religious,3
1524
+ cow,3
1525
+ chevy,3
1526
+ crawling,3
1527
+ tower,3
1528
+ b,3
1529
+ roof,3
1530
+ six,3
1531
+ cross,3
1532
+ raw,3
1533
+ rate,3
1534
+ rare,3
1535
+ check,3
1536
+ holy,3
1537
+ counting,3
1538
+ trudeau,3
1539
+ represents,3
1540
+ tractor,3
1541
+ rob,3
1542
+ road,3
1543
+ river,3
1544
+ rise,3
1545
+ ching,3
1546
+ bake,3
1547
+ ride,3
1548
+ trade,3
1549
+ sick,3
1550
+ retodd,3
1551
+ signal,3
1552
+ coolant,3
1553
+ trouble,3
1554
+ response,3
1555
+ sin,3
1556
+ pearl,3
1557
+ delicious,3
1558
+ learned,3
1559
+ nein,3
1560
+ eating,3
1561
+ escaping,3
1562
+ capable,3
1563
+ ariana,3
1564
+ estate,3
1565
+ spinner,3
1566
+ eternal,3
1567
+ escape,3
1568
+ others,3
1569
+ economy,3
1570
+ original,3
1571
+ parasite,3
1572
+ education,3
1573
+ dry,3
1574
+ nun,3
1575
+ easy,3
1576
+ tomorrow,3
1577
+ east,3
1578
+ overly,3
1579
+ calm,3
1580
+ arnold,3
1581
+ arrest,3
1582
+ easier,3
1583
+ army,3
1584
+ e,3
1585
+ notre,3
1586
+ eastern,3
1587
+ dy,3
1588
+ arrived,3
1589
+ bear,3
1590
+ vest,3
1591
+ dust,3
1592
+ obviously,3
1593
+ neither,3
1594
+ overheats,3
1595
+ beach,3
1596
+ past,3
1597
+ em,3
1598
+ passed,3
1599
+ elect,3
1600
+ asking,3
1601
+ offends,3
1602
+ asf,3
1603
+ oink,3
1604
+ patriarchy,3
1605
+ spastic,3
1606
+ video,3
1607
+ dream,3
1608
+ opening,3
1609
+ ironing,2
1610
+ iq,2
1611
+ kermit,2
1612
+ instinct,2
1613
+ roasting,2
1614
+ iraqi,2
1615
+ iron,2
1616
+ rather,2
1617
+ intelligence,2
1618
+ irrational,2
1619
+ reading,2
1620
+ noticed,2
1621
+ ye,2
1622
+ twerk,2
1623
+ silent,2
1624
+ resturant,2
1625
+ yamamoto,2
1626
+ notice,2
1627
+ skinny,2
1628
+ international,2
1629
+ view,2
1630
+ mp,2
1631
+ rip,2
1632
+ rating,2
1633
+ written,2
1634
+ riot,2
1635
+ nose,2
1636
+ movie,2
1637
+ movement,2
1638
+ rifle,2
1639
+ invade,2
1640
+ violet,2
1641
+ wallet,2
1642
+ similar,2
1643
+ mourning,2
1644
+ invention,2
1645
+ returning,2
1646
+ slam,2
1647
+ nude,2
1648
+ ocean,2
1649
+ islamist,2
1650
+ walrus,2
1651
+ x,2
1652
+ jet,2
1653
+ realizes,2
1654
+ object,2
1655
+ taco,2
1656
+ std,2
1657
+ relative,2
1658
+ siri,2
1659
+ wypipo,2
1660
+ relationship,2
1661
+ rearranged,2
1662
+ sitting,2
1663
+ jewsy,2
1664
+ reich,2
1665
+ refuse,2
1666
+ wwe,2
1667
+ turning,2
1668
+ refuge,2
1669
+ tolerate,2
1670
+ relax,2
1671
+ jazz,2
1672
+ nuke,2
1673
+ moral,2
1674
+ recorded,2
1675
+ sponge,2
1676
+ kellogg,2
1677
+ reported,2
1678
+ issue,2
1679
+ report,2
1680
+ realise,2
1681
+ removed,2
1682
+ moron,2
1683
+ reality,2
1684
+ justified,2
1685
+ tr,2
1686
+ tail,2
1687
+ jamaican,2
1688
+ rock,2
1689
+ reminds,2
1690
+ james,2
1691
+ violate,2
1692
+ morgan,2
1693
+ isoroku,2
1694
+ inbreeding,2
1695
+ inhale,2
1696
+ sensitive,2
1697
+ horror,2
1698
+ therapy,2
1699
+ serial,2
1700
+ z,2
1701
+ hotel,2
1702
+ seperately,2
1703
+ hotter,2
1704
+ stair,2
1705
+ hottest,2
1706
+ separated,2
1707
+ vlad,2
1708
+ squirrel,2
1709
+ searching,2
1710
+ nature,2
1711
+ trayvon,2
1712
+ neighbour,2
1713
+ selfies,2
1714
+ treasure,2
1715
+ transgendered,2
1716
+ television,2
1717
+ native,2
1718
+ humper,2
1719
+ tranpa,2
1720
+ wakanda,2
1721
+ shithole,2
1722
+ serious,2
1723
+ naz,2
1724
+ set,2
1725
+ zone,2
1726
+ shelter,2
1727
+ homeless,2
1728
+ homicide,2
1729
+ sheeple,2
1730
+ shawty,2
1731
+ shaving,2
1732
+ transwoman,2
1733
+ homie,2
1734
+ homophobia,2
1735
+ near,2
1736
+ shirt,2
1737
+ shake,2
1738
+ zombie,2
1739
+ text,2
1740
+ shah,2
1741
+ shade,2
1742
+ ship,2
1743
+ sexy,2
1744
+ sexism,2
1745
+ stabbing,2
1746
+ stable,2
1747
+ settle,2
1748
+ seatbelt,2
1749
+ shootin,2
1750
+ roll,2
1751
+ import,2
1752
+ yesterday,2
1753
+ immediately,2
1754
+ toe,2
1755
+ nickname,2
1756
+ niether,2
1757
+ nigga,2
1758
+ sacred,2
1759
+ sack,2
1760
+ tall,2
1761
+ russia,2
1762
+ mum,2
1763
+ impress,2
1764
+ hunger,2
1765
+ multiple,2
1766
+ improvise,2
1767
+ multiculturalism,2
1768
+ sperm,2
1769
+ rose,2
1770
+ rope,2
1771
+ inclusive,2
1772
+ root,2
1773
+ siamese,2
1774
+ noah,2
1775
+ romania,2
1776
+ shovel,2
1777
+ salt,2
1778
+ taught,2
1779
+ sammich,2
1780
+ hungerstruck,2
1781
+ screen,2
1782
+ tolerance,2
1783
+ scientific,2
1784
+ science,2
1785
+ youre,2
1786
+ schwarzenigger,2
1787
+ spread,2
1788
+ nah,2
1789
+ technology,2
1790
+ waking,2
1791
+ staring,2
1792
+ yolo,2
1793
+ identifies,2
1794
+ shouldnt,2
1795
+ ideology,2
1796
+ vision,2
1797
+ ni,2
1798
+ nibbas,2
1799
+ santa,2
1800
+ trigger,2
1801
+ sanctuary,2
1802
+ tolerant,2
1803
+ kg,2
1804
+ patrick,2
1805
+ rashida,2
1806
+ palestinian,2
1807
+ panda,2
1808
+ loser,2
1809
+ weak,2
1810
+ losing,2
1811
+ metal,2
1812
+ submission,2
1813
+ politics,2
1814
+ upon,2
1815
+ thug,2
1816
+ study,2
1817
+ loving,2
1818
+ policy,2
1819
+ speed,2
1820
+ pokemon,2
1821
+ weakling,2
1822
+ luck,2
1823
+ player,2
1824
+ played,2
1825
+ paper,2
1826
+ planning,2
1827
+ planned,2
1828
+ struggle,2
1829
+ lust,2
1830
+ titty,2
1831
+ suffer,2
1832
+ lynched,2
1833
+ pakistani,2
1834
+ lived,2
1835
+ owned,2
1836
+ whipped,2
1837
+ spend,2
1838
+ united,2
1839
+ pack,2
1840
+ page,2
1841
+ sticky,2
1842
+ lmm,2
1843
+ paid,2
1844
+ portrait,2
1845
+ location,2
1846
+ snow,2
1847
+ popular,2
1848
+ locked,2
1849
+ logic,2
1850
+ suicidal,2
1851
+ paint,2
1852
+ suffering,2
1853
+ pope,2
1854
+ whine,2
1855
+ popcorn,2
1856
+ mfw,2
1857
+ luther,2
1858
+ sociopathic,2
1859
+ smuggling,2
1860
+ stray,2
1861
+ value,2
1862
+ strange,2
1863
+ percent,2
1864
+ pas,2
1865
+ pass,2
1866
+ weigh,2
1867
+ sort,2
1868
+ penny,2
1869
+ soup,2
1870
+ pee,2
1871
+ stove,2
1872
+ masturbating,2
1873
+ medical,2
1874
+ mat,2
1875
+ material,2
1876
+ weekend,2
1877
+ source,2
1878
+ mattered,2
1879
+ maximum,2
1880
+ peanut,2
1881
+ paying,2
1882
+ storm,2
1883
+ span,2
1884
+ personality,2
1885
+ personally,2
1886
+ lynn,2
1887
+ pervert,2
1888
+ parade,2
1889
+ tightens,2
1890
+ plain,2
1891
+ soda,2
1892
+ solved,2
1893
+ total,2
1894
+ magic,2
1895
+ whatcha,2
1896
+ strike,2
1897
+ wet,2
1898
+ specific,2
1899
+ pillow,2
1900
+ piggy,2
1901
+ mention,2
1902
+ western,2
1903
+ picking,2
1904
+ mama,2
1905
+ torture,2
1906
+ mandating,2
1907
+ piano,2
1908
+ mankind,2
1909
+ mengele,2
1910
+ parking,2
1911
+ mile,2
1912
+ suit,2
1913
+ offered,2
1914
+ swim,2
1915
+ slice,2
1916
+ mobile,2
1917
+ wonderful,2
1918
+ ornament,2
1919
+ l,2
1920
+ q,2
1921
+ swede,2
1922
+ swear,2
1923
+ ultimate,2
1924
+ un,2
1925
+ mistake,2
1926
+ otherwise,2
1927
+ woke,2
1928
+ landmine,2
1929
+ push,2
1930
+ suspect,2
1931
+ landmines,2
1932
+ unbelievable,2
1933
+ mission,2
1934
+ large,2
1935
+ survivor,2
1936
+ survives,2
1937
+ within,2
1938
+ quit,2
1939
+ korea,2
1940
+ tour,2
1941
+ knowledge,2
1942
+ office,2
1943
+ official,2
1944
+ slaughter,2
1945
+ warning,2
1946
+ swimming,2
1947
+ worry,2
1948
+ vice,2
1949
+ worldwide,2
1950
+ molest,2
1951
+ worked,2
1952
+ wedding,2
1953
+ random,2
1954
+ ramadan,2
1955
+ veteran,2
1956
+ online,2
1957
+ kissing,2
1958
+ wasnt,2
1959
+ radius,2
1960
+ klux,2
1961
+ ordered,2
1962
+ knocked,2
1963
+ racially,2
1964
+ organ,2
1965
+ latest,2
1966
+ stephen,2
1967
+ whit,2
1968
+ letting,2
1969
+ leviticus,2
1970
+ priceless,2
1971
+ liberated,2
1972
+ pretend,2
1973
+ wimpy,2
1974
+ watering,2
1975
+ understands,2
1976
+ unite,2
1977
+ milkshake,2
1978
+ preeze,2
1979
+ predominantly,2
1980
+ lil,2
1981
+ preach,2
1982
+ owe,2
1983
+ whitetrash,2
1984
+ sun,2
1985
+ summer,2
1986
+ sum,2
1987
+ whiteprivilege,2
1988
+ smite,2
1989
+ owes,2
1990
+ literature,2
1991
+ ppl,2
1992
+ prince,2
1993
+ voted,2
1994
+ wire,2
1995
+ princess,2
1996
+ laying,2
1997
+ pug,2
1998
+ puff,2
1999
+ psychopath,2
2000
+ lead,2
2001
+ leader,2
2002
+ wiping,2
2003
+ provide,2
2004
+ smh,2
2005
+ leak,2
2006
+ wasted,2
2007
+ prostitute,2
2008
+ properly,2
2009
+ proper,2
2010
+ winner,2
2011
+ minesweeper,2
2012
+ pro,2
2013
+ legally,2
2014
+ uncooked,2
2015
+ lemon,2
2016
+ stereotype,2
2017
+ lesson,2
2018
+ overcome,2
2019
+ woof,2
2020
+ abandon,2
2021
+ zuckerberg,2
2022
+ generation,2
2023
+ divider,2
2024
+ ck,2
2025
+ banned,2
2026
+ banging,2
2027
+ fullscreen,2
2028
+ claiming,2
2029
+ district,2
2030
+ funeral,2
2031
+ banana,2
2032
+ ball,2
2033
+ distance,2
2034
+ g,2
2035
+ gagging,2
2036
+ dispatch,2
2037
+ classification,2
2038
+ gamers,2
2039
+ bae,2
2040
+ badge,2
2041
+ classmate,2
2042
+ dish,2
2043
+ disgust,2
2044
+ classroom,2
2045
+ backpack,2
2046
+ discriminate,2
2047
+ gayer,2
2048
+ gee,2
2049
+ disarmed,2
2050
+ civilization,2
2051
+ barbecue,2
2052
+ divorced,2
2053
+ forward,2
2054
+ foil,2
2055
+ beaten,2
2056
+ follower,2
2057
+ china,2
2058
+ bean,2
2059
+ foot,2
2060
+ bday,2
2061
+ force,2
2062
+ forest,2
2063
+ domestic,2
2064
+ basically,2
2065
+ basic,2
2066
+ based,2
2067
+ fryer,2
2068
+ doll,2
2069
+ chosen,2
2070
+ fox,2
2071
+ doesnt,2
2072
+ bartender,2
2073
+ frame,2
2074
+ freak,2
2075
+ barely,2
2076
+ documentary,2
2077
+ doctor,2
2078
+ circle,2
2079
+ barbie,2
2080
+ babe,2
2081
+ clinic,2
2082
+ flush,2
2083
+ ay,2
2084
+ aspirin,2
2085
+ cola,2
2086
+ department,2
2087
+ deny,2
2088
+ collapse,2
2089
+ grader,2
2090
+ collection,2
2091
+ ashy,2
2092
+ colored,2
2093
+ graduate,2
2094
+ art,2
2095
+ arse,2
2096
+ democracy,2
2097
+ arrogant,2
2098
+ arrives,2
2099
+ dem,2
2100
+ delusion,2
2101
+ grandpa,2
2102
+ comfortable,2
2103
+ grandparent,2
2104
+ granny,2
2105
+ defused,2
2106
+ grape,2
2107
+ grass,2
2108
+ commited,2
2109
+ greeting,2
2110
+ arabia,2
2111
+ coke,2
2112
+ assault,2
2113
+ assigned,2
2114
+ clothing,2
2115
+ generous,2
2116
+ clinton,2
2117
+ disabled,2
2118
+ dis,2
2119
+ direction,2
2120
+ clock,2
2121
+ gettin,2
2122
+ closed,2
2123
+ aussie,2
2124
+ closer,2
2125
+ auschwistic,2
2126
+ clothes,2
2127
+ co,2
2128
+ goofy,2
2129
+ diabetic,2
2130
+ attract,2
2131
+ coca,2
2132
+ cocaine,2
2133
+ attempt,2
2134
+ gnigger,2
2135
+ cockroach,2
2136
+ athlete,2
2137
+ code,2
2138
+ design,2
2139
+ coffe,2
2140
+ ate,2
2141
+ chimney,2
2142
+ beauty,2
2143
+ grocery,2
2144
+ electricity,2
2145
+ expert,2
2146
+ camping,2
2147
+ cannibalism,2
2148
+ exploded,2
2149
+ breakfast,2
2150
+ empty,2
2151
+ brand,2
2152
+ branch,2
2153
+ explosive,2
2154
+ emotion,2
2155
+ emojis,2
2156
+ brace,2
2157
+ extinct,2
2158
+ careful,2
2159
+ extremist,2
2160
+ carry,2
2161
+ bottle,2
2162
+ bootleg,2
2163
+ elmo,2
2164
+ boom,2
2165
+ fail,2
2166
+ cash,2
2167
+ fall,2
2168
+ fallen,2
2169
+ catfish,2
2170
+ elevator,2
2171
+ electronics,2
2172
+ breathing,2
2173
+ enter,2
2174
+ calculator,2
2175
+ ex,2
2176
+ burka,2
2177
+ burqa,2
2178
+ eve,2
2179
+ bull,2
2180
+ business,2
2181
+ butter,2
2182
+ everytime,2
2183
+ everywhere,2
2184
+ evolution,2
2185
+ bulimic,2
2186
+ butterfly,2
2187
+ built,2
2188
+ buttholes,2
2189
+ bride,2
2190
+ er,2
2191
+ brutally,2
2192
+ bruh,2
2193
+ c,2
2194
+ brought,2
2195
+ exchange,2
2196
+ brotherhood,2
2197
+ cable,2
2198
+ execute,2
2199
+ cake,2
2200
+ britain,2
2201
+ calculate,2
2202
+ fancy,2
2203
+ election,2
2204
+ floating,2
2205
+ farmer,2
2206
+ biggest,2
2207
+ filled,2
2208
+ film,2
2209
+ bigger,2
2210
+ final,2
2211
+ dumbass,2
2212
+ finest,2
2213
+ fingering,2
2214
+ dropped,2
2215
+ belt,2
2216
+ beloved,2
2217
+ bell,2
2218
+ driving,2
2219
+ firework,2
2220
+ firm,2
2221
+ fishing,2
2222
+ five,2
2223
+ chef,2
2224
+ chemo,2
2225
+ chew,2
2226
+ dreaming,2
2227
+ bee,2
2228
+ chewing,2
2229
+ fled,2
2230
+ flee,2
2231
+ drag,2
2232
+ becuase,2
2233
+ bike,2
2234
+ duty,2
2235
+ dying,2
2236
+ fell,2
2237
+ boat,2
2238
+ blue,2
2239
+ ceiling,2
2240
+ fashion,2
2241
+ blowin,2
2242
+ cent,2
2243
+ fatty,2
2244
+ efficient,2
2245
+ cereal,2
2246
+ fbi,2
2247
+ feature,2
2248
+ blamed,2
2249
+ fellow,2
2250
+ figure,2
2251
+ challenge,2
2252
+ ebola,2
2253
+ eats,2
2254
+ bitter,2
2255
+ fence,2
2256
+ ear,2
2257
+ biological,2
2258
+ fetus,2
2259
+ fidget,2
2260
+ field,2
2261
+ fifth,2
2262
+ character,2
2263
+ grind,2
2264
+ gallon,2
2265
+ eternity,2
2266
+ antifa,2
2267
+ admin,2
2268
+ hack,2
2269
+ hacker,2
2270
+ hag,2
2271
+ cringe,2
2272
+ ancient,2
2273
+ helmet,2
2274
+ held,2
2275
+ hahaha,2
2276
+ correct,2
2277
+ ana,2
2278
+ amused,2
2279
+ amputee,2
2280
+ deciding,2
2281
+ decided,2
2282
+ addiction,2
2283
+ addict,2
2284
+ habibi,2
2285
+ hiding,2
2286
+ gunman,2
2287
+ accuses,2
2288
+ anti,2
2289
+ anthem,2
2290
+ achievement,2
2291
+ cream,2
2292
+ active,2
2293
+ creature,2
2294
+ annual,2
2295
+ herro,2
2296
+ actual,2
2297
+ condition,2
2298
+ ann,2
2299
+ adapt,2
2300
+ among,2
2301
+ adopted,2
2302
+ halloween,2
2303
+ cookbook,2
2304
+ hawking,2
2305
+ havin,2
2306
+ hater,2
2307
+ contact,2
2308
+ content,2
2309
+ daily,2
2310
+ handle,2
2311
+ danger,2
2312
+ aint,2
2313
+ contries,2
2314
+ airplane,2
2315
+ cycle,2
2316
+ convert,2
2317
+ harambe,2
2318
+ damnit,2
2319
+ handjob,2
2320
+ criticizing,2
2321
+ allowing,2
2322
+ af,2
2323
+ console,2
2324
+ heat,2
2325
+ handed,2
2326
+ health,2
2327
+ afford,2
2328
+ afghanistan,2
2329
+ danish,2
2330
+ afraid,2
2331
+ headed,2
2332
+ copy,2
2333
+ darling,2
2334
+ constitution,2
2335
+ dare,2
2336
+ hill,2
2337
+ converted,2
2338
+ grows,2
2339
+ appreciate,2
2340
+ holla,2
2341
+ complains,2
2342
+ hillary,2
2343
+ compliance,2
2344
+ appliance,2
2345
+ ground,2
2346
+ compliant,2
2347
+ appear,2
2348
+ couple,2
2349
+ anybody,2
2350
+ count,2
2351
+ defenseless,2
2352
+ accidentally,2
2353
+ hired,2
2354
+ guessing,2
2355
+ defend,2
2356
+ anywhere,2
2357
+ court,2
2358
+ crashed,2
2359
+ hitting,2
2360
+ abort,2
2361
+ anyways,2
2362
+ crakkka,2
2363
+ acceptance,2
2364
+ cope,1
2365
+ restraining,1
2366
+ smeller,1
2367
+ rely,1
2368
+ chance,1
2369
+ chaos,1
2370
+ smashing,1
2371
+ stash,1
2372
+ slutty,1
2373
+ channel,1
2374
+ copper,1
2375
+ remains,1
2376
+ smashed,1
2377
+ remain,1
2378
+ restroom,1
2379
+ changed,1
2380
+ changing,1
2381
+ buttercup,1
2382
+ smack,1
2383
+ squat,1
2384
+ chan,1
2385
+ ceremony,1
2386
+ snowblower,1
2387
+ responisble,1
2388
+ ceo,1
2389
+ buttfucked,1
2390
+ snitching,1
2391
+ snigger,1
2392
+ sniffer,1
2393
+ sneeze,1
2394
+ corn,1
2395
+ responsibility,1
2396
+ snapchat,1
2397
+ certificate,1
2398
+ restoration,1
2399
+ chair,1
2400
+ starve,1
2401
+ smollet,1
2402
+ smoking,1
2403
+ remeber,1
2404
+ smokin,1
2405
+ smokey,1
2406
+ corbynite,1
2407
+ challenger,1
2408
+ cooooooooooooon,1
2409
+ champ,1
2410
+ butcher,1
2411
+ sloooowly,1
2412
+ slowly,1
2413
+ cooler,1
2414
+ steel,1
2415
+ cheap,1
2416
+ slash,1
2417
+ cheated,1
2418
+ revert,1
2419
+ slander,1
2420
+ checked,1
2421
+ slag,1
2422
+ skull,1
2423
+ skul,1
2424
+ skoal,1
2425
+ checker,1
2426
+ skinned,1
2427
+ buried,1
2428
+ reviewed,1
2429
+ revive,1
2430
+ checkin,1
2431
+ rez,1
2432
+ rh,1
2433
+ burger,1
2434
+ skilled,1
2435
+ skill,1
2436
+ stepped,1
2437
+ rhino,1
2438
+ sketch,1
2439
+ rican,1
2440
+ convinced,1
2441
+ skeleton,1
2442
+ skate,1
2443
+ slaughtered,1
2444
+ slaughtering,1
2445
+ cowardly,1
2446
+ charles,1
2447
+ busting,1
2448
+ sloppy,1
2449
+ soap,1
2450
+ slogan,1
2451
+ slipped,1
2452
+ retarted,1
2453
+ relocate,1
2454
+ cooky,1
2455
+ rellly,1
2456
+ charcol,1
2457
+ slid,1
2458
+ stayed,1
2459
+ retreated,1
2460
+ slept,1
2461
+ reverse,1
2462
+ return,1
2463
+ cookie,1
2464
+ covering,1
2465
+ bush,1
2466
+ charming,1
2467
+ revealed,1
2468
+ sleepyhead,1
2469
+ sleeping,1
2470
+ chase,1
2471
+ chasing,1
2472
+ slavemaster,1
2473
+ chatting,1
2474
+ busch,1
2475
+ snuffy,1
2476
+ celebrated,1
2477
+ remembering,1
2478
+ soar,1
2479
+ captivity,1
2480
+ captured,1
2481
+ squirter,1
2482
+ stabbin,1
2483
+ spear,1
2484
+ speaks,1
2485
+ caramel,1
2486
+ spayed,1
2487
+ spay,1
2488
+ repercussion,1
2489
+ spawn,1
2490
+ carcass,1
2491
+ replace,1
2492
+ spasm,1
2493
+ spanish,1
2494
+ removable,1
2495
+ spangled,1
2496
+ career,1
2497
+ cadbury,1
2498
+ spacky,1
2499
+ stacked,1
2500
+ space,1
2501
+ soybeaner,1
2502
+ southern,1
2503
+ cosby,1
2504
+ corruption,1
2505
+ carl,1
2506
+ captain,1
2507
+ capitol,1
2508
+ cap,1
2509
+ splitting,1
2510
+ rent,1
2511
+ repaid,1
2512
+ spring,1
2513
+ caliphate,1
2514
+ spray,1
2515
+ spouse,1
2516
+ calorie,1
2517
+ cameraman,1
2518
+ sponsored,1
2519
+ cames,1
2520
+ spokesman,1
2521
+ spoke,1
2522
+ spittin,1
2523
+ squirted,1
2524
+ spit,1
2525
+ squatted,1
2526
+ spirit,1
2527
+ squatter,1
2528
+ camouflage,1
2529
+ squeaky,1
2530
+ spin,1
2531
+ squigga,1
2532
+ spider,1
2533
+ reparation,1
2534
+ candy,1
2535
+ cannibal,1
2536
+ stalk,1
2537
+ carlos,1
2538
+ carolina,1
2539
+ resist,1
2540
+ reshare,1
2541
+ resident,1
2542
+ buttigieg,1
2543
+ starring,1
2544
+ solzhenitsyn,1
2545
+ solving,1
2546
+ solviets,1
2547
+ caused,1
2548
+ caution,1
2549
+ solultions,1
2550
+ cave,1
2551
+ cdc,1
2552
+ resolution,1
2553
+ stare,1
2554
+ soil,1
2555
+ sodomite,1
2556
+ corps,1
2557
+ responded,1
2558
+ responds,1
2559
+ costume,1
2560
+ cell,1
2561
+ socially,1
2562
+ cellphone,1
2563
+ remembers,1
2564
+ centre,1
2565
+ sober,1
2566
+ somali,1
2567
+ reminder,1
2568
+ carpet,1
2569
+ carving,1
2570
+ carrot,1
2571
+ stall,1
2572
+ sooo,1
2573
+ carrying,1
2574
+ song,1
2575
+ reporting,1
2576
+ cabinet,1
2577
+ cartoon,1
2578
+ correctness,1
2579
+ correctioness,1
2580
+ somting,1
2581
+ remotely,1
2582
+ coupe,1
2583
+ research,1
2584
+ repulsed,1
2585
+ bystander,1
2586
+ somethings,1
2587
+ checkpoint,1
2588
+ standing,1
2589
+ somehwere,1
2590
+ catlyn,1
2591
+ someday,1
2592
+ corpse,1
2593
+ cattle,1
2594
+ buying,1
2595
+ somalia,1
2596
+ castrated,1
2597
+ sander,1
2598
+ cheese,1
2599
+ condemn,1
2600
+ coast,1
2601
+ semen,1
2602
+ semits,1
2603
+ rushed,1
2604
+ coa,1
2605
+ sends,1
2606
+ sens,1
2607
+ cobain,1
2608
+ clown,1
2609
+ sensual,1
2610
+ ruling,1
2611
+ ruled,1
2612
+ cloth,1
2613
+ closing,1
2614
+ coat,1
2615
+ selfie,1
2616
+ ricky,1
2617
+ seed,1
2618
+ coin,1
2619
+ secretly,1
2620
+ sabarmati,1
2621
+ coffin,1
2622
+ concept,1
2623
+ rusty,1
2624
+ coconut,1
2625
+ rushmore,1
2626
+ coco,1
2627
+ concert,1
2628
+ conclusion,1
2629
+ cockeyed,1
2630
+ seized,1
2631
+ selassie,1
2632
+ closet,1
2633
+ sepasanmemes,1
2634
+ seperate,1
2635
+ route,1
2636
+ seuss,1
2637
+ rspca,1
2638
+ several,1
2639
+ clint,1
2640
+ climbing,1
2641
+ click,1
2642
+ sexslave,1
2643
+ conditioner,1
2644
+ clergy,1
2645
+ round,1
2646
+ sexually,1
2647
+ clearance,1
2648
+ sh,1
2649
+ cleaner,1
2650
+ settler,1
2651
+ rt,1
2652
+ rub,1
2653
+ setting,1
2654
+ clit,1
2655
+ session,1
2656
+ rubber,1
2657
+ clitoris,1
2658
+ condo,1
2659
+ ruin,1
2660
+ serve,1
2661
+ clocking,1
2662
+ clogged,1
2663
+ ruined,1
2664
+ serbian,1
2665
+ serb,1
2666
+ seperation,1
2667
+ secondary,1
2668
+ coincidence,1
2669
+ seattle,1
2670
+ scandal,1
2671
+ saved,1
2672
+ complain,1
2673
+ saviour,1
2674
+ combined,1
2675
+ combine,1
2676
+ columbus,1
2677
+ scandinavia,1
2678
+ complement,1
2679
+ scarecrow,1
2680
+ salon,1
2681
+ coloured,1
2682
+ scavenger,1
2683
+ scene,1
2684
+ salesman,1
2685
+ command,1
2686
+ commander,1
2687
+ compilaion,1
2688
+ saudi,1
2689
+ satanic,1
2690
+ samuel,1
2691
+ sas,1
2692
+ saria,1
2693
+ sarah,1
2694
+ sarafina,1
2695
+ sanctity,1
2696
+ commits,1
2697
+ sank,1
2698
+ committee,1
2699
+ sandwichmaker,1
2700
+ communism,1
2701
+ communist,1
2702
+ schiff,1
2703
+ schnazi,1
2704
+ seated,1
2705
+ sean,1
2706
+ safer,1
2707
+ comprised,1
2708
+ scumbag,1
2709
+ scumbags,1
2710
+ scummy,1
2711
+ col,1
2712
+ search,1
2713
+ scholar,1
2714
+ computer,1
2715
+ conceived,1
2716
+ concentrate,1
2717
+ concentrated,1
2718
+ seat,1
2719
+ coined,1
2720
+ colin,1
2721
+ collect,1
2722
+ completion,1
2723
+ scrape,1
2724
+ sailor,1
2725
+ scramble,1
2726
+ collector,1
2727
+ scold,1
2728
+ scoffer,1
2729
+ scissors,1
2730
+ scissor,1
2731
+ college,1
2732
+ collusion,1
2733
+ colonial,1
2734
+ salad,1
2735
+ schoolmate,1
2736
+ colour,1
2737
+ shadow,1
2738
+ shadowy,1
2739
+ shag,1
2740
+ si,1
2741
+ chlamydia,1
2742
+ shuffling,1
2743
+ shunned,1
2744
+ roach,1
2745
+ chisled,1
2746
+ shyquisha,1
2747
+ chinn,1
2748
+ rioting,1
2749
+ sibling,1
2750
+ continues,1
2751
+ sicko,1
2752
+ chin,1
2753
+ ripot,1
2754
+ sidewalk,1
2755
+ chloroform,1
2756
+ choc,1
2757
+ roadhouse,1
2758
+ chocen,1
2759
+ shoving,1
2760
+ choco,1
2761
+ shoutout,1
2762
+ shouting,1
2763
+ shout,1
2764
+ chocolatey,1
2765
+ shoulder,1
2766
+ shotgun,1
2767
+ chooses,1
2768
+ shortly,1
2769
+ chop,1
2770
+ chopping,1
2771
+ roast,1
2772
+ contributor,1
2773
+ sieg,1
2774
+ consume,1
2775
+ ricochet,1
2776
+ sinday,1
2777
+ ridiculous,1
2778
+ chickin,1
2779
+ ridiculer,1
2780
+ sinner,1
2781
+ conversion,1
2782
+ siren,1
2783
+ sighted,1
2784
+ chested,1
2785
+ chess,1
2786
+ sisterfister,1
2787
+ rickyyy,1
2788
+ site,1
2789
+ sittin,1
2790
+ sincerely,1
2791
+ chigga,1
2792
+ childbirth,1
2793
+ simulator,1
2794
+ riding,1
2795
+ convention,1
2796
+ childhood,1
2797
+ sand,1
2798
+ controlling,1
2799
+ chili,1
2800
+ chillin,1
2801
+ rightfully,1
2802
+ chilren,1
2803
+ silence,1
2804
+ sikh,1
2805
+ signed,1
2806
+ chimpanzee,1
2807
+ shootzanigger,1
2808
+ choudary,1
2809
+ rotherham,1
2810
+ clamp,1
2811
+ consider,1
2812
+ shave,1
2813
+ clap,1
2814
+ considered,1
2815
+ shawarma,1
2816
+ romance,1
2817
+ shea,1
2818
+ roller,1
2819
+ sheckles,1
2820
+ roman,1
2821
+ claimed,1
2822
+ consistent,1
2823
+ sheet,1
2824
+ rollin,1
2825
+ rook,1
2826
+ sharpton,1
2827
+ sharpener,1
2828
+ conservitives,1
2829
+ conjoined,1
2830
+ confusion,1
2831
+ sharpened,1
2832
+ shark,1
2833
+ stereo,1
2834
+ classic,1
2835
+ confusing,1
2836
+ shape,1
2837
+ shaker,1
2838
+ conentration,1
2839
+ rotating,1
2840
+ cleaned,1
2841
+ shagging,1
2842
+ shelf,1
2843
+ shemale,1
2844
+ chow,1
2845
+ shlomo,1
2846
+ circa,1
2847
+ robinson,1
2848
+ shitposter,1
2849
+ shitter,1
2850
+ shitting,1
2851
+ shitty,1
2852
+ shock,1
2853
+ sheriff,1
2854
+ shocked,1
2855
+ ci,1
2856
+ chromies,1
2857
+ robert,1
2858
+ robbery,1
2859
+ constantine,1
2860
+ shithead,1
2861
+ robot,1
2862
+ consructed,1
2863
+ circumcised,1
2864
+ shipped,1
2865
+ rocket,1
2866
+ civil,1
2867
+ shini,1
2868
+ shill,1
2869
+ shield,1
2870
+ rockin,1
2871
+ shibe,1
2872
+ rod,1
2873
+ shia,1
2874
+ shhh,1
2875
+ rode,1
2876
+ conspiracy,1
2877
+ similarity,1
2878
+ sunni,1
2879
+ burell,1
2880
+ virgo,1
2881
+ varied,1
2882
+ vegan,1
2883
+ ashol,1
2884
+ version,1
2885
+ ashin,1
2886
+ asad,1
2887
+ vhen,1
2888
+ arthur,1
2889
+ victimize,1
2890
+ arson,1
2891
+ vietnam,1
2892
+ vietnamese,1
2893
+ village,1
2894
+ villager,1
2895
+ arrive,1
2896
+ violently,1
2897
+ arresting,1
2898
+ varadkar,1
2899
+ vaping,1
2900
+ valuable,1
2901
+ utter,1
2902
+ urine,1
2903
+ us,1
2904
+ associate,1
2905
+ assassinated,1
2906
+ ussr,1
2907
+ assassin,1
2908
+ usury,1
2909
+ assad,1
2910
+ valid,1
2911
+ vaccinate,1
2912
+ vaccine,1
2913
+ vacuum,1
2914
+ vagene,1
2915
+ asleep,1
2916
+ vagine,1
2917
+ valentine,1
2918
+ armenian,1
2919
+ virulent,1
2920
+ anyway,1
2921
+ virus,1
2922
+ wahabi,1
2923
+ arabic,1
2924
+ waitress,1
2925
+ april,1
2926
+ approves,1
2927
+ approached,1
2928
+ wale,1
2929
+ apprehend,1
2930
+ applies,1
2931
+ application,1
2932
+ appeared,1
2933
+ walmarts,1
2934
+ appeal,1
2935
+ wanking,1
2936
+ apologize,1
2937
+ apartheid,1
2938
+ warms,1
2939
+ wa,1
2940
+ w,1
2941
+ vulture,1
2942
+ volcano,1
2943
+ arizona,1
2944
+ aribic,1
2945
+ visited,1
2946
+ visiting,1
2947
+ arguing,1
2948
+ vodka,1
2949
+ voice,1
2950
+ volks,1
2951
+ vour,1
2952
+ volkswagen,1
2953
+ volunteer,1
2954
+ volunteering,1
2955
+ argue,1
2956
+ arent,1
2957
+ architect,1
2958
+ architecht,1
2959
+ urge,1
2960
+ assuming,1
2961
+ astrazine,1
2962
+ ups,1
2963
+ ayanna,1
2964
+ twerking,1
2965
+ awkward,1
2966
+ twister,1
2967
+ twitter,1
2968
+ awful,1
2969
+ tx,1
2970
+ tying,1
2971
+ award,1
2972
+ avocado,1
2973
+ aviator,1
2974
+ avdol,1
2975
+ available,1
2976
+ autocorrects,1
2977
+ ufc,1
2978
+ ugliest,1
2979
+ auto,1
2980
+ tweeker,1
2981
+ tutorial,1
2982
+ babri,1
2983
+ background,1
2984
+ bahamian,1
2985
+ backwash,1
2986
+ truly,1
2987
+ backward,1
2988
+ trumpanzees,1
2989
+ trunk,1
2990
+ backlivesmatter,1
2991
+ bachelor,1
2992
+ turner,1
2993
+ tryna,1
2994
+ trynna,1
2995
+ turducken,1
2996
+ turk,1
2997
+ babysitter,1
2998
+ babysit,1
2999
+ babrie,1
3000
+ uglyass,1
3001
+ author,1
3002
+ austrian,1
3003
+ university,1
3004
+ unemployed,1
3005
+ unfollowing,1
3006
+ ungrateful,1
3007
+ unhumanrights,1
3008
+ unicorn,1
3009
+ uniqueness,1
3010
+ attic,1
3011
+ unlearn,1
3012
+ undocumented,1
3013
+ unleash,1
3014
+ atheiests,1
3015
+ unto,1
3016
+ untreated,1
3017
+ unwelcome,1
3018
+ update,1
3019
+ aswell,1
3020
+ uneducated,1
3021
+ underwear,1
3022
+ austrailia,1
3023
+ uncivilized,1
3024
+ unacceptable,1
3025
+ unattended,1
3026
+ aushwitz,1
3027
+ unbleeble,1
3028
+ unborn,1
3029
+ unbreakable,1
3030
+ unbury,1
3031
+ aunt,1
3032
+ underwater,1
3033
+ auditioned,1
3034
+ unclear,1
3035
+ auchschwitz,1
3036
+ underprivileged,1
3037
+ underrated,1
3038
+ auburn,1
3039
+ attracted,1
3040
+ warn,1
3041
+ wart,1
3042
+ steroid,1
3043
+ adore,1
3044
+ ahmarbkrich,1
3045
+ wok,1
3046
+ ahhhh,1
3047
+ wolrd,1
3048
+ ahh,1
3049
+ womb,1
3050
+ womenwholovewine,1
3051
+ agent,1
3052
+ agenda,1
3053
+ age,1
3054
+ wookie,1
3055
+ affair,1
3056
+ afar,1
3057
+ worker,1
3058
+ advocate,1
3059
+ workplace,1
3060
+ advantage,1
3061
+ wnen,1
3062
+ wizard,1
3063
+ witht,1
3064
+ winnie,1
3065
+ windmill,1
3066
+ albanian,1
3067
+ ala,1
3068
+ wineaisle,1
3069
+ winfrey,1
3070
+ al,1
3071
+ aisha,1
3072
+ winning,1
3073
+ aight,1
3074
+ winston,1
3075
+ winter,1
3076
+ airspace,1
3077
+ wiped,1
3078
+ wirathu,1
3079
+ aiming,1
3080
+ aimed,1
3081
+ advance,1
3082
+ adorable,1
3083
+ washing,1
3084
+ worshipped,1
3085
+ accent,1
3086
+ yooouu,1
3087
+ york,1
3088
+ accelerated,1
3089
+ accelerate,1
3090
+ abused,1
3091
+ youtube,1
3092
+ youve,1
3093
+ yup,1
3094
+ aboard,1
3095
+ abnormal,1
3096
+ zealander,1
3097
+ ability,1
3098
+ abiity,1
3099
+ abbu,1
3100
+ zoo,1
3101
+ zoroastrain,1
3102
+ accepts,1
3103
+ accommodate,1
3104
+ yelp,1
3105
+ addo,1
3106
+ adolf,1
3107
+ worth,1
3108
+ woth,1
3109
+ admitted,1
3110
+ wow,1
3111
+ wrapped,1
3112
+ admit,1
3113
+ wy,1
3114
+ accomplishes,1
3115
+ wyness,1
3116
+ added,1
3117
+ xbox,1
3118
+ ad,1
3119
+ achieves,1
3120
+ ach,1
3121
+ accused,1
3122
+ windchimes,1
3123
+ albert,1
3124
+ album,1
3125
+ alcoholic,1
3126
+ anime,1
3127
+ wednesday,1
3128
+ anger,1
3129
+ weeeeeee,1
3130
+ angelina,1
3131
+ weekly,1
3132
+ anata,1
3133
+ weighed,1
3134
+ amsterdam,1
3135
+ wendy,1
3136
+ amout,1
3137
+ amount,1
3138
+ amid,1
3139
+ wetern,1
3140
+ whack,1
3141
+ whacked,1
3142
+ whale,1
3143
+ weave,1
3144
+ weather,1
3145
+ anique,1
3146
+ waterin,1
3147
+ washington,1
3148
+ anxiety,1
3149
+ antisemitic,1
3150
+ wasting,1
3151
+ antique,1
3152
+ watched,1
3153
+ antichrist,1
3154
+ anthing,1
3155
+ anjem,1
3156
+ watson,1
3157
+ wax,1
3158
+ wayment,1
3159
+ wea,1
3160
+ annoying,1
3161
+ weakened,1
3162
+ announced,1
3163
+ amgola,1
3164
+ alzheimer,1
3165
+ alwhite,1
3166
+ whorefax,1
3167
+ whitesox,1
3168
+ allahakbar,1
3169
+ whitey,1
3170
+ whoever,1
3171
+ alike,1
3172
+ whoopty,1
3173
+ aliexpress,1
3174
+ alexandria,1
3175
+ whiteprideworldwide,1
3176
+ widespread,1
3177
+ widow,1
3178
+ wiener,1
3179
+ alexander,1
3180
+ william,1
3181
+ williams,1
3182
+ willie,1
3183
+ allegiance,1
3184
+ whiteman,1
3185
+ whatsoever,1
3186
+ allāhu,1
3187
+ whatsthe,1
3188
+ wheat,1
3189
+ wheaties,1
3190
+ altar,1
3191
+ alphabet,1
3192
+ along,1
3193
+ whether,1
3194
+ allows,1
3195
+ whitejoke,1
3196
+ whipepo,1
3197
+ whispering,1
3198
+ allow,1
3199
+ whitaker,1
3200
+ allen,1
3201
+ whiteback,1
3202
+ whitegirlwasted,1
3203
+ troop,1
3204
+ troll,1
3205
+ trojan,1
3206
+ synthetic,1
3207
+ swapped,1
3208
+ bonfire,1
3209
+ sweat,1
3210
+ boner,1
3211
+ sweden,1
3212
+ swedish,1
3213
+ boneless,1
3214
+ sweeter,1
3215
+ sweetheart,1
3216
+ sweety,1
3217
+ bombathon,1
3218
+ bologna,1
3219
+ swindler,1
3220
+ switch,1
3221
+ switching,1
3222
+ symbol,1
3223
+ boi,1
3224
+ swallowing,1
3225
+ boob,1
3226
+ sus,1
3227
+ box,1
3228
+ superman,1
3229
+ supermodel,1
3230
+ supplier,1
3231
+ supported,1
3232
+ boxcutters,1
3233
+ supporting,1
3234
+ suppose,1
3235
+ bout,1
3236
+ boot,1
3237
+ bottom,1
3238
+ surprise,1
3239
+ surround,1
3240
+ surrounded,1
3241
+ surveillance,1
3242
+ survey,1
3243
+ survival,1
3244
+ boatload,1
3245
+ syphilitic,1
3246
+ troii,1
3247
+ boating,1
3248
+ tard,1
3249
+ tards,1
3250
+ targeting,1
3251
+ tarrant,1
3252
+ blackout,1
3253
+ tasted,1
3254
+ tasting,1
3255
+ tasty,1
3256
+ blackman,1
3257
+ blacklivesmatter,1
3258
+ blackhead,1
3259
+ tch,1
3260
+ te,1
3261
+ blacker,1
3262
+ bl,1
3263
+ teaching,1
3264
+ teaher,1
3265
+ blaming,1
3266
+ tanning,1
3267
+ tank,1
3268
+ talak,1
3269
+ system,1
3270
+ blown,1
3271
+ tag,1
3272
+ tagging,1
3273
+ bloody,1
3274
+ bloodshot,1
3275
+ blond,1
3276
+ tale,1
3277
+ tan,1
3278
+ blocked,1
3279
+ blink,1
3280
+ talked,1
3281
+ bless,1
3282
+ blanket,1
3283
+ talmudists,1
3284
+ tambourine,1
3285
+ superior,1
3286
+ superhero,1
3287
+ supercoon,1
3288
+ bracelet,1
3289
+ stopping,1
3290
+ brutal,1
3291
+ storming,1
3292
+ bruhh,1
3293
+ bruder,1
3294
+ strap,1
3295
+ streak,1
3296
+ streat,1
3297
+ brotha,1
3298
+ bromide,1
3299
+ stress,1
3300
+ stricken,1
3301
+ brithday,1
3302
+ string,1
3303
+ stroke,1
3304
+ stroller,1
3305
+ bright,1
3306
+ bubble,1
3307
+ buck,1
3308
+ stood,1
3309
+ sting,1
3310
+ steve,1
3311
+ steven,1
3312
+ bunnings,1
3313
+ bunk,1
3314
+ sticker,1
3315
+ bullshittery,1
3316
+ bullied,1
3317
+ stingy,1
3318
+ buhammad,1
3319
+ stink,1
3320
+ stir,1
3321
+ stitch,1
3322
+ stoke,1
3323
+ bulky,1
3324
+ stomach,1
3325
+ stomp,1
3326
+ stronger,1
3327
+ struck,1
3328
+ briefcase,1
3329
+ suggest,1
3330
+ suckas,1
3331
+ sucker,1
3332
+ suckin,1
3333
+ breastfeed,1
3334
+ suffered,1
3335
+ bravery,1
3336
+ sugar,1
3337
+ brave,1
3338
+ breathin,1
3339
+ brahmin,1
3340
+ summary,1
3341
+ brahmanism,1
3342
+ bradford,1
3343
+ sunburnt,1
3344
+ sunday,1
3345
+ coworker,1
3346
+ breastfeeding,1
3347
+ successful,1
3348
+ stuck,1
3349
+ styrofoam,1
3350
+ studied,1
3351
+ bribing,1
3352
+ brett,1
3353
+ brenton,1
3354
+ stupidity,1
3355
+ stutter,1
3356
+ breeding,1
3357
+ sub,1
3358
+ success,1
3359
+ subdue,1
3360
+ subject,1
3361
+ breeder,1
3362
+ submissive,1
3363
+ submit,1
3364
+ subsidized,1
3365
+ subversive,1
3366
+ bite,1
3367
+ tease,1
3368
+ technician,1
3369
+ beater,1
3370
+ basterds,1
3371
+ tourist,1
3372
+ towards,1
3373
+ basketball,1
3374
+ basis,1
3375
+ bashing,1
3376
+ basement,1
3377
+ baseball,1
3378
+ traditional,1
3379
+ traditionally,1
3380
+ base,1
3381
+ tragic,1
3382
+ trail,1
3383
+ barrel,1
3384
+ trained,1
3385
+ trainer,1
3386
+ training,1
3387
+ tough,1
3388
+ touching,1
3389
+ bathing,1
3390
+ beak,1
3391
+ beastiality,1
3392
+ beast,1
3393
+ beard,1
3394
+ toll,1
3395
+ tom,1
3396
+ tomboyish,1
3397
+ tomi,1
3398
+ tongue,1
3399
+ totally,1
3400
+ tongued,1
3401
+ bawrr,1
3402
+ battery,1
3403
+ tooracist,1
3404
+ battered,1
3405
+ battalion,1
3406
+ batman,1
3407
+ trait,1
3408
+ traitor,1
3409
+ barking,1
3410
+ trevor,1
3411
+ tray,1
3412
+ bankrupt,1
3413
+ treated,1
3414
+ banged,1
3415
+ trend,1
3416
+ trespasser,1
3417
+ tresspass,1
3418
+ trial,1
3419
+ bannned,1
3420
+ banded,1
3421
+ band,1
3422
+ trickster,1
3423
+ triggered,1
3424
+ baldwin,1
3425
+ bald,1
3426
+ trivial,1
3427
+ traveling,1
3428
+ trashy,1
3429
+ bargain,1
3430
+ barbric,1
3431
+ trannys,1
3432
+ bare,1
3433
+ transbender,1
3434
+ transfat,1
3435
+ transferred,1
3436
+ transformation,1
3437
+ transforms,1
3438
+ barbed,1
3439
+ baptise,1
3440
+ transgenderman,1
3441
+ transgendershit,1
3442
+ transphobia,1
3443
+ barbecuing,1
3444
+ transvestigation,1
3445
+ trap,1
3446
+ trapping,1
3447
+ beatdown,1
3448
+ toddler,1
3449
+ technique,1
3450
+ beause,1
3451
+ biden,1
3452
+ th,1
3453
+ thai,1
3454
+ bicycle,1
3455
+ thankfully,1
3456
+ besties,1
3457
+ berry,1
3458
+ bernie,1
3459
+ bent,1
3460
+ theory,1
3461
+ therapist,1
3462
+ benjamin,1
3463
+ there,1
3464
+ theyve,1
3465
+ thicc,1
3466
+ thick,1
3467
+ thief,1
3468
+ bieber,1
3469
+ terrorizes,1
3470
+ bihari,1
3471
+ template,1
3472
+ bitching,1
3473
+ tecnical,1
3474
+ birkenau,1
3475
+ bingo,1
3476
+ binary,1
3477
+ telly,1
3478
+ temperature,1
3479
+ temple,1
3480
+ terrori,1
3481
+ billion,1
3482
+ tentacle,1
3483
+ ter,1
3484
+ biker,1
3485
+ terminigger,1
3486
+ terrible,1
3487
+ terribly,1
3488
+ thier,1
3489
+ ben,1
3490
+ thingy,1
3491
+ tina,1
3492
+ ticket,1
3493
+ tiddies,1
3494
+ tiger,1
3495
+ tight,1
3496
+ bedtime,1
3497
+ bedroom,1
3498
+ tilt,1
3499
+ becasue,1
3500
+ thyself,1
3501
+ becase,1
3502
+ beaver,1
3503
+ tlaib,1
3504
+ tlais,1
3505
+ toast,1
3506
+ toaster,1
3507
+ beautifull,1
3508
+ ticc,1
3509
+ beethoven,1
3510
+ thinkin,1
3511
+ thread,1
3512
+ thirsty,1
3513
+ believed,1
3514
+ thoat,1
3515
+ thorn,1
3516
+ belgium,1
3517
+ being,1
3518
+ beheading,1
3519
+ threat,1
3520
+ befo,1
3521
+ threaten,1
3522
+ threatened,1
3523
+ behaviour,1
3524
+ behave,1
3525
+ threw,1
3526
+ throat,1
3527
+ begging,1
3528
+ release,1
3529
+ holo,1
3530
+ cracka,1
3531
+ loosing,1
3532
+ fought,1
3533
+ forty,1
3534
+ forth,1
3535
+ forrest,1
3536
+ fornicator,1
3537
+ fork,1
3538
+ louder,1
3539
+ loudly,1
3540
+ louis,1
3541
+ forhead,1
3542
+ loved,1
3543
+ lover,1
3544
+ lovin,1
3545
+ forgot,1
3546
+ forgo,1
3547
+ lucifer,1
3548
+ luckily,1
3549
+ fourth,1
3550
+ looney,1
3551
+ luigi,1
3552
+ lookout,1
3553
+ fren,1
3554
+ freezing,1
3555
+ loaded,1
3556
+ freemason,1
3557
+ loan,1
3558
+ lobbying,1
3559
+ freeman,1
3560
+ freedom,1
3561
+ freed,1
3562
+ freckle,1
3563
+ locker,1
3564
+ freaking,1
3565
+ fraud,1
3566
+ fragile,1
3567
+ fracture,1
3568
+ lookah,1
3569
+ looked,1
3570
+ lucky,1
3571
+ forcing,1
3572
+ lmco,1
3573
+ flotation,1
3574
+ floorboard,1
3575
+ mam,1
3576
+ flipside,1
3577
+ managed,1
3578
+ management,1
3579
+ manager,1
3580
+ fleshlight,1
3581
+ fleeing,1
3582
+ mandir,1
3583
+ fleecing,1
3584
+ maniac,1
3585
+ manufacturing,1
3586
+ flammable,1
3587
+ flame,1
3588
+ fkn,1
3589
+ marge,1
3590
+ maria,1
3591
+ malcolm,1
3592
+ flour,1
3593
+ lure,1
3594
+ flying,1
3595
+ footage,1
3596
+ lying,1
3597
+ foodstamps,1
3598
+ m,1
3599
+ mac,1
3600
+ machinery,1
3601
+ macho,1
3602
+ foo,1
3603
+ maddened,1
3604
+ following,1
3605
+ magazine,1
3606
+ maggot,1
3607
+ main,1
3608
+ mainland,1
3609
+ maintain,1
3610
+ majesty,1
3611
+ mak,1
3612
+ lmfao,1
3613
+ freshener,1
3614
+ gf,1
3615
+ lawn,1
3616
+ lay,1
3617
+ generalization,1
3618
+ lb,1
3619
+ gaz,1
3620
+ gayness,1
3621
+ leading,1
3622
+ gathering,1
3623
+ gatekeeper,1
3624
+ leaking,1
3625
+ gate,1
3626
+ abba,1
3627
+ leash,1
3628
+ garb,1
3629
+ garage,1
3630
+ leaving,1
3631
+ lebanon,1
3632
+ lebron,1
3633
+ lawsuit,1
3634
+ lavaughn,1
3635
+ gangbanging,1
3636
+ generational,1
3637
+ lamp,1
3638
+ lampshade,1
3639
+ gers,1
3640
+ geo,1
3641
+ genuine,1
3642
+ gentle,1
3643
+ largest,1
3644
+ larhen,1
3645
+ larry,1
3646
+ lash,1
3647
+ genetically,1
3648
+ lately,1
3649
+ genetic,1
3650
+ latina,1
3651
+ generosity,1
3652
+ generic,1
3653
+ launching,1
3654
+ leeroy,1
3655
+ gang,1
3656
+ fried,1
3657
+ fukislam,1
3658
+ fuhrking,1
3659
+ liked,1
3660
+ fuhrerious,1
3661
+ limber,1
3662
+ limp,1
3663
+ fuhrer,1
3664
+ lip,1
3665
+ liquor,1
3666
+ fucksake,1
3667
+ fucken,1
3668
+ listening,1
3669
+ fryyy,1
3670
+ frustrated,1
3671
+ frreedom,1
3672
+ frozen,1
3673
+ fritz,1
3674
+ friendship,1
3675
+ fuk,1
3676
+ lieth,1
3677
+ gaming,1
3678
+ lied,1
3679
+ legitimate,1
3680
+ lem,1
3681
+ leo,1
3682
+ galaxy,1
3683
+ gal,1
3684
+ futas,1
3685
+ furry,1
3686
+ furfags,1
3687
+ fur,1
3688
+ lgbtq,1
3689
+ lgtbetc,1
3690
+ funnier,1
3691
+ library,1
3692
+ fund,1
3693
+ licking,1
3694
+ lid,1
3695
+ funcle,1
3696
+ marijuana,1
3697
+ marine,1
3698
+ marital,1
3699
+ minyoda,1
3700
+ farther,1
3701
+ farrakhan,1
3702
+ farmville,1
3703
+ missippi,1
3704
+ farming,1
3705
+ farmersownme,1
3706
+ mistress,1
3707
+ mitochondrion,1
3708
+ mitten,1
3709
+ fanny,1
3710
+ mmmm,1
3711
+ fanatical,1
3712
+ mocker,1
3713
+ mocking,1
3714
+ mode,1
3715
+ model,1
3716
+ modelling,1
3717
+ misandry,1
3718
+ fascist,1
3719
+ famous,1
3720
+ minus,1
3721
+ mighta,1
3722
+ favour,1
3723
+ mileikowski,1
3724
+ favor,1
3725
+ faulty,1
3726
+ miller,1
3727
+ fastest,1
3728
+ mina,1
3729
+ fasten,1
3730
+ mindless,1
3731
+ mindlessly,1
3732
+ fastball,1
3733
+ fashioned,1
3734
+ minion,1
3735
+ minister,1
3736
+ minnesota,1
3737
+ minor,1
3738
+ fanarts,1
3739
+ modi,1
3740
+ mark,1
3741
+ exterminated,1
3742
+ exsisted,1
3743
+ mosquee,1
3744
+ exsist,1
3745
+ mostly,1
3746
+ express,1
3747
+ exposed,1
3748
+ expose,1
3749
+ motor,1
3750
+ motorcycle,1
3751
+ mount,1
3752
+ export,1
3753
+ moustache,1
3754
+ moutain,1
3755
+ explosion,1
3756
+ mouthed,1
3757
+ mouthful,1
3758
+ explorer,1
3759
+ extended,1
3760
+ morgue,1
3761
+ false,1
3762
+ extreme,1
3763
+ fallonfox,1
3764
+ molester,1
3765
+ fairy,1
3766
+ factory,1
3767
+ facial,1
3768
+ faceapp,1
3769
+ monday,1
3770
+ eywant,1
3771
+ eyelid,1
3772
+ monopolized,1
3773
+ monsanto,1
3774
+ eyelash,1
3775
+ eyed,1
3776
+ monumentally,1
3777
+ mooch,1
3778
+ moon,1
3779
+ moore,1
3780
+ favoutrite,1
3781
+ fax,1
3782
+ michigan,1
3783
+ finna,1
3784
+ finish,1
3785
+ fingerpaint,1
3786
+ matcha,1
3787
+ mate,1
3788
+ math,1
3789
+ matte,1
3790
+ fingered,1
3791
+ maury,1
3792
+ finding,1
3793
+ financial,1
3794
+ filthy,1
3795
+ mccain,1
3796
+ mcdonalds,1
3797
+ mchitler,1
3798
+ mctwist,1
3799
+ meah,1
3800
+ meal,1
3801
+ finishing,1
3802
+ fired,1
3803
+ fed,1
3804
+ massive,1
3805
+ markandey,1
3806
+ market,1
3807
+ marking,1
3808
+ marokko,1
3809
+ marraige,1
3810
+ marrakesh,1
3811
+ fitness,1
3812
+ fisting,1
3813
+ martel,1
3814
+ martini,1
3815
+ marvel,1
3816
+ masculinity,1
3817
+ firetruck,1
3818
+ mask,1
3819
+ firend,1
3820
+ massa,1
3821
+ massah,1
3822
+ filter,1
3823
+ fill,1
3824
+ meathead,1
3825
+ filipina,1
3826
+ mermaid,1
3827
+ merry,1
3828
+ fertilizer,1
3829
+ messenger,1
3830
+ messiah,1
3831
+ messing,1
3832
+ feminine,1
3833
+ femenist,1
3834
+ meter,1
3835
+ felony,1
3836
+ methican,1
3837
+ felling,1
3838
+ mg,1
3839
+ mic,1
3840
+ federal,1
3841
+ michel,1
3842
+ michelangelo,1
3843
+ merideth,1
3844
+ meredith,1
3845
+ mercury,1
3846
+ melon,1
3847
+ medication,1
3848
+ figureed,1
3849
+ medicore,1
3850
+ medieval,1
3851
+ figured,1
3852
+ fighter,1
3853
+ melbourne,1
3854
+ melt,1
3855
+ mercenary,1
3856
+ fifty,1
3857
+ memorial,1
3858
+ fiction,1
3859
+ fetish,1
3860
+ mentioned,1
3861
+ fest,1
3862
+ meowschwitz,1
3863
+ lamb,1
3864
+ lagostoibadan,1
3865
+ exploding,1
3866
+ independence,1
3867
+ indicates,1
3868
+ indictment,1
3869
+ indigenous,1
3870
+ individual,1
3871
+ individually,1
3872
+ indonesia,1
3873
+ indoors,1
3874
+ indulge,1
3875
+ inequality,1
3876
+ infected,1
3877
+ infide,1
3878
+ infiltrate,1
3879
+ infiltrated,1
3880
+ infiltrating,1
3881
+ infinite,1
3882
+ influence,1
3883
+ influenced,1
3884
+ hanger,1
3885
+ incredible,1
3886
+ handicap,1
3887
+ income,1
3888
+ harvard,1
3889
+ imminent,1
3890
+ impeach,1
3891
+ impervious,1
3892
+ important,1
3893
+ impossible,1
3894
+ haram,1
3895
+ impression,1
3896
+ imprisonment,1
3897
+ happier,1
3898
+ inbox,1
3899
+ happend,1
3900
+ incarceration,1
3901
+ hannity,1
3902
+ incesters,1
3903
+ incineration,1
3904
+ hangover,1
3905
+ ingrained,1
3906
+ inherit,1
3907
+ immigrantswave,1
3908
+ intentionally,1
3909
+ haitian,1
3910
+ interviewer,1
3911
+ intestine,1
3912
+ intolerance,1
3913
+ intolerant,1
3914
+ inturupting,1
3915
+ haile,1
3916
+ invaded,1
3917
+ hai,1
3918
+ hague,1
3919
+ invent,1
3920
+ inverted,1
3921
+ habitat,1
3922
+ habit,1
3923
+ iran,1
3924
+ iraq,1
3925
+ ireland,1
3926
+ hall,1
3927
+ intense,1
3928
+ ink,1
3929
+ hallway,1
3930
+ inmah,1
3931
+ inmate,1
3932
+ inner,1
3933
+ handful,1
3934
+ inquiry,1
3935
+ insensitive,1
3936
+ insisting,1
3937
+ instagram,1
3938
+ handbook,1
3939
+ instigated,1
3940
+ instill,1
3941
+ han,1
3942
+ hammer,1
3943
+ insufficient,1
3944
+ hamid,1
3945
+ insulting,1
3946
+ insurance,1
3947
+ immigrate,1
3948
+ hasmat,1
3949
+ ghost,1
3950
+ horrible,1
3951
+ hosing,1
3952
+ hospital,1
3953
+ host,1
3954
+ hostess,1
3955
+ hijau,1
3956
+ hijacker,1
3957
+ hijacked,1
3958
+ highschool,1
3959
+ hesitation,1
3960
+ howyou,1
3961
+ huge,1
3962
+ hugging,1
3963
+ huh,1
3964
+ hero,1
3965
+ heritage,1
3966
+ humidity,1
3967
+ herding,1
3968
+ hinduism,1
3969
+ hipster,1
3970
+ herd,1
3971
+ horde,1
3972
+ hollow,1
3973
+ hol,1
3974
+ homies,1
3975
+ homo,1
3976
+ hogwarts,1
3977
+ homophobic,1
3978
+ hmm,1
3979
+ hive,1
3980
+ hiv,1
3981
+ honky,1
3982
+ hither,1
3983
+ hood,1
3984
+ histoy,1
3985
+ hookah,1
3986
+ hoors,1
3987
+ hoosier,1
3988
+ hire,1
3989
+ humour,1
3990
+ hentai,1
3991
+ hatching,1
3992
+ heal,1
3993
+ headshot,1
3994
+ headscarf,1
3995
+ headache,1
3996
+ he,1
3997
+ ignored,1
3998
+ iiiiiin,1
3999
+ ilegals,1
4000
+ hazzard,1
4001
+ havoc,1
4002
+ illegally,1
4003
+ hatred,1
4004
+ hated,1
4005
+ imam,1
4006
+ imangine,1
4007
+ imitate,1
4008
+ imitation,1
4009
+ imma,1
4010
+ identify,1
4011
+ id,1
4012
+ helped,1
4013
+ iced,1
4014
+ humpin,1
4015
+ humping,1
4016
+ helen,1
4017
+ heil,1
4018
+ heidi,1
4019
+ hunt,1
4020
+ huntin,1
4021
+ hehehehehe,1
4022
+ hefty,1
4023
+ heeeeaad,1
4024
+ heav,1
4025
+ hush,1
4026
+ hussle,1
4027
+ hustled,1
4028
+ hydrant,1
4029
+ ia,1
4030
+ iaoh,1
4031
+ irish,1
4032
+ irl,1
4033
+ iroc,1
4034
+ kellogs,1
4035
+ kenya,1
4036
+ goverment,1
4037
+ gotcha,1
4038
+ gorgeous,1
4039
+ key,1
4040
+ gordon,1
4041
+ gop,1
4042
+ khaled,1
4043
+ khuuun,1
4044
+ gook,1
4045
+ golf,1
4046
+ golden,1
4047
+ kiddo,1
4048
+ kiiiiiiiiiiiiiiiiiikes,1
4049
+ goin,1
4050
+ goggles,1
4051
+ goatshit,1
4052
+ kenneth,1
4053
+ grabbed,1
4054
+ kilometer,1
4055
+ keller,1
4056
+ jussie,1
4057
+ justice,1
4058
+ justify,1
4059
+ graditude,1
4060
+ k,1
4061
+ kaepernick,1
4062
+ kafir,1
4063
+ kampfert,1
4064
+ kar,1
4065
+ karen,1
4066
+ kate,1
4067
+ katie,1
4068
+ katju,1
4069
+ kavanaugh,1
4070
+ keef,1
4071
+ keel,1
4072
+ grade,1
4073
+ goatshaggers,1
4074
+ kilometre,1
4075
+ habbo,1
4076
+ glock,1
4077
+ ko,1
4078
+ kong,1
4079
+ kongqueesha,1
4080
+ koran,1
4081
+ globalists,1
4082
+ glance,1
4083
+ givs,1
4084
+ ku,1
4085
+ kurd,1
4086
+ kurt,1
4087
+ kush,1
4088
+ kylie,1
4089
+ gingerbread,1
4090
+ lab,1
4091
+ labour,1
4092
+ gim,1
4093
+ laden,1
4094
+ known,1
4095
+ glorified,1
4096
+ kim,1
4097
+ glorious,1
4098
+ goatlivesmatter,1
4099
+ goatfuckers,1
4100
+ kinder,1
4101
+ kindness,1
4102
+ goatfucker,1
4103
+ kingdom,1
4104
+ goal,1
4105
+ gmt,1
4106
+ glue,1
4107
+ klan,1
4108
+ klu,1
4109
+ glub,1
4110
+ glove,1
4111
+ knife,1
4112
+ knight,1
4113
+ gloss,1
4114
+ glory,1
4115
+ junkie,1
4116
+ jungle,1
4117
+ june,1
4118
+ gudako,1
4119
+ israhell,1
4120
+ israhellites,1
4121
+ guck,1
4122
+ italian,1
4123
+ itch,1
4124
+ guarantee,1
4125
+ ja,1
4126
+ grumpy,1
4127
+ jackass,1
4128
+ jacket,1
4129
+ jacking,1
4130
+ jafar,1
4131
+ jail,1
4132
+ grounded,1
4133
+ grope,1
4134
+ jannah,1
4135
+ groove,1
4136
+ israelite,1
4137
+ guide,1
4138
+ graduation,1
4139
+ islamphobe,1
4140
+ ha,1
4141
+ irony,1
4142
+ h,1
4143
+ isalamabad,1
4144
+ isbeing,1
4145
+ gypsy,1
4146
+ gut,1
4147
+ islamaophobia,1
4148
+ islamaphobe,1
4149
+ islamaphobia,1
4150
+ gunpoint,1
4151
+ guinea,1
4152
+ islamistheproblem,1
4153
+ islamization,1
4154
+ islamomopolitan,1
4155
+ islamophobe,1
4156
+ guilty,1
4157
+ groom,1
4158
+ japseyes,1
4159
+ java,1
4160
+ javeon,1
4161
+ johnny,1
4162
+ joined,1
4163
+ grandmother,1
4164
+ joking,1
4165
+ jolie,1
4166
+ jolo,1
4167
+ jon,1
4168
+ jordan,1
4169
+ jovi,1
4170
+ joy,1
4171
+ grandmoth,1
4172
+ judaism,1
4173
+ judged,1
4174
+ judgement,1
4175
+ juggalo,1
4176
+ grandma,1
4177
+ grammar,1
4178
+ grant,1
4179
+ jimmy,1
4180
+ jills,1
4181
+ grenade,1
4182
+ groin,1
4183
+ jayshaun,1
4184
+ grip,1
4185
+ jeong,1
4186
+ jerk,1
4187
+ jerky,1
4188
+ jerry,1
4189
+ gregg,1
4190
+ jihadi,1
4191
+ jewber,1
4192
+ greed,1
4193
+ greater,1
4194
+ jewry,1
4195
+ jewsih,1
4196
+ grave,1
4197
+ ji,1
4198
+ moved,1
4199
+ explodes,1
4200
+ crackhouse,1
4201
+ despite,1
4202
+ potatoe,1
4203
+ potential,1
4204
+ deservee,1
4205
+ pour,1
4206
+ pouting,1
4207
+ desert,1
4208
+ powder,1
4209
+ descent,1
4210
+ powerhouse,1
4211
+ dericious,1
4212
+ ppv,1
4213
+ dept,1
4214
+ practicing,1
4215
+ depression,1
4216
+ depot,1
4217
+ deporting,1
4218
+ pre,1
4219
+ designed,1
4220
+ positivity,1
4221
+ preaching,1
4222
+ positive,1
4223
+ diarrea,1
4224
+ popped,1
4225
+ poppin,1
4226
+ diana,1
4227
+ populate,1
4228
+ dial,1
4229
+ porch,1
4230
+ porki,1
4231
+ porkistan,1
4232
+ porkistani,1
4233
+ devide,1
4234
+ portable,1
4235
+ ported,1
4236
+ device,1
4237
+ portraying,1
4238
+ pose,1
4239
+ destructive,1
4240
+ depiction,1
4241
+ preditor,1
4242
+ diet,1
4243
+ prey,1
4244
+ delusional,1
4245
+ priest,1
4246
+ primate,1
4247
+ delivered,1
4248
+ delicate,1
4249
+ print,1
4250
+ delete,1
4251
+ degeneracy,1
4252
+ pritt,1
4253
+ prize,1
4254
+ definition,1
4255
+ defines,1
4256
+ define,1
4257
+ proclivity,1
4258
+ produce,1
4259
+ production,1
4260
+ profile,1
4261
+ deluxe,1
4262
+ pretending,1
4263
+ denies,1
4264
+ presumably,1
4265
+ preferably,1
4266
+ preference,1
4267
+ prefers,1
4268
+ pregnancy,1
4269
+ denier,1
4270
+ preists,1
4271
+ prejudice,1
4272
+ prematurley,1
4273
+ premier,1
4274
+ prepared,1
4275
+ prepares,1
4276
+ preparing,1
4277
+ demonstrate,1
4278
+ demonic,1
4279
+ demon,1
4280
+ press,1
4281
+ pressley,1
4282
+ dice,1
4283
+ difficult,1
4284
+ personal,1
4285
+ dizzy,1
4286
+ picker,1
4287
+ dividing,1
4288
+ pictured,1
4289
+ divide,1
4290
+ dive,1
4291
+ disturb,1
4292
+ pijama,1
4293
+ pil,1
4294
+ pile,1
4295
+ pill,1
4296
+ pillage,1
4297
+ pillaged,1
4298
+ pillowcase,1
4299
+ pimp,1
4300
+ pimpin,1
4301
+ pin,1
4302
+ distraction,1
4303
+ divorce,1
4304
+ dj,1
4305
+ disrespecting,1
4306
+ physiological,1
4307
+ dogshit,1
4308
+ perverted,1
4309
+ doe,1
4310
+ peta,1
4311
+ petabyte,1
4312
+ pete,1
4313
+ dodged,1
4314
+ pharmacy,1
4315
+ phase,1
4316
+ phenotype,1
4317
+ philadelphia,1
4318
+ doda,1
4319
+ photobomb,1
4320
+ photoshop,1
4321
+ photoshopped,1
4322
+ phrase,1
4323
+ physical,1
4324
+ pipeline,1
4325
+ pissing,1
4326
+ pooped,1
4327
+ poblem,1
4328
+ disagree,1
4329
+ poisoned,1
4330
+ disability,1
4331
+ polar,1
4332
+ pole,1
4333
+ dirt,1
4334
+ polishing,1
4335
+ politcal,1
4336
+ politely,1
4337
+ political,1
4338
+ politically,1
4339
+ dinosaur,1
4340
+ polluted,1
4341
+ digital,1
4342
+ pooh,1
4343
+ digging,1
4344
+ dig,1
4345
+ pocket,1
4346
+ plug,1
4347
+ pit,1
4348
+ pluck,1
4349
+ pitchfork,1
4350
+ pity,1
4351
+ disney,1
4352
+ disguised,1
4353
+ discussion,1
4354
+ discus,1
4355
+ discovers,1
4356
+ discover,1
4357
+ plastic,1
4358
+ platform,1
4359
+ discount,1
4360
+ playboy,1
4361
+ discontent,1
4362
+ disarm,1
4363
+ disagrees,1
4364
+ plenty,1
4365
+ disagreement,1
4366
+ progress,1
4367
+ progressive,1
4368
+ project,1
4369
+ cup,1
4370
+ cumshot,1
4371
+ cummings,1
4372
+ raptor,1
4373
+ cuddle,1
4374
+ cucks,1
4375
+ rat,1
4376
+ ratchet,1
4377
+ cuckholds,1
4378
+ rath,1
4379
+ cuck,1
4380
+ cuban,1
4381
+ rationalize,1
4382
+ crusade,1
4383
+ raysuss,1
4384
+ reaces,1
4385
+ reach,1
4386
+ crude,1
4387
+ raper,1
4388
+ cured,1
4389
+ reacts,1
4390
+ ranger,1
4391
+ dail,1
4392
+ dachshhund,1
4393
+ dach,1
4394
+ rail,1
4395
+ railed,1
4396
+ hollywood,1
4397
+ cutting,1
4398
+ raising,1
4399
+ rally,1
4400
+ customer,1
4401
+ ramit,1
4402
+ ramsay,1
4403
+ ran,1
4404
+ curse,1
4405
+ current,1
4406
+ randy,1
4407
+ curiosity,1
4408
+ reactor,1
4409
+ crowter,1
4410
+ promiscuity,1
4411
+ ree,1
4412
+ refered,1
4413
+ referred,1
4414
+ crass,1
4415
+ refused,1
4416
+ refusing,1
4417
+ regardless,1
4418
+ regen,1
4419
+ regualr,1
4420
+ regular,1
4421
+ rehab,1
4422
+ crakka,1
4423
+ reincarnated,1
4424
+ reinforcement,1
4425
+ reinstated,1
4426
+ rejection,1
4427
+ related,1
4428
+ relationsheep,1
4429
+ reenact,1
4430
+ crawl,1
4431
+ reader,1
4432
+ rectal,1
4433
+ crown,1
4434
+ crossing,1
4435
+ crossbreed,1
4436
+ croatia,1
4437
+ realistically,1
4438
+ critic,1
4439
+ realized,1
4440
+ crispy,1
4441
+ realizing,1
4442
+ crisis,1
4443
+ reap,1
4444
+ cricket,1
4445
+ crew,1
4446
+ recent,1
4447
+ recognise,1
4448
+ creme,1
4449
+ recovery,1
4450
+ radicalized,1
4451
+ radicalize,1
4452
+ radiation,1
4453
+ protection,1
4454
+ protects,1
4455
+ defamation,1
4456
+ protester,1
4457
+ def,1
4458
+ protestors,1
4459
+ proton,1
4460
+ deere,1
4461
+ proudly,1
4462
+ deeper,1
4463
+ proved,1
4464
+ proven,1
4465
+ decoy,1
4466
+ declined,1
4467
+ proxy,1
4468
+ pssst,1
4469
+ psychic,1
4470
+ psycho,1
4471
+ protective,1
4472
+ defeated,1
4473
+ dam,1
4474
+ prostitution,1
4475
+ promiscuous,1
4476
+ promise,1
4477
+ deficient,1
4478
+ promoting,1
4479
+ promotion,1
4480
+ prone,1
4481
+ pronoun,1
4482
+ pronounce,1
4483
+ pronouncing,1
4484
+ defetus,1
4485
+ propaganda,1
4486
+ defender,1
4487
+ property,1
4488
+ prosecuted,1
4489
+ prospective,1
4490
+ prostate,1
4491
+ defenceless,1
4492
+ psychological,1
4493
+ decline,1
4494
+ psychosis,1
4495
+ declare,1
4496
+ dawg,1
4497
+ dawah,1
4498
+ puzzle,1
4499
+ david,1
4500
+ quality,1
4501
+ quarter,1
4502
+ das,1
4503
+ darwin,1
4504
+ questioning,1
4505
+ darkie,1
4506
+ quickly,1
4507
+ quietly,1
4508
+ daring,1
4509
+ danke,1
4510
+ dammit,1
4511
+ racisim,1
4512
+ damit,1
4513
+ daylight,1
4514
+ dc,1
4515
+ deadliest,1
4516
+ december,1
4517
+ puerto,1
4518
+ declaration,1
4519
+ decision,1
4520
+ decieved,1
4521
+ pulling,1
4522
+ pulp,1
4523
+ pulsating,1
4524
+ punishing,1
4525
+ dealer,1
4526
+ puppy,1
4527
+ decade,1
4528
+ pure,1
4529
+ purification,1
4530
+ purifies,1
4531
+ debit,1
4532
+ purse,1
4533
+ doingbigthings,1
4534
+ persecuting,1
4535
+ mow,1
4536
+ niccep,1
4537
+ equality,1
4538
+ envision,1
4539
+ environment,1
4540
+ nig,1
4541
+ nigar,1
4542
+ nigas,1
4543
+ entry,1
4544
+ entrance,1
4545
+ entity,1
4546
+ niglet,1
4547
+ niguana,1
4548
+ nike,1
4549
+ nikker,1
4550
+ nile,1
4551
+ ninja,1
4552
+ nipple,1
4553
+ nipsey,1
4554
+ niccfps,1
4555
+ nibber,1
4556
+ nnies,1
4557
+ eradicate,1
4558
+ nesquick,1
4559
+ nessa,1
4560
+ net,1
4561
+ neurone,1
4562
+ neuter,1
4563
+ neutered,1
4564
+ neutron,1
4565
+ establishes,1
4566
+ neverforget,1
4567
+ establish,1
4568
+ nevermore,1
4569
+ essay,1
4570
+ newborn,1
4571
+ newport,1
4572
+ escaped,1
4573
+ errythang,1
4574
+ erect,1
4575
+ niqqas,1
4576
+ enslaver,1
4577
+ nephson,1
4578
+ nowfag,1
4579
+ nsexual,1
4580
+ nu,1
4581
+ employment,1
4582
+ nuggers,1
4583
+ employee,1
4584
+ emperor,1
4585
+ numbered,1
4586
+ emotional,1
4587
+ nuremberg,1
4588
+ nurse,1
4589
+ nutting,1
4590
+ nyou,1
4591
+ nyt,1
4592
+ oat,1
4593
+ obamacare,1
4594
+ eminem,1
4595
+ objectionable,1
4596
+ nowhere,1
4597
+ november,1
4598
+ nod,1
4599
+ novaky,1
4600
+ enrichment,1
4601
+ enlist,1
4602
+ enjoy,1
4603
+ noose,1
4604
+ nope,1
4605
+ engrish,1
4606
+ normally,1
4607
+ normie,1
4608
+ engine,1
4609
+ norway,1
4610
+ energy,1
4611
+ notably,1
4612
+ nothin,1
4613
+ ending,1
4614
+ encouraging,1
4615
+ encountered,1
4616
+ en,1
4617
+ nerve,1
4618
+ esther,1
4619
+ permissible,1
4620
+ existence,1
4621
+ existed,1
4622
+ murderous,1
4623
+ musalman,1
4624
+ muscle,1
4625
+ mushroom,1
4626
+ music,1
4627
+ musician,1
4628
+ musk,1
4629
+ exis,1
4630
+ muslism,1
4631
+ mussie,1
4632
+ musslamic,1
4633
+ mussy,1
4634
+ exhaust,1
4635
+ mustache,1
4636
+ mutilate,1
4637
+ mutilated,1
4638
+ murderer,1
4639
+ exists,1
4640
+ executed,1
4641
+ mummy,1
4642
+ mowing,1
4643
+ exploder,1
4644
+ mph,1
4645
+ mr,1
4646
+ muddafucka,1
4647
+ explains,1
4648
+ mueller,1
4649
+ mufti,1
4650
+ mugabe,1
4651
+ muh,1
4652
+ experiment,1
4653
+ mulcher,1
4654
+ mullet,1
4655
+ multicultural,1
4656
+ experience,1
4657
+ expelled,1
4658
+ expecting,1
4659
+ myth,1
4660
+ nag,1
4661
+ etch,1
4662
+ ewoks,1
4663
+ ewborn,1
4664
+ nazism,1
4665
+ neanderthal,1
4666
+ everyday,1
4667
+ necessarily,1
4668
+ eventually,1
4669
+ necrophilia,1
4670
+ necrophiliacs,1
4671
+ neeb,1
4672
+ evangelical,1
4673
+ needle,1
4674
+ needlessly,1
4675
+ nef,1
4676
+ negores,1
4677
+ euthanized,1
4678
+ euthanasia,1
4679
+ ethiopia,1
4680
+ ewe,1
4681
+ eww,1
4682
+ nagasaki,1
4683
+ nationalism,1
4684
+ exclusion,1
4685
+ exclaims,1
4686
+ naik,1
4687
+ nail,1
4688
+ nakba,1
4689
+ nalk,1
4690
+ namaz,1
4691
+ excessive,1
4692
+ example,1
4693
+ nana,1
4694
+ narrative,1
4695
+ nasa,1
4696
+ nascar,1
4697
+ nasty,1
4698
+ nat,1
4699
+ nate,1
4700
+ exam,1
4701
+ obo,1
4702
+ obsession,1
4703
+ obviosly,1
4704
+ drone,1
4705
+ dripping,1
4706
+ drinkin,1
4707
+ passing,1
4708
+ passion,1
4709
+ passive,1
4710
+ drill,1
4711
+ pasta,1
4712
+ pastor,1
4713
+ pat,1
4714
+ patch,1
4715
+ path,1
4716
+ pathetic,1
4717
+ drenched,1
4718
+ patricia,1
4719
+ drank,1
4720
+ patriot,1
4721
+ patrol,1
4722
+ paso,1
4723
+ partner,1
4724
+ pavement,1
4725
+ partial,1
4726
+ pancuronium,1
4727
+ dummy,1
4728
+ pandit,1
4729
+ panic,1
4730
+ duke,1
4731
+ dug,1
4732
+ due,1
4733
+ paradise,1
4734
+ paragraph,1
4735
+ parameter,1
4736
+ paraniod,1
4737
+ ducle,1
4738
+ dryer,1
4739
+ drugged,1
4740
+ droppin,1
4741
+ parkinson,1
4742
+ parole,1
4743
+ pauline,1
4744
+ dragged,1
4745
+ emergency,1
4746
+ penalty,1
4747
+ pencil,1
4748
+ dose,1
4749
+ dora,1
4750
+ pension,1
4751
+ peope,1
4752
+ doo,1
4753
+ peoplehave,1
4754
+ pepper,1
4755
+ donor,1
4756
+ percap,1
4757
+ dominican,1
4758
+ perfectly,1
4759
+ perferred,1
4760
+ perhaps,1
4761
+ dolphin,1
4762
+ peripherar,1
4763
+ perk,1
4764
+ penatration,1
4765
+ pen,1
4766
+ paycheck,1
4767
+ peinigger,1
4768
+ payment,1
4769
+ pc,1
4770
+ downtown,1
4771
+ downstairs,1
4772
+ downloading,1
4773
+ peanutbutter,1
4774
+ downloaded,1
4775
+ pedal,1
4776
+ pedofile,1
4777
+ pedophelia,1
4778
+ downing,1
4779
+ doubt,1
4780
+ doubled,1
4781
+ peeking,1
4782
+ peel,1
4783
+ peeling,1
4784
+ peice,1
4785
+ pan,1
4786
+ dump,1
4787
+ dumped,1
4788
+ older,1
4789
+ elderly,1
4790
+ el,1
4791
+ onto,1
4792
+ ooo,1
4793
+ op,1
4794
+ egyptian,1
4795
+ opened,1
4796
+ opener,1
4797
+ eggy,1
4798
+ openly,1
4799
+ operating,1
4800
+ operation,1
4801
+ operative,1
4802
+ opinion,1
4803
+ oppressed,1
4804
+ oppressor,1
4805
+ optician,1
4806
+ omw,1
4807
+ elektrons,1
4808
+ dunked,1
4809
+ elementary,1
4810
+ embracing,1
4811
+ octopus,1
4812
+ odin,1
4813
+ offend,1
4814
+ embrace,1
4815
+ embarassin,1
4816
+ eloped,1
4817
+ elon,1
4818
+ officals,1
4819
+ elizabeth,1
4820
+ eliminated,1
4821
+ elijah,1
4822
+ often,1
4823
+ elf,1
4824
+ ohgodno,1
4825
+ ohhh,1
4826
+ oil,1
4827
+ orange,1
4828
+ orangutan,1
4829
+ eggshell,1
4830
+ efftorts,1
4831
+ overnight,1
4832
+ early,1
4833
+ owing,1
4834
+ eachother,1
4835
+ dysphoria,1
4836
+ owning,1
4837
+ pace,1
4838
+ dyslexic,1
4839
+ package,1
4840
+ pad,1
4841
+ pados,1
4842
+ paedophilia,1
4843
+ pagan,1
4844
+ dyke,1
4845
+ painting,1
4846
+ pair,1
4847
+ pakistan,1
4848
+ earn,1
4849
+ earplug,1
4850
+ easter,1
4851
+ editor,1
4852
+ ordinary,1
4853
+ educates,1
4854
+ orgy,1
4855
+ orientation,1
4856
+ edits,1
4857
+ originally,1
4858
+ orland,1
4859
+ orphan,1
4860
+ eastwood,1
4861
+ osama,1
4862
+ ebull,1
4863
+ ebt,1
4864
+ oust,1
4865
+ outcome,1
4866
+ outdated,1
4867
+ outright,1
4868
+ raining,1
static/data_no_hate.csv ADDED
@@ -0,0 +1,6177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ word,count
2
+ like,375
3
+ people,306
4
+ get,254
5
+ one,199
6
+ make,172
7
+ look,171
8
+ day,167
9
+ time,167
10
+ want,164
11
+ see,163
12
+ go,149
13
+ got,146
14
+ muslim,144
15
+ say,142
16
+ white,142
17
+ black,134
18
+ know,132
19
+ fuck,126
20
+ shit,124
21
+ trump,123
22
+ new,118
23
+ man,116
24
+ kid,111
25
+ think,110
26
+ love,110
27
+ back,105
28
+ u,105
29
+ need,100
30
+ take,99
31
+ girl,98
32
+ ca,97
33
+ life,96
34
+ good,96
35
+ give,95
36
+ year,94
37
+ let,94
38
+ goat,93
39
+ friend,91
40
+ na,90
41
+ said,88
42
+ going,85
43
+ still,83
44
+ right,83
45
+ bitch,80
46
+ never,80
47
+ first,80
48
+ country,79
49
+ come,75
50
+ child,75
51
+ kill,75
52
+ way,75
53
+ keep,74
54
+ home,74
55
+ woman,74
56
+ america,74
57
+ tell,73
58
+ someone,73
59
+ guy,71
60
+ american,70
61
+ stop,69
62
+ told,65
63
+ fucking,65
64
+ happy,64
65
+ gun,63
66
+ put,63
67
+ gon,62
68
+ oh,62
69
+ isi,61
70
+ find,61
71
+ call,61
72
+ obama,60
73
+ thing,60
74
+ stupid,60
75
+ democrat,60
76
+ racist,59
77
+ dishwasher,59
78
+ much,58
79
+ old,58
80
+ everyone,58
81
+ could,57
82
+ mom,57
83
+ really,56
84
+ job,56
85
+ hate,54
86
+ best,54
87
+ problem,53
88
+ as,53
89
+ even,53
90
+ something,53
91
+ better,52
92
+ little,51
93
+ mean,50
94
+ club,49
95
+ boy,49
96
+ school,49
97
+ car,49
98
+ meanwhile,49
99
+ great,48
100
+ wife,48
101
+ baby,48
102
+ strip,47
103
+ men,47
104
+ last,47
105
+ meme,47
106
+ always,46
107
+ dog,46
108
+ eat,46
109
+ left,46
110
+ dick,45
111
+ im,45
112
+ every,44
113
+ wrong,44
114
+ getting,43
115
+ president,43
116
+ free,43
117
+ god,43
118
+ well,43
119
+ today,42
120
+ start,42
121
+ feel,42
122
+ started,41
123
+ please,41
124
+ ever,41
125
+ would,40
126
+ show,40
127
+ another,40
128
+ illegal,40
129
+ post,40
130
+ made,40
131
+ million,39
132
+ birthday,39
133
+ sex,39
134
+ liberal,39
135
+ food,39
136
+ terrorist,39
137
+ gay,38
138
+ forget,38
139
+ bad,38
140
+ cute,38
141
+ feeling,37
142
+ matter,37
143
+ help,36
144
+ ask,36
145
+ play,36
146
+ person,36
147
+ face,36
148
+ hard,36
149
+ turn,35
150
+ omar,35
151
+ bomb,35
152
+ run,35
153
+ fight,35
154
+ anything,35
155
+ trying,35
156
+ fucked,34
157
+ trash,34
158
+ dad,34
159
+ tranny,34
160
+ house,34
161
+ found,33
162
+ hand,33
163
+ ilhan,33
164
+ party,33
165
+ game,33
166
+ wait,33
167
+ live,33
168
+ remember,32
169
+ might,32
170
+ congress,32
171
+ sure,32
172
+ dont,32
173
+ done,32
174
+ gas,31
175
+ nothing,31
176
+ walk,31
177
+ son,31
178
+ smell,31
179
+ hear,31
180
+ talking,31
181
+ peace,31
182
+ away,31
183
+ tax,31
184
+ family,31
185
+ next,30
186
+ brother,30
187
+ believe,30
188
+ yes,30
189
+ world,30
190
+ fun,30
191
+ religion,30
192
+ picture,30
193
+ hey,30
194
+ part,30
195
+ many,30
196
+ work,30
197
+ long,29
198
+ cat,29
199
+ joke,29
200
+ making,29
201
+ coming,29
202
+ pay,29
203
+ everything,29
204
+ hillary,29
205
+ wear,29
206
+ suck,29
207
+ called,29
208
+ already,28
209
+ hit,28
210
+ islam,28
211
+ group,28
212
+ enough,28
213
+ wan,28
214
+ girlfriend,28
215
+ asshole,28
216
+ talk,28
217
+ real,27
218
+ mouth,27
219
+ mexican,27
220
+ color,27
221
+ jew,27
222
+ hitler,27
223
+ beautiful,26
224
+ saying,26
225
+ enemy,26
226
+ monkey,26
227
+ difference,26
228
+ head,26
229
+ money,26
230
+ try,26
231
+ looking,26
232
+ government,26
233
+ asked,25
234
+ crime,25
235
+ used,25
236
+ actually,25
237
+ water,25
238
+ eye,25
239
+ ready,25
240
+ mind,25
241
+ finally,25
242
+ photo,25
243
+ share,25
244
+ pick,25
245
+ must,24
246
+ smile,24
247
+ change,24
248
+ ai,24
249
+ sorry,24
250
+ parent,24
251
+ gave,23
252
+ killed,23
253
+ end,23
254
+ law,23
255
+ send,23
256
+ hot,23
257
+ history,23
258
+ sandwich,23
259
+ big,23
260
+ beat,23
261
+ damn,23
262
+ phone,23
263
+ jewish,23
264
+ war,23
265
+ date,22
266
+ thought,22
267
+ night,22
268
+ crazy,22
269
+ open,22
270
+ okay,22
271
+ use,22
272
+ offended,22
273
+ news,22
274
+ taking,22
275
+ wall,22
276
+ class,22
277
+ tired,22
278
+ mother,22
279
+ welcome,21
280
+ ice,21
281
+ ex,21
282
+ watch,21
283
+ election,21
284
+ went,21
285
+ born,21
286
+ drink,21
287
+ vote,21
288
+ room,21
289
+ laugh,21
290
+ allah,21
291
+ alien,21
292
+ mad,21
293
+ pregnant,21
294
+ clinton,21
295
+ may,21
296
+ around,21
297
+ cop,21
298
+ buy,20
299
+ care,20
300
+ stole,20
301
+ ya,20
302
+ thats,20
303
+ full,20
304
+ red,20
305
+ shoot,20
306
+ race,20
307
+ daughter,20
308
+ fucker,20
309
+ nazi,20
310
+ human,20
311
+ republican,20
312
+ hello,20
313
+ power,20
314
+ name,20
315
+ side,20
316
+ yeah,20
317
+ rape,20
318
+ attack,20
319
+ catch,19
320
+ slave,19
321
+ drive,19
322
+ border,19
323
+ seen,19
324
+ high,19
325
+ immigration,19
326
+ shot,19
327
+ hell,19
328
+ hair,19
329
+ bill,19
330
+ instead,19
331
+ immigrant,19
332
+ without,19
333
+ blow,19
334
+ support,19
335
+ else,19
336
+ understand,19
337
+ leave,19
338
+ public,19
339
+ eating,19
340
+ hope,19
341
+ lady,19
342
+ street,18
343
+ medium,18
344
+ walmart,18
345
+ islamic,18
346
+ camp,18
347
+ jail,18
348
+ police,18
349
+ dude,18
350
+ ball,18
351
+ husband,18
352
+ skin,18
353
+ yo,18
354
+ guess,18
355
+ thinking,18
356
+ killing,18
357
+ funny,18
358
+ cry,18
359
+ agree,18
360
+ shooting,18
361
+ question,18
362
+ die,18
363
+ pretty,17
364
+ africa,17
365
+ future,17
366
+ dark,17
367
+ christian,17
368
+ truck,17
369
+ bring,17
370
+ shut,17
371
+ sister,17
372
+ nation,17
373
+ bacon,17
374
+ culture,17
375
+ donald,17
376
+ moment,17
377
+ lol,17
378
+ asks,17
379
+ neighbor,17
380
+ whole,17
381
+ place,17
382
+ nobody,17
383
+ stand,17
384
+ month,16
385
+ refugee,16
386
+ wearing,16
387
+ idiot,16
388
+ ban,16
389
+ flag,16
390
+ v,16
391
+ hurt,16
392
+ week,16
393
+ came,16
394
+ pet,16
395
+ anymore,16
396
+ kind,16
397
+ jenner,16
398
+ owner,16
399
+ oven,16
400
+ broken,16
401
+ least,16
402
+ father,16
403
+ learn,16
404
+ ugly,16
405
+ vegetable,16
406
+ pudding,16
407
+ african,16
408
+ speak,16
409
+ anyone,16
410
+ supporter,16
411
+ realize,16
412
+ maybe,16
413
+ report,16
414
+ sleep,15
415
+ also,15
416
+ motherfucker,15
417
+ pic,15
418
+ beer,15
419
+ move,15
420
+ behind,15
421
+ rashida,15
422
+ either,15
423
+ pray,15
424
+ gender,15
425
+ sick,15
426
+ clean,15
427
+ happen,15
428
+ reason,15
429
+ drug,15
430
+ drop,15
431
+ nut,15
432
+ since,15
433
+ number,15
434
+ yet,15
435
+ racism,15
436
+ squad,15
437
+ page,15
438
+ cause,15
439
+ illegals,15
440
+ anne,15
441
+ fix,15
442
+ telling,15
443
+ lying,15
444
+ throw,15
445
+ animal,15
446
+ win,15
447
+ porn,15
448
+ lot,15
449
+ two,15
450
+ died,15
451
+ michelle,15
452
+ bro,15
453
+ lie,15
454
+ le,15
455
+ dead,15
456
+ anal,15
457
+ protect,14
458
+ frank,14
459
+ sense,14
460
+ fire,14
461
+ heard,14
462
+ friday,14
463
+ answer,14
464
+ coffee,14
465
+ second,14
466
+ married,14
467
+ pull,14
468
+ jesus,14
469
+ lost,14
470
+ maker,14
471
+ grow,14
472
+ rock,14
473
+ giving,14
474
+ become,14
475
+ death,14
476
+ truth,14
477
+ treat,14
478
+ offensive,14
479
+ fuckin,14
480
+ hour,14
481
+ taste,14
482
+ took,14
483
+ mental,14
484
+ ta,14
485
+ together,14
486
+ ford,14
487
+ cotton,14
488
+ pig,14
489
+ idea,14
490
+ horse,14
491
+ tlaib,14
492
+ past,13
493
+ ape,13
494
+ working,13
495
+ important,13
496
+ summer,13
497
+ control,13
498
+ dry,13
499
+ safe,13
500
+ ok,13
501
+ met,13
502
+ soldier,13
503
+ trust,13
504
+ piss,13
505
+ later,13
506
+ clear,13
507
+ asian,13
508
+ sound,13
509
+ outside,13
510
+ claim,13
511
+ chicken,13
512
+ step,13
513
+ humor,13
514
+ fish,13
515
+ suicide,13
516
+ secret,13
517
+ teacher,13
518
+ fresh,13
519
+ wanted,13
520
+ destroy,13
521
+ single,13
522
+ alone,13
523
+ tit,13
524
+ wish,13
525
+ different,13
526
+ security,12
527
+ point,12
528
+ foot,12
529
+ usa,12
530
+ within,12
531
+ holocaust,12
532
+ follow,12
533
+ christmas,12
534
+ arrest,12
535
+ breaking,12
536
+ lose,12
537
+ favorite,12
538
+ bar,12
539
+ cut,12
540
+ turkey,12
541
+ equal,12
542
+ heaven,12
543
+ hungry,12
544
+ knew,12
545
+ hold,12
546
+ choice,12
547
+ story,12
548
+ slavery,12
549
+ member,12
550
+ evil,12
551
+ indian,12
552
+ wing,12
553
+ half,12
554
+ dream,12
555
+ pride,12
556
+ neighborhood,12
557
+ stay,12
558
+ dinner,12
559
+ cant,12
560
+ cake,12
561
+ waiting,12
562
+ allowed,12
563
+ terrorism,12
564
+ inside,12
565
+ fighting,12
566
+ stuff,12
567
+ cock,12
568
+ greatest,12
569
+ test,12
570
+ prison,11
571
+ special,11
572
+ paid,11
573
+ young,11
574
+ brain,11
575
+ piece,11
576
+ polish,11
577
+ female,11
578
+ everybody,11
579
+ potato,11
580
+ built,11
581
+ using,11
582
+ build,11
583
+ choose,11
584
+ front,11
585
+ bruce,11
586
+ prayer,11
587
+ strong,11
588
+ citizen,11
589
+ chinese,11
590
+ arrested,11
591
+ email,11
592
+ belong,11
593
+ putting,11
594
+ weekend,11
595
+ watching,11
596
+ kitchen,11
597
+ serious,11
598
+ hide,11
599
+ remove,11
600
+ blind,11
601
+ mueller,11
602
+ sea,11
603
+ hater,11
604
+ size,11
605
+ simple,11
606
+ master,11
607
+ bag,11
608
+ sad,11
609
+ snort,11
610
+ listen,11
611
+ light,11
612
+ trouble,11
613
+ military,11
614
+ officer,11
615
+ minute,11
616
+ office,11
617
+ line,11
618
+ daddy,11
619
+ road,11
620
+ load,11
621
+ lord,11
622
+ deal,11
623
+ heart,11
624
+ cancer,10
625
+ starving,10
626
+ fit,10
627
+ everywhere,10
628
+ diaper,10
629
+ meet,10
630
+ wedding,10
631
+ team,10
632
+ chocolate,10
633
+ awesome,10
634
+ mark,10
635
+ linda,10
636
+ letter,10
637
+ chick,10
638
+ card,10
639
+ russian,10
640
+ land,10
641
+ three,10
642
+ sale,10
643
+ thank,10
644
+ rice,10
645
+ criminal,10
646
+ apparently,10
647
+ star,10
648
+ juice,10
649
+ result,10
650
+ mexico,10
651
+ hooker,10
652
+ abuse,10
653
+ blue,10
654
+ tyrone,10
655
+ notice,10
656
+ body,10
657
+ driver,10
658
+ ur,10
659
+ sun,10
660
+ violence,10
661
+ speech,10
662
+ drunk,10
663
+ rapist,10
664
+ billion,10
665
+ gorilla,10
666
+ probably,10
667
+ dumb,10
668
+ voter,10
669
+ check,10
670
+ goal,10
671
+ sometimes,10
672
+ smart,10
673
+ sarsour,10
674
+ peaceful,10
675
+ sitting,10
676
+ celebrate,10
677
+ hole,10
678
+ morning,10
679
+ dollar,10
680
+ victim,10
681
+ hi,10
682
+ realized,10
683
+ four,10
684
+ silent,10
685
+ video,10
686
+ top,10
687
+ happens,10
688
+ door,10
689
+ turned,9
690
+ dress,9
691
+ deserve,9
692
+ student,9
693
+ suddenly,9
694
+ created,9
695
+ broke,9
696
+ cent,9
697
+ close,9
698
+ cool,9
699
+ disorder,9
700
+ chance,9
701
+ twice,9
702
+ amazing,9
703
+ german,9
704
+ living,9
705
+ almost,9
706
+ somebody,9
707
+ blame,9
708
+ alive,9
709
+ soon,9
710
+ blood,9
711
+ voted,9
712
+ music,9
713
+ rare,9
714
+ weapon,9
715
+ return,9
716
+ funeral,9
717
+ normal,9
718
+ mosque,9
719
+ holding,9
720
+ offer,9
721
+ middle,9
722
+ respect,9
723
+ walking,9
724
+ march,9
725
+ small,9
726
+ smoke,9
727
+ rich,9
728
+ milk,9
729
+ mohammed,9
730
+ ride,9
731
+ mistake,9
732
+ grandma,9
733
+ sold,9
734
+ gone,9
735
+ hijab,9
736
+ push,9
737
+ nice,9
738
+ idk,9
739
+ panty,9
740
+ adult,9
741
+ acting,9
742
+ box,9
743
+ state,9
744
+ king,9
745
+ join,9
746
+ folk,9
747
+ finger,9
748
+ playing,9
749
+ attention,9
750
+ whatever,9
751
+ fb,9
752
+ proof,9
753
+ farm,9
754
+ poke,9
755
+ baked,9
756
+ store,9
757
+ brings,9
758
+ service,9
759
+ punch,9
760
+ act,9
761
+ rid,8
762
+ savage,8
763
+ wind,8
764
+ scientist,8
765
+ issue,8
766
+ democratic,8
767
+ case,8
768
+ ring,8
769
+ kenyan,8
770
+ kiss,8
771
+ literally,8
772
+ arm,8
773
+ army,8
774
+ russia,8
775
+ level,8
776
+ dear,8
777
+ lesbian,8
778
+ leader,8
779
+ asking,8
780
+ lunch,8
781
+ straight,8
782
+ uncle,8
783
+ abortion,8
784
+ city,8
785
+ cheating,8
786
+ paper,8
787
+ park,8
788
+ pedophile,8
789
+ christchurch,8
790
+ chemical,8
791
+ true,8
792
+ pissed,8
793
+ chevy,8
794
+ pizza,8
795
+ zealand,8
796
+ tv,8
797
+ pool,8
798
+ outta,8
799
+ ordered,8
800
+ marriage,8
801
+ self,8
802
+ mess,8
803
+ cost,8
804
+ missing,8
805
+ record,8
806
+ unarmed,8
807
+ cook,8
808
+ century,8
809
+ tried,8
810
+ read,8
811
+ commit,8
812
+ ray,8
813
+ cold,8
814
+ nahir,8
815
+ naked,8
816
+ interview,8
817
+ sign,8
818
+ selfie,8
819
+ hurry,8
820
+ fluffy,8
821
+ shooter,8
822
+ short,8
823
+ homeland,8
824
+ bos,8
825
+ hiding,8
826
+ hero,8
827
+ begin,8
828
+ forgotten,8
829
+ hang,8
830
+ book,8
831
+ fraud,8
832
+ building,8
833
+ drinking,8
834
+ spending,8
835
+ bullshit,8
836
+ driving,8
837
+ bike,8
838
+ speed,8
839
+ weird,8
840
+ gang,8
841
+ birth,8
842
+ bit,8
843
+ golf,8
844
+ bus,8
845
+ solution,8
846
+ glass,8
847
+ starting,8
848
+ domestic,8
849
+ stick,8
850
+ bringing,8
851
+ steal,8
852
+ excuse,8
853
+ break,8
854
+ excited,8
855
+ dirty,8
856
+ sexual,8
857
+ innocent,8
858
+ expected,8
859
+ weed,8
860
+ including,8
861
+ sell,8
862
+ ignorant,8
863
+ imagine,8
864
+ rate,7
865
+ plan,7
866
+ radical,7
867
+ cocaine,7
868
+ space,7
869
+ poor,7
870
+ fan,7
871
+ fear,7
872
+ stopped,7
873
+ rat,7
874
+ fbi,7
875
+ trans,7
876
+ sunday,7
877
+ enjoying,7
878
+ fishing,7
879
+ entire,7
880
+ sport,7
881
+ paying,7
882
+ stealing,7
883
+ force,7
884
+ forgot,7
885
+ overcome,7
886
+ commie,7
887
+ pee,7
888
+ period,7
889
+ sucking,7
890
+ fine,7
891
+ equipment,7
892
+ protesting,7
893
+ form,7
894
+ order,7
895
+ orange,7
896
+ picked,7
897
+ older,7
898
+ soul,7
899
+ socialist,7
900
+ gift,7
901
+ longer,7
902
+ though,7
903
+ doctor,7
904
+ hump,7
905
+ lemon,7
906
+ leg,7
907
+ lead,7
908
+ rule,7
909
+ laundry,7
910
+ late,7
911
+ disgusting,7
912
+ safety,7
913
+ knock,7
914
+ disease,7
915
+ decide,7
916
+ thanks,7
917
+ target,7
918
+ delicious,7
919
+ kick,7
920
+ seriously,7
921
+ terrible,7
922
+ sent,7
923
+ insult,7
924
+ internet,7
925
+ lonely,7
926
+ doesnt,7
927
+ common,7
928
+ low,7
929
+ community,7
930
+ elected,7
931
+ education,7
932
+ duty,7
933
+ mohammad,7
934
+ moderate,7
935
+ sweet,7
936
+ snake,7
937
+ snack,7
938
+ green,7
939
+ remind,7
940
+ required,7
941
+ marrying,7
942
+ cowboy,7
943
+ slow,7
944
+ till,7
945
+ ham,7
946
+ rest,7
947
+ credit,7
948
+ retarded,7
949
+ swim,7
950
+ happened,7
951
+ harder,7
952
+ demand,7
953
+ fly,7
954
+ york,7
955
+ bathroom,7
956
+ whats,7
957
+ candy,7
958
+ view,7
959
+ average,7
960
+ brown,7
961
+ ancestor,7
962
+ accept,7
963
+ add,7
964
+ alcohol,7
965
+ celebrating,7
966
+ accident,7
967
+ candle,7
968
+ wave,7
969
+ bowl,7
970
+ accidentally,7
971
+ arrived,7
972
+ bear,7
973
+ burning,7
974
+ belief,7
975
+ became,7
976
+ yall,7
977
+ challenge,7
978
+ wipe,7
979
+ beach,7
980
+ specie,6
981
+ magic,6
982
+ mix,6
983
+ blowjob,6
984
+ restaurant,6
985
+ miss,6
986
+ bomber,6
987
+ mine,6
988
+ explain,6
989
+ crisis,6
990
+ male,6
991
+ threat,6
992
+ reminder,6
993
+ expect,6
994
+ mass,6
995
+ math,6
996
+ cross,6
997
+ angry,6
998
+ mein,6
999
+ cum,6
1000
+ threatened,6
1001
+ bob,6
1002
+ cunt,6
1003
+ stronger,6
1004
+ cup,6
1005
+ wo,6
1006
+ rebuilt,6
1007
+ mixed,6
1008
+ forced,6
1009
+ nevermind,6
1010
+ aid,6
1011
+ racing,6
1012
+ touch,6
1013
+ wwii,6
1014
+ squirter,6
1015
+ ago,6
1016
+ north,6
1017
+ quick,6
1018
+ condom,6
1019
+ town,6
1020
+ nuclear,6
1021
+ pussy,6
1022
+ pushing,6
1023
+ afraid,6
1024
+ raise,6
1025
+ foreign,6
1026
+ mohamed,6
1027
+ center,6
1028
+ monday,6
1029
+ tire,6
1030
+ movie,6
1031
+ count,6
1032
+ allegiance,6
1033
+ frame,6
1034
+ muddin,6
1035
+ corrupt,6
1036
+ toilet,6
1037
+ former,6
1038
+ al,6
1039
+ raped,6
1040
+ national,6
1041
+ natural,6
1042
+ air,6
1043
+ gary,6
1044
+ politics,6
1045
+ dating,6
1046
+ halloween,6
1047
+ identify,6
1048
+ bank,6
1049
+ shawarma,6
1050
+ image,6
1051
+ shave,6
1052
+ impeach,6
1053
+ implant,6
1054
+ shame,6
1055
+ improvise,6
1056
+ wake,6
1057
+ sexy,6
1058
+ several,6
1059
+ taco,6
1060
+ engine,6
1061
+ divide,6
1062
+ hunt,6
1063
+ shoe,6
1064
+ dawg,6
1065
+ honor,6
1066
+ healthcare,6
1067
+ economy,6
1068
+ bed,6
1069
+ business,6
1070
+ silk,6
1071
+ early,6
1072
+ beard,6
1073
+ wasted,6
1074
+ shower,6
1075
+ hoe,6
1076
+ holiday,6
1077
+ shoulder,6
1078
+ butt,6
1079
+ shop,6
1080
+ bastard,6
1081
+ intelligence,6
1082
+ bigger,6
1083
+ west,6
1084
+ snowflake,6
1085
+ running,6
1086
+ european,6
1087
+ assault,6
1088
+ glad,6
1089
+ given,6
1090
+ degree,6
1091
+ everyday,6
1092
+ blew,6
1093
+ deep,6
1094
+ lit,6
1095
+ style,6
1096
+ evolution,6
1097
+ april,6
1098
+ vagina,6
1099
+ except,6
1100
+ ate,6
1101
+ ten,6
1102
+ voting,6
1103
+ socialism,6
1104
+ joe,6
1105
+ john,6
1106
+ judge,6
1107
+ jump,6
1108
+ devil,6
1109
+ grab,6
1110
+ sand,6
1111
+ knowing,6
1112
+ kinda,6
1113
+ escape,6
1114
+ goon,6
1115
+ teeth,6
1116
+ attacking,6
1117
+ deportable,6
1118
+ tragedy,6
1119
+ burn,6
1120
+ bow,6
1121
+ oil,6
1122
+ chip,6
1123
+ tree,6
1124
+ chewbacca,6
1125
+ bout,6
1126
+ type,6
1127
+ stoned,6
1128
+ planned,6
1129
+ tuesday,6
1130
+ transgender,6
1131
+ felt,6
1132
+ perfect,6
1133
+ stolen,6
1134
+ church,6
1135
+ adapt,6
1136
+ others,6
1137
+ accepted,6
1138
+ chase,6
1139
+ yr,6
1140
+ pill,6
1141
+ chime,6
1142
+ poverty,6
1143
+ pant,6
1144
+ promised,6
1145
+ privilege,6
1146
+ chill,6
1147
+ promise,6
1148
+ chamber,6
1149
+ figure,6
1150
+ whore,5
1151
+ blast,5
1152
+ meat,5
1153
+ language,5
1154
+ passed,5
1155
+ lab,5
1156
+ gold,5
1157
+ patience,5
1158
+ yelling,5
1159
+ golden,5
1160
+ bird,5
1161
+ knowledge,5
1162
+ removed,5
1163
+ ethiopian,5
1164
+ praying,5
1165
+ pew,5
1166
+ suffering,5
1167
+ unless,5
1168
+ candidate,5
1169
+ meth,5
1170
+ pile,5
1171
+ june,5
1172
+ expensive,5
1173
+ wheel,5
1174
+ leaving,5
1175
+ auschwitz,5
1176
+ finished,5
1177
+ meeting,5
1178
+ kkk,5
1179
+ salty,5
1180
+ spell,5
1181
+ patient,5
1182
+ letting,5
1183
+ vitiligo,5
1184
+ accused,5
1185
+ feed,5
1186
+ clothes,5
1187
+ peanut,5
1188
+ dat,5
1189
+ lyin,5
1190
+ study,5
1191
+ martin,5
1192
+ exist,5
1193
+ hat,5
1194
+ wine,5
1195
+ makeup,5
1196
+ yesterday,5
1197
+ responsible,5
1198
+ anybody,5
1199
+ loses,5
1200
+ generation,5
1201
+ london,5
1202
+ genocide,5
1203
+ lock,5
1204
+ powder,5
1205
+ decade,5
1206
+ germany,5
1207
+ arguing,5
1208
+ five,5
1209
+ liquor,5
1210
+ role,5
1211
+ pelosi,5
1212
+ often,5
1213
+ rose,5
1214
+ boyfriend,5
1215
+ princess,5
1216
+ rise,5
1217
+ yard,5
1218
+ july,5
1219
+ earth,5
1220
+ pop,5
1221
+ bell,5
1222
+ swear,5
1223
+ belt,5
1224
+ watermelon,5
1225
+ homeless,5
1226
+ wax,5
1227
+ pork,5
1228
+ pledge,5
1229
+ dropped,5
1230
+ bat,5
1231
+ choke,5
1232
+ wayment,5
1233
+ horrible,5
1234
+ hammer,5
1235
+ barn,5
1236
+ hunting,5
1237
+ earn,5
1238
+ east,5
1239
+ didnt,5
1240
+ poop,5
1241
+ he,5
1242
+ sir,5
1243
+ political,5
1244
+ hardest,5
1245
+ surprise,5
1246
+ sink,5
1247
+ field,5
1248
+ happiness,5
1249
+ hebrew,5
1250
+ sin,5
1251
+ bread,5
1252
+ simply,5
1253
+ eats,5
1254
+ supposed,5
1255
+ washed,5
1256
+ easy,5
1257
+ em,5
1258
+ played,5
1259
+ barack,5
1260
+ banned,5
1261
+ illness,5
1262
+ selling,5
1263
+ seek,5
1264
+ tall,5
1265
+ seeing,5
1266
+ investigation,5
1267
+ iq,5
1268
+ iran,5
1269
+ biggest,5
1270
+ disability,5
1271
+ bull,5
1272
+ jamal,5
1273
+ japanese,5
1274
+ jaw,5
1275
+ throwing,5
1276
+ scared,5
1277
+ pound,5
1278
+ sober,5
1279
+ senate,5
1280
+ grocery,5
1281
+ enjoy,5
1282
+ plane,5
1283
+ plastic,5
1284
+ breath,5
1285
+ empty,5
1286
+ caitlyn,5
1287
+ christ,5
1288
+ shape,5
1289
+ impress,5
1290
+ shade,5
1291
+ district,5
1292
+ guilty,5
1293
+ dnc,5
1294
+ tag,5
1295
+ ineligible,5
1296
+ infiltrated,5
1297
+ diversity,5
1298
+ smoking,5
1299
+ snow,5
1300
+ somewhere,5
1301
+ floor,5
1302
+ bought,5
1303
+ mock,5
1304
+ cream,5
1305
+ range,5
1306
+ rap,5
1307
+ native,5
1308
+ flavor,5
1309
+ reach,5
1310
+ wonder,5
1311
+ morgan,5
1312
+ wtf,5
1313
+ foil,5
1314
+ caught,5
1315
+ cousin,5
1316
+ extra,5
1317
+ missed,5
1318
+ pulled,5
1319
+ omg,5
1320
+ confident,5
1321
+ quickly,5
1322
+ freedom,5
1323
+ actual,5
1324
+ needed,5
1325
+ crap,5
1326
+ noise,5
1327
+ proud,5
1328
+ british,5
1329
+ recipe,5
1330
+ comment,5
1331
+ congratulation,5
1332
+ fool,5
1333
+ titty,5
1334
+ fashion,5
1335
+ conservative,5
1336
+ confused,5
1337
+ chain,5
1338
+ added,5
1339
+ mississippi,5
1340
+ november,5
1341
+ coverage,5
1342
+ strength,5
1343
+ constitution,5
1344
+ alabama,5
1345
+ forward,5
1346
+ offends,5
1347
+ afford,5
1348
+ protection,5
1349
+ fast,5
1350
+ un,5
1351
+ fluid,5
1352
+ cow,5
1353
+ rain,5
1354
+ facebook,5
1355
+ reich,5
1356
+ across,5
1357
+ prostitute,5
1358
+ musslamic,5
1359
+ along,5
1360
+ completely,5
1361
+ ah,5
1362
+ train,5
1363
+ cooker,5
1364
+ agent,5
1365
+ agenda,5
1366
+ raw,5
1367
+ stare,5
1368
+ ahead,5
1369
+ friendly,5
1370
+ tonight,5
1371
+ rally,5
1372
+ dodge,4
1373
+ india,4
1374
+ set,4
1375
+ dna,4
1376
+ proving,4
1377
+ calling,4
1378
+ standing,4
1379
+ english,4
1380
+ admire,4
1381
+ smiling,4
1382
+ table,4
1383
+ contest,4
1384
+ pit,4
1385
+ raised,4
1386
+ grown,4
1387
+ ground,4
1388
+ continue,4
1389
+ vibe,4
1390
+ positive,4
1391
+ introduce,4
1392
+ inherited,4
1393
+ pot,4
1394
+ grass,4
1395
+ snap,4
1396
+ booty,4
1397
+ grande,4
1398
+ japan,4
1399
+ cooky,4
1400
+ nail,4
1401
+ science,4
1402
+ uber,4
1403
+ grammar,4
1404
+ epstein,4
1405
+ soap,4
1406
+ pink,4
1407
+ canada,4
1408
+ scarecrow,4
1409
+ automatic,4
1410
+ boob,4
1411
+ israel,4
1412
+ tape,4
1413
+ weight,4
1414
+ season,4
1415
+ sending,4
1416
+ bully,4
1417
+ ran,4
1418
+ bachelor,4
1419
+ baboon,4
1420
+ b,4
1421
+ netflix,4
1422
+ invasion,4
1423
+ forever,4
1424
+ greeting,4
1425
+ involved,4
1426
+ protest,4
1427
+ fat,4
1428
+ cheer,4
1429
+ tank,4
1430
+ nasa,4
1431
+ seat,4
1432
+ shake,4
1433
+ wizard,4
1434
+ planet,4
1435
+ hmmm,4
1436
+ age,4
1437
+ easily,4
1438
+ easier,4
1439
+ silence,4
1440
+ chicago,4
1441
+ beauty,4
1442
+ beast,4
1443
+ puppy,4
1444
+ highest,4
1445
+ e,4
1446
+ fetus,4
1447
+ dying,4
1448
+ swallow,4
1449
+ bust,4
1450
+ hill,4
1451
+ slap,4
1452
+ bc,4
1453
+ buried,4
1454
+ hanging,4
1455
+ putin,4
1456
+ helped,4
1457
+ trailer,4
1458
+ traffic,4
1459
+ warm,4
1460
+ harvey,4
1461
+ skidmark,4
1462
+ politician,4
1463
+ skip,4
1464
+ sit,4
1465
+ company,4
1466
+ beep,4
1467
+ bee,4
1468
+ farming,4
1469
+ offend,4
1470
+ october,4
1471
+ ocean,4
1472
+ simulator,4
1473
+ trade,4
1474
+ slam,4
1475
+ policy,4
1476
+ similar,4
1477
+ film,4
1478
+ hobby,4
1479
+ bet,4
1480
+ shovel,4
1481
+ barely,4
1482
+ haircut,4
1483
+ tough,4
1484
+ barbecue,4
1485
+ ignorance,4
1486
+ sheep,4
1487
+ dose,4
1488
+ slip,4
1489
+ able,4
1490
+ slipped,4
1491
+ opening,4
1492
+ chosen,4
1493
+ ahmed,4
1494
+ haha,4
1495
+ slut,4
1496
+ gym,4
1497
+ baltimore,4
1498
+ total,4
1499
+ stone,4
1500
+ consider,4
1501
+ chef,4
1502
+ abiding,4
1503
+ quote,4
1504
+ pope,4
1505
+ holy,4
1506
+ homicide,4
1507
+ homie,4
1508
+ handjobs,4
1509
+ football,4
1510
+ butthurt,4
1511
+ honey,4
1512
+ chelsea,4
1513
+ swimming,4
1514
+ shitty,4
1515
+ quran,4
1516
+ ship,4
1517
+ dreaming,4
1518
+ weak,4
1519
+ handed,4
1520
+ bartender,4
1521
+ r,4
1522
+ ill,4
1523
+ suicidal,4
1524
+ rather,4
1525
+ price,4
1526
+ theft,4
1527
+ fixed,4
1528
+ careful,4
1529
+ loved,4
1530
+ apple,4
1531
+ clock,4
1532
+ loyalty,4
1533
+ bloody,4
1534
+ lucky,4
1535
+ uk,4
1536
+ proper,4
1537
+ explosion,4
1538
+ amen,4
1539
+ apology,4
1540
+ blowing,4
1541
+ tight,4
1542
+ restroom,4
1543
+ tie,4
1544
+ wonderful,4
1545
+ yep,4
1546
+ soup,4
1547
+ bombing,4
1548
+ mmmm,4
1549
+ arent,4
1550
+ rohingya,4
1551
+ freeman,4
1552
+ list,4
1553
+ ariana,4
1554
+ spot,4
1555
+ argument,4
1556
+ thanksgiving,4
1557
+ visiting,4
1558
+ tribe,4
1559
+ account,4
1560
+ pretend,4
1561
+ crack,4
1562
+ george,4
1563
+ teach,4
1564
+ local,4
1565
+ moral,4
1566
+ debate,4
1567
+ cracker,4
1568
+ logic,4
1569
+ mood,4
1570
+ anyway,4
1571
+ virgin,4
1572
+ tiny,4
1573
+ spend,4
1574
+ yell,4
1575
+ passenger,4
1576
+ fruit,4
1577
+ cringe,4
1578
+ profile,4
1579
+ cult,4
1580
+ acid,4
1581
+ cuddle,4
1582
+ released,4
1583
+ action,4
1584
+ valentine,4
1585
+ crush,4
1586
+ partner,4
1587
+ mentally,4
1588
+ message,4
1589
+ midget,4
1590
+ crossing,4
1591
+ angel,4
1592
+ crop,4
1593
+ michael,4
1594
+ medicine,4
1595
+ friendship,4
1596
+ responsibility,4
1597
+ anti,4
1598
+ speaking,4
1599
+ fridge,4
1600
+ mlk,4
1601
+ treated,4
1602
+ market,4
1603
+ research,4
1604
+ cart,4
1605
+ marry,4
1606
+ winter,4
1607
+ require,4
1608
+ expecting,4
1609
+ anthony,4
1610
+ refuse,4
1611
+ masturbate,4
1612
+ casey,4
1613
+ patriot,4
1614
+ treasure,4
1615
+ flat,4
1616
+ minor,4
1617
+ amused,4
1618
+ armed,4
1619
+ decent,4
1620
+ romania,4
1621
+ precious,4
1622
+ boner,4
1623
+ practice,4
1624
+ stir,4
1625
+ escaping,4
1626
+ knee,4
1627
+ depression,4
1628
+ toast,4
1629
+ muhammed,4
1630
+ fox,4
1631
+ whenever,4
1632
+ collusion,4
1633
+ charge,4
1634
+ classic,4
1635
+ spreading,4
1636
+ l,4
1637
+ college,4
1638
+ fell,4
1639
+ lane,4
1640
+ kim,4
1641
+ wheelchair,4
1642
+ voice,4
1643
+ justin,4
1644
+ diary,4
1645
+ rating,4
1646
+ muscle,4
1647
+ toe,4
1648
+ saving,4
1649
+ justice,4
1650
+ save,4
1651
+ powerful,4
1652
+ sugar,4
1653
+ fought,4
1654
+ absolutely,4
1655
+ f,4
1656
+ civil,4
1657
+ key,4
1658
+ destruction,4
1659
+ suffer,4
1660
+ society,4
1661
+ destroyed,4
1662
+ term,4
1663
+ korea,4
1664
+ specific,4
1665
+ blessing,4
1666
+ lgbtq,4
1667
+ cover,4
1668
+ lawn,4
1669
+ texas,4
1670
+ defend,4
1671
+ presidency,4
1672
+ text,4
1673
+ bleach,4
1674
+ mountain,4
1675
+ legally,4
1676
+ event,4
1677
+ trip,4
1678
+ learned,4
1679
+ accomplish,4
1680
+ evidence,4
1681
+ sock,3
1682
+ grave,3
1683
+ goverment,3
1684
+ bother,3
1685
+ squirrel,3
1686
+ sore,3
1687
+ ginger,3
1688
+ bottle,3
1689
+ grand,3
1690
+ station,3
1691
+ spinner,3
1692
+ walked,3
1693
+ song,3
1694
+ behavior,3
1695
+ flush,3
1696
+ gettin,3
1697
+ hahaha,3
1698
+ fu,3
1699
+ harmful,3
1700
+ fitness,3
1701
+ soccer,3
1702
+ grabbed,3
1703
+ harambe,3
1704
+ stephen,3
1705
+ smarter,3
1706
+ spy,3
1707
+ board,3
1708
+ stamp,3
1709
+ goatshit,3
1710
+ french,3
1711
+ brazile,3
1712
+ bend,3
1713
+ global,3
1714
+ handjob,3
1715
+ finest,3
1716
+ spastic,3
1717
+ frankly,3
1718
+ follower,3
1719
+ gluten,3
1720
+ span,3
1721
+ freak,3
1722
+ garbage,3
1723
+ veteran,3
1724
+ garden,3
1725
+ blocked,3
1726
+ south,3
1727
+ forest,3
1728
+ steak,3
1729
+ stair,3
1730
+ brand,3
1731
+ goin,3
1732
+ gallows,3
1733
+ happier,3
1734
+ block,3
1735
+ biden,3
1736
+ stepped,3
1737
+ status,3
1738
+ flower,3
1739
+ bottom,3
1740
+ wallet,3
1741
+ google,3
1742
+ bored,3
1743
+ grenade,3
1744
+ filled,3
1745
+ handful,3
1746
+ grew,3
1747
+ bra,3
1748
+ goodyear,3
1749
+ gene,3
1750
+ fixing,3
1751
+ saggin,3
1752
+ hating,3
1753
+ aint,3
1754
+ ammo,3
1755
+ momma,3
1756
+ wore,3
1757
+ monopoly,3
1758
+ moon,3
1759
+ alright,3
1760
+ mostly,3
1761
+ reality,3
1762
+ moving,3
1763
+ mowing,3
1764
+ mph,3
1765
+ mr,3
1766
+ alike,3
1767
+ reading,3
1768
+ alexandria,3
1769
+ worse,3
1770
+ mum,3
1771
+ murder,3
1772
+ murdered,3
1773
+ murderer,3
1774
+ mustache,3
1775
+ worst,3
1776
+ myth,3
1777
+ rapper,3
1778
+ nap,3
1779
+ airport,3
1780
+ neck,3
1781
+ minority,3
1782
+ woke,3
1783
+ regular,3
1784
+ resident,3
1785
+ luther,3
1786
+ mac,3
1787
+ rev,3
1788
+ returning,3
1789
+ maga,3
1790
+ magazine,3
1791
+ retard,3
1792
+ window,3
1793
+ anywhere,3
1794
+ manbun,3
1795
+ manual,3
1796
+ anxiety,3
1797
+ winner,3
1798
+ mile,3
1799
+ representative,3
1800
+ ant,3
1801
+ meal,3
1802
+ annoying,3
1803
+ meathead,3
1804
+ medical,3
1805
+ ankle,3
1806
+ release,3
1807
+ relax,3
1808
+ messed,3
1809
+ messenger,3
1810
+ migrant,3
1811
+ negative,3
1812
+ neighbour,3
1813
+ luck,3
1814
+ nein,3
1815
+ prize,3
1816
+ yellow,3
1817
+ patriotic,3
1818
+ prevent,3
1819
+ pedal,3
1820
+ press,3
1821
+ penny,3
1822
+ present,3
1823
+ prepared,3
1824
+ per,3
1825
+ perfectly,3
1826
+ personal,3
1827
+ photoshop,3
1828
+ youth,3
1829
+ pinko,3
1830
+ position,3
1831
+ ze,3
1832
+ posing,3
1833
+ plant,3
1834
+ popular,3
1835
+ popcorn,3
1836
+ po,3
1837
+ pocket,3
1838
+ poland,3
1839
+ zone,3
1840
+ zoo,3
1841
+ zuckerberg,3
1842
+ pro,3
1843
+ project,3
1844
+ pancreatic,3
1845
+ purchase,3
1846
+ neither,3
1847
+ non,3
1848
+ quite,3
1849
+ noose,3
1850
+ nose,3
1851
+ notification,3
1852
+ x,3
1853
+ queen,3
1854
+ nuke,3
1855
+ obvious,3
1856
+ official,3
1857
+ pure,3
1858
+ af,3
1859
+ properly,3
1860
+ onion,3
1861
+ adopted,3
1862
+ pug,3
1863
+ puff,3
1864
+ option,3
1865
+ provide,3
1866
+ adding,3
1867
+ overheats,3
1868
+ overthink,3
1869
+ pack,3
1870
+ adam,3
1871
+ painting,3
1872
+ rib,3
1873
+ wilson,3
1874
+ six,3
1875
+ jeffrey,3
1876
+ band,3
1877
+ sharia,3
1878
+ impeached,3
1879
+ improved,3
1880
+ shall,3
1881
+ inch,3
1882
+ sh,3
1883
+ increase,3
1884
+ sexbomb,3
1885
+ indictment,3
1886
+ setting,3
1887
+ infiltrate,3
1888
+ influence,3
1889
+ information,3
1890
+ separate,3
1891
+ backwards,3
1892
+ insurance,3
1893
+ invade,3
1894
+ invention,3
1895
+ invite,3
1896
+ iraq,3
1897
+ seatbelt,3
1898
+ isnt,3
1899
+ wet,3
1900
+ jackson,3
1901
+ screaming,3
1902
+ james,3
1903
+ shark,3
1904
+ sharpton,3
1905
+ imma,3
1906
+ shy,3
1907
+ situation,3
1908
+ warning,3
1909
+ health,3
1910
+ healthy,3
1911
+ heat,3
1912
+ beef,3
1913
+ singing,3
1914
+ bedroom,3
1915
+ wash,3
1916
+ hemorrhoid,3
1917
+ washington,3
1918
+ sicced,3
1919
+ showing,3
1920
+ illegally,3
1921
+ hitting,3
1922
+ shout,3
1923
+ shopping,3
1924
+ shirt,3
1925
+ shine,3
1926
+ hug,3
1927
+ huge,3
1928
+ shes,3
1929
+ hung,3
1930
+ hungerstruck,3
1931
+ shelf,3
1932
+ ii,3
1933
+ avoid,3
1934
+ jerky,3
1935
+ lover,3
1936
+ schiff,3
1937
+ whoever,3
1938
+ rubbery,3
1939
+ rub,3
1940
+ ash,3
1941
+ whose,3
1942
+ lesson,3
1943
+ arthur,3
1944
+ art,3
1945
+ license,3
1946
+ lifestyle,3
1947
+ roof,3
1948
+ liking,3
1949
+ lil,3
1950
+ limit,3
1951
+ argue,3
1952
+ lived,3
1953
+ lmao,3
1954
+ roast,3
1955
+ area,3
1956
+ river,3
1957
+ riot,3
1958
+ arab,3
1959
+ rigged,3
1960
+ loss,3
1961
+ willie,3
1962
+ loud,3
1963
+ ridiculous,3
1964
+ ruled,3
1965
+ laughing,3
1966
+ runner,3
1967
+ august,3
1968
+ jewsy,3
1969
+ jizz,3
1970
+ jr,3
1971
+ saw,3
1972
+ saved,3
1973
+ jussie,3
1974
+ k,3
1975
+ kavanaugh,3
1976
+ keeper,3
1977
+ kept,3
1978
+ kfc,3
1979
+ kicked,3
1980
+ sanctuary,3
1981
+ assume,3
1982
+ sammich,3
1983
+ attitude,3
1984
+ kitten,3
1985
+ whip,3
1986
+ known,3
1987
+ fifth,3
1988
+ krispies,3
1989
+ saddle,3
1990
+ la,3
1991
+ lack,3
1992
+ whitaker,3
1993
+ large,3
1994
+ fifty,3
1995
+ twin,3
1996
+ stevie,3
1997
+ exit,3
1998
+ tampon,3
1999
+ dish,3
2000
+ camel,3
2001
+ taken,3
2002
+ distance,3
2003
+ diverse,3
2004
+ tail,3
2005
+ sytem,3
2006
+ calculator,3
2007
+ donated,3
2008
+ syrian,3
2009
+ donna,3
2010
+ dope,3
2011
+ double,3
2012
+ doubt,3
2013
+ switch,3
2014
+ swing,3
2015
+ dirt,3
2016
+ direction,3
2017
+ tattoo,3
2018
+ deserves,3
2019
+ defund,3
2020
+ deleted,3
2021
+ capital,3
2022
+ terror,3
2023
+ dem,3
2024
+ united,3
2025
+ department,3
2026
+ cannabis,3
2027
+ camping,3
2028
+ determined,3
2029
+ tear,3
2030
+ teaching,3
2031
+ dickhead,3
2032
+ canadian,3
2033
+ dig,3
2034
+ digging,3
2035
+ draw,3
2036
+ c,3
2037
+ dressed,3
2038
+ buddy,3
2039
+ super,3
2040
+ bunch,3
2041
+ sunblock,3
2042
+ england,3
2043
+ bullying,3
2044
+ bullet,3
2045
+ enlist,3
2046
+ escaped,3
2047
+ elizabeth,3
2048
+ estate,3
2049
+ europe,3
2050
+ evolved,3
2051
+ brought,3
2052
+ stuck,3
2053
+ exemption,3
2054
+ exercise,3
2055
+ burka,3
2056
+ elect,3
2057
+ upset,3
2058
+ dump,3
2059
+ buying,3
2060
+ butthole,3
2061
+ butter,3
2062
+ dryer,3
2063
+ busy,3
2064
+ due,3
2065
+ dumbass,3
2066
+ swallowed,3
2067
+ burnt,3
2068
+ eachother,3
2069
+ suspect,3
2070
+ ear,3
2071
+ survivor,3
2072
+ easter,3
2073
+ edition,3
2074
+ egg,3
2075
+ captain,3
2076
+ deer,3
2077
+ decision,3
2078
+ compare,3
2079
+ transphobic,3
2080
+ collect,3
2081
+ colorized,3
2082
+ traitor,3
2083
+ commandment,3
2084
+ commercial,3
2085
+ commitment,3
2086
+ traditional,3
2087
+ coke,3
2088
+ complain,3
2089
+ complete,3
2090
+ compliment,3
2091
+ computer,3
2092
+ con,3
2093
+ concentrate,3
2094
+ concentration,3
2095
+ collapse,3
2096
+ champion,3
2097
+ concert,3
2098
+ trynna,3
2099
+ twenty,3
2100
+ tweet,3
2101
+ chillin,3
2102
+ twitter,3
2103
+ chloroform,3
2104
+ chew,3
2105
+ turd,3
2106
+ trudeau,3
2107
+ treason,3
2108
+ troop,3
2109
+ uh,3
2110
+ cleaned,3
2111
+ triggered,3
2112
+ trick,3
2113
+ changed,3
2114
+ ultimate,3
2115
+ toy,3
2116
+ confirmed,3
2117
+ decided,3
2118
+ curry,3
2119
+ threw,3
2120
+ crunch,3
2121
+ cube,3
2122
+ threesome,3
2123
+ cash,3
2124
+ cure,3
2125
+ curious,3
2126
+ thousand,3
2127
+ criticizing,3
2128
+ customer,3
2129
+ cutting,3
2130
+ thirsty,3
2131
+ dance,3
2132
+ dancing,3
2133
+ dare,3
2134
+ caravan,3
2135
+ throat,3
2136
+ crematorium,3
2137
+ conjoined,3
2138
+ coolant,3
2139
+ consent,3
2140
+ constant,3
2141
+ contact,3
2142
+ convention,3
2143
+ ton,3
2144
+ tomorrow,3
2145
+ convicted,3
2146
+ tolerance,3
2147
+ unclean,3
2148
+ copy,3
2149
+ correct,3
2150
+ couch,3
2151
+ caused,3
2152
+ couple,3
2153
+ til,3
2154
+ create,3
2155
+ struggle,3
2156
+ bead,3
2157
+ federal,3
2158
+ fall,3
2159
+ van,3
2160
+ strategy,3
2161
+ bright,3
2162
+ bride,3
2163
+ famous,3
2164
+ breed,3
2165
+ vegan,3
2166
+ stranger,3
2167
+ exploded,3
2168
+ briefcase,3
2169
+ feature,3
2170
+ britain,3
2171
+ fence,3
2172
+ feminist,3
2173
+ condemning,2
2174
+ tournament,2
2175
+ device,2
2176
+ noodle,2
2177
+ nonsense,2
2178
+ satan,2
2179
+ quit,2
2180
+ kanye,2
2181
+ certain,2
2182
+ karen,2
2183
+ detroit,2
2184
+ fisting,2
2185
+ australian,2
2186
+ puzzle,2
2187
+ diabetes,2
2188
+ keeping,2
2189
+ connecting,2
2190
+ keller,2
2191
+ nod,2
2192
+ nobel,2
2193
+ kenya,2
2194
+ verse,2
2195
+ technician,2
2196
+ sandy,2
2197
+ kevin,2
2198
+ nile,2
2199
+ destroying,2
2200
+ jerry,2
2201
+ confusing,2
2202
+ jury,2
2203
+ aux,2
2204
+ note,2
2205
+ condition,2
2206
+ difficult,2
2207
+ taught,2
2208
+ squirted,2
2209
+ automatically,2
2210
+ jointly,2
2211
+ joking,2
2212
+ jolo,2
2213
+ confederate,2
2214
+ josh,2
2215
+ condemn,2
2216
+ journalist,2
2217
+ dildo,2
2218
+ dial,2
2219
+ cancelled,2
2220
+ quicker,2
2221
+ statue,2
2222
+ stock,2
2223
+ jewelry,2
2224
+ juicy,2
2225
+ kg,2
2226
+ conformist,2
2227
+ jumper,2
2228
+ jumping,2
2229
+ norris,2
2230
+ dialed,2
2231
+ norway,2
2232
+ dessert,2
2233
+ nike,2
2234
+ demonstration,2
2235
+ sack,2
2236
+ whistle,2
2237
+ lamp,2
2238
+ sacred,2
2239
+ cereal,2
2240
+ contradicts,2
2241
+ ladder,2
2242
+ ku,2
2243
+ dems,2
2244
+ tool,2
2245
+ labor,2
2246
+ kylie,2
2247
+ deny,2
2248
+ atomic,2
2249
+ negotiate,2
2250
+ tongued,2
2251
+ needy,2
2252
+ ramen,2
2253
+ tone,2
2254
+ controlling,2
2255
+ controversial,2
2256
+ rushed,2
2257
+ rush,2
2258
+ largest,2
2259
+ lash,2
2260
+ random,2
2261
+ randomly,2
2262
+ ncaa,2
2263
+ democracy,2
2264
+ terribly,2
2265
+ nbc,2
2266
+ kung,2
2267
+ stable,2
2268
+ wheelbarrow,2
2269
+ borrow,2
2270
+ derogatory,2
2271
+ kitty,2
2272
+ teenage,2
2273
+ kissing,2
2274
+ samuel,2
2275
+ attract,2
2276
+ constantly,2
2277
+ torture,2
2278
+ design,2
2279
+ designed,2
2280
+ desk,2
2281
+ considering,2
2282
+ kidding,2
2283
+ stitch,2
2284
+ klan,2
2285
+ klux,2
2286
+ teenager,2
2287
+ newly,2
2288
+ salt,2
2289
+ newest,2
2290
+ rage,2
2291
+ whipped,2
2292
+ television,2
2293
+ cannibalism,2
2294
+ salad,2
2295
+ write,2
2296
+ kong,2
2297
+ consume,2
2298
+ whiskey,2
2299
+ brennan,2
2300
+ attached,2
2301
+ forcing,2
2302
+ landmine,2
2303
+ jerk,2
2304
+ seperately,2
2305
+ yea,2
2306
+ weighs,2
2307
+ sensitive,2
2308
+ faggot,2
2309
+ sentence,2
2310
+ separately,2
2311
+ weighing,2
2312
+ serving,2
2313
+ inner,2
2314
+ weigh,2
2315
+ comfortable,2
2316
+ oral,2
2317
+ admit,2
2318
+ distracted,2
2319
+ senior,2
2320
+ instructor,2
2321
+ weiner,2
2322
+ disney,2
2323
+ weinstein,2
2324
+ senator,2
2325
+ command,2
2326
+ puke,2
2327
+ adolf,2
2328
+ oops,2
2329
+ adopt,2
2330
+ disliked,2
2331
+ talked,2
2332
+ trained,2
2333
+ babysit,2
2334
+ finna,2
2335
+ adorable,2
2336
+ psst,2
2337
+ fellow,2
2338
+ puto,2
2339
+ doj,2
2340
+ california,2
2341
+ otherwise,2
2342
+ income,2
2343
+ baking,2
2344
+ doggy,2
2345
+ address,2
2346
+ inbox,2
2347
+ comey,2
2348
+ doll,2
2349
+ sham,2
2350
+ outlaw,2
2351
+ chair,2
2352
+ protein,2
2353
+ impossible,2
2354
+ bake,2
2355
+ documentary,2
2356
+ orphan,2
2357
+ ornament,2
2358
+ bail,2
2359
+ original,2
2360
+ individual,2
2361
+ orgasm,2
2362
+ divorced,2
2363
+ sever,2
2364
+ prove,2
2365
+ proved,2
2366
+ settle,2
2367
+ dividing,2
2368
+ infested,2
2369
+ divider,2
2370
+ fact,2
2371
+ seizure,2
2372
+ seized,2
2373
+ punishment,2
2374
+ awake,2
2375
+ jackass,2
2376
+ stirring,2
2377
+ obviously,2
2378
+ j,2
2379
+ purple,2
2380
+ firefighter,2
2381
+ disabled,2
2382
+ punk,2
2383
+ seal,2
2384
+ afghanistan,2
2385
+ offending,2
2386
+ competition,2
2387
+ disagree,2
2388
+ firearm,2
2389
+ camper,2
2390
+ purse,2
2391
+ scream,2
2392
+ squirt,2
2393
+ obstacle,2
2394
+ obscene,2
2395
+ tractor,2
2396
+ january,2
2397
+ object,2
2398
+ obey,2
2399
+ pushed,2
2400
+ obamacare,2
2401
+ jealous,2
2402
+ brace,2
2403
+ jee,2
2404
+ firework,2
2405
+ navy,2
2406
+ offered,2
2407
+ brake,2
2408
+ tap,2
2409
+ ay,2
2410
+ vampire,2
2411
+ seem,2
2412
+ seeking,2
2413
+ advantage,2
2414
+ invader,2
2415
+ invading,2
2416
+ disgust,2
2417
+ advice,2
2418
+ invented,2
2419
+ commited,2
2420
+ discovered,2
2421
+ welfare,2
2422
+ investigating,2
2423
+ tambourine,2
2424
+ commits,2
2425
+ irs,2
2426
+ invited,2
2427
+ forehead,2
2428
+ tan,2
2429
+ disconnect,2
2430
+ disarmed,2
2431
+ oi,2
2432
+ committed,2
2433
+ trail,2
2434
+ certainly,2
2435
+ companion,2
2436
+ ironing,2
2437
+ irony,2
2438
+ disarm,2
2439
+ irritate,2
2440
+ xanax,2
2441
+ unfortunately,2
2442
+ laughed,2
2443
+ manager,2
2444
+ bound,2
2445
+ responds,2
2446
+ uncircumcised,2
2447
+ recording,2
2448
+ manditory,2
2449
+ mandatory,2
2450
+ management,2
2451
+ represents,2
2452
+ modern,2
2453
+ mamma,2
2454
+ mama,2
2455
+ amendment,2
2456
+ tiger,2
2457
+ dan,2
2458
+ creates,2
2459
+ dahmer,2
2460
+ thomas,2
2461
+ ticket,2
2462
+ reduce,2
2463
+ carry,2
2464
+ referring,2
2465
+ winning,2
2466
+ daca,2
2467
+ da,2
2468
+ rescue,2
2469
+ martini,2
2470
+ marty,2
2471
+ mistreated,2
2472
+ mashed,2
2473
+ thot,2
2474
+ cuz,2
2475
+ farmer,2
2476
+ dandruff,2
2477
+ moister,2
2478
+ carlos,2
2479
+ loyal,2
2480
+ dated,2
2481
+ carl,2
2482
+ appearance,2
2483
+ therapy,2
2484
+ lure,2
2485
+ lust,2
2486
+ appear,2
2487
+ cracking,2
2488
+ lynching,2
2489
+ lyon,2
2490
+ alternative,2
2491
+ monster,2
2492
+ received,2
2493
+ worked,2
2494
+ majority,2
2495
+ appeal,2
2496
+ uncensored,2
2497
+ crash,2
2498
+ dante,2
2499
+ brick,2
2500
+ word,2
2501
+ thier,2
2502
+ wood,2
2503
+ apologize,2
2504
+ molest,2
2505
+ danish,2
2506
+ reckon,2
2507
+ apocalypse,2
2508
+ dangerously,2
2509
+ mission,2
2510
+ cartoon,2
2511
+ lower,2
2512
+ rely,2
2513
+ anime,2
2514
+ cuck,2
2515
+ melted,2
2516
+ anjem,2
2517
+ melon,2
2518
+ religious,2
2519
+ remeber,2
2520
+ masturbating,2
2521
+ undermine,2
2522
+ starbucks,2
2523
+ uncooked,2
2524
+ regularly,2
2525
+ anniversary,2
2526
+ remembered,2
2527
+ stomach,2
2528
+ relaxed,2
2529
+ thug,2
2530
+ memory,2
2531
+ microwave,2
2532
+ mengele,2
2533
+ relative,2
2534
+ staring,2
2535
+ fault,2
2536
+ relationship,2
2537
+ michigan,2
2538
+ fleeing,2
2539
+ flight,2
2540
+ throne,2
2541
+ anger,2
2542
+ meter,2
2543
+ cast,2
2544
+ crew,2
2545
+ anaconda,2
2546
+ med,2
2547
+ mayo,2
2548
+ creep,2
2549
+ reported,2
2550
+ custom,2
2551
+ reply,2
2552
+ material,2
2553
+ miracle,2
2554
+ creeping,2
2555
+ reparation,2
2556
+ matt,2
2557
+ creepy,2
2558
+ answering,2
2559
+ mature,2
2560
+ rep,2
2561
+ maxine,2
2562
+ mayor,2
2563
+ threaten,2
2564
+ mazie,2
2565
+ mccain,2
2566
+ mcconnell,2
2567
+ regardless,2
2568
+ mcdonalds,2
2569
+ minded,2
2570
+ amsterdam,2
2571
+ remover,2
2572
+ thread,2
2573
+ meant,2
2574
+ wiretap,2
2575
+ current,2
2576
+ faster,2
2577
+ curiosity,2
2578
+ lowkey,2
2579
+ tinder,2
2580
+ laughter,2
2581
+ lgbt,2
2582
+ rotissified,2
2583
+ february,2
2584
+ flame,2
2585
+ rough,2
2586
+ liar,2
2587
+ mustang,2
2588
+ defile,2
2589
+ deez,2
2590
+ artery,2
2591
+ definitely,2
2592
+ celebration,2
2593
+ worth,2
2594
+ round,2
2595
+ length,2
2596
+ cord,2
2597
+ libtards,2
2598
+ testing,2
2599
+ lick,2
2600
+ aldi,2
2601
+ celebrates,2
2602
+ lied,2
2603
+ corner,2
2604
+ defends,2
2605
+ lifetime,2
2606
+ lift,2
2607
+ murderous,2
2608
+ arrives,2
2609
+ defending,2
2610
+ arresting,2
2611
+ liked,2
2612
+ murdering,2
2613
+ lemonade,2
2614
+ albanian,2
2615
+ lem,2
2616
+ tolerated,2
2617
+ territory,2
2618
+ system,2
2619
+ nativity,2
2620
+ fkn,2
2621
+ convinced,2
2622
+ lazy,2
2623
+ lb,2
2624
+ assad,2
2625
+ ass,2
2626
+ nasty,2
2627
+ rude,2
2628
+ raping,2
2629
+ leaf,2
2630
+ rubber,2
2631
+ nancy,2
2632
+ route,2
2633
+ learning,2
2634
+ cooking,2
2635
+ wow,2
2636
+ akana,2
2637
+ lebanon,2
2638
+ cell,2
2639
+ leeroy,2
2640
+ fed,2
2641
+ leftist,2
2642
+ leftover,2
2643
+ tolerate,2
2644
+ legacy,2
2645
+ legal,2
2646
+ nagger,2
2647
+ defeated,2
2648
+ cornfield,2
2649
+ appliance,2
2650
+ wildfire,2
2651
+ tip,2
2652
+ worn,2
2653
+ deaf,2
2654
+ cared,2
2655
+ looked,2
2656
+ allergic,2
2657
+ moved,2
2658
+ texting,2
2659
+ dealer,2
2660
+ archeologist,2
2661
+ brett,2
2662
+ rinse,2
2663
+ cardio,2
2664
+ debt,2
2665
+ mouse,2
2666
+ coward,2
2667
+ allow,2
2668
+ motorcross,2
2669
+ loser,2
2670
+ realizing,2
2671
+ losing,2
2672
+ de,2
2673
+ dc,2
2674
+ almighty,2
2675
+ almond,2
2676
+ caucasian,2
2677
+ daycare,2
2678
+ moses,2
2679
+ theme,2
2680
+ ridden,2
2681
+ moron,2
2682
+ locate,2
2683
+ thawb,2
2684
+ loaf,2
2685
+ rod,2
2686
+ celebrated,2
2687
+ deeper,2
2688
+ wiener,2
2689
+ tf,2
2690
+ razor,2
2691
+ rolling,2
2692
+ rollin,2
2693
+ roll,2
2694
+ multiple,2
2695
+ tfw,2
2696
+ multiculturalism,2
2697
+ roger,2
2698
+ lipstick,2
2699
+ rode,2
2700
+ rocket,2
2701
+ wiggle,2
2702
+ lisa,2
2703
+ wig,2
2704
+ muhammad,2
2705
+ captured,2
2706
+ robert,2
2707
+ littering,2
2708
+ declaration,2
2709
+ vatican,2
2710
+ livestock,2
2711
+ deciding,2
2712
+ cosby,2
2713
+ cd,2
2714
+ worried,2
2715
+ realise,2
2716
+ shaped,2
2717
+ selfies,2
2718
+ addiction,2
2719
+ haggle,2
2720
+ smash,2
2721
+ gunman,2
2722
+ pervert,2
2723
+ waking,2
2724
+ smaller,2
2725
+ encouraging,2
2726
+ wale,2
2727
+ classy,2
2728
+ smack,2
2729
+ sunscreen,2
2730
+ slowly,2
2731
+ troll,2
2732
+ hack,2
2733
+ pregnancy,2
2734
+ spouse,2
2735
+ hamster,2
2736
+ employee,2
2737
+ hahahaha,2
2738
+ accidently,2
2739
+ walker,2
2740
+ perk,2
2741
+ trojan,2
2742
+ halal,2
2743
+ filter,2
2744
+ final,2
2745
+ cleaner,2
2746
+ benghazi,2
2747
+ peopple,2
2748
+ hamburger,2
2749
+ hamid,2
2750
+ preference,2
2751
+ prefer,2
2752
+ gum,2
2753
+ bun,2
2754
+ practicing,2
2755
+ enriching,2
2756
+ piano,2
2757
+ praise,2
2758
+ phrase,2
2759
+ youre,2
2760
+ smoochies,2
2761
+ expression,2
2762
+ grey,2
2763
+ smollett,2
2764
+ acceptance,2
2765
+ groin,2
2766
+ charlie,2
2767
+ clapper,2
2768
+ smoked,2
2769
+ gross,2
2770
+ engaged,2
2771
+ growing,2
2772
+ bicycle,2
2773
+ charles,2
2774
+ smite,2
2775
+ sunburnt,2
2776
+ bible,2
2777
+ guard,2
2778
+ sticker,2
2779
+ petty,2
2780
+ petting,2
2781
+ guest,2
2782
+ predominantly,2
2783
+ emo,2
2784
+ benefit,2
2785
+ gravity,2
2786
+ sip,2
2787
+ peasant,2
2788
+ clitoris,2
2789
+ hawking,2
2790
+ elder,2
2791
+ hay,2
2792
+ el,2
2793
+ warms,2
2794
+ trend,2
2795
+ yoga,2
2796
+ freckle,2
2797
+ warns,2
2798
+ heading,2
2799
+ siri,2
2800
+ eid,2
2801
+ surgery,2
2802
+ character,2
2803
+ egyptian,2
2804
+ spray,2
2805
+ warrant,2
2806
+ hearing,2
2807
+ effect,2
2808
+ priceless,2
2809
+ heavily,2
2810
+ primary,2
2811
+ surround,2
2812
+ clothing,2
2813
+ height,2
2814
+ warrior,2
2815
+ priority,2
2816
+ paul,2
2817
+ skeleton,2
2818
+ burned,2
2819
+ hated,2
2820
+ channel,2
2821
+ handcuff,2
2822
+ presented,2
2823
+ emission,2
2824
+ preserve,2
2825
+ emergency,2
2826
+ handle,2
2827
+ embrace,2
2828
+ walrus,2
2829
+ chaos,2
2830
+ slapped,2
2831
+ supporting,2
2832
+ believing,2
2833
+ slander,2
2834
+ user,2
2835
+ eloped,2
2836
+ suppressor,2
2837
+ freed,2
2838
+ skydiving,2
2839
+ belgium,2
2840
+ according,2
2841
+ elf,2
2842
+ skittle,2
2843
+ trial,2
2844
+ elevator,2
2845
+ clint,2
2846
+ harvest,2
2847
+ yolo,2
2848
+ electrician,2
2849
+ electoral,2
2850
+ academy,2
2851
+ enter,2
2852
+ survive,2
2853
+ chopping,2
2854
+ spank,2
2855
+ gangster,2
2856
+ executed,2
2857
+ pleasant,2
2858
+ filed,2
2859
+ pornhub,2
2860
+ blowin,2
2861
+ excitement,2
2862
+ gather,2
2863
+ gathered,2
2864
+ blocking,2
2865
+ player,2
2866
+ source,2
2867
+ exchange,2
2868
+ portrait,2
2869
+ everytime,2
2870
+ example,2
2871
+ portraying,2
2872
+ plate,2
2873
+ exactly,2
2874
+ choudary,2
2875
+ blm,2
2876
+ soros,2
2877
+ pose,2
2878
+ gentleman,2
2879
+ stupidest,2
2880
+ spook,2
2881
+ stupidity,2
2882
+ chris,2
2883
+ brunch,2
2884
+ explained,2
2885
+ chocolatey,2
2886
+ steroid,2
2887
+ gamer,2
2888
+ chickin,2
2889
+ frustrating,2
2890
+ fry,2
2891
+ experiment,2
2892
+ fighter,2
2893
+ splendid,2
2894
+ tweeted,2
2895
+ fidget,2
2896
+ experience,2
2897
+ pooped,2
2898
+ spent,2
2899
+ spelled,2
2900
+ boil,2
2901
+ fullscreen,2
2902
+ abdul,2
2903
+ funded,2
2904
+ china,2
2905
+ violating,2
2906
+ boating,2
2907
+ chlamydia,2
2908
+ violent,2
2909
+ frog,2
2910
+ violet,2
2911
+ g,2
2912
+ exi,2
2913
+ plug,2
2914
+ population,2
2915
+ porch,2
2916
+ plot,2
2917
+ vacuum,2
2918
+ brutally,2
2919
+ bigly,2
2920
+ era,2
2921
+ pipe,2
2922
+ pinyata,2
2923
+ solid,2
2924
+ cinco,2
2925
+ checking,2
2926
+ binary,2
2927
+ bin,2
2928
+ pouring,2
2929
+ sucker,2
2930
+ stressed,2
2931
+ trusting,2
2932
+ vw,2
2933
+ circumstance,2
2934
+ social,2
2935
+ buffering,2
2936
+ everyrody,2
2937
+ piggy,2
2938
+ grade,2
2939
+ graduate,2
2940
+ episode,2
2941
+ chased,2
2942
+ bug,2
2943
+ pie,2
2944
+ ppl,2
2945
+ bikers,2
2946
+ picking,2
2947
+ grandpa,2
2948
+ ck,2
2949
+ entitled,2
2950
+ bigot,2
2951
+ potential,2
2952
+ successful,2
2953
+ bite,2
2954
+ string,2
2955
+ vaccination,2
2956
+ vaccinate,2
2957
+ sometime,2
2958
+ bless,2
2959
+ vacation,2
2960
+ chromosome,2
2961
+ plain,2
2962
+ blasting,2
2963
+ girth,2
2964
+ somehow,2
2965
+ vlad,2
2966
+ plague,2
2967
+ chuck,2
2968
+ zakk,2
2969
+ vladimir,2
2970
+ possible,2
2971
+ aboard,2
2972
+ gloss,2
2973
+ glow,2
2974
+ poster,2
2975
+ gnomesaying,2
2976
+ fill,2
2977
+ posting,2
2978
+ blacker,2
2979
+ tryin,2
2980
+ subway,2
2981
+ goddamn,2
2982
+ yup,2
2983
+ volkswagen,2
2984
+ patty,2
2985
+ suppose,2
2986
+ methed,2
2987
+ swore,2
2988
+ sheen,2
2989
+ hiring,2
2990
+ hirono,2
2991
+ spring,2
2992
+ hispanic,2
2993
+ symbol,2
2994
+ humper,2
2995
+ coast,2
2996
+ hooded,2
2997
+ hoodie,2
2998
+ historical,2
2999
+ owen,2
3000
+ bass,2
3001
+ activity,2
3002
+ honky,2
3003
+ sheet,2
3004
+ fortune,2
3005
+ bb,2
3006
+ hire,2
3007
+ dorothy,2
3008
+ batman,2
3009
+ travel,2
3010
+ pandit,2
3011
+ donut,2
3012
+ dust,2
3013
+ pacman,2
3014
+ pronoun,2
3015
+ shaved,2
3016
+ weave,2
3017
+ package,2
3018
+ overthinking,2
3019
+ hippie,2
3020
+ weather,2
3021
+ hook,2
3022
+ doorknob,2
3023
+ hindu,2
3024
+ barry,2
3025
+ owe,2
3026
+ paso,2
3027
+ victimizes,2
3028
+ drone,2
3029
+ dumped,2
3030
+ basketball,2
3031
+ watering,2
3032
+ coco,2
3033
+ bathing,2
3034
+ downer,2
3035
+ parachute,2
3036
+ hypocrite,2
3037
+ parade,2
3038
+ active,2
3039
+ shotgun,2
3040
+ eyebrow,2
3041
+ dozen,2
3042
+ hussein,2
3043
+ homies,2
3044
+ paris,2
3045
+ down,2
3046
+ douchebag,2
3047
+ progressive,2
3048
+ ultimately,2
3049
+ hush,2
3050
+ homosexual,2
3051
+ produce,2
3052
+ barbaric,2
3053
+ dumbest,2
3054
+ sheik,2
3055
+ doubled,2
3056
+ identity,2
3057
+ owes,2
3058
+ sheriff,2
3059
+ champ,2
3060
+ dummy,2
3061
+ showed,2
3062
+ prosecute,2
3063
+ honest,2
3064
+ hoax,2
3065
+ fragile,2
3066
+ fortunate,2
3067
+ us,2
3068
+ id,2
3069
+ oxygen,2
3070
+ duke,2
3071
+ honestly,2
3072
+ website,2
3073
+ durant,2
3074
+ dy,2
3075
+ basic,2
3076
+ hotline,2
3077
+ eastern,2
3078
+ collector,2
3079
+ bone,2
3080
+ host,2
3081
+ extremist,2
3082
+ finding,2
3083
+ property,2
3084
+ patriarchy,2
3085
+ herro,2
3086
+ treasonous,2
3087
+ washing,2
3088
+ hilarious,2
3089
+ overnight,2
3090
+ heroin,2
3091
+ signal,2
3092
+ colour,2
3093
+ basically,2
3094
+ eastwood,2
3095
+ helping,2
3096
+ patrick,2
3097
+ survives,2
3098
+ ebola,2
3099
+ impeachment,2
3100
+ bush,2
3101
+ paint,2
3102
+ housing,2
3103
+ helmet,2
3104
+ household,2
3105
+ based,2
3106
+ upper,2
3107
+ clown,2
3108
+ shield,2
3109
+ columbus,2
3110
+ impaler,2
3111
+ donegan,2
3112
+ hould,2
3113
+ sharing,2
3114
+ prophet,2
3115
+ upon,2
3116
+ oyster,2
3117
+ cnn,2
3118
+ wasnt,2
3119
+ highly,2
3120
+ imam,2
3121
+ passionate,2
3122
+ private,2
3123
+ suspended,2
3124
+ eagle,2
3125
+ pancake,2
3126
+ fingered,2
3127
+ shatner,2
3128
+ sighted,2
3129
+ pados,2
3130
+ felon,2
3131
+ waste,2
3132
+ protected,2
3133
+ synagogue,2
3134
+ hugging,2
3135
+ pakistani,2
3136
+ prisoner,2
3137
+ syndrome,2
3138
+ hiking,2
3139
+ pasture,2
3140
+ drawer,2
3141
+ proposed,1
3142
+ recorded,1
3143
+ timeline,1
3144
+ pun,1
3145
+ transformation,1
3146
+ tide,1
3147
+ timmy,1
3148
+ rebuild,1
3149
+ prospective,1
3150
+ tile,1
3151
+ tin,1
3152
+ prosecuted,1
3153
+ ye,1
3154
+ throwback,1
3155
+ trait,1
3156
+ positivity,1
3157
+ posted,1
3158
+ umm,1
3159
+ umsunu,1
3160
+ tube,1
3161
+ zakir,1
3162
+ potatoe,1
3163
+ yawn,1
3164
+ recognise,1
3165
+ yuuuge,1
3166
+ reconstruction,1
3167
+ recent,1
3168
+ propriety,1
3169
+ tilt,1
3170
+ recieve,1
3171
+ punished,1
3172
+ wondering,1
3173
+ tightens,1
3174
+ transexual,1
3175
+ recall,1
3176
+ recital,1
3177
+ yummy,1
3178
+ transfer,1
3179
+ steam,1
3180
+ unbreakable,1
3181
+ womenwholovewine,1
3182
+ pubg,1
3183
+ protestors,1
3184
+ protested,1
3185
+ protester,1
3186
+ rehab,1
3187
+ turtle,1
3188
+ steven,1
3189
+ protecting,1
3190
+ protestor,1
3191
+ tx,1
3192
+ unconventional,1
3193
+ thyme,1
3194
+ tyreek,1
3195
+ registration,1
3196
+ popeye,1
3197
+ registered,1
3198
+ popsicle,1
3199
+ trannys,1
3200
+ thyself,1
3201
+ register,1
3202
+ protocal,1
3203
+ steve,1
3204
+ zola,1
3205
+ thursday,1
3206
+ thumb,1
3207
+ poot,1
3208
+ tranpa,1
3209
+ witness,1
3210
+ protector,1
3211
+ yeayah,1
3212
+ reincarnation,1
3213
+ twisted,1
3214
+ reigh,1
3215
+ thrower,1
3216
+ pooh,1
3217
+ yearly,1
3218
+ thrown,1
3219
+ rehabilitated,1
3220
+ stfu,1
3221
+ tweekers,1
3222
+ protective,1
3223
+ tutorial,1
3224
+ pooper,1
3225
+ zombie,1
3226
+ protestant,1
3227
+ regimen,1
3228
+ protocol,1
3229
+ regime,1
3230
+ tic,1
3231
+ psychic,1
3232
+ ultra,1
3233
+ refrigerator,1
3234
+ psychopath,1
3235
+ pt,1
3236
+ prosthetic,1
3237
+ refer,1
3238
+ tune,1
3239
+ pta,1
3240
+ puberty,1
3241
+ typical,1
3242
+ tickle,1
3243
+ pubes,1
3244
+ redneck,1
3245
+ tyranny,1
3246
+ starvi,1
3247
+ rectal,1
3248
+ recruiter,1
3249
+ recovery,1
3250
+ umbilical,1
3251
+ tiajuana,1
3252
+ venezuelan,1
3253
+ prostitution,1
3254
+ umbra,1
3255
+ porkistan,1
3256
+ tranquilized,1
3257
+ ti,1
3258
+ regain,1
3259
+ refusing,1
3260
+ zimbabwe,1
3261
+ portable,1
3262
+ portaying,1
3263
+ wolf,1
3264
+ zero,1
3265
+ refund,1
3266
+ tranation,1
3267
+ ported,1
3268
+ turbulence,1
3269
+ yearbook,1
3270
+ unconscious,1
3271
+ wolrd,1
3272
+ pupper,1
3273
+ pothead,1
3274
+ priscilla,1
3275
+ potion,1
3276
+ vest,1
3277
+ wrinkle,1
3278
+ presidential,1
3279
+ tricare,1
3280
+ privledge,1
3281
+ vegies,1
3282
+ wylde,1
3283
+ pressing,1
3284
+ ranch,1
3285
+ traveling,1
3286
+ wwiii,1
3287
+ protects,1
3288
+ pressley,1
3289
+ ramsay,1
3290
+ ramit,1
3291
+ trayvon,1
3292
+ towards,1
3293
+ pressure,1
3294
+ pressuring,1
3295
+ presumed,1
3296
+ pretended,1
3297
+ towel,1
3298
+ questioning,1
3299
+ python,1
3300
+ toll,1
3301
+ trauma,1
3302
+ raptor,1
3303
+ prescribing,1
3304
+ quad,1
3305
+ traumatised,1
3306
+ quality,1
3307
+ quarter,1
3308
+ queef,1
3309
+ trivial,1
3310
+ wrap,1
3311
+ tommy,1
3312
+ queensland,1
3313
+ trim,1
3314
+ unapologetically,1
3315
+ preserving,1
3316
+ wrapped,1
3317
+ tom,1
3318
+ queer,1
3319
+ tower,1
3320
+ stereo,1
3321
+ privelege,1
3322
+ wrist,1
3323
+ toward,1
3324
+ stoke,1
3325
+ radius,1
3326
+ prick,1
3327
+ radio,1
3328
+ radicalization,1
3329
+ written,1
3330
+ yobo,1
3331
+ priest,1
3332
+ treaty,1
3333
+ tourette,1
3334
+ wrote,1
3335
+ toolbars,1
3336
+ tour,1
3337
+ treating,1
3338
+ totality,1
3339
+ wtc,1
3340
+ prior,1
3341
+ versus,1
3342
+ velasquez,1
3343
+ rabbit,1
3344
+ ra,1
3345
+ trench,1
3346
+ writing,1
3347
+ totalinarism,1
3348
+ rag,1
3349
+ ramadan,1
3350
+ ram,1
3351
+ rallying,1
3352
+ trey,1
3353
+ unacceptable,1
3354
+ previous,1
3355
+ raising,1
3356
+ quicksaving,1
3357
+ tortured,1
3358
+ venezuela,1
3359
+ prey,1
3360
+ quiet,1
3361
+ railroad,1
3362
+ rail,1
3363
+ toshiba,1
3364
+ raided,1
3365
+ raggedy,1
3366
+ toss,1
3367
+ quokkas,1
3368
+ prepare,1
3369
+ premium,1
3370
+ truthful,1
3371
+ unatural,1
3372
+ veggie,1
3373
+ yous,1
3374
+ trapped,1
3375
+ rabbi,1
3376
+ unbelievable,1
3377
+ realised,1
3378
+ stash,1
3379
+ practically,1
3380
+ ugliest,1
3381
+ worry,1
3382
+ tirty,1
3383
+ tragically,1
3384
+ promotion,1
3385
+ unathi,1
3386
+ yahhhhhh,1
3387
+ reaction,1
3388
+ yeet,1
3389
+ react,1
3390
+ reached,1
3391
+ veil,1
3392
+ pronounce,1
3393
+ truly,1
3394
+ premier,1
3395
+ realizes,1
3396
+ yarmulke,1
3397
+ reassignment,1
3398
+ pour,1
3399
+ worker,1
3400
+ workout,1
3401
+ reap,1
3402
+ pours,1
3403
+ tingle,1
3404
+ pout,1
3405
+ worldwide,1
3406
+ realistic,1
3407
+ uckin,1
3408
+ ugh,1
3409
+ yugoslav,1
3410
+ transphobes,1
3411
+ ughh,1
3412
+ vent,1
3413
+ propaganda,1
3414
+ vehicle,1
3415
+ youtube,1
3416
+ prayed,1
3417
+ tlais,1
3418
+ toaster,1
3419
+ proceeding,1
3420
+ programmed,1
3421
+ progeria,1
3422
+ profit,1
3423
+ worship,1
3424
+ tokyo,1
3425
+ preferred,1
3426
+ xzhibit,1
3427
+ pusher,1
3428
+ yelled,1
3429
+ rath,1
3430
+ yaaahhh,1
3431
+ trabajo,1
3432
+ procedure,1
3433
+ trashy,1
3434
+ tolerant,1
3435
+ prematurley,1
3436
+ pygmy,1
3437
+ woth,1
3438
+ rascism,1
3439
+ younglings,1
3440
+ rave,1
3441
+ trolled,1
3442
+ pursue,1
3443
+ predicted,1
3444
+ truckload,1
3445
+ promote,1
3446
+ tradition,1
3447
+ stink,1
3448
+ pre,1
3449
+ preadtor,1
3450
+ versailles,1
3451
+ prom,1
3452
+ tobe,1
3453
+ trashed,1
3454
+ prohibit,1
3455
+ predator,1
3456
+ todd,1
3457
+ toddlerself,1
3458
+ trashing,1
3459
+ predatory,1
3460
+ purposefully,1
3461
+ purposely,1
3462
+ progress,1
3463
+ unbothered,1
3464
+ spock,1
3465
+ reindeer,1
3466
+ sweaty,1
3467
+ sprite,1
3468
+ shore,1
3469
+ sweep,1
3470
+ urine,1
3471
+ streak,1
3472
+ shortly,1
3473
+ shorty,1
3474
+ sweden,1
3475
+ wating,1
3476
+ warming,1
3477
+ sweating,1
3478
+ shoulda,1
3479
+ sprinkler,1
3480
+ sweatin,1
3481
+ waterin,1
3482
+ sweater,1
3483
+ shouted,1
3484
+ shouting,1
3485
+ urinal,1
3486
+ victoria,1
3487
+ upside,1
3488
+ straw,1
3489
+ shift,1
3490
+ shiite,1
3491
+ shill,1
3492
+ valve,1
3493
+ wayne,1
3494
+ sweetie,1
3495
+ shitbox,1
3496
+ shithole,1
3497
+ shitkick,1
3498
+ ups,1
3499
+ shitter,1
3500
+ shitting,1
3501
+ sweetheart,1
3502
+ shocked,1
3503
+ shocker,1
3504
+ spur,1
3505
+ sweeter,1
3506
+ shove,1
3507
+ swapped,1
3508
+ waterboy,1
3509
+ surviving,1
3510
+ silverman,1
3511
+ survived,1
3512
+ survival,1
3513
+ survey,1
3514
+ surrounded,1
3515
+ sincere,1
3516
+ sincerely,1
3517
+ sing,1
3518
+ surrogate,1
3519
+ streat,1
3520
+ surprising,1
3521
+ singlehandedly,1
3522
+ surprised,1
3523
+ useful,1
3524
+ warren,1
3525
+ site,1
3526
+ surely,1
3527
+ silly,1
3528
+ sikh,1
3529
+ showered,1
3530
+ sike,1
3531
+ stream,1
3532
+ shrimp,1
3533
+ swamp,1
3534
+ shrug,1
3535
+ shutter,1
3536
+ shutting,1
3537
+ shuttle,1
3538
+ wasting,1
3539
+ twilight,1
3540
+ sickest,1
3541
+ suspected,1
3542
+ value,1
3543
+ victory,1
3544
+ sighting,1
3545
+ spread,1
3546
+ susan,1
3547
+ signed,1
3548
+ swiftly,1
3549
+ shia,1
3550
+ shhiiit,1
3551
+ serbian,1
3552
+ weighed,1
3553
+ wehrmacht,1
3554
+ serpentine,1
3555
+ serve,1
3556
+ server,1
3557
+ weep,1
3558
+ sesame,1
3559
+ unrape,1
3560
+ tainted,1
3561
+ taint,1
3562
+ squidward,1
3563
+ seuss,1
3564
+ sewage,1
3565
+ sewn,1
3566
+ tac,1
3567
+ taba,1
3568
+ sexism,1
3569
+ serial,1
3570
+ serb,1
3571
+ sexually,1
3572
+ strange,1
3573
+ talkin,1
3574
+ selective,1
3575
+ unpacked,1
3576
+ weirder,1
3577
+ selfish,1
3578
+ sellout,1
3579
+ semen,1
3580
+ semicolon,1
3581
+ semite,1
3582
+ sen,1
3583
+ unpaid,1
3584
+ senater,1
3585
+ stove,1
3586
+ talented,1
3587
+ sends,1
3588
+ unplug,1
3589
+ sensual,1
3590
+ weeeeeee,1
3591
+ unresponsive,1
3592
+ shhhhhhh,1
3593
+ sharted,1
3594
+ symptom,1
3595
+ sympathizer,1
3596
+ update,1
3597
+ symbrachydactyly,1
3598
+ sheeple,1
3599
+ strap,1
3600
+ sheikh,1
3601
+ weaponsto,1
3602
+ shel,1
3603
+ wealthy,1
3604
+ spyder,1
3605
+ weakest,1
3606
+ shelter,1
3607
+ weakened,1
3608
+ shepard,1
3609
+ swiming,1
3610
+ weaken,1
3611
+ unwell,1
3612
+ squat,1
3613
+ unseal,1
3614
+ synthetic,1
3615
+ t,1
3616
+ shadow,1
3617
+ squeaky,1
3618
+ shaker,1
3619
+ shaking,1
3620
+ shallow,1
3621
+ squatter,1
3622
+ systematig,1
3623
+ shamima,1
3624
+ systematically,1
3625
+ unvaccinated,1
3626
+ weeeee,1
3627
+ shard,1
3628
+ vibrator,1
3629
+ vice,1
3630
+ unvetted,1
3631
+ wednesday,1
3632
+ suprise,1
3633
+ sjw,1
3634
+ segregation,1
3635
+ vittorio,1
3636
+ somali,1
3637
+ submit,1
3638
+ vodka,1
3639
+ utter,1
3640
+ someday,1
3641
+ uwu,1
3642
+ sub,1
3643
+ styrofoam,1
3644
+ somting,1
3645
+ sk,1
3646
+ visualization,1
3647
+ visor,1
3648
+ sooo,1
3649
+ visited,1
3650
+ vagene,1
3651
+ sort,1
3652
+ visit,1
3653
+ stupider,1
3654
+ solving,1
3655
+ solver,1
3656
+ solved,1
3657
+ voetsek,1
3658
+ soda,1
3659
+ soft,1
3660
+ soil,1
3661
+ vr,1
3662
+ solder,1
3663
+ vowed,1
3664
+ strike,1
3665
+ sucked,1
3666
+ utah,1
3667
+ solo,1
3668
+ successfully,1
3669
+ volunteer,1
3670
+ success,1
3671
+ succeed,1
3672
+ voila,1
3673
+ voiced,1
3674
+ subtraction,1
3675
+ sour,1
3676
+ stuffed,1
3677
+ vaginai,1
3678
+ viking,1
3679
+ speeding,1
3680
+ violates,1
3681
+ stroke,1
3682
+ strive,1
3683
+ violated,1
3684
+ sperm,1
3685
+ sphincter,1
3686
+ spicy,1
3687
+ spider,1
3688
+ spin,1
3689
+ spit,1
3690
+ vince,1
3691
+ villain,1
3692
+ villager,1
3693
+ village,1
3694
+ vile,1
3695
+ stripper,1
3696
+ vague,1
3697
+ spectre,1
3698
+ southern,1
3699
+ struck,1
3700
+ sovereign,1
3701
+ virgo,1
3702
+ soviet,1
3703
+ studying,1
3704
+ spacecraft,1
3705
+ spam,1
3706
+ vagine,1
3707
+ valuable,1
3708
+ spanish,1
3709
+ spasm,1
3710
+ stub,1
3711
+ spongebob,1
3712
+ sponge,1
3713
+ spay,1
3714
+ struggling,1
3715
+ speaker,1
3716
+ speaks,1
3717
+ vulture,1
3718
+ usually,1
3719
+ suffered,1
3720
+ supplier,1
3721
+ supermarket,1
3722
+ sleepier,1
3723
+ sleeping,1
3724
+ sleepyhead,1
3725
+ superman,1
3726
+ sleeve,1
3727
+ sleevies,1
3728
+ walkin,1
3729
+ slept,1
3730
+ slid,1
3731
+ slightly,1
3732
+ slinkies,1
3733
+ superiority,1
3734
+ superior,1
3735
+ superhero,1
3736
+ slogan,1
3737
+ sunset,1
3738
+ slayer,1
3739
+ supply,1
3740
+ ussr,1
3741
+ usher,1
3742
+ vieques,1
3743
+ wanty,1
3744
+ sketchy,1
3745
+ supreme,1
3746
+ skill,1
3747
+ skilled,1
3748
+ supremacy,1
3749
+ supremacist,1
3750
+ skipped,1
3751
+ wanting,1
3752
+ skul,1
3753
+ skyscraper,1
3754
+ valuation,1
3755
+ wanker,1
3756
+ supported,1
3757
+ slapping,1
3758
+ slash,1
3759
+ smackahoe,1
3760
+ sunglass,1
3761
+ suggest,1
3762
+ wage,1
3763
+ smudge,1
3764
+ sum,1
3765
+ smurf,1
3766
+ snail,1
3767
+ sultry,1
3768
+ sneaky,1
3769
+ snooze,1
3770
+ wag,1
3771
+ snorting,1
3772
+ sulking,1
3773
+ suitcase,1
3774
+ suit,1
3775
+ snowblower,1
3776
+ snuggle,1
3777
+ usual,1
3778
+ soar,1
3779
+ suggested,1
3780
+ smothered,1
3781
+ ustad,1
3782
+ smashed,1
3783
+ smoothie,1
3784
+ strengthen,1
3785
+ smeil,1
3786
+ waiter,1
3787
+ smeller,1
3788
+ waited,1
3789
+ smelling,1
3790
+ smh,1
3791
+ smiiiiile,1
3792
+ smirked,1
3793
+ stress,1
3794
+ waist,1
3795
+ sportsman,1
3796
+ smoker,1
3797
+ sporting,1
3798
+ sumthin,1
3799
+ smollet,1
3800
+ vietnam,1
3801
+ select,1
3802
+ welcomed,1
3803
+ throatagraph,1
3804
+ wilber,1
3805
+ wilkes,1
3806
+ theatrical,1
3807
+ rigging,1
3808
+ wilfully,1
3809
+ rihanna,1
3810
+ rilis,1
3811
+ wilford,1
3812
+ wildebeest,1
3813
+ theater,1
3814
+ rspca,1
3815
+ ringtone,1
3816
+ ripped,1
3817
+ risking,1
3818
+ ritual,1
3819
+ undocumented,1
3820
+ rl,1
3821
+ undone,1
3822
+ stalin,1
3823
+ rig,1
3824
+ william,1
3825
+ undo,1
3826
+ willl,1
3827
+ rh,1
3828
+ theriously,1
3829
+ there,1
3830
+ rhino,1
3831
+ ribbed,1
3832
+ theory,1
3833
+ winchester,1
3834
+ underwear,1
3835
+ thenthe,1
3836
+ themuslimes,1
3837
+ willy,1
3838
+ willpower,1
3839
+ rider,1
3840
+ ridiculer,1
3841
+ riding,1
3842
+ theleft,1
3843
+ rifle,1
3844
+ thatextra,1
3845
+ rob,1
3846
+ robber,1
3847
+ wider,1
3848
+ testosterone,1
3849
+ rosenbergs,1
3850
+ rosie,1
3851
+ rot,1
3852
+ rotten,1
3853
+ wide,1
3854
+ split,1
3855
+ testify,1
3856
+ vhs,1
3857
+ whydo,1
3858
+ rousey,1
3859
+ tesitfy,1
3860
+ row,1
3861
+ rowe,1
3862
+ roy,1
3863
+ whoring,1
3864
+ tese,1
3865
+ rope,1
3866
+ widespread,1
3867
+ robbery,1
3868
+ roommate,1
3869
+ thanksgivingclapback,1
3870
+ robinson,1
3871
+ thankfully,1
3872
+ robot,1
3873
+ thankful,1
3874
+ uneducated,1
3875
+ tham,1
3876
+ thailand,1
3877
+ roleplaying,1
3878
+ romance,1
3879
+ romanian,1
3880
+ romantic,1
3881
+ romantice,1
3882
+ romney,1
3883
+ ronda,1
3884
+ veteranos,1
3885
+ rookie,1
3886
+ revolution,1
3887
+ review,1
3888
+ reverse,1
3889
+ remorse,1
3890
+ stoner,1
3891
+ removin,1
3892
+ rendition,1
3893
+ renso,1
3894
+ rent,1
3895
+ reoffend,1
3896
+ wire,1
3897
+ wiping,1
3898
+ repaid,1
3899
+ repair,1
3900
+ repeat,1
3901
+ standard,1
3902
+ replaced,1
3903
+ replied,1
3904
+ reportin,1
3905
+ stonger,1
3906
+ underpaid,1
3907
+ wisdom,1
3908
+ remington,1
3909
+ stood,1
3910
+ reminded,1
3911
+ witchu,1
3912
+ reject,1
3913
+ rejection,1
3914
+ rejoices,1
3915
+ related,1
3916
+ relationsheep,1
3917
+ witch,1
3918
+ uncover,1
3919
+ wit,1
3920
+ relic,1
3921
+ remain,1
3922
+ wishing,1
3923
+ remebered,1
3924
+ threatend,1
3925
+ remembers,1
3926
+ stomp,1
3927
+ wiser,1
3928
+ underrated,1
3929
+ requires,1
3930
+ theyre,1
3931
+ responsibly,1
3932
+ wineaisle,1
3933
+ poo,1
3934
+ thigh,1
3935
+ restrict,1
3936
+ restriction,1
3937
+ resume,1
3938
+ retardant,1
3939
+ retired,1
3940
+ retodd,1
3941
+ retribution,1
3942
+ thicker,1
3943
+ retro,1
3944
+ stampede,1
3945
+ windmill,1
3946
+ returned,1
3947
+ thicc,1
3948
+ revenge,1
3949
+ underwater,1
3950
+ understood,1
3951
+ rerun,1
3952
+ thingy,1
3953
+ rescheduled,1
3954
+ thorn,1
3955
+ winnie,1
3956
+ rescued,1
3957
+ thor,1
3958
+ reside,1
3959
+ resign,1
3960
+ resisting,1
3961
+ resolution,1
3962
+ respawn,1
3963
+ third,1
3964
+ wink,1
3965
+ understanding,1
3966
+ responded,1
3967
+ response,1
3968
+ thinki,1
3969
+ understands,1
3970
+ royalty,1
3971
+ various,1
3972
+ seems,1
3973
+ schakowsky,1
3974
+ scare,1
3975
+ scarlett,1
3976
+ scary,1
3977
+ scavenger,1
3978
+ sceams,1
3979
+ scene,1
3980
+ scented,1
3981
+ schaaf,1
3982
+ whatchoo,1
3983
+ uneployment,1
3984
+ schedule,1
3985
+ stork,1
3986
+ whatcha,1
3987
+ whale,1
3988
+ scholar,1
3989
+ whack,1
3990
+ tattle,1
3991
+ tasty,1
3992
+ scandinavia,1
3993
+ unlock,1
3994
+ scandal,1
3995
+ scalefrom,1
3996
+ sasha,1
3997
+ sassy,1
3998
+ sauce,1
3999
+ st,1
4000
+ whatsup,1
4001
+ teapot,1
4002
+ teamed,1
4003
+ savior,1
4004
+ stopping,1
4005
+ viannas,1
4006
+ tdi,1
4007
+ whatsthe,1
4008
+ saviour,1
4009
+ tch,1
4010
+ unlike,1
4011
+ whatsoever,1
4012
+ taxi,1
4013
+ scientific,1
4014
+ tasted,1
4015
+ unmarked,1
4016
+ searching,1
4017
+ seasame,1
4018
+ seashell,1
4019
+ western,1
4020
+ tapped,1
4021
+ werewolf,1
4022
+ tantrum,1
4023
+ seated,1
4024
+ wendy,1
4025
+ wellbeing,1
4026
+ secretly,1
4027
+ section,1
4028
+ tammy,1
4029
+ secure,1
4030
+ unnoticed,1
4031
+ uno,1
4032
+ unoxolo,1
4033
+ seemed,1
4034
+ tards,1
4035
+ search,1
4036
+ scissors,1
4037
+ seagull,1
4038
+ tarrant,1
4039
+ scoffer,1
4040
+ scored,1
4041
+ storm,1
4042
+ targeting,1
4043
+ scrabble,1
4044
+ scrape,1
4045
+ targeted,1
4046
+ screamed,1
4047
+ wetter,1
4048
+ unnecessary,1
4049
+ screen,1
4050
+ screenshot,1
4051
+ screwed,1
4052
+ scroll,1
4053
+ scrub,1
4054
+ scum,1
4055
+ sash,1
4056
+ wheaties,1
4057
+ stab,1
4058
+ whitesox,1
4059
+ whiteman,1
4060
+ runway,1
4061
+ rus,1
4062
+ unhumanrights,1
4063
+ whitegirlwasted,1
4064
+ stacey,1
4065
+ termite,1
4066
+ ter,1
4067
+ rusty,1
4068
+ rvives,1
4069
+ veiw,1
4070
+ sa,1
4071
+ sacrifice,1
4072
+ sacrificed,1
4073
+ sacrificing,1
4074
+ whispering,1
4075
+ tequila,1
4076
+ unfriended,1
4077
+ runt,1
4078
+ tendies,1
4079
+ whitlock,1
4080
+ whoopty,1
4081
+ terrorizes,1
4082
+ whooped,1
4083
+ unfollowed,1
4084
+ rubbed,1
4085
+ stain,1
4086
+ staffer,1
4087
+ rudolf,1
4088
+ rug,1
4089
+ ruin,1
4090
+ stadium,1
4091
+ ruined,1
4092
+ whoah,1
4093
+ whlle,1
4094
+ terrier,1
4095
+ ruling,1
4096
+ rumor,1
4097
+ tent,1
4098
+ sadiq,1
4099
+ sargent,1
4100
+ teef,1
4101
+ unleash,1
4102
+ whether,1
4103
+ wherever,1
4104
+ samurai,1
4105
+ san,1
4106
+ teddy,1
4107
+ sancuary,1
4108
+ tecnical,1
4109
+ sander,1
4110
+ technology,1
4111
+ technique,1
4112
+ sandwichmaker,1
4113
+ tease,1
4114
+ sane,1
4115
+ sarafina,1
4116
+ sarah,1
4117
+ sarcasm,1
4118
+ samir,1
4119
+ whilst,1
4120
+ safely,1
4121
+ salvation,1
4122
+ safer,1
4123
+ safest,1
4124
+ temptation,1
4125
+ temperature,1
4126
+ sailing,1
4127
+ sailor,1
4128
+ saint,1
4129
+ sake,1
4130
+ salary,1
4131
+ temper,1
4132
+ unity,1
4133
+ salesman,1
4134
+ salsa,1
4135
+ tehran,1
4136
+ teepee,1
4137
+ whine,1
4138
+ salute,1
4139
+ testimony,1
4140
+ aaa,1
4141
+ poll,1
4142
+ dave,1
4143
+ damage,1
4144
+ dame,1
4145
+ damit,1
4146
+ dammit,1
4147
+ dangerous,1
4148
+ dank,1
4149
+ danke,1
4150
+ darker,1
4151
+ darling,1
4152
+ dart,1
4153
+ dash,1
4154
+ dashboard,1
4155
+ dashing,1
4156
+ david,1
4157
+ daily,1
4158
+ davis,1
4159
+ daylight,1
4160
+ dayton,1
4161
+ deadly,1
4162
+ dealt,1
4163
+ deceiving,1
4164
+ december,1
4165
+ decides,1
4166
+ declare,1
4167
+ declared,1
4168
+ decline,1
4169
+ declined,1
4170
+ decorated,1
4171
+ dam,1
4172
+ dahyun,1
4173
+ dedicated,1
4174
+ crown,1
4175
+ crenshaw,1
4176
+ crenshawn,1
4177
+ crewman,1
4178
+ crisper,1
4179
+ crispy,1
4180
+ critical,1
4181
+ criticize,1
4182
+ crocodile,1
4183
+ crooked,1
4184
+ crossbreed,1
4185
+ crotch,1
4186
+ crow,1
4187
+ crowd,1
4188
+ cruise,1
4189
+ dah,1
4190
+ culebra,1
4191
+ cultural,1
4192
+ cumming,1
4193
+ cupcake,1
4194
+ cured,1
4195
+ curfew,1
4196
+ currently,1
4197
+ cursive,1
4198
+ curvature,1
4199
+ cutest,1
4200
+ cycle,1
4201
+ cyril,1
4202
+ dafuq,1
4203
+ decoy,1
4204
+ dee,1
4205
+ directing,1
4206
+ devoted,1
4207
+ deported,1
4208
+ depot,1
4209
+ depressed,1
4210
+ derangement,1
4211
+ desegregation,1
4212
+ desert,1
4213
+ despite,1
4214
+ destroyer,1
4215
+ destroys,1
4216
+ destructive,1
4217
+ detained,1
4218
+ detector,1
4219
+ development,1
4220
+ diabeetus,1
4221
+ deport,1
4222
+ diabetic,1
4223
+ diana,1
4224
+ diarrea,1
4225
+ dic,1
4226
+ dictator,1
4227
+ dictionary,1
4228
+ diet,1
4229
+ differently,1
4230
+ difffrent,1
4231
+ dinosaur,1
4232
+ diploma,1
4233
+ dipped,1
4234
+ dipper,1
4235
+ deportation,1
4236
+ deplorable,1
4237
+ deed,1
4238
+ delusional,1
4239
+ deemed,1
4240
+ deeply,1
4241
+ defeat,1
4242
+ defended,1
4243
+ defense,1
4244
+ defenseless,1
4245
+ defetus,1
4246
+ deficient,1
4247
+ definition,1
4248
+ deformity,1
4249
+ delete,1
4250
+ deliver,1
4251
+ delivered,1
4252
+ deluxe,1
4253
+ depends,1
4254
+ demanding,1
4255
+ dementia,1
4256
+ demise,1
4257
+ democtrat,1
4258
+ demographic,1
4259
+ demonrat,1
4260
+ demonstrate,1
4261
+ denied,1
4262
+ denier,1
4263
+ dentist,1
4264
+ deoderant,1
4265
+ depend,1
4266
+ depending,1
4267
+ credibility,1
4268
+ creature,1
4269
+ creative,1
4270
+ communication,1
4271
+ cologne,1
4272
+ colonel,1
4273
+ colonialism,1
4274
+ colorado,1
4275
+ combination,1
4276
+ comeback,1
4277
+ comedian,1
4278
+ comedy,1
4279
+ comfort,1
4280
+ comin,1
4281
+ commemorated,1
4282
+ committee,1
4283
+ committing,1
4284
+ compantions,1
4285
+ collection,1
4286
+ compared,1
4287
+ compel,1
4288
+ compensate,1
4289
+ compilaion,1
4290
+ complicated,1
4291
+ compromise,1
4292
+ conceived,1
4293
+ concept,1
4294
+ conditioned,1
4295
+ conduct,1
4296
+ cone,1
4297
+ confiscate,1
4298
+ confuses,1
4299
+ colluded,1
4300
+ collected,1
4301
+ creating,1
4302
+ closing,1
4303
+ clearance,1
4304
+ clearly,1
4305
+ cleavage,1
4306
+ cleric,1
4307
+ click,1
4308
+ cliff,1
4309
+ climb,1
4310
+ clipboard,1
4311
+ clocking,1
4312
+ closed,1
4313
+ closer,1
4314
+ closest,1
4315
+ closet,1
4316
+ cloud,1
4317
+ collar,1
4318
+ clubbing,1
4319
+ clue,1
4320
+ cm,1
4321
+ co,1
4322
+ coa,1
4323
+ coach,1
4324
+ coat,1
4325
+ coca,1
4326
+ cocksucker,1
4327
+ code,1
4328
+ cohen,1
4329
+ coin,1
4330
+ cola,1
4331
+ connected,1
4332
+ conned,1
4333
+ conor,1
4334
+ cowbell,1
4335
+ correctioness,1
4336
+ correctly,1
4337
+ correctness,1
4338
+ cortez,1
4339
+ corvette,1
4340
+ cosas,1
4341
+ costello,1
4342
+ counter,1
4343
+ countryside,1
4344
+ course,1
4345
+ court,1
4346
+ covered,1
4347
+ cowardly,1
4348
+ cowgirl,1
4349
+ considered,1
4350
+ coz,1
4351
+ cracka,1
4352
+ crackas,1
4353
+ crackhouse,1
4354
+ crakka,1
4355
+ crakkka,1
4356
+ crashed,1
4357
+ crastinate,1
4358
+ craving,1
4359
+ crawl,1
4360
+ crawling,1
4361
+ crayon,1
4362
+ crazier,1
4363
+ corpse,1
4364
+ cornwallis,1
4365
+ cornered,1
4366
+ cornbread,1
4367
+ consistent,1
4368
+ console,1
4369
+ constatntly,1
4370
+ constellation,1
4371
+ constitutional,1
4372
+ consultant,1
4373
+ containment,1
4374
+ contains,1
4375
+ content,1
4376
+ contiue,1
4377
+ contract,1
4378
+ contraption,1
4379
+ contribute,1
4380
+ contributing,1
4381
+ contries,1
4382
+ conversation,1
4383
+ convert,1
4384
+ converted,1
4385
+ convince,1
4386
+ cooked,1
4387
+ cookie,1
4388
+ cooler,1
4389
+ cooooooooooooon,1
4390
+ copied,1
4391
+ copsuckers,1
4392
+ core,1
4393
+ corn,1
4394
+ dipshit,1
4395
+ directly,1
4396
+ forrest,1
4397
+ faceapp,1
4398
+ explode,1
4399
+ explodes,1
4400
+ explosive,1
4401
+ exposing,1
4402
+ exsisted,1
4403
+ extension,1
4404
+ extensive,1
4405
+ extinguisher,1
4406
+ extreme,1
4407
+ eyeball,1
4408
+ eyed,1
4409
+ eyelash,1
4410
+ fabric,1
4411
+ facetimeing,1
4412
+ expense,1
4413
+ fag,1
4414
+ fail,1
4415
+ fails,1
4416
+ fair,1
4417
+ faith,1
4418
+ fake,1
4419
+ falcon,1
4420
+ falt,1
4421
+ fame,1
4422
+ farmville,1
4423
+ farrakhan,1
4424
+ farted,1
4425
+ fascist,1
4426
+ expert,1
4427
+ expendable,1
4428
+ fastball,1
4429
+ evolve,1
4430
+ escalated,1
4431
+ ese,1
4432
+ especially,1
4433
+ essential,1
4434
+ established,1
4435
+ ethiopia,1
4436
+ ethnic,1
4437
+ eu,1
4438
+ eulogy,1
4439
+ evade,1
4440
+ everey,1
4441
+ everlasting,1
4442
+ evilheart,1
4443
+ ewoks,1
4444
+ expeditiously,1
4445
+ exam,1
4446
+ excavation,1
4447
+ excess,1
4448
+ exclusive,1
4449
+ excoriated,1
4450
+ execut,1
4451
+ execute,1
4452
+ execution,1
4453
+ executive,1
4454
+ exfoliating,1
4455
+ existed,1
4456
+ existence,1
4457
+ exists,1
4458
+ fashioned,1
4459
+ fastes,1
4460
+ director,1
4461
+ followed,1
4462
+ fled,1
4463
+ flee,1
4464
+ flirting,1
4465
+ float,1
4466
+ florida,1
4467
+ flotation,1
4468
+ flour,1
4469
+ flow,1
4470
+ fluent,1
4471
+ flute,1
4472
+ flyboy,1
4473
+ flying,1
4474
+ focusing,1
4475
+ following,1
4476
+ flatties,1
4477
+ follows,1
4478
+ fondled,1
4479
+ fondles,1
4480
+ foo,1
4481
+ fooled,1
4482
+ foolish,1
4483
+ foos,1
4484
+ footage,1
4485
+ forefather,1
4486
+ forfeit,1
4487
+ forgive,1
4488
+ forgiven,1
4489
+ forgo,1
4490
+ flavored,1
4491
+ flashback,1
4492
+ faucet,1
4493
+ figured,1
4494
+ faulty,1
4495
+ fee,1
4496
+ feelin,1
4497
+ feisch,1
4498
+ feldman,1
4499
+ felicia,1
4500
+ felling,1
4501
+ femboys,1
4502
+ femenist,1
4503
+ fertilizer,1
4504
+ festival,1
4505
+ ffriends,1
4506
+ fifteen,1
4507
+ fil,1
4508
+ flash,1
4509
+ file,1
4510
+ financial,1
4511
+ fingering,1
4512
+ fingerpaint,1
4513
+ fingertip,1
4514
+ finishing,1
4515
+ finsh,1
4516
+ fired,1
4517
+ firend,1
4518
+ firetruck,1
4519
+ fisherman,1
4520
+ fishin,1
4521
+ flammenwerfer,1
4522
+ errand,1
4523
+ erection,1
4524
+ erect,1
4525
+ drag,1
4526
+ dolphin,1
4527
+ dominance,1
4528
+ donating,1
4529
+ dong,1
4530
+ donny,1
4531
+ donor,1
4532
+ doo,1
4533
+ doompeda,1
4534
+ doorway,1
4535
+ dosent,1
4536
+ dosgraceful,1
4537
+ douche,1
4538
+ dr,1
4539
+ drain,1
4540
+ doingbigthings,1
4541
+ dre,1
4542
+ dread,1
4543
+ drill,1
4544
+ drinker,1
4545
+ drip,1
4546
+ dropping,1
4547
+ drum,1
4548
+ dtsy,1
4549
+ ducle,1
4550
+ ductivity,1
4551
+ duel,1
4552
+ dug,1
4553
+ dulux,1
4554
+ dolled,1
4555
+ doggo,1
4556
+ erdogan,1
4557
+ dishonesty,1
4558
+ dis,1
4559
+ disadvantage,1
4560
+ disapearred,1
4561
+ disappeared,1
4562
+ disappointing,1
4563
+ disappointment,1
4564
+ disarmament,1
4565
+ discontent,1
4566
+ discontinued,1
4567
+ discount,1
4568
+ discourse,1
4569
+ discussing,1
4570
+ disgrace,1
4571
+ dislike,1
4572
+ dodged,1
4573
+ disloyal,1
4574
+ dispatch,1
4575
+ display,1
4576
+ disrespect,1
4577
+ disturbance,1
4578
+ ditch,1
4579
+ divided,1
4580
+ divine,1
4581
+ diving,1
4582
+ division,1
4583
+ dj,1
4584
+ dlc,1
4585
+ dmv,1
4586
+ dumber,1
4587
+ dumpster,1
4588
+ duramax,1
4589
+ enforcement,1
4590
+ eminem,1
4591
+ emma,1
4592
+ emmanuel,1
4593
+ emotion,1
4594
+ empathy,1
4595
+ emphasis,1
4596
+ empire,1
4597
+ emt,1
4598
+ en,1
4599
+ encouraged,1
4600
+ endangered,1
4601
+ ending,1
4602
+ energy,1
4603
+ engulfed,1
4604
+ dwarfism,1
4605
+ enjoyed,1
4606
+ enlighten,1
4607
+ enslaver,1
4608
+ enters,1
4609
+ entrance,1
4610
+ entry,1
4611
+ environmentalist,1
4612
+ envision,1
4613
+ equality,1
4614
+ equally,1
4615
+ equate,1
4616
+ equivalent,1
4617
+ er,1
4618
+ embrassed,1
4619
+ embarrassing,1
4620
+ embarassing,1
4621
+ embarassin,1
4622
+ dyslexic,1
4623
+ dysphoria,1
4624
+ eager,1
4625
+ earl,1
4626
+ earned,1
4627
+ eater,1
4628
+ eatin,1
4629
+ ebt,1
4630
+ echo,1
4631
+ economic,1
4632
+ economist,1
4633
+ edgy,1
4634
+ edited,1
4635
+ editing,1
4636
+ edits,1
4637
+ educate,1
4638
+ eerily,1
4639
+ ehd,1
4640
+ eix,1
4641
+ ejaculation,1
4642
+ ekse,1
4643
+ electronic,1
4644
+ electronics,1
4645
+ elementary,1
4646
+ elk,1
4647
+ elude,1
4648
+ emailed,1
4649
+ cleanse,1
4650
+ cleaning,1
4651
+ clause,1
4652
+ austrian,1
4653
+ asylum,1
4654
+ athlete,1
4655
+ attacked,1
4656
+ attempt,1
4657
+ attempted,1
4658
+ attendant,1
4659
+ attic,1
4660
+ attractive,1
4661
+ auburn,1
4662
+ auchschwitz,1
4663
+ auditioned,1
4664
+ aunty,1
4665
+ australia,1
4666
+ authentic,1
4667
+ asvab,1
4668
+ autism,1
4669
+ autistic,1
4670
+ autocorrects,1
4671
+ autograph,1
4672
+ available,1
4673
+ ave,1
4674
+ avenatti,1
4675
+ avenger,1
4676
+ awaiting,1
4677
+ award,1
4678
+ awarded,1
4679
+ awayyyyyy,1
4680
+ awful,1
4681
+ aswell,1
4682
+ astonishing,1
4683
+ awkward,1
4684
+ arriving,1
4685
+ approachable,1
4686
+ approaching,1
4687
+ appropriate,1
4688
+ approves,1
4689
+ aprehend,1
4690
+ arabia,1
4691
+ arbitrary,1
4692
+ arby,1
4693
+ arch,1
4694
+ ardern,1
4695
+ ark,1
4696
+ armor,1
4697
+ armored,1
4698
+ arrrrrrr,1
4699
+ assured,1
4700
+ arse,1
4701
+ artist,1
4702
+ artistic,1
4703
+ asf,1
4704
+ ashamed,1
4705
+ ashol,1
4706
+ askies,1
4707
+ asleep,1
4708
+ aspen,1
4709
+ assassinated,1
4710
+ assert,1
4711
+ association,1
4712
+ asssume,1
4713
+ awiens,1
4714
+ aww,1
4715
+ claude,1
4716
+ beacon,1
4717
+ basement,1
4718
+ bashful,1
4719
+ basketballsareflat,1
4720
+ basterds,1
4721
+ bataan,1
4722
+ batch,1
4723
+ batchelor,1
4724
+ bates,1
4725
+ bath,1
4726
+ bathe,1
4727
+ bathtub,1
4728
+ batshit,1
4729
+ battlefield,1
4730
+ beacuse,1
4731
+ bare,1
4732
+ beagle,1
4733
+ beaten,1
4734
+ beause,1
4735
+ beautifull,1
4736
+ beaver,1
4737
+ becky,1
4738
+ becoming,1
4739
+ bedtime,1
4740
+ beergasm,1
4741
+ beet,1
4742
+ befor,1
4743
+ began,1
4744
+ begum,1
4745
+ barrack,1
4746
+ barbric,1
4747
+ awwww,1
4748
+ badly,1
4749
+ ayanna,1
4750
+ aye,1
4751
+ baaaaa,1
4752
+ babylon,1
4753
+ babyself,1
4754
+ bachman,1
4755
+ backpack,1
4756
+ backseat,1
4757
+ backstreets,1
4758
+ backyard,1
4759
+ badass,1
4760
+ baddest,1
4761
+ badger,1
4762
+ bae,1
4763
+ barbie,1
4764
+ bagged,1
4765
+ bait,1
4766
+ bald,1
4767
+ banality,1
4768
+ banana,1
4769
+ bang,1
4770
+ banging,1
4771
+ bangladesh,1
4772
+ bangladeshi,1
4773
+ bankrupt,1
4774
+ banner,1
4775
+ barbecuing,1
4776
+ barbeque,1
4777
+ apprehend,1
4778
+ appreciating,1
4779
+ appreciate,1
4780
+ aff,1
4781
+ achmed,1
4782
+ activate,1
4783
+ actively,1
4784
+ activist,1
4785
+ addition,1
4786
+ addo,1
4787
+ adhd,1
4788
+ admin,1
4789
+ admins,1
4790
+ admits,1
4791
+ admitting,1
4792
+ adoption,1
4793
+ advancement,1
4794
+ affiliation,1
4795
+ achieve,1
4796
+ afflicted,1
4797
+ affordable,1
4798
+ afrikan,1
4799
+ aftermath,1
4800
+ aftey,1
4801
+ agility,1
4802
+ agin,1
4803
+ aging,1
4804
+ agreed,1
4805
+ agreeignt,1
4806
+ agreeing,1
4807
+ agreement,1
4808
+ agrees,1
4809
+ achieving,1
4810
+ acheive,1
4811
+ applies,1
4812
+ aborted,1
4813
+ aaaand,1
4814
+ aayega,1
4815
+ abby,1
4816
+ abc,1
4817
+ abduction,1
4818
+ aberrant,1
4819
+ ability,1
4820
+ abilty,1
4821
+ ableist,1
4822
+ abmnormal,1
4823
+ abnormal,1
4824
+ abolished,1
4825
+ abomination,1
4826
+ abraham,1
4827
+ ach,1
4828
+ abrams,1
4829
+ absolute,1
4830
+ abstinence,1
4831
+ abyssynian,1
4832
+ accent,1
4833
+ accommodate,1
4834
+ accomplice,1
4835
+ accomplishment,1
4836
+ accts,1
4837
+ accusation,1
4838
+ accuser,1
4839
+ accuses,1
4840
+ ace,1
4841
+ ahly,1
4842
+ ahmarbkrich,1
4843
+ aight,1
4844
+ annual,1
4845
+ andddddd,1
4846
+ andre,1
4847
+ andy,1
4848
+ anecdotal,1
4849
+ angeles,1
4850
+ angle,1
4851
+ angsty,1
4852
+ anique,1
4853
+ annihilated,1
4854
+ announce,1
4855
+ announces,1
4856
+ announcment,1
4857
+ annoyed,1
4858
+ anons,1
4859
+ aim,1
4860
+ anthem,1
4861
+ antifa,1
4862
+ antigun,1
4863
+ antique,1
4864
+ anwar,1
4865
+ anytime,1
4866
+ anyways,1
4867
+ aoc,1
4868
+ apart,1
4869
+ apex,1
4870
+ appalled,1
4871
+ appears,1
4872
+ applauds,1
4873
+ anarchy,1
4874
+ amputee,1
4875
+ amp,1
4876
+ among,1
4877
+ airheaded,1
4878
+ aisha,1
4879
+ aisians,1
4880
+ aka,1
4881
+ akbaar,1
4882
+ alarm,1
4883
+ albert,1
4884
+ album,1
4885
+ alcoholism,1
4886
+ alert,1
4887
+ algebra,1
4888
+ allahbomber,1
4889
+ alliance,1
4890
+ allowing,1
4891
+ allows,1
4892
+ alot,1
4893
+ alpha,1
4894
+ alphabet,1
4895
+ although,1
4896
+ aluminum,1
4897
+ amazingly,1
4898
+ amazon,1
4899
+ ambassador,1
4900
+ ambulance,1
4901
+ amerika,1
4902
+ ammosexual,1
4903
+ amnesty,1
4904
+ begun,1
4905
+ behalf,1
4906
+ behan,1
4907
+ cashier,1
4908
+ capped,1
4909
+ captive,1
4910
+ capturing,1
4911
+ caramel,1
4912
+ career,1
4913
+ caring,1
4914
+ carpet,1
4915
+ carrey,1
4916
+ carribbean,1
4917
+ carrot,1
4918
+ carrying,1
4919
+ carter,1
4920
+ cartridge,1
4921
+ casket,1
4922
+ cape,1
4923
+ castrated,1
4924
+ castrating,1
4925
+ catcher,1
4926
+ catching,1
4927
+ cathedral,1
4928
+ catlyn,1
4929
+ catnip,1
4930
+ cattle,1
4931
+ cautiously,1
4932
+ cave,1
4933
+ cbc,1
4934
+ ceiling,1
4935
+ celebreated,1
4936
+ capitalism,1
4937
+ capacity,1
4938
+ busting,1
4939
+ calm,1
4940
+ buttercup,1
4941
+ buttholes,1
4942
+ button,1
4943
+ buzz,1
4944
+ bye,1
4945
+ cabinet,1
4946
+ cable,1
4947
+ cafe,1
4948
+ cage,1
4949
+ caitlin,1
4950
+ calculate,1
4951
+ caliber,1
4952
+ caliphate,1
4953
+ camaro,1
4954
+ capable,1
4955
+ camera,1
4956
+ cameraman,1
4957
+ cames,1
4958
+ cammed,1
4959
+ camouflage,1
4960
+ campaign,1
4961
+ campes,1
4962
+ canary,1
4963
+ canceled,1
4964
+ candidacy,1
4965
+ cannibal,1
4966
+ cannon,1
4967
+ cap,1
4968
+ cellphone,1
4969
+ ceremony,1
4970
+ certificate,1
4971
+ ci,1
4972
+ chilly,1
4973
+ chimney,1
4974
+ chimp,1
4975
+ chimpanzee,1
4976
+ choco,1
4977
+ choking,1
4978
+ cholos,1
4979
+ chop,1
4980
+ chow,1
4981
+ chromies,1
4982
+ chucky,1
4983
+ chupacabra,1
4984
+ chute,1
4985
+ cides,1
4986
+ ch,1
4987
+ cigarette,1
4988
+ circa,1
4989
+ circumcise,1
4990
+ citicen,1
4991
+ citizenship,1
4992
+ civics,1
4993
+ claimed,1
4994
+ claiming,1
4995
+ clamp,1
4996
+ clan,1
4997
+ clarence,1
4998
+ clarke,1
4999
+ classmate,1
5000
+ chilling,1
5001
+ chili,1
5002
+ childrens,1
5003
+ childrenfrom,1
5004
+ chained,1
5005
+ chainsaw,1
5006
+ chairman,1
5007
+ challah,1
5008
+ challenger,1
5009
+ chan,1
5010
+ changing,1
5011
+ charcol,1
5012
+ charged,1
5013
+ chart,1
5014
+ chasing,1
5015
+ chat,1
5016
+ checked,1
5017
+ checkmate,1
5018
+ checkpoint,1
5019
+ cheeky,1
5020
+ cheering,1
5021
+ cheese,1
5022
+ cheeseburger,1
5023
+ chemo,1
5024
+ chewing,1
5025
+ chex,1
5026
+ chi,1
5027
+ chickenshit,1
5028
+ chief,1
5029
+ chiken,1
5030
+ childhood,1
5031
+ butcher,1
5032
+ busted,1
5033
+ behave,1
5034
+ bliss,1
5035
+ biting,1
5036
+ bj,1
5037
+ blackbelt,1
5038
+ blackened,1
5039
+ blackhead,1
5040
+ blacksmith,1
5041
+ blade,1
5042
+ blaming,1
5043
+ blaster,1
5044
+ bleed,1
5045
+ blessed,1
5046
+ bling,1
5047
+ blink,1
5048
+ blitzkrieged,1
5049
+ bitching,1
5050
+ blockbuster,1
5051
+ blonde,1
5052
+ blown,1
5053
+ blowup,1
5054
+ blunt,1
5055
+ boat,1
5056
+ boatload,1
5057
+ bod,1
5058
+ boiled,1
5059
+ boinked,1
5060
+ bois,1
5061
+ bold,1
5062
+ bologna,1
5063
+ bitcoin,1
5064
+ biscuit,1
5065
+ buslim,1
5066
+ bestie,1
5067
+ behaviour,1
5068
+ behead,1
5069
+ bel,1
5070
+ believer,1
5071
+ bellas,1
5072
+ belly,1
5073
+ beloved,1
5074
+ bender,1
5075
+ bent,1
5076
+ berry,1
5077
+ bessie,1
5078
+ bestfrand,1
5079
+ bestfriend,1
5080
+ besties,1
5081
+ biology,1
5082
+ beter,1
5083
+ bethelem,1
5084
+ beverage,1
5085
+ bf,1
5086
+ bias,1
5087
+ biased,1
5088
+ bigbird,1
5089
+ bigfoot,1
5090
+ biker,1
5091
+ billionaire,1
5092
+ billy,1
5093
+ bink,1
5094
+ biological,1
5095
+ bombathon,1
5096
+ bombbbssss,1
5097
+ bombinb,1
5098
+ bubbling,1
5099
+ brithday,1
5100
+ britney,1
5101
+ brittany,1
5102
+ broblem,1
5103
+ broom,1
5104
+ brothahs,1
5105
+ brotherhood,1
5106
+ brow,1
5107
+ browser,1
5108
+ bru,1
5109
+ bruh,1
5110
+ brutal,1
5111
+ bubble,1
5112
+ buchenwald,1
5113
+ bombshell,1
5114
+ buck,1
5115
+ buckle,1
5116
+ buckling,1
5117
+ bud,1
5118
+ buffalo,1
5119
+ buffett,1
5120
+ bulldozer,1
5121
+ buoyant,1
5122
+ burell,1
5123
+ burger,1
5124
+ burmese,1
5125
+ burqa,1
5126
+ burrell,1
5127
+ brit,1
5128
+ brimley,1
5129
+ brim,1
5130
+ brillant,1
5131
+ bond,1
5132
+ bonding,1
5133
+ boneless,1
5134
+ bonfire,1
5135
+ boooooty,1
5136
+ boost,1
5137
+ boot,1
5138
+ booth,1
5139
+ booze,1
5140
+ boring,1
5141
+ boss,1
5142
+ boston,1
5143
+ bottled,1
5144
+ boxer,1
5145
+ boxing,1
5146
+ bp,1
5147
+ bradford,1
5148
+ braless,1
5149
+ branch,1
5150
+ brave,1
5151
+ bravery,1
5152
+ breakfast,1
5153
+ breaktime,1
5154
+ breathtaking,1
5155
+ brenton,1
5156
+ bret,1
5157
+ bridge,1
5158
+ fork,1
5159
+ forrestal,1
5160
+ politcal,1
5161
+ milkshake,1
5162
+ mere,1
5163
+ merely,1
5164
+ merging,1
5165
+ mermaid,1
5166
+ metalhead,1
5167
+ miami,1
5168
+ mic,1
5169
+ micro,1
5170
+ microscopic,1
5171
+ mighty,1
5172
+ migrnts,1
5173
+ mileage,1
5174
+ militant,1
5175
+ milwaukee,1
5176
+ menu,1
5177
+ min,1
5178
+ mindfuck,1
5179
+ minding,1
5180
+ minesweeper,1
5181
+ minister,1
5182
+ minus,1
5183
+ misdirected,1
5184
+ missile,1
5185
+ mistress,1
5186
+ mitch,1
5187
+ mitt,1
5188
+ mitten,1
5189
+ mm,1
5190
+ meowschwitz,1
5191
+ menstrual,1
5192
+ mo,1
5193
+ medal,1
5194
+ maury,1
5195
+ max,1
5196
+ mayonnaise,1
5197
+ mcdonald,1
5198
+ mcfly,1
5199
+ mcgregor,1
5200
+ mcmap,1
5201
+ meah,1
5202
+ measles,1
5203
+ measure,1
5204
+ measuring,1
5205
+ meatloaf,1
5206
+ mechanic,1
5207
+ medditaranian,1
5208
+ memorized,1
5209
+ medicare,1
5210
+ medicinal,1
5211
+ mediocre,1
5212
+ meditation,1
5213
+ meghan,1
5214
+ mel,1
5215
+ melanin,1
5216
+ melbourne,1
5217
+ melt,1
5218
+ melting,1
5219
+ membership,1
5220
+ memo,1
5221
+ memorial,1
5222
+ mma,1
5223
+ moan,1
5224
+ nelson,1
5225
+ nah,1
5226
+ mugshot,1
5227
+ muller,1
5228
+ multiplication,1
5229
+ multiply,1
5230
+ munt,1
5231
+ muscular,1
5232
+ mushroom,1
5233
+ mussolini,1
5234
+ muthafucka,1
5235
+ mutherfuckin,1
5236
+ mysteriously,1
5237
+ n,1
5238
+ nadler,1
5239
+ naik,1
5240
+ muesli,1
5241
+ nana,1
5242
+ nascar,1
5243
+ nashunal,1
5244
+ nate,1
5245
+ nationally,1
5246
+ naturally,1
5247
+ ne,1
5248
+ neanderthal,1
5249
+ near,1
5250
+ nearly,1
5251
+ neat,1
5252
+ necklace,1
5253
+ necrophilia,1
5254
+ muffler,1
5255
+ mudding,1
5256
+ mobile,1
5257
+ mornigs,1
5258
+ mocker,1
5259
+ mocking,1
5260
+ modi,1
5261
+ moisture,1
5262
+ moisturizer,1
5263
+ mole,1
5264
+ molester,1
5265
+ mommy,1
5266
+ monkeying,1
5267
+ monotone,1
5268
+ monsanto,1
5269
+ moore,1
5270
+ mopping,1
5271
+ moroccan,1
5272
+ muddafukka,1
5273
+ mortification,1
5274
+ mosquee,1
5275
+ mot,1
5276
+ motivate,1
5277
+ motivation,1
5278
+ motivational,1
5279
+ motorcycle,1
5280
+ moustache,1
5281
+ movement,1
5282
+ msnbc,1
5283
+ muchas,1
5284
+ mucho,1
5285
+ mud,1
5286
+ matte,1
5287
+ matress,1
5288
+ mating,1
5289
+ lobbying,1
5290
+ liquorgunsbaconandtits,1
5291
+ listening,1
5292
+ listens,1
5293
+ litter,1
5294
+ litterbox,1
5295
+ liz,1
5296
+ lizard,1
5297
+ lizzie,1
5298
+ lmaooo,1
5299
+ lmco,1
5300
+ loaded,1
5301
+ loading,1
5302
+ loan,1
5303
+ located,1
5304
+ liqour,1
5305
+ location,1
5306
+ locked,1
5307
+ log,1
5308
+ logan,1
5309
+ lookout,1
5310
+ loompa,1
5311
+ loooooooud,1
5312
+ loose,1
5313
+ loosing,1
5314
+ loot,1
5315
+ los,1
5316
+ lotion,1
5317
+ louder,1
5318
+ liquid,1
5319
+ lip,1
5320
+ maternity,1
5321
+ lighter,1
5322
+ lego,1
5323
+ legroom,1
5324
+ lending,1
5325
+ leopold,1
5326
+ libby,1
5327
+ liberate,1
5328
+ liberated,1
5329
+ libertarian,1
5330
+ liberty,1
5331
+ library,1
5332
+ lid,1
5333
+ lidentify,1
5334
+ ligar,1
5335
+ likeit,1
5336
+ liouor,1
5337
+ likely,1
5338
+ limb,1
5339
+ limbaugh,1
5340
+ limitation,1
5341
+ limited,1
5342
+ limp,1
5343
+ lincoln,1
5344
+ lineage,1
5345
+ lined,1
5346
+ lingerie,1
5347
+ link,1
5348
+ linkedin,1
5349
+ linkin,1
5350
+ loudest,1
5351
+ loudly,1
5352
+ louis,1
5353
+ marokko,1
5354
+ mana,1
5355
+ maneuver,1
5356
+ mankind,1
5357
+ manly,1
5358
+ mannequin,1
5359
+ manufacturing,1
5360
+ map,1
5361
+ marathon,1
5362
+ maria,1
5363
+ mariachi,1
5364
+ marital,1
5365
+ marked,1
5366
+ markup,1
5367
+ martian,1
5368
+ loungewear,1
5369
+ martyr,1
5370
+ mary,1
5371
+ mash,1
5372
+ massa,1
5373
+ massacred,1
5374
+ massage,1
5375
+ massager,1
5376
+ massive,1
5377
+ masturbation,1
5378
+ mat,1
5379
+ matata,1
5380
+ match,1
5381
+ mate,1
5382
+ mall,1
5383
+ malia,1
5384
+ malcolm,1
5385
+ majored,1
5386
+ lovely,1
5387
+ loving,1
5388
+ lowa,1
5389
+ lucifer,1
5390
+ luke,1
5391
+ lung,1
5392
+ lurking,1
5393
+ lynch,1
5394
+ lyric,1
5395
+ m,1
5396
+ ma,1
5397
+ macarena,1
5398
+ macbook,1
5399
+ macgregor,1
5400
+ machine,1
5401
+ macron,1
5402
+ mafuckas,1
5403
+ maggot,1
5404
+ magical,1
5405
+ mail,1
5406
+ mailbox,1
5407
+ mailer,1
5408
+ main,1
5409
+ mainland,1
5410
+ mainstream,1
5411
+ majestic,1
5412
+ major,1
5413
+ needle,1
5414
+ nemo,1
5415
+ forwarded,1
5416
+ penalty,1
5417
+ peanutbutter,1
5418
+ peddle,1
5419
+ pedestal,1
5420
+ pedestrian,1
5421
+ pedo,1
5422
+ pedofile,1
5423
+ pedophil,1
5424
+ peed,1
5425
+ peeing,1
5426
+ peeling,1
5427
+ peer,1
5428
+ peice,1
5429
+ pen,1
5430
+ penatration,1
5431
+ peacful,1
5432
+ penis,1
5433
+ peopie,1
5434
+ peppermint,1
5435
+ pepsi,1
5436
+ percap,1
5437
+ performed,1
5438
+ perfume,1
5439
+ permission,1
5440
+ pero,1
5441
+ perpetuation,1
5442
+ personality,1
5443
+ pesky,1
5444
+ pessimist,1
5445
+ peacfully,1
5446
+ peacefully,1
5447
+ petition,1
5448
+ pas,1
5449
+ parcel,1
5450
+ parental,1
5451
+ parenthood,1
5452
+ parking,1
5453
+ parkinson,1
5454
+ parkwhore,1
5455
+ parody,1
5456
+ parole,1
5457
+ partial,1
5458
+ participates,1
5459
+ participating,1
5460
+ particular,1
5461
+ particularly,1
5462
+ pass,1
5463
+ pea,1
5464
+ passing,1
5465
+ passion,1
5466
+ paste,1
5467
+ pastor,1
5468
+ patricia,1
5469
+ patrol,1
5470
+ pauline,1
5471
+ pavement,1
5472
+ paw,1
5473
+ payer,1
5474
+ pc,1
5475
+ pcp,1
5476
+ pd,1
5477
+ peter,1
5478
+ pewdiepie,1
5479
+ nephson,1
5480
+ plenty,1
5481
+ pitcure,1
5482
+ pix,1
5483
+ placed,1
5484
+ planning,1
5485
+ plantation,1
5486
+ platform,1
5487
+ plating,1
5488
+ playground,1
5489
+ playstation,1
5490
+ plea,1
5491
+ plead,1
5492
+ pleaded,1
5493
+ pleased,1
5494
+ plow,1
5495
+ pitcher,1
5496
+ pls,1
5497
+ pluck,1
5498
+ plumber,1
5499
+ plunger,1
5500
+ plus,1
5501
+ pm,1
5502
+ pod,1
5503
+ pokeballs,1
5504
+ pokemon,1
5505
+ poking,1
5506
+ polar,1
5507
+ policeman,1
5508
+ polished,1
5509
+ pitchfork,1
5510
+ pitch,1
5511
+ pharmaceutical,1
5512
+ pijama,1
5513
+ phase,1
5514
+ phelps,1
5515
+ phiz,1
5516
+ pho,1
5517
+ phobia,1
5518
+ photobomb,1
5519
+ photoshopped,1
5520
+ pianist,1
5521
+ piazza,1
5522
+ picard,1
5523
+ picasso,1
5524
+ pictured,1
5525
+ pied,1
5526
+ pilgrim,1
5527
+ pitbulls,1
5528
+ pilgrimage,1
5529
+ pillage,1
5530
+ pillow,1
5531
+ pimp,1
5532
+ pinata,1
5533
+ pineapple,1
5534
+ pint,1
5535
+ pinto,1
5536
+ piped,1
5537
+ pirate,1
5538
+ piscuit,1
5539
+ pisser,1
5540
+ pistol,1
5541
+ parasite,1
5542
+ paraplegic,1
5543
+ parameter,1
5544
+ nutsack,1
5545
+ noticed,1
5546
+ notifies,1
5547
+ notre,1
5548
+ notto,1
5549
+ nowadays,1
5550
+ nowhere,1
5551
+ nra,1
5552
+ nsa,1
5553
+ nsw,1
5554
+ nude,1
5555
+ nun,1
5556
+ nurse,1
5557
+ nurtured,1
5558
+ nutshell,1
5559
+ nosey,1
5560
+ nutz,1
5561
+ nvm,1
5562
+ ny,1
5563
+ oakland,1
5564
+ oath,1
5565
+ obedience,1
5566
+ obligation,1
5567
+ obsticales,1
5568
+ obstruct,1
5569
+ obstructing,1
5570
+ obtain,1
5571
+ ocasio,1
5572
+ ohhh,1
5573
+ nosler,1
5574
+ nooooo,1
5575
+ paradox,1
5576
+ nhere,1
5577
+ nerve,1
5578
+ nesquick,1
5579
+ nest,1
5580
+ net,1
5581
+ neuter,1
5582
+ neutrality,1
5583
+ neve,1
5584
+ nevertrump,1
5585
+ nevr,1
5586
+ newborn,1
5587
+ newl,1
5588
+ nfl,1
5589
+ ngl,1
5590
+ nibba,1
5591
+ nonpolitical,1
5592
+ nicely,1
5593
+ nicholson,1
5594
+ nickel,1
5595
+ niether,1
5596
+ nightmare,1
5597
+ ninja,1
5598
+ nintendo,1
5599
+ niqab,1
5600
+ noah,1
5601
+ noisy,1
5602
+ nonchalantly,1
5603
+ none,1
5604
+ nonexistent,1
5605
+ ohio,1
5606
+ oink,1
5607
+ oldest,1
5608
+ ozzy,1
5609
+ outfit,1
5610
+ outraged,1
5611
+ outreach,1
5612
+ over,1
5613
+ overdose,1
5614
+ overlook,1
5615
+ overpaid,1
5616
+ overprice,1
5617
+ overseas,1
5618
+ overwhelming,1
5619
+ owned,1
5620
+ owns,1
5621
+ oyedepo,1
5622
+ p,1
5623
+ oldier,1
5624
+ pace,1
5625
+ pacifier,1
5626
+ painful,1
5627
+ painted,1
5628
+ pakistan,1
5629
+ pal,1
5630
+ palestine,1
5631
+ palony,1
5632
+ pan,1
5633
+ panda,1
5634
+ panic,1
5635
+ paparazzo,1
5636
+ paradise,1
5637
+ outdoor,1
5638
+ oustide,1
5639
+ oustanding,1
5640
+ ousside,1
5641
+ ole,1
5642
+ online,1
5643
+ onna,1
5644
+ ontario,1
5645
+ oompa,1
5646
+ ooof,1
5647
+ opened,1
5648
+ openly,1
5649
+ operator,1
5650
+ opinion,1
5651
+ opioid,1
5652
+ opportunity,1
5653
+ opposite,1
5654
+ oppression,1
5655
+ oppressor,1
5656
+ optimisim,1
5657
+ optimism,1
5658
+ optometrist,1
5659
+ orangutan,1
5660
+ orchestrate,1
5661
+ oreo,1
5662
+ organ,1
5663
+ organizing,1
5664
+ orland,1
5665
+ osbourne,1
5666
+ osha,1
5667
+ otter,1
5668
+ legislation,1
5669
+ legalize,1
5670
+ lecture,1
5671
+ harrassment,1
5672
+ hanger,1
5673
+ hansel,1
5674
+ hanson,1
5675
+ happiest,1
5676
+ happily,1
5677
+ haram,1
5678
+ harassment,1
5679
+ hardcore,1
5680
+ harley,1
5681
+ harm,1
5682
+ harmless,1
5683
+ harmony,1
5684
+ harold,1
5685
+ harry,1
5686
+ handshake,1
5687
+ harvesting,1
5688
+ hatin,1
5689
+ hatred,1
5690
+ havin,1
5691
+ havoc,1
5692
+ hawns,1
5693
+ hazzard,1
5694
+ headband,1
5695
+ headbutted,1
5696
+ headdress,1
5697
+ headed,1
5698
+ headquaters,1
5699
+ headshot,1
5700
+ handsome,1
5701
+ handicap,1
5702
+ heartbreaking,1
5703
+ habitat,1
5704
+ guembry,1
5705
+ guessing,1
5706
+ guide,1
5707
+ guinea,1
5708
+ guna,1
5709
+ gunboat,1
5710
+ gunna,1
5711
+ gunships,1
5712
+ gustav,1
5713
+ gynecologist,1
5714
+ gynocologist,1
5715
+ ha,1
5716
+ haaaaaammmmmmm,1
5717
+ hachimaki,1
5718
+ handbook,1
5719
+ hades,1
5720
+ hai,1
5721
+ hairbands,1
5722
+ hairline,1
5723
+ haiti,1
5724
+ hakeem,1
5725
+ hakuna,1
5726
+ halfday,1
5727
+ hall,1
5728
+ hallway,1
5729
+ hamas,1
5730
+ hammered,1
5731
+ han,1
5732
+ heal,1
5733
+ heathen,1
5734
+ lebron,1
5735
+ holloween,1
5736
+ histoy,1
5737
+ hitter,1
5738
+ hiv,1
5739
+ hive,1
5740
+ hm,1
5741
+ hmmmmmm,1
5742
+ hockey,1
5743
+ hog,1
5744
+ hogwarts,1
5745
+ holder,1
5746
+ holdin,1
5747
+ holla,1
5748
+ hollow,1
5749
+ holo,1
5750
+ hiroshima,1
5751
+ homelessness,1
5752
+ hometown,1
5753
+ homework,1
5754
+ homophobe,1
5755
+ homophobia,1
5756
+ homophobic,1
5757
+ honesto,1
5758
+ honesty,1
5759
+ hood,1
5760
+ hooke,1
5761
+ hop,1
5762
+ horizontal,1
5763
+ hormone,1
5764
+ historian,1
5765
+ hip,1
5766
+ heatwave,1
5767
+ henchman,1
5768
+ heavy,1
5769
+ heck,1
5770
+ heeeadddd,1
5771
+ heeeeaad,1
5772
+ heimlich,1
5773
+ heist,1
5774
+ held,1
5775
+ helen,1
5776
+ helicopter,1
5777
+ hellen,1
5778
+ helluva,1
5779
+ helmut,1
5780
+ hen,1
5781
+ hentai,1
5782
+ hinders,1
5783
+ hercules,1
5784
+ herding,1
5785
+ hernandez,1
5786
+ herpes,1
5787
+ hess,1
5788
+ hezbollah,1
5789
+ hid,1
5790
+ highlight,1
5791
+ highschool,1
5792
+ hike,1
5793
+ hiliary,1
5794
+ hillsborough,1
5795
+ hiltler,1
5796
+ gucci,1
5797
+ guarantee,1
5798
+ guarana,1
5799
+ gangsta,1
5800
+ fur,1
5801
+ furry,1
5802
+ futility,1
5803
+ fuzzy,1
5804
+ fwd,1
5805
+ führerious,1
5806
+ gag,1
5807
+ gain,1
5808
+ gained,1
5809
+ gala,1
5810
+ gamestop,1
5811
+ gaming,1
5812
+ gangbanged,1
5813
+ garb,1
5814
+ fund,1
5815
+ gargle,1
5816
+ garlic,1
5817
+ gasket,1
5818
+ gasoline,1
5819
+ gaz,1
5820
+ gaza,1
5821
+ gear,1
5822
+ geez,1
5823
+ general,1
5824
+ generally,1
5825
+ generational,1
5826
+ generic,1
5827
+ genetically,1
5828
+ funsies,1
5829
+ fumigated,1
5830
+ grunt,1
5831
+ fritter,1
5832
+ foster,1
5833
+ foundation,1
5834
+ fraction,1
5835
+ france,1
5836
+ francisco,1
5837
+ franken,1
5838
+ freaked,1
5839
+ freekolchenko,1
5840
+ freesentsov,1
5841
+ freight,1
5842
+ freightliner,1
5843
+ fride,1
5844
+ friended,1
5845
+ fritz,1
5846
+ ful,1
5847
+ frostbite,1
5848
+ frown,1
5849
+ fuckery,1
5850
+ fuckis,1
5851
+ fuckup,1
5852
+ fuckyeah,1
5853
+ fuel,1
5854
+ fuherious,1
5855
+ fuhrer,1
5856
+ fuhrererious,1
5857
+ fuhrerious,1
5858
+ fuhrking,1
5859
+ fukrest,1
5860
+ genetics,1
5861
+ genius,1
5862
+ geometry,1
5863
+ grateful,1
5864
+ gracias,1
5865
+ gracing,1
5866
+ gracious,1
5867
+ grader,1
5868
+ graduation,1
5869
+ gram,1
5870
+ grandad,1
5871
+ grandfather,1
5872
+ grandmaster,1
5873
+ grandparent,1
5874
+ grape,1
5875
+ graphing,1
5876
+ grasp,1
5877
+ gratis,1
5878
+ geroceries,1
5879
+ grease,1
5880
+ greatful,1
5881
+ greece,1
5882
+ gregg,1
5883
+ gretel,1
5884
+ grill,1
5885
+ grilling,1
5886
+ groom,1
5887
+ groove,1
5888
+ groper,1
5889
+ growl,1
5890
+ growth,1
5891
+ grumpy,1
5892
+ grabbing,1
5893
+ graam,1
5894
+ gps,1
5895
+ gpa,1
5896
+ gestapo,1
5897
+ gettig,1
5898
+ gf,1
5899
+ ghetto,1
5900
+ ghostbusters,1
5901
+ gibson,1
5902
+ gifted,1
5903
+ gillbet,1
5904
+ girfriends,1
5905
+ git,1
5906
+ givs,1
5907
+ glen,1
5908
+ glorified,1
5909
+ glorious,1
5910
+ glue,1
5911
+ gmc,1
5912
+ goatlivesmatter,1
5913
+ goodbye,1
5914
+ googled,1
5915
+ gordon,1
5916
+ gore,1
5917
+ gorgeous,1
5918
+ gotcha,1
5919
+ gotdamn,1
5920
+ gover,1
5921
+ governement,1
5922
+ gowdy,1
5923
+ horn,1
5924
+ horny,1
5925
+ horrific,1
5926
+ justnorthkoreathings,1
5927
+ johnny,1
5928
+ joined,1
5929
+ joint,1
5930
+ joker,1
5931
+ jong,1
5932
+ jordan,1
5933
+ jovi,1
5934
+ juan,1
5935
+ jug,1
5936
+ jungle,1
5937
+ junk,1
5938
+ junky,1
5939
+ justified,1
5940
+ kaepernick,1
5941
+ jogging,1
5942
+ kampf,1
5943
+ kampfert,1
5944
+ kareem,1
5945
+ kathy,1
5946
+ kdrama,1
5947
+ kegger,1
5948
+ kellogg,1
5949
+ kellogs,1
5950
+ kelly,1
5951
+ kentucky,1
5952
+ kerry,1
5953
+ ketchup,1
5954
+ keyboard,1
5955
+ johansson,1
5956
+ joan,1
5957
+ israelite,1
5958
+ java,1
5959
+ italian,1
5960
+ itch,1
5961
+ item,1
5962
+ itslef,1
5963
+ ize,1
5964
+ jacinda,1
5965
+ jack,1
5966
+ jackoff,1
5967
+ jacob,1
5968
+ jalapeno,1
5969
+ jam,1
5970
+ jan,1
5971
+ jannah,1
5972
+ javeon,1
5973
+ jizzed,1
5974
+ jazz,1
5975
+ jean,1
5976
+ jello,1
5977
+ jelly,1
5978
+ jerkin,1
5979
+ jerusalem,1
5980
+ jewber,1
5981
+ jewery,1
5982
+ jfk,1
5983
+ jihad,1
5984
+ jihadi,1
5985
+ jim,1
5986
+ jimmy,1
5987
+ khan,1
5988
+ kiddin,1
5989
+ kiddo,1
5990
+ latinas,1
5991
+ lamb,1
5992
+ landfill,1
5993
+ landing,1
5994
+ landmines,1
5995
+ landslide,1
5996
+ laptop,1
5997
+ lare,1
5998
+ largemouth,1
5999
+ largemouthed,1
6000
+ larger,1
6001
+ larry,1
6002
+ latest,1
6003
+ latin,1
6004
+ latino,1
6005
+ kidhar,1
6006
+ lauei,1
6007
+ aaaaaaaaaaaaaah,1
6008
+ laura,1
6009
+ lawd,1
6010
+ lawdi,1
6011
+ laying,1
6012
+ lazer,1
6013
+ lbgtq,1
6014
+ leadership,1
6015
+ leading,1
6016
+ leak,1
6017
+ leaking,1
6018
+ leap,1
6019
+ lakers,1
6020
+ lake,1
6021
+ laguardia,1
6022
+ lace,1
6023
+ kidnapped,1
6024
+ killer,1
6025
+ kinky,1
6026
+ kippah,1
6027
+ kirk,1
6028
+ km,1
6029
+ kneel,1
6030
+ kno,1
6031
+ knobheads,1
6032
+ knocked,1
6033
+ knocking,1
6034
+ knockout,1
6035
+ knoxville,1
6036
+ koality,1
6037
+ kobe,1
6038
+ kodak,1
6039
+ kodwa,1
6040
+ kongris,1
6041
+ kool,1
6042
+ koran,1
6043
+ korean,1
6044
+ kpop,1
6045
+ krueger,1
6046
+ kufi,1
6047
+ kunty,1
6048
+ kush,1
6049
+ kwispy,1
6050
+ issa,1
6051
+ israeli,1
6052
+ horrifying,1
6053
+ included,1
6054
+ immoral,1
6055
+ impedes,1
6056
+ import,1
6057
+ importance,1
6058
+ impregnable,1
6059
+ impressed,1
6060
+ impression,1
6061
+ improving,1
6062
+ inactive,1
6063
+ inbred,1
6064
+ incel,1
6065
+ incest,1
6066
+ inciting,1
6067
+ inclusive,1
6068
+ immigants,1
6069
+ incoming,1
6070
+ incredible,1
6071
+ independence,1
6072
+ independent,1
6073
+ indiana,1
6074
+ indicates,1
6075
+ indicted,1
6076
+ indigenous,1
6077
+ individuality,1
6078
+ individually,1
6079
+ indogs,1
6080
+ indoors,1
6081
+ infamous,1
6082
+ immobilized,1
6083
+ immediately,1
6084
+ isps,1
6085
+ hundred,1
6086
+ horror,1
6087
+ hospital,1
6088
+ hospitalized,1
6089
+ hotel,1
6090
+ hottest,1
6091
+ howdy,1
6092
+ howyou,1
6093
+ hu,1
6094
+ huckleberry,1
6095
+ hulk,1
6096
+ humanity,1
6097
+ humidity,1
6098
+ hunbashing,1
6099
+ hunger,1
6100
+ immature,1
6101
+ hurting,1
6102
+ iail,1
6103
+ idc,1
6104
+ identified,1
6105
+ idiotic,1
6106
+ idubbbz,1
6107
+ iffy,1
6108
+ ignored,1
6109
+ ignoring,1
6110
+ illustration,1
6111
+ ima,1
6112
+ imdb,1
6113
+ imitate,1
6114
+ inferno,1
6115
+ influenced,1
6116
+ informing,1
6117
+ inturupting,1
6118
+ intern,1
6119
+ international,1
6120
+ interracial,1
6121
+ interrupting,1
6122
+ interupting,1
6123
+ interviewer,1
6124
+ intimate,1
6125
+ intolerance,1
6126
+ intolerant,1
6127
+ intoxication,1
6128
+ introduces,1
6129
+ introducing,1
6130
+ introduction,1
6131
+ invalid,1
6132
+ infront,1
6133
+ invest,1
6134
+ investigate,1
6135
+ investing,1
6136
+ invisible,1
6137
+ iraqi,1
6138
+ irish,1
6139
+ irl,1
6140
+ iron,1
6141
+ ironed,1
6142
+ irrelevant,1
6143
+ isaak,1
6144
+ isalamabad,1
6145
+ island,1
6146
+ interference,1
6147
+ interfere,1
6148
+ interesting,1
6149
+ interest,1
6150
+ ing,1
6151
+ inhuman,1
6152
+ injection,1
6153
+ injured,1
6154
+ injury,1
6155
+ inmah,1
6156
+ inquiry,1
6157
+ insider,1
6158
+ insisted,1
6159
+ insists,1
6160
+ inspector,1
6161
+ inspects,1
6162
+ inspirational,1
6163
+ instagram,1
6164
+ install,1
6165
+ installed,1
6166
+ instill,1
6167
+ instinct,1
6168
+ institute,1
6169
+ instruction,1
6170
+ intelligent,1
6171
+ intense,1
6172
+ intensifies,1
6173
+ intentional,1
6174
+ intentionally,1
6175
+ interact,1
6176
+ interaction,1
6177
+ ω,1
static/data_sum.csv ADDED
@@ -0,0 +1,7634 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ word,count
2
+ like,636
3
+ people,594
4
+ muslim,449
5
+ get,420
6
+ black,417
7
+ white,396
8
+ one,344
9
+ see,269
10
+ look,268
11
+ make,262
12
+ time,258
13
+ want,247
14
+ go,232
15
+ woman,231
16
+ got,230
17
+ day,229
18
+ know,227
19
+ fuck,224
20
+ say,215
21
+ u,203
22
+ shit,199
23
+ man,196
24
+ goat,191
25
+ kid,191
26
+ kill,181
27
+ girl,180
28
+ new,174
29
+ think,169
30
+ ca,168
31
+ back,167
32
+ let,167
33
+ jew,166
34
+ year,161
35
+ love,159
36
+ take,158
37
+ trump,158
38
+ country,151
39
+ need,146
40
+ na,145
41
+ life,142
42
+ give,138
43
+ good,136
44
+ child,132
45
+ never,130
46
+ friend,130
47
+ come,129
48
+ said,128
49
+ right,128
50
+ guy,125
51
+ men,124
52
+ gay,124
53
+ bitch,123
54
+ fucking,122
55
+ first,122
56
+ still,122
57
+ going,121
58
+ hate,121
59
+ dishwasher,120
60
+ keep,119
61
+ way,118
62
+ america,118
63
+ tell,116
64
+ stop,115
65
+ american,113
66
+ home,112
67
+ call,112
68
+ racist,112
69
+ islam,109
70
+ stupid,106
71
+ tranny,105
72
+ told,101
73
+ would,101
74
+ gon,100
75
+ someone,99
76
+ could,99
77
+ old,95
78
+ as,94
79
+ put,93
80
+ oh,93
81
+ happy,93
82
+ boy,92
83
+ find,92
84
+ everyone,92
85
+ mean,92
86
+ even,92
87
+ baby,91
88
+ problem,91
89
+ thing,91
90
+ wife,89
91
+ school,88
92
+ trash,87
93
+ god,86
94
+ really,83
95
+ last,83
96
+ much,83
97
+ obama,81
98
+ every,80
99
+ dog,80
100
+ little,80
101
+ sex,78
102
+ bomb,77
103
+ mom,77
104
+ start,76
105
+ free,75
106
+ dick,75
107
+ car,73
108
+ well,73
109
+ better,73
110
+ im,73
111
+ something,73
112
+ democrat,73
113
+ gun,73
114
+ job,72
115
+ eat,72
116
+ jewish,71
117
+ best,71
118
+ isi,71
119
+ gas,70
120
+ ever,70
121
+ always,69
122
+ wrong,69
123
+ today,69
124
+ million,68
125
+ great,68
126
+ terrorist,68
127
+ show,66
128
+ mexican,66
129
+ getting,66
130
+ religion,65
131
+ son,65
132
+ another,65
133
+ please,64
134
+ face,64
135
+ world,63
136
+ made,63
137
+ allah,62
138
+ started,61
139
+ illegal,61
140
+ liberal,61
141
+ hand,60
142
+ work,60
143
+ play,60
144
+ run,59
145
+ meme,58
146
+ killed,58
147
+ turn,58
148
+ left,57
149
+ part,57
150
+ anything,57
151
+ president,57
152
+ difference,56
153
+ smell,56
154
+ food,56
155
+ trying,55
156
+ found,55
157
+ many,55
158
+ club,55
159
+ bad,55
160
+ feeling,55
161
+ hard,55
162
+ person,54
163
+ forget,54
164
+ dad,54
165
+ head,54
166
+ peace,53
167
+ meanwhile,53
168
+ called,53
169
+ congress,53
170
+ real,52
171
+ away,52
172
+ help,52
173
+ sure,52
174
+ hear,52
175
+ government,51
176
+ cute,51
177
+ strip,51
178
+ wait,51
179
+ talk,51
180
+ joke,51
181
+ christian,51
182
+ brother,51
183
+ rape,51
184
+ ask,50
185
+ family,50
186
+ walk,50
187
+ killing,50
188
+ matter,49
189
+ yes,49
190
+ girlfriend,49
191
+ enough,49
192
+ house,49
193
+ hey,49
194
+ feel,48
195
+ long,48
196
+ shoot,48
197
+ eye,48
198
+ post,48
199
+ remember,48
200
+ game,48
201
+ hitler,48
202
+ nothing,47
203
+ slave,47
204
+ cop,47
205
+ talking,47
206
+ monkey,47
207
+ making,46
208
+ hit,46
209
+ dont,46
210
+ party,46
211
+ suck,46
212
+ wear,46
213
+ finally,46
214
+ birthday,46
215
+ might,46
216
+ law,45
217
+ wan,45
218
+ done,45
219
+ mouth,45
220
+ believe,44
221
+ try,44
222
+ fight,44
223
+ money,44
224
+ sandwich,44
225
+ pick,44
226
+ group,43
227
+ oven,43
228
+ crime,43
229
+ race,43
230
+ fucked,43
231
+ big,43
232
+ camp,42
233
+ name,41
234
+ live,41
235
+ fucker,41
236
+ next,41
237
+ coming,40
238
+ went,40
239
+ nigger,40
240
+ nobody,40
241
+ thought,40
242
+ omar,40
243
+ color,39
244
+ fun,39
245
+ cat,39
246
+ blow,39
247
+ pregnant,39
248
+ end,39
249
+ father,39
250
+ saying,39
251
+ history,39
252
+ ilhan,39
253
+ open,38
254
+ nazi,38
255
+ may,38
256
+ actually,38
257
+ die,38
258
+ already,38
259
+ class,38
260
+ beat,38
261
+ asian,38
262
+ stole,38
263
+ must,37
264
+ born,37
265
+ stand,37
266
+ change,37
267
+ gender,37
268
+ shooting,37
269
+ pay,37
270
+ enemy,37
271
+ looking,37
272
+ yeah,36
273
+ picture,36
274
+ islamic,36
275
+ mind,36
276
+ used,36
277
+ immigrant,36
278
+ kind,36
279
+ shot,36
280
+ ai,36
281
+ bro,35
282
+ sorry,35
283
+ dark,35
284
+ damn,35
285
+ water,35
286
+ asked,35
287
+ war,35
288
+ hell,35
289
+ everything,35
290
+ full,35
291
+ africa,35
292
+ leave,35
293
+ tax,35
294
+ mental,34
295
+ two,34
296
+ crazy,34
297
+ hello,34
298
+ send,34
299
+ parent,34
300
+ attack,34
301
+ alien,34
302
+ public,34
303
+ hot,34
304
+ without,34
305
+ racism,34
306
+ chemical,33
307
+ else,33
308
+ welcome,33
309
+ use,33
310
+ polish,33
311
+ death,33
312
+ shut,33
313
+ sister,33
314
+ number,33
315
+ night,33
316
+ gave,33
317
+ remove,33
318
+ human,33
319
+ daughter,32
320
+ mother,32
321
+ ready,32
322
+ wall,32
323
+ police,32
324
+ asshole,32
325
+ laugh,32
326
+ date,31
327
+ husband,31
328
+ instead,31
329
+ share,31
330
+ refugee,31
331
+ tired,31
332
+ anyone,31
333
+ hillary,31
334
+ special,30
335
+ street,30
336
+ retarded,30
337
+ walmart,30
338
+ photo,30
339
+ transgender,30
340
+ ya,30
341
+ cotton,30
342
+ agree,30
343
+ brain,30
344
+ maker,30
345
+ vegetable,30
346
+ power,30
347
+ watch,30
348
+ slavery,30
349
+ room,30
350
+ beautiful,30
351
+ jesus,30
352
+ yo,30
353
+ diaper,30
354
+ suicide,30
355
+ funny,29
356
+ news,29
357
+ african,29
358
+ border,29
359
+ around,29
360
+ question,29
361
+ porn,29
362
+ thats,29
363
+ cry,29
364
+ mad,29
365
+ steal,29
366
+ behind,29
367
+ pull,28
368
+ wearing,28
369
+ ugly,28
370
+ taking,28
371
+ dead,28
372
+ culture,28
373
+ pride,28
374
+ security,28
375
+ neighbor,28
376
+ become,28
377
+ since,28
378
+ pig,28
379
+ okay,28
380
+ place,28
381
+ allowed,28
382
+ female,28
383
+ buy,28
384
+ month,28
385
+ holocaust,28
386
+ nation,28
387
+ offended,28
388
+ indian,28
389
+ red,27
390
+ broken,27
391
+ thinking,27
392
+ catch,27
393
+ drink,27
394
+ medium,27
395
+ lol,27
396
+ ban,27
397
+ died,27
398
+ support,27
399
+ cause,27
400
+ republican,27
401
+ ice,27
402
+ inside,27
403
+ care,27
404
+ hope,27
405
+ smile,27
406
+ bill,26
407
+ lie,26
408
+ later,26
409
+ lady,26
410
+ side,26
411
+ maybe,26
412
+ immigration,26
413
+ came,26
414
+ fuckin,26
415
+ married,26
416
+ bag,26
417
+ lost,26
418
+ week,26
419
+ control,26
420
+ probably,26
421
+ phone,26
422
+ high,25
423
+ bacon,25
424
+ ta,25
425
+ grow,25
426
+ treat,25
427
+ seen,25
428
+ learn,25
429
+ hair,25
430
+ also,25
431
+ guess,25
432
+ flag,25
433
+ beer,25
434
+ kitchen,25
435
+ move,25
436
+ mosque,25
437
+ skin,25
438
+ animal,25
439
+ working,25
440
+ idea,25
441
+ dude,25
442
+ vote,25
443
+ understand,25
444
+ ok,25
445
+ illegals,25
446
+ asks,24
447
+ destroy,24
448
+ bring,24
449
+ fire,24
450
+ michelle,24
451
+ future,24
452
+ trans,24
453
+ auschwitz,24
454
+ drop,24
455
+ potato,24
456
+ everybody,24
457
+ motherfucker,24
458
+ bar,24
459
+ teacher,24
460
+ master,24
461
+ pussy,24
462
+ sense,23
463
+ le,23
464
+ terrorism,23
465
+ happen,23
466
+ ex,23
467
+ mohammed,23
468
+ lot,23
469
+ favorite,23
470
+ drive,23
471
+ election,23
472
+ land,23
473
+ cock,23
474
+ coffee,23
475
+ throw,23
476
+ truck,23
477
+ pet,23
478
+ yet,23
479
+ frank,23
480
+ clinton,23
481
+ normal,23
482
+ anne,23
483
+ homeland,23
484
+ single,23
485
+ follow,23
486
+ donald,23
487
+ owner,23
488
+ chicken,22
489
+ idiot,22
490
+ chinese,22
491
+ pray,22
492
+ blind,22
493
+ trust,22
494
+ nut,22
495
+ pretty,22
496
+ jenner,22
497
+ wanted,22
498
+ giving,22
499
+ least,22
500
+ chick,22
501
+ eating,22
502
+ lesbian,22
503
+ nice,22
504
+ word,22
505
+ safe,22
506
+ whole,22
507
+ second,22
508
+ realize,22
509
+ humor,21
510
+ light,21
511
+ choice,21
512
+ shooter,21
513
+ abortion,21
514
+ supporter,21
515
+ different,21
516
+ male,21
517
+ moment,21
518
+ radical,21
519
+ rapist,21
520
+ finger,21
521
+ offensive,21
522
+ fat,21
523
+ hour,21
524
+ telling,21
525
+ horse,21
526
+ fear,21
527
+ clean,21
528
+ peaceful,21
529
+ act,21
530
+ hold,21
531
+ evil,21
532
+ usa,21
533
+ ape,21
534
+ hurt,21
535
+ outside,21
536
+ answer,21
537
+ anymore,21
538
+ card,21
539
+ win,20
540
+ taste,20
541
+ speak,20
542
+ reason,20
543
+ sleep,20
544
+ squad,20
545
+ ball,20
546
+ stuff,20
547
+ sale,20
548
+ anal,20
549
+ dress,20
550
+ v,20
551
+ juice,20
552
+ tv,20
553
+ drug,20
554
+ christmas,20
555
+ belong,20
556
+ breaking,20
557
+ soldier,20
558
+ celebrate,20
559
+ heard,20
560
+ half,20
561
+ ur,20
562
+ cant,20
563
+ piss,20
564
+ sound,19
565
+ fix,19
566
+ truth,19
567
+ straight,19
568
+ watching,19
569
+ friday,19
570
+ bringing,19
571
+ alone,19
572
+ hide,19
573
+ using,19
574
+ pic,19
575
+ jail,19
576
+ dinner,19
577
+ israel,19
578
+ rice,19
579
+ letter,19
580
+ together,19
581
+ point,19
582
+ door,19
583
+ victim,19
584
+ imagine,19
585
+ load,19
586
+ city,19
587
+ bruce,19
588
+ loses,19
589
+ either,19
590
+ building,19
591
+ listen,18
592
+ wo,18
593
+ book,18
594
+ sick,18
595
+ moderate,18
596
+ chamber,18
597
+ savage,18
598
+ cool,18
599
+ dollar,18
600
+ step,18
601
+ wing,18
602
+ met,18
603
+ piece,18
604
+ ford,18
605
+ heaven,18
606
+ disorder,18
607
+ protect,18
608
+ driver,18
609
+ equal,18
610
+ dirty,18
611
+ putting,18
612
+ wish,18
613
+ bat,18
614
+ small,18
615
+ report,18
616
+ farm,18
617
+ sea,18
618
+ greatest,18
619
+ turkey,18
620
+ punch,18
621
+ proof,18
622
+ middle,18
623
+ innocent,18
624
+ claim,18
625
+ shower,17
626
+ cut,17
627
+ glass,17
628
+ lose,17
629
+ criminal,17
630
+ german,17
631
+ three,17
632
+ remind,17
633
+ top,17
634
+ four,17
635
+ hole,17
636
+ neighborhood,17
637
+ sign,17
638
+ daddy,17
639
+ lord,17
640
+ star,17
641
+ member,17
642
+ order,17
643
+ fly,17
644
+ took,17
645
+ choose,17
646
+ christchurch,17
647
+ fish,17
648
+ smoke,17
649
+ twice,17
650
+ attention,17
651
+ whats,17
652
+ respect,17
653
+ burn,17
654
+ violence,17
655
+ hijab,17
656
+ stay,17
657
+ page,17
658
+ secret,17
659
+ rashida,17
660
+ deserve,17
661
+ thanks,17
662
+ brings,17
663
+ virgin,17
664
+ march,17
665
+ apparently,17
666
+ rich,16
667
+ unarmed,16
668
+ body,16
669
+ strong,16
670
+ dumb,16
671
+ solution,16
672
+ deal,16
673
+ blame,16
674
+ church,16
675
+ waiting,16
676
+ poor,16
677
+ pizza,16
678
+ size,16
679
+ hooker,16
680
+ sold,16
681
+ mass,16
682
+ idk,16
683
+ dry,16
684
+ fresh,16
685
+ tit,16
686
+ kick,16
687
+ stolen,16
688
+ tyrone,16
689
+ read,16
690
+ citizen,16
691
+ pudding,16
692
+ tried,16
693
+ broke,16
694
+ hi,16
695
+ knew,16
696
+ begin,16
697
+ pant,16
698
+ panty,16
699
+ required,16
700
+ heart,16
701
+ lying,16
702
+ sharia,16
703
+ past,16
704
+ clear,16
705
+ test,16
706
+ young,16
707
+ germany,16
708
+ cancer,16
709
+ rock,16
710
+ story,16
711
+ minute,16
712
+ join,16
713
+ pedophile,16
714
+ gorilla,16
715
+ voter,15
716
+ abuse,15
717
+ arrest,15
718
+ gift,15
719
+ officer,15
720
+ milk,15
721
+ baked,15
722
+ missing,15
723
+ drunk,15
724
+ arrested,15
725
+ sell,15
726
+ hungry,15
727
+ happens,15
728
+ except,15
729
+ european,15
730
+ burning,15
731
+ prison,15
732
+ defund,15
733
+ line,15
734
+ russian,15
735
+ build,15
736
+ close,15
737
+ feminist,15
738
+ uncle,15
739
+ summer,15
740
+ meet,15
741
+ plane,15
742
+ folk,15
743
+ dream,15
744
+ weapon,15
745
+ naked,15
746
+ raped,15
747
+ sir,15
748
+ simple,15
749
+ fit,15
750
+ pool,15
751
+ fighting,15
752
+ accept,15
753
+ tlaib,15
754
+ equipment,15
755
+ slow,15
756
+ military,15
757
+ front,15
758
+ morning,15
759
+ devil,15
760
+ created,14
761
+ ham,14
762
+ playing,14
763
+ stealing,14
764
+ park,14
765
+ homosexual,14
766
+ stoned,14
767
+ cake,14
768
+ speech,14
769
+ green,14
770
+ aid,14
771
+ cum,14
772
+ ago,14
773
+ adult,14
774
+ sport,14
775
+ starving,14
776
+ minority,14
777
+ within,14
778
+ true,14
779
+ weird,14
780
+ teach,14
781
+ prayer,14
782
+ marriage,14
783
+ wind,14
784
+ student,14
785
+ trouble,14
786
+ noise,14
787
+ state,14
788
+ result,14
789
+ privilege,14
790
+ fluffy,14
791
+ whatever,14
792
+ forgotten,14
793
+ nahir,14
794
+ road,14
795
+ forced,14
796
+ foot,14
797
+ sad,14
798
+ cheating,14
799
+ birth,14
800
+ july,14
801
+ important,14
802
+ wonder,14
803
+ extra,14
804
+ blood,14
805
+ team,14
806
+ service,14
807
+ turned,14
808
+ cook,14
809
+ disgusting,14
810
+ living,13
811
+ mohammad,13
812
+ video,13
813
+ excited,13
814
+ century,13
815
+ soon,13
816
+ yard,13
817
+ paid,13
818
+ hardest,13
819
+ national,13
820
+ alabama,13
821
+ check,13
822
+ faggot,13
823
+ arm,13
824
+ weekend,13
825
+ cracker,13
826
+ spending,13
827
+ soul,13
828
+ literally,13
829
+ hater,13
830
+ fan,13
831
+ sexual,13
832
+ sometimes,13
833
+ serious,13
834
+ commit,13
835
+ murder,13
836
+ holding,13
837
+ break,13
838
+ awesome,13
839
+ acting,13
840
+ drinking,13
841
+ illness,13
842
+ period,13
843
+ office,13
844
+ offer,13
845
+ smart,13
846
+ sucking,13
847
+ completely,13
848
+ deep,13
849
+ mexico,13
850
+ thank,13
851
+ rid,13
852
+ sit,13
853
+ gone,13
854
+ almost,13
855
+ hang,13
856
+ miss,13
857
+ store,13
858
+ japanese,13
859
+ built,13
860
+ chocolate,13
861
+ silk,13
862
+ low,13
863
+ akbar,13
864
+ form,13
865
+ common,12
866
+ zealand,12
867
+ town,12
868
+ mess,12
869
+ excuse,12
870
+ mohamed,12
871
+ touch,12
872
+ everywhere,12
873
+ longer,12
874
+ meat,12
875
+ spell,12
876
+ bus,12
877
+ decide,12
878
+ dear,12
879
+ brown,12
880
+ raise,12
881
+ rare,12
882
+ internet,12
883
+ negro,12
884
+ somebody,12
885
+ cost,12
886
+ ride,12
887
+ pissed,12
888
+ notice,12
889
+ walking,12
890
+ bit,12
891
+ sitting,12
892
+ retard,12
893
+ outta,12
894
+ case,12
895
+ though,12
896
+ amazing,12
897
+ hump,12
898
+ blowjob,12
899
+ blue,12
900
+ yelling,12
901
+ hurry,12
902
+ cousin,12
903
+ wipe,12
904
+ silent,12
905
+ tree,12
906
+ shame,12
907
+ fluid,12
908
+ mueller,12
909
+ king,12
910
+ arab,12
911
+ alive,12
912
+ sun,12
913
+ running,12
914
+ wedding,12
915
+ fine,11
916
+ entire,11
917
+ email,11
918
+ expected,11
919
+ cowboy,11
920
+ chime,11
921
+ funeral,11
922
+ chevy,11
923
+ protesting,11
924
+ floor,11
925
+ stick,11
926
+ center,11
927
+ candle,11
928
+ goal,11
929
+ christ,11
930
+ crack,11
931
+ ernie,11
932
+ target,11
933
+ europe,11
934
+ pork,11
935
+ push,11
936
+ credit,11
937
+ picked,11
938
+ cent,11
939
+ genocide,11
940
+ accident,11
941
+ teeth,11
942
+ realized,11
943
+ holiday,11
944
+ kiss,11
945
+ kinda,11
946
+ kenyan,11
947
+ belief,11
948
+ nevermind,11
949
+ billion,11
950
+ angry,11
951
+ restaurant,11
952
+ rest,11
953
+ ancestor,11
954
+ till,11
955
+ blast,11
956
+ disease,11
957
+ ignorant,11
958
+ cold,11
959
+ voting,11
960
+ voted,11
961
+ snake,11
962
+ snort,11
963
+ socialist,11
964
+ bos,11
965
+ knock,11
966
+ concentration,11
967
+ type,11
968
+ community,11
969
+ saw,11
970
+ attacking,11
971
+ meth,11
972
+ scientist,11
973
+ average,11
974
+ mark,11
975
+ makeup,11
976
+ midget,11
977
+ wheelchair,11
978
+ lunch,11
979
+ weed,11
980
+ self,11
981
+ asking,11
982
+ mistake,11
983
+ mix,11
984
+ modern,11
985
+ sent,11
986
+ demand,11
987
+ level,11
988
+ army,11
989
+ boyfriend,11
990
+ short,11
991
+ bullshit,11
992
+ rebuilt,11
993
+ british,11
994
+ hebrew,11
995
+ starting,11
996
+ ahmed,11
997
+ harder,11
998
+ record,11
999
+ specie,11
1000
+ wave,10
1001
+ hating,10
1002
+ muddin,10
1003
+ became,10
1004
+ chance,10
1005
+ accepted,10
1006
+ bread,10
1007
+ yall,10
1008
+ bear,10
1009
+ rule,10
1010
+ beach,10
1011
+ bed,10
1012
+ kfc,10
1013
+ muhammad,10
1014
+ murdered,10
1015
+ laundry,10
1016
+ glad,10
1017
+ music,10
1018
+ apple,10
1019
+ train,10
1020
+ role,10
1021
+ quick,10
1022
+ fool,10
1023
+ celebrating,10
1024
+ natural,10
1025
+ jaw,10
1026
+ jamal,10
1027
+ comment,10
1028
+ leader,10
1029
+ bathroom,10
1030
+ bank,10
1031
+ sarsour,10
1032
+ grandma,10
1033
+ mentally,10
1034
+ marrying,10
1035
+ whenever,10
1036
+ ethiopian,10
1037
+ safety,10
1038
+ mine,10
1039
+ cooker,10
1040
+ lonely,10
1041
+ mississippi,10
1042
+ air,10
1043
+ gold,10
1044
+ lit,10
1045
+ exist,10
1046
+ pushing,10
1047
+ linda,10
1048
+ seriously,10
1049
+ delicious,10
1050
+ happened,10
1051
+ arrived,10
1052
+ russia,10
1053
+ education,10
1054
+ chewbacca,10
1055
+ leg,10
1056
+ rate,10
1057
+ dating,10
1058
+ sweet,10
1059
+ bastard,10
1060
+ issue,10
1061
+ speed,10
1062
+ mein,10
1063
+ bombing,10
1064
+ vagina,10
1065
+ nuclear,10
1066
+ cunt,10
1067
+ frankly,10
1068
+ worse,10
1069
+ box,10
1070
+ bowl,10
1071
+ blew,10
1072
+ insult,10
1073
+ bow,10
1074
+ stone,10
1075
+ ordered,10
1076
+ bomber,10
1077
+ honor,10
1078
+ fruit,10
1079
+ driving,10
1080
+ racing,10
1081
+ plan,10
1082
+ return,10
1083
+ throwing,10
1084
+ add,10
1085
+ camel,10
1086
+ bike,10
1087
+ hiding,10
1088
+ stopped,10
1089
+ canada,10
1090
+ require,10
1091
+ paper,10
1092
+ domestic,10
1093
+ north,10
1094
+ doctor,9
1095
+ hanging,9
1096
+ hunting,9
1097
+ local,9
1098
+ exemption,9
1099
+ swim,9
1100
+ handjobs,9
1101
+ facebook,9
1102
+ lemon,9
1103
+ hung,9
1104
+ f,9
1105
+ conservative,9
1106
+ expect,9
1107
+ mixed,9
1108
+ socialism,9
1109
+ expensive,9
1110
+ planet,9
1111
+ gang,9
1112
+ diversity,9
1113
+ lock,9
1114
+ butt,9
1115
+ whore,9
1116
+ perfect,9
1117
+ twin,9
1118
+ others,9
1119
+ marry,9
1120
+ cocaine,9
1121
+ martin,9
1122
+ ash,9
1123
+ wwii,9
1124
+ autistic,9
1125
+ scared,9
1126
+ english,9
1127
+ proud,9
1128
+ overcome,9
1129
+ guard,9
1130
+ bunch,9
1131
+ hoe,9
1132
+ escape,9
1133
+ per,9
1134
+ saggin,9
1135
+ ass,9
1136
+ hindu,9
1137
+ seeing,9
1138
+ double,9
1139
+ abdul,9
1140
+ promised,9
1141
+ ten,9
1142
+ golf,9
1143
+ degree,9
1144
+ west,9
1145
+ doesnt,9
1146
+ selfie,9
1147
+ somewhere,9
1148
+ omg,9
1149
+ cross,9
1150
+ wake,9
1151
+ pushed,9
1152
+ challenge,9
1153
+ supposed,9
1154
+ fraud,9
1155
+ poverty,9
1156
+ earth,9
1157
+ flower,9
1158
+ shoe,9
1159
+ suddenly,9
1160
+ n,9
1161
+ tire,9
1162
+ shop,9
1163
+ grab,9
1164
+ bird,9
1165
+ paying,9
1166
+ r,9
1167
+ jump,9
1168
+ john,9
1169
+ joe,9
1170
+ given,9
1171
+ force,9
1172
+ colorized,9
1173
+ needed,9
1174
+ foreign,9
1175
+ sink,9
1176
+ pound,9
1177
+ japan,9
1178
+ caught,9
1179
+ duty,9
1180
+ healthcare,9
1181
+ watermelon,9
1182
+ view,9
1183
+ crap,9
1184
+ da,9
1185
+ toilet,9
1186
+ hero,9
1187
+ penis,9
1188
+ economy,9
1189
+ fast,9
1190
+ lead,9
1191
+ armed,9
1192
+ fb,9
1193
+ fbi,9
1194
+ fishing,9
1195
+ bob,9
1196
+ yr,9
1197
+ argument,9
1198
+ felt,9
1199
+ tragedy,9
1200
+ poke,9
1201
+ style,9
1202
+ pee,9
1203
+ patient,9
1204
+ accidentally,9
1205
+ knowing,9
1206
+ finished,9
1207
+ easy,8
1208
+ trailer,8
1209
+ texas,8
1210
+ cult,8
1211
+ complete,8
1212
+ democratic,8
1213
+ tonight,8
1214
+ cow,8
1215
+ count,8
1216
+ unclean,8
1217
+ east,8
1218
+ dat,8
1219
+ thanksgiving,8
1220
+ em,8
1221
+ company,8
1222
+ egg,8
1223
+ terrible,8
1224
+ uber,8
1225
+ didnt,8
1226
+ slip,8
1227
+ kkk,8
1228
+ orange,8
1229
+ wine,8
1230
+ india,8
1231
+ including,8
1232
+ improvise,8
1233
+ ill,8
1234
+ rise,8
1235
+ ring,8
1236
+ non,8
1237
+ offends,8
1238
+ older,8
1239
+ social,8
1240
+ bought,8
1241
+ ray,8
1242
+ hmmm,8
1243
+ somehow,8
1244
+ violent,8
1245
+ highest,8
1246
+ passed,8
1247
+ space,8
1248
+ halloween,8
1249
+ spot,8
1250
+ ahead,8
1251
+ ah,8
1252
+ business,8
1253
+ muhammed,8
1254
+ intelligence,8
1255
+ interview,8
1256
+ movie,8
1257
+ wheel,8
1258
+ seek,8
1259
+ backwards,8
1260
+ selling,8
1261
+ list,8
1262
+ barack,8
1263
+ barn,8
1264
+ automatic,8
1265
+ lazy,8
1266
+ sexy,8
1267
+ language,8
1268
+ medicine,8
1269
+ sheep,8
1270
+ message,8
1271
+ ate,8
1272
+ assault,8
1273
+ kept,8
1274
+ behead,8
1275
+ wasted,8
1276
+ justin,8
1277
+ mock,8
1278
+ sin,8
1279
+ bigger,8
1280
+ pew,8
1281
+ worst,8
1282
+ raw,8
1283
+ forgot,8
1284
+ sunday,8
1285
+ chain,8
1286
+ adapt,8
1287
+ poland,8
1288
+ politics,8
1289
+ across,8
1290
+ poop,8
1291
+ pop,8
1292
+ feed,8
1293
+ swallow,8
1294
+ quran,8
1295
+ york,8
1296
+ present,8
1297
+ unless,8
1298
+ taco,8
1299
+ taken,8
1300
+ evolution,8
1301
+ zionist,8
1302
+ tattoo,8
1303
+ christianity,8
1304
+ england,8
1305
+ planned,8
1306
+ figure,8
1307
+ magic,8
1308
+ strength,8
1309
+ raping,8
1310
+ pink,8
1311
+ frame,8
1312
+ vaccination,8
1313
+ canadian,8
1314
+ gamer,8
1315
+ candy,8
1316
+ afraid,8
1317
+ pipe,8
1318
+ calling,8
1319
+ range,8
1320
+ rat,8
1321
+ deaf,7
1322
+ decent,7
1323
+ michael,7
1324
+ sand,7
1325
+ price,7
1326
+ peanut,7
1327
+ save,7
1328
+ math,7
1329
+ saving,7
1330
+ princess,7
1331
+ cream,7
1332
+ toy,7
1333
+ masturbate,7
1334
+ promise,7
1335
+ scout,7
1336
+ scream,7
1337
+ prostitute,7
1338
+ protest,7
1339
+ crisis,7
1340
+ prove,7
1341
+ trip,7
1342
+ cup,7
1343
+ practice,7
1344
+ removed,7
1345
+ rev,7
1346
+ played,7
1347
+ cover,7
1348
+ neck,7
1349
+ nativity,7
1350
+ opening,7
1351
+ native,7
1352
+ rolling,7
1353
+ raised,7
1354
+ orgasm,7
1355
+ rose,7
1356
+ reminder,7
1357
+ saddle,7
1358
+ creates,7
1359
+ screaming,7
1360
+ mountain,7
1361
+ trade,7
1362
+ morgan,7
1363
+ pill,7
1364
+ monday,7
1365
+ momma,7
1366
+ dawg,7
1367
+ oil,7
1368
+ reich,7
1369
+ tribe,7
1370
+ empty,7
1371
+ lgbt,7
1372
+ letting,7
1373
+ e,7
1374
+ forward,7
1375
+ suffering,7
1376
+ french,7
1377
+ fridge,7
1378
+ stronger,7
1379
+ generation,7
1380
+ dropped,7
1381
+ ginger,7
1382
+ stevie,7
1383
+ steak,7
1384
+ theft,7
1385
+ status,7
1386
+ grande,7
1387
+ grocery,7
1388
+ squirter,7
1389
+ harvey,7
1390
+ south,7
1391
+ heroin,7
1392
+ early,7
1393
+ forever,7
1394
+ foil,7
1395
+ terror,7
1396
+ enjoying,7
1397
+ escaping,7
1398
+ everyday,7
1399
+ tall,7
1400
+ elected,7
1401
+ term,7
1402
+ table,7
1403
+ fact,7
1404
+ edition,7
1405
+ easier,7
1406
+ fake,7
1407
+ swear,7
1408
+ fashion,7
1409
+ eats,7
1410
+ field,7
1411
+ five,7
1412
+ fixed,7
1413
+ flat,7
1414
+ holy,7
1415
+ homeless,7
1416
+ third,7
1417
+ titty,7
1418
+ showing,7
1419
+ diary,7
1420
+ shoulder,7
1421
+ keeping,7
1422
+ kicked,7
1423
+ engine,7
1424
+ destruction,7
1425
+ shes,7
1426
+ destroyed,7
1427
+ iq,7
1428
+ knowledge,7
1429
+ shawarma,7
1430
+ shave,7
1431
+ late,7
1432
+ shade,7
1433
+ leaf,7
1434
+ learned,7
1435
+ several,7
1436
+ jihad,7
1437
+ invited,7
1438
+ honey,7
1439
+ threatened,7
1440
+ society,7
1441
+ dna,7
1442
+ snow,7
1443
+ hunt,7
1444
+ thousand,7
1445
+ divide,7
1446
+ snap,7
1447
+ threat,7
1448
+ district,7
1449
+ invite,7
1450
+ identify,7
1451
+ snack,7
1452
+ impeach,7
1453
+ impress,7
1454
+ slut,7
1455
+ infidel,7
1456
+ slap,7
1457
+ invasion,7
1458
+ study,7
1459
+ proving,7
1460
+ action,7
1461
+ banned,7
1462
+ afford,7
1463
+ adding,7
1464
+ biggest,7
1465
+ ariana,7
1466
+ bull,7
1467
+ commie,7
1468
+ absolutely,7
1469
+ upset,7
1470
+ anybody,7
1471
+ april,7
1472
+ champion,7
1473
+ bullet,7
1474
+ constitution,7
1475
+ burned,7
1476
+ chase,7
1477
+ beard,7
1478
+ actual,7
1479
+ able,7
1480
+ bet,7
1481
+ booty,7
1482
+ un,7
1483
+ alcohol,7
1484
+ blowing,7
1485
+ chicago,7
1486
+ yesterday,7
1487
+ burnt,7
1488
+ warm,7
1489
+ walked,7
1490
+ bang,7
1491
+ attached,7
1492
+ bout,7
1493
+ b,7
1494
+ uk,7
1495
+ belt,7
1496
+ breed,7
1497
+ clothes,7
1498
+ wash,7
1499
+ allahu,7
1500
+ bell,7
1501
+ benefit,7
1502
+ al,7
1503
+ yell,7
1504
+ chromosome,7
1505
+ allegiance,7
1506
+ position,6
1507
+ set,6
1508
+ korea,6
1509
+ former,6
1510
+ decade,6
1511
+ spend,6
1512
+ lick,6
1513
+ serving,6
1514
+ roof,6
1515
+ dozen,6
1516
+ bartender,6
1517
+ iran,6
1518
+ ankle,6
1519
+ accused,6
1520
+ healthy,6
1521
+ stamp,6
1522
+ quite,6
1523
+ board,6
1524
+ weak,6
1525
+ condom,6
1526
+ barbecue,6
1527
+ population,6
1528
+ krispies,6
1529
+ queen,6
1530
+ musslamic,6
1531
+ beauty,6
1532
+ pope,6
1533
+ caucasian,6
1534
+ faster,6
1535
+ specific,6
1536
+ ground,6
1537
+ mayo,6
1538
+ snowflake,6
1539
+ quickly,6
1540
+ sober,6
1541
+ invading,6
1542
+ supremacist,6
1543
+ dreaming,6
1544
+ guilty,6
1545
+ praise,6
1546
+ he,6
1547
+ barely,6
1548
+ beating,6
1549
+ hundred,6
1550
+ youth,6
1551
+ housing,6
1552
+ none,6
1553
+ goon,6
1554
+ six,6
1555
+ maga,6
1556
+ estate,6
1557
+ lifestyle,6
1558
+ sandy,6
1559
+ de,6
1560
+ powder,6
1561
+ chef,6
1562
+ chosen,6
1563
+ mashed,6
1564
+ hammer,6
1565
+ rather,6
1566
+ toe,6
1567
+ deportable,6
1568
+ syrian,6
1569
+ commercial,6
1570
+ super,6
1571
+ infiltrated,6
1572
+ suicidal,6
1573
+ wonderful,6
1574
+ leaving,6
1575
+ rally,6
1576
+ explain,6
1577
+ pile,6
1578
+ often,6
1579
+ plastic,6
1580
+ swimming,6
1581
+ implant,6
1582
+ shake,6
1583
+ handed,6
1584
+ whip,6
1585
+ amused,6
1586
+ freedom,6
1587
+ disability,6
1588
+ manual,6
1589
+ fox,6
1590
+ golden,6
1591
+ ocean,6
1592
+ tag,6
1593
+ suffer,6
1594
+ window,6
1595
+ rating,6
1596
+ evolved,6
1597
+ shape,6
1598
+ chip,6
1599
+ total,6
1600
+ spinner,6
1601
+ defend,6
1602
+ reach,6
1603
+ compare,6
1604
+ november,6
1605
+ l,6
1606
+ political,6
1607
+ definitely,6
1608
+ subway,6
1609
+ agent,6
1610
+ policy,6
1611
+ agenda,6
1612
+ lab,6
1613
+ slam,6
1614
+ image,6
1615
+ lack,6
1616
+ adam,6
1617
+ added,6
1618
+ science,6
1619
+ legally,6
1620
+ tone,6
1621
+ tomorrow,6
1622
+ sexbomb,6
1623
+ smoking,6
1624
+ threesome,6
1625
+ goddamn,6
1626
+ google,6
1627
+ sympathizer,6
1628
+ ant,6
1629
+ chill,6
1630
+ gary,6
1631
+ homosexuality,6
1632
+ nein,6
1633
+ neither,6
1634
+ enjoy,6
1635
+ seem,6
1636
+ lmao,6
1637
+ visit,6
1638
+ crackas,6
1639
+ tuesday,6
1640
+ treasure,6
1641
+ fetus,6
1642
+ bored,6
1643
+ jackson,6
1644
+ homicide,6
1645
+ homie,6
1646
+ earn,6
1647
+ spastic,6
1648
+ text,6
1649
+ grass,6
1650
+ purchase,6
1651
+ refuse,6
1652
+ similar,6
1653
+ stare,6
1654
+ cringe,6
1655
+ kidding,6
1656
+ area,6
1657
+ dying,6
1658
+ satan,6
1659
+ course,6
1660
+ logic,6
1661
+ surprise,6
1662
+ protection,6
1663
+ trudeau,6
1664
+ loud,6
1665
+ seizure,6
1666
+ station,6
1667
+ shovel,6
1668
+ judge,6
1669
+ cooking,6
1670
+ soup,6
1671
+ coolant,6
1672
+ hill,6
1673
+ june,6
1674
+ worship,6
1675
+ elect,6
1676
+ busy,6
1677
+ moral,6
1678
+ overheats,6
1679
+ prophet,6
1680
+ corrupt,6
1681
+ trick,6
1682
+ proper,6
1683
+ jewelry,6
1684
+ film,6
1685
+ grand,6
1686
+ bert,6
1687
+ arguing,6
1688
+ cinco,6
1689
+ pretend,6
1690
+ river,6
1691
+ cure,6
1692
+ hook,6
1693
+ romania,6
1694
+ careful,6
1695
+ ship,6
1696
+ wax,6
1697
+ fell,6
1698
+ clock,6
1699
+ bee,6
1700
+ greeting,6
1701
+ wayment,6
1702
+ nibba,6
1703
+ garbage,6
1704
+ horrible,6
1705
+ transphobic,6
1706
+ redneck,6
1707
+ anti,6
1708
+ august,6
1709
+ preserve,6
1710
+ along,6
1711
+ liquor,6
1712
+ honest,6
1713
+ killer,6
1714
+ london,5
1715
+ mandatory,5
1716
+ voice,5
1717
+ ultimate,5
1718
+ forest,5
1719
+ flavor,5
1720
+ manditory,5
1721
+ hispanic,5
1722
+ harambe,5
1723
+ helping,5
1724
+ dust,5
1725
+ wondering,5
1726
+ mile,5
1727
+ dish,5
1728
+ horny,5
1729
+ collapse,5
1730
+ heat,5
1731
+ helped,5
1732
+ lil,5
1733
+ sentence,5
1734
+ age,5
1735
+ legal,5
1736
+ soap,5
1737
+ adopted,5
1738
+ balcony,5
1739
+ murdering,5
1740
+ religious,5
1741
+ bake,5
1742
+ happiness,5
1743
+ mum,5
1744
+ sugar,5
1745
+ forehead,5
1746
+ direction,5
1747
+ tight,5
1748
+ loved,5
1749
+ tail,5
1750
+ smash,5
1751
+ college,5
1752
+ minor,5
1753
+ bride,5
1754
+ stir,5
1755
+ upper,5
1756
+ separately,5
1757
+ collusion,5
1758
+ pack,5
1759
+ civil,5
1760
+ flush,5
1761
+ wet,5
1762
+ follower,5
1763
+ research,5
1764
+ nail,5
1765
+ brought,5
1766
+ palestine,5
1767
+ sammich,5
1768
+ af,5
1769
+ hotline,5
1770
+ official,5
1771
+ united,5
1772
+ breath,5
1773
+ health,5
1774
+ fought,5
1775
+ gettin,5
1776
+ luck,5
1777
+ hitting,5
1778
+ c,5
1779
+ boob,5
1780
+ clue,5
1781
+ senior,5
1782
+ harry,5
1783
+ seat,5
1784
+ winner,5
1785
+ ear,5
1786
+ vitiligo,5
1787
+ down,5
1788
+ distance,5
1789
+ x,5
1790
+ choke,5
1791
+ reading,5
1792
+ original,5
1793
+ winter,5
1794
+ lesson,5
1795
+ bottle,5
1796
+ tank,5
1797
+ identity,5
1798
+ reality,5
1799
+ lgbtq,5
1800
+ hungerstruck,5
1801
+ patriarchy,5
1802
+ dose,5
1803
+ dy,5
1804
+ wtf,5
1805
+ penny,5
1806
+ patience,5
1807
+ welfare,5
1808
+ calculator,5
1809
+ sanctuary,5
1810
+ boner,5
1811
+ tap,5
1812
+ patriot,5
1813
+ hat,5
1814
+ represents,5
1815
+ lyin,5
1816
+ dnc,5
1817
+ luther,5
1818
+ seatbelt,5
1819
+ humanity,5
1820
+ bloody,5
1821
+ senate,5
1822
+ loaf,5
1823
+ britain,5
1824
+ classic,5
1825
+ lucky,5
1826
+ recipe,5
1827
+ forgive,5
1828
+ navy,5
1829
+ salty,5
1830
+ coke,5
1831
+ aint,5
1832
+ salute,5
1833
+ brand,5
1834
+ pelosi,5
1835
+ span,5
1836
+ eastern,5
1837
+ wood,5
1838
+ scum,5
1839
+ muscle,5
1840
+ reaction,5
1841
+ visiting,5
1842
+ lived,5
1843
+ downer,5
1844
+ dumbass,5
1845
+ livestock,5
1846
+ bachelor,5
1847
+ caitlyn,5
1848
+ partner,5
1849
+ nasa,5
1850
+ phobia,5
1851
+ microwave,5
1852
+ ed,5
1853
+ responsibility,5
1854
+ relax,5
1855
+ rap,5
1856
+ farming,5
1857
+ punching,5
1858
+ james,5
1859
+ arent,5
1860
+ treated,5
1861
+ gum,5
1862
+ according,5
1863
+ tractor,5
1864
+ dated,5
1865
+ invade,5
1866
+ invader,5
1867
+ adopt,5
1868
+ wallet,5
1869
+ invention,5
1870
+ pro,5
1871
+ dare,5
1872
+ scarecrow,5
1873
+ meeting,5
1874
+ consider,5
1875
+ australia,5
1876
+ dangerous,5
1877
+ pump,5
1878
+ squirrel,5
1879
+ positive,5
1880
+ frog,5
1881
+ stephen,5
1882
+ couple,5
1883
+ neighbour,5
1884
+ puff,5
1885
+ coverage,5
1886
+ friendly,5
1887
+ israeli,5
1888
+ pug,5
1889
+ pulled,5
1890
+ friendship,5
1891
+ uno,5
1892
+ nose,5
1893
+ gear,5
1894
+ fifth,5
1895
+ fall,5
1896
+ warning,5
1897
+ provide,5
1898
+ towel,5
1899
+ profile,5
1900
+ rude,5
1901
+ signal,5
1902
+ chew,5
1903
+ bible,5
1904
+ shirt,5
1905
+ buried,5
1906
+ confused,5
1907
+ shitty,5
1908
+ travel,5
1909
+ abomination,5
1910
+ cuddle,5
1911
+ academy,5
1912
+ congratulation,5
1913
+ survivor,5
1914
+ investigation,5
1915
+ burka,5
1916
+ survive,5
1917
+ islamophobia,5
1918
+ simulator,5
1919
+ crotch,5
1920
+ crossing,5
1921
+ simply,5
1922
+ standing,5
1923
+ criticizing,5
1924
+ puppy,5
1925
+ bigot,5
1926
+ confident,5
1927
+ medical,5
1928
+ queer,5
1929
+ accidently,5
1930
+ answering,5
1931
+ mmmm,5
1932
+ meant,5
1933
+ stair,5
1934
+ praying,5
1935
+ fault,5
1936
+ prisoner,5
1937
+ fence,5
1938
+ cuz,5
1939
+ silence,5
1940
+ suspect,5
1941
+ art,5
1942
+ key,5
1943
+ prefer,5
1944
+ feature,5
1945
+ s,5
1946
+ kim,5
1947
+ butter,5
1948
+ decided,5
1949
+ tough,5
1950
+ veteran,5
1951
+ plantation,5
1952
+ destroying,5
1953
+ struggle,5
1954
+ finest,5
1955
+ slipped,5
1956
+ freeman,5
1957
+ exploded,5
1958
+ toast,5
1959
+ depression,5
1960
+ market,5
1961
+ rain,5
1962
+ copy,5
1963
+ halal,5
1964
+ responsible,5
1965
+ syndrome,5
1966
+ sleeve,5
1967
+ department,5
1968
+ tolerance,5
1969
+ ineligible,5
1970
+ cooky,5
1971
+ anywhere,5
1972
+ freak,5
1973
+ offend,5
1974
+ randomly,5
1975
+ anyway,5
1976
+ pit,5
1977
+ washed,5
1978
+ showed,5
1979
+ cash,5
1980
+ ran,5
1981
+ gentleman,5
1982
+ handjob,5
1983
+ camping,5
1984
+ lawn,5
1985
+ valentine,5
1986
+ missed,5
1987
+ monster,5
1988
+ zuckerberg,5
1989
+ obviously,5
1990
+ expecting,5
1991
+ restroom,5
1992
+ explosion,5
1993
+ pledge,5
1994
+ returning,5
1995
+ candidate,5
1996
+ eyebrow,5
1997
+ wizard,5
1998
+ jewsy,5
1999
+ hahaha,5
2000
+ correct,5
2001
+ poo,5
2002
+ instructor,5
2003
+ justice,5
2004
+ grammar,5
2005
+ properly,5
2006
+ beast,5
2007
+ filled,5
2008
+ popcorn,5
2009
+ contact,5
2010
+ popular,5
2011
+ dem,5
2012
+ riot,5
2013
+ goy,5
2014
+ believer,5
2015
+ nuke,5
2016
+ large,5
2017
+ woke,5
2018
+ zone,5
2019
+ rag,5
2020
+ fifty,4
2021
+ roast,4
2022
+ lover,4
2023
+ buslim,4
2024
+ attract,4
2025
+ feminism,4
2026
+ loyalty,4
2027
+ ornament,4
2028
+ release,4
2029
+ fidget,4
2030
+ bust,4
2031
+ mengele,4
2032
+ helmet,4
2033
+ grandfather,4
2034
+ grave,4
2035
+ teaching,4
2036
+ anxiety,4
2037
+ final,4
2038
+ owe,4
2039
+ owes,4
2040
+ menu,4
2041
+ charge,4
2042
+ source,4
2043
+ goverment,4
2044
+ netflix,4
2045
+ briefcase,4
2046
+ otherwise,4
2047
+ herro,4
2048
+ whoever,4
2049
+ grabbed,4
2050
+ enlist,4
2051
+ tea,4
2052
+ enter,4
2053
+ grandpa,4
2054
+ bright,4
2055
+ lust,4
2056
+ rohingya,4
2057
+ robbed,4
2058
+ graduate,4
2059
+ staring,4
2060
+ released,4
2061
+ annoying,4
2062
+ epstein,4
2063
+ switch,4
2064
+ haircut,4
2065
+ angel,4
2066
+ nun,4
2067
+ evidence,4
2068
+ extremist,4
2069
+ spreading,4
2070
+ retodd,4
2071
+ everytime,4
2072
+ chloroform,4
2073
+ haha,4
2074
+ fellow,4
2075
+ vegan,4
2076
+ notre,4
2077
+ goatshit,4
2078
+ fitness,4
2079
+ hack,4
2080
+ schiff,4
2081
+ stepped,4
2082
+ masturbating,4
2083
+ event,4
2084
+ vest,4
2085
+ oink,4
2086
+ china,4
2087
+ vibe,4
2088
+ resident,4
2089
+ butthurt,4
2090
+ map,4
2091
+ chillin,4
2092
+ october,4
2093
+ handle,4
2094
+ buying,4
2095
+ whipped,4
2096
+ handful,4
2097
+ offered,4
2098
+ happier,4
2099
+ goin,4
2100
+ upon,4
2101
+ marries,4
2102
+ exchange,4
2103
+ response,4
2104
+ object,4
2105
+ explode,4
2106
+ whitaker,4
2107
+ amen,4
2108
+ mama,4
2109
+ brutally,4
2110
+ grown,4
2111
+ escaped,4
2112
+ cheer,4
2113
+ magazine,4
2114
+ ridiculous,4
2115
+ meathead,4
2116
+ saved,4
2117
+ firework,4
2118
+ baboon,4
2119
+ grenade,4
2120
+ taught,4
2121
+ hears,4
2122
+ federal,4
2123
+ section,4
2124
+ speaking,4
2125
+ anthony,4
2126
+ standard,4
2127
+ mac,4
2128
+ britney,4
2129
+ survives,4
2130
+ meal,4
2131
+ attacked,4
2132
+ match,4
2133
+ stable,4
2134
+ worked,4
2135
+ material,4
2136
+ gym,4
2137
+ messenger,4
2138
+ tape,4
2139
+ ay,4
2140
+ autism,4
2141
+ hawking,4
2142
+ apology,4
2143
+ gunman,4
2144
+ noose,4
2145
+ reported,4
2146
+ changed,4
2147
+ famous,4
2148
+ chelsea,4
2149
+ bully,4
2150
+ far,4
2151
+ season,4
2152
+ farmer,4
2153
+ g,4
2154
+ rob,4
2155
+ relative,4
2156
+ yolo,4
2157
+ complain,4
2158
+ quit,4
2159
+ deciding,4
2160
+ decision,4
2161
+ skidmark,4
2162
+ korean,4
2163
+ quote,4
2164
+ mph,4
2165
+ plain,4
2166
+ skip,4
2167
+ mr,4
2168
+ insurance,4
2169
+ waking,4
2170
+ torture,4
2171
+ rub,4
2172
+ carry,4
2173
+ portrait,4
2174
+ interracial,4
2175
+ debate,4
2176
+ mowing,4
2177
+ traffic,4
2178
+ traditional,4
2179
+ tradition,4
2180
+ sacred,4
2181
+ concentrate,4
2182
+ computer,4
2183
+ cannibalism,4
2184
+ pot,4
2185
+ mlk,4
2186
+ introduce,4
2187
+ account,4
2188
+ arthur,4
2189
+ known,4
2190
+ tower,4
2191
+ shelf,4
2192
+ acid,4
2193
+ politician,4
2194
+ active,4
2195
+ deported,4
2196
+ todd,4
2197
+ influence,4
2198
+ player,4
2199
+ convention,4
2200
+ adhd,4
2201
+ infiltrate,4
2202
+ relationship,4
2203
+ design,4
2204
+ bc,4
2205
+ typical,4
2206
+ comfortable,4
2207
+ tyranny,4
2208
+ latino,4
2209
+ asf,4
2210
+ admire,4
2211
+ addiction,4
2212
+ deport,4
2213
+ yep,4
2214
+ commited,4
2215
+ twitter,4
2216
+ sharpton,4
2217
+ pocket,4
2218
+ laid,4
2219
+ democracy,4
2220
+ cart,4
2221
+ usually,4
2222
+ shark,4
2223
+ landmine,4
2224
+ pls,4
2225
+ lane,4
2226
+ inherited,4
2227
+ tolerate,4
2228
+ deny,4
2229
+ successfully,4
2230
+ concert,4
2231
+ knee,4
2232
+ youre,4
2233
+ jelly,4
2234
+ wasnt,4
2235
+ fullscreen,4
2236
+ moron,4
2237
+ mommy,4
2238
+ project,4
2239
+ trynna,4
2240
+ kavanaugh,4
2241
+ crawling,4
2242
+ prize,4
2243
+ mostly,4
2244
+ ruled,4
2245
+ fuel,4
2246
+ jack,4
2247
+ watering,4
2248
+ kg,4
2249
+ abiding,4
2250
+ argue,4
2251
+ pure,4
2252
+ stuck,4
2253
+ juan,4
2254
+ captain,4
2255
+ mood,4
2256
+ zoo,4
2257
+ troop,4
2258
+ moon,4
2259
+ shout,4
2260
+ willie,4
2261
+ jussie,4
2262
+ triggered,4
2263
+ washington,4
2264
+ continue,4
2265
+ contest,4
2266
+ k,4
2267
+ jerky,4
2268
+ beep,4
2269
+ priceless,4
2270
+ accomplish,4
2271
+ predominantly,4
2272
+ walrus,4
2273
+ iraq,4
2274
+ precious,4
2275
+ traitor,4
2276
+ condition,4
2277
+ involved,4
2278
+ acceptance,4
2279
+ dame,4
2280
+ invisible,4
2281
+ klux,4
2282
+ sack,4
2283
+ siri,4
2284
+ ppl,4
2285
+ powerful,4
2286
+ danish,4
2287
+ cutting,4
2288
+ customer,4
2289
+ biden,4
2290
+ kissing,4
2291
+ molest,4
2292
+ purpose,4
2293
+ crop,4
2294
+ conjoined,4
2295
+ press,4
2296
+ presidency,4
2297
+ arrives,4
2298
+ transgenderism,4
2299
+ crush,4
2300
+ prepared,4
2301
+ putin,4
2302
+ capable,4
2303
+ bedroom,4
2304
+ cupcake,4
2305
+ ironing,4
2306
+ bleach,4
2307
+ mission,4
2308
+ tiny,4
2309
+ vlad,4
2310
+ clothing,4
2311
+ seperately,4
2312
+ pedal,4
2313
+ dryer,4
2314
+ football,4
2315
+ due,4
2316
+ sensitive,4
2317
+ foreigner,4
2318
+ myth,4
2319
+ dump,4
2320
+ patrick,4
2321
+ bottom,4
2322
+ eachother,4
2323
+ salt,4
2324
+ mustache,4
2325
+ caused,4
2326
+ settle,4
2327
+ wrote,4
2328
+ setting,4
2329
+ weight,4
2330
+ sneaky,4
2331
+ perfectly,4
2332
+ character,4
2333
+ rookie,4
2334
+ appliance,4
2335
+ calm,4
2336
+ humpers,4
2337
+ doubt,4
2338
+ forgiven,4
2339
+ therapy,4
2340
+ drain,4
2341
+ huge,4
2342
+ sending,4
2343
+ easily,4
2344
+ easter,4
2345
+ selfies,4
2346
+ pakistani,4
2347
+ elevator,4
2348
+ painting,4
2349
+ paint,4
2350
+ elizabeth,4
2351
+ song,4
2352
+ ck,4
2353
+ passenger,4
2354
+ loser,4
2355
+ appear,4
2356
+ losing,4
2357
+ understanding,4
2358
+ named,4
2359
+ television,4
2360
+ violet,4
2361
+ cereal,4
2362
+ roll,4
2363
+ hiroshima,4
2364
+ alike,4
2365
+ alexandria,4
2366
+ parade,4
2367
+ baltimore,4
2368
+ parasite,4
2369
+ regular,4
2370
+ hobby,4
2371
+ hockey,4
2372
+ brace,4
2373
+ band,4
2374
+ ebola,4
2375
+ cleaned,4
2376
+ uncooked,4
2377
+ bold,4
2378
+ humper,4
2379
+ personal,4
2380
+ picking,4
2381
+ blocked,4
2382
+ basic,4
2383
+ disarmed,4
2384
+ smiling,4
2385
+ piggy,4
2386
+ murderer,4
2387
+ thug,4
2388
+ imma,4
2389
+ thrown,4
2390
+ cathedral,4
2391
+ afghan,4
2392
+ afghanistan,4
2393
+ disgust,4
2394
+ collect,4
2395
+ basically,4
2396
+ sexist,4
2397
+ disabled,4
2398
+ dirt,4
2399
+ tie,4
2400
+ multiple,4
2401
+ incest,4
2402
+ multiculturalism,4
2403
+ france,4
2404
+ digging,4
2405
+ dig,4
2406
+ george,4
2407
+ blessing,4
2408
+ random,4
2409
+ casey,4
2410
+ sh,4
2411
+ indictment,4
2412
+ piano,4
2413
+ smite,4
2414
+ blowin,4
2415
+ weigh,4
2416
+ divorced,4
2417
+ thirsty,4
2418
+ realise,4
2419
+ dodge,4
2420
+ pervert,4
2421
+ divider,4
2422
+ based,4
2423
+ photoshop,4
2424
+ illegally,4
2425
+ ghetto,4
2426
+ documentary,4
2427
+ wide,4
2428
+ threw,4
2429
+ throat,4
2430
+ doll,4
2431
+ ignorance,4
2432
+ samuel,3
2433
+ minesweeper,3
2434
+ buttholes,3
2435
+ butthole,3
2436
+ string,3
2437
+ strike,3
2438
+ sticking,3
2439
+ messed,3
2440
+ stitch,3
2441
+ goodyear,3
2442
+ atheist,3
2443
+ vacuum,3
2444
+ storm,3
2445
+ van,3
2446
+ strange,3
2447
+ gloss,3
2448
+ wiener,3
2449
+ rushed,3
2450
+ sticker,3
2451
+ stove,3
2452
+ arresting,3
2453
+ michigan,3
2454
+ steroid,3
2455
+ garden,3
2456
+ whose,3
2457
+ arse,3
2458
+ migrant,3
2459
+ mobile,3
2460
+ cannabis,3
2461
+ meter,3
2462
+ milkshake,3
2463
+ calculate,3
2464
+ stranger,3
2465
+ strategy,3
2466
+ cable,3
2467
+ gluten,3
2468
+ gene,3
2469
+ assume,3
2470
+ molesting,3
2471
+ athlete,3
2472
+ assad,3
2473
+ stomach,3
2474
+ capital,3
2475
+ global,3
2476
+ attempt,3
2477
+ gallows,3
2478
+ arnold,3
2479
+ value,3
2480
+ salad,3
2481
+ appeal,3
2482
+ buslims,3
2483
+ inner,3
2484
+ slowly,3
2485
+ individual,3
2486
+ laughing,3
2487
+ shall,3
2488
+ latest,3
2489
+ lash,3
2490
+ information,3
2491
+ largest,3
2492
+ bead,3
2493
+ landmines,3
2494
+ lamp,3
2495
+ bless,3
2496
+ slander,3
2497
+ blacker,3
2498
+ la,3
2499
+ instinct,3
2500
+ kylie,3
2501
+ wale,3
2502
+ ku,3
2503
+ international,3
2504
+ sheeple,3
2505
+ skeleton,3
2506
+ weather,3
2507
+ batman,3
2508
+ kong,3
2509
+ leak,3
2510
+ immediately,3
2511
+ leeroy,3
2512
+ sexism,3
2513
+ lebanon,3
2514
+ impeached,3
2515
+ import,3
2516
+ smh,3
2517
+ block,3
2518
+ impossible,3
2519
+ basketball,3
2520
+ improved,3
2521
+ increase,3
2522
+ inbox,3
2523
+ smarter,3
2524
+ lb,3
2525
+ inch,3
2526
+ bathing,3
2527
+ weave,3
2528
+ laying,3
2529
+ inclusive,3
2530
+ income,3
2531
+ smack,3
2532
+ sheet,3
2533
+ shelter,3
2534
+ grade,3
2535
+ jerry,3
2536
+ warms,3
2537
+ keeper,3
2538
+ behavior,3
2539
+ beheaded,3
2540
+ jazz,3
2541
+ shopping,3
2542
+ karen,3
2543
+ jeffrey,3
2544
+ sicced,3
2545
+ jerk,3
2546
+ belgium,3
2547
+ kellogg,3
2548
+ shotgun,3
2549
+ justified,3
2550
+ shy,3
2551
+ jill,3
2552
+ jizz,3
2553
+ washing,3
2554
+ bend,3
2555
+ joking,3
2556
+ beloved,3
2557
+ jolo,3
2558
+ keller,3
2559
+ sighted,3
2560
+ beaten,3
2561
+ iron,3
2562
+ bite,3
2563
+ situation,3
2564
+ sheriff,3
2565
+ knocked,3
2566
+ biological,3
2567
+ shield,3
2568
+ klan,3
2569
+ binary,3
2570
+ iraqi,3
2571
+ kitten,3
2572
+ irony,3
2573
+ kenya,3
2574
+ shine,3
2575
+ becomes,3
2576
+ singing,3
2577
+ islamaphobic,3
2578
+ beef,3
2579
+ shithole,3
2580
+ isnt,3
2581
+ bicycle,3
2582
+ iz,3
2583
+ jackass,3
2584
+ imam,3
2585
+ lem,3
2586
+ ii,3
2587
+ harmful,3
2588
+ buddy,3
2589
+ buddhist,3
2590
+ screen,3
2591
+ mankind,3
2592
+ harass,3
2593
+ harbor,3
2594
+ manbun,3
2595
+ manager,3
2596
+ vice,3
2597
+ management,3
2598
+ whine,3
2599
+ sponge,3
2600
+ sperm,3
2601
+ hated,3
2602
+ bruh,3
2603
+ havin,3
2604
+ searching,3
2605
+ headed,3
2606
+ brotherhood,3
2607
+ babysit,3
2608
+ heightened,3
2609
+ lure,3
2610
+ scratch,3
2611
+ avoid,3
2612
+ boat,3
2613
+ mccain,3
2614
+ grader,3
2615
+ attitude,3
2616
+ bush,3
2617
+ melon,3
2618
+ burqa,3
2619
+ grandparent,3
2620
+ grape,3
2621
+ grew,3
2622
+ groin,3
2623
+ mcdonalds,3
2624
+ guessing,3
2625
+ hamid,3
2626
+ bullying,3
2627
+ squirted,3
2628
+ mat,3
2629
+ spy,3
2630
+ spring,3
2631
+ spread,3
2632
+ spray,3
2633
+ spouse,3
2634
+ scientific,3
2635
+ martini,3
2636
+ held,3
2637
+ hemorrhoid,3
2638
+ backpack,3
2639
+ hug,3
2640
+ sock,3
2641
+ separate,3
2642
+ horror,3
2643
+ host,3
2644
+ soccer,3
2645
+ hotel,3
2646
+ limit,3
2647
+ hottest,3
2648
+ serial,3
2649
+ liking,3
2650
+ hugging,3
2651
+ loving,3
2652
+ liked,3
2653
+ barbie,3
2654
+ hunger,3
2655
+ lied,3
2656
+ volkswagen,3
2657
+ hush,3
2658
+ license,3
2659
+ liberated,3
2660
+ id,3
2661
+ boating,3
2662
+ soda,3
2663
+ bother,3
2664
+ honky,3
2665
+ homophobia,3
2666
+ seized,3
2667
+ brett,3
2668
+ sort,3
2669
+ whatcha,3
2670
+ loss,3
2671
+ sore,3
2672
+ breakfast,3
2673
+ bae,3
2674
+ looked,3
2675
+ hire,3
2676
+ western,3
2677
+ brazile,3
2678
+ branch,3
2679
+ locked,3
2680
+ location,3
2681
+ bra,3
2682
+ holla,3
2683
+ banana,3
2684
+ monopoly,3
2685
+ homies,3
2686
+ banging,3
2687
+ solved,3
2688
+ jr,3
2689
+ deeper,3
2690
+ ching,3
2691
+ wore,3
2692
+ online,3
2693
+ tambourine,3
2694
+ commits,3
2695
+ onion,3
2696
+ chocolatey,3
2697
+ ton,3
2698
+ radius,3
2699
+ chlamydia,3
2700
+ ammo,3
2701
+ wont,3
2702
+ talked,3
2703
+ tampon,3
2704
+ among,3
2705
+ example,3
2706
+ taliban,3
2707
+ pokemon,3
2708
+ amputee,3
2709
+ chimney,3
2710
+ amsterdam,3
2711
+ execute,3
2712
+ executed,3
2713
+ yellow,3
2714
+ tongued,3
2715
+ po,3
2716
+ tan,3
2717
+ diabetic,3
2718
+ designed,3
2719
+ admit,3
2720
+ device,3
2721
+ admin,3
2722
+ determined,3
2723
+ planning,3
2724
+ plant,3
2725
+ worldwide,3
2726
+ er,3
2727
+ organ,3
2728
+ command,3
2729
+ alright,3
2730
+ deserves,3
2731
+ chong,3
2732
+ commandment,3
2733
+ option,3
2734
+ choudary,3
2735
+ chopping,3
2736
+ reparation,3
2737
+ commitment,3
2738
+ tolerant,3
2739
+ eternal,3
2740
+ plug,3
2741
+ raid,3
2742
+ representative,3
2743
+ exercise,3
2744
+ deleted,3
2745
+ exit,3
2746
+ chemo,3
2747
+ pose,3
2748
+ posing,3
2749
+ noticed,3
2750
+ fail,3
2751
+ anjem,3
2752
+ dealer,3
2753
+ twenty,3
2754
+ norway,3
2755
+ dc,3
2756
+ compliment,3
2757
+ tweet,3
2758
+ con,3
2759
+ obvious,3
2760
+ potential,3
2761
+ potter,3
2762
+ rib,3
2763
+ darling,3
2764
+ trail,3
2765
+ dancing,3
2766
+ dance,3
2767
+ nod,3
2768
+ condemn,3
2769
+ noah,3
2770
+ practicing,3
2771
+ chewing,3
2772
+ portraying,3
2773
+ notification,3
2774
+ anime,3
2775
+ defenseless,3
2776
+ responds,3
2777
+ defeated,3
2778
+ pooped,3
2779
+ experience,3
2780
+ experiment,3
2781
+ expert,3
2782
+ sytem,3
2783
+ deer,3
2784
+ obamacare,3
2785
+ explosive,3
2786
+ system,3
2787
+ accuses,3
2788
+ tour,3
2789
+ porch,3
2790
+ exterminate,3
2791
+ symbol,3
2792
+ anger,3
2793
+ chickin,3
2794
+ nude,3
2795
+ declaration,3
2796
+ swing,3
2797
+ faceswap,3
2798
+ orphan,3
2799
+ dial,3
2800
+ daily,3
2801
+ diverse,3
2802
+ personality,3
2803
+ coco,3
2804
+ dummy,3
2805
+ dumped,3
2806
+ tho,3
2807
+ patriotic,3
2808
+ uncertain,3
2809
+ code,3
2810
+ albanian,3
2811
+ dividing,3
2812
+ thread,3
2813
+ eastwood,3
2814
+ duke,3
2815
+ pass,3
2816
+ cleaner,3
2817
+ paso,3
2818
+ pas,3
2819
+ regardless,3
2820
+ threaten,3
2821
+ cola,3
2822
+ parking,3
2823
+ classmate,3
2824
+ phrase,3
2825
+ dispatch,3
2826
+ clint,3
2827
+ coca,3
2828
+ ramadan,3
2829
+ recorded,3
2830
+ dot,3
2831
+ dope,3
2832
+ thier,3
2833
+ drag,3
2834
+ draw,3
2835
+ airport,3
2836
+ pedophilia,3
2837
+ unbelievable,3
2838
+ written,3
2839
+ clown,3
2840
+ dressed,3
2841
+ co,3
2842
+ perk,3
2843
+ donna,3
2844
+ donkey,3
2845
+ drone,3
2846
+ pearl,3
2847
+ closer,3
2848
+ closed,3
2849
+ realizing,3
2850
+ donated,3
2851
+ coast,3
2852
+ clitoris,3
2853
+ realizes,3
2854
+ disney,3
2855
+ wow,3
2856
+ collection,3
2857
+ difficult,3
2858
+ emotion,3
2859
+ pinko,3
2860
+ owned,3
2861
+ employee,3
2862
+ dike,3
2863
+ technology,3
2864
+ adorable,3
2865
+ technician,3
2866
+ encouraging,3
2867
+ overthink,3
2868
+ overnight,3
2869
+ uh,3
2870
+ terribly,3
2871
+ adolf,3
2872
+ overly,3
2873
+ tear,3
2874
+ rely,3
2875
+ dickhead,3
2876
+ colour,3
2877
+ worry,3
2878
+ allow,3
2879
+ allowing,3
2880
+ remeber,3
2881
+ columbus,3
2882
+ advantage,3
2883
+ til,3
2884
+ emergency,3
2885
+ understands,3
2886
+ ye,3
2887
+ disarm,3
2888
+ egyptian,3
2889
+ worth,3
2890
+ pillow,3
2891
+ ticket,3
2892
+ el,3
2893
+ pandit,3
2894
+ panda,3
2895
+ pancreatic,3
2896
+ claiming,3
2897
+ disagree,3
2898
+ rapper,3
2899
+ electronics,3
2900
+ dis,3
2901
+ elf,3
2902
+ collector,3
2903
+ pados,3
2904
+ eloped,3
2905
+ tiger,3
2906
+ tightens,3
2907
+ package,3
2908
+ embrace,3
2909
+ nile,3
2910
+ doubled,3
2911
+ trained,3
2912
+ create,3
2913
+ fkn,3
2914
+ arabia,3
2915
+ successful,3
2916
+ flame,3
2917
+ suppose,3
2918
+ cartoon,3
2919
+ creature,3
2920
+ triple,3
2921
+ zombie,3
2922
+ supporting,3
2923
+ route,3
2924
+ chair,3
2925
+ wiping,3
2926
+ trayvon,3
2927
+ fled,3
2928
+ sucker,3
2929
+ flee,3
2930
+ freed,3
2931
+ fleeing,3
2932
+ fixing,3
2933
+ moving,3
2934
+ champ,3
2935
+ chaos,3
2936
+ fingering,3
2937
+ troll,3
2938
+ prevent,3
2939
+ finna,3
2940
+ trojan,3
2941
+ turd,3
2942
+ rubbery,3
2943
+ rubber,3
2944
+ anyways,3
2945
+ movement,3
2946
+ robert,3
2947
+ crew,3
2948
+ near,3
2949
+ crematorium,3
2950
+ channel,3
2951
+ consent,3
2952
+ moved,3
2953
+ fisting,3
2954
+ rocket,3
2955
+ rod,3
2956
+ finding,3
2957
+ apologize,3
2958
+ sunblock,3
2959
+ winning,3
2960
+ celebrated,3
2961
+ ceiling,3
2962
+ progressive,3
2963
+ constant,3
2964
+ forcing,3
2965
+ us,3
2966
+ couch,3
2967
+ sum,3
2968
+ consume,3
2969
+ trend,3
2970
+ rope,3
2971
+ catholic,3
2972
+ appreciate,3
2973
+ counting,3
2974
+ court,3
2975
+ pronoun,3
2976
+ suit,3
2977
+ rollin,3
2978
+ fragile,3
2979
+ sunburnt,3
2980
+ nap,3
2981
+ round,3
2982
+ rode,3
2983
+ nasty,3
2984
+ freckle,3
2985
+ aboard,3
2986
+ treason,3
2987
+ nike,3
2988
+ crashed,3
2989
+ property,3
2990
+ cell,3
2991
+ ze,3
2992
+ cosby,3
2993
+ content,3
2994
+ console,3
2995
+ crakkka,3
2996
+ produce,3
2997
+ trial,3
2998
+ nah,3
2999
+ fingered,3
3000
+ murderous,3
3001
+ fighter,3
3002
+ cuck,3
3003
+ carl,3
3004
+ tranpa,3
3005
+ surround,3
3006
+ mosquito,3
3007
+ controlling,3
3008
+ moslem,3
3009
+ cube,3
3010
+ caravan,3
3011
+ anus,3
3012
+ carlos,3
3013
+ convicted,3
3014
+ current,3
3015
+ niether,3
3016
+ crunch,3
3017
+ confusing,3
3018
+ preference,3
3019
+ curry,3
3020
+ rifle,3
3021
+ contries,3
3022
+ confirmed,3
3023
+ rigged,3
3024
+ wilson,3
3025
+ anthem,3
3026
+ antifa,3
3027
+ puzzle,3
3028
+ stupidity,3
3029
+ convinced,3
3030
+ fed,3
3031
+ motel,3
3032
+ pregnancy,3
3033
+ curiosity,3
3034
+ converted,3
3035
+ curious,3
3036
+ convert,3
3037
+ fill,3
3038
+ proved,3
3039
+ charles,3
3040
+ swallowed,3
3041
+ trannies,3
3042
+ captured,3
3043
+ psychopath,3
3044
+ filter,3
3045
+ annual,3
3046
+ purse,3
3047
+ cycle,3
3048
+ negative,3
3049
+ fu,3
3050
+ vaccinate,3
3051
+ runner,3
3052
+ filipino,3
3053
+ yup,3
3054
+ wire,3
3055
+ prosecuted,2
3056
+ shortly,2
3057
+ received,2
3058
+ lifetime,2
3059
+ pijama,2
3060
+ prosecute,2
3061
+ pillage,2
3062
+ aight,2
3063
+ pronounce,2
3064
+ airplane,2
3065
+ learning,2
3066
+ kanye,2
3067
+ yea,2
3068
+ percent,2
3069
+ lid,2
3070
+ kaepernick,2
3071
+ pimp,2
3072
+ raptor,2
3073
+ barbric,2
3074
+ peopple,2
3075
+ kampfert,2
3076
+ propaganda,2
3077
+ bare,2
3078
+ rearranged,2
3079
+ percap,2
3080
+ jumper,2
3081
+ rath,2
3082
+ yamamoto,2
3083
+ seuss,2
3084
+ wwe,2
3085
+ juicy,2
3086
+ razor,2
3087
+ weighs,2
3088
+ phase,2
3089
+ petty,2
3090
+ leviticus,2
3091
+ lemonade,2
3092
+ bass,2
3093
+ length,2
3094
+ protects,2
3095
+ shouldnt,2
3096
+ petting,2
3097
+ weighing,2
3098
+ weighed,2
3099
+ xanax,2
3100
+ jungle,2
3101
+ believing,2
3102
+ protein,2
3103
+ personally,2
3104
+ barry,2
3105
+ wypipo,2
3106
+ protester,2
3107
+ basement,2
3108
+ pie,2
3109
+ legacy,2
3110
+ lebron,2
3111
+ pictured,2
3112
+ libtards,2
3113
+ library,2
3114
+ leftist,2
3115
+ jumping,2
3116
+ leftover,2
3117
+ reap,2
3118
+ psst,2
3119
+ ahmarbkrich,2
3120
+ psychic,2
3121
+ abandon,2
3122
+ protestors,2
3123
+ shouting,2
3124
+ prospective,2
3125
+ prostitution,2
3126
+ photoshopped,2
3127
+ jury,2
3128
+ liar,2
3129
+ photobomb,2
3130
+ protected,2
3131
+ protective,2
3132
+ sever,2
3133
+ abnormal,2
3134
+ leaking,2
3135
+ shaving,2
3136
+ premier,2
3137
+ bedtime,2
3138
+ porkistan,2
3139
+ presented,2
3140
+ sheen,2
3141
+ lift,2
3142
+ kung,2
3143
+ shawty,2
3144
+ ach,2
3145
+ yoga,2
3146
+ pressley,2
3147
+ kush,2
3148
+ achievement,2
3149
+ pooh,2
3150
+ puto,2
3151
+ racially,2
3152
+ politcal,2
3153
+ activity,2
3154
+ purple,2
3155
+ labor,2
3156
+ shaved,2
3157
+ kiddo,2
3158
+ polar,2
3159
+ z,2
3160
+ prey,2
3161
+ abort,2
3162
+ priest,2
3163
+ ladder,2
3164
+ prematurley,2
3165
+ youtube,2
3166
+ basterds,2
3167
+ q,2
3168
+ pre,2
3169
+ preach,2
3170
+ accommodate,2
3171
+ quarter,2
3172
+ quality,2
3173
+ questioning,2
3174
+ quicker,2
3175
+ beautifull,2
3176
+ kitty,2
3177
+ shia,2
3178
+ beause,2
3179
+ pouring,2
3180
+ pour,2
3181
+ beaver,2
3182
+ accent,2
3183
+ potatoe,2
3184
+ preeze,2
3185
+ posting,2
3186
+ poster,2
3187
+ possible,2
3188
+ positivity,2
3189
+ sheik,2
3190
+ shill,2
3191
+ ported,2
3192
+ portable,2
3193
+ becuase,2
3194
+ koran,2
3195
+ pornhub,2
3196
+ shatner,2
3197
+ shitter,2
3198
+ bean,2
3199
+ ramsay,2
3200
+ private,2
3201
+ shocked,2
3202
+ laughed,2
3203
+ kellogs,2
3204
+ laughter,2
3205
+ plague,2
3206
+ shah,2
3207
+ shadow,2
3208
+ ramen,2
3209
+ pitchfork,2
3210
+ ramit,2
3211
+ wasting,2
3212
+ behave,2
3213
+ behaviour,2
3214
+ primary,2
3215
+ shootin,2
3216
+ pinyata,2
3217
+ progress,2
3218
+ puke,2
3219
+ waste,2
3220
+ advice,2
3221
+ sexually,2
3222
+ website,2
3223
+ wednesday,2
3224
+ ability,2
3225
+ weeeeeee,2
3226
+ leading,2
3227
+ promotion,2
3228
+ shaker,2
3229
+ punishment,2
3230
+ plate,2
3231
+ platform,2
3232
+ shitting,2
3233
+ prince,2
3234
+ lamb,2
3235
+ priority,2
3236
+ punk,2
3237
+ kevin,2
3238
+ rage,2
3239
+ kermit,2
3240
+ sharing,2
3241
+ weakened,2
3242
+ zakk,2
3243
+ pluck,2
3244
+ rail,2
3245
+ plot,2
3246
+ shaped,2
3247
+ plenty,2
3248
+ weakling,2
3249
+ addict,2
3250
+ waterin,2
3251
+ pleasant,2
3252
+ sham,2
3253
+ addo,2
3254
+ address,2
3255
+ larry,2
3256
+ raising,2
3257
+ bday,2
3258
+ bb,2
3259
+ rush,2
3260
+ semen,2
3261
+ serve,2
3262
+ auchschwitz,2
3263
+ newest,2
3264
+ newly,2
3265
+ ni,2
3266
+ auditioned,2
3267
+ nibbas,2
3268
+ riding,2
3269
+ nickname,2
3270
+ med,2
3271
+ whitesox,2
3272
+ whiteprivilege,2
3273
+ saviour,2
3274
+ auschwistic,2
3275
+ aussie,2
3276
+ ridiculer,2
3277
+ nigga,2
3278
+ whiteman,2
3279
+ ridden,2
3280
+ meah,2
3281
+ scandal,2
3282
+ newborn,2
3283
+ rinse,2
3284
+ recent,2
3285
+ rip,2
3286
+ sarah,2
3287
+ memorial,2
3288
+ needle,2
3289
+ attic,2
3290
+ roasting,2
3291
+ needy,2
3292
+ melted,2
3293
+ melt,2
3294
+ negotiate,2
3295
+ melbourne,2
3296
+ nephson,2
3297
+ nerve,2
3298
+ nesquick,2
3299
+ net,2
3300
+ whitetrash,2
3301
+ neuter,2
3302
+ wiretap,2
3303
+ antique,2
3304
+ auburn,2
3305
+ scandinavia,2
3306
+ ninja,2
3307
+ mcconnell,2
3308
+ nobel,2
3309
+ mate,2
3310
+ scene,2
3311
+ anique,2
3312
+ autocorrects,2
3313
+ massive,2
3314
+ massa,2
3315
+ automatically,2
3316
+ scholar,2
3317
+ aux,2
3318
+ nowhere,2
3319
+ schwarzenigger,2
3320
+ nurse,2
3321
+ resturant,2
3322
+ wolrd,2
3323
+ ancient,2
3324
+ marty,2
3325
+ obey,2
3326
+ available,2
3327
+ whit,2
3328
+ note,2
3329
+ reverse,2
3330
+ scavenger,2
3331
+ mature,2
3332
+ mazie,2
3333
+ mayor,2
3334
+ australian,2
3335
+ anniversary,2
3336
+ austrian,2
3337
+ maxine,2
3338
+ maximum,2
3339
+ maury,2
3340
+ rhino,2
3341
+ matt,2
3342
+ mattered,2
3343
+ rh,2
3344
+ nonsense,2
3345
+ noodle,2
3346
+ ann,2
3347
+ whitegirlwasted,2
3348
+ norris,2
3349
+ matte,2
3350
+ memory,2
3351
+ necrophilia,2
3352
+ sarafina,2
3353
+ widespread,2
3354
+ artery,2
3355
+ mp,2
3356
+ mitten,2
3357
+ rspca,2
3358
+ mistress,2
3359
+ mistreated,2
3360
+ wiggle,2
3361
+ wig,2
3362
+ windmill,2
3363
+ ashol,2
3364
+ ashy,2
3365
+ rough,2
3366
+ rotissified,2
3367
+ miracle,2
3368
+ minus,2
3369
+ asleep,2
3370
+ approves,2
3371
+ safer,2
3372
+ minister,2
3373
+ archeologist,2
3374
+ moustache,2
3375
+ mouse,2
3376
+ ruined,2
3377
+ moore,2
3378
+ william,2
3379
+ ruling,2
3380
+ moses,2
3381
+ mosquee,2
3382
+ molester,2
3383
+ moister,2
3384
+ arrogant,2
3385
+ wildfire,2
3386
+ mourning,2
3387
+ modi,2
3388
+ ruin,2
3389
+ rusty,2
3390
+ motorcross,2
3391
+ motorcycle,2
3392
+ mocking,2
3393
+ mocker,2
3394
+ wimpy,2
3395
+ wineaisle,2
3396
+ aspirin,2
3397
+ robbery,2
3398
+ root,2
3399
+ roger,2
3400
+ methed,2
3401
+ metal,2
3402
+ nate,2
3403
+ apocalypse,2
3404
+ nature,2
3405
+ naz,2
3406
+ atomic,2
3407
+ mermaid,2
3408
+ sander,2
3409
+ nbc,2
3410
+ ncaa,2
3411
+ robot,2
3412
+ sandwichmaker,2
3413
+ neanderthal,2
3414
+ meowschwitz,2
3415
+ santa,2
3416
+ mention,2
3417
+ robinson,2
3418
+ aswell,2
3419
+ nascar,2
3420
+ mfw,2
3421
+ salesman,2
3422
+ apprehend,2
3423
+ minded,2
3424
+ assassinated,2
3425
+ sailor,2
3426
+ mushroom,2
3427
+ applies,2
3428
+ mustang,2
3429
+ assigned,2
3430
+ romance,2
3431
+ nancy,2
3432
+ winnie,2
3433
+ nagger,2
3434
+ appearance,2
3435
+ whoopty,2
3436
+ mic,2
3437
+ naik,2
3438
+ jovi,2
3439
+ nana,2
3440
+ whistle,2
3441
+ whispering,2
3442
+ whiskey,2
3443
+ pastor,2
3444
+ lobbying,2
3445
+ loan,2
3446
+ aldi,2
3447
+ paris,2
3448
+ loaded,2
3449
+ wendy,2
3450
+ lmm,2
3451
+ lmco,2
3452
+ parkinson,2
3453
+ parole,2
3454
+ partial,2
3455
+ senator,2
3456
+ album,2
3457
+ littering,2
3458
+ passing,2
3459
+ passion,2
3460
+ passionate,2
3461
+ sends,2
3462
+ albert,2
3463
+ regularly,2
3464
+ locate,2
3465
+ rehab,2
3466
+ pan,2
3467
+ related,2
3468
+ whack,2
3469
+ badge,2
3470
+ loosing,2
3471
+ rejection,2
3472
+ pakistan,2
3473
+ lookout,2
3474
+ palestinian,2
3475
+ pancake,2
3476
+ bald,2
3477
+ bail,2
3478
+ baking,2
3479
+ panic,2
3480
+ parachute,2
3481
+ monsanto,2
3482
+ paradise,2
3483
+ woth,2
3484
+ parameter,2
3485
+ refusing,2
3486
+ literature,2
3487
+ relationsheep,2
3488
+ pasture,2
3489
+ limp,2
3490
+ peasant,2
3491
+ rectal,2
3492
+ recovery,2
3493
+ recording,2
3494
+ pedofile,2
3495
+ aisha,2
3496
+ serb,2
3497
+ serbian,2
3498
+ recognise,2
3499
+ reckon,2
3500
+ peeling,2
3501
+ barbecuing,2
3502
+ weinstein,2
3503
+ peice,2
3504
+ weiner,2
3505
+ pen,2
3506
+ penalty,2
3507
+ penatration,2
3508
+ barbaric,2
3509
+ peanutbutter,2
3510
+ write,2
3511
+ paul,2
3512
+ refuge,2
3513
+ wrapped,2
3514
+ patricia,2
3515
+ listening,2
3516
+ patrol,2
3517
+ patty,2
3518
+ bankrupt,2
3519
+ lisa,2
3520
+ pauline,2
3521
+ reduce,2
3522
+ pavement,2
3523
+ lipstick,2
3524
+ lip,2
3525
+ sensual,2
3526
+ referring,2
3527
+ pc,2
3528
+ akana,2
3529
+ separated,2
3530
+ pacman,2
3531
+ whale,2
3532
+ scissors,2
3533
+ rep,2
3534
+ mamma,2
3535
+ awful,2
3536
+ malcolm,2
3537
+ awkward,2
3538
+ whether,2
3539
+ oops,2
3540
+ majority,2
3541
+ worker,2
3542
+ seal,2
3543
+ opened,2
3544
+ search,2
3545
+ openly,2
3546
+ mainland,2
3547
+ main,2
3548
+ reply,2
3549
+ opinion,2
3550
+ oppressor,2
3551
+ ayanna,2
3552
+ repaid,2
3553
+ amendment,2
3554
+ woof,2
3555
+ rescue,2
3556
+ scrape,2
3557
+ scoffer,2
3558
+ marokko,2
3559
+ obscene,2
3560
+ responded,2
3561
+ obstacle,2
3562
+ resolution,2
3563
+ marital,2
3564
+ anaconda,2
3565
+ offending,2
3566
+ mandating,2
3567
+ maria,2
3568
+ awake,2
3569
+ award,2
3570
+ manufacturing,2
3571
+ ana,2
3572
+ womenwholovewine,2
3573
+ ohhh,2
3574
+ oi,2
3575
+ maggot,2
3576
+ oral,2
3577
+ pace,2
3578
+ alternative,2
3579
+ allows,2
3580
+ seeking,2
3581
+ outlaw,2
3582
+ whatsthe,2
3583
+ remain,2
3584
+ lucifer,2
3585
+ allergic,2
3586
+ loyal,2
3587
+ lowkey,2
3588
+ lower,2
3589
+ whatsoever,2
3590
+ overthinking,2
3591
+ owen,2
3592
+ relaxed,2
3593
+ oxygen,2
3594
+ louis,2
3595
+ oyster,2
3596
+ loudly,2
3597
+ louder,2
3598
+ remembered,2
3599
+ remembers,2
3600
+ worried,2
3601
+ remover,2
3602
+ seated,2
3603
+ orangutan,2
3604
+ rent,2
3605
+ babe,2
3606
+ alphabet,2
3607
+ wheelbarrow,2
3608
+ secretly,2
3609
+ wheaties,2
3610
+ m,2
3611
+ almighty,2
3612
+ worn,2
3613
+ lyon,2
3614
+ lynn,2
3615
+ lynching,2
3616
+ lynched,2
3617
+ orland,2
3618
+ almond,2
3619
+ reminds,2
3620
+ controversial,2
3621
+ slept,2
3622
+ journalist,2
3623
+ fired,2
3624
+ superman,2
3625
+ flight,2
3626
+ supplier,2
3627
+ supported,2
3628
+ ups,2
3629
+ challenger,2
3630
+ chan,2
3631
+ suppressor,2
3632
+ changing,2
3633
+ firm,2
3634
+ firetruck,2
3635
+ firend,2
3636
+ firefighter,2
3637
+ firearm,2
3638
+ superior,2
3639
+ finishing,2
3640
+ fingerpaint,2
3641
+ charcol,2
3642
+ update,2
3643
+ financial,2
3644
+ charlie,2
3645
+ filed,2
3646
+ surgery,2
3647
+ figured,2
3648
+ chased,2
3649
+ surrounded,2
3650
+ survey,2
3651
+ fertilizer,2
3652
+ floating,2
3653
+ flotation,2
3654
+ survival,2
3655
+ cave,2
3656
+ cast,2
3657
+ castrated,2
3658
+ suffered,2
3659
+ user,2
3660
+ suggest,2
3661
+ catfish,2
3662
+ fortune,2
3663
+ fortunate,2
3664
+ forrest,2
3665
+ fork,2
3666
+ catlyn,2
3667
+ cattle,2
3668
+ forgo,2
3669
+ cd,2
3670
+ flour,2
3671
+ urine,2
3672
+ footage,2
3673
+ celebrates,2
3674
+ celebration,2
3675
+ foo,2
3676
+ following,2
3677
+ cellphone,2
3678
+ sunscreen,2
3679
+ ceremony,2
3680
+ certain,2
3681
+ certainly,2
3682
+ certificate,2
3683
+ superhero,2
3684
+ chasing,2
3685
+ femenist,2
3686
+ hag,2
3687
+ ewoks,2
3688
+ explained,2
3689
+ unleash,2
3690
+ childhood,2
3691
+ exists,2
3692
+ existence,2
3693
+ existed,2
3694
+ chili,2
3695
+ exi,2
3696
+ unite,2
3697
+ excitement,2
3698
+ chimpanzee,2
3699
+ exam,2
3700
+ exactly,2
3701
+ unhumanrights,2
3702
+ synthetic,2
3703
+ everyrody,2
3704
+ unfortunately,2
3705
+ choco,2
3706
+ eve,2
3707
+ ethiopia,2
3708
+ eternity,2
3709
+ tards,2
3710
+ chop,2
3711
+ targeting,2
3712
+ tarrant,2
3713
+ tasted,2
3714
+ tasty,2
3715
+ chow,2
3716
+ explodes,2
3717
+ expression,2
3718
+ felon,2
3719
+ farrakhan,2
3720
+ felling,2
3721
+ checked,2
3722
+ february,2
3723
+ checking,2
3724
+ suspended,2
3725
+ checkpoint,2
3726
+ faulty,2
3727
+ fatty,2
3728
+ swapped,2
3729
+ fastball,2
3730
+ fashioned,2
3731
+ cheese,2
3732
+ fascist,2
3733
+ farmville,2
3734
+ synagogue,2
3735
+ fancy,2
3736
+ swede,2
3737
+ sweden,2
3738
+ fallen,2
3739
+ sweeter,2
3740
+ sweetheart,2
3741
+ faceapp,2
3742
+ eyelash,2
3743
+ eyed,2
3744
+ extreme,2
3745
+ swore,2
3746
+ extinct,2
3747
+ exsisted,2
3748
+ ussr,2
3749
+ success,2
3750
+ carrying,2
3751
+ cabinet,2
3752
+ std,2
3753
+ butcher,2
3754
+ buttercup,2
3755
+ gotcha,2
3756
+ butterfly,2
3757
+ gorgeous,2
3758
+ gordon,2
3759
+ goofy,2
3760
+ stereo,2
3761
+ stereotype,2
3762
+ goatlivesmatter,2
3763
+ steve,2
3764
+ steven,2
3765
+ gnomesaying,2
3766
+ statue,2
3767
+ gnigger,2
3768
+ vatican,2
3769
+ glue,2
3770
+ glow,2
3771
+ glorious,2
3772
+ glorified,2
3773
+ sticky,2
3774
+ givs,2
3775
+ stink,2
3776
+ girth,2
3777
+ california,2
3778
+ caliphate,2
3779
+ stirring,2
3780
+ busting,2
3781
+ stash,2
3782
+ carrot,2
3783
+ guarantee,2
3784
+ habitat,2
3785
+ habibi,2
3786
+ ha,2
3787
+ squat,2
3788
+ squatter,2
3789
+ squeaky,2
3790
+ squirt,2
3791
+ guinea,2
3792
+ guide,2
3793
+ guest,2
3794
+ bun,2
3795
+ stabbing,2
3796
+ verse,2
3797
+ grumpy,2
3798
+ graduation,2
3799
+ grows,2
3800
+ growing,2
3801
+ gross,2
3802
+ groove,2
3803
+ groom,2
3804
+ burell,2
3805
+ grind,2
3806
+ grey,2
3807
+ gregg,2
3808
+ burger,2
3809
+ gravity,2
3810
+ starbucks,2
3811
+ granny,2
3812
+ stock,2
3813
+ stoke,2
3814
+ vampire,2
3815
+ fuhrking,2
3816
+ vagene,2
3817
+ gallon,2
3818
+ gagging,2
3819
+ stroke,2
3820
+ struck,2
3821
+ furry,2
3822
+ fur,2
3823
+ vacation,2
3824
+ funded,2
3825
+ fund,2
3826
+ caramel,2
3827
+ cardio,2
3828
+ cared,2
3829
+ fuhrerious,2
3830
+ gf,2
3831
+ fuhrer,2
3832
+ career,2
3833
+ stupidest,2
3834
+ styrofoam,2
3835
+ utter,2
3836
+ carpet,2
3837
+ sub,2
3838
+ fryer,2
3839
+ fry,2
3840
+ frustrating,2
3841
+ submission,2
3842
+ submit,2
3843
+ fritz,2
3844
+ gamers,2
3845
+ stressed,2
3846
+ gaming,2
3847
+ stress,2
3848
+ cameraman,2
3849
+ stomp,2
3850
+ cames,2
3851
+ camouflage,2
3852
+ camper,2
3853
+ stood,2
3854
+ valuable,2
3855
+ stopping,2
3856
+ genetically,2
3857
+ generous,2
3858
+ generic,2
3859
+ generational,2
3860
+ cancelled,2
3861
+ gee,2
3862
+ gaz,2
3863
+ gayer,2
3864
+ cannibal,2
3865
+ strap,2
3866
+ gathered,2
3867
+ gather,2
3868
+ stray,2
3869
+ streak,2
3870
+ vagine,2
3871
+ streat,2
3872
+ garb,2
3873
+ cap,2
3874
+ gangster,2
3875
+ chris,2
3876
+ erect,2
3877
+ chromies,2
3878
+ compilaion,2
3879
+ tool,2
3880
+ defile,2
3881
+ deficient,2
3882
+ defetus,2
3883
+ defends,2
3884
+ defending,2
3885
+ deez,2
3886
+ competition,2
3887
+ decoy,2
3888
+ declined,2
3889
+ decline,2
3890
+ declare,2
3891
+ tournament,2
3892
+ december,2
3893
+ companion,2
3894
+ debt,2
3895
+ towards,2
3896
+ complains,2
3897
+ twerk,2
3898
+ compliance,2
3899
+ compliant,2
3900
+ daylight,2
3901
+ daycare,2
3902
+ tweeted,2
3903
+ tr,2
3904
+ david,2
3905
+ conceived,2
3906
+ concept,2
3907
+ definition,2
3908
+ defused,2
3909
+ diarrea,2
3910
+ depot,2
3911
+ dialed,2
3912
+ diabetes,2
3913
+ tip,2
3914
+ detroit,2
3915
+ destructive,2
3916
+ comey,2
3917
+ dessert,2
3918
+ despite,2
3919
+ desk,2
3920
+ desert,2
3921
+ tlais,2
3922
+ derogatory,2
3923
+ toaster,2
3924
+ denier,2
3925
+ delete,2
3926
+ tolerated,2
3927
+ dems,2
3928
+ demonstration,2
3929
+ demonstrate,2
3930
+ toll,2
3931
+ tom,2
3932
+ committed,2
3933
+ committee,2
3934
+ deluxe,2
3935
+ delusional,2
3936
+ delusion,2
3937
+ delivered,2
3938
+ tx,2
3939
+ dante,2
3940
+ danke,2
3941
+ dangerously,2
3942
+ trigger,2
3943
+ treasonous,2
3944
+ crawl,2
3945
+ consistent,2
3946
+ crash,2
3947
+ crakka,2
3948
+ cracking,2
3949
+ crackhouse,2
3950
+ cracka,2
3951
+ cowardly,2
3952
+ coward,2
3953
+ constantly,2
3954
+ tryin,2
3955
+ correctness,2
3956
+ correctioness,2
3957
+ danger,2
3958
+ corpse,2
3959
+ cornfield,2
3960
+ trusting,2
3961
+ corner,2
3962
+ corn,2
3963
+ trivial,2
3964
+ cord,2
3965
+ cooooooooooooon,2
3966
+ cooler,2
3967
+ contradicts,2
3968
+ cookie,2
3969
+ truly,2
3970
+ cookbook,2
3971
+ considering,2
3972
+ considered,2
3973
+ traveling,2
3974
+ creep,2
3975
+ dandruff,2
3976
+ dan,2
3977
+ damnit,2
3978
+ dammit,2
3979
+ damit,2
3980
+ condemning,2
3981
+ dam,2
3982
+ dahmer,2
3983
+ trait,2
3984
+ tutorial,2
3985
+ daca,2
3986
+ turning,2
3987
+ custom,2
3988
+ trannys,2
3989
+ confederate,2
3990
+ cured,2
3991
+ conformist,2
3992
+ transformation,2
3993
+ transgendered,2
3994
+ crown,2
3995
+ crossbreed,2
3996
+ transwoman,2
3997
+ crispy,2
3998
+ connecting,2
3999
+ trashy,2
4000
+ creepy,2
4001
+ creeping,2
4002
+ diana,2
4003
+ tinder,2
4004
+ era,2
4005
+ eid,2
4006
+ civilization,2
4007
+ temperature,2
4008
+ elmo,2
4009
+ claimed,2
4010
+ elementary,2
4011
+ electricity,2
4012
+ electrician,2
4013
+ electoral,2
4014
+ clamp,2
4015
+ elder,2
4016
+ ter,2
4017
+ underrated,2
4018
+ clapper,2
4019
+ efficient,2
4020
+ eminem,2
4021
+ effect,2
4022
+ territory,2
4023
+ classification,2
4024
+ edits,2
4025
+ classroom,2
4026
+ classy,2
4027
+ terrorizes,2
4028
+ undermine,2
4029
+ ebt,2
4030
+ testing,2
4031
+ clearance,2
4032
+ click,2
4033
+ eagle,2
4034
+ embarassin,2
4035
+ emission,2
4036
+ colored,2
4037
+ circa,2
4038
+ tch,2
4039
+ equality,2
4040
+ chuck,2
4041
+ episode,2
4042
+ envision,2
4043
+ entry,2
4044
+ entrance,2
4045
+ entitled,2
4046
+ uneducated,2
4047
+ enslaver,2
4048
+ enriching,2
4049
+ ci,2
4050
+ undocumented,2
4051
+ circle,2
4052
+ emo,2
4053
+ engaged,2
4054
+ energy,2
4055
+ underwear,2
4056
+ ending,2
4057
+ tease,2
4058
+ underwater,2
4059
+ technique,2
4060
+ en,2
4061
+ circumstance,2
4062
+ tecnical,2
4063
+ teenage,2
4064
+ teenager,2
4065
+ emojis,2
4066
+ texting,2
4067
+ uncircumcised,2
4068
+ dysphoria,2
4069
+ distracted,2
4070
+ dolphin,2
4071
+ doj,2
4072
+ doingbigthings,2
4073
+ cockroach,2
4074
+ doggy,2
4075
+ dodged,2
4076
+ unacceptable,2
4077
+ thomas,2
4078
+ dj,2
4079
+ thorn,2
4080
+ thot,2
4081
+ coffe,2
4082
+ coin,2
4083
+ disliked,2
4084
+ dyslexic,2
4085
+ throne,2
4086
+ ultimately,2
4087
+ discriminate,2
4088
+ discovered,2
4089
+ discount,2
4090
+ thyself,2
4091
+ discontent,2
4092
+ disconnect,2
4093
+ dinosaur,2
4094
+ dildo,2
4095
+ tilt,2
4096
+ diet,2
4097
+ ugliest,2
4098
+ coat,2
4099
+ coa,2
4100
+ donegan,2
4101
+ thingy,2
4102
+ tf,2
4103
+ tfw,2
4104
+ durant,2
4105
+ dumbest,2
4106
+ clinic,2
4107
+ dug,2
4108
+ uncensored,2
4109
+ thankfully,2
4110
+ ducle,2
4111
+ clocking,2
4112
+ unbreakable,2
4113
+ closet,2
4114
+ closing,2
4115
+ thawb,2
4116
+ drill,2
4117
+ theme,2
4118
+ drawer,2
4119
+ theory,2
4120
+ there,2
4121
+ douchebag,2
4122
+ thicc,2
4123
+ dorothy,2
4124
+ doorknob,2
4125
+ doo,2
4126
+ donut,2
4127
+ cnn,2
4128
+ donor,2
4129
+ hacker,2
4130
+ flying,2
4131
+ haggle,2
4132
+ holo,2
4133
+ humidity,2
4134
+ soar,2
4135
+ howyou,2
4136
+ household,2
4137
+ boot,2
4138
+ hould,2
4139
+ hotter,2
4140
+ bootleg,2
4141
+ hospital,2
4142
+ vodka,2
4143
+ vladimir,2
4144
+ sociopathic,2
4145
+ borrow,2
4146
+ soil,2
4147
+ hoodie,2
4148
+ hooded,2
4149
+ hood,2
4150
+ solid,2
4151
+ honestly,2
4152
+ homophobic,2
4153
+ bound,2
4154
+ boom,2
4155
+ snowblower,2
4156
+ bonfire,2
4157
+ ignored,2
4158
+ blocking,2
4159
+ vw,2
4160
+ smoked,2
4161
+ vulture,2
4162
+ imitate,2
4163
+ smollet,2
4164
+ smollett,2
4165
+ smoochies,2
4166
+ blown,2
4167
+ smuggling,2
4168
+ boneless,2
4169
+ boatload,2
4170
+ ideology,2
4171
+ boil,2
4172
+ identifies,2
4173
+ bologna,2
4174
+ bombathon,2
4175
+ hussein,2
4176
+ volunteer,2
4177
+ bone,2
4178
+ visited,2
4179
+ solving,2
4180
+ speaks,2
4181
+ hollow,2
4182
+ soros,2
4183
+ violating,2
4184
+ highschool,2
4185
+ highly,2
4186
+ brennan,2
4187
+ brenton,2
4188
+ brick,2
4189
+ violate,2
4190
+ southern,2
4191
+ herding,2
4192
+ hentai,2
4193
+ villager,2
4194
+ village,2
4195
+ helen,2
4196
+ spanish,2
4197
+ spank,2
4198
+ height,2
4199
+ spasm,2
4200
+ heeeeaad,2
4201
+ spay,2
4202
+ brithday,2
4203
+ sooo,2
4204
+ hiking,2
4205
+ hilarious,2
4206
+ brave,2
4207
+ somali,2
4208
+ bradford,2
4209
+ hogwarts,2
4210
+ vision,2
4211
+ hoax,2
4212
+ someday,2
4213
+ brake,2
4214
+ hive,2
4215
+ hiv,2
4216
+ bravery,2
4217
+ breathing,2
4218
+ histoy,2
4219
+ historical,2
4220
+ hirono,2
4221
+ hiring,2
4222
+ hired,2
4223
+ sometime,2
4224
+ hippie,2
4225
+ virgo,2
4226
+ somting,2
4227
+ impaler,2
4228
+ impeachment,2
4229
+ blm,2
4230
+ smeller,2
4231
+ signed,2
4232
+ sikh,2
4233
+ j,2
4234
+ itch,2
4235
+ italian,2
4236
+ israelite,2
4237
+ isoroku,2
4238
+ sincerely,2
4239
+ islamist,2
4240
+ bigly,2
4241
+ biker,2
4242
+ isalamabad,2
4243
+ irs,2
4244
+ irritate,2
4245
+ bikers,2
4246
+ irrational,2
4247
+ sip,2
4248
+ irl,2
4249
+ irish,2
4250
+ bin,2
4251
+ investigating,2
4252
+ jamaican,2
4253
+ jannah,2
4254
+ january,2
4255
+ bent,2
4256
+ josh,2
4257
+ jordan,2
4258
+ jointly,2
4259
+ joined,2
4260
+ johnny,2
4261
+ benghazi,2
4262
+ jimmy,2
4263
+ warrior,2
4264
+ jihadi,2
4265
+ jewber,2
4266
+ besties,2
4267
+ berry,2
4268
+ jet,2
4269
+ siamese,2
4270
+ warrant,2
4271
+ warns,2
4272
+ jee,2
4273
+ jealous,2
4274
+ javeon,2
4275
+ java,2
4276
+ invented,2
4277
+ bitching,2
4278
+ site,2
4279
+ indoors,2
4280
+ inhale,2
4281
+ sleeping,2
4282
+ sleepyhead,2
4283
+ influenced,2
4284
+ slice,2
4285
+ slid,2
4286
+ infested,2
4287
+ blasting,2
4288
+ slogan,2
4289
+ individually,2
4290
+ blamed,2
4291
+ indigenous,2
4292
+ indicates,2
4293
+ independence,2
4294
+ incredible,2
4295
+ smaller,2
4296
+ blink,2
4297
+ inbreeding,2
4298
+ smashed,2
4299
+ impression,2
4300
+ blaming,2
4301
+ inmah,2
4302
+ inturupting,2
4303
+ intense,2
4304
+ intolerant,2
4305
+ intolerance,2
4306
+ interviewer,2
4307
+ walker,2
4308
+ bitter,2
4309
+ skill,2
4310
+ skilled,2
4311
+ intentionally,2
4312
+ skinny,2
4313
+ skittle,2
4314
+ inquiry,2
4315
+ skul,2
4316
+ instill,2
4317
+ skydiving,2
4318
+ instagram,2
4319
+ blackhead,2
4320
+ slapped,2
4321
+ slash,2
4322
+ slaughter,2
4323
+ wakanda,2
4324
+ heavily,2
4325
+ hypocrite,2
4326
+ hatred,2
4327
+ haram,2
4328
+ victimizes,2
4329
+ vietnam,2
4330
+ hamburger,2
4331
+ spider,2
4332
+ heal,2
4333
+ hai,2
4334
+ spin,2
4335
+ buck,2
4336
+ bubble,2
4337
+ handbook,2
4338
+ bug,2
4339
+ splendid,2
4340
+ spit,2
4341
+ brunch,2
4342
+ spent,2
4343
+ han,2
4344
+ buffering,2
4345
+ hall,2
4346
+ spelled,2
4347
+ heading,2
4348
+ hamster,2
4349
+ brutal,2
4350
+ bulimic,2
4351
+ headshot,2
4352
+ hahahaha,2
4353
+ handicap,2
4354
+ hallway,2
4355
+ hearing,2
4356
+ hanger,2
4357
+ spook,2
4358
+ havoc,2
4359
+ harvest,2
4360
+ hazzard,2
4361
+ hay,2
4362
+ handcuff,2
4363
+ sasha,1
4364
+ threatend,1
4365
+ umbilical,1
4366
+ umbra,1
4367
+ skull,1
4368
+ ultra,1
4369
+ satanic,1
4370
+ rave,1
4371
+ sharted,1
4372
+ unathi,1
4373
+ rationalize,1
4374
+ throatagraph,1
4375
+ wylde,1
4376
+ realised,1
4377
+ yaaahhh,1
4378
+ realistic,1
4379
+ realistically,1
4380
+ skoal,1
4381
+ umm,1
4382
+ xzhibit,1
4383
+ sassy,1
4384
+ react,1
4385
+ reacts,1
4386
+ reactor,1
4387
+ venezuelan,1
4388
+ reader,1
4389
+ thor,1
4390
+ xbox,1
4391
+ sauce,1
4392
+ thoat,1
4393
+ slapping,1
4394
+ scramble,1
4395
+ stampede,1
4396
+ reached,1
4397
+ slag,1
4398
+ unapologetically,1
4399
+ wyness,1
4400
+ skyscraper,1
4401
+ reaces,1
4402
+ saudi,1
4403
+ raysuss,1
4404
+ umsunu,1
4405
+ straw,1
4406
+ shea,1
4407
+ yahhhhhh,1
4408
+ ram,1
4409
+ sketch,1
4410
+ randy,1
4411
+ ughh,1
4412
+ yeayah,1
4413
+ stalin,1
4414
+ timmy,1
4415
+ ranch,1
4416
+ tin,1
4417
+ tina,1
4418
+ skate,1
4419
+ ugh,1
4420
+ scrabble,1
4421
+ sheikh,1
4422
+ yeet,1
4423
+ sketchy,1
4424
+ shel,1
4425
+ rallying,1
4426
+ tingle,1
4427
+ ufc,1
4428
+ sk,1
4429
+ uckin,1
4430
+ yelled,1
4431
+ sjw,1
4432
+ tyreek,1
4433
+ tirty,1
4434
+ shemale,1
4435
+ shepard,1
4436
+ whiteprideworldwide,1
4437
+ ranger,1
4438
+ uglyass,1
4439
+ throwback,1
4440
+ rascism,1
4441
+ thrower,1
4442
+ skipped,1
4443
+ thumb,1
4444
+ wy,1
4445
+ thursday,1
4446
+ thyme,1
4447
+ ratchet,1
4448
+ yarmulke,1
4449
+ spongebob,1
4450
+ sheckles,1
4451
+ yawn,1
4452
+ stall,1
4453
+ stalk,1
4454
+ ti,1
4455
+ timeline,1
4456
+ tiajuana,1
4457
+ tic,1
4458
+ ticc,1
4459
+ tickle,1
4460
+ tiddies,1
4461
+ tide,1
4462
+ tile,1
4463
+ skinned,1
4464
+ raper,1
4465
+ yearbook,1
4466
+ savior,1
4467
+ vhen,1
4468
+ yearly,1
4469
+ slaughtered,1
4470
+ waitress,1
4471
+ sharpener,1
4472
+ refund,1
4473
+ testimony,1
4474
+ weaponsto,1
4475
+ unconventional,1
4476
+ veiw,1
4477
+ unconscious,1
4478
+ unclear,1
4479
+ regain,1
4480
+ testosterone,1
4481
+ sarcasm,1
4482
+ refused,1
4483
+ uncivilized,1
4484
+ spoke,1
4485
+ sloppy,1
4486
+ wealthy,1
4487
+ wrinkle,1
4488
+ sloooowly,1
4489
+ sargent,1
4490
+ screamed,1
4491
+ shaking,1
4492
+ saria,1
4493
+ th,1
4494
+ thai,1
4495
+ thailand,1
4496
+ slinkies,1
4497
+ tham,1
4498
+ slightly,1
4499
+ shallow,1
4500
+ thankful,1
4501
+ shagging,1
4502
+ testify,1
4503
+ uncover,1
4504
+ tesitfy,1
4505
+ splitting,1
4506
+ whitlock,1
4507
+ terminigger,1
4508
+ termite,1
4509
+ underprivileged,1
4510
+ rehabilitated,1
4511
+ underpaid,1
4512
+ wage,1
4513
+ smackahoe,1
4514
+ terrier,1
4515
+ stayed,1
4516
+ spock,1
4517
+ regualr,1
4518
+ registration,1
4519
+ slutty,1
4520
+ terrori,1
4521
+ wahabi,1
4522
+ shadowy,1
4523
+ registered,1
4524
+ register,1
4525
+ waist,1
4526
+ wrap,1
4527
+ shag,1
4528
+ regimen,1
4529
+ regime,1
4530
+ regen,1
4531
+ tese,1
4532
+ refrigerator,1
4533
+ spokesman,1
4534
+ wwiii,1
4535
+ slavemaster,1
4536
+ therapist,1
4537
+ weakest,1
4538
+ recieve,1
4539
+ theriously,1
4540
+ theyre,1
4541
+ theyve,1
4542
+ sash,1
4543
+ slayer,1
4544
+ thick,1
4545
+ thicker,1
4546
+ whipepo,1
4547
+ recall,1
4548
+ thief,1
4549
+ rebuild,1
4550
+ referred,1
4551
+ unatural,1
4552
+ reassignment,1
4553
+ wtc,1
4554
+ thigh,1
4555
+ waiter,1
4556
+ starring,1
4557
+ weaken,1
4558
+ slaughtering,1
4559
+ vhs,1
4560
+ sharpened,1
4561
+ unattended,1
4562
+ thinki,1
4563
+ thinkin,1
4564
+ shard,1
4565
+ recital,1
4566
+ thenthe,1
4567
+ sleepier,1
4568
+ starvi,1
4569
+ refered,1
4570
+ waited,1
4571
+ refer,1
4572
+ reenact,1
4573
+ ree,1
4574
+ wrist,1
4575
+ unbury,1
4576
+ velasquez,1
4577
+ thanksgivingclapback,1
4578
+ starve,1
4579
+ writing,1
4580
+ thatextra,1
4581
+ unbothered,1
4582
+ sleevies,1
4583
+ venezuela,1
4584
+ unborn,1
4585
+ recruiter,1
4586
+ shamima,1
4587
+ theater,1
4588
+ theatrical,1
4589
+ unbleeble,1
4590
+ sas,1
4591
+ theleft,1
4592
+ whitey,1
4593
+ themuslimes,1
4594
+ reconstruction,1
4595
+ wea,1
4596
+ shhh,1
4597
+ tying,1
4598
+ sceams,1
4599
+ purifies,1
4600
+ trapped,1
4601
+ trapping,1
4602
+ purification,1
4603
+ turducken,1
4604
+ zakir,1
4605
+ sickest,1
4606
+ trashed,1
4607
+ shore,1
4608
+ turbulence,1
4609
+ trashing,1
4610
+ trauma,1
4611
+ traumatised,1
4612
+ squatted,1
4613
+ pupper,1
4614
+ sporting,1
4615
+ sibling,1
4616
+ versus,1
4617
+ tray,1
4618
+ tune,1
4619
+ shorty,1
4620
+ punishing,1
4621
+ scented,1
4622
+ punished,1
4623
+ sportsman,1
4624
+ schaaf,1
4625
+ si,1
4626
+ trap,1
4627
+ transvestigation,1
4628
+ wayne,1
4629
+ purposefully,1
4630
+ python,1
4631
+ tranquilized,1
4632
+ pygmy,1
4633
+ squidward,1
4634
+ transbender,1
4635
+ scary,1
4636
+ transexual,1
4637
+ transfat,1
4638
+ transfer,1
4639
+ warn,1
4640
+ transferred,1
4641
+ youve,1
4642
+ transforms,1
4643
+ yugoslav,1
4644
+ pusher,1
4645
+ yummy,1
4646
+ turk,1
4647
+ version,1
4648
+ transgenderman,1
4649
+ transgendershit,1
4650
+ transphobes,1
4651
+ yuuuge,1
4652
+ sicko,1
4653
+ pursue,1
4654
+ transphobia,1
4655
+ shootzanigger,1
4656
+ purposely,1
4657
+ warren,1
4658
+ shoulda,1
4659
+ shyquisha,1
4660
+ pun,1
4661
+ schakowsky,1
4662
+ trim,1
4663
+ puberty,1
4664
+ pta,1
4665
+ shrug,1
4666
+ shrimp,1
4667
+ wart,1
4668
+ schedule,1
4669
+ pt,1
4670
+ shouted,1
4671
+ psychosis,1
4672
+ troii,1
4673
+ trolled,1
4674
+ trunk,1
4675
+ shoutout,1
4676
+ psychological,1
4677
+ shove,1
4678
+ schnazi,1
4679
+ psycho,1
4680
+ showered,1
4681
+ trumpanzees,1
4682
+ sprite,1
4683
+ pssst,1
4684
+ zoroastrain,1
4685
+ proxy,1
4686
+ schoolmate,1
4687
+ truckload,1
4688
+ shuffling,1
4689
+ pubes,1
4690
+ pubg,1
4691
+ shutter,1
4692
+ shuttle,1
4693
+ shutting,1
4694
+ tube,1
4695
+ pulsating,1
4696
+ pulp,1
4697
+ pulling,1
4698
+ treating,1
4699
+ treaty,1
4700
+ trench,1
4701
+ spyder,1
4702
+ zealander,1
4703
+ whiteback,1
4704
+ trespasser,1
4705
+ shunned,1
4706
+ zero,1
4707
+ tryna,1
4708
+ puerto,1
4709
+ tresspass,1
4710
+ trevor,1
4711
+ trey,1
4712
+ zimbabwe,1
4713
+ zola,1
4714
+ truthful,1
4715
+ tricare,1
4716
+ trickster,1
4717
+ spur,1
4718
+ squigga,1
4719
+ sidewalk,1
4720
+ turner,1
4721
+ ra,1
4722
+ scold,1
4723
+ radicalize,1
4724
+ tongue,1
4725
+ stadium,1
4726
+ radicalization,1
4727
+ scare,1
4728
+ twister,1
4729
+ sinner,1
4730
+ yelp,1
4731
+ radiation,1
4732
+ twisted,1
4733
+ shiite,1
4734
+ stacked,1
4735
+ racisim,1
4736
+ toolbars,1
4737
+ shini,1
4738
+ stacey,1
4739
+ tooracist,1
4740
+ singlehandedly,1
4741
+ shipped,1
4742
+ tortured,1
4743
+ toshiba,1
4744
+ yobo,1
4745
+ toss,1
4746
+ rabbit,1
4747
+ totalinarism,1
4748
+ totality,1
4749
+ radicalized,1
4750
+ scalefrom,1
4751
+ radio,1
4752
+ shhhhhhh,1
4753
+ walkin,1
4754
+ stain,1
4755
+ sittin,1
4756
+ tobe,1
4757
+ scored,1
4758
+ raining,1
4759
+ toddler,1
4760
+ railroad,1
4761
+ toddlerself,1
4762
+ tokyo,1
4763
+ railed,1
4764
+ split,1
4765
+ shhiiit,1
4766
+ walmarts,1
4767
+ staffer,1
4768
+ vent,1
4769
+ shibe,1
4770
+ sisterfister,1
4771
+ raided,1
4772
+ tomboyish,1
4773
+ raggedy,1
4774
+ tomi,1
4775
+ tommy,1
4776
+ versailles,1
4777
+ siren,1
4778
+ shift,1
4779
+ rabbi,1
4780
+ twilight,1
4781
+ quad,1
4782
+ totally,1
4783
+ younglings,1
4784
+ traditionally,1
4785
+ scarlett,1
4786
+ tragic,1
4787
+ tragically,1
4788
+ silly,1
4789
+ wanting,1
4790
+ tweeker,1
4791
+ yous,1
4792
+ wanty,1
4793
+ shlomo,1
4794
+ shock,1
4795
+ veteranos,1
4796
+ sike,1
4797
+ waterboy,1
4798
+ scissor,1
4799
+ sighting,1
4800
+ queensland,1
4801
+ trainer,1
4802
+ shocker,1
4803
+ training,1
4804
+ watched,1
4805
+ warming,1
4806
+ queef,1
4807
+ tranation,1
4808
+ sieg,1
4809
+ turtle,1
4810
+ tweekers,1
4811
+ quicksaving,1
4812
+ quiet,1
4813
+ toward,1
4814
+ touching,1
4815
+ wanker,1
4816
+ sing,1
4817
+ yooouu,1
4818
+ quokkas,1
4819
+ sinday,1
4820
+ tourette,1
4821
+ sponsored,1
4822
+ tourist,1
4823
+ stabbin,1
4824
+ stab,1
4825
+ sincere,1
4826
+ shitbox,1
4827
+ silverman,1
4828
+ shithead,1
4829
+ wanking,1
4830
+ twerking,1
4831
+ whitejoke,1
4832
+ st,1
4833
+ shitkick,1
4834
+ similarity,1
4835
+ quietly,1
4836
+ watson,1
4837
+ wating,1
4838
+ shitposter,1
4839
+ trabajo,1
4840
+ reigh,1
4841
+ tent,1
4842
+ whlle,1
4843
+ sellout,1
4844
+ upside,1
4845
+ wider,1
4846
+ semicolon,1
4847
+ rockin,1
4848
+ supermarket,1
4849
+ supermodel,1
4850
+ wiped,1
4851
+ sailing,1
4852
+ supply,1
4853
+ somehwere,1
4854
+ semite,1
4855
+ virulent,1
4856
+ valve,1
4857
+ seagull,1
4858
+ saint,1
4859
+ virus,1
4860
+ semits,1
4861
+ sake,1
4862
+ victimize,1
4863
+ somalia,1
4864
+ sen,1
4865
+ robber,1
4866
+ supremacy,1
4867
+ supreme,1
4868
+ suprise,1
4869
+ wirathu,1
4870
+ wherever,1
4871
+ superiority,1
4872
+ sean,1
4873
+ senater,1
4874
+ speeding,1
4875
+ safely,1
4876
+ summary,1
4877
+ romantic,1
4878
+ romanian,1
4879
+ widow,1
4880
+ wetern,1
4881
+ roman,1
4882
+ violently,1
4883
+ sumthin,1
4884
+ selfish,1
4885
+ urinal,1
4886
+ roller,1
4887
+ stonger,1
4888
+ sunglass,1
4889
+ sunni,1
4890
+ valuation,1
4891
+ urge,1
4892
+ stoner,1
4893
+ roleplaying,1
4894
+ shoving,1
4895
+ winston,1
4896
+ sunset,1
4897
+ safest,1
4898
+ werewolf,1
4899
+ seasame,1
4900
+ supercoon,1
4901
+ somethings,1
4902
+ solzhenitsyn,1
4903
+ whydo,1
4904
+ tequila,1
4905
+ ringtone,1
4906
+ wiser,1
4907
+ sus,1
4908
+ unto,1
4909
+ rilis,1
4910
+ rihanna,1
4911
+ rightfully,1
4912
+ vaping,1
4913
+ susan,1
4914
+ welcomed,1
4915
+ unseal,1
4916
+ rigging,1
4917
+ unresponsive,1
4918
+ salsa,1
4919
+ rig,1
4920
+ suspected,1
4921
+ unrape,1
4922
+ sens,1
4923
+ whoring,1
4924
+ solder,1
4925
+ rider,1
4926
+ unplug,1
4927
+ swallowing,1
4928
+ wishing,1
4929
+ swamp,1
4930
+ vittorio,1
4931
+ stingy,1
4932
+ unpaid,1
4933
+ untreated,1
4934
+ surviving,1
4935
+ roadhouse,1
4936
+ salon,1
4937
+ surely,1
4938
+ solviets,1
4939
+ salary,1
4940
+ surprised,1
4941
+ unwell,1
4942
+ unwelcome,1
4943
+ surprising,1
4944
+ roach,1
4945
+ wellbeing,1
4946
+ surrogate,1
4947
+ visor,1
4948
+ rl,1
4949
+ surveillance,1
4950
+ visualization,1
4951
+ solver,1
4952
+ ritual,1
4953
+ whilst,1
4954
+ risking,1
4955
+ solultions,1
4956
+ ripped,1
4957
+ ripot,1
4958
+ solo,1
4959
+ unvetted,1
4960
+ wisdom,1
4961
+ rioting,1
4962
+ unvaccinated,1
4963
+ survived,1
4964
+ wetter,1
4965
+ romantice,1
4966
+ romney,1
4967
+ seattle,1
4968
+ runway,1
4969
+ runt,1
4970
+ vieques,1
4971
+ struggling,1
4972
+ willpower,1
4973
+ stub,1
4974
+ spangled,1
4975
+ sacrifice,1
4976
+ spam,1
4977
+ rumor,1
4978
+ sacrificed,1
4979
+ studied,1
4980
+ studying,1
4981
+ seemed,1
4982
+ spacky,1
4983
+ seems,1
4984
+ stuffed,1
4985
+ spacecraft,1
4986
+ sacrificing,1
4987
+ stupider,1
4988
+ villain,1
4989
+ willy,1
4990
+ stutter,1
4991
+ uwu,1
4992
+ soybeaner,1
4993
+ rug,1
4994
+ vague,1
4995
+ willl,1
4996
+ vaccine,1
4997
+ selective,1
4998
+ rus,1
4999
+ spear,1
5000
+ sa,1
5001
+ stream,1
5002
+ rvives,1
5003
+ secure,1
5004
+ wildebeest,1
5005
+ speaker,1
5006
+ vile,1
5007
+ wheat,1
5008
+ strengthen,1
5009
+ wilford,1
5010
+ sabarmati,1
5011
+ vaginai,1
5012
+ wilfully,1
5013
+ rushmore,1
5014
+ seed,1
5015
+ secondary,1
5016
+ spayed,1
5017
+ vietnamese,1
5018
+ wilkes,1
5019
+ stricken,1
5020
+ stripper,1
5021
+ williams,1
5022
+ spawn,1
5023
+ strive,1
5024
+ whatsup,1
5025
+ stroller,1
5026
+ soviet,1
5027
+ rudolf,1
5028
+ sovereign,1
5029
+ storming,1
5030
+ violates,1
5031
+ selassie,1
5032
+ rotherham,1
5033
+ rotating,1
5034
+ rot,1
5035
+ rosie,1
5036
+ spectre,1
5037
+ victory,1
5038
+ rosenbergs,1
5039
+ usher,1
5040
+ select,1
5041
+ stork,1
5042
+ useful,1
5043
+ winfrey,1
5044
+ suggested,1
5045
+ victoria,1
5046
+ sadiq,1
5047
+ roommate,1
5048
+ suitcase,1
5049
+ whacked,1
5050
+ sulking,1
5051
+ valid,1
5052
+ sultry,1
5053
+ rook,1
5054
+ wink,1
5055
+ seashell,1
5056
+ ronda,1
5057
+ ustad,1
5058
+ rotten,1
5059
+ suckin,1
5060
+ subsidized,1
5061
+ wilber,1
5062
+ segregation,1
5063
+ subdue,1
5064
+ utah,1
5065
+ subject,1
5066
+ vince,1
5067
+ winchester,1
5068
+ submissive,1
5069
+ sour,1
5070
+ windchimes,1
5071
+ usury,1
5072
+ rubbed,1
5073
+ subtraction,1
5074
+ usual,1
5075
+ whatchoo,1
5076
+ subversive,1
5077
+ rt,1
5078
+ succeed,1
5079
+ royalty,1
5080
+ roy,1
5081
+ rowe,1
5082
+ violated,1
5083
+ row,1
5084
+ suckas,1
5085
+ sucked,1
5086
+ rousey,1
5087
+ ricochet,1
5088
+ soft,1
5089
+ sodomite,1
5090
+ volunteering,1
5091
+ snail,1
5092
+ sanctity,1
5093
+ spirit,1
5094
+ vibrator,1
5095
+ renso,1
5096
+ rendition,1
5097
+ removin,1
5098
+ taxi,1
5099
+ smurf,1
5100
+ tdi,1
5101
+ veggie,1
5102
+ vegies,1
5103
+ smudge,1
5104
+ settler,1
5105
+ te,1
5106
+ removable,1
5107
+ remotely,1
5108
+ remorse,1
5109
+ smothered,1
5110
+ smoothie,1
5111
+ remington,1
5112
+ unemployed,1
5113
+ vour,1
5114
+ reminded,1
5115
+ vowed,1
5116
+ undone,1
5117
+ remembering,1
5118
+ tattle,1
5119
+ reoffend,1
5120
+ requires,1
5121
+ tasting,1
5122
+ talmudists,1
5123
+ tammy,1
5124
+ unfollowing,1
5125
+ sniffer,1
5126
+ repulsed,1
5127
+ tanning,1
5128
+ unfollowed,1
5129
+ tantrum,1
5130
+ uneployment,1
5131
+ reporting,1
5132
+ sesame,1
5133
+ session,1
5134
+ reportin,1
5135
+ workout,1
5136
+ tapped,1
5137
+ tard,1
5138
+ workplace,1
5139
+ sprinkler,1
5140
+ replied,1
5141
+ sneeze,1
5142
+ replaced,1
5143
+ replace,1
5144
+ repercussion,1
5145
+ repeat,1
5146
+ targeted,1
5147
+ snapchat,1
5148
+ repair,1
5149
+ wehrmacht,1
5150
+ sancuary,1
5151
+ vehicle,1
5152
+ remebered,1
5153
+ w,1
5154
+ telly,1
5155
+ smiiiiile,1
5156
+ temper,1
5157
+ smelling,1
5158
+ template,1
5159
+ rejoices,1
5160
+ sexslave,1
5161
+ temple,1
5162
+ worshipped,1
5163
+ reject,1
5164
+ temptation,1
5165
+ reinstated,1
5166
+ steam,1
5167
+ reinforcement,1
5168
+ viannas,1
5169
+ tendies,1
5170
+ reindeer,1
5171
+ viking,1
5172
+ wa,1
5173
+ reincarnation,1
5174
+ smeil,1
5175
+ wag,1
5176
+ weeeee,1
5177
+ reincarnated,1
5178
+ tentacle,1
5179
+ smashing,1
5180
+ spittin,1
5181
+ tehran,1
5182
+ understood,1
5183
+ smokin,1
5184
+ teaher,1
5185
+ remains,1
5186
+ sewage,1
5187
+ undo,1
5188
+ teamed,1
5189
+ teapot,1
5190
+ sewn,1
5191
+ scroll,1
5192
+ vr,1
5193
+ relocate,1
5194
+ screwed,1
5195
+ rellly,1
5196
+ weep,1
5197
+ veil,1
5198
+ smokey,1
5199
+ smoker,1
5200
+ relic,1
5201
+ weekly,1
5202
+ steel,1
5203
+ screenshot,1
5204
+ teddy,1
5205
+ teef,1
5206
+ sane,1
5207
+ sank,1
5208
+ teepee,1
5209
+ smirked,1
5210
+ snigger,1
5211
+ wookie,1
5212
+ rickyyy,1
5213
+ scummy,1
5214
+ seperate,1
5215
+ revealed,1
5216
+ sweetie,1
5217
+ sweety,1
5218
+ swiftly,1
5219
+ unnoticed,1
5220
+ swiming,1
5221
+ unnecessary,1
5222
+ scumbags,1
5223
+ returned,1
5224
+ swindler,1
5225
+ witness,1
5226
+ retro,1
5227
+ unmarked,1
5228
+ retribution,1
5229
+ retreated,1
5230
+ voetsek,1
5231
+ retired,1
5232
+ retarted,1
5233
+ seperation,1
5234
+ switching,1
5235
+ salvation,1
5236
+ unlock,1
5237
+ wnen,1
5238
+ retardant,1
5239
+ samir,1
5240
+ whooped,1
5241
+ revenge,1
5242
+ revert,1
5243
+ snitching,1
5244
+ unoxolo,1
5245
+ ricky,1
5246
+ wit,1
5247
+ witch,1
5248
+ rican,1
5249
+ ribbed,1
5250
+ weirder,1
5251
+ unpacked,1
5252
+ witchu,1
5253
+ sweat,1
5254
+ whorefax,1
5255
+ varadkar,1
5256
+ witht,1
5257
+ sweater,1
5258
+ sweatin,1
5259
+ sting,1
5260
+ rez,1
5261
+ sweating,1
5262
+ sweaty,1
5263
+ revolution,1
5264
+ socially,1
5265
+ revive,1
5266
+ sepasanmemes,1
5267
+ reviewed,1
5268
+ review,1
5269
+ swedish,1
5270
+ sweep,1
5271
+ varied,1
5272
+ symbrachydactyly,1
5273
+ resume,1
5274
+ wok,1
5275
+ symptom,1
5276
+ samurai,1
5277
+ reside,1
5278
+ snorting,1
5279
+ tagging,1
5280
+ taint,1
5281
+ tainted,1
5282
+ unity,1
5283
+ whoah,1
5284
+ reshare,1
5285
+ talak,1
5286
+ server,1
5287
+ uniqueness,1
5288
+ tale,1
5289
+ talented,1
5290
+ voila,1
5291
+ volcano,1
5292
+ rescued,1
5293
+ volks,1
5294
+ unicorn,1
5295
+ snooze,1
5296
+ talkin,1
5297
+ scrub,1
5298
+ ungrateful,1
5299
+ san,1
5300
+ unfriended,1
5301
+ rescheduled,1
5302
+ rerun,1
5303
+ spicy,1
5304
+ stfu,1
5305
+ resign,1
5306
+ snuffy,1
5307
+ scumbag,1
5308
+ restriction,1
5309
+ restrict,1
5310
+ restraining,1
5311
+ restoration,1
5312
+ wolf,1
5313
+ various,1
5314
+ responsibly,1
5315
+ snuggle,1
5316
+ syphilitic,1
5317
+ systematically,1
5318
+ systematig,1
5319
+ t,1
5320
+ university,1
5321
+ voiced,1
5322
+ responisble,1
5323
+ unlike,1
5324
+ sphincter,1
5325
+ taba,1
5326
+ serpentine,1
5327
+ womb,1
5328
+ respawn,1
5329
+ tac,1
5330
+ resisting,1
5331
+ resist,1
5332
+ unlearn,1
5333
+ aaa,1
5334
+ laura,1
5335
+ proven,1
5336
+ dic,1
5337
+ digital,1
5338
+ difffrent,1
5339
+ differently,1
5340
+ dictionary,1
5341
+ dictator,1
5342
+ dice,1
5343
+ diabeetus,1
5344
+ dipped,1
5345
+ devoted,1
5346
+ devide,1
5347
+ development,1
5348
+ detector,1
5349
+ detained,1
5350
+ destroys,1
5351
+ diploma,1
5352
+ dipper,1
5353
+ deservee,1
5354
+ disappeared,1
5355
+ discover,1
5356
+ discourse,1
5357
+ discontinued,1
5358
+ disarmament,1
5359
+ disappointment,1
5360
+ disappointing,1
5361
+ disapearred,1
5362
+ dipshit,1
5363
+ disagrees,1
5364
+ disagreement,1
5365
+ disadvantage,1
5366
+ director,1
5367
+ directly,1
5368
+ directing,1
5369
+ destroyer,1
5370
+ desegregation,1
5371
+ discus,1
5372
+ delicate,1
5373
+ demographic,1
5374
+ democtrat,1
5375
+ demise,1
5376
+ dementia,1
5377
+ demanding,1
5378
+ deliver,1
5379
+ degeneracy,1
5380
+ demonic,1
5381
+ deformity,1
5382
+ defines,1
5383
+ define,1
5384
+ defense,1
5385
+ defender,1
5386
+ defended,1
5387
+ demon,1
5388
+ demonrat,1
5389
+ descent,1
5390
+ deplorable,1
5391
+ dericious,1
5392
+ derangement,1
5393
+ dept,1
5394
+ depressed,1
5395
+ deporting,1
5396
+ deportation,1
5397
+ depiction,1
5398
+ denied,1
5399
+ depends,1
5400
+ depending,1
5401
+ depend,1
5402
+ deoderant,1
5403
+ dentist,1
5404
+ denies,1
5405
+ discovers,1
5406
+ discussing,1
5407
+ defeat,1
5408
+ dragged,1
5409
+ drinkin,1
5410
+ drinker,1
5411
+ drenched,1
5412
+ dread,1
5413
+ dre,1
5414
+ drank,1
5415
+ dr,1
5416
+ dripping,1
5417
+ downtown,1
5418
+ downstairs,1
5419
+ downloading,1
5420
+ downloaded,1
5421
+ downing,1
5422
+ douche,1
5423
+ drip,1
5424
+ droppin,1
5425
+ dosent,1
5426
+ dumpster,1
5427
+ earl,1
5428
+ eager,1
5429
+ dyke,1
5430
+ dwarfism,1
5431
+ duramax,1
5432
+ dunked,1
5433
+ dumber,1
5434
+ dropping,1
5435
+ dulux,1
5436
+ duel,1
5437
+ ductivity,1
5438
+ dtsy,1
5439
+ drum,1
5440
+ drugged,1
5441
+ dosgraceful,1
5442
+ dora,1
5443
+ discussion,1
5444
+ disrespecting,1
5445
+ divided,1
5446
+ dive,1
5447
+ ditch,1
5448
+ disturbance,1
5449
+ disturb,1
5450
+ distraction,1
5451
+ disrespect,1
5452
+ diving,1
5453
+ display,1
5454
+ disloyal,1
5455
+ dislike,1
5456
+ dishonesty,1
5457
+ disguised,1
5458
+ disgrace,1
5459
+ divine,1
5460
+ division,1
5461
+ doorway,1
5462
+ dolled,1
5463
+ doompeda,1
5464
+ donny,1
5465
+ dong,1
5466
+ donating,1
5467
+ dominican,1
5468
+ dominance,1
5469
+ dogshit,1
5470
+ divorce,1
5471
+ doggo,1
5472
+ doe,1
5473
+ doda,1
5474
+ dmv,1
5475
+ dlc,1
5476
+ dizzy,1
5477
+ defenceless,1
5478
+ defamation,1
5479
+ earplug,1
5480
+ cornbread,1
5481
+ cortez,1
5482
+ corruption,1
5483
+ correctly,1
5484
+ corps,1
5485
+ cornwallis,1
5486
+ cornered,1
5487
+ core,1
5488
+ cosas,1
5489
+ corbynite,1
5490
+ copsuckers,1
5491
+ copper,1
5492
+ copied,1
5493
+ cope,1
5494
+ cooked,1
5495
+ corvette,1
5496
+ costello,1
5497
+ conversion,1
5498
+ coworker,1
5499
+ crazier,1
5500
+ crayon,1
5501
+ craving,1
5502
+ crastinate,1
5503
+ crass,1
5504
+ coz,1
5505
+ cowgirl,1
5506
+ costume,1
5507
+ cowbell,1
5508
+ covering,1
5509
+ covered,1
5510
+ coupe,1
5511
+ countryside,1
5512
+ counter,1
5513
+ convince,1
5514
+ conversation,1
5515
+ creative,1
5516
+ conduct,1
5517
+ connected,1
5518
+ confusion,1
5519
+ confuses,1
5520
+ confiscate,1
5521
+ conentration,1
5522
+ cone,1
5523
+ condo,1
5524
+ conor,1
5525
+ conditioner,1
5526
+ conditioned,1
5527
+ conclusion,1
5528
+ concentrated,1
5529
+ compromise,1
5530
+ comprised,1
5531
+ conned,1
5532
+ conservitives,1
5533
+ contributor,1
5534
+ contains,1
5535
+ contributing,1
5536
+ contribute,1
5537
+ contraption,1
5538
+ contract,1
5539
+ contiue,1
5540
+ continues,1
5541
+ containment,1
5542
+ conspiracy,1
5543
+ consultant,1
5544
+ constitutional,1
5545
+ constellation,1
5546
+ constatntly,1
5547
+ constantine,1
5548
+ consructed,1
5549
+ creating,1
5550
+ credibility,1
5551
+ def,1
5552
+ dart,1
5553
+ dave,1
5554
+ dashing,1
5555
+ dashboard,1
5556
+ dash,1
5557
+ das,1
5558
+ darwin,1
5559
+ darkie,1
5560
+ dawah,1
5561
+ darker,1
5562
+ daring,1
5563
+ dank,1
5564
+ damage,1
5565
+ dail,1
5566
+ dahyun,1
5567
+ davis,1
5568
+ dayton,1
5569
+ dafuq,1
5570
+ decorated,1
5571
+ deere,1
5572
+ deeply,1
5573
+ deemed,1
5574
+ deed,1
5575
+ dee,1
5576
+ dedicated,1
5577
+ declared,1
5578
+ deadliest,1
5579
+ decieved,1
5580
+ decides,1
5581
+ deceiving,1
5582
+ debit,1
5583
+ dealt,1
5584
+ deadly,1
5585
+ dah,1
5586
+ dachshhund,1
5587
+ creme,1
5588
+ criticize,1
5589
+ crowter,1
5590
+ crowd,1
5591
+ crow,1
5592
+ crooked,1
5593
+ crocodile,1
5594
+ croatia,1
5595
+ critical,1
5596
+ cruise,1
5597
+ critic,1
5598
+ crisper,1
5599
+ cricket,1
5600
+ crewman,1
5601
+ crenshawn,1
5602
+ crenshaw,1
5603
+ crude,1
5604
+ crusade,1
5605
+ dach,1
5606
+ curfew,1
5607
+ cyril,1
5608
+ cutest,1
5609
+ curvature,1
5610
+ cursive,1
5611
+ curse,1
5612
+ currently,1
5613
+ cumshot,1
5614
+ cuban,1
5615
+ cummings,1
5616
+ cumming,1
5617
+ cultural,1
5618
+ culebra,1
5619
+ cucks,1
5620
+ cuckholds,1
5621
+ earned,1
5622
+ eater,1
5623
+ proudly,1
5624
+ fluent,1
5625
+ fondled,1
5626
+ follows,1
5627
+ followed,1
5628
+ focusing,1
5629
+ flyboy,1
5630
+ flute,1
5631
+ flow,1
5632
+ foodstamps,1
5633
+ florida,1
5634
+ floorboard,1
5635
+ float,1
5636
+ flirting,1
5637
+ flipside,1
5638
+ fleshlight,1
5639
+ fondles,1
5640
+ fooled,1
5641
+ flavored,1
5642
+ forty,1
5643
+ fracture,1
5644
+ fraction,1
5645
+ fourth,1
5646
+ foundation,1
5647
+ foster,1
5648
+ forwarded,1
5649
+ forth,1
5650
+ foolish,1
5651
+ forrestal,1
5652
+ fornicator,1
5653
+ forhead,1
5654
+ forfeit,1
5655
+ forefather,1
5656
+ foos,1
5657
+ fleecing,1
5658
+ flatties,1
5659
+ franken,1
5660
+ feisch,1
5661
+ fest,1
5662
+ feminine,1
5663
+ femboys,1
5664
+ felony,1
5665
+ felicia,1
5666
+ feldman,1
5667
+ feelin,1
5668
+ fetish,1
5669
+ fee,1
5670
+ fax,1
5671
+ favoutrite,1
5672
+ favour,1
5673
+ favor,1
5674
+ faucet,1
5675
+ festival,1
5676
+ ffriends,1
5677
+ flashback,1
5678
+ finish,1
5679
+ flash,1
5680
+ flammenwerfer,1
5681
+ flammable,1
5682
+ fishin,1
5683
+ fisherman,1
5684
+ finsh,1
5685
+ fingertip,1
5686
+ fiction,1
5687
+ filthy,1
5688
+ filipina,1
5689
+ file,1
5690
+ fil,1
5691
+ figureed,1
5692
+ fifteen,1
5693
+ francisco,1
5694
+ freaked,1
5695
+ fastes,1
5696
+ gal,1
5697
+ gangsta,1
5698
+ gangbanging,1
5699
+ gangbanged,1
5700
+ gamestop,1
5701
+ galaxy,1
5702
+ gala,1
5703
+ gained,1
5704
+ gargle,1
5705
+ gain,1
5706
+ gag,1
5707
+ führerious,1
5708
+ fwd,1
5709
+ fuzzy,1
5710
+ futility,1
5711
+ garage,1
5712
+ garlic,1
5713
+ furfags,1
5714
+ general,1
5715
+ genius,1
5716
+ genetics,1
5717
+ genetic,1
5718
+ generosity,1
5719
+ generally,1
5720
+ generalization,1
5721
+ geez,1
5722
+ gasket,1
5723
+ gaza,1
5724
+ gayness,1
5725
+ gathering,1
5726
+ gatekeeper,1
5727
+ gate,1
5728
+ gasoline,1
5729
+ futas,1
5730
+ funsies,1
5731
+ freaking,1
5732
+ freshener,1
5733
+ frown,1
5734
+ frostbite,1
5735
+ fritter,1
5736
+ friended,1
5737
+ fried,1
5738
+ fride,1
5739
+ fren,1
5740
+ frreedom,1
5741
+ freightliner,1
5742
+ freight,1
5743
+ freezing,1
5744
+ freesentsov,1
5745
+ freemason,1
5746
+ freekolchenko,1
5747
+ frozen,1
5748
+ frustrated,1
5749
+ funnier,1
5750
+ fuhrererious,1
5751
+ funcle,1
5752
+ fumigated,1
5753
+ ful,1
5754
+ fukrest,1
5755
+ fukislam,1
5756
+ fuk,1
5757
+ fuherious,1
5758
+ fryyy,1
5759
+ fuckyeah,1
5760
+ fuckup,1
5761
+ fucksake,1
5762
+ fuckis,1
5763
+ fuckery,1
5764
+ fucken,1
5765
+ fastest,1
5766
+ fasten,1
5767
+ eatin,1
5768
+ enforcement,1
5769
+ enters,1
5770
+ enrichment,1
5771
+ enlighten,1
5772
+ enjoyed,1
5773
+ engulfed,1
5774
+ engrish,1
5775
+ endangered,1
5776
+ environment,1
5777
+ encouraged,1
5778
+ encountered,1
5779
+ emt,1
5780
+ employment,1
5781
+ empire,1
5782
+ emphasis,1
5783
+ entity,1
5784
+ environmentalist,1
5785
+ empathy,1
5786
+ escalated,1
5787
+ established,1
5788
+ establish,1
5789
+ essential,1
5790
+ essay,1
5791
+ especially,1
5792
+ ese,1
5793
+ errythang,1
5794
+ equally,1
5795
+ errand,1
5796
+ erection,1
5797
+ erdogan,1
5798
+ eradicate,1
5799
+ equivalent,1
5800
+ equate,1
5801
+ emperor,1
5802
+ emotional,1
5803
+ esther,1
5804
+ editor,1
5805
+ eggy,1
5806
+ eggshell,1
5807
+ efftorts,1
5808
+ eerily,1
5809
+ educates,1
5810
+ educate,1
5811
+ editing,1
5812
+ eix,1
5813
+ edited,1
5814
+ edgy,1
5815
+ economist,1
5816
+ economic,1
5817
+ echo,1
5818
+ ebull,1
5819
+ ehd,1
5820
+ ejaculation,1
5821
+ emmanuel,1
5822
+ elude,1
5823
+ emma,1
5824
+ embrassed,1
5825
+ embracing,1
5826
+ embarrassing,1
5827
+ embarassing,1
5828
+ emailed,1
5829
+ elon,1
5830
+ ekse,1
5831
+ elk,1
5832
+ eliminated,1
5833
+ elijah,1
5834
+ elektrons,1
5835
+ electronic,1
5836
+ elderly,1
5837
+ establishes,1
5838
+ etch,1
5839
+ farther,1
5840
+ extensive,1
5841
+ fabric,1
5842
+ eywant,1
5843
+ eyelid,1
5844
+ eyeball,1
5845
+ extinguisher,1
5846
+ exterminated,1
5847
+ extension,1
5848
+ facial,1
5849
+ extended,1
5850
+ exsist,1
5851
+ express,1
5852
+ exposing,1
5853
+ exposed,1
5854
+ expose,1
5855
+ facetimeing,1
5856
+ factory,1
5857
+ explorer,1
5858
+ falt,1
5859
+ farted,1
5860
+ farmersownme,1
5861
+ fanny,1
5862
+ fanatical,1
5863
+ fanarts,1
5864
+ fame,1
5865
+ false,1
5866
+ fag,1
5867
+ fallonfox,1
5868
+ falcon,1
5869
+ faith,1
5870
+ fairy,1
5871
+ fair,1
5872
+ fails,1
5873
+ export,1
5874
+ exploding,1
5875
+ ethnic,1
5876
+ everey,1
5877
+ eww,1
5878
+ ewe,1
5879
+ ewborn,1
5880
+ evolve,1
5881
+ evilheart,1
5882
+ everlasting,1
5883
+ eventually,1
5884
+ excess,1
5885
+ evangelical,1
5886
+ evade,1
5887
+ euthanized,1
5888
+ euthanasia,1
5889
+ eulogy,1
5890
+ eu,1
5891
+ excavation,1
5892
+ excessive,1
5893
+ exploder,1
5894
+ exhaust,1
5895
+ explains,1
5896
+ expense,1
5897
+ expendable,1
5898
+ expelled,1
5899
+ expeditiously,1
5900
+ exis,1
5901
+ exfoliating,1
5902
+ exclaims,1
5903
+ executive,1
5904
+ execution,1
5905
+ execut,1
5906
+ excoriated,1
5907
+ exclusive,1
5908
+ exclusion,1
5909
+ complicated,1
5910
+ completion,1
5911
+ complement,1
5912
+ aunt,1
5913
+ auto,1
5914
+ author,1
5915
+ authentic,1
5916
+ austrailia,1
5917
+ aushwitz,1
5918
+ aunty,1
5919
+ attractive,1
5920
+ avdol,1
5921
+ attracted,1
5922
+ attendant,1
5923
+ attempted,1
5924
+ atheiests,1
5925
+ asylum,1
5926
+ asvab,1
5927
+ autograph,1
5928
+ ave,1
5929
+ astonishing,1
5930
+ aww,1
5931
+ babylon,1
5932
+ babrie,1
5933
+ babri,1
5934
+ baaaaa,1
5935
+ aye,1
5936
+ awwww,1
5937
+ awiens,1
5938
+ avenatti,1
5939
+ awayyyyyy,1
5940
+ awarded,1
5941
+ awaiting,1
5942
+ avocado,1
5943
+ aviator,1
5944
+ avenger,1
5945
+ astrazine,1
5946
+ assured,1
5947
+ babysitter,1
5948
+ architecht,1
5949
+ armenian,1
5950
+ ark,1
5951
+ arizona,1
5952
+ aribic,1
5953
+ ardern,1
5954
+ architect,1
5955
+ arch,1
5956
+ armored,1
5957
+ arby,1
5958
+ arbitrary,1
5959
+ arabic,1
5960
+ aprehend,1
5961
+ appropriate,1
5962
+ approaching,1
5963
+ armor,1
5964
+ arrive,1
5965
+ assuming,1
5966
+ askies,1
5967
+ asssume,1
5968
+ association,1
5969
+ associate,1
5970
+ assert,1
5971
+ assassin,1
5972
+ aspen,1
5973
+ ashin,1
5974
+ arriving,1
5975
+ ashamed,1
5976
+ asad,1
5977
+ artistic,1
5978
+ artist,1
5979
+ arson,1
5980
+ arrrrrrr,1
5981
+ babyself,1
5982
+ bachman,1
5983
+ approachable,1
5984
+ battered,1
5985
+ beagle,1
5986
+ beacuse,1
5987
+ beacon,1
5988
+ bawrr,1
5989
+ battlefield,1
5990
+ battery,1
5991
+ battalion,1
5992
+ beastiality,1
5993
+ batshit,1
5994
+ bathtub,1
5995
+ bathe,1
5996
+ bath,1
5997
+ bates,1
5998
+ batchelor,1
5999
+ beak,1
6000
+ beatdown,1
6001
+ bataan,1
6002
+ befo,1
6003
+ behalf,1
6004
+ begun,1
6005
+ begum,1
6006
+ begging,1
6007
+ began,1
6008
+ befor,1
6009
+ beethoven,1
6010
+ beater,1
6011
+ beet,1
6012
+ beergasm,1
6013
+ becoming,1
6014
+ becky,1
6015
+ becasue,1
6016
+ becase,1
6017
+ batch,1
6018
+ basketballsareflat,1
6019
+ background,1
6020
+ baddest,1
6021
+ baldwin,1
6022
+ bait,1
6023
+ bahamian,1
6024
+ bagged,1
6025
+ badly,1
6026
+ badger,1
6027
+ badass,1
6028
+ banded,1
6029
+ backyard,1
6030
+ backwash,1
6031
+ backward,1
6032
+ backstreets,1
6033
+ backseat,1
6034
+ backlivesmatter,1
6035
+ banality,1
6036
+ banged,1
6037
+ basis,1
6038
+ barking,1
6039
+ bashing,1
6040
+ bashful,1
6041
+ baseball,1
6042
+ base,1
6043
+ barrel,1
6044
+ barrack,1
6045
+ bargain,1
6046
+ bangladesh,1
6047
+ barbeque,1
6048
+ barbed,1
6049
+ baptise,1
6050
+ bannned,1
6051
+ banner,1
6052
+ bangladeshi,1
6053
+ approached,1
6054
+ appreciating,1
6055
+ compensate,1
6056
+ admitting,1
6057
+ afar,1
6058
+ advocate,1
6059
+ advancement,1
6060
+ advance,1
6061
+ adore,1
6062
+ adoption,1
6063
+ admitted,1
6064
+ affair,1
6065
+ admits,1
6066
+ admins,1
6067
+ addition,1
6068
+ ad,1
6069
+ activist,1
6070
+ actively,1
6071
+ aff,1
6072
+ affiliation,1
6073
+ achmed,1
6074
+ agreed,1
6075
+ ahhhh,1
6076
+ ahh,1
6077
+ agrees,1
6078
+ agreement,1
6079
+ agreeing,1
6080
+ agreeignt,1
6081
+ aging,1
6082
+ afflicted,1
6083
+ agin,1
6084
+ agility,1
6085
+ aftey,1
6086
+ aftermath,1
6087
+ afrikan,1
6088
+ affordable,1
6089
+ activate,1
6090
+ achieving,1
6091
+ aim,1
6092
+ aberrant,1
6093
+ aborted,1
6094
+ abolished,1
6095
+ abmnormal,1
6096
+ ableist,1
6097
+ abilty,1
6098
+ abiity,1
6099
+ abduction,1
6100
+ abrams,1
6101
+ abc,1
6102
+ abby,1
6103
+ abbu,1
6104
+ abba,1
6105
+ aayega,1
6106
+ aaaand,1
6107
+ abraham,1
6108
+ absolute,1
6109
+ achieves,1
6110
+ accomplishment,1
6111
+ achieve,1
6112
+ acheive,1
6113
+ ace,1
6114
+ accuser,1
6115
+ accusation,1
6116
+ accts,1
6117
+ accomplishes,1
6118
+ abstinence,1
6119
+ accomplice,1
6120
+ accepts,1
6121
+ accelerated,1
6122
+ accelerate,1
6123
+ abyssynian,1
6124
+ abused,1
6125
+ ahly,1
6126
+ aimed,1
6127
+ application,1
6128
+ angeles,1
6129
+ announced,1
6130
+ announce,1
6131
+ annihilated,1
6132
+ angsty,1
6133
+ angle,1
6134
+ angelina,1
6135
+ anecdotal,1
6136
+ announcment,1
6137
+ andy,1
6138
+ andre,1
6139
+ andddddd,1
6140
+ anata,1
6141
+ anarchy,1
6142
+ amp,1
6143
+ announces,1
6144
+ annoyed,1
6145
+ amount,1
6146
+ apart,1
6147
+ applauds,1
6148
+ appears,1
6149
+ appeared,1
6150
+ appalled,1
6151
+ apex,1
6152
+ apartheid,1
6153
+ aoc,1
6154
+ anons,1
6155
+ anytime,1
6156
+ anwar,1
6157
+ antisemitic,1
6158
+ antigun,1
6159
+ antichrist,1
6160
+ anthing,1
6161
+ amout,1
6162
+ amnesty,1
6163
+ aiming,1
6164
+ alcoholic,1
6165
+ allahakbar,1
6166
+ aliexpress,1
6167
+ algebra,1
6168
+ alexander,1
6169
+ alert,1
6170
+ alcoholism,1
6171
+ alarm,1
6172
+ allen,1
6173
+ ala,1
6174
+ akbaar,1
6175
+ aka,1
6176
+ aisians,1
6177
+ airspace,1
6178
+ airheaded,1
6179
+ allahbomber,1
6180
+ alliance,1
6181
+ ammosexual,1
6182
+ amazingly,1
6183
+ amid,1
6184
+ amgola,1
6185
+ amerika,1
6186
+ ambulance,1
6187
+ ambassador,1
6188
+ amazon,1
6189
+ alzheimer,1
6190
+ allāhu,1
6191
+ alwhite,1
6192
+ aluminum,1
6193
+ although,1
6194
+ altar,1
6195
+ alpha,1
6196
+ alot,1
6197
+ behan,1
6198
+ beheading,1
6199
+ being,1
6200
+ checkmate,1
6201
+ chex,1
6202
+ chested,1
6203
+ chess,1
6204
+ cheeseburger,1
6205
+ cheering,1
6206
+ cheeky,1
6207
+ checkin,1
6208
+ chickenshit,1
6209
+ checker,1
6210
+ cheated,1
6211
+ cheap,1
6212
+ chatting,1
6213
+ chat,1
6214
+ chart,1
6215
+ chi,1
6216
+ chief,1
6217
+ charged,1
6218
+ chimp,1
6219
+ choking,1
6220
+ chocen,1
6221
+ choc,1
6222
+ chisled,1
6223
+ chinn,1
6224
+ chin,1
6225
+ chilren,1
6226
+ chigga,1
6227
+ chilly,1
6228
+ chilling,1
6229
+ childrens,1
6230
+ childrenfrom,1
6231
+ childbirth,1
6232
+ chiken,1
6233
+ charming,1
6234
+ challah,1
6235
+ chooses,1
6236
+ capturing,1
6237
+ carter,1
6238
+ carribbean,1
6239
+ carrey,1
6240
+ carolina,1
6241
+ caring,1
6242
+ carcass,1
6243
+ captivity,1
6244
+ carving,1
6245
+ captive,1
6246
+ capped,1
6247
+ capitol,1
6248
+ capitalism,1
6249
+ cape,1
6250
+ capacity,1
6251
+ cartridge,1
6252
+ cashier,1
6253
+ chairman,1
6254
+ cdc,1
6255
+ chainsaw,1
6256
+ chained,1
6257
+ ch,1
6258
+ ceo,1
6259
+ centre,1
6260
+ celebreated,1
6261
+ cbc,1
6262
+ casket,1
6263
+ cautiously,1
6264
+ caution,1
6265
+ catnip,1
6266
+ catching,1
6267
+ catcher,1
6268
+ castrating,1
6269
+ cholos,1
6270
+ chucky,1
6271
+ bel,1
6272
+ collected,1
6273
+ colorado,1
6274
+ colonialism,1
6275
+ colonial,1
6276
+ colonel,1
6277
+ cologne,1
6278
+ colluded,1
6279
+ collar,1
6280
+ combination,1
6281
+ colin,1
6282
+ col,1
6283
+ coined,1
6284
+ coincidence,1
6285
+ cohen,1
6286
+ coffin,1
6287
+ coloured,1
6288
+ combine,1
6289
+ cocksucker,1
6290
+ committing,1
6291
+ compel,1
6292
+ compared,1
6293
+ compantions,1
6294
+ communist,1
6295
+ communism,1
6296
+ communication,1
6297
+ commemorated,1
6298
+ combined,1
6299
+ commander,1
6300
+ comin,1
6301
+ comfort,1
6302
+ comedy,1
6303
+ comedian,1
6304
+ comeback,1
6305
+ coconut,1
6306
+ cockeyed,1
6307
+ chupacabra,1
6308
+ civics,1
6309
+ clause,1
6310
+ claude,1
6311
+ clarke,1
6312
+ clarence,1
6313
+ clap,1
6314
+ clan,1
6315
+ citizenship,1
6316
+ cleanse,1
6317
+ citicen,1
6318
+ circumcised,1
6319
+ circumcise,1
6320
+ cigarette,1
6321
+ cides,1
6322
+ chute,1
6323
+ cleaning,1
6324
+ clearly,1
6325
+ cobain,1
6326
+ clogged,1
6327
+ coach,1
6328
+ cm,1
6329
+ clubbing,1
6330
+ cloud,1
6331
+ cloth,1
6332
+ closest,1
6333
+ clit,1
6334
+ cleavage,1
6335
+ clipboard,1
6336
+ climbing,1
6337
+ climb,1
6338
+ cliff,1
6339
+ cleric,1
6340
+ clergy,1
6341
+ cannon,1
6342
+ candidacy,1
6343
+ canceled,1
6344
+ bling,1
6345
+ bloodshot,1
6346
+ blonde,1
6347
+ blond,1
6348
+ blockbuster,1
6349
+ blitzkrieged,1
6350
+ bliss,1
6351
+ blessed,1
6352
+ blunt,1
6353
+ bleed,1
6354
+ blaster,1
6355
+ blanket,1
6356
+ blade,1
6357
+ blacksmith,1
6358
+ blackout,1
6359
+ blowup,1
6360
+ bod,1
6361
+ blacklivesmatter,1
6362
+ bonding,1
6363
+ boss,1
6364
+ boring,1
6365
+ booze,1
6366
+ booth,1
6367
+ boost,1
6368
+ boooooty,1
6369
+ bond,1
6370
+ boi,1
6371
+ bombshell,1
6372
+ bombinb,1
6373
+ bombbbssss,1
6374
+ bois,1
6375
+ boinked,1
6376
+ boiled,1
6377
+ blackman,1
6378
+ blackened,1
6379
+ canary,1
6380
+ bessie,1
6381
+ beverage,1
6382
+ bethelem,1
6383
+ beter,1
6384
+ bestie,1
6385
+ bestfriend,1
6386
+ bestfrand,1
6387
+ bernie,1
6388
+ bias,1
6389
+ benjamin,1
6390
+ bender,1
6391
+ ben,1
6392
+ belly,1
6393
+ bellas,1
6394
+ believed,1
6395
+ bf,1
6396
+ biased,1
6397
+ blackbelt,1
6398
+ biology,1
6399
+ bl,1
6400
+ bj,1
6401
+ biting,1
6402
+ bitcoin,1
6403
+ biscuit,1
6404
+ birkenau,1
6405
+ bink,1
6406
+ bieber,1
6407
+ bingo,1
6408
+ billy,1
6409
+ billionaire,1
6410
+ bihari,1
6411
+ bigfoot,1
6412
+ bigbird,1
6413
+ boston,1
6414
+ bottled,1
6415
+ boxcutters,1
6416
+ bullshittery,1
6417
+ busch,1
6418
+ burrell,1
6419
+ burmese,1
6420
+ buoyant,1
6421
+ bunnings,1
6422
+ bunk,1
6423
+ bullied,1
6424
+ buttfucked,1
6425
+ bulldozer,1
6426
+ bulky,1
6427
+ buhammad,1
6428
+ buffett,1
6429
+ buffalo,1
6430
+ bud,1
6431
+ busted,1
6432
+ buttigieg,1
6433
+ boxer,1
6434
+ caliber,1
6435
+ campes,1
6436
+ campaign,1
6437
+ cammed,1
6438
+ camera,1
6439
+ camaro,1
6440
+ calorie,1
6441
+ caitlin,1
6442
+ button,1
6443
+ cage,1
6444
+ cafe,1
6445
+ cadbury,1
6446
+ bystander,1
6447
+ bye,1
6448
+ buzz,1
6449
+ buckling,1
6450
+ buckle,1
6451
+ buchenwald,1
6452
+ breastfeed,1
6453
+ bret,1
6454
+ breeding,1
6455
+ breeder,1
6456
+ breathtaking,1
6457
+ breathin,1
6458
+ breastfeeding,1
6459
+ breaktime,1
6460
+ bubbling,1
6461
+ braless,1
6462
+ brahmin,1
6463
+ brahmanism,1
6464
+ bracelet,1
6465
+ bp,1
6466
+ boxing,1
6467
+ bribing,1
6468
+ bridge,1
6469
+ brillant,1
6470
+ brim,1
6471
+ brimley,1
6472
+ brit,1
6473
+ brittany,1
6474
+ broblem,1
6475
+ bromide,1
6476
+ broom,1
6477
+ brotha,1
6478
+ brothahs,1
6479
+ brow,1
6480
+ browser,1
6481
+ bru,1
6482
+ bruder,1
6483
+ bruhh,1
6484
+ gentle,1
6485
+ genuine,1
6486
+ geo,1
6487
+ necessarily,1
6488
+ negores,1
6489
+ nef,1
6490
+ needlessly,1
6491
+ neeb,1
6492
+ necrophiliacs,1
6493
+ necklace,1
6494
+ neat,1
6495
+ nemo,1
6496
+ nearly,1
6497
+ ne,1
6498
+ nazism,1
6499
+ naturally,1
6500
+ nationally,1
6501
+ nationalism,1
6502
+ nelson,1
6503
+ nessa,1
6504
+ nashunal,1
6505
+ nevertrump,1
6506
+ nhere,1
6507
+ ngl,1
6508
+ nfl,1
6509
+ newport,1
6510
+ newl,1
6511
+ nevr,1
6512
+ nevermore,1
6513
+ nest,1
6514
+ neverforget,1
6515
+ neve,1
6516
+ neutron,1
6517
+ neutrality,1
6518
+ neutered,1
6519
+ neurone,1
6520
+ nat,1
6521
+ narrative,1
6522
+ niccep,1
6523
+ muller,1
6524
+ munt,1
6525
+ mummy,1
6526
+ multiply,1
6527
+ multiplication,1
6528
+ multicultural,1
6529
+ mullet,1
6530
+ mulcher,1
6531
+ muscular,1
6532
+ muh,1
6533
+ mugshot,1
6534
+ mugabe,1
6535
+ mufti,1
6536
+ muffler,1
6537
+ muesli,1
6538
+ musalman,1
6539
+ musician,1
6540
+ namaz,1
6541
+ mutilated,1
6542
+ nalk,1
6543
+ nakba,1
6544
+ nagasaki,1
6545
+ nag,1
6546
+ nadler,1
6547
+ mysteriously,1
6548
+ mutilate,1
6549
+ musk,1
6550
+ mutherfuckin,1
6551
+ muthafucka,1
6552
+ mussy,1
6553
+ mussolini,1
6554
+ mussie,1
6555
+ muslism,1
6556
+ nibber,1
6557
+ niccfps,1
6558
+ muddafukka,1
6559
+ nutting,1
6560
+ oakland,1
6561
+ nyt,1
6562
+ nyou,1
6563
+ ny,1
6564
+ nvm,1
6565
+ nutz,1
6566
+ nutshell,1
6567
+ oath,1
6568
+ nutsack,1
6569
+ nurtured,1
6570
+ nuremberg,1
6571
+ numbered,1
6572
+ nuggers,1
6573
+ nu,1
6574
+ oat,1
6575
+ obedience,1
6576
+ nsexual,1
6577
+ obviosly,1
6578
+ ohio,1
6579
+ ohgodno,1
6580
+ officals,1
6581
+ odin,1
6582
+ octopus,1
6583
+ ocasio,1
6584
+ obtain,1
6585
+ objectionable,1
6586
+ obstructing,1
6587
+ obstruct,1
6588
+ obsticales,1
6589
+ obsession,1
6590
+ obo,1
6591
+ obligation,1
6592
+ nsw,1
6593
+ nsa,1
6594
+ nicely,1
6595
+ niguana,1
6596
+ niqqas,1
6597
+ niqab,1
6598
+ nipsey,1
6599
+ nipple,1
6600
+ nintendo,1
6601
+ nikker,1
6602
+ niglet,1
6603
+ noisy,1
6604
+ nightmare,1
6605
+ nigas,1
6606
+ nigar,1
6607
+ nig,1
6608
+ nickel,1
6609
+ nicholson,1
6610
+ nnies,1
6611
+ nonchalantly,1
6612
+ nra,1
6613
+ notably,1
6614
+ nowfag,1
6615
+ nowadays,1
6616
+ novaky,1
6617
+ notto,1
6618
+ notifies,1
6619
+ nothin,1
6620
+ nosler,1
6621
+ nonexistent,1
6622
+ nosey,1
6623
+ normie,1
6624
+ normally,1
6625
+ nope,1
6626
+ nooooo,1
6627
+ nonpolitical,1
6628
+ mudding,1
6629
+ muddafucka,1
6630
+ mana,1
6631
+ measure,1
6632
+ medicare,1
6633
+ medditaranian,1
6634
+ medal,1
6635
+ mechanic,1
6636
+ meatloaf,1
6637
+ measuring,1
6638
+ measles,1
6639
+ medicinal,1
6640
+ mctwist,1
6641
+ mcmap,1
6642
+ mchitler,1
6643
+ mcgregor,1
6644
+ mcfly,1
6645
+ mcdonald,1
6646
+ medication,1
6647
+ medicore,1
6648
+ max,1
6649
+ memo,1
6650
+ mere,1
6651
+ mercury,1
6652
+ mercenary,1
6653
+ mentioned,1
6654
+ menstrual,1
6655
+ memorized,1
6656
+ membership,1
6657
+ medieval,1
6658
+ melting,1
6659
+ melanin,1
6660
+ mel,1
6661
+ meghan,1
6662
+ meditation,1
6663
+ mediocre,1
6664
+ mayonnaise,1
6665
+ matress,1
6666
+ merely,1
6667
+ mariachi,1
6668
+ markup,1
6669
+ marking,1
6670
+ marked,1
6671
+ markandey,1
6672
+ marine,1
6673
+ marijuana,1
6674
+ marge,1
6675
+ marrakesh,1
6676
+ marathon,1
6677
+ mannequin,1
6678
+ manly,1
6679
+ maniac,1
6680
+ maneuver,1
6681
+ mandir,1
6682
+ marraige,1
6683
+ martel,1
6684
+ mating,1
6685
+ massage,1
6686
+ maternity,1
6687
+ matcha,1
6688
+ matata,1
6689
+ masturbation,1
6690
+ massah,1
6691
+ massager,1
6692
+ massacred,1
6693
+ martian,1
6694
+ mask,1
6695
+ mash,1
6696
+ masculinity,1
6697
+ mary,1
6698
+ marvel,1
6699
+ martyr,1
6700
+ meredith,1
6701
+ merging,1
6702
+ mud,1
6703
+ moisturizer,1
6704
+ mooch,1
6705
+ monumentally,1
6706
+ monotone,1
6707
+ monopolized,1
6708
+ monkeying,1
6709
+ mole,1
6710
+ moisture,1
6711
+ morgue,1
6712
+ modelling,1
6713
+ model,1
6714
+ mode,1
6715
+ moan,1
6716
+ mo,1
6717
+ mma,1
6718
+ mopping,1
6719
+ mornigs,1
6720
+ mitt,1
6721
+ moutain,1
6722
+ mucho,1
6723
+ muchas,1
6724
+ msnbc,1
6725
+ mow,1
6726
+ mouthful,1
6727
+ mouthed,1
6728
+ mount,1
6729
+ moroccan,1
6730
+ motor,1
6731
+ motivational,1
6732
+ motivation,1
6733
+ motivate,1
6734
+ mot,1
6735
+ mortification,1
6736
+ mm,1
6737
+ mitochondrion,1
6738
+ merideth,1
6739
+ michel,1
6740
+ migrnts,1
6741
+ mighty,1
6742
+ mighta,1
6743
+ microscopic,1
6744
+ micro,1
6745
+ michelangelo,1
6746
+ miami,1
6747
+ mileikowski,1
6748
+ mg,1
6749
+ methican,1
6750
+ metalhead,1
6751
+ messing,1
6752
+ messiah,1
6753
+ merry,1
6754
+ mileage,1
6755
+ militant,1
6756
+ mitch,1
6757
+ minion,1
6758
+ missippi,1
6759
+ missile,1
6760
+ misdirected,1
6761
+ misandry,1
6762
+ minyoda,1
6763
+ minnesota,1
6764
+ mindlessly,1
6765
+ miller,1
6766
+ mindless,1
6767
+ minding,1
6768
+ mindfuck,1
6769
+ mina,1
6770
+ min,1
6771
+ milwaukee,1
6772
+ oldest,1
6773
+ oldier,1
6774
+ ole,1
6775
+ plunger,1
6776
+ pokeballs,1
6777
+ poisoned,1
6778
+ pod,1
6779
+ poblem,1
6780
+ pm,1
6781
+ plus,1
6782
+ plumber,1
6783
+ pole,1
6784
+ plow,1
6785
+ pleased,1
6786
+ pleaded,1
6787
+ plead,1
6788
+ plea,1
6789
+ playstation,1
6790
+ poking,1
6791
+ policeman,1
6792
+ playboy,1
6793
+ popeye,1
6794
+ porkistani,1
6795
+ porki,1
6796
+ populate,1
6797
+ popsicle,1
6798
+ poppin,1
6799
+ popped,1
6800
+ poot,1
6801
+ polished,1
6802
+ pooper,1
6803
+ polluted,1
6804
+ poll,1
6805
+ politically,1
6806
+ politely,1
6807
+ polishing,1
6808
+ playground,1
6809
+ plating,1
6810
+ posted,1
6811
+ pied,1
6812
+ pimpin,1
6813
+ pillowcase,1
6814
+ pillaged,1
6815
+ pilgrimage,1
6816
+ pilgrim,1
6817
+ pil,1
6818
+ picker,1
6819
+ pinata,1
6820
+ picasso,1
6821
+ picard,1
6822
+ piazza,1
6823
+ pianist,1
6824
+ physiological,1
6825
+ physical,1
6826
+ pin,1
6827
+ pineapple,1
6828
+ placed,1
6829
+ pistol,1
6830
+ pix,1
6831
+ pity,1
6832
+ pitcure,1
6833
+ pitcher,1
6834
+ pitch,1
6835
+ pitbulls,1
6836
+ pissing,1
6837
+ pint,1
6838
+ pisser,1
6839
+ piscuit,1
6840
+ pirate,1
6841
+ pipeline,1
6842
+ piped,1
6843
+ pinto,1
6844
+ portaying,1
6845
+ pothead,1
6846
+ omw,1
6847
+ proclivity,1
6848
+ prom,1
6849
+ prohibit,1
6850
+ programmed,1
6851
+ progeria,1
6852
+ profit,1
6853
+ production,1
6854
+ proceeding,1
6855
+ promiscuous,1
6856
+ procedure,1
6857
+ privledge,1
6858
+ privelege,1
6859
+ pritt,1
6860
+ priscilla,1
6861
+ prior,1
6862
+ promiscuity,1
6863
+ promote,1
6864
+ primate,1
6865
+ protector,1
6866
+ proton,1
6867
+ protocol,1
6868
+ protocal,1
6869
+ protestor,1
6870
+ protested,1
6871
+ protestant,1
6872
+ protecting,1
6873
+ promoting,1
6874
+ prosthetic,1
6875
+ prostate,1
6876
+ propriety,1
6877
+ proposed,1
6878
+ pronouncing,1
6879
+ prone,1
6880
+ print,1
6881
+ prick,1
6882
+ potion,1
6883
+ preaching,1
6884
+ preferably,1
6885
+ preditor,1
6886
+ predicted,1
6887
+ predatory,1
6888
+ predator,1
6889
+ preadtor,1
6890
+ prayed,1
6891
+ prefers,1
6892
+ practically,1
6893
+ ppv,1
6894
+ powerhouse,1
6895
+ pouting,1
6896
+ pout,1
6897
+ pours,1
6898
+ preferred,1
6899
+ preists,1
6900
+ previous,1
6901
+ pressing,1
6902
+ pretending,1
6903
+ pretended,1
6904
+ presumed,1
6905
+ presumably,1
6906
+ pressuring,1
6907
+ pressure,1
6908
+ presidential,1
6909
+ prejudice,1
6910
+ preserving,1
6911
+ prescribing,1
6912
+ preparing,1
6913
+ prepares,1
6914
+ prepare,1
6915
+ premium,1
6916
+ pho,1
6917
+ phiz,1
6918
+ philadelphia,1
6919
+ over,1
6920
+ overwhelming,1
6921
+ overseas,1
6922
+ overprice,1
6923
+ overpaid,1
6924
+ overlook,1
6925
+ overdose,1
6926
+ outright,1
6927
+ owning,1
6928
+ outreach,1
6929
+ outraged,1
6930
+ outfit,1
6931
+ outdoor,1
6932
+ outdated,1
6933
+ outcome,1
6934
+ owing,1
6935
+ owns,1
6936
+ oustanding,1
6937
+ painted,1
6938
+ paradox,1
6939
+ paparazzo,1
6940
+ pancuronium,1
6941
+ palony,1
6942
+ pal,1
6943
+ pair,1
6944
+ painful,1
6945
+ oyedepo,1
6946
+ pagan,1
6947
+ paedophilia,1
6948
+ pad,1
6949
+ pacifier,1
6950
+ p,1
6951
+ ozzy,1
6952
+ oustide,1
6953
+ oust,1
6954
+ phenotype,1
6955
+ opener,1
6956
+ opportunity,1
6957
+ opioid,1
6958
+ operator,1
6959
+ operative,1
6960
+ operation,1
6961
+ operating,1
6962
+ op,1
6963
+ oppressed,1
6964
+ ooof,1
6965
+ ooo,1
6966
+ oompa,1
6967
+ onto,1
6968
+ ontario,1
6969
+ onna,1
6970
+ opposite,1
6971
+ oppression,1
6972
+ ousside,1
6973
+ orgy,1
6974
+ otter,1
6975
+ osha,1
6976
+ osbourne,1
6977
+ osama,1
6978
+ originally,1
6979
+ orientation,1
6980
+ organizing,1
6981
+ optician,1
6982
+ oreo,1
6983
+ ordinary,1
6984
+ orchestrate,1
6985
+ optometrist,1
6986
+ optimism,1
6987
+ optimisim,1
6988
+ paragraph,1
6989
+ paraniod,1
6990
+ paraplegic,1
6991
+ pepper,1
6992
+ perhaps,1
6993
+ perfume,1
6994
+ performed,1
6995
+ perferred,1
6996
+ pepsi,1
6997
+ peppermint,1
6998
+ peoplehave,1
6999
+ permissible,1
7000
+ peopie,1
7001
+ peope,1
7002
+ pension,1
7003
+ pencil,1
7004
+ peinigger,1
7005
+ peer,1
7006
+ peripherar,1
7007
+ permission,1
7008
+ parcel,1
7009
+ pete,1
7010
+ phelps,1
7011
+ pharmacy,1
7012
+ pharmaceutical,1
7013
+ pewdiepie,1
7014
+ petition,1
7015
+ peter,1
7016
+ petabyte,1
7017
+ pero,1
7018
+ peta,1
7019
+ pessimist,1
7020
+ pesky,1
7021
+ perverted,1
7022
+ persecuting,1
7023
+ perpetuation,1
7024
+ peel,1
7025
+ peeking,1
7026
+ peeing,1
7027
+ particularly,1
7028
+ path,1
7029
+ patch,1
7030
+ pat,1
7031
+ paste,1
7032
+ pasta,1
7033
+ passive,1
7034
+ particular,1
7035
+ peed,1
7036
+ participating,1
7037
+ participates,1
7038
+ parody,1
7039
+ parkwhore,1
7040
+ parenthood,1
7041
+ parental,1
7042
+ pathetic,1
7043
+ paw,1
7044
+ paycheck,1
7045
+ payer,1
7046
+ payment,1
7047
+ pcp,1
7048
+ pd,1
7049
+ pea,1
7050
+ peacefully,1
7051
+ peacful,1
7052
+ peacfully,1
7053
+ peddle,1
7054
+ pedestal,1
7055
+ pedestrian,1
7056
+ pedo,1
7057
+ pedophelia,1
7058
+ pedophil,1
7059
+ managed,1
7060
+ mam,1
7061
+ geometry,1
7062
+ honesty,1
7063
+ horde,1
7064
+ hop,1
7065
+ hoosier,1
7066
+ hoors,1
7067
+ hooke,1
7068
+ hookah,1
7069
+ honesto,1
7070
+ hormone,1
7071
+ homophobe,1
7072
+ homo,1
7073
+ homework,1
7074
+ hometown,1
7075
+ homelessness,1
7076
+ hollywood,1
7077
+ horizontal,1
7078
+ horn,1
7079
+ holdin,1
7080
+ huh,1
7081
+ huntin,1
7082
+ hunbashing,1
7083
+ humping,1
7084
+ humpin,1
7085
+ humour,1
7086
+ hulk,1
7087
+ huckleberry,1
7088
+ horrific,1
7089
+ hu,1
7090
+ howdy,1
7091
+ hostess,1
7092
+ hospitalized,1
7093
+ hosing,1
7094
+ horrifying,1
7095
+ holloween,1
7096
+ holder,1
7097
+ hussle,1
7098
+ hernandez,1
7099
+ highlight,1
7100
+ hid,1
7101
+ hezbollah,1
7102
+ hess,1
7103
+ hesitation,1
7104
+ herpes,1
7105
+ heritage,1
7106
+ hijacker,1
7107
+ herd,1
7108
+ hercules,1
7109
+ henchman,1
7110
+ hen,1
7111
+ helmut,1
7112
+ helluva,1
7113
+ hijacked,1
7114
+ hijau,1
7115
+ hol,1
7116
+ historian,1
7117
+ hog,1
7118
+ hmmmmmm,1
7119
+ hmm,1
7120
+ hm,1
7121
+ hitter,1
7122
+ hither,1
7123
+ hipster,1
7124
+ hike,1
7125
+ hip,1
7126
+ hinduism,1
7127
+ hinders,1
7128
+ hiltler,1
7129
+ hillsborough,1
7130
+ hiliary,1
7131
+ hurting,1
7132
+ hustled,1
7133
+ helicopter,1
7134
+ individuality,1
7135
+ infected,1
7136
+ infamous,1
7137
+ inequality,1
7138
+ indulge,1
7139
+ indonesia,1
7140
+ indogs,1
7141
+ indicted,1
7142
+ infide,1
7143
+ indiana,1
7144
+ independent,1
7145
+ incoming,1
7146
+ included,1
7147
+ inciting,1
7148
+ incineration,1
7149
+ inferno,1
7150
+ infiltrating,1
7151
+ incel,1
7152
+ injured,1
7153
+ insisted,1
7154
+ insider,1
7155
+ insensitive,1
7156
+ inmate,1
7157
+ ink,1
7158
+ injury,1
7159
+ injection,1
7160
+ infinite,1
7161
+ inhuman,1
7162
+ inherit,1
7163
+ ingrained,1
7164
+ ing,1
7165
+ infront,1
7166
+ informing,1
7167
+ incesters,1
7168
+ incarceration,1
7169
+ hydrant,1
7170
+ idubbbz,1
7171
+ ima,1
7172
+ illustration,1
7173
+ ilegals,1
7174
+ iiiiiin,1
7175
+ ignoring,1
7176
+ iffy,1
7177
+ idiotic,1
7178
+ imdb,1
7179
+ identified,1
7180
+ idc,1
7181
+ iced,1
7182
+ iaoh,1
7183
+ iail,1
7184
+ ia,1
7185
+ imangine,1
7186
+ imitation,1
7187
+ inbred,1
7188
+ impervious,1
7189
+ inactive,1
7190
+ improving,1
7191
+ imprisonment,1
7192
+ impressed,1
7193
+ impregnable,1
7194
+ importance,1
7195
+ impedes,1
7196
+ immature,1
7197
+ immoral,1
7198
+ immobilized,1
7199
+ imminent,1
7200
+ immigrate,1
7201
+ immigrantswave,1
7202
+ immigants,1
7203
+ hellen,1
7204
+ heist,1
7205
+ mall,1
7206
+ gram,1
7207
+ graphing,1
7208
+ grant,1
7209
+ grandmother,1
7210
+ grandmoth,1
7211
+ grandmaster,1
7212
+ grandad,1
7213
+ graditude,1
7214
+ grateful,1
7215
+ gracious,1
7216
+ gracing,1
7217
+ gracias,1
7218
+ grabbing,1
7219
+ graam,1
7220
+ gps,1
7221
+ grasp,1
7222
+ gratis,1
7223
+ gowdy,1
7224
+ grip,1
7225
+ grunt,1
7226
+ growth,1
7227
+ growl,1
7228
+ grounded,1
7229
+ groper,1
7230
+ grope,1
7231
+ grilling,1
7232
+ grease,1
7233
+ grill,1
7234
+ gretel,1
7235
+ greed,1
7236
+ greece,1
7237
+ greatful,1
7238
+ greater,1
7239
+ gpa,1
7240
+ governement,1
7241
+ gucci,1
7242
+ gifted,1
7243
+ glance,1
7244
+ git,1
7245
+ girfriends,1
7246
+ gingerbread,1
7247
+ gim,1
7248
+ gillbet,1
7249
+ gibson,1
7250
+ globalists,1
7251
+ ghostbusters,1
7252
+ ghost,1
7253
+ gettig,1
7254
+ gestapo,1
7255
+ gers,1
7256
+ geroceries,1
7257
+ glen,1
7258
+ glock,1
7259
+ gover,1
7260
+ goggles,1
7261
+ gotdamn,1
7262
+ gore,1
7263
+ gop,1
7264
+ gook,1
7265
+ googled,1
7266
+ goodbye,1
7267
+ goatshaggers,1
7268
+ glory,1
7269
+ goatfuckers,1
7270
+ goatfucker,1
7271
+ gmt,1
7272
+ gmc,1
7273
+ glub,1
7274
+ glove,1
7275
+ guarana,1
7276
+ guck,1
7277
+ heimlich,1
7278
+ harold,1
7279
+ hatin,1
7280
+ hatching,1
7281
+ hasmat,1
7282
+ harvesting,1
7283
+ harvard,1
7284
+ harrassment,1
7285
+ harmony,1
7286
+ headache,1
7287
+ harmless,1
7288
+ harm,1
7289
+ harley,1
7290
+ hardcore,1
7291
+ harassment,1
7292
+ happily,1
7293
+ hawns,1
7294
+ headband,1
7295
+ happend,1
7296
+ heavy,1
7297
+ heil,1
7298
+ heidi,1
7299
+ hehehehehe,1
7300
+ hefty,1
7301
+ heeeadddd,1
7302
+ heck,1
7303
+ heav,1
7304
+ headbutted,1
7305
+ heatwave,1
7306
+ heathen,1
7307
+ heartbreaking,1
7308
+ headscarf,1
7309
+ headquaters,1
7310
+ headdress,1
7311
+ happiest,1
7312
+ hanson,1
7313
+ gudako,1
7314
+ gut,1
7315
+ habbo,1
7316
+ haaaaaammmmmmm,1
7317
+ h,1
7318
+ gypsy,1
7319
+ gynocologist,1
7320
+ gynecologist,1
7321
+ gustav,1
7322
+ hachimaki,1
7323
+ gunships,1
7324
+ gunpoint,1
7325
+ gunna,1
7326
+ gunboat,1
7327
+ guna,1
7328
+ guembry,1
7329
+ habit,1
7330
+ hades,1
7331
+ hansel,1
7332
+ halfday,1
7333
+ hannity,1
7334
+ hangover,1
7335
+ handsome,1
7336
+ handshake,1
7337
+ hammered,1
7338
+ hamas,1
7339
+ hakuna,1
7340
+ hague,1
7341
+ hakeem,1
7342
+ haitian,1
7343
+ haiti,1
7344
+ hairline,1
7345
+ hairbands,1
7346
+ haile,1
7347
+ insisting,1
7348
+ insists,1
7349
+ inspector,1
7350
+ lazer,1
7351
+ legalize,1
7352
+ lecture,1
7353
+ leash,1
7354
+ leap,1
7355
+ leadership,1
7356
+ lbgtq,1
7357
+ lay,1
7358
+ legitimate,1
7359
+ lawsuit,1
7360
+ lawdi,1
7361
+ lawd,1
7362
+ lavaughn,1
7363
+ aaaaaaaaaaaaaah,1
7364
+ launching,1
7365
+ legislation,1
7366
+ lego,1
7367
+ latinas,1
7368
+ liberty,1
7369
+ likeit,1
7370
+ lighter,1
7371
+ ligar,1
7372
+ lieth,1
7373
+ lidentify,1
7374
+ licking,1
7375
+ libertarian,1
7376
+ legroom,1
7377
+ liberate,1
7378
+ libby,1
7379
+ lgtbetc,1
7380
+ leopold,1
7381
+ leo,1
7382
+ lending,1
7383
+ lauei,1
7384
+ latina,1
7385
+ limb,1
7386
+ kpop,1
7387
+ kwispy,1
7388
+ kurt,1
7389
+ kurd,1
7390
+ kunty,1
7391
+ kufi,1
7392
+ krueger,1
7393
+ kool,1
7394
+ lace,1
7395
+ kongris,1
7396
+ kongqueesha,1
7397
+ kodwa,1
7398
+ kodak,1
7399
+ kobe,1
7400
+ koality,1
7401
+ labour,1
7402
+ laden,1
7403
+ latin,1
7404
+ laptop,1
7405
+ lately,1
7406
+ larhen,1
7407
+ larger,1
7408
+ largemouthed,1
7409
+ largemouth,1
7410
+ lare,1
7411
+ landslide,1
7412
+ lagostoibadan,1
7413
+ landing,1
7414
+ landfill,1
7415
+ lampshade,1
7416
+ lakers,1
7417
+ lake,1
7418
+ laguardia,1
7419
+ likely,1
7420
+ limbaugh,1
7421
+ inspects,1
7422
+ lurking,1
7423
+ macgregor,1
7424
+ macbook,1
7425
+ macarena,1
7426
+ ma,1
7427
+ lyric,1
7428
+ lynch,1
7429
+ lung,1
7430
+ machinery,1
7431
+ luke,1
7432
+ luigi,1
7433
+ luckily,1
7434
+ lowa,1
7435
+ lovin,1
7436
+ lovely,1
7437
+ machine,1
7438
+ macho,1
7439
+ loudest,1
7440
+ maintain,1
7441
+ malia,1
7442
+ mak,1
7443
+ majored,1
7444
+ major,1
7445
+ majesty,1
7446
+ majestic,1
7447
+ mainstream,1
7448
+ macron,1
7449
+ mailer,1
7450
+ mailbox,1
7451
+ mail,1
7452
+ magical,1
7453
+ mafuckas,1
7454
+ maddened,1
7455
+ loungewear,1
7456
+ lotion,1
7457
+ limber,1
7458
+ linkedin,1
7459
+ listens,1
7460
+ liquorgunsbaconandtits,1
7461
+ liquid,1
7462
+ liqour,1
7463
+ liouor,1
7464
+ linkin,1
7465
+ link,1
7466
+ litterbox,1
7467
+ lingerie,1
7468
+ lined,1
7469
+ lineage,1
7470
+ lincoln,1
7471
+ limited,1
7472
+ limitation,1
7473
+ litter,1
7474
+ liz,1
7475
+ los,1
7476
+ logan,1
7477
+ loot,1
7478
+ loose,1
7479
+ loooooooud,1
7480
+ looney,1
7481
+ loompa,1
7482
+ lookah,1
7483
+ log,1
7484
+ lizard,1
7485
+ locker,1
7486
+ located,1
7487
+ loading,1
7488
+ lmfao,1
7489
+ lmaooo,1
7490
+ lizzie,1
7491
+ ko,1
7492
+ knoxville,1
7493
+ knockout,1
7494
+ islamization,1
7495
+ israhell,1
7496
+ isps,1
7497
+ island,1
7498
+ islamphobe,1
7499
+ islamophobe,1
7500
+ islamomopolitan,1
7501
+ islamistheproblem,1
7502
+ issa,1
7503
+ islamaphobia,1
7504
+ islamaphobe,1
7505
+ islamaophobia,1
7506
+ isbeing,1
7507
+ isaak,1
7508
+ irrelevant,1
7509
+ israhellites,1
7510
+ item,1
7511
+ iroc,1
7512
+ jafar,1
7513
+ jean,1
7514
+ jayshaun,1
7515
+ japseyes,1
7516
+ jan,1
7517
+ jam,1
7518
+ jalapeno,1
7519
+ jacob,1
7520
+ itslef,1
7521
+ jackoff,1
7522
+ jacking,1
7523
+ jacket,1
7524
+ jacinda,1
7525
+ ja,1
7526
+ ize,1
7527
+ ironed,1
7528
+ ireland,1
7529
+ knocking,1
7530
+ insulting,1
7531
+ interest,1
7532
+ interaction,1
7533
+ interact,1
7534
+ intentional,1
7535
+ intensifies,1
7536
+ intelligent,1
7537
+ insufficient,1
7538
+ interfere,1
7539
+ instruction,1
7540
+ institute,1
7541
+ instigated,1
7542
+ installed,1
7543
+ install,1
7544
+ inspirational,1
7545
+ interesting,1
7546
+ interference,1
7547
+ investing,1
7548
+ introduction,1
7549
+ investigate,1
7550
+ invest,1
7551
+ inverted,1
7552
+ invent,1
7553
+ invalid,1
7554
+ invaded,1
7555
+ introducing,1
7556
+ intern,1
7557
+ introduces,1
7558
+ intoxication,1
7559
+ intimate,1
7560
+ intestine,1
7561
+ interupting,1
7562
+ interrupting,1
7563
+ jello,1
7564
+ jeong,1
7565
+ jerkin,1
7566
+ kerry,1
7567
+ kiddin,1
7568
+ khuuun,1
7569
+ khan,1
7570
+ khaled,1
7571
+ keyboard,1
7572
+ ketchup,1
7573
+ kentucky,1
7574
+ kidnapped,1
7575
+ kenneth,1
7576
+ kelly,1
7577
+ kegger,1
7578
+ keel,1
7579
+ keef,1
7580
+ kdrama,1
7581
+ kidhar,1
7582
+ kiiiiiiiiiiiiiiiiiikes,1
7583
+ jerusalem,1
7584
+ klu,1
7585
+ knobheads,1
7586
+ kno,1
7587
+ knight,1
7588
+ knife,1
7589
+ kneel,1
7590
+ km,1
7591
+ kirk,1
7592
+ kilometer,1
7593
+ kippah,1
7594
+ kinky,1
7595
+ kingdom,1
7596
+ kindness,1
7597
+ kinder,1
7598
+ kilometre,1
7599
+ katju,1
7600
+ katie,1
7601
+ kathy,1
7602
+ jizzed,1
7603
+ jolie,1
7604
+ joker,1
7605
+ joint,1
7606
+ johansson,1
7607
+ jogging,1
7608
+ joan,1
7609
+ jim,1
7610
+ kate,1
7611
+ jills,1
7612
+ ji,1
7613
+ jfk,1
7614
+ jewsih,1
7615
+ jewry,1
7616
+ jewery,1
7617
+ jon,1
7618
+ jong,1
7619
+ joy,1
7620
+ judaism,1
7621
+ judged,1
7622
+ judgement,1
7623
+ jug,1
7624
+ juggalo,1
7625
+ junk,1
7626
+ junkie,1
7627
+ junky,1
7628
+ justify,1
7629
+ justnorthkoreathings,1
7630
+ kafir,1
7631
+ kampf,1
7632
+ kar,1
7633
+ kareem,1
7634
+ ω,1
static/data_top.csv ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ word,count
2
+ like,636
3
+ people,594
4
+ muslim,449
5
+ get,420
6
+ black,417
7
+ white,396
8
+ one,344
9
+ see,269
10
+ look,268
11
+ make,262
12
+ time,258
13
+ want,247
14
+ go,232
15
+ woman,231
16
+ got,230
17
+ day,229
18
+ know,227
19
+ fuck,224
20
+ say,215
21
+ u,203
22
+ shit,199
23
+ man,196
24
+ goat,191
25
+ kid,191
26
+ kill,181
27
+ girl,180
28
+ new,174
29
+ think,169
30
+ ca,168
31
+ back,167
32
+ let,167
33
+ jew,166
34
+ year,161
35
+ love,159
36
+ take,158
37
+ trump,158
38
+ country,151
39
+ need,146
40
+ na,145
41
+ life,142
42
+ give,138
43
+ good,136
44
+ child,132
45
+ never,130
46
+ friend,130
47
+ come,129
48
+ said,128
49
+ right,128
50
+ guy,125
51
+ men,124
52
+ gay,124
53
+ bitch,123
54
+ fucking,122
55
+ first,122
56
+ still,122
57
+ going,121
58
+ hate,121
59
+ dishwasher,120
60
+ keep,119
61
+ way,118
62
+ america,118
63
+ tell,116
64
+ stop,115
65
+ american,113
66
+ home,112
67
+ call,112
68
+ racist,112
69
+ islam,109
70
+ stupid,106
71
+ tranny,105
72
+ told,101
73
+ would,101
74
+ gon,100
75
+ someone,99
76
+ could,99
77
+ old,95
78
+ as,94
79
+ put,93
80
+ oh,93
81
+ happy,93
82
+ boy,92
83
+ find,92
84
+ everyone,92
85
+ mean,92
86
+ even,92
87
+ baby,91
88
+ problem,91
89
+ thing,91
90
+ wife,89
91
+ school,88
92
+ trash,87
93
+ god,86
94
+ really,83
95
+ last,83
96
+ much,83
97
+ obama,81
98
+ every,80
99
+ dog,80
100
+ little,80
101
+ sex,78
102
+ bomb,77
103
+ mom,77
104
+ start,76
105
+ free,75
106
+ dick,75
107
+ car,73
108
+ well,73
109
+ better,73
110
+ im,73
111
+ something,73
112
+ democrat,73
113
+ gun,73
114
+ job,72
115
+ eat,72
116
+ jewish,71
117
+ best,71
118
+ isi,71
119
+ gas,70
120
+ ever,70
121
+ always,69
122
+ wrong,69
123
+ today,69
124
+ million,68
125
+ great,68
126
+ terrorist,68
127
+ show,66
128
+ mexican,66
129
+ getting,66
130
+ religion,65
131
+ son,65
132
+ another,65
133
+ please,64
134
+ face,64
135
+ world,63
136
+ made,63
137
+ allah,62
138
+ started,61
139
+ illegal,61
140
+ liberal,61
141
+ hand,60
142
+ work,60
143
+ play,60
144
+ run,59
145
+ meme,58
146
+ killed,58
147
+ turn,58
148
+ left,57
149
+ part,57
150
+ anything,57
151
+ president,57
152
+ difference,56
153
+ smell,56
154
+ food,56
155
+ trying,55
156
+ found,55
157
+ many,55
158
+ club,55
159
+ bad,55
160
+ feeling,55
161
+ hard,55
162
+ person,54
163
+ forget,54
164
+ dad,54
165
+ head,54
166
+ peace,53
167
+ meanwhile,53
168
+ called,53
169
+ congress,53
170
+ real,52
171
+ away,52
172
+ help,52
173
+ sure,52
174
+ hear,52
175
+ government,51
176
+ cute,51
177
+ strip,51
178
+ wait,51
179
+ talk,51
180
+ joke,51
181
+ christian,51
182
+ brother,51
183
+ rape,51
184
+ ask,50
185
+ family,50
186
+ walk,50
187
+ killing,50
static/images_streamlit/hateful_05917.png ADDED
static/images_streamlit/hateful_09572.png ADDED
static/images_streamlit/hateful_29163.png ADDED
static/images_streamlit/hateful_83025.png ADDED
static/images_streamlit/hateful_95478.png ADDED
static/images_streamlit/non_hateful_18307.png ADDED
static/images_streamlit/non_hateful_28074.png ADDED
static/images_streamlit/non_hateful_37819.png ADDED
static/images_streamlit/non_hateful_89314.png ADDED
static/images_streamlit/non_hateful_93410.png ADDED
static/logo_artefact.png ADDED
static/logo_facebook.png ADDED
static/model_nlp/model_nlp.h5 ADDED
Binary file (90.7 kB). View file
 
static/model_nlp/model_nlp.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"class_name": "Sequential", "config": {"name": "sequential", "layers": [{"module": "keras.layers", "class_name": "InputLayer", "config": {"batch_input_shape": [null, 768], "dtype": "float32", "sparse": false, "ragged": false, "name": "dense_input"}, "registered_name": null}, {"module": "keras.layers", "class_name": "Dense", "config": {"name": "dense", "trainable": true, "dtype": "float32", "batch_input_shape": [null, 768], "units": 20, "activation": "sigmoid", "use_bias": true, "kernel_initializer": {"module": "keras.initializers", "class_name": "GlorotUniform", "config": {"seed": null}, "registered_name": null}, "bias_initializer": {"module": "keras.initializers", "class_name": "Zeros", "config": {}, "registered_name": null}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "registered_name": null, "build_config": {"input_shape": [null, 768]}}, {"module": "keras.layers", "class_name": "Dense", "config": {"name": "dense_1", "trainable": true, "dtype": "float32", "units": 20, "activation": "sigmoid", "use_bias": true, "kernel_initializer": {"module": "keras.initializers", "class_name": "GlorotUniform", "config": {"seed": null}, "registered_name": null}, "bias_initializer": {"module": "keras.initializers", "class_name": "Zeros", "config": {}, "registered_name": null}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}, {"module": "keras.layers", "class_name": "Dropout", "config": {"name": "dropout", "trainable": true, "dtype": "float32", "rate": 0.3, "noise_shape": null, "seed": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}, {"module": "keras.layers", "class_name": "Dense", "config": {"name": "dense_2", "trainable": true, "dtype": "float32", "units": 20, "activation": "sigmoid", "use_bias": true, "kernel_initializer": {"module": "keras.initializers", "class_name": "GlorotUniform", "config": {"seed": null}, "registered_name": null}, "bias_initializer": {"module": "keras.initializers", "class_name": "Zeros", "config": {}, "registered_name": null}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}, {"module": "keras.layers", "class_name": "Dropout", "config": {"name": "dropout_1", "trainable": true, "dtype": "float32", "rate": 0.3, "noise_shape": null, "seed": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}, {"module": "keras.layers", "class_name": "Dense", "config": {"name": "dense_3", "trainable": true, "dtype": "float32", "units": 20, "activation": "sigmoid", "use_bias": true, "kernel_initializer": {"module": "keras.initializers", "class_name": "GlorotUniform", "config": {"seed": null}, "registered_name": null}, "bias_initializer": {"module": "keras.initializers", "class_name": "Zeros", "config": {}, "registered_name": null}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}, {"module": "keras.layers", "class_name": "Dropout", "config": {"name": "dropout_2", "trainable": true, "dtype": "float32", "rate": 0.3, "noise_shape": null, "seed": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}, {"module": "keras.layers", "class_name": "Dense", "config": {"name": "dense_4", "trainable": true, "dtype": "float32", "units": 1, "activation": "sigmoid", "use_bias": true, "kernel_initializer": {"module": "keras.initializers", "class_name": "GlorotUniform", "config": {"seed": null}, "registered_name": null}, "bias_initializer": {"module": "keras.initializers", "class_name": "Zeros", "config": {}, "registered_name": null}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}, "registered_name": null, "build_config": {"input_shape": [null, 20]}}]}, "keras_version": "2.13.1", "backend": "tensorflow"}