library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✔ ggplot2 3.3.5 ✔ purrr 0.3.4
## ✔ tibble 3.1.6 ✔ dplyr 1.0.8
## ✔ tidyr 1.2.0 ✔ stringr 1.4.0
## ✔ readr 2.1.2 ✔ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
library(magrittr)
##
## Attaching package: 'magrittr'
## The following object is masked from 'package:purrr':
##
## set_names
## The following object is masked from 'package:tidyr':
##
## extract
library(forcats)
library(knitr)
tweet_classifications <-
readRDS("../storage/MMc_TwitterLeicester2018-2019_all-en_clr-emo-lemm-multi_no-spam_with-all-tweet-classif-v0-2-0.rds")
The re-classification of the sentiment values used below is based on
the distributions illustrated in the
MMc-compare-classifications-plots
analysis document.
tweet_classifications <-
tweet_classifications %>%
mutate(
tweet_sentimentr_class = ordered(
case_when(
tweet_sentimentr_sentiment <= -0.1 ~ "Negative",
tweet_sentimentr_sentiment >= 0.1 ~ "Positive",
TRUE ~ "Neutral"
),
levels = c("Negative", "Neutral", "Positive")
),
tweet_flair_sentiment_class = ordered(
case_when(
tweet_flair_sentiment_confidence < 0.95 ~ "Neutral",
tweet_flair_sentiment_value == "NEGATIVE" ~ "Negative",
tweet_flair_sentiment_value == "POSITIVE" ~ "Positive"
),
levels = c("Negative", "Neutral", "Positive")
)
)
tweet_classifications <-
tweet_classifications %>%
left_join(
tweet_classifications %>%
select(tweet_id_str, tweet_flair_e6c11m2_admiration:tweet_flair_e6c11m2_top_emotion) %>%
pivot_longer(
cols = tweet_flair_e6c11m2_admiration:tweet_flair_e6c11m2_sadness,
names_to = "emotion",
values_to = "tweet_flair_e6c11m2_top_emotion_confidence"
) %>%
mutate(
emotion = str_remove(emotion, "tweet_flair_e6c11m2_")
) %>%
filter(
emotion == tweet_flair_e6c11m2_top_emotion
) %>%
select(-emotion)
) %>%
relocate(
tweet_flair_e6c11m2_top_emotion_confidence,
.after = tweet_flair_e6c11m2_top_emotion
) %>%
left_join(
tweet_classifications %>%
select(tweet_id_str, tweet_flair_c6c12m1_commercial:tweet_flair_c6c12m1_top_context) %>%
pivot_longer(
cols = tweet_flair_c6c12m1_commercial:tweet_flair_c6c12m1_place_character,
names_to = "context",
values_to = "tweet_flair_c6c12m1_top_context_confidence"
) %>%
mutate(
context = str_remove(context, "tweet_flair_c6c12m1_")
) %>%
filter(
context == (tweet_flair_c6c12m1_top_context %>%
str_replace_all(" and ", "_") %>%
str_replace_all(", ", "_") %>%
str_replace_all(" ", "_"))
) %>%
select(-context)
) %>%
relocate(
tweet_flair_c6c12m1_top_context_confidence,
.after = tweet_flair_c6c12m1_top_context
) %>%
mutate(
tweet_flair_e6c11m2_top_emotion = if_else(
tweet_flair_e6c11m2_top_emotion_confidence < 0.95,
"uncertain", tweet_flair_e6c11m2_top_emotion
),
tweet_flair_c6c12m1_top_context = if_else(
tweet_flair_c6c12m1_top_context_confidence < 0.95,
"uncertain", tweet_flair_c6c12m1_top_context
)
)
## Joining, by = c("tweet_id_str", "tweet_flair_e6c11m2_top_emotion")
## Joining, by = c("tweet_id_str", "tweet_flair_c6c12m1_top_context")
tweet_classifications %>%
count(tweet_sentimentr_class) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
kable()
tweet_sentimentr_class | n | perc |
---|---|---|
Negative | 158949 | 18.70015 |
Neutral | 304884 | 35.86921 |
Positive | 386155 | 45.43064 |
tweet_classifications %>%
count(tweet_flair_sentiment_class) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
kable()
tweet_flair_sentiment_class | n | perc |
---|---|---|
Negative | 329944 | 38.81749 |
Neutral | 272979 | 32.11563 |
Positive | 247065 | 29.06688 |
tweet_classifications %>%
count(tweet_sentimentr_class, tweet_flair_sentiment_class) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
kable()
tweet_sentimentr_class | tweet_flair_sentiment_class | n | perc |
---|---|---|---|
Negative | Negative | 117571 | 13.832078 |
Negative | Neutral | 30496 | 3.587815 |
Negative | Positive | 10882 | 1.280253 |
Neutral | Negative | 136843 | 16.099404 |
Neutral | Neutral | 112252 | 13.206304 |
Neutral | Positive | 55789 | 6.563504 |
Positive | Negative | 75530 | 8.886008 |
Positive | Neutral | 130231 | 15.321510 |
Positive | Positive | 180394 | 21.223123 |
tweet_classifications %>%
count(btm200bg_topic_sum_b, btm200bg_token10_sum_b) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
arrange(-n) %>%
kable()
btm200bg_topic_sum_b | btm200bg_token10_sum_b | n | perc |
---|---|---|---|
170 | joy + tear + day + eye + smile + laugh + people + leave + roll + home | 69916 | 8.2255279 |
188 | day + smile + heart + eye + morning + love + hand + night + lovely + happy | 40645 | 4.7818322 |
-1 | 31234 | 3.6746401 | |
100 | people + life + feel + love + lot + change + live + day + world + hard | 29479 | 3.4681666 |
196 | joy + tear + laugh + roll + floor + fuck + cry + skin + eye + tone | 27065 | 3.1841626 |
38 | fan + game + win + team + city + league + joy + play + club + tear | 21332 | 2.5096825 |
28 | laugh + cry + girl + loudly + loud + people + guy + gonna + mad + boy | 19908 | 2.3421507 |
52 | skin + tone + light + medium + hand + heart + smile + eye + sign + person | 18274 | 2.1499127 |
25 | smile + eye + heart + beam + grin + 3 + hand + slightly + roll + love | 17933 | 2.1097945 |
74 | tear + joy + cry + loudly + laugh + heart + loud + love + funny + skull | 17345 | 2.0406170 |
13 | joy + tear + laugh + loud + roll + floor + cry + loudly + person + wink | 15240 | 1.7929665 |
104 | cry + loudly + tear + joy + heart + smile + feel + weary + day + eye | 14931 | 1.7566130 |
11 | love + watch + play + live + night + song + fuck + life + people + wait | 13974 | 1.6440232 |
37 | goal + player + fuck + play + game + score + ball + world + win + penalty | 13669 | 1.6081404 |
141 | feel + bite + eye + hope + walk + head + leave + home + morning + day | 13447 | 1.5820223 |
56 | heart + love + red + smile + eye + xx + hand + hug + hope + blow | 13353 | 1.5709634 |
89 | team + amaze + award + proud + congratulation + fantastic + win + night + support + tonight | 11749 | 1.3822548 |
95 | event + day + meet + talk + forward + business + conference + support + team + excite | 10739 | 1.2634296 |
197 | change + learn + research + datum + plan + question + agree + uk + system + issue | 10407 | 1.2243702 |
154 | people + agree + brexit + lie + party + tory + absolutely + country + totally + bad | 9990 | 1.1753107 |
5 | people + read + word + tweet + question + bite + wrong + lot + opinion + answer | 9758 | 1.1480162 |
50 | heart + red + blue + green + purple + love + black + smile + eye + yellow | 9680 | 1.1388396 |
102 | lcfc + play + vardy + game + puel + player + season + start + team + goal | 9047 | 1.0643680 |
8 | skin + tone + medium + person + light + people + sign + day + female + feel | 8859 | 1.0422500 |
73 | win + game + league + final + cup + play + team + ball + world + season | 8714 | 1.0251909 |
42 | pay + people + uk + tax + sign + government + nhs + house + job + percent | 8529 | 1.0034259 |
23 | people + police + kill + law + child + stop + crime + call + woman + attack | 8495 | 0.9994259 |
41 | sign + person + skin + tone + medium + male + female + light + facepalming + shrug | 8347 | 0.9820139 |
18 | watch + film + movie + episode + love + series + tv + season + night + game | 7676 | 0.9030716 |
107 | smile + ball + soccer + blue + beer + mug + heart + clink + weekend + lovely | 7376 | 0.8677770 |
55 | twenty + thousand + saturday + friday + 7 + 8 + day + join + 2 + march | 7345 | 0.8641298 |
30 | thumb + skin + tone + light + medium + smile + eye + wink + hand + hope | 7135 | 0.8394236 |
173 | twitter + tweet + people + follow + account + remember + post + join + send + reply | 7099 | 0.8351883 |
123 | skin + tone + hand + light + medium + raise + fold + heart + victory + red | 6939 | 0.8163645 |
34 | sleep + night + tire + hour + bed + wake + day + morning + feel + shift | 6834 | 0.8040114 |
164 | vote + brexit + eu + leave + tory + union + labour + custom + deal + people | 6829 | 0.8034231 |
15 | music + song + album + listen + love + play + tune + hear + video + track | 6463 | 0.7603637 |
191 | amaze + love + beautiful + meet + day + absolutely + lovely + watch + hear + lady | 6032 | 0.7096571 |
17 | people + trump + labour + anti + racist + party + leave + corbyn + tory + wing | 5946 | 0.6995393 |
157 | fuck + mate + absolute + bite + love + call + proper + cunt + lad + watch | 5927 | 0.6973040 |
117 | cry + loudly + heart + red + laugh + god + break + love + miss + guy | 5921 | 0.6965981 |
129 | smile + chicken + cheese + salad + fry + potato + tomato + cook + food + eat | 5802 | 0.6825979 |
26 | roll + floor + laugh + eye + loud + cry + loudly + grin + fuck + dead | 5655 | 0.6653035 |
53 | laugh + loud + ass + xx + tweet + funny + fuck + lcfc + imagine + joke | 4567 | 0.5373017 |
76 | day + twenty + hour + week + ten + month + ago + minute + start + thirty | 4523 | 0.5321252 |
54 | kiss + mark + blow + heart + rise + smile + sweetie + babe + red + eye | 4455 | 0.5241250 |
172 | video + post + follow + link + check + youtube + instagram + love + page + photo | 4449 | 0.5234192 |
118 | send + call + service + phone + numb + customer + message + account + dm + receive | 4258 | 0.5009482 |
149 | buy + store + ticket + sale + free + offer + percent + shop + online + price | 4075 | 0.4794185 |
2 | mum + baby + dad + family + love + friend + child + day + kid + parent | 4067 | 0.4784773 |
189 | john + james + smith + tom + steve + chris + sir + paul + david + love + talk | 4051 | 0.4765950 |
35 | win + chance + prize + competition + love + awesome + enter + giveaway + fab + cash | 4030 | 0.4741243 |
69 | birthday + happy + day + cake + balloon + hope + party + gift + popper + shortcake | 4008 | 0.4715361 |
78 | box + fitness + professional + boxer + workout + kelton + boxercise4health + mckenzie + glove + active | 3820 | 0.4494181 |
96 | walk + centre + city + park + house + build + st + museum + beautiful + day | 3815 | 0.4488299 |
93 | chocolate + ice + bar + cream + cake + coffee + eat + tea + soft + milk | 3669 | 0.4316532 |
21 | book + read + write + love + theatre + story + art + film + brilliant + performance | 3585 | 0.4217707 |
193 | heart + sparkle + grow + beat + love + smile + revolve + eye + purple + blue | 3549 | 0.4175353 |
162 | hand + clap + skin + tone + light + medium + call + heart + dark + black | 3535 | 0.4158882 |
136 | train + service + london + east + station + midlands + shire + bus + city + morning | 3534 | 0.4157706 |
110 | phone + app + iphone + apple + video + laptop + samsung + computer + play + galaxy | 3455 | 0.4064763 |
16 | week + wait + book + day + holiday + excite + tomorrow + airplane + ticket + forward | 3442 | 0.4049469 |
132 | skin + tone + medium + dark + hand + raise + clap + fold + fist + oncoming | 3315 | 0.3900055 |
97 | hundred + thousand + sixty + million + twenty + forty + fifty + eighty + call + ninety | 3282 | 0.3861231 |
10 | fuck + shit + ass + people + bitch + real + im + unamused + gonna + talk | 3245 | 0.3817701 |
83 | wear + dress + store + shirt + shoe + colour + style + heart + top + naqshonline | 3242 | 0.3814171 |
142 | game + cricket + play + england + day + win + bat + bowl + match + county | 3183 | 0.3744759 |
51 | world + unite + england + cup + kingdom + uk + france + country + flag + live | 2963 | 0.3485932 |
119 | pout + fuck + angry + cunt + hell + shit + people + bastard + disgust + bloody | 2900 | 0.3411813 |
40 | write + read + start + book + exam + word + learn + finish + paper + day | 2862 | 0.3367106 |
169 | fox + blue + lcfc + heart + hand + soccer + ball + city + king + power | 2834 | 0.3334165 |
67 | god + fold + bless + jesus + family + prayer + day + hand + life + lord + peace | 2820 | 0.3317694 |
128 | tear + joy + im + fuck + bro + guy + nah + funny + life + joke | 2817 | 0.3314164 |
82 | sad + relieve + pensive + break + news + rip + hear + fold + family + heart | 2724 | 0.3204751 |
200 | school + session + day + centre + free + child + week + train + class + learn | 2682 | 0.3155339 |
165 | drink + beer + ale + pint + mug + nice + ipa + tropical + festival + pub | 2676 | 0.3148280 |
29 | 2 + 1 + 3 + 0 + 4 + 5 + 6 + keycap + half + win | 2647 | 0.3114162 |
64 | girl + boy + sex + sexy + love + woman + lady + call + feel + naughty | 2647 | 0.3114162 |
57 | christmas + tree + santa + claus + merry + light + skin + xmas + tone + gift | 2630 | 0.3094161 |
44 | food + savor + eat + vegan + meal + restaurant + lunch + love + dinner + delicious | 2590 | 0.3047102 |
20 | listen + bbc + radio + news + parent + hear + talk + watch + tv + live | 2488 | 0.2927100 |
7 | road + lane + warn + traffic + close + park + flood + police + light + car | 2410 | 0.2835334 |
152 | car + drive + driver + bus + road + park + bike + ride + vehicle + taxi | 2319 | 0.2728274 |
19 | health + mental + people + issue + experience + valproate + call + support + autism + awareness + care | 2282 | 0.2684744 |
75 | player + play + maguire + start + sign + unite + transfer + season + arsenal + team | 2179 | 0.2563566 |
58 | glass + clink + bottle + pop + cork + wine + cocktail + beer + drink + mug | 2170 | 0.2552977 |
59 | nurse + nhs + care + hospital + staff + patient + day + team + doctor + service | 2152 | 0.2531800 |
181 | horn + sign + light + skin + tone + medium + smile + black + heart + eye | 2106 | 0.2477682 |
31 | party + popper + birthday + heart + happy + confetti + balloon + ball + eye + red | 2026 | 0.2383563 |
143 | student + graduation + cap + university + graduate + dmu + uni + degree + proud + congratulation | 1902 | 0.2237679 |
156 | album + today’s + song + gary + love + live + numan + play + vinyl + darshan | 1899 | 0.2234149 |
85 | loveisland + love + jack + alex + georgia + fuck + girl + laura + loveisiand + megan | 1879 | 0.2210619 |
146 | free + unitedkingdom + foodwaste + pret + chicken + baguette + sandwich + cheese + salad + ham | 1870 | 0.2200031 |
72 | snowflake + cold + snow + weather + winter + morning + warm + day + snowman + ice | 1817 | 0.2137677 |
139 | tongue + squint + wink + grin + ghost + zany + eye + smile + excite + happy | 1792 | 0.2108265 |
114 | water + plastic + air + clean + lot + love + oil + save + plant + fresh | 1788 | 0.2103559 |
166 | weight + gym + body + workout + muscle + leg + lose + exercise + lift + core + train | 1768 | 0.2080029 |
79 | smile + pig + moose + eye + heart + palette + shade + lip + lipstick + purple | 1700 | 0.2000028 |
151 | click + job + england + link + view + late + hire + engineer + apply + detail + force | 1665 | 0.1958851 |
134 | hot + beverage + mornin + wink + earlycrew + coffee + morning + tea + blow + kiss | 1660 | 0.1952969 |
194 | king + power + stadium + city + lcfc + shire + unite + algeria + football + ball | 1583 | 0.1862379 |
199 | sun + rain + umbrella + drop + cloud + weather + beach + day + summer + sunshine | 1537 | 0.1808261 |
198 | art + paint + artist + numb + gallery + contractor + artwork + piece + design + sketch | 1533 | 0.1803555 |
175 | monkey + evil + speak + heart + hear + smile + eye + red + love + blow | 1507 | 0.1772966 |
108 | tiger + rugby + football + clock + round + game + italy + pushpin + road + calendar | 1506 | 0.1771790 |
147 | woman + dance + tone + skin + light + medium + hand + heart + red + dark | 1495 | 0.1758848 |
115 | run + park + person + sign + morning + male + swim + victoria + walk + bike | 1490 | 0.1752966 |
90 | black + flag + white + lion + rainbow + square + triangular + england + ball + soccer | 1452 | 0.1708259 |
33 | mark + exclamation + double + ticket + speaker + volume + sell + fire + low + car | 1389 | 0.1634141 |
92 | vomit + nauseate + mask + medical + sneeze + feel + sick + bad + thermometer + confound | 1384 | 0.1628258 |
120 | box + fight + glove + british + tony + mckenzie + ballot + 90s + archive + light + night | 1368 | 0.1609434 |
88 | support + donate + raise + charity + uk + hospital + baby + donation + tweet + fundraising | 1364 | 0.1604729 |
94 | rise + shamrock + blossom + bouquet + tulip + cherry + fold + hand + hibiscus + india | 1361 | 0.1601199 |
135 | finger + cross + skin + tone + light + middle + medium + luck + christmas + hope | 1358 | 0.1597670 |
125 | percent + 100 + syringe + 10 + 50 + 20 + 19 + 18 + london + 22 | 1314 | 0.1545904 |
167 | camera + photo + flash + shoot + photography + post + portrait + photographer + movie + model | 1306 | 0.1536492 |
183 | war + bush + hundred + oil + eleven + yemen + trump + american + company + bomb | 1278 | 0.1503551 |
68 | musical + note + score + microphone + headphone + guitar + hand + keyboard + song + music | 1275 | 0.1500021 |
36 | fire + collision + graffitiart + hot + urbanart + streetart + voltage + spraycanart + sprayart + fuck | 1274 | 0.1498845 |
-1 | joy + tear + heart + smile + eye + skin + tone + hand + love + laugh | 1247 | 0.1467080 |
6 | mark + check + heavy + white + cross + exclamation + heart + sign + win + box | 1243 | 0.1462374 |
137 | hair + colour + heart + wig + cut + mua + beautiful + balayage + lash + sparkle | 1228 | 0.1444726 |
39 | kadiri + news + highfields + evington + sweet + launderette + candy + unite + strawberry + chocolate | 1172 | 0.1378843 |
81 | star + strike + glow + day + amaze + war + review + sparkle + wow + pass | 1165 | 0.1370608 |
63 | royal + mix + match + range + collection + set + shop + gold + bag + earring | 1161 | 0.1365902 |
144 | sweat + grin + poo + pile + droplet + anxious + downcast + eye + shit + sky | 1160 | 0.1364725 |
133 | boris + johnson + minister + prime + tory + pm + michael + gove + sell + cabinet | 1145 | 0.1347078 |
177 | story + ship + file + love + toy + folder + character + sea + park + fall | 1133 | 0.1332960 |
22 | trophy + medal + tennis + basketball + 1st + sport + field + ball + rider + hockey | 1131 | 0.1330607 |
186 | flex + bicep + skin + tone + light + medium + day + gym + dark + wink | 1093 | 0.1285901 |
121 | thousand + eighteen + snooker + nineteen + photo + shoot + pro + mmandmp + twenty + seventeen | 1080 | 0.1270606 |
70 | dog + hamburger + pooch + spin + thepoochery + dry + puppy + love + boy + cow | 1080 | 0.1270606 |
112 | rocket + globe + moon + space + europe + africa + national + centre + americas + asia | 1073 | 0.1262371 |
46 | slightly + plead + frown + break + average + smile + miss + extremely + feel + greatly | 1073 | 0.1262371 |
159 | gt + lt + friend + 3 + live + girl + vibronics + people + whatsthebigmistry + takeover | 1069 | 0.1257665 |
158 | head + explode + bandage + speak + day + brain + mind + haq + overthink + hurt | 1060 | 0.1247076 |
163 | tonight + live + night + comedy + direct + 10pm + 8 + 8pm + hit + gmt | 1059 | 0.1245900 |
91 | print + paw + miniature + cute + fimo + pig + pet + guinea + unicorn + jar | 1039 | 0.1222370 |
14 | boutique + nims + online + percent + shop + sale + twelve + store + jewellery + 6pm | 1021 | 0.1201193 |
130 | hundredth + mile + endorphin + endomondo + finish + run + thirty + walk + twenty + fifty | 1003 | 0.1180017 |
160 | jack + lantern + skull + halloween + ghost + clown + spider + happy + crossbones + web | 969 | 0.1140016 |
187 | mouth + symbol + hand + fuck + zipper + frown + expressionless + pout + hate + nose | 969 | 0.1140016 |
61 | leaf + dash + green + clover + wind + tree + fall + easter + chick + hand | 961 | 0.1130604 |
84 | mi + ah + dem + di + fi + yuh + nuh + gyal + ting + life | 957 | 0.1125898 |
116 | race + horse + chequer + flag + crown + spain + winner + god + motorcycle + congratulation | 913 | 0.1074133 |
43 | key + snake + lock + kill + gameofthrones + san + battle + king + jon + call | 904 | 0.1063544 |
45 | tattoo + ring + bride + veil + wed + dragon + piece + studio + bell + start | 896 | 0.1054133 |
60 | love + list + ant + dead + watch + hero + im + anne + dec + numb | 886 | 0.1042368 |
195 | test + pass + congratulation + drive + attempt + ooh + wowowow + fault + minor + tube | 864 | 0.1016485 |
178 | de + montfort + hall + university + dmu + town + statue + thousand + otd + joseph | 861 | 0.1012955 |
127 | road + pizza + london + le2 + blend + forty + passion + hindbar + takeaway + hind | 858 | 0.1009426 |
99 | cat + call + dog + kitty + animal + thousand + eleven + iphone + mtkitty + love | 856 | 0.1007073 |
124 | live + uk + tour + ticket + concert + arena + thousand + birmingham + night + london | 850 | 0.1000014 |
77 | button + music + gig + night + cafe + drum + play + bright + band + guitar | 844 | 0.0992955 |
3 | golf + hole + club + flag + hat + junior + day + play + height + captain | 842 | 0.0990602 |
138 | india + pm + fold + hand + pakistan + sri + create + indian + congratulation + hindu | 821 | 0.0965896 |
106 | car + police + light + alert + ticket + collision + officer + voltage + fire + day | 814 | 0.0957661 |
185 | circle + red + blue + white + black + ball + soccer + 0to100returns + diamond + djfestlei | 814 | 0.0957661 |
48 | sign + bin + litter + petition + stop + save + wastebasket + share + trash + ni | 814 | 0.0957661 |
190 | fish + line + electric + pole + plug + wash + machine + picket + catch + chip | 809 | 0.0951778 |
71 | fear + scream + god + call + worry + black + wow + luck + purple + rainbow | 809 | 0.0951778 |
131 | excuse + gesture + wat + person + ju + ah + guy + love + yoh + coz | 800 | 0.0941190 |
80 | read + article + daily + pro + mail + academic + paper + news + survey + eu | 786 | 0.0924719 |
161 | index + backhand + tone + skin + medium + light + dark + leave + fox + lcfc | 782 | 0.0920013 |
111 | japan + retweet + support + dan + follow + attempt + banzai + inspirationnation + pc + idol | 737 | 0.0867071 |
87 | south + west + africa + african + nigeria + zimbabwe + jamaica + north + ham + country | 729 | 0.0857659 |
168 | tower + resort + family + romance + alton + ride + love + story + park + read | 714 | 0.0840012 |
109 | ambulance + harry + prince + royal + antigua + barbuda + meghan + potter + nightshift + princess | 711 | 0.0836482 |
180 | gift + wrap + christmas + im + love + santa + ive + box + deer + list | 711 | 0.0836482 |
113 | design + shop + retail + store + hammer + cbd + print + net + tech + brand | 699 | 0.0822365 |
98 | upside + banknote + flush + pound + grimace + dollar + spaghetti + euro + bag + yen | 677 | 0.0796482 |
4 | smile + sunglass + smirk + hand + cool + sun + yonex + eye + fire + awesome | 675 | 0.0794129 |
150 | pride + rainbow + lgbt + parade + lgbtq + gay + white + victoria + park + shire | 672 | 0.0790599 |
182 | trade + close + short + sell + loss + profit + buy + price + stop + forex | 670 | 0.0788246 |
101 | hug + wed + venue + decor + hundred + dj + thevenue + repost + image + event | 657 | 0.0772952 |
171 | ha + holistic + simply + health + heal + bulldog + magickal + smp + therapy + wink | 652 | 0.0767070 |
65 | ho + whoop + route + en + jane + leo + hey + sing + bet + xfactor | 648 | 0.0762364 |
153 | reminder + friday + tribute + findom + night + quick + stevie + rt + paypig + cashmaster | 642 | 0.0755305 |
140 | zany + gin + pub + ukpubs + low + tonic + alcohol + revolution + ultra + beer | 636 | 0.0748246 |
179 | nose + steam + zzz + fuck + whyisthat + ffs + day + sleep + sleepy + bowl | 629 | 0.0740010 |
27 | original + poster + kit + ready + monster + nike + mutant + post + fanatic + buy | 605 | 0.0711775 |
176 | arrow + craft + card + curve + cute + decorate + greet + bear + embellishment + cardmaking | 598 | 0.0703539 |
66 | weary + astonish + cat + super + god + treat + fold + chance + amaze + win | 592 | 0.0696480 |
86 | fist + oncoming + collision + skin + tone + light + medium + sunglass + bro + smile | 588 | 0.0691774 |
148 | la + soul + tenth + london + minus + el + hiphop + jazz + rnb + patriot | 583 | 0.0685892 |
9 | kitchen + knife + wave + water + architecture + fork + bye + interiordesign + plate + buildingibd | 577 | 0.0678833 |
126 | perform + dance + dizzy + art + ear + burlesque + skytribe + bunny + belly + night | 563 | 0.0662362 |
49 | oadby + meet + cyclone + community + detail + morning + dementia + wigston + ganga + support | 537 | 0.0631774 |
174 | wall + print + video + 3d + bespeak + mural + wallpaper + amaze + art + photo | 532 | 0.0625891 |
155 | goat + allah + muslim + sha + islam + ma + adam + al + salah + fast | 531 | 0.0624715 |
12 | duck + bounce + bob + dylan + golden + lebron + trident + jet + era + step | 502 | 0.0590597 |
145 | beard + barber + pole + fine + thebeardedrapscallion + ayston + massage + road + cut + scissor + shave | 461 | 0.0542361 |
184 | stone + gem + head + spot + doo + speed + photo + location + shark + knot | 451 | 0.0530596 |
47 | 12pm + lunch + till + menu + restaurant + tawa + chinese + late + 4pm + indo | 440 | 0.0517654 |
103 | stick + drool + sticky + gimme + head + pum + tenth + tongue + upd + tooth | 433 | 0.0509419 |
192 | djing + djrupz + stunt + party + highlight + david + birthday + readytorock + surprise + rock | 418 | 0.0491772 |
32 | orange + diamond + nail + biking + polish + gelnails + cycle + minibikers + tangerine + letsride | 416 | 0.0489419 |
62 | nottingham + thousand + fair + goose + exposure + seventeen + eighteen + longexposure + goosefair + photography | 414 | 0.0487066 |
122 | lorry + articulate + wink + mornin + truck + honk + option + phase + alignment + delivery | 410 | 0.0482360 |
24 | suit + week + cocktail + shooter + island + fantasy + geekycocktails + drink + giffardliqueurs + tropical | 387 | 0.0455301 |
105 | reddeadonline + reddeadredemption2 + rdr2 + rdo + wolf + ps4share + flower + vgpunite + wilt + rise | 347 | 0.0408241 |
tweet_classifications %>%
count(trans_umap_hdbscan, trans_umap_hdbscan_tfidf10) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
arrange(-n) %>%
kable()
trans_umap_hdbscan | trans_umap_hdbscan_tfidf10 | n | perc |
---|---|---|---|
-1 | NA | 358431 | 42.1689483 |
1016 | laughing + people + loud + fuck + shit + brexit + feel + life + agree + yeah | 61392 | 7.2226902 |
906 | question + fuck + happened + surely + people + whats + hey + tickets + hell + laughing | 26885 | 3.1629858 |
543 | lcfc + league + players + goal + game + player + liverpool + season + win + fans | 23676 | 2.7854511 |
765 | sleep + tired + feel + wanna + laughing + hate + bed + cold + loud + imagine | 12819 | 1.5081389 |
458 | laughing + loud + funny + fuck + ha + guy + laugh + bro + nah + wat | 12138 | 1.4280202 |
362 | bro + mate + congrats + luck + congratulations + cheers + legend + birthday + topman + happy | 11955 | 1.4064904 |
504 | agree + people + eu + brexit + labour + understand + yeah + wh + vote + opinion | 11526 | 1.3560191 |
346 | laughing + loud + funny + ass + imagine + laugh + fucking + literally + haha + mate | 8672 | 1.0202497 |
802 | liverpool + league + lcfc + goal + arsenal + game + spurs + player + win + season | 7603 | 0.8944832 |
984 | hope + xx + congratulations + luck + forward + glad + mate + lovely + xxx + enjoy | 6863 | 0.8074232 |
633 | sweetie + lovely + happy + love + awesome + hope + amazing + congratulations + enjoy + xx | 5827 | 0.6855391 |
1283 | king + newprofilepic + post + filmsthatarecriminal + link + found + animal + goat + legend + video | 5708 | 0.6715389 |
333 | laughing + loud + people + girls + guess + fuck + ffs + wrong + shit + stop | 5701 | 0.6707154 |
527 | mate + yeah + laughing + crapfactor + agree + cunt + fuck + loud + true + shite | 4960 | 0.5835376 |
510 | congratulations + luck + forward + wait + hope + brilliant + amazing + xx + congrats + haha | 4383 | 0.5156543 |
835 | fuck + laughing + loud + happened + hell + wrong + tf + whats + people + actual | 4057 | 0.4773009 |
0 | choose + lord + question + visit + person | 3777 | 0.4443592 |
251 | boxer + kelton + boxing + fitness + boxercise4health + workouts + professional + mckenzie + workout + active | 3727 | 0.4384768 |
374 | ket + laughing + loud + girl + bitch + guy + words + gonna + fuck + shut | 3335 | 0.3923585 |
456 | god + laughing + loud + crying + nah + heart + soo + cry + sad + fuck | 2958 | 0.3480049 |
869 | laughing + true + sounds + loud + waiting + bit + yah + ass + damn + wee | 2795 | 0.3288282 |
722 | laughing + loud + ass + funny + crying + triggered + fam + honestly + mad + nah | 2593 | 0.3050631 |
520 | agree + mate + true + yeah + bot + sadly + read + cheers + wrong + beef | 2525 | 0.2970630 |
726 | tea + chicken + milk + chocolate + cheese + juice + drink + water + coffee + chips | 2469 | 0.2904747 |
1196 | fucking + forreal + fuck + blimey + hat + britishmovielocations + legend + bit + boy + correct | 2391 | 0.2812981 |
1480 | kingdom + united + park + abbey + victoria + city + cathedral + leicestercity + leicestershire + highcross | 2303 | 0.2709450 |
779 | cute + beautiful + smile + sexy + love + m’a + baby + cutie + boy + god | 2269 | 0.2669449 |
175 | ha + doo + aww + cute + ah + love + god + babe + baby + myoddballs | 1956 | 0.2301209 |
911 | naqshonline + store + dresses + womenswear + colours + dress + nims + boutique + glitter + online | 1863 | 0.2191796 |
831 | pay + buy + expensive + afford + spend + sleep + awake + spent + paid + cash | 1844 | 0.2169442 |
856 | announce + deffo + hushhush + bants + stop + yeah + gary + kremmos + bottom + fuck | 1808 | 0.2127089 |
600 | beautiful + babe + gorgeous + sweetie + cute + soo + god + love + sexy + wow | 1658 | 0.1950616 |
535 | thousand + hundred + nineteen + eighteen + twenty + ninety + thirty + seventy + forty + hundredths | 1541 | 0.1812967 |
612 | laughing + loud + haha + funny + mate + yeah + tears + nah + people + tweet | 1529 | 0.1798849 |
514 | explain + question + fancy + proof + surely + tickets + uk + talking + mate + erm | 1524 | 0.1792966 |
3 | aigust + pride + leicesterpride + lgbtq + victoria + nineteen + kingdom + park + thirty + united | 1423 | 0.1674141 |
1380 | road + fire + lane + police + collision + traffic + rtc + closed + officers + junction | 1312 | 0.1543551 |
627 | awesome + bewitchingly + blair + stunningly + beautiful + weird + wow + wcw + final + eurovision | 1300 | 0.1529433 |
615 | word + doo + words + phrase + called + fuckmice + knobbing + kill + nah + fuck | 1242 | 0.1461197 |
16 | consulte + recycles + curious + insufficient + refilled + transferwindow + meaning + shocked + begins + search | 1226 | 0.1442373 |
459 | sweetie + gorgeous + babe + boo + stunning + xx + birthday + mornin + love + happy | 1202 | 0.1414138 |
433 | laughing + loud + laugh + ass + dead + fuck + hilarious + funny + loveisland + funniest | 1180 | 0.1388255 |
1569 | parcel + customer + delivery + service + delivered + refund + received + account + card + app | 1154 | 0.1357666 |
1311 | niggas + disgusting + mad + tweet + funny + town + thread + pregnant + scary + shit | 986 | 0.1160016 |
941 | investment + findom + offering + nt + people + failing + app + frds + read + cashmaster | 980 | 0.1152957 |
486 | love + beautiful + heart + bro + proud + stunning + baby + rip + girl + hearts | 955 | 0.1123545 |
405 | hiring + laughing + loud + haha + creeps + tatws + manufacturing + god + england + liftgate + skybynumbers | 940 | 0.1105898 |
613 | ha + haha + blue + yeah + loud + laughing + beep + bet + game + greeny | 908 | 0.1068250 |
577 | ff + followfriday + posted + photo + practiceing + practice + tonight + eighth + derby + atm | 873 | 0.1027073 |
1462 | store + preorder + grab + win + sale + copy + chance + pop + enter + edition | 868 | 0.1021191 |
616 | someone’s + everyone’s + somebody’s + ha + destiny’s + daughter + man’s + nje + tryna + mcm | 855 | 0.1005897 |
1590 | whyisthat + unhelpful + government + people + system + society + poor + reported + poverty + evidence | 838 | 0.0985896 |
1718 | donate + fundraising + raising + charity + event + congratulations + justgiving + team + graduate + student | 819 | 0.0963543 |
258 | gt + lt + friends + girls + sex + cte + knowing + energy + smalling + babes | 796 | 0.0936484 |
798 | weather + cold + snow + middle + rain + wind + o’clock + snowing + england + hot | 791 | 0.0930601 |
1008 | ha + fyha + eurovision + nigga + kane + nom + yeah + willetts + wait + jeremykyle | 782 | 0.0920013 |
1632 | cookie + details + tickets + evening + duffys + saturday + thursday + friday + camp + event | 780 | 0.0917660 |
62 | england + threelions + coming + home + itscominghome + wales + scotland + worldcup2018 + george’s + lads | 778 | 0.0915307 |
1037 | goosebumps + limbs + pum + bin + beauty + respect + dick + yh + childish + milner | 742 | 0.0872954 |
354 | goam + spain + motorcycle + topman + king + congrats + mate + luck + god + bud | 720 | 0.0847071 |
17 | awesome + awespome + spooner + mvouchercodes + chillaxing + cx + nin + loll + medium + 10pm | 708 | 0.0832953 |
1140 | cute + nice + meow + sounds + gorgeous + awesome + heh + amazing + retweet + wow | 704 | 0.0828247 |
540 | lcfc + liverpool + spurs + goal + league + penalty + players + player + arsenal + chelsea | 684 | 0.0804717 |
438 | moose + pig + 30daysofhappiness + morning + happy + lips + lippy + anniversarykudos + breakie + wakey | 680 | 0.0800011 |
1271 | 7daybookchallenge + video + plough + stunts + simplymagickal + magickal + polarv800 + check + stuntman + truppr | 643 | 0.0756481 |
678 | winitwednesday + beautiful + yummy + freebiefriday + giveaway + forever + competition + sunday + horny + love | 595 | 0.0700010 |
1577 | pay + moneym + income + people + nhs + system + eu + buying + cuts + data | 579 | 0.0681186 |
1074 | wait + excited + tomorrow + awesome + night + tour + vote + haha + rebelhearttour + gonna | 578 | 0.0680010 |
689 | loveisland + loveisiand + corrupt + georgia + establishment + laura + alex + megan + immigration + dani | 578 | 0.0680010 |
269 | awesome + kev + cheers + brilliant + cool + mate + inspirationnation + nice + spot + call | 556 | 0.0654127 |
1653 | meeting + fantastic + students + event + session + support + forward + wonderful + charity + lots | 552 | 0.0649421 |
1064 | ting + atozquiz + sh + iconic + innit + putafilmonabudget + shurrup + wimp + chaldish + anyting + farst + forzaferrari + gursimrans11 + heatradiospringclean + kicky + labrawn + quim | 547 | 0.0643538 |
400 | hows + evenin + hey + morning + coping + feeling + britsliampayne + how’re + salamz + buddy | 546 | 0.0642362 |
423 | merry + christmas + xmas + eve + christmasjumperday + happy + 12daysofchristmas + wishing + guys + santa | 545 | 0.0641186 |
337 | mood + nims + boutique + thread + breathes + brain + current + rasier + lucy + year’s | 544 | 0.0640009 |
1444 | agree + ilovegodbecause + tweet + loud + laughing + spiritual + honest + dont + pisses + milf | 537 | 0.0631774 |
1230 | posted + photo + fridayreads + woolaston + takeacartothemovies + soundcloud + au + photos + filmswithbodyparts + couldnt | 532 | 0.0625891 |
1066 | chicken + garlic + salad + cheese + fried + rice + spinach + potatoes + potato + salmon | 523 | 0.0615303 |
611 | question + innit + ei + coronationstreet + dying + adam + hush + ya + song + unis | 516 | 0.0607067 |
1221 | attacked + confused + sick + feel + life + personally + im + identify + gonna + wanna | 514 | 0.0604714 |
644 | theon + fuming + fuck + sparking + ffs + disrespected + galoob + haikyuu + downsides + loudness | 507 | 0.0596479 |
720 | laughing + loud + ass + brilliant + hilarious + fucking + lool + init + cap + yeah | 504 | 0.0592950 |
1465 | highcross + troupers + 9 + 6 + racecourse + djrupz + lcfc + montfort + academy + city | 500 | 0.0588244 |
250 | gym + strong + leg + training + abs + nffc + stronger + bro + body + session | 498 | 0.0585891 |
1115 | loud + laughing + jeremykyle + boom + cbb + ryan + yoots + fuck + worse + ronnie | 495 | 0.0582361 |
567 | xx + congratulations + enjoy + wishing + fab + congrats + hope + day + enjoyed + glad | 493 | 0.0580008 |
1356 | account + app + parcel + delivered + mobile + online + contact + delivery + payment + received | 491 | 0.0577655 |
1148 | books + shook + mars + triggered + birds + salty + harsh + stylish + recycling + teamwork | 485 | 0.0570596 |
746 | christmas + sad + rip + news + peace + hear + family + prayers + passing + rest | 484 | 0.0569420 |
1353 | sleep + gym + hair + bed + wanna + wait + tomorrow + wake + hours + tired | 475 | 0.0558831 |
1362 | hate + people + arsed + friends + laughing + feel + watch + loud + videos + wanna | 472 | 0.0555302 |
290 | zim + oohnice + pdl + 5’7 + laughing + bathong + yoh + loveisland + fell + gyal | 466 | 0.0548243 |
690 | congratulations + congrats + malawithewarmheartofafrica + bless + morning + highflyingbirds + love + aww + aw + wowowow | 466 | 0.0548243 |
687 | brexit + tories + election + labour + leave + deal + tory + vote + eu + remainers | 464 | 0.0545890 |
685 | alright + hun + horny + mate + babe + wanna + xxx + xx + pls + fancy | 459 | 0.0540008 |
481 | love + yourii + heart + selfievirgin + babe + baby + bro + beautiful + follow + promise | 451 | 0.0530596 |
898 | shoes + wears + hope + wear + understand + pants + socks + shirt + jeans + hair | 445 | 0.0523537 |
1532 | otd + morning + yesterday + morningmotivation + meeting + amazing + evening + fantastic + students + day | 439 | 0.0516478 |
547 | merry + christmas + mother’s + happy + mubarak + father’s + eid + ramadan + mothers + allah | 435 | 0.0511772 |
737 | dm + send + xx + message + txtin + rose + tree + factory + msg + details | 433 | 0.0509419 |
185 | del + britain’s + whoop + info + luck + mornin + theory + pic + buddy + cheers | 427 | 0.0502360 |
378 | birthday + happy + xx + anniversary + xxx + bday + bro + pride + lanky + xo | 421 | 0.0495301 |
1200 | jeremykyle + rip + david + beckham + george + harry + cody + neil + cramer + wanker | 420 | 0.0494125 |
569 | birthday + happy + smashing + boo + b’day + day + belated + aliaarmy + congratulations + queen | 416 | 0.0489419 |
513 | xx + xxx + count + babe + awesome + congratulations + earlycrew + chance + thankyou + happy | 412 | 0.0484713 |
209 | weekend + lovely + wonderful + brill + xx + hope + heike + caitlin + christine + gilbert | 410 | 0.0482360 |
321 | dearest + morning + jai + bhai + har + bless + sister + shree + mahadev + family | 404 | 0.0475301 |
1468 | official + video + music + ft + feat + 2funky + forward + museum + prod + audio | 395 | 0.0464712 |
985 | dal + kev + luck + snow + chips + enjoy + rain + awesome + onepiece + brilliant | 391 | 0.0460006 |
747 | commented + rg18 + thankss + cunts + bro + scumbag + yeah + heart + 21.48 + ancestral + chatrier’s + fuckk + hailtothekingbaby + lookfabinwhite + manspreader + moocs + petti + prerecording + ripharley + ripharleyrace + scottland + shxtting + teejayx + thickems + tunnelbhands + yaard | 390 | 0.0458830 |
49 | awesome + prize + treat + won + super + chance + crayfish + foodwaste + avocado + unitedkingdom | 388 | 0.0456477 |
322 | birthday + enjoy + happy + bhai + sweetie + sis + love + roommates + lovely + shree | 387 | 0.0455301 |
1650 | click + view + morrison’s + charade + bus + heels + surgery + ohuaye + sigmundfreud + vet’s + worricker | 386 | 0.0454124 |
1483 | kingdom + united + boxed + park + abbey + cathedral + bar + venue + city + funs | 385 | 0.0452948 |
431 | ffs + westlife + god + pls + keto + presale + netflix + shift + mornin + weeks | 384 | 0.0451771 |
253 | fucking + preferential + hell + fuckin + hiring + treatment + eu + recommend + push + wake | 382 | 0.0449418 |
36 | darshan + today’s + yesterday’s + inlaws + pakistan’s + generosity + camrgb + 3eh’s + bhud + dipti + freestone + humbostem + imparts + notdrunk + partha + pujari + putfootballinafilm + say’zindagi + suryanamskar + swastikas + unibond + younge | 381 | 0.0448242 |
775 | beautiful + stunning + xx + babe + pic + awesome + gorgeous + xxx + ha + congratulations | 381 | 0.0448242 |
284 | win + love + oooh + wow + xx + prize + nephews + xxx + copy + nieces | 380 | 0.0447065 |
350 | congratulations + congrats + clap + rl + quality + yey + goal + team + luck + effort | 373 | 0.0438830 |
884 | geekycocktails + giffardliqueurs + nims + boutique + shooter + cocktail + cocktails + leicestercocktails + bluecuracao + decor | 365 | 0.0429418 |
407 | kadiri_news + highfields + evington + kadiri + sweets + leicesterhairstylist + kadiri_newsagents + leicesterhairdresser + darissa_hair_mua + tagyourtalent | 355 | 0.0417653 |
1057 | album + song + funniest + whitest + mathematicalsongs + bangers + relatable + tune + music + slaps | 348 | 0.0409418 |
1546 | details + afda + ales + apply + welford + gallery + rfc + art + stadium + join | 347 | 0.0408241 |
1322 | rollercoaster + bredrin + unborn + sums + weak + sorta + life + yeah + wallah + meant | 346 | 0.0407065 |
230 | wink + caribbeans + swaminarayan + percent + shree + girlfriends + ffs + bidded + bignosed + chatsh + coram + dearmetenyearsago + did’nt + edgeley + flocons + granville + hatefuck + high15 + igy + intaking + leer + martinique + nodss + nomoretweetingforme + puricia + shaan + t’is + tgetbanged + toiletry + toothpicky + transiti + unlungu + usury + zonefacelift | 346 | 0.0407065 |
1288 | crying + dying + attacked + heartbroken + feel + gonna + dead + atm + tears + jug | 340 | 0.0400006 |
507 | ahem + yep + ha + gobble + honk + demarai + cowboy + nice + im + ht | 340 | 0.0400006 |
1692 | people + question + daudia + tweet + ashwin + blatantly + chucked + excuse + mediate + sensed | 337 | 0.0396476 |
1399 | picit + friends + trust + disagree + amount + highly + mums + yeah + captured + kmt | 336 | 0.0395300 |
262 | sigh + laughs + hugs + shakes + insert + sighs + mutes + grunt + deletes + waves | 336 | 0.0395300 |
390 | fuck + ha + yeah + tlof + moggy + guy + 7️⃣ + bayfield + clairvoyant + cout + ellas + geert + lg’s + maracana + mathanda + mthande + prewarned + ramazan + rimmo + spursday + taqqiya + today.brilliant + wiggo + witherspoon’s | 336 | 0.0395300 |
351 | drinking + boar + wetherspoon + ale + beer + stout + plantagenet + porter + camra + humberstone | 334 | 0.0392947 |
60 | posted + kingdom + united + photo + photographs + granite + driveway + qatar + photos + image | 333 | 0.0391770 |
843 | luck + news + pinkmagazine + ruti + xx + thankyou + 60m + cinamoncat + woohoo + johnny | 328 | 0.0385888 |
1297 | umar + vigil + masjid + otd + fog + reel + lid + night + 50shadesofgrey + gbkburgers | 327 | 0.0384711 |
1400 | heard + remember + watched + cried + dashboard + people + jarring + moto + leifle + understanding | 325 | 0.0382358 |
1486 | ams + property + wadkinbursgreen + brett_pruce + tigers + moulders + kingdom + stadium + leicester’s + united | 325 | 0.0382358 |
1093 | cunts + nigga + thearchers + worldmapsongs + thechase + wankers + bastards + mare + braindead + fuck | 323 | 0.0380005 |
716 | dms + dm + check + gardening + 8yearsofonedirection + link + send + 8yearsof1d + 8yearsonedirection + bedding | 323 | 0.0380005 |
752 | trump + government + tax + fisa + president + claims + eu + costofbrexit + fiasco.and + uk | 322 | 0.0378829 |
463 | jesus + christ + wept + win + lord + cute + sweet + xx + fucking + gabriel | 320 | 0.0376476 |
711 | yummy + delicious + tasty + incoming + dilly + tryna + snooze + nice + evenin + bank | 319 | 0.0375299 |
530 | otd + thousand + hundred + nineteen + twenty + jingly + seventy + eighteen + eighty + sixty | 318 | 0.0374123 |
1104 | amazing + ha + nekkid + fantasticbeasts + cute + hero + wow + liar + abbasback + andrewlincoln + canthandlethetruth + dudeperfect + fieryfriday + goodlad + gotmykeys + grosbeak + henson + holz + johnnfinnemore + loadofbollox + loveyourgarden + notanewmanager + notaplonkeranymore + oversocks + perdoobliable + personauknumber1 + phooey + pinni + practicaltheology + reincarnate + rickgrimes + seductionvalentine + sh1thousery + shooked + standardsstandards + topboynetflix + troublefollowsme + universeboss + vellos + wallisweekend + wokeup | 316 | 0.0371770 |
1730 | elected + labour + government + political + eu + brexit + people + party + tory + racist | 316 | 0.0371770 |
1674 | hospital + drunk + memories + kuli + wisp + kindness + coursework + creates + heigh + wi | 313 | 0.0368240 |
1087 | mondayiscoming + enjoy + aural + image + images + love + fab + dice + photos + sax | 312 | 0.0367064 |
164 | trade + closed + usdcad + usdchf + profit + forex + trading + audusd + eurchf + loss | 311 | 0.0365888 |
1310 | hilarious + stan + funny + funnier + jokes + lit + finest + hahaha + laura + dead | 310 | 0.0364711 |
1278 | pooper + riddems + suppl + pubs + 3gs + mbc + rent + offering + investigation + masked | 308 | 0.0362358 |
491 | cutie + count + prize + xx + luck + wow + oooh + yummy + thankyou + xxx | 308 | 0.0362358 |
1332 | attacked + cry + feel + life + wanna + rt + bcoz + flexible + people + violated | 304 | 0.0357652 |
144 | brill + weekend + lovely + hope + steve + craig + jak + ray + karl + david | 303 | 0.0356476 |
1169 | shadders + makemenervousin5words + uta + caught + worse + incoming + nowt + whoop + a’brewin + barnacles + brokenvows + bullys + carvwol + chatshit + clockey + coolasfuck + disconnects + don‘t + ejaculatory + electrically + glovlei + gownage + gradations + halamadridynadamas + hfq + honezly + ipods + lovage + meloney + nightcrawler + orangearmy + phewmin + poznan + punya + putafootballerinasong + soutot + supportstaff + t’county + thebay + thwiate + tm’s + townie + travellight | 301 | 0.0354123 |
1654 | students + meeting + workshop + team + session + fantastic + insight + britian + username’s + event | 300 | 0.0352946 |
659 | love + exciting + pies + proud + delicious + cake + fine + xx + pricilla + tomorrow | 300 | 0.0352946 |
1361 | hate + life + cry + swear + wanna + ive + feelings + pain + conversations + feel | 297 | 0.0349417 |
413 | petition + sign + parliament + uk + government + stop + save + mp + ban + sekondawatches | 297 | 0.0349417 |
496 | wren + teamuhl + forward + sweetie + wait + pleasure + lovely + aww + amusez + at’cha + bellas + cherrington + eastmidlandsengine + hmos + k9 + kward + ladiesinred + my2faves + nixie + raakhee + smili + sofiane + twab + vsphere | 296 | 0.0348240 |
1075 | ratings + cool + boom + ales + beauty + jump + controller + awesome + ag2r + autumncolour + boabie + busyliving + chccyafest + clumpy + cometigers + desmonds + exfactor + flywithbrookside + funkier + greatline + greenasabean + hammbo + hehehehehe + hellotohalifax + howtotrainyourdragon + interpreter + lavercup2018 + norestforthewicked + onepiece20 + originaljam + partyanimal + rapidcharge + slurm + snakepass + takeheraway + tanx + tee’s + thass + translater + uncis + whayy + worhol | 295 | 0.0347064 |
1690 | told + alcohole + fate + fear + cbd + ago + volume + ye + poisonous + snort | 295 | 0.0347064 |
931 | pray + account + leave + delete + tbf + agree + praying + tut + zimbabwe + heyy | 294 | 0.0345887 |
553 | hope + xx + xxx + love + recovery + feel + sorted + awh + glad + follow | 292 | 0.0343534 |
1291 | uni + wanna + walk + marry + excited + im + phone + library + laughing + baby | 290 | 0.0341181 |
499 | aw + amazing + congratulations + pleasure + appreciated + judith + girly + lovely + aww + miss | 289 | 0.0340005 |
1624 | agree + sense + bilal + zooming + puel + ds + fit + speak + person + makes | 285 | 0.0335299 |
1386 | women + trash + people + crazy + girls + mad + evil + boys + theory + freaks | 283 | 0.0332946 |
1077 | wakaze + bhutan + mamsha + flight + austere + wexmondays + marco’s + feedback + crypto + demolition | 282 | 0.0331769 |
1614 | dsusummerball + noms + team + britishbasketball + award + forward + blend + siren + luck + event | 282 | 0.0331769 |
705 | xx + sexy + babe + nipples + gorgeous + nice + tempting + wow + darling + cheers | 282 | 0.0331769 |
1364 | laughing + loud + watching + assaulting + mumford + love + watch + swear + watched + unironically | 281 | 0.0330593 |
1265 | awake + nap + sleep + muff + weight + bed + eat + drinking + roast + nights | 280 | 0.0329416 |
1331 | plead + yeyi + hai + forgive + mum + diagnosed + dont + type + gut + feelings | 279 | 0.0328240 |
1490 | leicestershire + burlesque + artsy + chicas + tribalfusion + skytribe + locas + art + stadium + burlesquetroupe | 278 | 0.0327063 |
888 | luck + cinnamoncat + yay + aww + johnny + proud + xx + team + xxx + congratulations | 277 | 0.0325887 |
206 | foodwaste + unitedkingdom + free + chicken + pret + baguette + protein + salmon + avo + salad | 275 | 0.0323534 |
444 | fearless + lcfc + foxesneverquit + foreverfearless + befearless + foxes + foxesunleashed + fox + filbert + ricky | 275 | 0.0323534 |
1425 | echo + understood + read + heard + honest + sis + inappropriate + idea + blame + louder | 272 | 0.0320005 |
446 | fire + word + applicable + ggas + griggs + lit + nigga + hebraic + omfds + omds | 270 | 0.0317652 |
1348 | uni + wanna + life + breathe + psfour + boyfriend + tweeting + car + feel + honestly | 269 | 0.0316475 |
841 | pink + colours + rf + calmed + agree + gifs + rebecca + answercto + autoco + barbrawl + batti + britainslostmasterpieces + burin + crumby + drakefell + goust + hallers + ihearttattyteddy + kuffar + meninist + mosli + novelist’s + rembrandt + spamforbrains + tweetit + whishaw | 269 | 0.0316475 |
847 | poptart + blue + horny + read + controversy + nets + badrhino + btwx + filtresàselfiecanadiens + fuckedontherocks + fums + happyfinaltransferday + kind.x + lokso + makeasongdrunk + megapixel + orangeade + shitall + somelovelyquotes + teamedward + tolateraled + trademarked + unbanned + witt | 269 | 0.0316475 |
1015 | n’night + blooms + bed + enjoy + snow + forward + glad + hues + day + beautiful | 267 | 0.0314122 |
1198 | guy + morata + bring + omds + overpowered + bloke + boku + neymar + 2k18 + roddy + strain | 267 | 0.0314122 |
1506 | forge + dragons + kingdom + united + koi + tattoo + sarangichillout2 + studio + sleeve + leicestershire | 267 | 0.0314122 |
91 | cheers + capes + losange + wear + hero’s + foodwaste + heroes + baked + unitedkingdom + stone | 267 | 0.0314122 |
1304 | bbc + news + police + petition + jailed + pensioners + deepfake + deforestation + xkam.billa.toorx + yangyang | 265 | 0.0311769 |
1052 | changer + tvormoviesynonyms + watermusic + beggy + ere + weirdo + boy + ntas + truth + naughty | 264 | 0.0310593 |
1626 | exhibition + rcslt + event + apply + join + hall + art + ninth + local + assista | 264 | 0.0310593 |
574 | birthday + happy + hope + xx + day + xxx + lots + boo + blessings + belated | 264 | 0.0310593 |
1409 | harrassed + people + spielberg + laughing + love + masturbate + loud + age + hate + names | 263 | 0.0309416 |
537 | thousand + hundred + nineteen + eighteen + hundredths + twenty + ninety + thirty + eighty + seventy | 262 | 0.0308240 |
1164 | ha + ready + hai + pooch + curve + brilliant + haha + agree + verse + fabulous | 261 | 0.0307063 |
1560 | disrupts + macan + partri + health + people + conversation + excerpts + academics + 20m + thefts | 261 | 0.0307063 |
381 | moose + pig + necklaces + earrings + tikkas + royal + tigers + collection + tigersfamily + velvet | 261 | 0.0307063 |
1091 | nigga + thearchers + surbhi + guy + nosurbhinoishabaz + gravy + imaceleb + keef + lil + bitch | 260 | 0.0305887 |
1502 | awards + luck + congratulations + winning + juniors + junior + women’s + teams + cricketers + night | 259 | 0.0304710 |
1616 | toy + ago + watched + meds + hip + months + story + days + frankel + watchi | 259 | 0.0304710 |
397 | mi + nuh + dem + di + yuh + fi + ah + mek + seh + inna | 259 | 0.0304710 |
76 | foodwaste + unitedkingdom + free + irseven + flatbread + baguette + avocado + falafel + gluten + chipotle | 259 | 0.0304710 |
86 | morning + a2z + atz + tz + hey + 7books + read + lot + nomination + kpop | 258 | 0.0303534 |
291 | parents + listening + cheers + coming + majors + doggo + sorted + 18years + belway + cattitude + goners + panicisonherway + parentingtips + parentsforfuture + pboro + raga + resourse | 257 | 0.0302357 |
353 | drinking + ale + ipa + stout + pale + porter + photo + abstrakt + jackpin + refreshing | 257 | 0.0302357 |
1327 | dare + terminal + toilet + nude + die + clout + feeding + 8months + ahagshdhdkfaka + coitus + dontspoiltheendgame + ignor + interruptus + kingpins + kymmarsh + lassy + ndkajxjajxj + oncall + relived + tinest | 256 | 0.0301181 |
1262 | niggas + dope + niggaz + dead + move + animal + yoh + deserves + heads + weird | 254 | 0.0298828 |
462 | fuck + hell + headbutt + tik + laughing + remind + grad + guy + happened + loud | 254 | 0.0298828 |
132 | mornin + nite + thepond + pleasure + olowofela + voteolowofela + worldrugbyu20s + xx + heartsurgerypsp + breakthrough | 253 | 0.0297651 |
1540 | dmupolitics + innovation + exploring + teaching + extent + paper + kidney + geographers + health + inclusive | 253 | 0.0297651 |
1354 | understand + watching + konami + watch + suck + offense + thrones + miss + armysgoingtojailparty + episode | 252 | 0.0296475 |
1129 | true + phew + thee + legs + superb + benatia + n’pton + rockn + startapetition + tooeasy + unbiassed + wankie | 251 | 0.0295298 |
1457 | joke + weird + drivers + painful + baffling + honest + happening + bedroomed + bidets + colonsay + leagueops + ludacris + mauritians + moratta + osaurus + putaringonit + tautology + termatior + texters + tooney + ukhousingbikeclub + zoella | 251 | 0.0295298 |
1612 | event + nurse’s + church + fantastic + afternoon + amazing + prashant + meeting + congratulations + inviting | 251 | 0.0295298 |
519 | forward + appreciated + cheers + pleasure + hope + enjoyed + enjoy + greatly + safe + pleased | 250 | 0.0294122 |
1582 | locos + janie + penguin + birth + doctors + people + valproate + adamant + suffer + diversity | 249 | 0.0292945 |
785 | xxx + babe + xoxo + comp + xx + id + steamin + shirt + shared + edinburgh | 249 | 0.0292945 |
1623 | bland + cyclist + bicycle + abuse + hoc + farscape + ripjeremyhardy + women + people + safe | 248 | 0.0291769 |
249 | fuck + crumb + single + fucking + soulei + goal + gerard + veins + sip + puff | 248 | 0.0291769 |
516 | race + comment + um + shameful + 2042 + a’d + comity + concerving + corgy’s + demerit + friendlyclub + galeazzi + ghiblis + giggleswick + handfuls + kuzanyiwa + lodaniel + maniacs + morpeth + phallic + predicitve + rages + sexmum + snowf + thewho + unmemorable + vertically + whateves + zagging + zombieliker | 248 | 0.0291769 |
646 | gym + weighed + 2 + watched + surreal + felling + gallstones + unconvincing + refurbishment + drank | 248 | 0.0291769 |
560 | birthday + happy + inspirationnation + prachi + hope + classteachmeet2018 + appreciation + julie + day + congratulations | 247 | 0.0290592 |
1275 | soupa + burnsie + creme + retweet + poundland + chocolate + waveology + replacements + fitz + innocence + psychopath | 246 | 0.0289416 |
619 | dedications + support + proud + amazing + kitamestimenang + team + congratulations + therealfullmonty + students + huge | 246 | 0.0289416 |
1644 | join + newmusicalert + newmusiccomingsoon + chef + july + guest + event + drops + shaf + newmusic | 245 | 0.0288239 |
556 | 0 + 1 + 2 + 3 + thatlovingfeeling + nffc + tigers + coys + 5 + 4 | 245 | 0.0288239 |
173 | pm + emergancy + lovely + bofors + created + kashmir + impose + ramadhan + 2 + super6 | 244 | 0.0287063 |
80 | weekend + wonderful + glory + hope + xx + lovely + femmes + conformity + femininity + brill | 243 | 0.0285886 |
1521 | song + walk + fallout + pablo + 6lack + starset + taknbystorm + scarves + massacre + klaxons | 241 | 0.0283533 |
919 | donald + mornin + song + december + game + trump + ft + boom + michael + mavado | 241 | 0.0283533 |
1097 | laughing + loud + mbio + urgot + wombats + sore + pun + creams + amateur + anytying + bwipo’s + casetify + chocolatine + confines + elliegould + eyehealth + frank’s + fulbourn + joyed + kathmandu + mcaleese + optometry + optomlife + ripjohn + salazars + salut + sate + secombe + shattap + snuffle + spt + sweet’s + thermos + whynosoundaward + whysoquiet | 239 | 0.0281180 |
1233 | tlof + codeine + shrink + tired + days + hour + stressed + hours + cba + gonna | 239 | 0.0281180 |
972 | country + religion + music + listening + islam + song + tommyrobinson + traitors + british + sighted | 239 | 0.0281180 |
157 | betterpoints + earned + walked + hundredths + miles + antalya + brill + thirty + weekend + timelords | 238 | 0.0280004 |
22 | guys + upgrade + beats + chest + treat + sir + bitch + heart + mum + fuck | 238 | 0.0280004 |
54 | mytwitteranniversary + joined + remember + twitter + graham + brill + 20yearsinleicestershire + adecadeoftweets + eventnurse + idont + innerpeace + mytwitteranniversary6 + nursesontwitter + tweetme | 238 | 0.0280004 |
1078 | amazing + proud + fantastic + team + event + support + night + staff + brilliant + players | 237 | 0.0278827 |
1318 | uni + bored + home + plantation + wanna + feel + ifslaverywasachoice + fucked + exam + gonna | 237 | 0.0278827 |
508 | lambo + thinking + boyfriend + braces + theresa + bestfriend + grenfell + carrot + apparently + theapprentice | 237 | 0.0278827 |
1241 | diviyesh + posted + oadbyceramics + gelato + photo + garratt + instalive + village + votelabour + check | 235 | 0.0276474 |
908 | broken + relatable + banger + annoying + sexiest + hardest + crap + worst + accurate + trash | 235 | 0.0276474 |
443 | nowplaying + nowplaying️ + onvinyl + hawley + nowpiaying + bunnymen + ipodonrandom + krule + a.s + vinylsoundsbetter | 233 | 0.0274122 |
923 | delete + lemme + tommyrobinson + learn + everyday + lame + plank + dry + header + draupadi + gaggle + gofgi + grc + hemorrhoid + impersonat + moshpitting + origintes + ormrod + perhapps + publicty + sanbizzle3333333 + skieoner + smugmarcel + wew | 232 | 0.0272945 |
19 | chance + awesome + tonic + foodwaste + unitedkingdom + ultra + gordon’s + alcohol + gin + gra | 230 | 0.0270592 |
114 | nice + sweetie + writes + lottery + ff + raise + fan + stark + buy + tickets | 228 | 0.0268239 |
208 | brill + weekend + hiring + projectmgmt + o2jobs + england + lovely + fit + job + retail | 228 | 0.0268239 |
142 | bush + fmsphotoaday + voters + fmspad + hundred + sunrise + brexit + cent + 07710900160 + bbl2017 + bbl2018 | 227 | 0.0267063 |
834 | tongue + pissing + mouth + ffs + fuck + shaku + faint + someone’s + cursed + phone | 227 | 0.0267063 |
930 | agree + concur + icecream + pree + blocked + vic + helmet + naturally + 44mm + 47mm + apogise + awnser + conceit + deafen + dsq + hacienda + hallucination + listicle + rmbr + slapper + tbrvqh | 226 | 0.0265886 |
308 | bin + morning + legend + portillo + adam’s + brexiteers + trash + michael + garbage + theresa | 225 | 0.0264710 |
810 | forthethrone + klitschko + folds + lukaku + baller + fucking + channelling + barlow + game + alonso | 225 | 0.0264710 |
1629 | chuck + jjs + sera + 35yrs + poncho + thematically + woodchuck + instruction + yo + words | 224 | 0.0263533 |
1276 | finedarkskintwitter + digitaldetox + impulse + nf + nation + finally + switzerland + iraq + sweaty + add | 223 | 0.0262357 |
1270 | thirteenth + sleep + beefcake + chicken + eat + hungry + famished + sundays + weight + gaining | 222 | 0.0261180 |
935 | stress + dead + miguna + cigs + edging + cannabis + ahaha + bra + ima + 48min + boggled + conultant + delts + dissociation + frienships + glawsfamily + glawstowin + iwilltrytorememberallofyoulittlepeople + liveeverydayasifitisyourlast + metronomy + mincer + petitioning + sub8ten + sukali + suppin + urrm + whenthereisnochanceofsex | 222 | 0.0261180 |
1144 | i’am + shook + goin + crying + mins + nintendo + floating + hayfever + ho + forehead | 220 | 0.0258827 |
1162 | dance + erm + blackpanther + haha + agree + body + archdeacons + bettuh + boxoffice + bunions + busyboy + efter + f2ri + homesunderthehammer + knightingale + kthnx + marvelstudios + minnits + onwiththeshow + photie + roygrace + sabbatical + shamba + stubbly + superleeds + that1 + wakandaforver + xyloband + yeritielmans | 220 | 0.0258827 |
1628 | appreciative + car + extremity + symbolize + cadjpy + gels + mypathtolaw + incompatible + 50 + mor | 220 | 0.0258827 |
889 | luck + yay + deacy + harries + thegrinch + guys + pinkmagazine + cheers + aw + awesome | 220 | 0.0258827 |
1229 | aged + cyrille + regis + bluebirds + gypsies + stan + 2lb + kmt + chavs + tramps | 219 | 0.0257651 |
766 | findomme + baby + imaginary + screw + header + pls + akwaababall + buhh + cuckys + famgang + fireworksnight + headassery + jibby + judgiinngg + kiyoko + nationallottory + puelball + rind + summerville + supermarketsweep + talktome + tonioli + wburs | 217 | 0.0255298 |
591 | relatable + bemoregreig + cap + hof + wanny’d + fair + grow + chin + whatsoever + pattern | 216 | 0.0254121 |
1413 | people + laughing + congeniality + rate + loud + nah + girls + rattled + sensitive + 50.75 + artwankers + bookiness + buzinghgh + charleschaplin + emit + fictional.the + gillead + jandira + olivier + palvin + policia + pretensions + racismo + scottished + truk + weech | 215 | 0.0252945 |
104 | rdr2 + reddeadonline + rdo + reddeadredemption2 + ps4share + vgpunite + ps4pro + photomode + virtualphotography + rdr2 | 214 | 0.0251768 |
1305 | petition + signed + sign + calling + bbc + police + share + cris + news + terriermen | 214 | 0.0251768 |
1447 | true + wont + honest + 10yearchallege + 3501r + audioweb + bbygurl + centrum + danke + didhdiensos + dube + feelinghopeless + freezered + inventer + nuttah + sggzhshagags + sksksksksjs + totaltool + usfull + yammy | 214 | 0.0251768 |
564 | birthday + xxx + hope + happy + beaut + xx + day + lovely + wonderful + hey | 213 | 0.0250592 |
571 | birthday + happy + hope + day + xx + wishing + fab + wonderful + awesome + returns | 213 | 0.0250592 |
1534 | ani + woman’s + event + 7pm + evening + games + mahathat + cup + inspiring + bromley | 212 | 0.0249415 |
307 | wimbledon + djokovic + frenchopen + ausopen + tennis + 6 + rg18 + nadal + quarterfinals + federer | 212 | 0.0249415 |
314 | babe + darling + um + gorgeous + horny + honey + sexy + bum + lips + nice | 212 | 0.0249415 |
428 | christmas + xmas + tree + eve + carphonequizmas + carol + gift + halloween + decorations + merry | 212 | 0.0249415 |
70 | lineofduty + ted + number’s + pure + mother + bent + copper + grateful + vindhya + joseph | 212 | 0.0249415 |
528 | hundredths + hundred + sixty + fifty + ninety + thousand + million + billion + forty + eighty | 211 | 0.0248239 |
1034 | fucker + bastard + twat + truer + fucking + fuck + bastards + absolute + shoot + motherfucking | 210 | 0.0247062 |
1329 | stadium + wewillrememberthem + lcfc + leicester’s + contract + incentive + mechanical + searchdogheros + experienced + honda | 210 | 0.0247062 |
1500 | diet + excerpt + gendered + timelapse + broken + roundabout + academia + aimed + differences + freelance | 210 | 0.0247062 |
1402 | saveghouta + film + morning + bluray + vinnie + eat + keto + comfort + barking + earnt + willow | 209 | 0.0245886 |
1566 | cheaper + adobe + gigi + facebook + app + system + sen + sold + hungary + dire + tab | 209 | 0.0245886 |
315 | kadiri + launderette + kadiri_news + highfields + evington + news + kadirinews + slush + kadiri_newsagents + sweets | 209 | 0.0245886 |
440 | dey + eurovision + wey + applicable + abeg + anthem + dem + don + oo + waka | 209 | 0.0245886 |
1495 | lighting + mamokgethiphakeng + pulselighting + meeting + install + exhilarating + conference + iwd2018 + youtube + team | 208 | 0.0244709 |
998 | giggy + soups + wiggy + news + mrsbs + forward + buffy + dill + shetland + lunch | 207 | 0.0243533 |
198 | leicestershire + smilesbygurms + clearbraces + invisalign + quickstraightteeth + braunstone + cosmetic + bonding + vue + whitening | 206 | 0.0242356 |
1095 | connect + santander + ha + sung + objects + blame + jeez + 21stcenturyhostess + actuallu + brixham + carenvy + dcu + equalitynow + hetal + hitman2 + lethelenfly + manenoz + missrik + notmyselftonight + oik + shillings + snowdaytomorrowatthisrate + socceraid2018 + stpiran + tdk + topically + visualiser + zombified + zorb | 205 | 0.0241180 |
1138 | haha + adorable + guinness + brollys + carvwr + crunchier + didoslament + fromalantoellen + haina + healthyfood + hellenistic + lakini + lestahshire + limon + maana + naona + o.o.d + onerous + overstaying + paler + shyamalan + slowcookersunday + spenp + spoiltforchoice + theparty + toa + walkersstax | 204 | 0.0240003 |
422 | christmas + halloween + autotraderxmas + xmas + festive + easter + tree + christmassy + jumper + halloween2019 + singchristmas | 204 | 0.0240003 |
468 | tickets + askally + fusion + booked + copped + festival + due + ticket + evolved + billionaire | 204 | 0.0240003 |
679 | oddwaystomakeafriend + disgusting + addabeertoamovieorshow + addonewordtomakeafilmmorefun + legend + addabrandruinamovie + oddthingstocollect + ruinabandnamewithoneletter + rita + addtoystoaband + changeanyvowelsinamovie + filmsthatcanswim + makeahororfilmlescary + replaceawordinamovietitlewithfanny | 204 | 0.0240003 |
1022 | lancomegwp + wait + haha + butts + vegan + birding + water + warmth + beer + pokemon | 203 | 0.0238827 |
1316 | mirror + feel + home + bored + assignment + dollar + stripper + surgery + waved + walking | 203 | 0.0238827 |
827 | patches + stoned + bedding + candle + fam + inshallah + pair + adian + aroyalteamtalk + dilit + inspiringwords + ndole + pleasee + remmeber | 203 | 0.0238827 |
1738 | brexit + labour + remain + referendum + vote + tories + parliament + tory + lied + voted | 202 | 0.0237650 |
926 | spell + products + bundle + weird + anstrad + attslamdunk + bankruptcybands + dafs + ddp + fuckjng + hellbound + hitmarkers + idiotbaby + kellys + majotiry + muellerreport + naughtymuj + netanshit + newambassador + rainbowism + stringent | 200 | 0.0235297 |
937 | montfort + university + de + dmu + djing + kingdom + united + djrupz + iphonegraphy + thevenueleicester | 200 | 0.0235297 |
1387 | loud + laughing + people + laughed + poppies + sense + noo + friendships + weird + im | 199 | 0.0234121 |
541 | lcfc + chelsea + league + vardy + fans + games + lfc + england’s + rashford + player | 199 | 0.0234121 |
1179 | cutest + faves + rupi + kaur + bangs + lowkey + kendall + emotional + joke + father | 198 | 0.0232944 |
1266 | craving + july + sunday + chicken + friday + january + saturday + june + day + monday | 198 | 0.0232944 |
784 | xx + ace + spiritridingfreetoys + shared + retweeted + jo3official + babe + pls + xxx + photographer | 197 | 0.0231768 |
1371 | spelt + smells + wrong + cats + everytime + bet + mad + ammer + britainsfavouritedogs + catveries + couldent + disband + enderbys + finnlawfriday + joycean + laptopneverleftlondon + longweekagain + northwalesbantz + nurserylife + nurserynurse + o’kanes + saam + skeem + splurted + spygate + thewaymymindworks + vaghar + wooaarh | 195 | 0.0229415 |
1432 | cares + honest + incest + dickhead + responses + anightin + applys + caseworkers + duplitious + eeermm + fkskdksksks + inmpose + jigger + mokentroll + podgier + prayforsudan + section28 + supremecourtlive + wasil + wingmirrorgate + wounding | 195 | 0.0229415 |
902 | cutie + afresh + fuck + booties + cancel + hope + 100 + beginnings + mm + sauce | 195 | 0.0229415 |
159 | aromatherapy + 75mins + couch + indulge + relaxing + gents + homemade + babies + birthday + love | 194 | 0.0228239 |
1596 | students + geography + melcav + talks + worldmentalhealthday + composting + zetasafe + health + specifications + service | 194 | 0.0228239 |
297 | run + park + graduated + 10k + graduation + commute + fastest + graduationceremony + justgraduated + graduate | 193 | 0.0227062 |
298 | weekend + lovely + playwhatami + brill + teenchoice + rebrand + xx + mee + lynn + ministers | 193 | 0.0227062 |
1 | huge | 192 | 0.0225886 |
186 | weekend + wonderful + lovely + hny + brill + xx + hope + day + karen + morning | 192 | 0.0225886 |
366 | immense + alltogethernow + epic + plz + awesome + comments + incredible + till + creampuffs + late | 192 | 0.0225886 |
804 | depends + yep + plan + doubt + careful + choose + sounds + bye + lord + suppose | 192 | 0.0225886 |
1158 | ha + wow + oya + god + argh + itscominghome + ahra + ahrathy + celebrityxfactor + dap + do.x + fuckme + halla + jameelajamil + letabitchlive + mciavl + ollys + perfectlyflawed + shauna + unbelieva’brow + waccoe + wahaay | 191 | 0.0224709 |
1571 | agree + considers + detail + eligible + buying + frailty + wrongly + widely + services + farmers | 190 | 0.0223533 |
682 | xx + message + xxx + xoxo + babe + xox + chains + names + cba + pls | 190 | 0.0223533 |
763 | sad + hair + ell + blackpool + gt + aleyna + beaneath + bombaybadboy + callice + chucklechucklevision + combo’s + cryy + dnce + evenmotherwasscared + flairy + fuckin’ell + giris + globalwarming + kyliessecretnight + likesthat + peakest + rentboy + tilkis + tinydeskconcerts + transfusions + youstupidgreatlumpolive | 190 | 0.0223533 |
952 | statesidesix + submitted + maythe4thbewithyou + starwarsday + entry + enter + steamin + brockshill + crownedbyemiliehair + grwm + irishracing7 | 190 | 0.0223533 |
115 | pooch + thepoochery + thepoocheryleicester + thepoocheryglenparva + poochery + bath + glenparvadoggrooming + puppy + glenparva + daisy | 189 | 0.0222356 |
424 | valentine’s + valentines + happy + day + valentinesday + valentine + valentinesday2019 + christmas + darkchocolate + single | 189 | 0.0222356 |
117 | beautiful + enormous + stunning + luck + serenely + pretty + gorgeous + holidayinsephora + lalalala + sicho + taittingerbathtime | 188 | 0.0221180 |
1373 | laughing + loud + women + people + niggas + girls + stupid + arseholes + unpopular + common | 188 | 0.0221180 |
1428 | pigs + putsontinhat + incorrect + honest + beautiful + bird + sticks + carabou + crawshaws + faldo + hothothot + neny + reacers + robotnik + satantic + sheepishly + taxadvisers + whilton | 188 | 0.0221180 |
1563 | opportunities + development + workshop + techniques + skills + health + patronage + username’s + discussing + welfare | 188 | 0.0221180 |
259 | gt + lt + 3 + agenda + 333 + amplified + kjv + halloumi + dogs + attire | 188 | 0.0221180 |
946 | luck + hugs + tomorrow + taping + download + xmas + wait + scotland + hang + sharing | 188 | 0.0221180 |
455 | laughing + chelsea + loud + laugh + oxtail + beep + hilarious + fuck + crying + ffs | 187 | 0.0220003 |
695 | bbc.my + bigblackcock + dommes + desires + adverts + cum + people + fuck + assholes + hate | 187 | 0.0220003 |
975 | rtc + lane + traffic + causing + junction + tailbacks + road + nearside + blocking + inbound | 187 | 0.0220003 |
1193 | damn + desperately + 30minute + agentbatman + athlete’s + bhutto + birkenhead + carnigie + childishgambino + cryfield + donaldglover + dye’s + fancywoman + getthecrownedtouch + infusing + jumperday + kieth + kingharry + kneecapping + macnee + mhyki + muderer + ooopsie + orangino + pissboiling + pliers + reelected + seriousrocking + teammeteor + teamthanos + theough + thisisamerica | 186 | 0.0218827 |
125 | crafts + decorate + greeting + cardmaking + cards + embellishments + greetingcards + cute + miniature + bears | 186 | 0.0218827 |
1382 | imagine + publicity + shock + offended + people + laughing + watching + netflix + thug + watched | 186 | 0.0218827 |
1594 | biog + cremer + prophets + addiction + quote + resonates + environment + negative + nurses + pick | 186 | 0.0218827 |
1178 | today’s + strikeforuss + ustrike + ucustrike + geography + year11 + asteroidday + year10 + picket + year8 | 184 | 0.0216474 |
478 | eatlikeapro + heartbreaking + eyes + heart + alltogethernowstl + setmefree + love + song + 3 + lav | 184 | 0.0216474 |
1410 | watched + relations + genuinely + novelist + remember + fell + screamed + died + abboandoned + birmz + feellikeayoyo + forthesakeofmybloodpressure + greenleafs + jojk + lactosing + laughjijinhgghh + lpl + molby + oneofthelastreasonswhythesundoesnotsetontheunionjack + pulledinalldirections + scummiest + sorter + sporadically + sweerie + thab + weatherspoon | 183 | 0.0215297 |
201 | xx + xxx + awesome + oooh + wow + fab + super + babe + gorgeous + brilliant | 183 | 0.0215297 |
383 | royalwedding + royalwedding2018 + wedding + meet + valentine + royalfamily + nice + weddings + lovely + royalweddingday | 183 | 0.0215297 |
441 | parents + listening + cheers + sycophants + enjoy + clueless + prick + luck + publicity + 13km + comfirm + emillio + hrp + johnoo + leicestermathsconf + malam + phwor | 183 | 0.0215297 |
1139 | haha + love + amazin + ow + loveisiand + 50fr + brinklzz19 + chocablock + easter2019 + giveawayalert + grandslamofdarts2018 + hand_ + hegerty + isthatbad + jet2 + kummerspeck + mantua + owltastic + peptides + slimmingworldonline + smog + sudpended + teletriage + tetweeted + underused + wwii | 182 | 0.0214121 |
1251 | pissing + ngl + betrayal + ukip + waiting + im + rapper + sand + landing + backwardsness + energy’s + ghostblitz + humped + islas + karmawillcomeforyou + lute + nfi + pt2 + puregreed + ratajkowski + syndrom + terrys + truthbombs | 181 | 0.0212944 |
96 | taas + knots + prize + gbp + spotted + location + speed + fab + heading + hotels | 181 | 0.0212944 |
1321 | dogs + jenny + elevate + feel + feeling + crisis + cry + wiv + cats + life | 180 | 0.0211768 |
1438 | deep + defects + slog + lying + honest + 350r + chicarito + customisation + deffinatly + fooballin + ios13 + jords + mentiond + noteable + precede + relegious + remding + stably + virginal | 180 | 0.0211768 |
342 | sweetie + cheers + nudge + decent + morning + blathereens + hainan + kickborisout + nufsaid + slitheens + tomora + tottey | 180 | 0.0211768 |
12 | exposures + goosefair + longexposure + goose + gererals + nottingham + prize + robbins + eighteen + princes + spies | 179 | 0.0210591 |
1328 | spinning + worst + life + head + tired + im + scent + mood + awaiting + days | 179 | 0.0210591 |
1494 | numan + gary + song + sunbathe + airlane + krys + autumn + cold + playing + pleasure | 179 | 0.0210591 |
377 | birthday + congrats + happy + congratulations + whoop + party + acprc + babbyy + colclough + grandnational2018 + grandsonno2 + imagane + railroad + runor + ygs + yhats | 179 | 0.0210591 |
692 | imaceleb + anne + joinin247 + ffs + waiting + croatia + budap + decsnips + indiedisco + karankaout + moanirinho + thatstwowishes + zey | 179 | 0.0210591 |
808 | mine + speak + marry + fab + vibes + borek + crackham + deff + dissodone + hemorrhoids + myrdoch + quotidian + simpal + tgem | 179 | 0.0210591 |
63 | spraycanart + sprayart + urbanart + graffporn + graffitiart + graffphoto + streetart + stronger + click + inplaywithray | 178 | 0.0209415 |
732 | game + fortnite + barnes + harvey + southgate + gareth + wwe + robertson + won + yeh | 178 | 0.0209415 |
803 | god + careful + m’lady + reunion + 1gs + beirut + biscuitchat + cosmonaughties + fuckijg + hellinacell2 + lcfcu18s + mada + northbank + paddycam | 178 | 0.0209415 |
1375 | pda + autism + blog + battery’s + pcso + polis + products + data + encourage + asians | 177 | 0.0208238 |
1485 | kingdom + united + nethermoor + guiseley + roadtowembley + stockton + emiratesfacup + astronauts + qualifying + bbc’s + undergraduate | 177 | 0.0208238 |
245 | mornin + im + rainin + monday + thepond + washin + ive + mite + yep + shorts | 177 | 0.0208238 |
278 | mad + shot + quality + dude + arsenal + class + 13reasonswhys2 + criming + lmpocibal + mcmbirmingham + memorys + superbikes + topiary | 177 | 0.0208238 |
302 | morning + frosty + bud + sacked + waking + mist + mate + lee + fave + shopup + sweehar + yedb + yesbelmond | 177 | 0.0208238 |
876 | photo + budd + pic + roxy + marathon + pictures + film + gary + brilliant + aqp + bettina + cozzy + damaris + diction’s + ess + fakery + freshersflu + isthisthereallife + kadar + larksintransit + mâché + mosthaunted + panzers + patrickwolf’s + saheb + unhurt + willie’s + winsbury + wow.gorgeous | 177 | 0.0208238 |
1292 | custom + free + fitting + vegan + store + paleale + tickets + bikes + sale + range | 176 | 0.0207062 |
1352 | sleep + hair + wanna + wait + nose + holiday + month + headaches + washing + hours | 176 | 0.0207062 |
1721 | template + farndon + staybrave + exciting + caprice + deepthroat + ocr + scholarships + project + event | 176 | 0.0207062 |
225 | prize + alignment + regulatory + win + shock + default + agreement + awesome + customs + phase | 176 | 0.0207062 |
947 | funniest + ttt + doubling + lovethedarts + nigeria + fav + tunisian + shite + robert + daudia | 176 | 0.0207062 |
1393 | jnrs + missengland2019 + headship + nike + montfort + garter + bbcradioleicester + nighttimephotography + vestige + lcfc | 175 | 0.0205885 |
1503 | game + congratulations + rugby + winners + luck + purim + skitz + forward + season + awards | 175 | 0.0205885 |
815 | answer + heaven + god + lot + boys + familiar + bad + blocked + ffs + sounds | 175 | 0.0205885 |
1528 | paresh + inspiring + wet + britten + pwc + rapscallion’s + cobham + sun + brilliant + evening | 174 | 0.0204709 |
839 | askally + any1 + bo4 + hey + xx + kwiff + ps4 + 2k20 + play + legends | 174 | 0.0204709 |
927 | reload + pussy + brave + accurate + suck + banz + cbbnatalie + demn + diverter + gorgues + groins + makeliteraturesexy + murph + outbreaktour + preconception + rightlg + sexymenuitems + truthing | 174 | 0.0204709 |
1248 | 41 + school + girls + forwarding + secondary + people + grew + sense + mainstream + loud | 173 | 0.0203532 |
408 | fimo + miniature + polymerclay + etsy + etsyshop + jar + cute + miniatures + guineapig + guineapigs | 173 | 0.0203532 |
435 | xx + care + xxx + allah + luke + babes + ladies + 2.8k + actrice + reasonstobecheerful + rollonsunday + shakeywakey + whello + yr3 | 173 | 0.0203532 |
521 | ton + birthday + nic + happy + follower + hump + wishing + ateam + delectable + doneily + headingupwards + lateast + liveforever + missya + reshaping + ugnaughts + up.will | 173 | 0.0203532 |
1434 | kingdom + united + stadium + wes + nt + hvac + lcfc + applause + degree + king | 172 | 0.0202356 |
1518 | bus + dazzle + endemic + ebay + uber + driver + spreads + pencils + partly + patients | 172 | 0.0202356 |
1535 | yesterday + team + bhaji + deser + forward + logs + mukesh + game + ivory + wowsers | 172 | 0.0202356 |
45 | japan + banzai + amen + bud + expo + landmark + singers + idol + foodwaste + unitedkingdom | 172 | 0.0202356 |
568 | happy + birthday + thanksgiving + friday + easter + prin’s + monday + furry + tuesday + november | 172 | 0.0202356 |
1559 | hours + ago + watched + feel + months + drank + weeks + treadmill + week + 9am | 171 | 0.0201179 |
1333 | grandkids + predictive + meant + angrylibrarians + asceticism + fonti + greqt + lavuelta + laze + limbering + phychickhan + sparrowark + squarerootofnowhere + trumpettiness + valdes | 170 | 0.0200003 |
1339 | feel + head + weekends + pure + pain + hayfever + body + absoloutly + bsck + diadem + kuzzys + larch + lewwy + marinas + minky + mividalocal + okokk + ravenckaws + ugli + vrancic + well.have + worstnightmare | 170 | 0.0200003 |
1492 | lcfc + bollyshake + stadium + encourages + king + power + enterprise + eddies + nopalmoi + shorted + weeklydesignchallenge | 169 | 0.0198826 |
191 | backwardistan + nigeria + buhari + disgusting + sick + president + makeup + gibbs + ghetto + imacelebrity | 169 | 0.0198826 |
730 | baby + mummy + bathroom + sweet + marry + dream + alehouse + argento’s + batterytechnology + choca + gadosh + niggalations + tagat + weekendatbernies | 169 | 0.0198826 |
1117 | mideastlks + breixt + librarians + plug + smelly + lesson + sea + possibly + disappointed + ated + comeracing + eachothers + guttedforhim + hearingloss + judt + malevolent + minstrasy + ngqa + precum + premen + shouldick + smarttech + surender + symbiotic + worldbollards | 168 | 0.0197650 |
1408 | laughing + understand + loud + cried + acc + lot + barbie + love + imagine + baffoon + caos + chesh + cracker’s + laffen + limmy’s + midnigh + moicy + punk’d + resembl + seokjins + stefflondon + tittiess | 168 | 0.0197650 |
1580 | earners + ios + corporates + sd1 + tax + narborough + price + benefit + scandal + disclosure | 168 | 0.0197650 |
479 | eyes + yannoe + eye + tae + 140s + converses + gastly + grammars + ispy + kloppout + leebaans + nannie + skeeters + spou + t’leeds + trendss + tske + unaffected + unseeing + vf + watchful | 168 | 0.0197650 |
953 | brexit + voters + generalelectionnow + remainparty + eu + brexitparty + doo + tories + voted + electbhupen | 168 | 0.0197650 |
1086 | idea + loving + pockets + loveisiand + pets + amaxing + bhalei + britainsfatfight + campness + dannytetley + deadting + dyah + friendgoals + fuckyounhs + guggenheimmystery + inundated + lovelygirls + madarame’s + mehs + namedrop + notthatnunwoman + ratmum + rayofsunshine + rollininit + solanki + sorryjack + soubou + statment + whatdoesyourfursonasmelike + whoopie | 167 | 0.0196473 |
1359 | howling + notepad + screaming + waterproof + bothered + stress + people + laugh + lived + life | 167 | 0.0196473 |
1467 | space + national + centre + ekadashi + elton + darshan + song + nationalspacecentre + fordfiesta + dibby + faraway | 167 | 0.0196473 |
857 | harsh + pathetic + awkward + yeah + prick + madness + treat + 90minutes + cavalcade + coked + darky + kickracismoutoffootball + movings + reeal + showracismtheredcard + wadaha + weasil + weried + winstons | 167 | 0.0196473 |
292 | duterte + philippines + rodrigo + stopthekillings + 7.30pm + endimpunity + insanity + leisure + stopkillingfarmers + braunstone | 165 | 0.0194120 |
389 | fair + fuck + ffs + true + valid + piss + bang + lie + spot + conditions | 165 | 0.0194120 |
5 | earlycrew + competition + mornin + agreed + yawn + foodwaste + preach + unitedkingdom + sandwich + cringe | 165 | 0.0194120 |
1336 | links + lt + monday + iamaphysicist + pages + support + cpr + supervision + client + users | 164 | 0.0192944 |
1511 | king + merrick + audiodescription + quarry + joseph + stadium + statue + lestweforget + lcfc + power | 164 | 0.0192944 |
1529 | kurtz + day + newyork + 2004 + patent + week + firsts + yesterday + masala + river | 164 | 0.0192944 |
28 | endomondo + endorphins + hundredths + miles + walking + null + sixty + running + seventy + pret | 164 | 0.0192944 |
1578 | session + forward + hitchings + students + fantastic + plgirls + keynote + autotraderxmas + accomodation + awards | 163 | 0.0191767 |
167 | brilliant + hignfy + marketing + bombshell + wrestlers + pressing + night + scandal + timing + bloody | 163 | 0.0191767 |
1726 | students + launch + teacher + conference + science + learning + linkedin + session + partnership + kensington | 163 | 0.0191767 |
311 | cannibals + clowns + grandad + taste + casualty + miss + corrie + eat + jonnie + collarbone | 162 | 0.0190591 |
395 | yummy + yum + luck + yumyum + goodluck + yumy + banana + peppasecretsurprise + dosas + eurghh + hala_madrid + mjk + swail + yumminess | 162 | 0.0190591 |
1203 | overrated + underrated + tony + resign + smh + alexsandra + amiable + aseel + bollaking + bumbershoot + earthbound + gpsbehindcloseddoors + hardwell + inoperable + insanity18 + jigglypuff + morethanjustablackcat + pixelart + pokemontattoo + pomeroy + refendum + rrose + salome + saxe + selavy + smited + sr3mm + thenerdcouncil + tiddlyham + uncertity + wharram + whitneys + yik | 161 | 0.0189414 |
1206 | sousa + orton + daudia + shaku + tom + harry + henderson + abdishakur + berberas + biebers + catnotpartner + completer + delfino + deuces + drdomore + flipp + fodera + godfather2 + iddin + irevnz + lamped + lomyidolol + pawer + pawsa + ramses + ridder + standbyme + swollocks + unranked + vardss + wankwaffle | 161 | 0.0189414 |
1243 | wrecker + hugging + pls + haunt + minutes + cba + bout + murdered + miami + cats | 161 | 0.0189414 |
1482 | kingdom + united + mng + areacode + tnc + malemassage + malemasseur + city + beefeater + dailypic | 161 | 0.0189414 |
169 | brill + weekend + lovely + luke + simon + goodluck + lance + bud + jason + sam | 161 | 0.0189414 |
46 | itballers + cous + thankss + pp + strokes + ade + skip + behalf + advance + checked | 160 | 0.0188238 |
883 | ayston + le3 + 7b + 0to100xmas + 2ga + giffardliqueurs + boutique + shooter + 15.5cm + aystonroadbarbers | 160 | 0.0188238 |
1510 | britishbasketball + riders + winners + whereyousucceed + newground + whereyoubelong + awards + congratulations + inktober + 2nds | 159 | 0.0187061 |
620 | whaat + blogger + erm + german + ahaha + hungover + farage + accents + nigel + brexit | 159 | 0.0187061 |
1204 | underrated + joshua + twat + idiot + moss + leon + tyler + character + thanos + average | 158 | 0.0185885 |
1665 | plinky + plonky + plagues + exodus + horribly + words + exhaustion + moses + egypt + tablet | 158 | 0.0185885 |
1195 | drums + coover + eastmidlandschamber + expatiate + gawan + gunna’s + laachi + laung + lumos + motivations + nurbanu + reclining + ripjason + stevejobs + tweetlikethe1600s | 157 | 0.0184708 |
1657 | trinity + fossils + supported + beingourselves + childrensmhw + academy + bhosle + crosby + sudesh + ltsig | 157 | 0.0184708 |
1686 | practice + deepest + limitations + maroon + fear + inadequate + utter + christians + planting + teacher | 157 | 0.0184708 |
239 | goam + motorcycle + ronaldo + caption + mash + ninety + charityevent + drinking + catchment + god | 157 | 0.0184708 |
1306 | anger + statement + barnaby + cowards + accurate + serial + liars + adulterors + ception + champloo + chatshow + ghostintheshell + oldish + orgasming + scherzinger + snakeyy + unconsciously + vance’s | 156 | 0.0183532 |
1609 | abo + ordinary + occupants + people + hairstyle + change + wear + human + hitler + helmet | 156 | 0.0183532 |
276 | count + bro + xx + padawan + कोटी + love + broski + kilda + theworldgonemad + usharp + आपको | 156 | 0.0183532 |
661 | correct + deep + wrong + uns + leeds + perfect + ado + astrothunder + decisiin + giggld + makeafilmmuchbigger + thith + thommo + whowho + yanstand | 156 | 0.0183532 |
744 | awesome + blub + cool + xxx + fastdad + gangly + ingame + latinas + makoya + myheroe + rayburn + rmalfc + rmaliv | 156 | 0.0183532 |
1176 | monday + night + till + spag + week + day + 5am + cheeseboard + chivvying + fatloss + gonegirl + gulps + lunctime + mansa + mumsquig + oneoneam + squezy + sucka + sundehh + weightgain | 155 | 0.0182356 |
1404 | hes + happened + fuckedup + glenfi + marsellus + optim + riverisland + scunt + sjksnsjsn + thearchers | 155 | 0.0182356 |
293 | percent + 100 + agree + respect + 90 + 10000 + messi’s + similarity + 110 + true | 155 | 0.0182356 |
515 | tout + mange + fouled + ha + mata + moo + bark + bite + accessillibilliclub + bestow + bunton + distill + fukof + goforit + hale’s + humping + lancing + legacies + nopityfromanyone + spentmuchtimebettering + toot’n | 155 | 0.0182356 |
907 | algebra + kleeneze + barbies + gt + ticket + webcam + replacement + bands + restrictions + scotland | 155 | 0.0182356 |
1128 | slatt + wholelotta + ha + netflix + ey + 2fast4me + 501s + arrgh + atypical + classily + crystalmaxe + dbfighterz + defiently + dopple + eggplant + gele + jilt + jury’s + lllios + nestlé + ohmydays + paradoxical + pastiche + rukky + russells + snagged + sundaysizzler + ursula’s + virginriver | 154 | 0.0181179 |
263 | excuse + betrayal + shocking + british + coloursphotography + scienceandfaith + 1901 + cocktails + entr + thescriptfamily | 154 | 0.0181179 |
771 | leriq + flirt + wait + 21days + actin + changemanagement + cheekysmile + choicestyleicon + dadjoke + derbydays + everylittlehelpsright + hdbsjbsjana + hotcakes + lusciouslips + mummas + perries + porsha’s + superduper + teguise + thatsanotherdaygone | 154 | 0.0181179 |
1040 | mirror + bitch + shit + real + lifes + fork + snitch + damp + ja + forever | 153 | 0.0180003 |
138 | eeek + mornin + enormous + prize + stadium + leicestershire + king + power + city + luck | 153 | 0.0180003 |
581 | love + xx + granada + xoxo + miss + babe + xxx + soz + amityville + bbygrl + choicescifitvactor + eben + farout + fertilise + gravitating + mullers + protostellar + theselyricschangedmylife + thesupoort + unharmed + worryign + xhzbxhxhd | 153 | 0.0180003 |
702 | iphone + huawei + yesyes + agree + yesyesyesyes + bicycles + nauseous + reverse + motorways + motorist | 153 | 0.0180003 |
6 | stick + win + sticky + love + guys + cx + turtletuesday + catches + matches + picked | 152 | 0.0178826 |
617 | loveisland + georgia + wes + laura + megan + amber + hayley + adam + alex + ellie | 152 | 0.0178826 |
1394 | thinking + beat + ayrshire + broght + chewol + complainants + copyrighting + fuckup + intimated + medea’s + ripstevenhawking + wigless | 151 | 0.0177650 |
370 | amea + demarcus + nana + winnin + wallahi + uploads + arlo + boo + mum + siri | 151 | 0.0177650 |
1011 | morning + beige + rain + loved + slides + forward + brum + cold + snow + 1h10 + 5.7c + alove + beautifulasyouare + certaint + englishtourismweek + flowerworks + honeymakers + inhabited + leicesterrailwaystation + missef + naturalbody + recurved + waterlilies + youlgreave | 150 | 0.0176473 |
1552 | create + banknotes + originall + pdr + reclaimthehappiness + students + defaced + rain + vendor + tubeless | 150 | 0.0176473 |
1678 | cach + heritage + campus + caribbean + cfp + wellbeing + marque + appropriately + propel + week | 150 | 0.0176473 |
188 | story + true + shush + scar + arya + peak + hazard + levels + pass + hush | 150 | 0.0176473 |
649 | congrats + congratulations + carrie + guy’s + matey + 2736nm + 57nm + disorganisation + flyboy + hearteu + hyland + keyo + nis + seswimmimg + sneeky + trudi | 150 | 0.0176473 |
814 | cham + abhorrent + despise + opinion + sexton + withnail + emery + everton + napoli + goat | 150 | 0.0176473 |
1172 | god + eheartedly + f2eg + firstnameonthesheet + holeu + lecktrick + poggers + sonsgwithnumbersinthetitle + technik + keys | 149 | 0.0175297 |
1216 | ernie + ladybird + powerhouse + passion + performance + cemetery + ming + fantastic + lovely + day | 149 | 0.0175297 |
1367 | dogs + optimist + malfoy + motives + comeongunners + lovecollies + opalesa + reachest + rogerkline + satisfyingly | 149 | 0.0175297 |
1548 | details + cookie + kitchen + russell + matchchoice + neps + sattars + leavers + nep + progress | 149 | 0.0175297 |
264 | nimsboutique + pajamisuit + guilty + enormous + pajami + forvthe + lt + thumbs + readymade + navy | 149 | 0.0175297 |
818 | fever + eat + snm + stock + producing + hay + popcorn + drink + vegetarian + aftershaves + ag5 + bady + blondebombshell + br3 + crêped + dogo + errday + schlapp + sobersally + strawpedo + thatsmademyday | 149 | 0.0175297 |
916 | singaporeans + meghan + articles + hole + news + harry + police + prince + cyclist + street | 149 | 0.0175297 |
179 | evenin + yoh + idiya + bathoong + bravery + alwaya + blesins + fetlock + heifert + inorganic + lina + mentalite + nutshelling + thant + unmove | 148 | 0.0174120 |
1388 | sitcoms + bloopers + imagine + forex + traders + girls + people + clout + 6ft2 + acn + areoles + babbled + backinblack + buzzcut + c.ronaldo’s + dg7forever + dksksk + dontgodemarai + equall + fastandfurioushobbsandshaw + haechan + incohently + jarr + justkeepswimming + masculinities + o’grady + polyamory + shelboss + somethint + whytes | 147 | 0.0172944 |
1136 | killing + jedi + cut + laying + bbygirl + executors + jarrodlyle + payable + emoji + cryen + grandstanding + slicer | 146 | 0.0171767 |
1330 | wanna + uni + library + fass + jetlag + phone + travelling + home + car + abbformulae + beardlife + fibro + hinching + itsahardlife + journaling + selfemployed + skyscanner + waitingh | 146 | 0.0171767 |
1372 | trash + women + opinion + popular + stan + females + creatures + laughing + strangers + camal + dicested + exhaustingly + ikburnel + katyperryisover + killjoy + kilometers + proficient + reworking + rrst + shelbys + sotu + waroftheworlds + wonderwoman | 146 | 0.0171767 |
1435 | church + stadium + lcfc + boiler + localised + power + baptist + king + hall + 3points | 146 | 0.0171767 |
1542 | volvoxc40 + volvoxc40launch + 2️⃣0️⃣1️⃣9️⃣ + national + space + applicants + dgpconf18 + talk + forward + students | 146 | 0.0171767 |
1687 | business + event + raise + design + launch + coaching + conference + charity + cad + diabetes | 146 | 0.0171767 |
35 | thebritishbasketballallstars + nite + basketball + amen + stars + brewdog + seventeen + british + sweetie + rouge | 146 | 0.0171767 |
719 | respects + 16yr + cousin’s + marathon + gofundme + lost + abdirahman + funeral + olds + aspiring | 146 | 0.0171767 |
1042 | scrooge + numpties + messi + lilac + meow + truth + poor + nigga + 25c + 60b + alkada + alwaystimeforyourfans + bbcapprentice + brexit50p + crumbie + currencys + dutch578 + enticed + flameswhetstone + fuguring + gymsharkblackout + hunnit + lanvyor + lonsdales + motorsports + muhfucka + ock + popstarsinrhymingcars + progenitor + prometheus + rx7 + showpony + unforgettablegig + vxqe | 145 | 0.0170591 |
1154 | film + movie + incredibles + gomez + racist + jorja + trailer + celebsgodating + wars + star | 145 | 0.0170591 |
123 | honk + thankyou + moose + pig + fuck + xx + fab + buddy + feck + trucker | 145 | 0.0170591 |
1374 | aew + thelogansshow + assure + blows + spooky + avacados + bohoihoi + boirs + bowfoot + broods + cardus + magsaysay + messers + qell + remainhere + thow + unsuspected + whaleslovkia | 145 | 0.0170591 |
1472 | tickets + beer + store + beers + selling + antidote + pop + 0to100returns + handpicked + offering | 145 | 0.0170591 |
1606 | sleep + cough + sarahlucyjackson + wings + hours + night + weight + laid + hav + slept | 145 | 0.0170591 |
1610 | forward + kickers + event + 60forsixty + cub + drayton + prix + carols + 2018 + heaton | 145 | 0.0170591 |
327 | birthday + happy + holi + wishing + decode + mayday2019 + nephi + bandi + saffy + shor | 145 | 0.0170591 |
1055 | portman + mcs + offence + criminal + nunu + jimin + middle + east + evil + rebecca | 144 | 0.0169414 |
1084 | flammkuchen + kfc + meal + headlining + enjoyed + yummy + burger + puff + opera + peas | 144 | 0.0169414 |
1100 | audible + givenchy + albany + alfred + ark + bedford + solidarity + oil + intimate + trolley | 144 | 0.0169414 |
1392 | badness + unpopular + 11s + novelists + sid + bastile + burgler + charolsville + chestily + concord + flamely + horroranymovie + infared + kikstart + no45 + tollesbury + torchy + unrebuked + whitepool + whitsun | 144 | 0.0169414 |
1694 | palitoy + mathletics + negrit + transforming + edutainment + negritude + opal22 + musicians + wildfire + conference | 144 | 0.0169414 |
1717 | people + women + sexism + distasteful + comments + wives + guts + culture + religious + abudhabigp + annihilator + assaul + betters + bytes + colluded + dishonourable + etymology + forcedmarriage + fp3 + galv + gobbling + grandstandin + harpi + imwithkap + nevercorbyn + neverlabour + nore + oakshott + paraphrased + patchworkpals + poltiics + procuring + proudboys + replitians + spheres + statemet + swatika + ukpolitics + unfriend + unrepentant + venally + womad + wrongens | 144 | 0.0169414 |
317 | prayers + leonie + thinking + isla + xxx + alex + aww + sending + family + marley | 144 | 0.0169414 |
1146 | fag + lover + ha + favs + nope + 2000m + 311th + 90cm + ackee + bababoi + bacerz + bawtry + brighton’s + callaloo + charmaz + coolasyouget + coporate + delicatemusicvideo + fawns + garmin520 + groundedtheory + hairiness + justjuice + lergy + mathsconf1 + nikesh + roadhouse + transformationthursday + will.tell | 143 | 0.0168238 |
1197 | towel + president + brom + horn + deserves + nigga + bitch + checkup + fuckton + gnash + kizito + labourmp + lilos + mewrecker + mixie + murda + newlab + oversleeps + skzjshxhsh + theassaassinationtour + toped + up’d + veiws + yhedego | 143 | 0.0168238 |
1244 | helicopter + crashes + owner’s + crash + bbc + city + news + ma’moolaat + concern + missing | 143 | 0.0168238 |
128 | foodwaste + unitedkingdom + free + salad + baguette + salmon + smoked + italian + greek + dill | 143 | 0.0168238 |
1389 | rgmfeverxhimnuhnormal + 8lettersacoustic + fatzofficial + lorra + osiers + utopia + check + gymnastics + vue + unlock | 143 | 0.0168238 |
141 | serving + nightshifts + timepm + 07 + mornin + woah + hardworking + campus + 17 + danielle | 143 | 0.0168238 |
1418 | dog + badger + brandenburgconcertos + fiya + hudgens + marcalmond + miow + regestring + taxreturns + thevictim + wolvesfamily | 143 | 0.0168238 |
1533 | otd + team + conference + gardens + clu + evening + dec + ward + funky + huge | 143 | 0.0168238 |
1676 | told + deserted + receptionist + telly + psn + daenerys + write + mum + walked + flu | 143 | 0.0168238 |
1684 | library’s + kimberlin + rothschild + join + lease + recruiting + floor + event + friendl + redevelop | 143 | 0.0168238 |
634 | askally + play + excuse + fancy + uk + buy + wanna + plz + pics + xx | 143 | 0.0168238 |
806 | agree + suits + charege + dhhdhsjs + electi + magique + makehimgoaway + oxjin + s0ns + selasi + tweethandle + verire | 143 | 0.0168238 |
1134 | nt + kingdom + united + stadium + lcfc + jamaican + morningside + king + taiko + power | 142 | 0.0167061 |
20 | cheddar + mood + pickle + foodwaste + unitedkingdom + posh + baguette + pret + free + moody | 142 | 0.0167061 |
247 | competition + brilliant + chance + literally + ass + guys + allovasoden + ashdknsbwj + flatlined + guysksksks + lemek + pussoir + slicks + thingspeoplesaythatannoyme | 142 | 0.0167061 |
309 | awesome + worries + kev + cheers + nicola + downloaded + piece + brilliant + engagingly + medialens + ngiright + step’s | 142 | 0.0167061 |
1257 | niggaz + ate + cockeyed + complainin + famousonthebeach + interflora + lampoon + ninian + ovulating + rockpool + scubaturkey + shallowest + starbeck + takeonefortheteam + thwaiped | 141 | 0.0165885 |
1693 | movement4movement + prof + customers + colleagues + local + inactivity + fascinating + opportunities + teamproludic + bray + technicians | 141 | 0.0165885 |
184 | foodwaste + unitedkingdom + crayfish + ________________________________ + salads + online + sandwiches + free + baguettes + toasties | 141 | 0.0165885 |
1092 | nigga + bastards + landscapebandsorsongs + thearchers + queen + drummer + roar + fuckers + 3.50ko + affectations + ashworth4pm + bosso + bumba + dineo + edgeimundo + eygptian + groundhoppers + hooky + kangdan + kickback + mutton + ohmyfest + sashay + scarced + supercouple + surridge + vulgarian + yawande | 140 | 0.0164708 |
380 | shut + hell + nope + true + fuck + ye + yeah + shutup + satnavtotheclub + nah | 140 | 0.0164708 |
119 | dels + bud + donee + kidslovenature + contes + job + yee + duas + deal + fella | 139 | 0.0163532 |
1255 | flex + weird + throws + adoration + badeens + brendens + chaining + crownifthorns + dodgites + epilepsyweek + erh + fibbing + genderinequality + lowercases + lutherblissett + rectitude + renationalisation + yeses | 139 | 0.0163532 |
1475 | customer + service + sizes + refund + mins + parcel + items + stolen + postage + received | 139 | 0.0163532 |
1592 | ginzburg + baggins + drug + vicar + oil + perfume + eileen + addict + wa + bus | 139 | 0.0163532 |
1646 | leadership + discussion + development + communities + approaches + wip + humanists + tackling + loneliness + ahp + gamedev | 139 | 0.0163532 |
330 | league + arsenal + penalty + wenger + utd + 0 + season + concede + keeper + salah | 139 | 0.0163532 |
1029 | ep2 + wait + stoked + thexfiles + brexipocolypse + cfwm + cuthberts + experimentar + fuellerlife + greatplayers + guiz + helpfindhugo + icannotwait + inacative + personable + shezness + theband + thefuelstore + urlike + vou + whatapic + wize | 138 | 0.0162355 |
105 | true + dear + bto + nkng + trueb + truee + sigh + indeedy + omgg + github + occurring | 138 | 0.0162355 |
1070 | devil + tew + ovie + 80sbaby + andalou + angin + backingtheblues + ddb + defsoul + dryness + energyzozo + fraidsters + gnt + iamdbb + jaebom + moudly + peskycyclists + sexpositive + shangalang + wipped | 138 | 0.0162355 |
1341 | uni + wait + breakdowns + sleep + hours + slept + hallelujah + coursework + week + bed | 138 | 0.0162355 |
193 | mp + petition + theresa + sign + robinson + helen’s + voiceless + hon + tommy + sis | 138 | 0.0162355 |
367 | drinking + scrumtogether + joinjeff + pale + rbs + cash + xmastreats + prize + 2556161 + winners | 138 | 0.0162355 |
480 | goodnight + sweetdreamsandwetones + love + xxx + thankss + twitterverse + lovelies + youu + angel + babe | 138 | 0.0162355 |
797 | varda + watched + agnes + film + rhapsody + bohemian + batman + screw + films + netflix + score | 138 | 0.0162355 |
1437 | plottin + honest + critter + admittedly + bouncered + bulit + dija + eitherways + evrything + funereal + gettingridofthedefects + hatchbacks + hora + jakupobitch + l’il + muncie + toothed + toutous + watch1 + worlocks | 137 | 0.0161179 |
1633 | workshop + research + augustin + displaced + students + conference + artificialinteligence + machinelearning + session + botswana | 137 | 0.0161179 |
484 | vardy + mahrez + ball + goal + 0 + epl + shot + 1 + keeper + goals | 137 | 0.0161179 |
1507 | cortisol + pulses + chronically + acute + resulted + electronic + affects + trauma + journeys + measure | 136 | 0.0160002 |
1171 | rowell + afia + badprimeministers + bopp + chimdi + climtiy + cocanie + creed2 + envoiallen + fzce + iko + indited + jonnycore + kajol + loyiso + roxanne‘s + rukh + scarmongering + silvia + threshing + trapp | 135 | 0.0158826 |
1191 | hoosk + doms + 0w0 + abbott’s + abought + benevolence + bulldozed + gnarled + leuvren + loeb + manboob + mockingit + peppa’s + scillies + stillgame | 135 | 0.0158826 |
160 | bbcradioleicester + lcfc + 0 + leibou + leiswa + diabate + leishu + leistk + iheanacho + city | 135 | 0.0158826 |
1728 | débardeurs + pédés + ndigbo + jews + people + arresting + police + griezmann + countries + translation | 135 | 0.0158826 |
439 | moose + pig + complexion + dance + kudos + flawless + hellodecember + tuesday + true + appreciatethesimplethings + bedaring + belimitless + everylevel + everymoment + fridayist + happinessisfoundinsimplethings + hippywarrior + justkillingit + nolimits + openroad + rememberingthoseyearswearingpointshoes + secondincome + sheis + simplethings + takerisks + tinyhappythings + vishal + walklikeawarrior + workfromhome + youdontneedtobelogical + yoursoulwillspeak + yourstrength | 135 | 0.0158826 |
658 | moneym + million + lcfc + city + utd + mahrez + united + maguire + 60m + southampton | 135 | 0.0158826 |
1611 | bloggeruk + bromyard + wonderful + childrensmentalhealthweek + families + inspiring + team + training + companion + morty | 134 | 0.0157649 |
399 | hows + evenin + afternoon + hey + tuk + alrite + blees + bhai + dearest + sister | 134 | 0.0157649 |
532 | fuck + cmon + fucked + fair + brill + play + bout + bro + botoxed + cag + cronkite + fyckin + gengey + kerty + stayawayfromme + suasage | 134 | 0.0157649 |
662 | cold + snow + goodnight + hot + coldest + temperature + eyes + sun + burning + jon | 134 | 0.0157649 |
1149 | hustle + bliss + begins + ignorance + parrot + thread + animaljobs + aquasafari + birkinish + blinkin + catandmouse + cobyin + dambreach + ensues + familyreconciliationsjeremykyle + flubber + frug + gamston + hahahaah + jamaat + maan + mamual + penniless + riverdales | 133 | 0.0156473 |
1696 | originalsoundz + support + dsat + dubs + yoga + cleanse + event + sileby + exciting + proceeds | 133 | 0.0156473 |
32 | prize + geordiemarv + autumnequinox + lou + inspire + price + cricket + fantastic + mum + awesome | 133 | 0.0156473 |
55 | fab + goodz + xz + shading + steering + cx + melting + dancingonice + goodies + mugs | 133 | 0.0156473 |
1219 | jiggle + sick + manure + convinced + belief + 10er + instagramdowm + softbot + thwomp + makes | 132 | 0.0155296 |
1351 | etsy + listing + whey + lgbt + invites + activism + thu + gentlest + found + education | 132 | 0.0155296 |
1355 | watched + puff + soft + awight + blindsi + bromides + canrana + castlerock + doggedly + evrrytime + glassiyan + hirai + lawsonhisside + shaak + shownwas + studentlyf + teammaura + unsexy | 132 | 0.0155296 |
1360 | laughing + people + loud + laughed + humans + immigrant + endgame + dumb + 320p + 6seasonsandamovie + 77jubilee + contractor’s + disinterest + gnomeo + libra’s + llow + loud.well + stooped + tbvfh + trishapaytas + unfashionably | 132 | 0.0155296 |
1489 | kingdom + united + leicestershire + deephouse + newmusicmonday + nitinkumar + soulfulhousemusic + soulfulhousesession + soulfulhousetunes + museum | 132 | 0.0155296 |
1701 | moms + kill + xml + tend + disorders + excuse + arsehole + heard + ˈtɛm + 1909 + aldub + beeing + compartmentalise + completeled + defer + esta + f6 + giveyourselfabreak + hinterland + m.adams + mian + noneth + petulance + piont + scurril + susu + susus + tempts + trəs + typi + ulti + vicarious + xhtml2 + youself | 132 | 0.0155296 |
21 | hotline + samaritans + night + xx + paste + someo + suicide + cheddar + pickle + baguette | 132 | 0.0155296 |
47 | prize + fab + deliciouslydifferent + wash + boyfriend + car + brilliant | 132 | 0.0155296 |
602 | mornin + rain + ding + brolly + rainin + rattling + weathers + booked + wet + drip | 132 | 0.0155296 |
970 | songs + racist + nukes + trash + northern + pulls + music + atmospherics + critisism + feminazis + mandatary + mansions + marority + nationalsmileday + nezu + pulip + reclaiming + rockson + saxobeat + vcountry | 132 | 0.0155296 |
1187 | officer + dollar + stabby + exterminate + ausopen2018 + beatmetoit + bkchatreunion + drumstickgate + floatation + kartik + killingeve2 + liesofleavingneverland + lunartics + moonies + morghen + moyda + niggs + nilesh’s + overseer + radice + sake’s + showingmyage + surelythiscouldneverhappen | 131 | 0.0154120 |
1675 | infections + rats + mum + books + brother’s + lonely + sensation + ago + history + blogging | 131 | 0.0154120 |
391 | congratulations + thumbs + rt + congrats + fabulous + mornin + sunday + happy + absolutely + win | 131 | 0.0154120 |
932 | snow + cheese + spaghetti + peri + lettuce + doom + watched + beautiful + songs + assigment + chancery + chaplin’s + crumbly + dredging + gripp + gudrun + horror’s + husk + kabob + psyllium + rehaul + s3 + slowcookerstuff + themummy + thicko’s + timefor + tomcruise | 131 | 0.0154120 |
254 | thankyou + gripping + lifting + spy + rocket + pocket + holy + eyes + bernies + bizz + carayol + flujab + npqh + phily + rammoed + righteo + spotkicks | 130 | 0.0152943 |
34 | snooker + eighteen + thousand + shoot + photos | 130 | 0.0152943 |
394 | goodnight + night + xx + xxx + dreams + sleep + sweet + nighty + n’night + wishing | 130 | 0.0152943 |
962 | netflix + film + raped + riverdale + episode + 0130 + 0230 + edginess + escapetoathena + ishmael + kenya’s + leftenant + lootenant + mashin + me.r.o + migingo + montesquieus + mumbo + photocopied + rogermoore + slr’s + statement.have + storks + tgsalearningisfun + treks + uganda’s + way.this + win.they | 130 | 0.0152943 |
1101 | amanhecer + anoitecer + feedback + ___________ + teething + ao + pj’s + customers + cancer + ants | 129 | 0.0151767 |
1210 | nickleodeon + annoying + shocking + clout + heard + people + 104bpm + alcott + assia + chegwin + cuntish + disdaining + dssawrehjffssd + fik57 + horribles + klara + lys + mixrace + obeyed + suuwhooped + thebritawards | 129 | 0.0151767 |
1338 | sick + feel + throat + ill + hours + hungover + killing + 30g + bonbon + boullion + constantlylivingoutofasuitcase + fiveg + hoildays + invisableillness + queazy + reeding + sevenam + tann + tmrw’s | 129 | 0.0151767 |
1466 | stadium + rgmfeverxhimnuhnormal + unitingtwoworlds + welford + drafted + charity + km + national + feat + tb | 129 | 0.0151767 |
1513 | neighbourhood + cushing’s + pituitary + edt + helpful + mental + inspiring + health + disease + committee | 129 | 0.0151767 |
172 | makemyfriday + missguided + morning + calamari + himilayan + mongolian + perfecting + styled + 9,0 + prawn | 129 | 0.0151767 |
860 | novelist + shoes + ima + accentchallenge + desd + gutho + haemostasis + oddaa + oluwa + scosmr + sunlit + thatwhitefriend | 129 | 0.0151767 |
1058 | album + banger + song + looku + songs + tiller + bangers + track + bryson + days | 128 | 0.0150590 |
1350 | optic + bus + patients + patrol + risk + timetable + lecturer + bipolar + park + bible | 128 | 0.0150590 |
1461 | prizes + collection + yum + win + menu + free + fiveal + recipe + christmas + 8pm | 128 | 0.0150590 |
224 | waits + mutes + insert + problematic + not + casquette + improver + nimh + saod + sickdeep + splurts + squeaking + tters + twittersh + vassels + wryly | 128 | 0.0150590 |
244 | get_repost + repost + asian_celebrations_bridal_show + kanizali + nims + jewellery + boutique + exhibiting + morningside + arena | 128 | 0.0150590 |
403 | undertaker + dhanaan + euck + hereditarymovie + hottestdayonrecord + jungshook + malaa + mariannenetflix + pemfest + wwessd | 128 | 0.0150590 |
436 | bless + returns + god + xx + allah + happy + blessing + aw + bro + 24hoursae + 24hrsae + britishidol + emiliano + fairwell + swetu + डी | 128 | 0.0150590 |
1298 | petition + eu + ensure + customs + sign + share + leaves + bbc + un’s + u.k | 127 | 0.0149414 |
1342 | tired + gym + sleep + till + shisha + ready + shave + amsrtists + dumbells + espressoyourself + hotstuff + hurried + pattering | 127 | 0.0149414 |
1369 | guff + wrong + spelt + dakka + disintegrate + gyaan + hahahhahaha + palatial + pey + prattle + racistly + shhsjwhxhwhxsjb + skully + skyped + sleephygiene + spreadingpower + twere + voyager2 + wispy + wlsmdwnxjwhhs | 127 | 0.0149414 |
1431 | believes + bdjfjfkfjf + keelan + moshh + muhfuckas + proffitt + punch’s + sandieago + seaborneferries + maddi + plots + skeptical + snitchin + tagmovie + vibrators | 127 | 0.0149414 |
1554 | aaarsenal + possibility + stem + expectancy + clinicians + mats + medicine + buttons + devices + valproate | 127 | 0.0149414 |
1656 | students + ___________________________________ + radnorfizz + fortitude + teambrilliant + fantastic + scramble + caddyshackers + sewing + check | 127 | 0.0149414 |
260 | playwhatami + gdagarwal + ganga + detailed + supported + mother + hey + film + heyy + proj + projec | 127 | 0.0149414 |
368 | hä + tictok + demarcus + beef + robyn + hus + florida + arsh + bitrude + chocofeather + eposed + giddem + goodpie + goujons + grany + innocently + juntao + nakeeb + namiko + narrtwess + néze + officechat + shhurupp + sidwell + stinkin + videocredit + zabee | 127 | 0.0149414 |
336 | mammy + ah + tae + ma + heer + onna + mebbe + um + wee + hee | 126 | 0.0148237 |
566 | congratulations + safe + congrats + journey + trip + m’lady + flight + home + cleanoenergy + dermott + oky + welcometotheworld | 126 | 0.0148237 |
654 | swim + briony’s + caadbawait + come.the + joystick + kinkys + littld + moterway + mygoalie + overacted + peeps.tigersfamily + shoppedout | 126 | 0.0148237 |
79 | 12pm + indo + tawa + hire + grill + 4pm + menu + restaurant + venue + chinese | 126 | 0.0148237 |
866 | reasons + watched + thirteen + swati + unbreakable + police + binged + episodes + translate + african | 126 | 0.0148237 |
1440 | ahahha + bookstore + evelina + frebyoull + jedgarhoover + kasbah + know.has + lolx + northernpoorhouse + trumpprotests + ungood + wankwise + whattwittermeanstome | 125 | 0.0147061 |
295 | xx + xxx + babe + hun + jude + lovely + roar + hunny + cootie + lovelybx + patootie + shantell + zeibun + zlegro | 125 | 0.0147061 |
469 | hear + loss + blees + xx + bata + compaionate + govenment + jaspreet + mvelase + ripuncleden | 125 | 0.0147061 |
1553 | byte + protestant + mets + service + pharma + policy + controlled + investigate + walk + similar | 124 | 0.0145884 |
18 | foodwaste + unitedkingdom + pret + bang + chicken + wrap + toastie + mustard + cracker + free | 124 | 0.0145884 |
517 | sleep + tired + sleeping + hours + knackered + uni + pattern + crappy + nights + naps | 124 | 0.0145884 |
52 | prize + ek + treat + chance + super + amazing + commented + won + losange + content | 124 | 0.0145884 |
759 | indianajones + french + bio + kindess + larousse + rickenbacker + rosegoldgang + webbelliscup + stunts + faves | 124 | 0.0145884 |
1063 | plunges + pip + gcseresultsday2019 + dwp + radio + golden + adinktober + adox + appearanc + benjudd + boccua + clamity + comited + consented + createspace + dico’ya + dressings + énergie + englandvssweden + fictio + fursuit + gatepost + gaylestorm + gothsloth + gretna + kdp + locatio + londons + longestfootballgame + melaniemartinez + netherhall + neveraskanangrywoman + oustudents + pacify + pennydale + planetearth2 + pleather + poorlymum + progres + reasearch + rollz + sailboat + sandman + sexandthecity + snta + vardyquake + weatherwatchers | 123 | 0.0144708 |
1420 | ewallet + saraha + explosions + shiny + dredd + drivings + itsstillgottimethough + larvitar + umpteen + unsymmetrical + vagan | 123 | 0.0144708 |
460 | dm’s + waiting + check + dude + patiently + ya + stretty + bud + surprise + spare | 123 | 0.0144708 |
523 | luck + congratulations + today.go + odi + congrats + chas + deanna + sardarji + satsriakal + shakila | 123 | 0.0144708 |
579 | plotting + banger + cushions + tempting + cream + asdfghjkl + banksyofpoem + brunetteorblonde + candlelit + finesseforeva + glook + handwritten + hoots + markjones + natou’s + prada’s + rdr’s + relaxin + seavers + shamakhiara + shrieks + sidro + snuggs + twatsport + whitecat | 123 | 0.0144708 |
59 | 30daysofshadow + prompts + prompt + asktwice + _________________ + swipe + dreams + challenge + sweet + night | 123 | 0.0144708 |
622 | merkel + pinkipa + yami + condescending + globalists + blanc + eu + bitch + jeremykyle + save | 123 | 0.0144708 |
1423 | related + attracted + boringly + jsksksks + pakimanlikedan + alexis7 + despising + tagmovie + tweet + ahn + complemented + despised + discovers + gravestone + gujrati | 122 | 0.0143531 |
304 | morning + sexy + horny + xx + babe + um + y’all + gorgeous + britain + tasty | 122 | 0.0143531 |
487 | supportandshare + kindly + committee’s + vital + uf + wowowow + disasters + exercise + mozambique + malawi | 122 | 0.0143531 |
877 | tunnel + george’s + ir + enjoyed + walk + gig + mile + busy + inspiration + gb | 122 | 0.0143531 |
882 | nestle + crushed + factory + hundreds + jordanova + ludmilla + quirks + prof + engines + chocolat | 122 | 0.0143531 |
1030 | wonderful + reflector + sheepie + warfury + yesu + yupp + dietitian + dovi + halfpintfull + instilled + kaa + minerals | 121 | 0.0142355 |
1044 | af + den + suck + classy + scots + ahl + bumfriend + catchit + deek + fker + forkie + hae + imovie + inhad + mebee + nestor + real’n’proper + salaah + scrievin + thawto + toffeefilled + watermelown + waveh + woff + wuo | 121 | 0.0142355 |
1254 | kno + frenchexit + mees + passy + mighty + chlorine + skis + syfy + taffy + dotun + hope’s + trotters | 121 | 0.0142355 |
1426 | relate + hahahahahahahahaha + clutch + dropped + alcoholism + angelnumbers + hammerhead + keris + larxene + marluxia + pcw + photoshops + profesh + satalite + spazzing + starker + turds | 121 | 0.0142355 |
1588 | session + vr + stadium + jellyfish + tonight’s + u16 + event + recruitment + king + awards | 121 | 0.0142355 |
1647 | sauropods + cetiosaurus + myf + sffpit + peasant + bron’s + mg + repping + dinosaur + iplayer | 121 | 0.0142355 |
1660 | lent2019 + morningprayer + rhaegal + determination + murakami + boast + energy + weirder + lord + flesh | 121 | 0.0142355 |
313 | babe + um + darling + gorgeous + honey + horny + anytime + sexy + mm + bum | 121 | 0.0142355 |
425 | utct + 12xmasdays + competitions + helpingpeopleinneed + reema + heart + 5words + allnatural + bathbomb + fakespear + freeproducts + instaas + ipromiseyou_wannaone + mrlindo + ocean8 + one2xmasdays + planetofferssnaps + prideinlove + queendom + ronniekray + shakeit + unno + wannaoneipucomeback + 시 + 약속해요 + 워너원과 | 121 | 0.0142355 |
572 | birthday + happy + hope + cake + cobbles + xxx + xx + day + bday + belated | 121 | 0.0142355 |
83 | links + count + adoption + protests + chance + included + forced + aiden + click + vie | 121 | 0.0142355 |
110 | soverignty + concerns + immigration + evidence + brexit + congratulations + tattoo + tattooflash + traditionaltattoo + prize | 120 | 0.0141178 |
120 | brill + weekend + lovely + dougie + steve + ken + antony + si + lynn + corah + rowells | 120 | 0.0141178 |
1295 | portugal + woop + hungry + eat + alcoholic + booty + gym + struggles + spoon + cream | 120 | 0.0141178 |
1599 | ulwfc + 1sts + awards + homeed + primaryschool + yalc + competing + oliversean + celebrating + 2nds + enjoythegame | 120 | 0.0141178 |
518 | awesome + competition + 33a + hubbell + lifegoal + lubbell + practicemakesperfect + tweetheart + wondergul + wynonna + yolanyard | 120 | 0.0141178 |
626 | brexit + ass + laughing + deal + kelsey + britain + eureka + igbo + vote + accent | 120 | 0.0141178 |
749 | mood + lipgloss + yhh + balancelife + beppy + bestpizza + fahad + fever.x + killah + lifebalance + lurggy + muwallad | 120 | 0.0141178 |
813 | sins + delete + beautiful + alchohol + bohill + daiy + eyelure + mountclothes + olbus + 2p’s + misquoted + newhaven + prude + sativex + serafina | 120 | 0.0141178 |
964 | stressed + nervous + cba + followingourdream + movingtowhitby + skimpy + sleighgiveaway + ultram + wotlessness + 3,4 + aaand + gatts + omdz + sores | 120 | 0.0141178 |
1406 | socials + sticker + mad + ignoring + butwhy + chics + flim + iamatopfan + jefferey + rwteet + sammys + thankgodsheisnotontwitter + whenimoutofmymind + wnba | 119 | 0.0140002 |
1416 | wrong + arsed + birdhouse + denist + feudal + longlost + primarni + sherrif + srry + urfjfgfgnitfghghd | 119 | 0.0140002 |
1453 | sksksks + bling + sksksk + wears + similara + youtrack + yeah + jilted + safeguards + sksksksksk + transports | 119 | 0.0140002 |
1555 | arguing + viewpoint + decisions + people + cdj’s + conceptualised + delici + dialectical + disenfranchises + dispassionate + dissemble + ēg + excludi + hesaltine + housr + invalu + jugak + l.o.v.excuse + loreto + metaspaces + neutrality + obvi + ostensibly + portentous + stalinist + technicalities + thing.state + uppe + videoes | 119 | 0.0140002 |
1584 | celine + 1970 + hundredths + mop + anytime + recently + 11yrs + apaz + apologie + cellos + dions + driff + e2 + ferguso + foundatio + freaki + headbanging + headmistress + hobbie + immersed + itv3 + kiersten + lucife + marigold + millionaireslatte + oldes + or + pannie + recluse + s.a.d + smashbox + sound + stac + stonecoldheart + twothree + unlces + vaugly + verte + writhing | 119 | 0.0140002 |
1652 | bbcsports + premiereleague + bbcsport + presentations + outlander + arsenalfc + support + kilted + progr + mentoring + notting | 119 | 0.0140002 |
447 | fire + riotx + sweetnaija + allout + ojuelegba + lit + banger + fielding + ep + riot | 119 | 0.0140002 |
599 | masha’allah + mashaallah + airpods + aced + azadimubarak + breakfastexecutive + catlovers + dogsdaytoo + eatcontinental + finepeoplefromsierraleone + g66666666 + happymothersday2018 + hdbeauty + leger + loungemarriot + mahsallah + myheartismush + rbahia1991 + sieved + waynak | 119 | 0.0140002 |
718 | bleach + drink + love + 50g + cantu + cheesegate + chewit + crowding + laterc + midras + mybrotherskeeper + spech | 119 | 0.0140002 |
764 | jumps + areoplane + dahlin + enjoyitall + evears + goethe + hepicopter + hermano + jokanovicin + palla + sugared + superclásico | 119 | 0.0140002 |
77 | image + day + john + soulages + jean + pierre + james + abdelkhader + adeney + adolph + alda + aleen + aleksandr + alenza + anatsui + anedd + ansingh + archipenko + arge + arshile + auguste + barriball + basquiat + bassous + beahkov + billmark + boghossian + bonheur + bracht + britton + brofett + brzesk + bunce + chakrabhand + coppin + cotman + danielsen + deyneka + dunkley + effat + ephrem + eugen + eugenio + fischl + fontana + gaudier + gayane + gensou + girtin + goodloe + gorky + greavette + hadjisoteriou + hammershoi + heungsou + hoang + houamel + hye + ikeda + j.m.w + jakob + katz + khachaturian + kitaj + laidlay + latilla + llia + lorgio + lucio + luostarinen + mammen + mantegna + mantz + masuo + menzel + menzio + monamy + mousseau + nagy + nashashibi + nerio + okuda + onditi + osborn + permeke + posayakrit + r.b + raemaekers + rankle + raveel + rawsthorne + rego + rubens + skunder + sok + soldon + stael + stannard + steuart + tapies + tich + ugolilo + uhlig + venny + vilhelm + wishart + wyndham + xanthos + yacouba + zumian | 119 | 0.0140002 |
885 | awesome + yuh + 3grams + bootie + emblazoned + lickeble + marsexit + minipip + shawty’s + stearing | 119 | 0.0140002 |
1118 | drog + flyeaglesfly + lookslikeacarthorsebodyofashirehorse + mwad + skink + supplemental + thatwasalreadyinyoursearchhistoryhonest + theribmam + thwadi + wondabar | 118 | 0.0138825 |
1284 | shoop + horny + week + chest + tiring + tight + tired + 20t + firstdrivinglesson + hanssen + poundo + shooping + swaecation + tireds + wipping | 118 | 0.0138825 |
1290 | miss + liking + strongly + buss + content + insta + watched + 40ft + apchat + dougal + hahahh + inferential + joshuavparker + kany + reuploaded + rudeboij + snapchat’s + trickshotting | 118 | 0.0138825 |
1558 | mistake + home + generated + read + unwell + books + bought + spelling + morning + grammar | 118 | 0.0138825 |
168 | weekend + lovely + bud + wonderful + nads + hny + pat + rob + rich | 118 | 0.0138825 |
1716 | religion + lefox + hating + properganda + feminists + sexuality + race + people + slag + country | 118 | 0.0138825 |
177 | enormous + merry + advent + luck + talk + christmas + dust + jolly + magic + guys | 118 | 0.0138825 |
387 | posted + kingdom + aces + united + video + upcoming + colleagues + conference + international + globe | 118 | 0.0138825 |
529 | hundred + billion + sixty + million + thousand + forty + call + thirty + ninety + goose | 118 | 0.0138825 |
597 | thurmaston + gt + laughterloft + painting + sneaky + settings + variety + 20one5 + amerikaz + athreefoldcordnoteasilybroken + channelislands + earthing + ehenrral + fabambassador + facebooks + flitting + funksplosion + gymbeast + hansumbasturts + japanexpothailand2020 + jerseyci + lbdc + lepus + leveret + lievre + lifewiththreekids + mctell + mixedmedia + ofr + preclude + presentbthe + rainbocorns + seascapes + tahlia + thelateishshow + timeforus + uolcvs + wildboy | 118 | 0.0138825 |
61 | railway + lei + letsride + letsrideleicester + demontfortuniversity + station + dmuleicester + panoramic + leicestercity + demonfm | 118 | 0.0138825 |
977 | hassle + caused + pain + emotional + bravest + feel + destination + sand + psalms + san | 118 | 0.0138825 |
1032 | glasgow + inspirational + confidence + apr + driveway + leicinnovation + blog + diana + building + rehearsals | 117 | 0.0137649 |
116 | xxx + lin + wehearyou + weseeyou + cxx + bronte + lj + xx + austen + haw | 117 | 0.0137649 |
1303 | traffic + road + petition + blocking + lane + junction + bbc + domain + belgrave + hinckley | 117 | 0.0137649 |
1682 | noodly + base + students + uhl + adler + studies + meeting + donation + session + honorary | 117 | 0.0137649 |
1695 | cereb + effectivecontent + socialmediamanager + nowhiring + whitexmasshow + unrivalled + event + developing + hosted + project | 117 | 0.0137649 |
202 | prize + mentalhealthishealth + highland + illness + romance + prizes + scotch + secrets + rocks + perfect | 117 | 0.0137649 |
228 | grant + pop + dm + disappointment + caused + deets + sorted + tania + delay + customer | 117 | 0.0137649 |
306 | wait + pause + aguer + tirednhsstaff + psh + huh + samatta + backflip + siding + aew + pencho | 117 | 0.0137649 |
1202 | jaime + lannister + naruto + weapon + airbarkley + arnau + couldve + eldervair + gengis + mjn + omotso + spinalls + teppei + teraweeh + trashiana + yajirobe | 116 | 0.0136473 |
404 | morning + fingertoescrossed + rtweeted + amazeballs + congratulations + beery + eddie + comrade + jered + ep | 116 | 0.0136473 |
81 | foodwaste + unitedkingdom + silverarcade + classic + superclub + pret + ouch + restoration + arcade + free | 116 | 0.0136473 |
845 | allium + roof + vanish + middle + england + 1.01 + 11yr + consu + contect + culldungsroman + fab2019 + futurejobs + pantone + polytechnic + snapcha + swebsite + upt + yourholidayisover | 116 | 0.0136473 |
1088 | regret + billions + 12x12 + aerosmith’s + attitutudes + blubisland + gruppo + kumbyah + mariokarttour + maxinepeake + oooggh + pct + resubscribe + solars + strummer + truepotential + vesuvius + wooping | 115 | 0.0135296 |
1096 | holla + dough + cbbann + fripay + ipayroadtax + johnstonpress + moonbase + murdeous + secretaryofstate + stow + turtley + westenra + yorkshirepost | 115 | 0.0135296 |
1452 | puregym + offer + fee + percent + joining + store + deals + sale + savehalf + membership | 115 | 0.0135296 |
418 | love + noice + fosco + namers + loving + chef + thefootball + tans + thementalist + steiner | 115 | 0.0135296 |
637 | laughing + loud + fuck + fives + gameofthrones + 1800th + djwkdnskskd + exchequer + hyun + isand + mainz + per’s + rasengan | 115 | 0.0135296 |
14 | competition + dupattas + blouses + skirts + _________________________ + bang + pret + foodwaste + unitedkingdom + mix | 114 | 0.0134120 |
1401 | fizzy + term + energy + goals + healthy + alcohol + months + hardest + cold + fitness | 114 | 0.0134120 |
190 | soverignty + mornin + immigration + concerns + brexit + fantastic + controls + borders + friday + tories | 114 | 0.0134120 |
222 | fitty + darshan + trust + hell + monkey + cheeky + recycl + sells + bloody + davis | 114 | 0.0134120 |
242 | zip + apply + click + mornin + address + engineer + hiring + england + manufacturing + job | 114 | 0.0134120 |
31 | endomondo + endorphins + hundredths + null + miles + finished + running + 1h + km + 46m | 114 | 0.0134120 |
1261 | niggas + y’all + chyna + hunted + barstols + cahil + hisshirt + iheartraves + inthe + nahjhghgh + narns + odili + reassures + unfairness + unrecovered + wrips | 113 | 0.0132943 |
1445 | b1 + vivasurvivor + goldenthread + jaffer + wasim + personalisation + bics19 + lbf2019 + batsman + hr | 113 | 0.0132943 |
1456 | breixt + satan + bigwhite + bordersblake + complainant + congi + jsksksk + malignantseven + osmonds + realisations + terrarium | 113 | 0.0132943 |
1575 | parking + minister + syston + ifs + phone + moved + dealer + toaster + ticket + booked | 113 | 0.0132943 |
2 | snooker + mmandmp_pro + shoot + photos + eighteen + thousand | 113 | 0.0132943 |
420 | babe + thankyou + love + birthday + happy + xxx + 8yearsofscienceandfaith + homelands + nindlebug + hooch + siss | 113 | 0.0132943 |
64 | yikes + bodyconfidence + bodypositive + desperately + sleepy + theknickerfairy + click + cress + lost + yuck | 113 | 0.0132943 |
801 | picoftheday + wall + wallpaper + mural + bespoke + art + style + photo + video + chainesdancecompany | 113 | 0.0132943 |
830 | stink + sleep + nap + rice + fuckery + kinda + 10.40am + bihh + bobcat + bodywarmer + fluoride + maray + muskets + noseyseason | 113 | 0.0132943 |
938 | sis + energy + collect + abam + attactive + boastfully + consults + manis + meins + numismatists + rollover + shano + testittuesday + turmbun + uncircumcised | 113 | 0.0132943 |
97 | xx + adverse + experiences + papers + childhood + morning + ace + international + conference + xxx | 113 | 0.0132943 |
1046 | taller + memes + 96l’s + ahain + besmircher + carparks + defendant + dolezal + grapefruits + karamizov + kokkaro + malory + miming + neoteric + rhimes + s3eed + sameera + stairwells + tanvi + winnerforme + wyipippo | 112 | 0.0131767 |
140 | zerowaste + unitedkingdom + free + persperant + hangers + conditioner + shampoo + spray + bubblewraps + matress | 112 | 0.0131767 |
652 | verry + wray + henny + morty + krept + mf + gunna + doom + slaps + jd | 112 | 0.0131767 |
751 | cashslave + paypig + paypigs + findom + cashmaster + cashpig + cashfag + humanatm + cashcow + finsub | 112 | 0.0131767 |
951 | service + 20ft + hundred + phone + brands + hundredths + ladders + micro + hey + sheffield | 112 | 0.0131767 |
1014 | rogerfederer + salute + bukem + chrissymus + craigdavid + diffident + flamingle + humbleone + lifelounge + ltj + m2 + mysterybox + nixtape + oosh + sherman + skulduggery + thatvoice + weg2018 + whataguy + woojins | 111 | 0.0130590 |
1272 | sanofi + valproate + evidence + ipad + p46 + signed + alton + mhra + speed + towers | 111 | 0.0130590 |
1279 | vexed + feeling + feel + heaping + masclunist + basis + worst + comfort + dead + tongue | 111 | 0.0130590 |
1421 | enjoyed + expect + people + blabbed + chutzpah + fantasised + mediacentr0 + niam + goosebumps + gender | 111 | 0.0130590 |
1605 | dsusummerball + brides + arrival + awards + award + winner + britishbasketball + finalists + riders + 2018 | 111 | 0.0130590 |
1622 | conference + extension + whitney + houston + launch + students + discuss + charnwood + dual + aiming + mixing | 111 | 0.0130590 |
281 | question + questions + answer + stupid + rhetorical + answering + askip + evading + hembrassing + interesing + noanswers + qohoo + questionsoftheday | 111 | 0.0130590 |
319 | sweetie + gorgeous + stunning + pic + wow + pics + tormentor + torment + grandad’s + discharged | 111 | 0.0130590 |
325 | win + rocknroll + twitter + bartoli + blackdog + land.thats + lestar + penitentiary + sojealous + soyas + vitesse + wideawakeclub | 111 | 0.0130590 |
359 | weekend + lovely + brill + wonderful + sherlock + morning + andrew + christofer + bud + shit | 111 | 0.0130590 |
386 | retweet + sharing + nims + boutique + rt + caring + xx + reminding + advice + roomies | 111 | 0.0130590 |
778 | gtworld + gift + rays + clouds + activecampaign + bashy + crashied + definelty + fluffier + g’up + kyalami + mondos + nyonya + soons + whatthefluffchallenge + whenyouwakeupand | 111 | 0.0130590 |
148 | earlycrew + mornin + friday + locals + round + hump + chilly + happyfridayeve + mardyriyad + nive + walkabouts | 110 | 0.0129414 |
1530 | xie + hath + variation + wonderful + parkrun + choir + ho + enjoyed + sun + piano | 110 | 0.0129414 |
1557 | departing + camp + february + tickets + counting + kickoff + 2018 + ko + book + leicestercity | 110 | 0.0129414 |
1669 | event + off’s + unsigned + sport + 2018 + sdg + relief + lsa + pm + exhibitions | 110 | 0.0129414 |
1697 | claus + personally + churchianity + keels + opinion + danish + kinky + christianity + rivalry + stupid | 110 | 0.0129414 |
43 | weekend + lovely + brill + insid + squishy + wetter + ian + ben + repost + ash | 110 | 0.0129414 |
511 | awesome + sounds + fab + picture + handdrawings + impresive + primadonnas + stonkingly + overqualified + brilliant | 110 | 0.0129414 |
792 | disgusting + animals + slapping + girls + sick + act + cah + fuck + 94.26 + alanis + btsxlotte + crac + diferent + gorimapa + kecah + maddie’s + mindfullness + morissette’s + narsstty + nimeosha + survivalist + unislamic + vyombo + wispies | 110 | 0.0129414 |
805 | jeremykyle + scum + bastard + twat + puel + breathing + footy + fixthisshit + game7 + joewicksthebodycoach + johnsnow + malfeasance + papoos’s + papooses + plinkey + poaching + robporter + roughedd + tigercubs + unseat + yoghurty | 110 | 0.0129414 |
956 | song + mv + gameofthrones + island + listening + rap + jamming + listened + history + language | 110 | 0.0129414 |
1013 | delboy + wiggle + yay + leopard + exciting + whoop + ackn + actfast + bayahlupha + bovary + camlephat + corrine’s + edhuddle + fastscan + isee + jeanna + karenina + kenyon + lavo + mmmp4 + oldcorn + rebecka + sath + textbooks + thisgirlneedsnewclothes | 109 | 0.0128237 |
1433 | honest + tables + incorrect + chapatti + gaabs + legg + 21c + duarte + mella + dinger + fulani + immobile + lampards + spams + waw | 109 | 0.0128237 |
1496 | komatiite + quest + chastity + amiga + sewn + shoved + ars + panties + sissy + shelf | 109 | 0.0128237 |
1621 | sin + nonviolence + sv + medic + nickname + 50 + horse + react + relationship + belief | 109 | 0.0128237 |
347 | pride + leicesterpride + lcfc + fvh2019 + leicry + rainbow + lgbt + flag + chair + tune | 109 | 0.0128237 |
758 | win + game + shirley + uno + henderson + india + worse + bollix + burghley + d.silva + danial + germanygp + gokhan + inler + legolas + ljunberg + reekz + strictlyblackpool | 109 | 0.0128237 |
1381 | police + road + missing + burglary + mumbei + appealing + traffic + irreversible + petitio + reassessments | 108 | 0.0127061 |
156 | impossible + god + nims + boutique + plz + gifts + retweet + delivery + gift + perfect | 108 | 0.0127061 |
588 | garlfrend + teach + idiya + chilwell + fuck + ben + excuse + absolutely + areno + enchanting + h.u.g.excuse + nees | 108 | 0.0127061 |
887 | luck + wellocksadvent + congratulations + wherehistorybegins + congrats + proud + xx + bb + beth + baith + dontleavepls + glocalization + jack_mrengland + keanan + nitesh + scottishteacheroftheyear + sharethehobbylove + syuhrah’s + winnersanyway | 108 | 0.0127061 |
134 | god + harrumph + life + viva + appreciated + faith + r’n’rr + rok’n’roll + comment + spin | 107 | 0.0125884 |
1709 | assumi + launch + kickstarter + meeting + welcoming + scholarship + winner + students + showers + cohort | 107 | 0.0125884 |
1737 | labour + brexit + referendum + eu + conservative + iran + party + deal + tory + theresa | 107 | 0.0125884 |
277 | queer + fashanu + hoison + innersoles + mickelson + sidas + दिल + से + venda + hella | 107 | 0.0125884 |
363 | treacle + sukki + pebbles + chilled + xxx + blackcat + chilling + nylah + xx + cute | 107 | 0.0125884 |
65 | yule + offline + click + view + break + christmas + days + rew + lock + calpe | 107 | 0.0125884 |
748 | procession + awards + congratulations + vaisakhi + winning + sikh + krishna + ecb + award + mandir | 107 | 0.0125884 |
921 | digestives + rewatched + yum + bagainsciously + bbvalentines + dubh + foundobjectpuppetry + laidley + longneededbreak + panc + saúde + toolstuesday + venom2 + vinho + zeo | 107 | 0.0125884 |
1449 | hoax + bobriskys + fuxkwit + hiddlestan + jbags + microbial + overhauled + renters + baso + debunked + hiddles + leaker + marinating + mway + sahara + scholarly + topple + youts | 106 | 0.0124708 |
200 | askadamsaleh + silk + embroidered + bags + luxurious + dupattas + beautiful + clutch + luxury + raw | 106 | 0.0124708 |
432 | tickled + alfie + hahahahaha + ethnicjoke + henweekend + jokeofaclub + kimiraikkonen + lanaguage + meaks + singlies + speling | 106 | 0.0124708 |
675 | dm + inbox + pls + follow + xxx + dms + 0n + ansser + bahamas’s + bbes + dollas + gtg + kps + mesel + retweete + rosh + stewming | 106 | 0.0124708 |
708 | average + fiddled + memb + pay + spend + ability + migraine + intelligence + explained + believed | 106 | 0.0124708 |
710 | yuk + apocalypse + zombie + kettle + avatars + brandambassador + doneouthere + dsharp + excitedandscared + grandcanaria + hobknobs + kangdaniel + lavalamp + madlad + nomo + sadnotsad + strangly + trolliewallie + waec + 강다니엘 | 106 | 0.0124708 |
10 | inspirationnation + follow + ammunition + remoaners + davis + ore + inspiratinnation + adrift + distracts + javid | 105 | 0.0123531 |
129 | inspirationnation + posted + photo + abbey + praisejamxiv + park + praisejam2018 + retweet + spread + curve | 105 | 0.0123531 |
1346 | watched + bothers + rtd + happening + kid + mccann + netflix + lorraine + 19ish + desperatehousewives + guncle + hashtagged + istandwithmermaids + maddymccann + mocharie + shhshsbs + t’aime + tayla + thethinning2 + thewitchernetflix | 105 | 0.0123531 |
1519 | deficiency + gestational + diabetes + dg + bookcase + adhd + blackbird + identified + treatment + psychological | 105 | 0.0123531 |
163 | gt + ding + dong + serving + hny + xmas + whatsthebigmistry + absent + takeover + brill | 105 | 0.0123531 |
1705 | wowser + pushti + raising + tune + cricketers + excited + antonio + launch + trad + conte | 105 | 0.0123531 |
7 | pampersforpreemies + premature + nappy + donated + betrayal + tweeting + customs + foodwaste + unitedkingdom + hospital | 105 | 0.0123531 |
106 | 5lbs + fitness + classes + loseweight + receive + punch + boxercise4health + lose + offers + weight | 104 | 0.0122355 |
1239 | earth + alexis + cigarettes + hearth + humbler + lrts + odetojoy + whippet + nah + marriage | 104 | 0.0122355 |
1326 | text + uni + cry + alarm + exam + breaktime + dashiki + extremo + formatting + londontown + movingpartstour + restoproject + slammy + suicidial | 104 | 0.0122355 |
1391 | usernamebestseatinthehouse + 2funky + busine + yoga + magickal + bestseatinthehouse + morrisons + stadium + camping + starbucks + turtle | 104 | 0.0122355 |
1658 | mowing + enoug + lawn + pleasing + jesus + christ + puel + sister + negative + helping | 104 | 0.0122355 |
558 | shut + shutup + mouth + dear + deal + nonce + pipe + boiled + eater + whore | 104 | 0.0122355 |
651 | bored + notifications + 46yrs + aiko’s + alfiedeyes + andre’s + bieber’s + crüe’s + cuddlyfriends + engvbel + hildy + lavigne’s + maría + mohan + mötley + mumblogger + muse’s + pointlessblog + secretive + sinead’s + sprunger + star1 + tinkled + udhdjsis + undermyskintour + vila’s + wozz | 104 | 0.0122355 |
73 | foodwaste + unitedkingdom + baguettes + free + pret + greve + sandwiches + cru + nespresso + ham | 104 | 0.0122355 |
772 | freakiest + aiko + daps + dexta + wait + jhene + graceful + anniversary + glissade + jamietld + jovovich + lomacampbell + milla + mushed + rollonibiza + specialmoments | 104 | 0.0122355 |
807 | uni + lectures + stalking + exams + fifteen + 21sts + aslevel + badstockphotoofmyjob + boated + cram + foreverababy + irlensyndrome + isaw2018 + mias + rfid + ringlight + sidling + smad + spinis + studentblogger + thrumming + tonght + undergraduat | 104 | 0.0122355 |
1152 | eijit + marce + parabellum + pleasureless + rightnooww + carboot + havisham + llamas + moomin + ability | 103 | 0.0121178 |
1209 | newprofilepic + choo + lovely + bitno + caketable + coomuter + crewey + ctr + custodians + freedomchildpicks + guado + instacousin + instaselfie + instawedding + lololo + mamoojee + neversmashed + nmiai + patternedd + remastering + samiraandamilliontypes + shapey + simmervibes + teggys + torycuts + tsacousticep + wednesdaycrushwoman | 103 | 0.0121178 |
1573 | charging + streetview + pension + magnitude + websites + cctv + stalk + district + bought + price | 103 | 0.0121178 |
650 | sad + hear + inconvenience + loss + news + gutted + aged + nineteenth + hugs + closed | 103 | 0.0121178 |
670 | peace + rest + prayers + vichai + supporting + followers + informative + gemma + c2 + freakley + fwl + lastlaughinlasvegas + masterrace + mhs + ripp + springequinox + sundsy + this.another + weproudofdaya | 103 | 0.0121178 |
840 | sad + business + gutted + cgl + getchu + mind + 49ers + octagonal + forget + duct | 103 | 0.0121178 |
1201 | jr + cooper + bobby + 6ix + 9ine + abdurrahman + alinfeevs + banderas + beastwangonair + benaloune + deronda + gurumusik + lokko + mertasaker + regalmusic + sanada + schmurda + sczesny + snacc + spoilamoviein2words + spreadbury + tongiht + yeahboyd + yrah | 102 | 0.0120002 |
1370 | cmeing + efflort + retype + smellos + threre + terabytes + garms + pedestrianisation + uninvited + doping | 102 | 0.0120002 |
1531 | beavoter + polling + recordoftheday + election + station + finding + sport + boop + album + today’s | 102 | 0.0120002 |
1664 | charity + familyyoga + sattvalifeyoga + yogaforever + event + newmusicalert + tus + yoga + monday + 1979 | 102 | 0.0120002 |
1680 | striyah + rbf + meds + howled + nemo + shouts + ikea + women + doctor + 2ft’s + 83yr + 8ths + abridgement + afterward + aldergrove + alleyne + barrista + bce + benazir’s + breathlessly + carmarthen + choux + devah + ehrenreich’s + exacerbat + five4 + goren + groundbrea + indieapril + intramuscular + lupus + lygo + moldova’s + morsel + nickiminaj + philosophicall + pranah + red.gilchrist + sandwhich + sawitcoming + spreding + swapshop + thien + viewin + votesone | 102 | 0.0120002 |
227 | mmandmp_pro + premierleague + premier + bradgate + finish + league + weekend + lovely + queen + win | 102 | 0.0120002 |
265 | mng + inktober + kingdom + united + slobbering + inktober2018 + foxes + illustration + shararas + lcfcfamily | 102 | 0.0120002 |
360 | rt + thankyou + film + thabks + rts + retweets + appreciated + assworship + follwing + sominatrix + stockinga + thabkyou + thankyouhoseok + thankyoukeep | 102 | 0.0120002 |
575 | yogabunny + marksandspencer + dark + merky + cheery + samosa + youu + bunny + yoga + trick | 102 | 0.0120002 |
647 | evening + fantastic + disappointment + congratulations + team + deserved + christmas + dm + hospitality + informative | 102 | 0.0120002 |
664 | plan + sounds + ooh + asbo + guendozi + guffman + hairbands + leachy + motherbuka + realign + soundsike + swype + tume | 102 | 0.0120002 |
698 | goal + waw + faith + save + 14seconds + awhahahahaha + ballista + bft + dartboard + dees + kiko + lim’s | 102 | 0.0120002 |
707 | phone + ctrl + afford + traumatic + ikea + percent + mental + dbrand + dorna + everyword + feted + furnitureland + knacker + slowe + thisnperson + uncertaintimes + unsticking + watermarked + xmassongs | 102 | 0.0120002 |
828 | stoned + heaven + advocategeneralwatch + balkans + barf + belling + nippiest + philli + rafio + rugbyam | 102 | 0.0120002 |
939 | goat + trippier + muscle + thug + 30rain + 8️⃣0️⃣th + ampesi + ariza + chards + deadlocs + deathtoyoghurtmonsters + engarg + justiceleague + kingsto + pyb10 + spearing + superbowl2019 + waam | 102 | 0.0120002 |
940 | plated + scooters + sources + whilst + 21.04.2018 + atlant + attacted + bbcmotd + bejeezus + brollies + escor + findalan + fookin’bastid + holohoax + huhuhuh + kitorang + mortgageprisoners + nopressure + outposts + phills + poundlandbandit + radia + sciencecommunication + thankslet + untainted + weloveir7 + wingmaned + zuckberg | 102 | 0.0120002 |
1105 | lana + cutepuss + drempt + natashamina + nsama + shareboxes + wwemmc + yesproject + catscountdown + compromises + smudge + unlikelypsychicpredictions + valchanginglives + viscous | 101 | 0.0118825 |
1645 | one2onediet + jazz + join + scr + funrun + event + 4pm + gt + july + klxud | 101 | 0.0118825 |
1666 | purvis + gulliver’s + festival + chanc + hermione + saturday + july + join + jam + party | 101 | 0.0118825 |
196 | hny + weekend + lovely + brill + hope + goodluck + lynn + nanna + steve + angie | 101 | 0.0118825 |
331 | hugs + sending + xx + hug + xxx + vibes + wishes + teletubbies + positive + virtual | 101 | 0.0118825 |
551 | fuck + pancake + nap + waking + ripping + bank + hundredths + 8am + akways + aleeping + caillou + freelancelife + invoices + ketumbit + mosn + notimpressed + pulak + sangat + smegma + stresshitsdifferent + teamnightshift | 101 | 0.0118825 |
1165 | shatap + musa + gobsmacked + laughing + loud + matching + afence + allaboutthecheesejokes + bodygaurd + brokeback + carumba + cuming + derr + freedomofspeech + frontrow + imposes + janmoir + metformin + ohmoussademble + sadjoj + whoopiisaledge | 100 | 0.0117649 |
1170 | brexit + labour + tory + voted + mps + vote + customs + corbyn + union + voters | 100 | 0.0117649 |
1313 | growth + event + wellbeing + 02 + officer + cricket + holmes + manage + stadium + lcfc | 100 | 0.0117649 |
1317 | bed + extracted + hiccups + peeling + charcoal + straws + agwjeormg + bmwshow + carnaval + evey + otherthinking + soundwaves | 100 | 0.0117649 |
272 | honey + um + babe + love + kiss + xx + xxx + pies + dear + darling | 100 | 0.0117649 |
340 | thankyou + iman + doll + babe + hon + elizaa + honny + irem + kimnamjoon + kimseokjin + mandu + minyoongi + nanni + salma + thaanks | 100 | 0.0117649 |
371 | online + jewellery + code + delivery + gift + 6pm + christmas + nims + twelve + boutique | 100 | 0.0117649 |
416 | inject + beep + unlucky + gawd + veins + piss + lucky + tramps + shit + cryin | 100 | 0.0117649 |
557 | phwoar + nutshell + beautiful + fuck + game + whew + armeh + inat + rnrnf + emphasises + tje | 100 | 0.0117649 |
663 | trampy + agajsjvwiwosjshsh + expensivemonth + flatliners + gypsys + mymainsqueeze + pillage + rocovery + turtlebay + doddy + goode + leto + misdirection + tristram + unlikeable + wrestlingresurgence + yanoe | 100 | 0.0117649 |
725 | gameofthrones + cosmicblue + gavinandstaceychristmasspecial + song + english + gavinandstacey + pavement + episode + hear + thrones | 100 | 0.0117649 |
789 | awake + sleep + daffodils + wardrobe + wide + glittery + hours + tomo + 5am + sleeping | 100 | 0.0117649 |
821 | shoes + broke + coats + shopping + marrying + flick + porridge + twenty + goose + bankncard + clerking + doublefigures + geniusbar + notcoveryourfinances + regift + tapsaff + theartofbouncingback + whenfinancedoes + wqwtvh | 100 | 0.0117649 |
974 | guy + hey + norm + surprises + deliciousness + drugg + kiss’n’tell + lifekeepsmoving + makemusicmanly + dating | 100 | 0.0117649 |
1039 | pulp + impressive + fiction + wavey + abdallah + babyspice + barbaros + boozin + catline + delajore + fishponds + madderz + nextdoir + nocafetraining + raceready + zoomers | 99 | 0.0116472 |
1103 | allthebest + babe_ruthl3ss + blusterustery + loverikmayall + lvd + phonicsbootcamp + reggatone + scrumplicious + stoofie + hell | 99 | 0.0116472 |
1111 | uni + essay + modules + hours + adulting + presentation + wait + accumulators + antwerp + bestival + eurovison2018 + huband + multiusers + ontwitter + roadtotenerife + shmoney + skskskd + starladder + tvos + vyvjncfgcgdtyvjk | 99 | 0.0116472 |
1222 | vegans + channel + 5k + 01524831807 + 07976733666 + assassinscreedorigins + bargethedoor + blockworkbrickworkstone + chinaadtalks + feigel + habbits + heyeveryone + housemartins + hwtl + ingvareggertsigurðsson + innovateuk + jackhaslam + lessing + lotstodo + lunt + makeyourmark + mashupmix + neversleepnevertire + notimetodoitin + peititon + puppin + rickshawchallenge + sharethewarmth + smallachievement + spluttering + spn + stebbins + swingseat + tailoring + tgr + v2g + vesta + volume13 + widescreen | 99 | 0.0116472 |
1576 | ignorance + normalise + arithmetic + question + disengagement + education + poverty + opulence + dangerous + centuries | 99 | 0.0116472 |
1615 | fuckthisshit + notestostrangers + advertising + believers + eurgh + negotiating + discourse + control + philosophy + politician | 99 | 0.0116472 |
1659 | squeg + functioning + accents + slavery + wholeheartedly + language + women + politics + ga + agree | 99 | 0.0116472 |
454 | hundred + thousand + avi + sixty + ninety + coochie + seventy + eighty + cook + fifty | 99 | 0.0116472 |
657 | masstechnology + mttnstore + trademark + tescoexpress + annajeebhq + eastereggs + adultwork + net + annajeeb + bodyshopathome | 99 | 0.0116472 |
743 | pathetic + king + leaderless + pusb + undeserving + lethargic + darts + diabolical + coventry + woeful | 99 | 0.0116472 |
837 | horny + 19 + sleepy + alcholohic + bdodarts + bigday + butmustkeepgojng + ketosis + loggins + mind’s + mohamoud + tinkers | 99 | 0.0116472 |
895 | netflix + heinz + loved + 03.45 + anerican + cyberverse + doerr + likevthe + mayitlastforever + mfl + najeeb’s + roadtorecovery + sjp + tardigrade + tawny | 99 | 0.0116472 |
973 | gto + howl’s + anpr + gcses2018 + radio + testify + sabras + 4.30pm + ferrari + increases | 99 | 0.0116472 |
1003 | jeremykyle + wildly + jermaine + goat + klaxon + walsh + thechase + bradley + 5.7m + arronbanks + asazi + boikot + bronsons + commoner + cuckhold + dayumn + financials + fuuking + hammy + hussies + inners + jazz’a + kimak + michaelmcintyre + orthoptist + pedalling + policeman’s + unimaginable | 98 | 0.0115296 |
109 | true + 30 + shocking + positive + humpday + dont + stay + wrong’un + bring + lovlies + squabbling | 98 | 0.0115296 |
1213 | chitty + gimps + streets + bestdad + exemplified + knowtherules + knowyourjob + monout + ninez + nonceing + snouts + struee + sueage | 98 | 0.0115296 |
1460 | counsellingcourses + rothley + brook + flood + leicestereducation + evng + alert + investigate + counsell + leicestershire | 98 | 0.0115296 |
1702 | conference + contentasaservice + goalsexpress + kenticocloud + students + hockey + cms + developer + aspiring + halls | 98 | 0.0115296 |
1734 | establishment + anti + behaviour + politics + coalition + currency + laws + tories + bj + masses | 98 | 0.0115296 |
270 | brill + weekend + ta + bud + hope + mick + lovely + ty + good’un + alan | 98 | 0.0115296 |
56 | updated + firm + justsponsored + gett + tagging + tenths + stick + leicestercity + fundraising + 6.30am | 98 | 0.0115296 |
706 | gorgeous + beautiful + awebsite + aww + catrin + ccant + chibaba + dibyesh + heelsoffuk + leye + rawan + suki | 98 | 0.0115296 |
9 | leicestershire + manger + highcross + roundhill + adult + nixon + learning + bees + knees + court | 98 | 0.0115296 |
1113 | amazing + 30stm + coyy + feathering + fuck’excuse + mexicane + rik’s + sciencetist + sherlene + pipe | 97 | 0.0114119 |
1194 | bangy + awful + agree + l.ove + pvac + paul + espionage + ripmacmiller + 170 + clandestine + maybot + planb + restrained | 97 | 0.0114119 |
1215 | leinew + oaf + glassworks + gurriel + hibab + morningboom + shmoke + sleeplikeahero + valderrama + goatee + greb + hoodrich + rakshabandhan | 97 | 0.0114119 |
1314 | hair + sleep + blonde + bed + dyed + wait + complaining + hairdresser + braids + bouje + helpmeitsjuly + oversleep + plaited + slicking | 97 | 0.0114119 |
137 | happen + pics + racheal + rosemary + identical + evening + updating + pic + happened + shoutout | 97 | 0.0114119 |
1491 | 2019hopes + nomorecrimps + happynewyear + digit + socialclimbing_leicester + bouldering + gabrielle + bxrod + filipinavocalist + moneypcm + pinay | 97 | 0.0114119 |
1607 | entrichment + rmplc + leadership + primary + leader + community + afternoon + delighted + county + talented | 97 | 0.0114119 |
1714 | peony + networking + opportunity + dale + event + exciting + 0101111 + 200im + 40oz + 9.45 + authorized + beattheodds + borough’s + bpk + chicksarecute + debuted + eurofantruestory + fanaticsteamwearcomingsoon + firearmssurrender + greasey + guidedogs + handsoffmyplate + housingfirst + jobsite + joshbaulf + june’s + laurenti + naionalspacecentre + newbabychicks + newsinglealert + postgraduates + resus + soundimage2018 + tabletalk + tmg + traineeconference + walescomiccon + wiwibloggs | 97 | 0.0114119 |
1724 | iamawomanwho + dementia + vlog + business + forward + staff + planning + schools + becca’s + bookmarking + brickinthewall + ccaddyshakers + charlotta + clearing2018 + d.m + dianaf + dogdistroystoys + dyingmattersweek2019 + eastmidssios + elated + excitin + fmb + focuzed + foste + gujerati’s + gweme + hermitt + iasym19 + launchmyself + lomography + loroshospice + lurcher + m9ments + matinez + meifcelebratesuccess + micromasters + microsoft’s + mygateway + nested + ota’s + over:kensington + pds + rcnstudents + ribbo + sheron + streetcount + teenyoga + telescopic + thiepval + xboxseriesx | 97 | 0.0114119 |
505 | tories + coutinho + european + corbyn + blarite + dishonour + entryists + glamouring + gloryfying + hooklineandsinker + justed + radio4 + reggaetonlento + solas + usp + wmgeneration | 97 | 0.0114119 |
534 | thousand + hundred + eighteen + seventy + thirty + nineteen + eighty + forty + ninety + tenths | 97 | 0.0114119 |
795 | ॐ + outdated + car + brake + realise + pad + cars + cards + urge + 21december + 70.61 + 90x40cm + advisories + baes + bhagavadgita + daltrey + elena + ffstechconf + gotthatfridayfeeling + kayak + kayaks + kwikfit + letsjustcrackonnowalready + nelis + papped | 97 | 0.0114119 |
897 | prav + understatement + bib + 22st + ascension + lifeofastudent + swilling + cocksucka + islamaphobes + labourpains + sixnationsrugby | 97 | 0.0114119 |
1635 | pakistanzindabad + pakistan + pakistanairforce + india + airforce + corsia + pakistanarmy + nhs + narratives + indian | 96 | 0.0112943 |
25 | sigh + rewardsforgood + betterpoints + miles + hundredths + rewarded + earned + vintageglamourinspired + hema + bollywood | 96 | 0.0112943 |
427 | christmas + xmas + halloween + till + valentines + decorations + cough + sleeps + eve + songs | 96 | 0.0112943 |
550 | dm + ticket + question + hmu + selling + tickets + wireless + spare + dm’s + class1 + qwhat + readingtickets | 96 | 0.0112943 |
559 | dm + love + prize + cure + bykergrove + dsi + frase + hunkyman + sophs + theturnawaygirls + yearoftheradley | 96 | 0.0112943 |
829 | trust + unbelievable + hokage + kagame + schone + undetectable + unsurprised + 72milli + foresee + gap | 96 | 0.0112943 |
1009 | memes + dalalai + heysiri + mofos + organises + patronized + peopleshapingp3 + qualityfiction + abegi + acquainted + addi + fifa’s + grotbags + manche + powercut + reimburse + toplads + twittertunes + verymerewards | 95 | 0.0111766 |
1122 | customs + union + boirders + democratic + brexit + remoaners + vote + voted + priti + betrayal | 95 | 0.0111766 |
1238 | mealtimesmatters + pg + alleviate + chrixbuilds + comicbook + deskstudy + discographys + gaafar + gallantry + greatdays + hisham + interv + jembling + jiving + lancelaunch + liveliness + longmire + neologism + nichola + powerofsocialmedia + racunari + samwell + soccerstreams + soundc + tarly + teamisla + twilightwalk2018 + wardour | 95 | 0.0111766 |
143 | reserves + division + kick + 2.00pm + debated + 20mm + doitdoitnow + lense + saturday + nikon | 95 | 0.0111766 |
1448 | abulam + crazyabdkdndndhd + escherichia + felinhedonia + finallygotthere + fuckidhdhdyingsjsjsj + hayleys + lowheresyouracomol + skskkskss + skskskksks + speckle | 95 | 0.0111766 |
1526 | tickets + christmas + globe + cookie + trials + 3pm + join + details + blendbar + comedy | 95 | 0.0111766 |
1585 | hillary + nigh + syrup + blank + foot + anyhoo + behaviourist + dandhinos + delieverd + dryads + frito + gottakeepawake + happie + kyles + laundered + lovestory + mantic + mccan + michaelsek + monito + nitrate + nostalg + peltinghell + perril’s + pew + quesito + rollercoaster:from + sissay + spokenwordpoetry + sudacrem + testin + yehs | 95 | 0.0111766 |
231 | yawn + whispers + pineapple + likier + saynotobergs + tireder + ashlawn + citations + doffs + litfic + ody + polishes + pore + tiph | 95 | 0.0111766 |
465 | lool + chance + screaming + im + howling + lolol + cackling + nice + dumelow + liverpoolololol + lmaok + lolololhvx | 95 | 0.0111766 |
648 | sense + makes + strong + late + pls + lush + tipping + xl + appreciated + oxox + ओके | 95 | 0.0111766 |
910 | mathswwc + coq10 + edema + macular + rvo + sweepstake + fireleicester + numeracy + algorithms + department | 95 | 0.0111766 |
922 | duff + pancakes + cheers + cheese + coker + derrygirls + gangrel + its_happening.gif + macandcheese + macdonald’s + oneshow + ørsted + spall + tetleys + wankered | 95 | 0.0111766 |
1025 | notty + carwash + kno + notinterested + secondreferendum + tizin + primed + wondurfull + bouff + calms + queenie | 94 | 0.0110590 |
1126 | johnathan + jacques + jean + cuvelier + boop + sharring + iax18 + unitingtwoworlds + rascal + ribena | 94 | 0.0110590 |
1188 | damned + allarene + arisesirstokes + cunkingclass + dirtydeepingdefenders + fabrepas + mispresed + murmured + proteinshakes + cunkonbritian + meaulnes + perri + strayed + zelfah | 94 | 0.0110590 |
1267 | doubling + stunts + stuntman + shotbyv1 + prince + handmade + 1to1 + ambatman + bhpco + breakkie + crazycat + discoloured + eatameatycelebrity + fathersday2018 + getmentalking + hardestroadhome + heartbreakingstories + instgramfollowers + leavvie + manlikekazzyahknow + ozy + plasticstraws + ready4 + rofivelli + sgs + thebreastsongsever + theinflammedmind + unikitty + unintuitive + xmendarkphoenix + yourfavdancingrapper | 94 | 0.0110590 |
1454 | bully + shsjsbdbdbjsjs + skdksksksks + vday + terrorist + 25yrs + bennell + mundo + underaged + meant | 94 | 0.0110590 |
1710 | 40m + uninspiring + killin + blah + statements + reasons + deny + 236b + afams + boniface + borno + carnets + cheerier + datetime + dgnb + epsteins + exageratting + famo + gael.conrad + internalisi + jpa + justifi + lemaitre + maiduguri + maybank + nigeri + occurre + offen + particulars + rhotic + whichev | 94 | 0.0110590 |
187 | weekend + keeping + brill + alls + hope + lovely + ty + wonderful + bud + paul | 94 | 0.0110590 |
42 | chance + awesome + union + customs + eu + links + remains + basis + click + adoption | 94 | 0.0110590 |
453 | crossed + fingers + horny + excuse + martial + feeling + amazing + giovannispanno + myvouchercodes + abetting + gigg + wakey | 94 | 0.0110590 |
832 | imagine + duran + male + kmt + white + dinage + gissing + ground.the + hmrcrefundscam + inaint + jinna + jmu’s + kinlg + metroland + professing + sex.i + tearworks + whatabitch | 94 | 0.0110590 |
914 | fly + bro + ayamm + junkets + mashreport + teaam + yungers + administer + derisory + idiosyncratic + midline | 94 | 0.0110590 |
1056 | crime + raped + offenders + 6yearswithoutcory + egalitarian + gomsh + kalesalad + luddite + mishandled + queda + rainwater + reservoirs + souther + terrorisim + unreservable | 93 | 0.0109413 |
1124 | country + empire + obama + matters + trump + people + racist + cyclists + hatred + attack | 93 | 0.0109413 |
1234 | dare + abuse + carefull + uruguayan + wcth + winningwednesdayinpink + wordstoliveby + ccuk + gerbils + compare | 93 | 0.0109413 |
1537 | adultlearning + pompeii + freud + event + meeko + conference + panel + business + virtual + 0416 + acquaintance + afterrnoo + alaica + aleksa + alyarmouk + archeology + arnaud + attenbor + auditworldcup + bradleylightbody + breakingnews + brightfuturesuol + chrystal + coffeeandnatter + conceptualising + craned + drapier + duk2019 + dutchess + ericrobone2 + frcpath + goingtheextramile + greatlessons + healthybody + healthymind + higgett + hra + inniative + ivoted + jacq + lals + leicestershospitals + lookafter + lowerbackpain + lwfa + meldrum + napier + nathaniel + nevertoldtolearn + overawed + pathway2grow + produc + providin + rateliff + s.whelan + soon.the + spon + staffband + yself | 93 | 0.0109413 |
357 | whoop + bella + saluti + whoopee + 2p + copypasta + pit + kelly + crisis + ave | 93 | 0.0109413 |
401 | cheers + birthday + happy + wood + mornin + tavern + bud + pour + lee + cuddles | 93 | 0.0109413 |
542 | ayes + worldcup + uta + goal + lampard + finish + kasper + whoop + 20pts + 89pts + freehit + g2army + gurdiola + kuldeep + pissin + wingy + worldmatchplay | 93 | 0.0109413 |
605 | safe + sike + pls + cher + technocracy + zinfandel + stay + carm + signatories + gomes + messi’s | 93 | 0.0109413 |
757 | sharing + thankyou + sweetie + pleasure + aww + o’gold + rayaan + teambaxi + togo + comment | 93 | 0.0109413 |
849 | fooker + timothy + timmy + loud + loses + lads + lee + laughing + average + kante | 93 | 0.0109413 |
1106 | pray + nike + 767mph + alemia + chainsmoker + condenses + cultivation + februadry + glamourise + januadry + mama45 + ngidlisiwe + ok’s + theforce | 92 | 0.0108237 |
1123 | triggered + pum + worse + mars + rightly + fishstick + goaway + me’d + neostorm + nyaman + puddi + shouldni + simplier + urugly + ya’l | 92 | 0.0108237 |
1167 | chintz + dictation + 20min + qc + scrutiny + viewers + data + cyclists + petrol + 600lt + aldred + browsers + clev + comp.lang.forth + dennett + druds + enf + headgear + hospitalised + infra + landl + loadi + megadrive + mitigation + rackets + subcutaneous + terribad + usenet + valpro + vpa | 92 | 0.0108237 |
1192 | 900k + casio + castrate + deathrow + farfan + forefather + grobellar + ilness + rapistinthewhitehouse + surviorseries + wheww | 92 | 0.0108237 |
1415 | shark + a.b.s + campassionate + flatulence + hipwell + mataland + ahha + rubix + smells + donnington + quiffy | 92 | 0.0108237 |
1551 | train + mattie + bme + careful + comms + deaths + coalville + enjoys + apparently + forms | 92 | 0.0108237 |
1708 | aeo + vlog + check + creatives + video + radar + share + glen + raise + acribatic + aiethics + alison’s + artis + awesomefoursome + babysdayout + bambinos + boscombe + criminologycommunity + csi + debutradar + dontclang2019 + equalopportunities + estimat + fantasticfour + fenderprecision + findyourniche + fitgotreal + helpin + iop + itsyounotserato + kartar + knacke + marchbabies + millionmakers + nebulae + neurodiversity + neverendingsupport + niches + oldjrum + partridge’s + safespace + skydog + slt’s + talesfromthewilderness + tryingtobeabassplayer + twoteams + vipeventsxm | 92 | 0.0108237 |
180 | weekend + brill + lovely + follow + steve + garin + shihab + rick + barry + keith | 92 | 0.0108237 |
279 | count + sir + ma’am + wow + awesome + nice + hamper + xx + comp + fantastic | 92 | 0.0108237 |
30 | endomondo + endorphins + 1h + km + hundredths + 2h + finished + running + miles + twenty | 92 | 0.0108237 |
489 | spurs + liverpool + pitch + league + incoming + 14.01 + 150games + dianna + greenie + lb3 + lcb5 + leaguetottenham + mediadarlings + nedd + newvmon + numbering + putthepressurwon + rcb4 + sating | 92 | 0.0108237 |
493 | wagons + pose + shit + honkhonk + stuff + roll + perfect + canceledt + corton + fblock + hegotknockedthefuckout + lawrences | 92 | 0.0108237 |
51 | current + mood + sumeer + di + pa + attempt + cool | 92 | 0.0108237 |
767 | wait + dinner + absolutefavrestaurant + alotclosertohome + arsholes + babbas + bustling + cannes2019 + foxtonlocks + greas + hellospring + snowfall | 92 | 0.0108237 |
1177 | shaku + calmest + donet + nevert + obinna + ringler + svu + tombstones + bia + minimize + pmsing | 91 | 0.0107060 |
1189 | tut + alex.s + alexfromglasto + babas + ballsed + breen + castrovilli + drakevspusha + evertons + geraghty + hegazy + loban + makeacelebrityerotic + mbapps + myshkin + rambi + raq + realchamp + rearing + rectal + shakespeareinspace + sphinxometer + sportsbreakfast + stoger + thunderdome | 91 | 0.0107060 |
1363 | mum + advents + maladjusted + depressed + grimace + outwards + expedition + godess + interpreting + walloped | 91 | 0.0107060 |
151 | betterpoints + cycled + earned + miles + hundredths + pigs + thirty + blankets + bashers + bible | 91 | 0.0107060 |
666 | twat + fool + hehe + stack + aurait + crininal + dreamboat + enciting + lenz + scurffy + trumper + ufc244 + youl | 91 | 0.0107060 |
694 | bruh + nice + crunch + beautiful + newprofilepic + elizabeth + home + footballindex + h8ters + lotioning + nationalyorkshirepuddingday + needscenerynow + pamphle + popopoo + summervibes + weldone + wohoo + wordsmatter + xvideos | 91 | 0.0107060 |
809 | waterfall + brit + 352 + anthisan + dews + hamletbbctwo + jwp + mafalda + mcclaren’s + mindbending + mrissed + reattached + rigg + righr + russellhowardwho | 91 | 0.0107060 |
84 | weekend + lovely + brill + hope + goodluck + daire + rob + simon + wonderful + craig | 91 | 0.0107060 |
855 | blue + wootton + fams + godennis + greenmanalishi + kkrvcsk + ole20 + skillset + talismans + poo | 91 | 0.0107060 |
942 | intercourse + downloading + theo + acceptability + arsacm + bulging + cluehq + deities + dol + immigrantsongs + ls1277 + mismanagement + morphology + piloted + rf2 + ridiculouskeeper + shrugging + sinatras + statisti + superhuman + weeknigh + wheelbarrows | 91 | 0.0107060 |
971 | actual + brothers + gameofthrones + anywh + freat + glennout + sevond + trickles + whitechicks + thearchers | 91 | 0.0107060 |
978 | proud + supported + team + fantastic + congratulations + attended + graduation + amazing + winning + huge | 91 | 0.0107060 |
1038 | ashtray + goldberg + ackers + dampening + omelet + samuraj’s + shippinguptoboston + teprosteakgrill + wholelottalove + cheaper | 90 | 0.0105884 |
1308 | yas + builder’s + excitedd + inmad + midafternoon + moisturized + owmayn + preg + drunk + numbed + trimester | 90 | 0.0105884 |
329 | ___ + ____ + morning + sheets + cornstarch + decomposable + faxing + therer + hugs + adc + epma + insipid + pairings | 90 | 0.0105884 |
628 | congratulations + congrats + spudulike + deserved + 3sh + ahlamdulilah + coupple + engineer’s + escapologists + iks + shailesh + soubds | 90 | 0.0105884 |
989 | sylvaniansleigh + hear + eliot + steven + 31.03.18 + bluesy + dakar + dua’s + fuckknifes + proudmummoment + sheenie’s + sluggy + sundaybloodysunday + trishalive + vogueitalia + worldcup2018maths | 90 | 0.0105884 |
1116 | uf + happening + 2t87 + alola + arghhghhghhggdhhj + aweosme + bonham + caned + celebritycallcentre + gatorade + halton + mischa + narcissistically + nodes | 89 | 0.0104707 |
1160 | bowled + hollywood + backstree + carlito + climatedebate + din’t + duedateproblems + farrier + fulloflove + thewritestuff + twale | 89 | 0.0104707 |
1294 | dog + cat + boobs + leapt + muharram + npc + repainting + zakiah + 午餐 + anaesthetist + fiyah + kylies + lacazete + norvina + snd | 89 | 0.0104707 |
1396 | chakrabortty + ghd + accountancy + aditya + everest + hugh + peer + alissa + announcin + artceramics + baxiworks + bikepacking + biscuitbreakdown + coppermatt + cytoskeleton + dmuelections2019 + edz + elavation + everest2018 + franziska + frigh + futurefocus + goldcrest + hanja + hoarders + holidayclub + hotlist + icssao2018 + iftekhar + imidra + intermediaries + ivanliburd + jopson + justinbieber + kinase + kotecha + ld19 + ldweek18 + ldweek2018 + lhotse + loveabaxiinstall + mannix + mitosis + spreadlovein3words + uksepsistrust + valeria + yasmin_basamh + zonato’s | 89 | 0.0104707 |
1446 | tickets + 9am + saturday + ticket + gazette + sleighbell + biltong + dontclangbruv + stall + thursday | 89 | 0.0104707 |
1470 | cricket + stadium + boiler + radish + king + power + combi + learner + clan + swing | 89 | 0.0104707 |
1508 | compressedair + motorservice + powersystemsaircompressors + welford + epl + views + installed + 2secs + backpiece + beatyesterday + bookreviewer + burgessfest + ericworre + firestone + girlsjustwanttohavefun + goagain + halestorm + ianother + inaya + kygo + millibar + missalous + pivac’s + prestigeous + raul’s + saddling + senio + spacegirl + spithappens + spsevents + subj + thecouplenextdoor + tinyadventures + tonkas + trocaz + turnus + twinsontour + vicha + youcanbewhateveryouwanttobe | 89 | 0.0104707 |
1544 | thedsauk + agile + conference + team + 250th + adventureapril + allroadsleadtoleicester + beencoming + bobtail + castleford + caucus + chairwoman + cinemalegend + committedtochange + coolaeronautics + discoveryprogramme + driveincinema + dsastars + em2c2019 + ev2 + eve18 + fdmcareers + festivalofcareers + finirbache + followfulhamaway + giveitayear + glengorsegc + inforgraphic + newwriters + niecewards + phc + rcslt2019 + rich.reed + rusia2018 + saveourfarm + smil + stadiu + tivoli + trejo + vicephec18 + womeninrental + worldathleticschamps | 89 | 0.0104707 |
286 | prize + fab + xxx + count + xx + prizes + guys + swanage + awesome + lovely | 89 | 0.0104707 |
289 | fuming + honest + caprison + mixitup + nigeil + literally + twits + honestly + fini + wavelength | 89 | 0.0104707 |
549 | love + fell + wine + nite + cumuli + mosby + nimbus + sunnyland + muchh + myhero | 89 | 0.0104707 |
904 | potato + tastes + beetroot + strawberry + badtimesattheelroyale + bide + esomeprazole + feldman + freche + marigoldhotel + northbankclockendhighbury + restarau + rmb + spatz + summermia + v4 | 89 | 0.0104707 |
933 | didlo + yoghurt + cheers + tasted + donotsuffer + feelers + gesture.well + halloweenkills + paypacket + pengo + smockington | 89 | 0.0104707 |
958 | muslim + 1950 + fascism + globalist + eu + album + hip + song + sculpture + johns | 89 | 0.0104707 |
1019 | enjoy + yum + delish + chickenandmushroom + cnosummit + espana + holiyays + letterboxd + marais + nationaltoastday + pracatan + tasteofbella19 + youcanmakeit | 88 | 0.0103531 |
1023 | 12daysofjones + daystogo + yay + cheers + giveaway + 2date + crisp + donated + apriciado + chh + ells + hardbacks + mileys + stylistlive2018 + thoughtsandprayers + twerky | 88 | 0.0103531 |
1060 | albania’s + bestintravel + cathal + ds620 + feltbad + hbr + latelateshow + lidington + phdlove + phun + rastafarian + senzo + shabba + shabbascores + spawns + ulo + whathappensnext | 88 | 0.0103531 |
1069 | legs + heart + bdaypresent + dilution + skkfjdjsksk + unbuttoning + gnashers + gyming + lisboa + llm + tocks + volks | 88 | 0.0103531 |
1217 | gwara + laura + kmt + beccasloveislandpage + boyswhoascot + dajid + fatwa + fishbourne + getroxanneout + goris + kandis + kugan + labul + meninsuits + opinionsofcoppenandnotitv + speckled + ukpop + waywards + yesimlate | 88 | 0.0103531 |
1237 | bursgreen + wadkin + copper + twitterblades + hortons + rcn + tai + lcfc + gallery + blades | 88 | 0.0103531 |
1256 | desperate + shaku + honest + sketchbooky + triby + 2face + beens + nitro + innit + aii | 88 | 0.0103531 |
1277 | trustworthy + hindi + average + contest + 07534975300 + abokyire + assholery + beashark + brenbros + findparesh + findpareshpatel + gorgo + heroism + maanav + shakyra + threeali + threebahri + threethemandem + threezayn + tmkoc + visiblewoman + visiblewomen | 88 | 0.0103531 |
1324 | sleep + slept + hours + hair + 9am + braids + tired + sunglasses + 2,17,7 + getmeonthatplane + goodlord + hellovegas + jailhouse + movingg | 88 | 0.0103531 |
1672 | gyimah + bbc + imports + pm + sham + country + system + european + news + political | 88 | 0.0103531 |
429 | alright + jingle + oooh + ooh + lovely + fatteh + kahba + shortstuff + streambig + tanwir + zoomer | 88 | 0.0103531 |
50 | bud + ekadashi + centralfirestation + firestation + leicestershirefireandrescue + petition + weekend + discoverleicester + lovely + rt | 88 | 0.0103531 |
1082 | god + 33k + 51k + akukho + deleging + obsceneties + lula + mouthguard + suppleness + toks | 87 | 0.0102354 |
1102 | notebook + 200s + 42sq + councelling + holidayreads + lenghts + moodymann + ńot + slosh + gothel + memorising + specialized + sundress + tove | 87 | 0.0102354 |
1293 | chatbots + nicheawards + interactive + venture + incarnation + bulldog + rescue + beeroclock + burgers + darts | 87 | 0.0102354 |
1334 | determinate + creampuff + btch + duvetday + girlfrend + gooing + stayinyourlane + subtotals + teun + assuming | 87 | 0.0102354 |
1703 | issue + puel + slash + opinion + people + arising + barber’s + dhami + everydayman + fostersson + handsomest + jatinder + langua + pris + threethree + transgress | 87 | 0.0102354 |
199 | crying + added + unlocked + unlock + fridayforty + tap + rush + tickets + entered + performances | 87 | 0.0102354 |
430 | tock + ha + originally + becum + teenagefantasy + unific + whereitallbegan + fuckin + tick + arithmetics + bounty’s + mongo | 87 | 0.0102354 |
595 | women’s + shopped + test + international + cannock + supported + internationalwomensday + nets + passed + grandson | 87 | 0.0102354 |
734 | busy + fridays + healthy + jasleen + lasenza + plasmas + lemme + arianna + sal + ukht | 87 | 0.0102354 |
879 | 0to100xmas + tickets + wizards + hallway + wizardswonderland + boutique + madfriday + wonderland + motivation + thecurryshow | 87 | 0.0102354 |
903 | laughing + loud + huh + reo + speedwagon + tobacconist + cudnt + franz + lfcvcity + whats | 87 | 0.0102354 |
1031 | ethnography + dagr + build + a’rushden + algorithm’s + asthmaplusme + avalable + badaction + benin + capstick + curlies + customizations + defaults + dhconf18 + earlydiagnosis + excavators + expo18nhs + ferroscanning + financed + funi + greenspace + halfin + herstory + iothub + kashmirstillundercurfew + killall + loggist’s + lovelyday + nicaraguan + o’gaunt + osbournes + philbeerband + puregold + shoplcfc + smsports + systemuiserver + thebiggestweekend + theron + wearepeople + wishihadasociallife + zaxis | 86 | 0.0101178 |
1036 | snort + learnt + 11.44am + burntthehouses + grandson’s + izabo + mohdaziz + noneofmybusiness + pokusaj + shalford + swayze + themakingofme | 86 | 0.0101178 |
1076 | sigue + masterchefuk + prick + blaming’someone + chairbots + clementino + dontgoadthegoat + gooaal + guzaing + inauthentic + leivpau + leoseason + leosrule + muther + scrupulous + sitdown + teensy + whatnottodoatthebeach | 86 | 0.0101178 |
1245 | sleep + cardio + drinking + bed + numan + 16.5km + 250kchallenge2018 + cuddler + itsalaff + smother | 86 | 0.0101178 |
127 | girlsparty + littleprincesses + pamperparty + partytime + unicorn + foodwaste + unitedkingdom + pamper + xx + salmon | 86 | 0.0101178 |
1459 | bulldoze + ferocious + riv + consumed + pantomime + hero + rage + 1a + 54s + arshya’s + barcelo + bouali + brants + chevrolet + commemoration + decompress + dionne + dommedagsnatt + everydaymatters + eyc + freegensan13 + ghanta + gsc + guthlacs + hassiba + hippest + imhereandimahero + jumperoo + let‘excuse + muezzin + room’s + sissyinside + summersundae + thankfu + thorr’s + timethese + waiver + zea | 86 | 0.0101178 |
152 | contractors + bootsale + leicester’s + painting + charity + letter + charge + growi + app + growin | 86 | 0.0101178 |
1549 | prof + volkswagen + psafetycongress + tropicalpeat + pathways + nurses + ongoing + sepsis + ties + keynote | 86 | 0.0101178 |
1634 | chung + inclined + bobwen + bongi + bossvleader + clyne’s + derken + desensitising + earnestness + ecw + gofundmes + stigmatisin + timeh + worryi | 86 | 0.0101178 |
1683 | nepotism + censoring + monstrous + racism + discrimination + stupid + speak + corrupt + muslims + apposing + barelvis + bettermanagers + blairlike + clai + corb + deobandis + eardrums + emissary + glasshouses + hallow + hôtel + monge + polonecks + pourtalès + rotich + shootin + swarmed + turpitude + uncoils + venality + yaya’s | 86 | 0.0101178 |
220 | dm’d + posted + kfc + photo + pm’d + coast + restaurant + restaurants + onetakechallenge + peperz + ripburger + shallowgrave + zx’s | 86 | 0.0101178 |
376 | rts + unboxing + video + samsung + unboxingtime + supersafstyle + appreciated + galaxy + igtv + s9 | 86 | 0.0101178 |
39 | paintingcontractors + eastmidlands + links + gererals + contractors + princes + spies + adoption + protests + painting | 86 | 0.0101178 |
410 | jacks + pixie + baltic + ave + palm + tracksuit + chilly + nando’s + angels + bella | 86 | 0.0101178 |
412 | compotime + cryptography + lineofduty5 + mclarenadvent + 12dayswild + kerching + sdlive + hounds + scarlets + abcmurders + pancakeday | 86 | 0.0101178 |
53 | brilliant + bollocks + loquated + relationshipskey + onlyconnect + partnerships + carole + tactical + clarity + perfection | 86 | 0.0101178 |
754 | govt + murder + guilty + court + law + mentioned + affairs + happened + accuses + iraq | 86 | 0.0101178 |
825 | rip + sunshine + 08.01.19 + ayebody + bruntingthorpe.even + cataracts + haxan + iproc + moistmonday + on.tigers + sextalk + wnjoyed | 86 | 0.0101178 |
852 | cabbages + lawofattraction + sainsbury’s + loa + 12july + ballaghaderreen + chopra’s + disinflation + dobbies + dynamo’s + fcukregev + gammon’s + kitsune + marblehead + middx + middxleics + milbrook + mygirlbandiscalled + naan’s + noele + powerwall + regevoffcampus + shopworkers + signwriters + solicitor’s + soundproof + submits + sumi + thecommuter + thewarriors + tomschwarz + tysonfurytomschwarz + ukhospitality + unsa + urbanutility + zaka | 86 | 0.0101178 |
915 | watch + gotchu + gamble + forgotten + cockrock + dooleys + hhm + mashaka + smack’s + vax | 86 | 0.0101178 |
976 | rasprclub + dialysis + pd + infants + dhikr + membrane + vans + fire + mortality + overcoming + statutory | 86 | 0.0101178 |
1110 | blethyn + cheekyfekers + laundrybar + lestha + nothingbutthieves + roadtomexico + stillgetitupthebumholey + amsterdam + anthropocene + frome + interminable + jrod_hd + knotweed | 85 | 0.0100001 |
122 | camra + drinking + prize + festival + beer + eighteen + thousand + chilling + mistress + sams | 85 | 0.0100001 |
139 | inspirationnation + painting + contact + love + duas + healed + 13love + babygo + behindlocalnews + hotm + ipaintportraits + lyds + mekemstudio | 85 | 0.0100001 |
1398 | tickets + beers + ales + sold + puregym + chamilia + lnil + lastnightinlei + till + instapic | 85 | 0.0100001 |
1515 | unfairly + calorie + matters + considerate + nature + 993 + academicwriting + aeros + amagnificent + autisti + cashslaves + developi + deviate + extendin + fossilfuel + gilgun + gleefully + howtosurviveinteaching + keto’s + miscalculated + neurodevelo + nissanleaf + ortho + poisonjim + shantabai + sympathised + taverne + tranist + tyrying + undestruction + uninte | 85 | 0.0100001 |
1681 | britishbasketball + dusk + bradford + doughnut + ghana + gimme + 11.15am + 5pt + beastfromtheeastcantstopus + bennies + chickweed + denham + fightcancer + futurethrowback + holmesparkfc + iqra + 🅿️ + pariahtour + philprosportsimages + resiawards19 + saskiaashalarsen + tesla’s + timbers + trumpeter + wathes + wolloff’s + xtremescreampark | 85 | 0.0100001 |
1688 | programme + dmu4life + bachelors + chairing + unboxing + 1hr + session + honours + network + evington | 85 | 0.0100001 |
576 | tayler + babelas + tock + gardens + engineering + castle + square + jubilee + aladwani + becauseican + breastcancerwarriors + chadeya + f’kry + fairstein + fantayze + ghnutrition + gopinkhair + haysi + hermanos + kristie + louchest + noapologies + precarityontrial + serivce + slithering + tailboard + tiill + whysoserious | 85 | 0.0100001 |
74 | ousting + betterpoints + nimsboutique + lied + theresa + british + parliament + influential + hiring + hughes | 85 | 0.0100001 |
986 | proud + demonlove + gostarsgo + improvlove + lborograd2018 + mariya + shandy’s + stocky + zombiemusic + bullseye + crystalball + enforcer + gotoams + ingrid | 85 | 0.0100001 |
1017 | hate + uni + medieval + armour + uniform + allthatmatters + commuterlife + quadratic + streetb + gc | 84 | 0.0098825 |
1062 | martial + watchin + bielik + crudd + fugley + gypsyking + janika + lookum + malonee + masher + megazone + mollyy + natt + pudu + siruh + sonraki + tengs + thirdinatwohorserace + tranna + zedebee | 84 | 0.0098825 |
1099 | zoo + bacon’s + buggar + cookbooks + gekko + goodtemptation + mdem + stretchingit + strum + stucktoweightwatchers + thealarm + thepowerofthetowers + three0dayswild | 84 | 0.0098825 |
1125 | wilding + fucked + ovie + bathony + bundah + chanpsionship + chimps + deniers + doorty + jaq + usband | 84 | 0.0098825 |
1130 | aee + airbender + amita + balard + bezee + drumonds + humperdink + inej + mbj + teenagecrush | 84 | 0.0098825 |
1180 | nearer + albania’d + blindironman + blockt + catpartsinfilmsandsongs + cheesier + demoninating + frontier + itsallaboutpoo + mfa + raspi + relegationfodder + ridence + singingnmyhead + solidarityforever + stanlio + uttered + vasectomies + walkofshame + whwtatarat + yyes | 84 | 0.0098825 |
1384 | marketing + harborough + sampling + city’s + business + funded + mugs + 1.8m + 350t + 720s + albertdock + attentional + autoplanner + barbastelle + battleofsaragarhi + bhaktapur + cfa’s + cherylholding + connectmecafe + coverag + dementiaactionweek2019 + doctoralcollege + dower + durbar + ehi + ema’s + entrepreneursprogramme + eqw2018 + focusin + getshitdone + highstreetratesrelief + hypercar + jackpinpale + letstalkmh + lga + lgaworkforce + lipreader + lptyoungvoices + marketingtips + mather + npqsl + pathwa + promin + psicareers19 + relatio + ryedinghigh + satdium + secondday + sinkerstout + smallbiz + spacetech1718 + spreader + supercarsunday + tenantmanagementworks + tuiti | 84 | 0.0098825 |
153 | forecast + weather + whetstone + competition + app + met + office + banqueting + jul + heavy | 84 | 0.0098825 |
1655 | artistic + today’s + adme + americaneedsyou + and.username + bbcelfie + disocering + duncanfegredo + exceptiona + exvellence + future100 + futurefocus2019 + girders + impactteamsuk + ise2018 + jayzneedsyou + lboromarkettastic + lboroquality + learningspace + lencarta + letaveit + nause + oboe + oranginser + ordinator’s + purpos + r2ba + saveourocean + ström’s + strongerthanmyfears + tab’s + thegriefcast + theineptfive + womensawards + yesidonate + zorba | 84 | 0.0098825 |
1670 | 1844 + refusing + museums + friedrich + onthisday + benz + tower + entrepreneur + karl + toaster | 84 | 0.0098825 |
585 | prayers + support + jesy + helicopter + br + returns + tiger + direct + amazing + celebrating | 84 | 0.0098825 |
592 | forward + xx + crimeandpunishment + hypersbdaybash + mondassian + psc + shivali + softtail + tuttisunset + unfolded + yazidi | 84 | 0.0098825 |
936 | 0 + u12s + final + finalists + cup + won + finals + bogeys + congratulations + win | 84 | 0.0098825 |
99 | cool + jacks + quran + foodwaste + verse + focaccia + toasting + unitedkingdom + nominated + tl | 84 | 0.0098825 |
1068 | tax + politicos + potholes + corrupted + taxpayers + brunette + plastics + labour + msm + vincent | 83 | 0.0097648 |
1315 | birthday + pleasure + amazing + griffin + brilliant + drums + anniversary + meet + goodies + 3nessltd + bangerz + bashford + birminhampride + britishsummer2018 + defacing + founder’s + hunkiness + itscorey_09856 + lifel + liko + picu + runnersknee + tielamans + wearearcades + ww100 | 83 | 0.0097648 |
1505 | sabras + fantastic + night + team + sponsors + nims + bhavin’s + birminghampride + directo + enthus + fittingly + londonmarathon18 + majinder + makai + malala’s + pjxiv2019 + reytagainstmachine + superf + the_garage_flowers + u17b + yersel + yousafzai + ziauddin | 83 | 0.0097648 |
1514 | anxiety + pain + server + bipolar + 224 + cambell + deepl + disabling + gassy + gastroparesis + godhaabakqqhiw + ikhwaan + insistence + krasznahorkai + kyopolou + l’m + majah + netflixoriginal + remarried + seasonings + seokmin + singleparent + sunan + tenne + villanelles | 83 | 0.0097648 |
1704 | saha + campus + impro + ww1 + meeting + solutions + site + printing + forward + team | 83 | 0.0097648 |
1735 | brexit + vote + eu + tories + amendment + conservatives + labour + surviving + customs + deal | 83 | 0.0097648 |
392 | luck + rugbyinheaven + alevelresultsday2018 + coyks + forvalour + ipswichballer + itsboomtime + mindbuilder + onceagooneralwaysagooner + womeninmedicine | 83 | 0.0097648 |
393 | goodnight + night + bud + chotu + gnight + hugsfornav + mataji + rashad + speedyrecovery + yeeh | 83 | 0.0097648 |
449 | cellino + tiling + ha + mbali + od + elaborate + gorge + origins + survivor + admitting | 83 | 0.0097648 |
609 | adeola + corpses + devvy + thebloomalbum + zombs + bomfunk + engerland + swelled + callmebyyourname + chika + freestyler + torment | 83 | 0.0097648 |
632 | positioned + henrycatt + lpc2018 + patchouli + takeingtheboyoutofnottingham + بـ + ذكرني + dementor + howl’s + otrb + wannables | 83 | 0.0097648 |
768 | fuk + alan + andthewinneris + ballpits + bribery’you + chokoraas + coursework’ll + inje + leavehimalone + reminderespeciallyformyself + snowfl + wanasemanga + youknowwhoyouare | 83 | 0.0097648 |
85 | nite + toastie + mustard + foodwaste + unitedkingdom + ham + cheese + free + tuckered + toasties | 83 | 0.0097648 |
867 | brexit + voted + labour + eu + leave + vote + rudd + tories + 17.4m + extension | 83 | 0.0097648 |
925 | rap + mumble + music + song + rappers + assurance + katy + genre + album + anthem | 83 | 0.0097648 |
955 | song + 70 + rap + muslim + rihanna + listening + portuguese + america + 32yrs + bangerss + cacuasians + colman’s + dontcare + faught + flemish + hongkongers + jhad + memorized + pamela’s + pokemonthepowerofus + seenwhat + tyndall + wringing + you.the | 83 | 0.0097648 |
966 | raheem + stormzy + albrighton + harsha + lothbrok + medicals + skandalous + walshie + gareth + bosch + feltz + sjoberg + uppa | 83 | 0.0097648 |
1004 | charlatan + jeremykyle + cunt + bla + fucking + jayda + kurtha + mustbewalkers + outrages + starks + unprincipled + unwashed | 82 | 0.0096472 |
1182 | moin + kevinthecarrot + mugged + chanting + ahkmenrah + ankara + barmyarmy + festjustsaying + grudgeful + ineverdance + liztruss + mediaeval + moscovites + pisspoortours + rican + teamaquaria + teamkameron + trumpshutown | 82 | 0.0096472 |
1471 | tickets + tfs + 02 + afrocarni + junior + camp + deals + branded + sale + sold | 82 | 0.0096472 |
189 | ukjobs + crazy + assembly + contractors + easter + leicester’s + painting + central + idea + apprentice + performed | 82 | 0.0096472 |
236 | getpaid + mnfst + influencer + graffitiart + urbanart + bringthepaint + download + graffiti + app + 1up | 82 | 0.0096472 |
341 | lvl + follow + lashlift + lash + thebeautyhavenleics + instalashes + nouveaulvl + lift + lvllashes + naturallashes + nouveaulashes | 82 | 0.0096472 |
361 | dancing + creampuffs + signing + epic + april2018 + clexacon2018 + fetchyourlife + omgomgomgomgomg + ukcreampuff + wallis | 82 | 0.0096472 |
497 | conniexnewlook + autie + copaselfieking + goodo + catalog + etches + photobomb + chirpy + pinny + cozzie | 82 | 0.0096472 |
671 | costco + __________ + europe + retail + weddingparty + venueleicester + voluptuous + partytime + ____________ + _________ | 82 | 0.0096472 |
954 | wicker + wrestlemania + bicentenary + biggardenbirdwatch + blingy + chertseypanto + cocoaworld + daresay + eccleshall + hl + instragammable + shoreham + ttm + tumbet + wolfrun2018 | 82 | 0.0096472 |
1035 | yh + bin + ah + absabloodylutely + anx + grrrl + nobe + pineappleciti + sweart + virtuous + yeaas | 81 | 0.0095295 |
1050 | devastated + alcudia + asyouwere + backsies + cahpo + garnering + inbreakable + lfucking + naspers + noshame + revan + smugmodeon + snogger | 81 | 0.0095295 |
108 | mood + mooded + shmood + fr + af + moods + rly + asf + perfectly + process | 81 | 0.0095295 |
1397 | socialmedia + phd + numan + studios + analyser + baranowska + beforehan + buddha’s + characteri + clinicalscience + congresotoxicologia + crossers + dawkinsellis + ddrb + deacs + deeplearning + dietetic + dietitiansweek2019 + ecotec + familyrun + fimba + financialservices + fourthgeneration + freenas + gurminder + healthapps + highgrowth + ilc + internationalarchaeologyday + jagdev + legislatively + livingalive + lptplt18 + mickey90 + moggmentum + oaanewcastle2019 + officepolitics + roadtoespoo + rulebased + safedriving + scad + scardifield + sciospec + signups + sonocent + soutar + specialneeds + successionplanning + toxicol + tvis + ucisa + volvoxc60 + way.c’mon + wehorr + whatrdsdo | 81 | 0.0095295 |
1570 | prices + tax + homes + price + building + council + unsure + feeding + automatical + communiti + concensous + concreting + deploym + homose + lifers + likesome + million’s + newpm + pernicious + pupillages + qobuz + shoud’ve + swathesof + whenprotestartmirrorslife | 81 | 0.0095295 |
1707 | proudtobecalthropsno1fans + comic + team + treasureisland + launch + expectation + teamdmu + proudtobemore + donated + 4.20 + 97.3fm + airambulance + annotation + ardour + areweready + attendanceandpunctuality + benovelence + betula + castlemeadacademy + citiloaders + damged + ellxxtt + emira + expofcare + kohinoor + laundeprimaryschool + magi + mildmay + murugan + nationalbourbonday + northbynorthwich + overvi + patientsfirst + pendula + perumal + radio2funky + ridersfamily + rmjazzband + sanditoksvig + soulism + square’s + teamfestiveflorals + whitfield’s + wildabeast__ + yawncoffeeco | 81 | 0.0095295 |
171 | agree + totally + 100 + wholeheartedly + fay’s + lynwen + tripit + walts + percent + totaly | 81 | 0.0095295 |
178 | fab + xxx + rbird + nowruz + rkid + xzx + kool + crackin + evolving + obv | 81 | 0.0095295 |
268 | race + winner + congratulations + lmdctour + guided + timepm + pro + app + champions + sixth | 81 | 0.0095295 |
524 | congratulations + becareful + boysh + husqvarna + justinsherwood + leefrost + luckykhera + tez + coys + toptipping + trog | 81 | 0.0095295 |
590 | calm + uh + swear + signed + mate + chald + makeanoldsayingdirty + breddah + deafness + ushie | 81 | 0.0095295 |
621 | service + customer + disgusting + retweeting + 4k + zara + android + 2mora + airwo + concep + daum + enlarge + fancafe + ffa + fucktheaccountant + ouzels + samsungnote + schematics | 81 | 0.0095295 |
800 | pubs + ukpubs + reign + dovercastle + helsinkinightclub + rainbowanddove + blackhorse + ireign + wereign + pubsmatter | 81 | 0.0095295 |
826 | pillow + inshallah + qik + sabelo + tanqueray + polish + garnishes + wicklow + boe + penoosa | 81 | 0.0095295 |
878 | cooked + goddess + chrome + declined + aliens + breakfast + narrative + sell + alibis + asalamualaikum + domme + horizont + kubernetes + malp + recogniti + riseyourwallet + sayimg + shitstor + surpost + telli + truecaller + umthakathi + waktu | 81 | 0.0095295 |
912 | sdgs + spate + year11 + year8 + presttitut + today’s + mumbai + improving + abortio + accoutrements + aspley + book’s + deputising + eastmidlandsgateway + facu + firebug’s + hhpapp + indianapolis + ioan + juntendo + kinmonth + lesley’s + longlister + machynlleth + marfan + n.robinson + ng_supereagles + plou + pwei + radiolink + selfmanagement + sustainabledevelopment + wmcna + worksmart + ypf | 81 | 0.0095295 |
924 | americans + somalians + rah + africans + grooming + rafa + nob + pokemon + altooki + carribbeans + delusia + fantasist + inbreeding + kebbell + lacasadelasflores + northernness + romanians + shur + tase + yoplait | 81 | 0.0095295 |
967 | evil + effigies + filipino + issa + accent + jennifer + catchy + asf + showman + live | 81 | 0.0095295 |
992 | totally + software + 22minutes + agree.never + dedirable + detori + downsized + ebikers + ecclesial + flawlessly + henryhoover + mael + mefuckinow + motocross + nguru + nitpick + obl + paper’s + prevaricating + reichsparteitagsgelände + rti + shiko + suzhou + that.s + wagers | 81 | 0.0095295 |
1061 | brokenkettlehell + visuals + slipped + mvp + moments + run + morning + avantdale + blitzed + bruno.nelly + dogs.this + domesticated + edithstein + furpals + got8 + papaji + penury + smthg + sttheresabenedictaofthecross + ta1300 + tided + waterboys | 80 | 0.0094119 |
1132 | pain + bipolar + ticket + missing + easier + aviyah’s + donnaru + hakkinen + hermionie + j22 + joaquim + meret + rgrump + smybolar + tomorr | 80 | 0.0094119 |
126 | springtreats + cash + prize + winning + collected + valentinestreats + extra + summertreats + win + chance | 80 | 0.0094119 |
1281 | 14grandkids + casemates + flirted + gedit + wye + kenzo + stripy + tellum + ibro + smoker | 80 | 0.0094119 |
1287 | attendance + rearranged + moans + uni + deductex + dejs + travel + bf + marks + realising | 80 | 0.0094119 |
136 | figures + straight + dawg + chippa + beef + hunni + ova + responsibilities + truth + akh | 80 | 0.0094119 |
531 | thousand + nineteen + hundred + eighteen + hundredths + 3qe + eighty + twenty + sixty + seventy | 80 | 0.0094119 |
596 | srivaddhanaprabha + vichai + vichaisrivaddhanaprabha + test + cannock + internationalwomensday + wishing + christmas + nhs1000miles + passed | 80 | 0.0094119 |
608 | ha + haq + sounds + batwatch + fantasic + multifacets + nwachukwu + warris + mundeles + love | 80 | 0.0094119 |
669 | passed + faults + congratulations + minor + test + attempt + buddi + drive + couple + instructor | 80 | 0.0094119 |
787 | grecian + norwichporridge + speccie + thelavenderhillmob + zap + luckoftheirish + stormtrooper + dm + clare’s + clover + mac’s + pvc + urn | 80 | 0.0094119 |
851 | newfoundland + avi + header + eve + descendent + dungul + eecomelbodo + joelycettsgotyourback + neenaws + pushingmyluck + silme + suys + unassailabletalent | 80 | 0.0094119 |
870 | slave + pain + amoeba + amoebas + bharata + catthorpe + disfuctional + free’d + lintels + natyam + psychotical + spellbound | 80 | 0.0094119 |
983 | congratulations + xxx + proud + congrats + xx + digitalchallenge + rhinoceroses + chuffed + beautif + celia + coley + lils + sportforall | 80 | 0.0094119 |
1000 | orthopaedics + physio + copywriting + haematology + sanitarium + victorian + bakineering + bivvy + committmentanddedication + congresswomen + darters + epidural + gastroenterologist + iems + majoring + meer + melodic + neurosurgery + onlinelearning + politcs + postlethwaite + pugwash + raisingawareness + retrosunday + roadrunner + shipmates + stoptober + thedays + tijuana + toobin | 79 | 0.0092942 |
1108 | loud + laughing + squadron + dataprotection + esculated + inet + pies + bigelow + lianne + shoeing | 79 | 0.0092942 |
1250 | copped + taught + beyonce’s + molehills + origen + riarchy + talkings + thefirstlineofmyautobiography + turnstiles + tick | 79 | 0.0092942 |
1379 | racehorses + raspbian + homekit + iammother + petition + installs + mattress + signed + seats + attempted + welfare | 79 | 0.0092942 |
1476 | ilovegodbecause + kingdom + sew + 011628372212 + fortnum + musc + profoto + saffronlane + welford + leicestershire | 79 | 0.0092942 |
1477 | kingdom + united + tigers + brood + thy + 2018bestnineoninstagram + americanfootball + amiallowed + aylestonecommunityawards + brûlée + corpsing + deepthoughts + diwalileicester2018 + engagemet + graceroad + gtb + heartshine.sal + ifounditlikethis + jasmin’s + kningpowerstadium + leicesterpanto + leicesterpride2018 + locat + longhorns + merrymen + ncode + npro + onebignye2018 + pieszczek + ponderment + royallondononedaycup + saffronlaneshopfronts + shimmylikeyoumeanit + sills + sydne + thechickenbaltichronicles + therapyroomsleicester + throwbackmusic + tinaturner + tittering + touristing + twoyearsenglandleicester + typicallytinashow + veryexciting + wheresthebear | 79 | 0.0092942 |
1501 | kingdom + united + comedyclub + livecomedy + standupcomedy + bioderma + comedyfestival + standup + alston + chim | 79 | 0.0092942 |
1572 | corsa + grass + formula + slime + unicorn + bird + adspace + andreessen + bookkeeping + carvah + daugh + dmugrad19 + ewelme + fartfag + financiall + from.a + futurism + gelatodog + lovell + njwk13 + okada + rainmaker + see.a + shilly + spoonie + spoonielife + whiteboards | 79 | 0.0092942 |
1649 | society + interpretation + argument + feed + var + trigger + responsibility + rely + abyssinian + adjudged + apoliticism + appropri + breakf + corresponds + cozart + cuse + enery + euvote + fevertree’s + fuckingjoking + mitigating + moats + mouthings + names.all + narwhal + public.heic + recipient’s + rh + saltiness + scrooges + strid + tresnformed + violati + youmust + 三 | 79 | 0.0092942 |
252 | prize + shucks + dead + wow + aw + giveaway + fantastic + fab + crawling + lovely | 79 | 0.0092942 |
339 | news + excellent + oneofourown + coys + breaking + reroute + rivally + talkshit + endeavor + vtid | 79 | 0.0092942 |
343 | ps4 + xbox + bf3 + hemdog + mw3 + competition + xboxone + giveaway + wicked + nintendoswitch | 79 | 0.0092942 |
492 | 104.9fm + commentary + lyrical + femaleempowerment + jhasikirani + kanganaranaut + manikarnikathequeenofjhansi + manikarnika + thousand + dab | 79 | 0.0092942 |
533 | thousand + hundredths + jingly + hundred + nineteen + fifty + census + otd + ep + ninety | 79 | 0.0092942 |
555 | moment.strict + startsomethingpriceless + tories + engvrsa + immigration + majority + rwc2019 + liars + clein + government | 79 | 0.0092942 |
578 | thousand + nineteen + fm + lock + waves + tenths + eighteen + hundredths + youth + hitting | 79 | 0.0092942 |
624 | kingdom + blackcatsofinstagram + catsofinstagram + blackcats + united + nikond4 + tamronmacro90mm + cats + streetphotography + photographs | 79 | 0.0092942 |
653 | anthem + national + fake + news + todays + da + bowie + aventador + benzo + bestamericanasong + bitchesz + carpoolkaraoke + clouzineinternationalmusicaward + deep’s + drillers + grennan’s + kermet + lilbaby + livee + mayle’s + niguh’s + proffesor + schwarzer + siwas + skepta’s + slaughterer’s + tkay’s + trappers + walkupandkissyou + wintermans | 79 | 0.0092942 |
66 | tenyears + pride + leicesterpride + lgbt + parade + gay + beckons + dusk + march + leicestershire | 79 | 0.0092942 |
660 | penalty + weaker + thinner + penalties + blunter + complicates + coxonian + grumpier + hendersons + melbournederby + nigarg + thoushallnotgettooinvolved + tigris | 79 | 0.0092942 |
684 | foals + win + ynwa + liverpool + spurs + bets + arseholed + assenal + champag + thankyouarsene | 79 | 0.0092942 |
696 | married + discriminate + unfollowed + dumb + elected + people + cousins + insidenumber10 + jaide + mokes + msd + shushed | 79 | 0.0092942 |
714 | ass + laughing + hell + fucking + bloody + christmaslocally + wilin + jammiest + kodak’s + roasts | 79 | 0.0092942 |
786 | giftbetter + eat + amounts + bills + brianna + couplers + déjeuner + fathersons + gudday + guzzle + milkshaking + mybackpackisfullof + voteonthursday | 79 | 0.0092942 |
811 | grm + daily + video + music + m1llionz + headbanger + headie + mods + 50shadesoftiger + aj4y7 + anilbria + baynes + clacey + david_sachdev + doingwhatwedobest + doj + dolores + ekk + emilio + gabriela + georgeezra + gruenwald + hasselblad + hotsummerdays + imstillremembering + internetfriends + internetfriendsmeeting + linh + lippy’s + luzern + medellin + mmtakeover + muotd + neilsmithcreati + newcombe + nguygen + rabbitrabbit + sbtv + simrunbadh + snookerloopy + sunmer + twoyearold + xpan | 79 | 0.0092942 |
893 | chelshit + pum + classic + dickhead + sack + continue + 3wordweather + 43yr + celled + davounii + smoocher + thebiglearnersrally | 79 | 0.0092942 |
102 | true + honey + amazing + xx + hurt + amaazing + implications + donna + wont + inspiration | 78 | 0.0091766 |
1028 | uni + msg + friends + sand + bloviate + breate + comimg + disembodied + fieldtrip + gdprcompliance + gdprjokes + gdprready + jokermovie + jonghyun + marshawn + notajust + pokestops + reappl + showup + wishme | 78 | 0.0091766 |
1107 | inspiring + ramadan + hosted + honoured + tri + invited + joined + 50years + abbeypumpingstation + annum + birdin + birdwatcher + bonaventura + chocolatekrispiecakes + cimc2018 + cjc + convertib + dmuvloggers + doha2019 + expressos + fenton + funafterschool + gpcareers + gpjobs + granbabiesmuchlove + hairpage + healthyschool + homegro + iowfestival + librarylife + lovemission + m240i + receivers + ryalls + sedbergh + vmware + watersidecare + wheresthevodka + wherewouldbebewithoutmusic | 78 | 0.0091766 |
1249 | ravishingrumble + revering + sksjks + timemins + yatts + deleted + freshh + jikook + reinvent + whimsy | 78 | 0.0091766 |
1368 | piers + abortion + murder + woman + rid + judges + sympathy + agree + religious + disgusting | 78 | 0.0091766 |
1450 | presenters + asthetically + coachsackings + nel + shejxjsn + naked + amrezy + bobbies + down’s + epq | 78 | 0.0091766 |
1516 | metafilter + cortisol + importance + vertical + attend + children + feed + protein + botw + cbdengland + cdb + crossbones + datascience + diggle + doubleneck + frictionless + housingassociation + middl + norse + proteios + rememberedeverythingelse + restating + riscpc | 78 | 0.0091766 |
1581 | xmp + issue + exclusion + cost + 23.9 + ecommerce + environmen + fromabanker + herbies + housingforall + ironica + itgs + neen + populat + processi + sard + shrinks + stasi + tonhrt + transhumanism + unanswerable + youbrokeityoufixit | 78 | 0.0091766 |
182 | addasupervillainruinanything + cute + wow + hey + read + follow + cutehh + shek + villian + darkseid + xz | 78 | 0.0091766 |
203 | addisu + thankyou.lins + honourable + kiran + curriculum + sir + gentleman + praise + neil + purpose | 78 | 0.0091766 |
212 | mixture + blindfold + widows + bled + mouldy + pillocks + pish + tbqh + bit + duh | 78 | 0.0091766 |
471 | goodnight + morning + night + goodmorning + sending + hg + lover + cancerwarrior + bhudi + earlyrisersclub | 78 | 0.0091766 |
586 | grateful + pathway + vichai + completed + specifically + dreams + followers + alzheimers + countryroads + derick + dhani’s + grandm + piersy + prattling + pulpit + ripastori + september13 + sizz + ugliness + wonderous + zoglive | 78 | 0.0091766 |
739 | heartache + cheatin + loosing + carla + carter + war + talentless + teary + lost + snowing | 78 | 0.0091766 |
861 | trousers + biffers + deniys + fifalife + krokodil + portaloos + ryanaircyberweek + slappers + harvesting + strains | 78 | 0.0091766 |
89 | version + fireworks + imma + start | 78 | 0.0091766 |
918 | lynda + comm + eaton + cllr + sunday’s + 1963 + 260st + althusser + brigden’s + cambria’s + disadvantages + freego + gen2 + gene1 + hallvard + jmasouri + kalamazoo + onlyonepxg + oscarprincemusic + otmoor + pilotlife + segamastersystem + sidebottom + steffens + sundaygolf + unheavenly + usernamelondon + wined + wmn + wotsapp | 78 | 0.0091766 |
957 | massage + glasses + eaten + 9am + inches + weather + 13p + batchelors + disappointingly + mrsa + sorento + umbria | 78 | 0.0091766 |
993 | chitty + mh + mis + junction + les + 180cals + adapts + contin’d + dilute + doomsdayclock + enhanc + fom19 + form.a + fragmenting + img2 + joo + lectu + lucis + mba’s + menstruation + monoxid + nehitv + parliam + plantbasedmag + rejoined + valentinoremz + viewi + walvaus + weshallnotsurrender + xamarin | 78 | 0.0091766 |
995 | tickets + batch + grab + behindcloseddoors + leicesterracecourse + cop + carvery + moneypp + sold + stalls | 78 | 0.0091766 |
1145 | pom + awkward + darksideofthering + fckdd + k.i.d.s + loovens + shalln’t + transcend + turley + amazingaldichristmas + brody + bruiser + carrow | 77 | 0.0090590 |
1208 | uniting + arcade + roundabout + cultures + universal + phoenix + 126 + 1se + 25mpg + 85mm18 + admi + anaesthetists + bamber + blos + challengesin + conceicao + directline + endeavoured + euthanized + glamor + gorgonzola + hollywoo + hollywoodbowl + looped + pestfromthewest + rehydrated + rob_hoang + roni + seethepersonnotthedisease + to0 + troubleso + vaulted | 77 | 0.0090590 |
130 | competition + fab + guys + gregs + xx + milo + teamwork + xxx + brilliant + comp | 77 | 0.0090590 |
1307 | crassness + normies + pratchett + pratchettesque + reusing + royston + rza + thoux + winmimg + zeitgeisty | 77 | 0.0090590 |
1349 | habits + miss + isol + nexy + ohlife + poerty + rubbishnow + sorrynotinmyvocab + toing + wowowowo | 77 | 0.0090590 |
1600 | jnbl + join + saturday + gameday + event + september + pilot + 9.30am + meal + joining | 77 | 0.0090590 |
161 | beautiful + promises + gorgeous + flecks + wearly + pastey + dapper + horrors + progressed + madders | 77 | 0.0090590 |
1630 | details + academy2 + tickets + rakhee’s + 5pm + tomorrow + eighth + venue + krishna + portfolio | 77 | 0.0090590 |
1661 | absence + destroy + 1john + beachlive + blatently + coulysee + detach + dontchan + famine + florrie + multiplesclerosis + multitudes + p’rhaps + profaned + seagal + successe + wishe + yonce | 77 | 0.0090590 |
1706 | smallbusiness + coring + fashioningacity + monnet + conference + governance + session + meeting + jean + supporting | 77 | 0.0090590 |
1723 | centres + conference + ordination + event + meeting + quickest + forward + forthcoming + leadership + litter | 77 | 0.0090590 |
181 | brill + weekend + lovely + liam + daniel + simon + mike + stephen + jonathan + matthew | 77 | 0.0090590 |
215 | bendybus + feellikeakid + bendy + weriseagain + coops + robbo + fastest + recommendation + striker + slice | 77 | 0.0090590 |
29 | endomondo + endorphins + cycling + hundredths + miles + finished + 1h + null + 34m + fifty | 77 | 0.0090590 |
320 | kingdom + united + vince + deadlifts + golf + amagraduate + ballestero + beingextra + caddyshackersleicester + catspring + fauxleather + gibbstaa + hollins + jellylegs + kirstyblackwellphotography + loughboroughtoleicester + makingitcount + orwell1984 + sargent + sevvy + zaramen | 77 | 0.0090590 |
369 | snout + mummy + gut + cow + gonna + suck + cunts + speed + grown + basirat + bubby + paapi + problemz + twodoorsdown + udders + ungreatful + whxhsnxb | 77 | 0.0090590 |
419 | r.i.p + christmas + halloween + g.o.a.t + p.i.m.p + xmas + woop + valentine + a.s.f.w + boune + djah + h.i.t.h + hussles + jlloyd + junky + l.f.c + m.a.a.d + m.i.l.f + onerepublic + s.i.m.p | 77 | 0.0090590 |
466 | picoftheday + wall + wallpaper + mural + bespoke + style + art + cum + photo + tile | 77 | 0.0090590 |
503 | zaha + 12g + 9g + advan + allerdice + artifici + mubepa + semunhu + stimmos + vakapinda + zvinotobuda | 77 | 0.0090590 |
606 | afsaanah + alahumabarik + buffness + farfromhome + funiest + hindrance + wayhay + twin + jake + csnt + defin + everlasting + leicestee + pallete + rheumatoid + ukhti | 77 | 0.0090590 |
794 | chelsea + 0 + 1 + lcfc + liverpool + performance + lfc + season + 2 + avfc | 77 | 0.0090590 |
819 | friday + bday + sleep + sunday’s + o’clock + 7.45 + friìiday + growingupfinally + mortgagewankers + thatdepressionfeel | 77 | 0.0090590 |
894 | xxx + bravi + dingy’s + l.o.l + ragazzi + spreed + donel + sweeties + ya + sammie + tomasz | 77 | 0.0090590 |
1127 | choccy + allstarsbasketball + beefier + chilleh + dysonfan + pook + warband + wwelita + yummeh + supply | 76 | 0.0089413 |
1133 | stroke + word + cheers + cbr500r + haaving + yeah + a7i + sonyalpha + boy + christianhiphop | 76 | 0.0089413 |
1161 | anna + 7.8 + aiden’s + brionys + gies + leanham + loy + phobias + silverlining + tigerroll | 76 | 0.0089413 |
150 | mornin + glory + pallet + wraps + shrink + cardboard + materials + packaging + deals + boxes | 76 | 0.0089413 |
1619 | shorts + pon + surreal + 1880s + 2ns + abbé + amicus + askpixie + eryng + hasenhüttl’s + littrell + macquart + manish’s + mouret + pathology + popworld + rewi + rougon + rox + steinberg + understatemen + vanishin + wafting + yhr + zola’s | 76 | 0.0089413 |
1643 | overheard + reverses + output + 3two10 + adeolokun + biscui + chastise + duck’s + eunuch + holiday.could + inkle + man.utd + parkruns + rosslyn + scuffle + slapdash + somew + strategica + timepieces + watchmen + yarble + yarbles | 76 | 0.0089413 |
475 | holistic + healing + peregrine + england + dobbersweeklyweighin + hicarty + health + cathedral + officialgfw + peregrinefalcon | 76 | 0.0089413 |
604 | wah + cbb + comedian + 400th + blackiron + candy’s + carr’s + clugston + etive + gallic + itselioyefeso + jenson + lem + lundun + middled + orrin + ripniphussle + ron’s + satcheleaster + speedo’s + stressawarenessmonth + theoutlaws + wizz + yosserllyes | 76 | 0.0089413 |
610 | foodbank + channel + oadby + families + helped + breaking + label + dj + club + music | 76 | 0.0089413 |
623 | luffy + sick + sauce + stuart + christmaleftovers + cornmeal + cremeeggmayo + mossy + vaps + chilli | 76 | 0.0089413 |
645 | brexit + time’s + palestine + justify + disgusting + corrasco + ottomans + paneka + phonebanked + saladin + vurb | 76 | 0.0089413 |
655 | ba + beefa + jejune + peno’s + playdough + righty + sldr + stormgareth + unponcey + painful | 76 | 0.0089413 |
676 | immigrant + fbi + language + connor + claiming + aizen + ichigo + liluffy + loose.stopbrexit + machetes + prorougeing + sieg + wym | 76 | 0.0089413 |
681 | jeremykyle + pranked + jezza + boris + cos + absouletly + bulldogs.jeremykyle + cheltenhamfestival2018 + flightless + hoffmeister + ipulate + lie.jeremykyle + mwahahhahahahhahaha + oxymoronic + remebered + strongbowdarked | 76 | 0.0089413 |
724 | dollar + climate + strike + arses + socialism + animals + green + reduction + bolton + viral | 76 | 0.0089413 |
75 | prize + guys + fab + scenes + mcfluzza + fabulous + yummy + ace + awesome + epic | 76 | 0.0089413 |
762 | guji + inclement + larkai + mcmoon + moony + needanotherholiday + pocketmags + tayyab’s + wentz + masi + nisha | 76 | 0.0089413 |
1184 | der + 649 + andrewmarrshow + ayleks + biggums + chons + cohent + excised + frav + jarvid + mccoys + neagan + squaishey + stampy + womams | 75 | 0.0088237 |
1323 | biology + question + agutter + antwood + behr + chemistryin4words + everitme + gettogether + loviest + wint | 75 | 0.0088237 |
135 | giveaway + galaxy + iphone + xs + samsung + oneplus + rt + max + s9 + prize | 75 | 0.0088237 |
1407 | burgess + avenged + badshah + bèen + degr + hights + improveyourlifein4words + s’okay + sevenfold + anthony | 75 | 0.0088237 |
1597 | catastrophic + climatechange + universities + persons + impact + worldwide + aboriginal + apparates + being’s + circumvent + citation + grolsch + haggarty + impostors + impre + loyalist + netballworldcup + ofte + qabbalistic + sephirah + statele + terns + yesod | 75 | 0.0088237 |
176 | mckenzie + archives + welterweight + 90s + boxing + tony + professional + british + light + champion | 75 | 0.0088237 |
294 | keepyourfeethappy + thehappyfootclinic + healthycuticles + healthynails + happynails + scentedcuticleoil + birthday + keepyournailspretty + happy + cuticleoils | 75 | 0.0088237 |
384 | competition + wow + screenwriter + yoy + adapt + animation + accom + follower + urge + respond | 75 | 0.0088237 |
536 | thousand + hundred + eighteen + ninety + nineteen + seventy + eighty + heatwave + sixty + thirteen | 75 | 0.0088237 |
618 | superb + gadd + mendy + robbie + _mendy + bewaremadeiramarket + bibao + c.g.i + helmcken + midsummers + notknowihad + playbill | 75 | 0.0088237 |
700 | 0to100 + avaliable + christine’s + eversograteful + grammy2019 + grammyawards2019 + internationaldogday + loveasnapchatfilter + mygorgeousgranddaughter + octavia + remus + shadeson + valantine | 75 | 0.0088237 |
729 | soupa + sleep + timetable + chunder + iciroc + ngicela + profanities + toungeouttuesday + woken + appletizer + lye | 75 | 0.0088237 |
740 | xx + babe + horny + underwear + lippy + bum + nice + bra + lea_ldn + misho + nac’s | 75 | 0.0088237 |
812 | freshener + hybrid + dyinghg + elbe + fodmap + loil + woos + woza + yeshobby + medicate + treads | 75 | 0.0088237 |
862 | bhoy + congratulations + superstars + proud + congrats + deserved + achievement + infirmary + batleyandspen + bryers + gishmeme + lydo + muchas | 75 | 0.0088237 |
949 | outcome + 8c + braverman + estée + freako + gainsbourg + o’reilly + pharoah + poyser + selector + sisu + winx | 75 | 0.0088237 |
996 | song + banger + bop + repeat + songs + album + 1x + tune + albums + track | 75 | 0.0088237 |
1156 | lecturers + itsofficial + scion + snowpatrol + theapprenticetwenty18 + throwupthex + uniformed + valid + dubya + nakedness + pfeffel | 74 | 0.0087060 |
1236 | akata + bankdrain + bellaroma + chimamanda + doers + gallardo + maxandjanine + princenaseem + skated + tineye + v.r | 74 | 0.0087060 |
1300 | mhra + duplicating + return + file + automatic + livesnotknives + assessment + 17 + forming + db | 74 | 0.0087060 |
1343 | degree + uni + swim + bus + 18p + 2020commission + auburn + cashshow + darkskinned + econometrics + radio1escaperoom + tb2k17 | 74 | 0.0087060 |
1412 | cry + retweeted + edgelords + embittered + filmore + offbrand + sticking + 5ft7 + lecherous + tampax | 74 | 0.0087060 |
1474 | recipe + bottomless + 5pm + menu + beers + christmas + 8pm + stickers + tomorrow + delicious | 74 | 0.0087060 |
1598 | pyrography + click + view + bright + technically + assignmen + beatnik + caudaequinasyndrome + collarless + epistemology + excelle + faccinating + gallaher + hik + hyperbad + kungs + lithuanian + mansfiel + marshmallowspine + momento + senorita + smws + spinalcordinjury + triumphdolomite + whiteout + xmasdinner | 74 | 0.0087060 |
502 | sweetie + healty + icant + instergram + joeys + normani + terrol + wishidhaveadayofrompsychoanalysis + seduce + worsening | 74 | 0.0087060 |
625 | hungry + tea + eurovision + labs + characterising + mne + phizz + timemovesfast + messi + rumbling + svn + turchi + turchiconquest | 74 | 0.0087060 |
668 | balloon + blimp + sadiq + badgers + affording + authorizes + desdamona + livestock + othello + rebooting + unshakeable | 74 | 0.0087060 |
753 | paycheck + scumbag + mourinho + awhwe + callipers + cheila + dirty_knix + heiko + knicked + skinfold + sophy | 74 | 0.0087060 |
793 | jamaica + armitage + jenners + kardashians + laws + zimbabwean + florence + unpopular + listening + apology | 74 | 0.0087060 |
909 | brexit + corrupt + eu + tory + centrist + poorer + democracy + tories + negative + conflict | 74 | 0.0087060 |
990 | wait + sleeps + adaduk19 + bcmepencilsforrobaloumeracy + gatprimaryathletics + liveshows + mackems + manship + oneofthoseweeks + schofe + thankyouander + unbelievablejeff | 74 | 0.0087060 |
999 | auchinleck + bcce + blackbur + consert + grammable + icce + linn + loth + outground + saturdayfootball + venetia | 74 | 0.0087060 |
1137 | unhappy + cba + 2ये + disconcerted + jakarta + melodramatic + nospoilers + ohthsnk + unconventionally + इंडिया + मेरा + हे | 73 | 0.0085884 |
1141 | cute + austriangp + bestinworld + cringemoment + hallucinations + huggable + ifuknowuknow + lowo + smahsing + teamajd + troilusandcressidapuns + weeklyfix | 73 | 0.0085884 |
121 | inspirationnation + welcomee + corona + excused + m’lady + bhai + designs + dear + welcomed + ricky | 73 | 0.0085884 |
1259 | krazy + arctic + louder + monkeys + bananana + chloeout + heartier + humours + keepmoat + swimmin | 73 | 0.0085884 |
1325 | uni + ammar + bevv’d + lso + stiddy + streetwanks + pulling + blare + raisa + sponging | 73 | 0.0085884 |
1365 | pain + wavey + wprkers + blessings + forging + fuckyou + uncontrollable + wayside + hideaway + 1kg | 73 | 0.0085884 |
1422 | literature + andrias + corbn + dealornodeal + diraac + issue’s + markahams + smmh + specificity + spleen + the’adult + unpicked | 73 | 0.0085884 |
147 | awesome + fantastic + lizkendall + nationalbestfriendsday + lovely + jools + transformers + chum + canvas + tracksuit | 73 | 0.0085884 |
1538 | la + grindhouse + refix + ukbass + ukhouse + magazine + crocodile + martin’s + comedy + gates | 73 | 0.0085884 |
158 | splendid + msdukinnovationchallenge + ooo + santa + im + ive + moose + markets + pig + hump | 73 | 0.0085884 |
1689 | donation + contributed + cbd + construction + forum + absolutelyfantastic + bollywoodagents2018 + davegorman + deliving + doktorhazecircusofhorrors + evrey + glenf + hpv + ipcc + irie + jurassickingdom + lija + mainstre + makku + nasendco + nauts + parking’s + platinumed + samesamedifferent + sefton + skillstests + stemcell + tran4m + transitiongameisstrong + upcomin + uuklockout + wilderfuture | 73 | 0.0085884 |
1715 | orchestral + sessions + students + interactive + languages + academics + innovative + project + build + 1keycrew + artinschool + changemakers + creativitymatters + darkon2021 + databases + efen + empowermusem + endangerin + finnie + fundingfair19 + futurecreatives + gatwacommunity + leadinginleicester + leture + liftengineering + m.p + nextrans + nursesweek2018 + radicalinclusion + registrars + sassi + step’with + tedium + thght + vocational | 73 | 0.0085884 |
232 | 2556161 + unreal + buffet + iftar + forreal + 10pm + 6pm + real + details + sixteen | 73 | 0.0085884 |
255 | lt + 3 + 33 + 333 + xd + chelle + k0n + lurv + taytay + yeen + yoon | 73 | 0.0085884 |
267 | lesserknownkindsofwars + bbcradioleicester + leiche + winners + pro + cup + app + beat + war + final | 73 | 0.0085884 |
285 | disgrace + amendments + lords + amazing + disgraceful + cricketaustralia + houseoflords + medicalscience + tarnation + spongers | 73 | 0.0085884 |
356 | bella + woo + saluti + wit + birthday + happy + mornin + anniversary + whoop + geetz + salutibella | 73 | 0.0085884 |
364 | 0to100returns + fantastic + lit + representing + 0toone00returns + derful + labourbellend + takingthepisstuesday + catch + rave | 73 | 0.0085884 |
379 | cheers + geoff + fella + dude + birthday + accabusters + darbo + subscribeormissout + sxy + gurn + shinj | 73 | 0.0085884 |
500 | r’n’r + anytime + raio + refilling + aw + midges + nivea + vks + glue + ideal | 73 | 0.0085884 |
704 | yeah + halved + lidl + dictionary + charm + chill + helps + ouhh + rivetz + uhuh | 73 | 0.0085884 |
745 | banterawaydays + crispay + ralf + tooz + tree’s + wobbed + newshepard + synthwave + ferret + squid + su4 | 73 | 0.0085884 |
98 | har + tweeter + dearest + weekend + mahadev + lovely + india + surprise + shree + wonderful | 73 | 0.0085884 |
988 | boris + adulterer + ashes.engaus + balvin + belcher + chibu + crus + gangstas + heathcliffe + mortez + privilage + titoff + wynonnaearp | 73 | 0.0085884 |
1048 | thugga + versatile + betrayer + cucks + demandbetter + deuxpoints + edgware + haahhaa + ikpeazuhasfailed + irritayting + kurewa + swantonbomb + trrc + twirraa + whitesnakes | 72 | 0.0084707 |
1114 | sanctions + immature + lame + geller’s + pathetic + payer + uri + dangerous + brexit + politics | 72 | 0.0084707 |
1131 | heist + sexily + dramatically + escalated + maura + congrecolition + fewmin + foine + hollys + storh | 72 | 0.0084707 |
1227 | miss + parenting + teacher + bants + kelis + photography’s + randomest + sheneedsamakeoverbyamua + tweety + reply | 72 | 0.0084707 |
124 | bugsbunnyabook + bunny + feta + salads + greek + foodwaste + unitedkingdom + bugs + rabbit + bunnies | 72 | 0.0084707 |
1258 | lawrence + fitness + 5mths + audioblogic + bigpedal + birdlife + blaw2019 + bookofshadows + cameofameo + cheapflight + decathlon + embroiderer + finess + foundinthespiderweb + jeret + leteverythingthathasbreadthpraisethelord + mylestones + oadbyapaw + optimistically + postyourpicandgainwithfam + praisegod + rccg + startline + stuntcoordinator + summercrush + tema + yearofcolour | 72 | 0.0084707 |
1309 | apeth + bringbackthenationaldex + danerys + gorbachev + menories + overdressed + ratemyplate + tirnom + appropriateness + bolder + doja + echr + hollies + ratae + revolve + tensioning + wqe | 72 | 0.0084707 |
1520 | branches + car + children + academics + armed + bursa + cowa + cseday19 + daudia’s + dibnah + edf + fiendishly + godsons + helpinghands + indifensible + judiannes + muss + pagerank + philologists + propulsion + psychia + reformation + renton + repairman + saffir + sportspsychology + stranglin + subsiste + sunak + upo | 72 | 0.0084707 |
1524 | darcy + launch + eco + announce + syston + 1of + amresearching + apaka469 + armistice2018 + backbypopulardemand + bbcleiceste + blemish + communitychampions + dumbfounded + eflplayofinal + era_thekid + evin + faulkes + fullcar + gianluca + herschel’s + histfic + huzzah + learnining + leicesteropen30 + leicsatmipim + mokulito + mokulitoprint + neoelegance + playwright + posca + posne + psec + qualifiying + ravensbridge + remebranceday + rhiann + sikhsoldiers + skillbuild2018 + squonk + talktopresident + thecarmillamovie + thedebutradar + triumvirate + vaperazzi + vialli + watsondayout + workwinter2018 | 72 | 0.0084707 |
282 | snooker + size + shoot + eighteen + photos + thousand + ten + waist + sizes + medium | 72 | 0.0084707 |
318 | fantastic + wonderful + superb + efcfamily + wondurfull + outstanding + illustration + brave + stunning + excellent | 72 | 0.0084707 |
48 | ltid + coyb + fab + xx + stadium + leicestershire + lcfc + king + power + ltidlcfc | 72 | 0.0084707 |
78 | 8️⃣ + luckiest + inspirationnation + hoping + babe + favourite + advent + day + adv + cola | 72 | 0.0084707 |
790 | peaceful + amazingaldichristmas + hope + max + afternoon + day + wishing + morning + happy + inspirationnation | 72 | 0.0084707 |
873 | kev + enjoy + 3thousand + onbut + pikapika + see.sound + summerxs + unmute + yourll + admins + busybusy + furman + tinks + tryanuary + tuffers + walnutgate | 72 | 0.0084707 |
901 | gangs + cats + operating + ayite + gridlock + groml + polistick + unconventionaldarkness + behave + washy + wishy | 72 | 0.0084707 |
95 | getgarytosingwithemma + relightmyfire + gbsolo2018 + foodwaste + unitedkingdom + desire + baguette + 32ff + faketits + flatbreads | 72 | 0.0084707 |
968 | english + spanish + forntite + galicia + galician + guys.he + lonliest + mainlander + methodological + ned’s + song.happy | 72 | 0.0084707 |
1045 | yeyi + dashed + clarity + 2mnths + cedr + hbe + jalesh + spongerob + squirted + th3 + toliver + twitterniece | 71 | 0.0083531 |
1120 | esl’s + fished + horseboxdrivers + justanopinion + smartieplum + stanleykubrick + 40p + herod + crunchies + driverless + enroute + wus | 71 | 0.0083531 |
1264 | uni + lecture + lecturer + 9hours + arcitic + clumsiness + detoxicated + eligius + evacuating + galletas + gurt + renay’s + spacekru + tosta + wnloading | 71 | 0.0083531 |
1286 | laugh + linked + braggers + eminem’s + fcks + galvanize + lifeisprecious + parrysparody + pubescent + youmatter + youngens + zuckerburg | 71 | 0.0083531 |
1289 | angry + irritated + stressed + feeling + andro + decisions:d + forgetten + navs + babybels + dest + remixing | 71 | 0.0083531 |
131 | theapprentice2018 + whoop + camilla + spoty + sian + 22 + gin + distillers + photography + ginschool | 71 | 0.0083531 |
1340 | hate + unsee + addington + alwaysjustme + bsides + durrty + harrassing + hela + satisfys + shittillysays + thankoibfor + vant + waitstsystsysgshehhss + whatnursesdo | 71 | 0.0083531 |
1443 | churlish + engalnd + fiveasidereflections + overlaps + wowowowowowo + mtbing + nutmegs + unliked + bee + cheerfully + scattered | 71 | 0.0083531 |
1469 | cathedral + bouldering + monumentalmuscle + fabteam + votes100 + highcross + monumental + montage + vote100 + botanical | 71 | 0.0083531 |
1497 | stadium + power + king + pl2 + dents + teamuhl + lcfc + visiting + 11.11.11 + charityretail2018 + cristianeriksen + cubb + dellealli + fitchie + fodelli + gputurbo + iainrosterphillips + imen + l1a_ch3ng + lptsmw + minicooper + night.username + oddsocksday + openwater + pricelessmascot + removable + tailgate + veining | 71 | 0.0083531 |
1512 | inspiring + evening + kendrick + 167 + 178 + 1873 + assertyourself + cwcone9 + d1w2 + diaconate + dogsocialisation + greasethemusical + individualism + londinium + mjfc + socdm2019 + upcomingrapper + we_can_live_together + workface | 71 | 0.0083531 |
1523 | scorn + rapture + 14.40 + 808 + batista + coercivecontrol + cramping + dobble + elation + farty + hobb + horrocks + miseducating + personaphotos + principalities + rememory + steadfast + thasts + tirmidhi + toga + tussle + visualised | 71 | 0.0083531 |
1527 | fantastic.staffordleysyr3 + immaterial + bloggerstribe + wordpress + blogging + pss18 + puppets + roxy + blogs + wonderland | 71 | 0.0083531 |
1668 | newmusicalert + teenspirit + opticians + donation + nhs70 + newmusic + rehearsals + 535 + akwaaba + asianfaceofmissengland + championsbrandagency + cheyettesaccountants + deepa’s + falalalalah + groovehorizons + hakomou + hockney’s + kykellyofficial + loler + lptactivetravelweek + moodle + nativ + ncc + neilands + notti + onlythebrave + qurbani + secretgarden + sideshift + taxseason + thebeautygeek_atthemu + townkins + turinepicurealcapital + worldentrepreneursday | 71 | 0.0083531 |
1733 | aresting + valand + islamophobic + proportions + rightful + somaliland + occupation + somalia + wether + ik | 71 | 0.0083531 |
241 | nims + boutique + ___________________________ + _______________________________ + jewellery + ____________________________ + ____________________________________________ + luxurybagschoose + ______________________________ + mukhtar_rehman_hairstylist + thanky | 71 | 0.0083531 |
445 | saltby + gon + true + firesaltby + flatfire + potentiality + waazza + karma + imma + distractions + mcmafia | 71 | 0.0083531 |
470 | wait + chillis + neck + bottle + 750mlburgundy + constellations + eyess + meze + needit + ice | 71 | 0.0083531 |
673 | specialoffers + le2 + le1 + fooddelivery + le5 + pizzas + road + fastfood + takeaways + le3 | 71 | 0.0083531 |
733 | eat + askval + availble + cassavas + redkin + frieda + hbu + yams + starburst + plz | 71 | 0.0083531 |
1072 | balwant + bigears + daysofyore + galaxywatch + jt‘s + misterland + neonnight + zovirax + zowie + cute | 70 | 0.0082354 |
1211 | artsy + skytribe + sketch + photoshop + artwork + modernart + graphicdesign + artoftheday + texturedart + fusionbellydance + tribalfusion | 70 | 0.0082354 |
1296 | eis + homehub + journalism’s + payment + tax + income + customer + 26mb + aiui + allowances + craigslist + diversit + jacquelyn + kimber + lyft + miiverse + regulating + tfl’s + usipolipa + webdev | 70 | 0.0082354 |
1451 | nits + grades + crewe + monitor + traffic + fm + spots + image + aborti + allopathic + attaches + bidshorts + burundian + cambridgeanalytics + conveni + dail + debuggers + depar + eggfreezing + elicit + fingerprintable + inappropriat + inferences + intercity + interviewe + jeweller + ketech + lichensclerosis + ncbs + nicethings + pcad + punit + retina’s + scotrail + tradg + weighband + wonderi | 70 | 0.0082354 |
15 | print.possible + walls + paintingcontractors + taverns + eastmidlands + hogarths + printing + contractors + cloudy + printed | 70 | 0.0082354 |
1579 | gmc + charged + cannibal + someo + atlantic + amazon + avi + item + 76p + a380s + airbus + belfast’s + buse + fligh + geneuine + impossibl + launche + surpr + therange | 70 | 0.0082354 |
1602 | santander + consent + child + frustrated + actio + awliya + barbarity + disru + nabeelah + o.g.s + priviliging + qualitativeresearch + rebuttal + satisfie + sonetimes + torne + ulama | 70 | 0.0082354 |
237 | minibikers + learntocycle + balanceability + cycling + cudabikes + toddler + learntoride + bike + independently + riding | 70 | 0.0082354 |
544 | gofishingforbandsandsongs + snowwhitessinisterdwarfs + omfg + god + 1bait2 + d:bream + flasher + peepeeing + scato + screechy + spools + trouthere | 70 | 0.0082354 |
614 | funworksworlduk + forward + psn + lfo + tattooartist + instagram + platforms + social + media + snapchat | 70 | 0.0082354 |
741 | biography + soldered + unfrie + revoke + petition + repair + replaceable + 50 + ebay + february | 70 | 0.0082354 |
836 | portman + films + morons + natalie + dinnerladies + hnd + equality + criminal + fuentes + lehmann + liers + monologues | 70 | 0.0082354 |
875 | dat + tonsills + birth + dis + asthma + fave + birdingloveit + feartwd + realsupport + xxc | 70 | 0.0082354 |
88 | stevie + tribute + reminder + rt + quick + friday + night + ch + chee + che | 70 | 0.0082354 |
1067 | sudan + data + paying + privacy + 1980ish + 7.9bn + agia + cashback + caustic + claymore + directive + exceris + gibraltor + insuran + maotsetungsaid + neices + phse + reporse + skippingschool + sudany + telecom + twitterbot + usmca + wiliam | 69 | 0.0081178 |
1268 | separation + tired + impactnowplease + thebigpaintingchallenge + brain + coughed + cranked + termism + lonely + complain | 69 | 0.0081178 |
1320 | depressing + tired + beig + gold1 + setener + szn’s + sober + 100kg + doomsday + oversleeping | 69 | 0.0081178 |
1366 | drift + puppies + halime + iroh + dogs + dont + allout + ama2000 + foreveraparent + intellectually + stimulated | 69 | 0.0081178 |
1427 | warwick + divorce + childsplaymovie + glassess + haved + leggins + ndbdjfjd + pretentiously + swarms + uxurious | 69 | 0.0081178 |
1487 | kitchens + buildingibd + architecture + interiordesign + interiorsbydesign + burlesque + chicas + locas + showcase + dragonball | 69 | 0.0081178 |
1541 | renovation + jnbl + bestseatinthehouse + candidphototography + rashmikant + basketball + sessions + joshi + vaisakhi + firsts | 69 | 0.0081178 |
1636 | val + support + activatetoeducate + bestpresentever + blisworth + camllie + communit + dicsussion + featherstone + feroza + fullcbd + geophysicsinabox + heatherspride + herturn + jolly’s + kiit + nationa + nbsculptor + nel’s + nierop + p’ship + reiko + runnerschatuk + rushcliffe + schoolsride2018 + shellard + takeastand + westmoreland | 69 | 0.0081178 |
226 | thankyou + follow + xx + xxx + sharing + nurse + colleagues + zee + sammy + highlighting | 69 | 0.0081178 |
300 | gugs + prin + rhi + nas + sand + ash + lover + hide + neil + boo | 69 | 0.0081178 |
41 | weddingparty + venueleicester + venue + partytime + decor + wedding + wow + fun + family + hallhireleicester | 69 | 0.0081178 |
473 | loss + goodnight + night + aww + 14daysandcounting + loveyouu + nightt + family + teatotal + tuwaine | 69 | 0.0081178 |
562 | congratulations + sarah + maroitoje + opa + petts + xx + nlcc + played + uve + willo | 69 | 0.0081178 |
635 | homewrecker + applicable + jack’s + yeah + nana + ___ + ____ + donatella + educative + excitingly + izaiah + jarrow + model’s + naivete + nanananana + nsusernotification + robfans + rodrick + scabbing + shareable + theassassinationofgianniversace | 69 | 0.0081178 |
781 | pic + picture + photo + pics + xx + snap + beautiful + _visauk + everso + notbthat + novelway + puttingthe + visauk | 69 | 0.0081178 |
833 | isapp + mande + nasilemak69 + notifies + nown + sledgo + steadyareyouready + surgest + ww84 + bounceback + elevensies + groupchat + unr | 69 | 0.0081178 |
858 | anxiety + liquor + affairs + ileugl + realblackpool + suicide.againstantidepressants + znfnfbfnjd + xoxo + edans + neave + unfashionable | 69 | 0.0081178 |
874 | reasons + thirteen + tam + netflix + amsterdam + 15million + bbcimpartiality + disseration + goodnotes + illumination + imbasicallyanticipatingabasicallykkaxonbasically + ittchy + msisrubbish + netflixs + notability + nt’s + thatinsulttho | 69 | 0.0081178 |
928 | cool + beautiful + harrison + afsgw18 + alanchambers + engvirl + ippo + massive.thanks + yes.yes + brudda’s + embodiment + hajime | 69 | 0.0081178 |
1081 | idea + bfj + cannybare + choosepsychiatry + haward + jaybird + lfw + millie’s + nabbing + oxtonboy + psychers + tiggle + wrrmuphflt | 68 | 0.0080001 |
1094 | typhootuesday + tagging + aree + awesomechips + bloodsugar + bramptonwines + hellbeasts + janmat + justbbold + lusted + modenese + naijas + piece’s + pintotage + superdays + teariffic + yuge | 68 | 0.0080001 |
1147 | thread + boastfulness + netherland + speeder + boyy + bruva + disclaimers + teetotals + beautifully + nuanced + romcom | 68 | 0.0080001 |
1174 | practice + alternates + beastfromtheeastmidlands + hatehatehate + laddie + worvlei + impressive + bateman + digne + runnings | 68 | 0.0080001 |
1190 | rifle + undertaker + shithole + navy + eyal + basset + dgw + fxcked + mateitscominghome + nahmir + nancys + placr + sofi + sproston + vladimirs + ybn | 68 | 0.0080001 |
1376 | hepatitis + equalities + hurray + accident + topic + junction + vehicle + 100mcg + 15mcg + 1bn + 4videos + all.but + boge + bupivacaine + camerafone + cv04 + dissect + enactment + facilitie + fenta + gare + geophys + grill’s + heathly + humanhight + iapt + industrialisation + innovati + klingon + penetrat + pida + plushie + propagate + resta + saturates + skm + synthesising + zaatari | 68 | 0.0080001 |
1517 | freelance + financially + struggling + dhaar + extra + appreci + yeovil + expertise + piercing + 223139 + 324 + appendix + befits + biano44 + ceili + cidery + denti + gocat + hd800 + normalform + olderpeoplesday + onmy + peteranthon4 + plurals + realistical + scoped + sinek + smis + starcsite + tongasiyuswnp + underpinning + whiped + wowclassic | 68 | 0.0080001 |
1565 | parkinson’s + spotifywrapped + pdf + writer + vat + profit + 1.7.1 + arteriovascular + convenien + definintely + disabiltys + drivi + genealogists + inspitates + irrevocable + johnmayer + malformation + pollinate + savelumadschools + stoplumadkillings + universtiy + unravels | 68 | 0.0080001 |
1638 | fairs + founder + event + join + music + 10a + american_football + applica + beapartofsomething + ceildh + changinglocallives + falcor + fluxdance + gasoline + getagripepshow + getlyntothegraps + globalclimatestrike + idries + independentliving + initiateleicester’s + irishdance + itsback + joinus + manofthematch + maskoff + myeverything + newartists + newrelease + nsdf19 + nursingsociety + oadby’s + povertyactionweek + pritibodies + pumpkinsforpower + pumpkintwists + punjaban + saqqara + soulreasonshow + timhortons + visito + wex | 68 | 0.0080001 |
1720 | bsr + woodcut + justsponsored + today’s + students + dmuleicester + community + check + female + fundraising | 68 | 0.0080001 |
219 | wow + disgusting + wowzers + awesome + embarrassing + fab + aphrodisiac + owsome + wamhat + disgraceful | 68 | 0.0080001 |
33 | yougov + poll | 68 | 0.0080001 |
411 | yeah + stfu + burberry + cutee + pickup + stoped + pretended + fuller + scarborough + claus | 68 | 0.0080001 |
426 | mincing + sprouts + valentine + activily + magson + students.this + valentines + boogy + datway + draghi’s | 68 | 0.0080001 |
525 | laughing + loud + madders + 2facedpiers + badpand + breastisbest + concencus + hesslewood + jintro + kinowoke + lookersec4ben + mert + pigeonoutsider + skintoskinlove + squalid + suckingup + yasen | 68 | 0.0080001 |
643 | fuck + rees + mogg + questioning + fruckle + goyte + homers + nazak + nunos + cheat | 68 | 0.0080001 |
709 | twat + fuckety + prick + bastards + putscotlandinafilmorsong + cowards + bugger + weapons + cheky + groundless + michail + tartans | 68 | 0.0080001 |
731 | tryna + supposed + aite + babyface + finepeoplefromlondon + finepeoplefrommidlands + sabrinaonnetflix + settle + defini + whaat | 68 | 0.0080001 |
755 | venezuelan + affinit + usa + threat + patriotic + russia + eu + government + muslim + direct | 68 | 0.0080001 |
1079 | sigue + ding + hart + 4head + amunt + babbage + chile’s + coonate + ct2bb + drinkerslikeme + estadi + hilfiger + iden + knuc + knuth + leicestericerink + looe + mestalla + moistly + museuming + nickin + preset + rendezvous + seaward + solvent + some.serious + strategoc | 67 | 0.0078825 |
111 | leicestershire + rapper + boastful + santhi + 00miles + narcissisism + leicestershirelive + malignant + v.i.p + entourage | 67 | 0.0078825 |
118 | mornin + round + morning + fours + tweeps + napue + sprig + topgirlfriend + whoopwhoop + busybusy + cranberries + tippin | 67 | 0.0078825 |
1214 | bluray + fatal + markets + attraction + 1.0.2 + ahmedabad + badasswomen + bloggerloveshare + herculean + hereforlgbtqs + malwarebytes + nasarbayev + nursultan + talak + toytrains4u + womenhelpingwomen | 67 | 0.0078825 |
1312 | qui + sleep + nighter + shower + sadness + sleeping + extraenergyuk + heaux + hecc + needashower + needawash + trekked | 67 | 0.0078825 |
1640 | fayre + trendytuesday + campus + wedding + melton + join + saturday + attend + announced + rising | 67 | 0.0078825 |
1662 | puel + agree + rivalry + abused + belittling + feelingfestive + himsel + judgi + knowns + ptas + sniffy + thingsdisabledpeopleknow + upsett | 67 | 0.0078825 |
192 | brill + weekend + lovely + claire + chris + alison + kenny + ken + 16yearsago + m’lovely + recommendable | 67 | 0.0078825 |
296 | xx + xxx + darling + lovely + lolli + xxxyou + lady + xoxo + rehana + saru | 67 | 0.0078825 |
4 | mtkitty + cat + may2018 + cosplayers + mcmcomiccon + kitty + iphone + gifs + prize + eleven | 67 | 0.0078825 |
467 | hundredths + ninety + hundred + purchase + forty + hindbar + price + cd + seventy + blinds | 67 | 0.0078825 |
509 | nowspinning + onvinyl + shadows + kudos + liquid + shades + hawley + supermodel + porn + marlon | 67 | 0.0078825 |
546 | mubarak + eid + eidmubarak + diwali + celebrating + wishing + peace + happiness + al + fitr | 67 | 0.0078825 |
548 | like4like + follow4follow + bambibains + boutique + nims + mua + goodvibes + goodnight + jewellery + copperjewellery + handmadejewelry + maharanichokersetfrom + weddingfairs + weddingvenues | 67 | 0.0078825 |
94 | chunni + newdupattas + dupatta + foodwaste + pastries + unitedkingdom + crayfish + floraldupatta + mix + online | 67 | 0.0078825 |
991 | scarefest + gals + hayley + dawkes + evolution:man + hozier + kenan + mzungu + owlandpussycat + sewnn + teambecky + wrestlemania35 + ymas | 67 | 0.0078825 |
1218 | bottle + electracuted + milowatch + occlusion + wackiest + wna + cockblocking + diagnosing + igloo + shyness + unwilling | 66 | 0.0077648 |
1220 | authored + caucasoids + fwm + nochance + inverary + mway + dependant + kkk + cathartic + flabbergasted | 66 | 0.0077648 |
1403 | battleaxe + musings + blog + trainee + hiya + dye + scenes + amazing + 5yearsago + absurdinstruments + adjoining + asmona + bbcradioplayer + bedifferent + beeby + catapults + ergonomics + flashbacking + grindstone + marriam + mercie + øres + shed’s + twitterissoannoyingattimes | 66 | 0.0077648 |
1504 | prepactive + rhi + graduates + pb + wishing + bahhumbug + baulbles + calkeunlocked + escapevenues + gadsby + harrystylesliveontourbirmingham + hospitable + runnerschat + townandgown10k | 66 | 0.0077648 |
1522 | fabricator + expanding + hiring + require + clients + experienced + metal + sheet + steel + bevcan | 66 | 0.0077648 |
1586 | wayne’s + ajax + tub + draw + mosaic + juventus + dave + husband + cpd + disability | 66 | 0.0077648 |
211 | blackevent + enhanced + contributions + accessories + deposit + landrover + 20 + jaguar + lipless + 15 | 66 | 0.0077648 |
214 | furtherreductionsshop + stor + morning + goodmorning + xx + sale + online + xxx + darling + gorgeous | 66 | 0.0077648 |
217 | inspirationnation + ronnell + amar + retweet + appreciated + love + positivity + ammal + bjm + inspirsationnation + mevlida + unreciprocated + zerotollerance | 66 | 0.0077648 |
305 | earlycrew + mornin + prize + fab + beatsx + voxixphones + xs + earphones + competition + wireless | 66 | 0.0077648 |
40 | demestic + property’s + contractors + commercial + painting + cucumber + tuna + mayo + emerson + links | 66 | 0.0077648 |
409 | rt + luck + yum + ffbwednesday + likeing + tophound + muchappreciated + retweet’s + xx + enzo | 66 | 0.0077648 |
437 | 5fl + gwendolen + lehngas + le5 + readymade + weddingphotography + chumke + partylehnga + bridesmaiddress + bridesmaiddresses | 66 | 0.0077648 |
506 | thevenueleicester + thevenue + fit + mendhiparty + dogsofinstagram + mendhi + henna + hiring + england + repost | 66 | 0.0077648 |
512 | congratulations + congrats + buzz + rob + birthday + deserved + happy + erector + kellyrae + mexicocity | 66 | 0.0077648 |
554 | newprofilepic + allcrossed + xxx + evenin + homeiswheretheartis + makotoshinkai + smile’s + weatheringwithyou + winbenandholly + youngs.tom | 66 | 0.0077648 |
638 | satsumas + flown + dreading + 13.5mph + 22kph + bankholidaysunshine + bargained + dedicat + fackk + freedomtospeakup + plater + webster’s | 66 | 0.0077648 |
72 | ando + bb + inshallah + videos + type + follow + awesome + lot + love | 66 | 0.0077648 |
727 | mcdonald’s + baklava + tuesday + treat + dlamini + eggs + sundaybrunch + bath + iced + mcdonalds | 66 | 0.0077648 |
817 | freelance + printing + internet + possibly + anothergasleakinleicester + girlsincarcerated + madeit + misunderstandin + scavenging + personal | 66 | 0.0077648 |
959 | lasvegas + sportsman + playground + wrestlemania + vote + 1.25 + bebrilliant + bumbaclause + for610 + granddaughter’s + moni + thepaway + waterbridge | 66 | 0.0077648 |
980 | laughing + loud + appeased + barma + greenbelt + hott + out’s + tinderbox + cladding + suckin | 66 | 0.0077648 |
1159 | morganout + peepers + pfn + schwebebahn + skullduggery + rich_draper6 + braised + diabete + anit + ef + rapha + safest + soonest | 65 | 0.0076472 |
1175 | upgrade + pak + attempting + guardian + bim’s + convicts + danemill + incentivetrip + ja’s + joannah14 + narbrg + pikapool + protes + psycology + shaheen1aur + tentacles + transpires + zero0 | 65 | 0.0076472 |
1463 | blackboys + goodmusic + rideshare + epicrecords + brentsayers + nonlikeus + carpool + islanddefjam + daretobefearless + dreamchasers | 65 | 0.0076472 |
1543 | iwill + partnering + tagging + announce + artclub + bulkingseason + cutandpaste + ea.esthetics_ + ebcd + faithinhumanity + falcore’s + fernandoizquierdo + formida + gulati + internatinalwomensday + julievivas + katardley + knowyournormal + learningtools + makenigehappy + malcom’s + newoffice + newsx + parasitologists + persone + radicaldmu19 + samsunggalaxynote9 + sjdetailing21 + spooptacular + underthesea + weimprove | 65 | 0.0076472 |
1613 | themselve + britishbasketball + prs + divas + threerd + bagged + finalists + heading + july + 15pt + achoo + auliya + bally’s + campingparty + citin + delegatetreats + dmuequestrian + dupaata + evertonfc + fabulousness + fasciamodels + gardenia + goodnewsstory + hankering + harjitharman + hdbrowas + hrc2019 + krips43 + leaverassembly + libbah3 + motivationalmonday + naat + prashika + rivalryweek + rollerderby + sabra | 65 | 0.0076472 |
1631 | tickets + merry + camps + astley + saturday + campus + doors + wax + restaurant + thorpe | 65 | 0.0076472 |
1691 | jewels + dropped + aguirre + brain’s + cabage + cthonic + falli + gargantua + ghostmane + glutened + labourin + pensioned + sarcastica + selfacceptance + titani | 65 | 0.0076472 |
1727 | governed + country + somethin + historic + austerity + political + poverty + cannibas.the + cbbandrew + coue’d + crimina + dysphoria + falsification + heatal + legalization + madarchauds + passaris + specie + toiled | 65 | 0.0076472 |
275 | humberstone + heights + golf + hole + par + club + holes + eighty + tee + logantrophy | 65 | 0.0076472 |
287 | harrystyles + iheartawards + bestsolobreakout + sweet + voting + playing + rt + vote + signofthetimes + bestmusicvideo | 65 | 0.0076472 |
324 | whowantstobeamillionaire + stutter + congratulations + wwtbam + askthehost + friands + nissy + phosphorus + screeaming + whowantstobamillionaire | 65 | 0.0076472 |
332 | sportpsychology + alphabet + reinvestment + tekkers + thurmaston + gym + precision + prestige + kingdom + eid | 65 | 0.0076472 |
372 | o2jobs + savoy + choosing + bags + jewellery + range + evergoldbeauty + pastry + piping + bakery | 65 | 0.0076472 |
421 | collected + prize + cash + summertreats + extra + win + chance + xmastreats + proceeds + back2schooltreats | 65 | 0.0076472 |
44 | prize + withbanneryoucan + prizes + sale + result | 65 | 0.0076472 |
461 | safe + bro + hear + real + fixcareermode + jell + musicsnacks + pringle + macleod + wellens | 65 | 0.0076472 |
483 | love + xx + madly + gorge + pix + miss + leanne + plughits + sax + zee | 65 | 0.0076472 |
570 | 3lb + sleep + aches + hours + awake + mums + asnaps + ineedcoffee + planenerd + reyt + spazzin | 65 | 0.0076472 |
589 | twat + horny + wicked + hear + vile + kandeep + nincumpoops + cow + shortarse + stupid | 65 | 0.0076472 |
713 | weather + winter + frost + morning + benjart + buging + fräulein + thawed + bucket + sunday | 65 | 0.0076472 |
760 | pain + cripple + lapha + rearranged + proposes + ha + regarded + yeyi + apologising + arrangements | 65 | 0.0076472 |
82 | 20mm + lense + preach + nikon + ass + 22 + fireworks + badly + london + 10 | 65 | 0.0076472 |
929 | whale + thanksgiving + bruno + proud + amitji + beasties + bloodborne + bodie’s + dawdling + flightschool + flightskillstest + pfco + ringchromosome6 + timetotalkday2018 | 65 | 0.0076472 |
100 | chance + win + awesome + prize + competition + nationalbestfriendday + vivienne + repondez + s’il + plait | 64 | 0.0075295 |
1001 | cctv + haven + antivax + arthropod + barrow’s + busymorning + luther + makingthewordsrain + mercury’s + profiled + sl700 + st6 + winwithradian | 64 | 0.0075295 |
1085 | queen + ausopen + serena + icon + bronzie + fuckingmelt + hondaf1 + knobber + spaggy + stoptheb | 64 | 0.0075295 |
1223 | listing + etsy + notch + skull + berry + 15mg + 160mg + 20mg + 24kwh + 300mg + 350mcg + 3mls + 40kwh + blackboards + diamorphine + educati + elemen + endcommercialwhaling + footwell + gobbl + grubbed + kustow + liteea + marcain + metabol + oxidant + pigmentations + sickl + teachable | 64 | 0.0075295 |
1273 | wittertainment + accounts + lambert + parlour + reflecting + strength + leigh + progress + journalism + 15yrsaflo + 20minute + ande + behal + benetton + bers + borderlines + burkina + burkinabé + designstudio + elefun + ephemera + excess’s + f.u.n + faso + funnies + gheeze + haddad + individu + izorb + jamiehughes30 + lastresort + legibil + newtome + nqn + pilsbury + regr + starti + tuisova | 64 | 0.0075295 |
1357 | charters + fur + gooder + grouted + mathamagician + worldmathsday + petname + splinters + hear + fen + ronak | 64 | 0.0075295 |
1481 | kitchens + buildingibd + interiordesign + jointherebellion + architecture + showroom + tickets + tickledpink + interiorsbydesign + ppf | 64 | 0.0075295 |
1547 | apply + afda + painting + join + rfc + panorama + leavers + ucas + exhibiting + contemporary | 64 | 0.0075295 |
1648 | brexit + impasse + jha + eu + voted + union + political + politics + lt + government | 64 | 0.0075295 |
266 | fuck + sake + ffs + imouttahere + tykes + fucks + tarkowski + allan + desktop + shucks | 64 | 0.0075295 |
280 | oooh + ooh + prize + xxx + xx + lovely + fab + fantastic + treat + p___y + pizzagate | 64 | 0.0075295 |
38 | woo + wit + projectmgmt + extremism + recommend + advertising + scrim + wing + england + hiring | 64 | 0.0075295 |
538 | thousand + hundred + kameena + nineteen + eighteen + twenty + fifty + forty + days + july | 64 | 0.0075295 |
594 | vichaisrivaddhanaprabha + theboss + lcfc + wowowow + vichai + thankyou + ooh + footballfamily + gudhi + padwa | 64 | 0.0075295 |
680 | brit + temperature + saffron + activeleicester + dogrescuers + hmpleicester + prelim + rugby.such + westaystrong + earlybath + gromit + josep + sunil | 64 | 0.0075295 |
691 | shambles + goal + hazard + saints + cartwheel + chrishughton + cougs + premierleaguedarts + poweryourunion + gameover + omnishambles + sherrock | 64 | 0.0075295 |
71 | winner + love + xxx + xx + worthy + wow + giveaway + ace + gin + win | 64 | 0.0075295 |
773 | makeyourowncorbynsmear + corbyn + erg + jeremy + meek + circle’s + imnotsorry + kxipvkkr + marathi + rastafarian’s + rednapp + touchs + whyijoinedtwitter | 64 | 0.0075295 |
776 | actress + 16.12.2018 + biancaandreescu + fankoo + fluffballs + hibaag + jackanddani + renesmae’s + shethenorth + shorthair + teyanaandiman + theconjuring + usopenfinals + yussuf + zane | 64 | 0.0075295 |
859 | drug + clout + nyt + wear + brie + coloured + bentner + dbi + inhibitors + loyl + trainer’s | 64 | 0.0075295 |
890 | eos + canon + sigma + mki + 5d + morningside + 50mm + mercure + 1.7 + 50iso + nine0 + rhul | 64 | 0.0075295 |
1010 | weaknesses + sexism + americans + war + species + celeb + ansen + electionfraud + madmen + sargwani + sgirl + sounder + states.strength + sweepers | 63 | 0.0074119 |
1041 | foldedarmsbrigade + hellraiser + pinhead + stemcafedakar + teamplants + trilog + verka + birmingham + adr + psyched + tedu2020 | 63 | 0.0074119 |
1242 | ddlj + nusret + alternate + advert + starring + nigeria + dxeu + hugey + huj + i.think + karod + momslife + mumslife + nigerianews + prid + sabsidy + saveing + stephencollins + walows + womensday2019 + ypxuqp | 63 | 0.0074119 |
1385 | boy’s + accounted + cogito + englishmen + habitually + nhs71 + ownas + sachet + wingthh + beauvoir + clurb + jordanne | 63 | 0.0074119 |
1493 | cdn + share.pubgameshowtime.com + showimage.php + stadium + enderby + pubg + leicestershire + lcfcfamily + squash + teamwork | 63 | 0.0074119 |
1545 | iraqi + afda + catering + drums + sessions + musician + 14mpg + 29.09.19 + application’s + availabil + clent + costadelleicester + curvetheatre + dayofthedeadtattoo + drumkit + fielded + hashem + hpt + hypexmonsters + larrad + leicestermela2018 + lesmistour + lovecurling + matchweek27 + natashas + percussion + pressnight + round27 + runforall + seasicksteve + seasonsgreetings + smallbusinessowner + soundchecking + teamremo + username.strivet + vicfirth + weal | 63 | 0.0074119 |
1561 | istandwithvic + distributed + kickvic + residency + poles + screenshots + nhs + dubai + customer + 3.4m + animegate + bookmarklet + breaches + dimond + equities + facadism + geoip + immigrationreform + praslin + prepube + underwriting + worldbenzoday | 63 | 0.0074119 |
1627 | schools + leicinnovation + primary + trainer + attma + belmas + cpc18 + crn + eanetwork + entitlemen + flooddefence + forthemanynotthefew + generates + geogrpahic + gnr19 + industri + instahub + launged + leadershipacademy + makedoandmend + mhaw + mixup + mts + my_twitter_name + officialleicesteraudi + partipant + pausa + rmdandt + taysum + terrk + thefertilityshow + winstone’s + zat | 63 | 0.0074119 |
1699 | consultant + chemo + garba + communication + actionlearning + amwritingromance + autismparent + chachacha + emtraining + fdhm + freelancers + gms + gmsworld + incentivising + lhswellbeing + llrcares + nylacas + rcemcurriculum2020 + rodeos + sss | 63 | 0.0074119 |
1732 | brexit + country + regime + poverty + afghanistan + tories + likes + stalking + tory + poor | 63 | 0.0074119 |
197 | 24hoursinpolicecustody + weekend + lovely + brill + wonderful + hope + day + vpu + wanker + castrated + sain | 63 | 0.0074119 |
312 | sweetie + decieving + stunning + theresa + customs + union + plans + british + leave + uwcb | 63 | 0.0074119 |
434 | screaming + chineye + galilee + stewebsite + tongue + scream + ahahahahha + bahrain + whaat + carlton | 63 | 0.0074119 |
477 | heart + hoodie + brigg + gosta + omgomgomgomg + shafts + bighead + overton + miss + benji + shifty | 63 | 0.0074119 |
501 | copuos + intern + earphones + 2inarow + accounta + adder + amazons + becomi + brookvale + burnings + citisenship + complexions + dicke + fall’s + holida + itali + notnum + pakistansig + prouk + recoll + repositor + seq + tria | 63 | 0.0074119 |
552 | sleep + bed + follow + congratsx + weekdays + pls + jono + davey + hendo + muzzy + wtaf | 63 | 0.0074119 |
561 | nhctownnearme + bullshit + trash + del + 84thleicesterlittlethorpescout + anybodygoingtolondontourfromleicester + bringingbasicback + flatpackempirehowdothetgetthesejobs + nhctownearme + yeah’at | 63 | 0.0074119 |
788 | sleep + snore + awake + exams + finish + loveislandlates + onlyfourhourssleep + shoveling + thorpepark + turnpike + worsts | 63 | 0.0074119 |
854 | skylink + 02.08.2018 + animates + chesterfeild + eastmidlandtrains + fbloggers + garnier’s + penci + ust + wrestli | 63 | 0.0074119 |
913 | agree + totally + smoke + lecturer + 18mnths + brawling + gaswork + sensatori + styrene + surre | 63 | 0.0074119 |
920 | citg + kuvunyelwe + sheals + prayers + notifs + recipient + transsexual + feedbacks + freespeech + lantern + moaner | 63 | 0.0074119 |
997 | beardage + fergoose + preciate + teammall + ucustrikeback + yayuh + callister + disneyemoji + luck + disneybloggerschat + ffed | 63 | 0.0074119 |
1051 | miriam + watched + generic + nicki + buonannonuovo + drumline + godsofegypt + horrendo + intaferon + lemocrats + oldskoolhiphopbangerstop20 + realeased + rites + sbvi + sene + simz + spazaz + stavs | 62 | 0.0072942 |
1098 | 12min + cf97 + eggman’s + jeresey + marti + moulting + purplerain + sonna + syer + munda + nuthin + pellow | 62 | 0.0072942 |
1225 | fatshaming + severs + spurt + talksportdrive + toothlesstigers + wmyb + thesecretlifeoflandfill + billi + mn + kinks + recess | 62 | 0.0072942 |
1263 | biggrowler + camridgeanalyticauncovered + choralspectacular + cume + dreamliners + episode2 + hussien + icefields + johncreilly + lincolnunihereicome + lovecruise + makeasongormoviepoetical + miniaturepainting + morello + purpel + rattan + season1 + serigne + sheena + teamtroupersdance + werente + whataboutthiswhataboutthat + whatch | 62 | 0.0072942 |
1301 | sleep + hours + tatfest + timeam + nap + wake + junk + exam + shift + buying | 62 | 0.0072942 |
1344 | almohandes + dailygratitude + darlek + krays + piston + susah + chronically + dermatologist + gila + phdmusic + supping | 62 | 0.0072942 |
146 | nice + bowles + ribena + mist + contacts + kettle + ollie + fits + uniform + sally | 62 | 0.0072942 |
1595 | tempo + cd’s + talksport + cyclist + sp + a4s + chrissy’s + deltics + forc + fuckmate + herodotus + kosskhol + manicdepression + represen + sensibilities | 62 | 0.0072942 |
1617 | combating + frikkin + storms + institution + click + albei + bry’s + colourfield + friends.lots + jugg + mamer + newsagent + ogacho + philippine + probed + rejigging + velition + wankneighbour + workmate’s | 62 | 0.0072942 |
1618 | sunidhi + chauhan + britishbasketball + newwalkmuseum + fixtures + picnic + queer + 5k + afterhours + alistargeorge + blackfordby + braunstoneswimmingclub + bungie + chari + deliciousfood + dickeheads + dontating + earthshaker + flowertattoo + formerstudent + freeths + herron + kh3 + lasa + lifephotography + lifestylephotography + nner + playtest + polytec + ppg + probaly + specialvisitor + squidgel24 + ultrarunner + unilax + virdee | 62 | 0.0072942 |
1685 | piece + pot + ecb + stem + advanced + pride + apple + ades + assistin + christams + clift + feil + humi + imagines + irmisbiceps + kotg + nityha + openpsychometrics + painmanagementprogramme + peterstafford + playtesting + pvs + resurrectingdemocracy + roader + rollsroycecullinan + sparklin + teak + teamstory + theyayteam + transplantation + unveils + wembleystadium | 62 | 0.0072942 |
1711 | agree + tragedy + banjir + canai + destinies + differentials + emasculate + hijra + irregulars + mrs.potatohead + noticeab + pbuhing + shari + treacl + tuggi | 62 | 0.0072942 |
1736 | brexit + vote + lapdogs + cbi + deal + conservatives + amendment + tories + surviving + party | 62 | 0.0072942 |
216 | xxx + count + queer + gentleman + masters + degree + completed + ladies + performance + xx | 62 | 0.0072942 |
221 | thebeardedrapscallion + maintainmagnificence + beardproducts + beardbalm + beardoil + magnificence + rapscallions + beard + beardcare + beards | 62 | 0.0072942 |
223 | inspirationnation + rl + love + retweet + appreciated + eric + christina + youve + follow + julie | 62 | 0.0072942 |
233 | revitalusmartcaps + happyucoffee + revitalu + revitalubrew + revitalucoffee + revital + revitaluworks + luck + revitalusamples + revitaluweightloss | 62 | 0.0072942 |
24 | printe + ezprint + uv + vertical + world’s + printed + directly + 3d + 10gb + walls | 62 | 0.0072942 |
310 | retweet + sign + plz + thankyou + abhinandancomingback + apologizetoanexin4words + butimfascinatedbylugovoiandkovtun + climatejustice + eki + idontknowaboutyou + imrankhanprimeminister + litvinenko + oliverhardy | 62 | 0.0072942 |
396 | luck + birthday + 28yrs + shaka + happy + sham + scorpio + mee + franchise + venture | 62 | 0.0072942 |
598 | vaillantgroup + johann + vaillant + goody + memori + dsylmmusicvideo + endlessly + bucs + demi + bags | 62 | 0.0072942 |
67 | centralnews + itvcentral + switchon + christmaslights + itv + lights + christmas + sambailey + mkt + united | 62 | 0.0072942 |
770 | wemberley + god + freak + 000192 + 180718 + chitting + ermal + haha.what + mine.xx + refrence | 62 | 0.0072942 |
782 | share + fantastic + cancerhasnocolours + ludens + xx + jake + manupmywardrobe + busker + discolouration + luckier + wd | 62 | 0.0072942 |
846 | ghostarchipelago + joll + bronwen + oregano + hicks + olympian + zand + beaker + misspelled + woojin | 62 | 0.0072942 |
880 | timepm + boxing + activities + association + unity + spinalgraps + round + bringing + earlybird + tickets | 62 | 0.0072942 |
1021 | dontletindiaburn + herewwe + cloe + goddammit + holts + incitement + searingly + buckfast + ddd + faceless | 61 | 0.0071766 |
1059 | iconic + desent + drakeveffect + fennec + findme + gonebutneverforgotton + heroically + holo + inesta + italiangp + karke + lappy + sadda + sohnja + theforceisstrong + youthie + zeds | 61 | 0.0071766 |
1142 | leicestershiregolf + festive + fut19 + christmas + tickets + golf + fifa19 + fut + ninth + blackberrie + chickenkeeping + christmasjumpers + englandgolf + fathersdaymeal + fia + fifaultimateteam + futchampions + getintogolf + guildhall’s + handma + kaykay + kingofthegrill + libbynorbury + mariachi + mixin + physicschristmas + sausa + totgs + youwonnapizzame | 61 | 0.0071766 |
1150 | christmassed + exasperating + summation + shitted + tutti + darken + concise + gover + journo + creases | 61 | 0.0071766 |
1151 | thor + captain + iron + america + bhache + gravityalwayswinsgirls + hiddleston + kingofhorror + kneecaps + moniuts + runak + slurred + tdw + tws | 61 | 0.0071766 |
1153 | jennifer + garner + actress + accuri + aleida + conjouring + differentoverlordrules + firstgirliloved + gged + kpoop + tamera + technicallyron + ugandans + undermyskin | 61 | 0.0071766 |
1183 | bangs + overrated + annihilationmovie + aspaceodyssey + banshee + deconstructing + finnick + friel + greenpaper + mbb + mosley + shepeteri + sodom + whitepaper + wiona + wolfhard | 61 | 0.0071766 |
13 | pret + foodwaste + unitedkingdom + hoisin + exposures + goosefair + longexposure + wrap + duck + goose | 61 | 0.0071766 |
1405 | shh + deetsing + madchester + demontford + biff + cleveland + rabelais + sheeps + grenfelltower + kipper + maclaren + strangling | 61 | 0.0071766 |
1473 | deficienc + duplicity + heeded + rubbed + moral + 50ft + awkwa + bloodlust + chille + colonising + dagmar + handli + newbi + oka + platinums + sako’s + shamy + solitaire + sunildutt + trigger’s + voyd | 61 | 0.0071766 |
1591 | saboteurs + moderate + christian + wealthy + pollution + russians + propaganda + albasheer + compasses + crima + disappoi + galadimas + hadeeth + heatbreaking + laffng + panellis + q.excuse + statemen + toryleadership + trs + unnaceptable + upkeep + verhofstadt + بس + تسقط | 61 | 0.0071766 |
165 | spotifywrapped + 2018wrapped + spending + returns + 1 + hours + brilliant + happy + thirty + bestprogrammeever + dadaji + xylø | 61 | 0.0071766 |
1677 | warrington + tours + forward + tonight’s + apcr + artclass + blackhistorymonth + bpsa + bpsaontheway + colm + humangeog + madprofessor + mthemahirakhan + palf + phillimore + pullman + rehearsa + rhinocup + shabana + slinger’s + spacegeek + weareacademicvenues | 61 | 0.0071766 |
1698 | whinging + faggot + animals + chancellor + elected + behav + deeming + delyth + elnemy + emancipated + mansour’s + weakn | 61 | 0.0071766 |
1712 | insān + nasiya + religious + sex + personal + mild + forecast + linked + advanc + argument.they + court’s + decam + dike + foxholes + franzen + hippocracy + labourout + polygamy + remoany + sadl + salafi + shittiness + snitty | 61 | 0.0071766 |
1713 | donating + bein + fits + enterprise + support + airquality + amcis + amcisconftwo018 + ardabmutiyaran + awarenes + barrell + charitybikebuild + conférence + diseas + donatebloodsavelife + greeninfrastructure + happyworlddayforchildren + japaneseanime + jenergyfitnessleicester + lightingdesignersinsilhouette + lleicester + loveladiesbusinessgroup + makesporteveryonesgame + mclindon + mercedes_amg + neurons + oliversean’s + oscarwildequotes + pm_valeting + powerljfting + raceforlifr + sssnakes + teamlancaster + teamyork + trainee’s + tts_earlyyears + twls + ukyouth | 61 | 0.0071766 |
1731 | 35a + labour + assad + patriot + cosplay + democratic + establishment + political + voting + leader | 61 | 0.0071766 |
234 | 12daysofjones + 24rs + headfuck + isatim + battleofwinterfell + stressed + unbelievable + alcacer + hermione + breakingbad + gameofthronesseason8 + gaucho | 61 | 0.0071766 |
257 | skating + ice + dancing + skaters + dancingonice + stars + freebiefriday + birthday + tour + partners | 61 | 0.0071766 |
288 | leiscester + mng + swami + ji + detailed + ganga + kingdom + united + shooting + documentary | 61 | 0.0071766 |
303 | honey + xxx + xx + wow + coverdrives + lamble + pusheen + birdfair + mirror + hehehehe | 61 | 0.0071766 |
335 | awesome + boobs + skinny + meme + jeans + elite + town + damn + super + guys | 61 | 0.0071766 |
348 | word + hands + lustrino + sonido + truth + amen + compensated + fives + grigg + leifle + ruben | 61 | 0.0071766 |
349 | classy + bigstarsbiggerstar + doddie + mooncups + rhyce + supafly + invaders + mnd + bwfc + jpn | 61 | 0.0071766 |
495 | mornin + hows + thepond + ticket + tickets + stealth + watchin + babe + xx + brinsworth + crinklow + gynaegang + hearbyright + interveiw + macky + mackygee + peecekeeper + pppn + tjay | 61 | 0.0071766 |
580 | kanareunion + tweetiepie + sweetie + labyrinth + distinctly + reme + regretting + hectic + flooring + nt | 61 | 0.0071766 |
842 | pounds + fantasies + cancer + connie + warmth + weigh + damaged + lacking + sad + tough | 61 | 0.0071766 |
848 | devorced + insensitivo + pahaahhahaha + auidence + florists + menopausalwomen + impresses + spurs + orwell + tint | 61 | 0.0071766 |
865 | sceptre + healthpsychology + msc + toda + leicestershire + acapellas + audisq7 + beavertown + blockley + bovver + cdj + curdling + dailycalm + edibl + eqpmnt + fisher’s + iamrare + kulwinder + mindmatters + norrie + numtraining + occupationaltherapy + onepintlighter + otstudent + phdsupervisorlife + pretender + revalidation + wellnesswednesday + yearofcalm + zootropolis | 61 | 0.0071766 |
944 | swollen + fromaggi + hambledon + quattro + zaflora + drunk + kilos + horny + asbestos + kgs + martinis + vibepayfriday + zoflora | 61 | 0.0071766 |
101 | prize + chance + fab + awesome + fantastic + giveaway + competition + win + bashthebookies + guys | 60 | 0.0070589 |
1090 | squidward + askia + courtney’s + enslavers + gmgb + lackathreat + nonarbhinoishqbaz + racisit + samori + sexisim + shaqtin + teamgbrl | 60 | 0.0070589 |
1247 | laughing + bubeck + generalized + muchato + shelliest + tellwhy + wheatos + gaydar + soundtr + sister | 60 | 0.0070589 |
1439 | they’s + bahsbxhwbs + fastidious + sexualised + totty + unforgivably + disappointment + decoy + mammas + mclovin + tutti + weasley | 60 | 0.0070589 |
1478 | splitcosts + kingdom + united + carpool + rideshare + blackandwhitephotography + park + wildlife + gt + 5hd + aaronkeylock + amwritingpoetry + badtouch + bassplayer + boni + bradydrums + britishwildlife + burling_paul + bydgoszcz + cample + challange + childrenstheatre + classicgeorgian + crake + deanmartin + definitiveratpack + dg3 + divali + dogthanking + ebrey + enterpriseadvisor + franksinatra + gerrygvipcode + getborisout + ginannie + grungerock + harket + hiphopmusic + hollowstar + indianidol10 + instatennis + justmadeabangerwithsevaq + kwnzafest + labourforthenhs + leicesterrocks + leicesterstudent + leicesterunistrike + mocha’s + morten + nkoli + phonescoping + pureaero + puresoul + purestrike + rossmassey + sammydavisjr + sharecoffee + sharemusic + studygram + sunderbans + tennistunsinourblood + thornhill + tiffaniworldwide + tonyandguys + touringrelights + wildlifeevents + witwatersrand + xanderandtgepeacepirates | 60 | 0.0070589 |
1550 | blah + requests + 2.20.1 + buyout + dannymurphy + gatwi + georgebenson + idna + righting + satell + schooltoyday + scrapio + seedbanking + shoehorning + skirpal + uneconomic | 60 | 0.0070589 |
1593 | marines + kop + morrison’s + stand + ripped + 88a + 9ft + accursed + alfstewart + bangon + bdw + belgravehallgardens + blighters + boerne + ebony’s + famoly + fatale + from.they + guinevere + inthelongrun + irmin + jarofdirt + lampstand + mosiacs + od’d + rove + setinthe80 + vagrants + zephaniah’s | 60 | 0.0070589 |
1603 | brexit + trump + corbyn + federal + tory + democracy + racism + constituency + party + reporter | 60 | 0.0070589 |
162 | 5lbs + gear + weight + punch + lose + fitness + resolutions + gym + sign + slowing | 60 | 0.0070589 |
194 | pin + chip + drinking + hoppy + ipa + celeia + corbel + whakatu + ale + porter | 60 | 0.0070589 |
243 | britishbasketball + readin + mens + riders + challenge + 2date + book + read + cheerleaders + mate | 60 | 0.0070589 |
334 | goal + teamclaret + crosses + row + midtableatbest + olbromski + 1 + 9️⃣ + badam + trick | 60 | 0.0070589 |
451 | spoilers + sounds + spot + ya + fordmupride + spoton + oooh + amigos + lescott + heart’s | 60 | 0.0070589 |
494 | derrick + sharon + gabe + javeed + garin + judith + beutiful + moxey + revoir + tino | 60 | 0.0070589 |
994 | coronary + dldk + fourpm + frit + klf + labrynthitis + lookig + nettleship + nonethe + 2ds + boswell + gappy + inverary + kis + loosies + slinky | 60 | 0.0070589 |
1005 | institch + 12daysofjones + spiritridingfreetoys + stitching + bestquoteever + classmeet2018 + crackdown3boomquetsweepstakes + fyreuk + getactive + greatshow + laserpointers + martinshottap + massivecongrats + munbae + perseverence + saddltastic + schoolisfun + soundsdodgy + webbtelescope + webbuk | 59 | 0.0069413 |
103 | competition + brilliant + macro + compressed + lens + flower + wind + gif + photos + eighteen | 59 | 0.0069413 |
107 | apply + suitable + happened + casting + squadie + yiy + maguire + retard + soyuncu + deer | 59 | 0.0069413 |
1121 | server + contraindications + dialup + guidan + hayu + sponsored + ntd + sabyasachi + ssds + birchbox + counterparts + frowned + woes | 59 | 0.0069413 |
1212 | bulldogs + surrounded + relieved + beyblade + enotional + fassbinders + imout + keemz + pheeww + predictableartbloke + tweetsforno | 59 | 0.0069413 |
1226 | cob + nom + artselfie + googlearts + osiers + bridge + adem__yc + britsout + chagosislands + ciggie + favedj + goholidayswithdiviyesh + jago + jeremykyleadverts + jwmefford + mexicanfood + microwaves + minicruiser + nowlistening + praccy + replanted + vegasbitches | 59 | 0.0069413 |
1253 | atlantis + bbcskisunday + earlies + kristoffersen + skisunday + tamam + tumultuous + patience + criticalthinking + slalom | 59 | 0.0069413 |
1441 | m8t + enemy + cantdecide + hosptial + cults + melancholia + analogies + intrude + scoliosis + shiro’s | 59 | 0.0069413 |
1479 | kingdom + united + gals + kobe + duties + hoodie + boardingschoolboarding + coffeepint + debbies + gofurther + itsnormal + mynewhome + rakki + richardarmitage + seanys + sexyman + tommy_lennon_ | 59 | 0.0069413 |
149 | earlycrew + mornin + round2 + halfway | 59 | 0.0069413 |
1587 | maythetoysbewithyou + _mamta + 12daysofjones + museum + zine + vibronics + djing + submissions + lestweforget + exhibition | 59 | 0.0069413 |
1700 | freud + speaking + brick + installation + clinic + forum + employment + 17729 + 978 + alltogether + benchtop + bloodflowrestriction + contributi + dedicatedday + depa + eidu + equalityadvocate + examinatio + forensiccollaboration + giversgain + hoses + isbn + perfectcombination + profitsble + skillsgap + stakeh + startles + thevolunteerexperience + unityrecovery + workforceplanning | 59 | 0.0069413 |
37 | cfsfurniture + antique + 107.5fm + unod + contest + tunein + smartphones + french + gmt + lar | 59 | 0.0069413 |
373 | luf + shaga + brownies + ding + beatin + gymking + muntari + starhmzi + tecs + arguing | 59 | 0.0069413 |
448 | xxx + follow + idol + birthday + xx + tweet + happiest + wait + pix + meet | 59 | 0.0069413 |
601 | schrolled + awilo + deleon + longomba + scrapp + ibrahimovic + fridaynightdinner + fernando + sunnah + thoo + tomlin | 59 | 0.0069413 |
844 | distrust + fenty + priv + 700k + behooves + bratty + breitbart + contradictive + execs + gradients + grg + imprinted + mcdreamy + proportionality + stoatandbiscuit + thotfapman + work.hate | 59 | 0.0069413 |
963 | bang + overrated + 18c + crazeh + evver + foodsecurity + ikara + maccaodyssey + madu + moshpit + tremble | 59 | 0.0069413 |
981 | canavese + hornseyroad + m’colleague + mate.this + raf.but + rosso + sexyfying + suports + thankyou.i + wadvreallybloved | 59 | 0.0069413 |
1006 | zeph + diaz + nate + liam + cunt + scouse + ebele + effusive + erman + handwaver + hatt + jameis + koo + malace + neglects | 58 | 0.0068236 |
1012 | arsonist + chugged + fentanyl + fluster + fucc + lovetowin + badder + 7up + chrysanthemum + honeslty + icicles + sksksksks | 58 | 0.0068236 |
1319 | research + modifications + melton + informa + physiclinic + consulting + borough + proposed + trials + mock | 58 | 0.0068236 |
1347 | bleuvandross + boj + disagreements + fye + pramripdoddy + sheering + teamtayla + shutters + refuse + kid | 58 | 0.0068236 |
1358 | disagree + cruyffcourtstmatthews + ifyoubuildittheywillcome + tmr + tse + blackcats + disagreed + fif + allah + chillies + swerved | 58 | 0.0068236 |
1377 | writers + confirmedbrummie + cuppy + earnshaws + freund + helwani + hindleys + lintons + timettes + clairey + dwane + emos + nonutnovember + safechuck + steffen + urselfs | 58 | 0.0068236 |
1430 | b.t + crappyexcusesforcheating + hagga + presumptuous + resonsibility + scarring + yoursekfv + ashawo + fortnightly + higgy + immortals | 58 | 0.0068236 |
1525 | refle + provider + 1000km + 10downingstreet + allaboutthebalance + autumnally + birdsfoot + bracey + burnet + byg + communitycohesion + cosmonaut + dowden + enkalonhouse + enterpriselecturer + externalrelations + facebookads + facebookblueprint + foxon + hackathons + hichkithefilm + jotham + leicsstartupweek2018 + natureshots + publicdressrehearsal + ranimukerji + schoolride + stna + supremes + toptoucher + transitiontaskforce + trefoil + vitamincneeded | 58 | 0.0068236 |
1539 | pay + rnb + apology + eu + alleviates + committi + compensations + debt’s + devaluation + equalized + ghislane + laddos + mandat + mandated + meritocracy + nisan + nottsfails + otr + pseudonymisation + statehood + ub | 58 | 0.0068236 |
1725 | prod + entertainers + freud + revision + conference + balanceforbetteriwd2019 + crystalharmeny + dmutalks + entrepreneu + euroapprentices + findingthegold + greatteamsachieveeverything + historyedexccel + incentivise + jameirahgroup + localresilience + mybody + nutritionandhydrationweeki + pearse + pnhcaconf18 + realse + reneeallaboutschoolcreativity + satellites + spaceports + wheatley + workperks | 58 | 0.0068236 |
204 | louder + everythi + achieved + supported + people + celebrating + involved + pls + cafss + fuddus | 58 | 0.0068236 |
213 | sweetie + pic + gorgeous + pics + beautiful + setter + stunning + beaut + stunnin + love | 58 | 0.0068236 |
26 | dear + painting + contact + breakfast + downstairs + priorities + kiss + charity + update + public | 58 | 0.0068236 |
323 | cringe + ustaad + lord + congratulations + bowing + shree + ayoze + jai + krishna + sacred | 58 | 0.0068236 |
464 | loveisland + planes + 737max + accent + niall + borisjohnsonshouldnotbepm + borisjohnsonspeech + brezase + coachella’s + endearingly + mosthatedmanintheuk + pocketing + schiff + undercutting | 58 | 0.0068236 |
58 | earlycrew + shaniececarroll + mornin + gluten + foodwaste + unitedkingdom + avo + bread + pret + free | 58 | 0.0068236 |
629 | scroll + nuh + win + gon + doublepenaltyrule + infinitum + mondaymagic + vcgivesback + meme + dnk + randomactofkindnessday | 58 | 0.0068236 |
640 | thousand + 0 + nineteen + nots + do’s + beginners + eighteen + 6.3 + takeaways + diwali | 58 | 0.0068236 |
656 | prayers + condolences + families + crash + helicopter + devastating + involved + sad + lcfc + tributes | 58 | 0.0068236 |
780 | 50pus6753 + 5a + basketcase + cherrygoodnight + dangerdanger + genoristy + gsadventday13 + icefesto + kwayet + kxipvsrh + mougthly + neighbourhoodplan + reimbursement + upperedenvalley + whychangeofheart | 58 | 0.0068236 |
824 | puffs + creampuffs + mutual + avidly + buyingahouse + cpp + enobong + fortni + hammer’s + helptobuy + specialff + ufgently + unfettered + waitingtimes | 58 | 0.0068236 |
838 | betterbrew + cavalli + espadrilles + stirs + toreador + yorkshiretea + youngman + ha + nocturne + pyrex + refinitive + sweated | 58 | 0.0068236 |
868 | election + brexit + voters + referendum + vote + voted + pigs + eu + dickdicks + easyer + mayoutnow + uinon + whatsthepoint | 58 | 0.0068236 |
871 | asksrk + designers + gon + injuries + infirmary + 4thvisit + febreze + habon + my1stquestioninheaven + rerferemdum + rhetoricalquestion + winwin | 58 | 0.0068236 |
948 | couldnt + champion + johnson + boris + control + spot + 5so + doidge + paprika’s + sigala + spiceupmusic + theemmys | 58 | 0.0068236 |
960 | 11.35pm + ayeartaughtme + beyondlimits + burfield + doaba + hartnell + powertothepeople + spiceless + timeslip + tooting + turnandrun | 58 | 0.0068236 |
1047 | mood + mane + worldcupofthedecade + broad’s + harryrednap + irtgtfasap + longeatoninvaders + maddsion + peaksandtroughs + rematchakimbo + swingsandroundabouts + wollop | 57 | 0.0067060 |
1065 | wavy + tweedle + ferocious + allergicfilms + brotherly + detecter + doonstairs + gettinghelpineed + idan + isports + kral + masego + morco + overrule + shuffler + tumbleweed | 57 | 0.0067060 |
1235 | pengest + olives + pancake + perks + andalus + hungy + orisirisi + underlined + sunday + omlette | 57 | 0.0067060 |
1299 | 10g + doppler + monofilament + patriarch + flyover + simulate + ultrasound + handheld + sanofi + police | 57 | 0.0067060 |
1345 | hired + fairportconvention + fuckoffsis + offguard + penss + psorasis + rewatches + shesanidiot + insty + korra + watchlist | 57 | 0.0067060 |
1419 | biomed + uck + happened + concourses + decommissioned + laeekas + machine’s + preening + specialness + theorist + trawler + usllay | 57 | 0.0067060 |
1429 | texas + float + size + plastic + sea + audition + ule + chasin + queenies + urasta | 57 | 0.0067060 |
1488 | emecheta + united + kingdom + belvoir + asianlifefestival + misty + leicester’s + jubilee + executive + leisure | 57 | 0.0067060 |
1562 | bestie + oven + buffet + 78million + annoyances + arranger + asma’s + bidon + claime + ebo + itsoveritsdone + maybe’s + safed + salerno + sausag + seder + theskripture + triix + uncomfort | 57 | 0.0067060 |
1574 | googleplus + marked + toda + leak + allyship + bilaterally + complexed + desc + displeasure + ens + forecasting + hef + independe + minutely + recoveryspace + renewin + stockpiles + tvml + ugand + unregulated + unsubtle | 57 | 0.0067060 |
1651 | fortieth + 1666 + angelou + crimson’s + decadently + dekker + designformula + dromgoole’s + egerton’s + encyclopaedia + homie’s + jabhangduensgeugvsjskjgshs + kazillion + kibbe + krampus + ninea + nineam + seasona + sweight + thegreatestvisitation + uperton + venti + wretching | 57 | 0.0067060 |
166 | gorgeous + beautiful + awkward + peachy + untill + ink + mummy + kiss + wicked + breath | 57 | 0.0067060 |
229 | severed + zarb + unionised + heil + disregard + prague + accidental + rethink + unsee + scousers + throne | 57 | 0.0067060 |
240 | 𝚝𝚘 + 𝚐𝚘𝚘𝚍 + 𝘐 + 𝘵𝘩𝘦 + 𝚝𝚑𝚎 + 𝕩 + 𝘺𝘰𝘶 + sprinkles + fairy + 𝚊 + 𝘢 + 𝗮 + 𝗔𝗚𝗥𝗘𝗘 + alleyways + 𝚊𝚕𝚠𝚊𝚢𝚜 + 𝕒𝕟𝕕 + 𝒂𝒔𝒌𝒊𝒏𝒈 + 𝕓𝕖 + 𝘣𝘦𝘤𝘢𝘮𝘦 + 𝑪𝒂𝒃𝒂𝒓𝒆𝒕 + 𝑪𝒉𝒓𝒊𝒔𝒕𝒎𝒂𝒔 + 𝚌𝚘𝚖𝚎 + 𝗖𝗢𝗠𝗠𝗘𝗡𝗧𝗦 + 𝚍𝚊𝚢 + 𝚍𝚘 + 𝕕𝕠𝕟’𝕥 + 𝒇𝒐𝒓 + 𝘧𝘰𝘳 + glassesgirl + 𝘨𝘰𝘭𝘧𝘦𝘳𝘴 + 𝒉𝒆𝒍𝒑 + 𝕀’𝕞 + 𝗜𝗙 + 𝗜𝗡 + 𝒊𝒔 + 𝚕𝚒𝚔𝚎 + 𝗹𝗼𝘃𝗲 + 𝘮𝘪𝘴𝘴 + newbalence + 𝘯𝘪𝘨𝘩𝘵 + 𝘯𝘰𝘵 + 𝕠𝕟𝕖 + 𝘱𝘳𝘰 + 𝗧𝗛𝗘 + 𝑻𝒉𝒊𝒔 + 𝘵𝘰 + 𝗧𝗬𝗣𝗘 + 𝘞𝘦 + 𝒘𝒆’𝒓𝒆 + 𝗬𝗘𝗦 + 𝗬𝗢𝗨 + 𝕪𝕠𝕦’𝕝𝕝 + 𝒚𝒐𝒖𝒓 | 57 | 0.0067060 |
256 | shift + overseas + sleep + peaceful + night + restfully + peacefully + restful + goodnight + wishing | 57 | 0.0067060 |
417 | happy + hump + bestfinisher + overplayed + scrimmed + tuesday + ave + libra + gorl + dryjanuary + jai | 57 | 0.0067060 |
452 | tits + laughing + realisticsay + slim’s + trinkets + grimace + illuminating + lollipops + tans + vd | 57 | 0.0067060 |
474 | magic + sksjjshshhshssh + blessings + celaire + corbynout + akshay + deen + kumar + yessir + dynamo | 57 | 0.0067060 |
498 | f1 + groby + reminds + 36mcg + adanoids + brome + caffeined + ferven + grommets + lasker + microfibre + polygamist + revitalising + sandwichstation + sureshot + wolff | 57 | 0.0067060 |
584 | butter + accuser + waddanimo + wanchain + whrn + wlv + vlog + amazonfire + bragged + charlotte’s + investigates + izombie + octopuses + provokes | 57 | 0.0067060 |
639 | madness + smart + yeah + init + chills + cold + dementiacarecrisis + reverent + smarty + badness + horniness + tightness + yaass | 57 | 0.0067060 |
672 | 07894509206 + glitz + ents + decor + blinds + mandap + pizza + domino’s + contact + dj | 57 | 0.0067060 |
674 | dm + send + bedding + xx + deets + dealers + details + curtest + nudes + choones + drivin + madi + walaalo | 57 | 0.0067060 |
677 | umbongo + phew + lozza + oge + ashame + nabby + spini + soo + bares + africans | 57 | 0.0067060 |
756 | awake + shift + hours + dozing + paradisegardens + lips + 1.8 + 8hrs + cantsleep + mousse | 57 | 0.0067060 |
791 | sausage + stressed + pains + feels + attit + bonnke + clien + headachy + notchristmasfilms + rasher + reinhard + timetabling + walk1000miles | 57 | 0.0067060 |
8 | win + love + hm + pizza + xx + favourite + guys | 57 | 0.0067060 |
850 | brexit + betrayal + inflict + tory + marr + 251thisyear + b’n’n + cliffedge + everybodyelseiswrong + onviously + orgeza + p.r + trogan | 57 | 0.0067060 |
864 | luck + booyaka + dadgoals + fundads + giveakidthebestlife + greenings + shr + tgtconf18 + tinguk + valueeducation + voteeducation + youreonlyyoungonce | 57 | 0.0067060 |
891 | hyst + janet + developed + madonna + adl + heartbr + northside + sadowitz + situates + unabashedly | 57 | 0.0067060 |
93 | sigh + sighs + bcc + aigh + sighh + phdchat + urgh + mufc + af + crap | 57 | 0.0067060 |
969 | again.yes + allbeauty + chockful + crete.might + everytimeitrainsi + favre + happen.ashes2019 + julien + rastafarians + swooner + trafficker | 57 | 0.0067060 |
987 | pent + bhetke + definitel + detangle + devasted + extraverted + lydon + meonce + winaldjum + buying | 57 | 0.0067060 |
113 | betterpoints + earned + walked + hundredths + miles + fantastic + eighty + thirty + fifty + superb | 56 | 0.0065883 |
1157 | alpedzwift + apoliticalcampusmyarse + b.excuse + bringbacksummer + cantsay + deice + isover + me.f + stonker + ushamba | 56 | 0.0065883 |
1207 | kun + craving + philadelphia + blackfriday + sleep + 7.23am + faya + manhattans + marving + tastys + todsy | 56 | 0.0065883 |
1282 | mistress + 6td + aristole + cquin1b + mofkrs + isis + albertfinney + glowin + reinforcements + senco + zzzs | 56 | 0.0065883 |
1414 | deep + drip + bedbugs + btown + golddigger + mydifference + sealysecretsanta + equine + fiddling + humor | 56 | 0.0065883 |
1442 | twirl + amazigh + feelmypain + hern + rushford + spitballing + xxpetite + 47k + bitc + feltz + mindsets | 56 | 0.0065883 |
1484 | meeko + wilbur + adopted + month + 9three0am + bloodletters + compassionately + elissia + limitingbeliefs + malamute + perennials | 56 | 0.0065883 |
1509 | numan + song + ghent + gary + birch + demo + aela’s + birchnell + bridgewater + cocteau + delsol + filles + hospital’s + laisse + leopardstown + marlowe’s + ofm2019 + prayerfully + reminisced + sarson + tomber + wanamaker | 56 | 0.0065883 |
1679 | scrapbook + city’s + business + inclusion + ken + 120gsm + afps + allowi + archhealth + beastmyarse + dawoodi + drumtuition + hines + jisc + khunti + knapp + leadershipskills + libguides + massag + mphil + neurosurgical + nisbet + pestcontrol + prototypes + selfiecompetition + sherrington + stps + supportingothers + thurn | 56 | 0.0065883 |
170 | agree + avarice + ropey + consuming + nominations + agrees + strong + innit + absolutely + statement | 56 | 0.0065883 |
1719 | darragh + britishbasketball + expedition + o’connor + proud + anonymousnightclubleicester + aykcbourn + britney’s + bucssport + celebratesafely + getonthefloorlive + judgemeadowlove + matthewbourne13 + meetingprofs + meetingsshow + mikhail’s + mucha + robbie’s + sinceday + suerte + teesside + tenyearsofrrf + weeked + werehavingaball | 56 | 0.0065883 |
23 | pride + victoriapark + leicesterpride + lgbtq + lgbt + parade + fireandrescue + joorton + emh + foxespride + jaycockshort + leicesyerfireandrescue + lgbtcentre + lgbtmelton + missie + nickicollins + rorypalmer + socialistparty + stjohn + transliiving + youarepride | 56 | 0.0065883 |
273 | grow + word + goldfinger + idf + killers + engcro + wait + child + ricky + defending | 56 | 0.0065883 |
316 | hh + sven + tanning + welling + lotion + lawrence + jackson + ty + rainbow + shock | 56 | 0.0065883 |
365 | weekend + lovely + hasan + nadeem + wonderful + salman + noah + eep + soumya + arberora + leeyah + zurich | 56 | 0.0065883 |
402 | lies + madness + liar + amazing + scenes + staysin2018 + bolero + tranquil + incredible + craziness | 56 | 0.0065883 |
636 | grumps + goodman + paramedicine + worldly + yaass + truely + oap + technician + yass + priorities | 56 | 0.0065883 |
701 | beckenha + dontmanupspeakup + fagulous + story.hope + thed + thistles + well.but + youngestmembersoftheaudience + bmd + funtime + oaklands + saturdaythoughts | 56 | 0.0065883 |
703 | gotcha + love + piestories + relaz + wayze + gravestone + plez + satnav + matron + strongbow | 56 | 0.0065883 |
742 | xxx + babe + anais + dressedbyjess + giveaway + chen + signing + allcrossed + lena + xx | 56 | 0.0065883 |
777 | sonali.ig + eya + falcoreislanduk + ongwana + zstnc + 10k + xx + follow + lezza + pigmented | 56 | 0.0065883 |
892 | gutterball + kirkwood + pi’s + shjt + smooch + sugarmums + charleston + shittin + stupidquestionsfortheschoolnurse + tassimo | 56 | 0.0065883 |
934 | inject + chop + town + impeachmenthearings + obsessional + suckling + teet + onel + winslet + hazza | 56 | 0.0065883 |
950 | nyc + annualcamp2019 + cumwhitton + itshersnow + missher + omnes + samme + summerlivesonitv + summersolstice + unem + wtestlecon | 56 | 0.0065883 |
1007 | europeday + luxembourg + detail + mock + photoshoot + sing + 12mb + 18mb + antholo + blueprints + bryam + budgie’s + daysinthesun + godblessournhs + gujara + indesign + joviality + magicmail + mentalhealthday2018 + mpcastleford + needencouragement + nitefreak + quay + quillette + talbles + trundle + typeset + wmhday | 55 | 0.0064707 |
1071 | 1000000000000000000000000000000000 + brambles + hpindigo12000 + longpigs + the2019 + ttgtravelhero + tunage + 1988 + idles + outkast | 55 | 0.0064707 |
1080 | djene + jaw + pill + tablets + bipolar + c.s + clic + darcie’s + fairhill + frankfurter + hevent + highstreet + throa | 55 | 0.0064707 |
1163 | billyfest + fuckable + leeloo + lumpas + reichelt + shege + soapbox + ff’s + umpa + endoscopy + manifestation + nigella | 55 | 0.0064707 |
1181 | welshman + chatterley’s + endviolence + iamthesudanrevolution + justiceforuyghur + sudanuprising + thuram’s + ygz + worzel + gummidge + kosher + kruger + puth | 55 | 0.0064707 |
1436 | wipe + sadnessinhiseyes + supanatural + creating + honest + stainless + niagra + preferences + puzzled + tasteless | 55 | 0.0064707 |
145 | weekend + lovely + hope + brill + wonderful | 55 | 0.0064707 |
1536 | snoring + watermelon + burzum + heavt + mattre + prirformis + psychotics + stethoscopes + upthat + weaned | 55 | 0.0064707 |
1567 | proxy + stuffs + capital + item + 5gwar + 8.70 + austrailia’s + boffins + caretakers + daripada + dustjacket + figu + fk’s + keyless + mat’s + pakai + pimco + playstations + polticial + sumthing + twitterdms + ypung | 55 | 0.0064707 |
1568 | declare + abattoir + failwell + financin + groundwater + koalas + losi + moneyfornothing + penkhull + playgrounds + recogni + reddits + reshel + usel + wastemoney | 55 | 0.0064707 |
1589 | sandhu + prompting + tools + naj + inte + dr + empower + qualification + testimonial + improving | 55 | 0.0064707 |
1671 | belonged + woop + tony + 10.25am + 11.02am + 11.06am + abled + apportunity + authorwouldyou + blogged + bodypump + d19 + ecgs + forgiv + jawsome + josh’s + maslwa + megmovie + metacalm + moonraker + prigent + russo + two0miles + waddled + whisked + مصالوه | 55 | 0.0064707 |
1673 | vaporeon + retreat + center + artsjobs + bcbf_18 + chos + digitilartist + dinn + disadvantag + espeon + facili + gowelltoday + headzupbusiness + helpi + ionic + iwca + jobsearch + literarylunch + meriva + moandzoe + pokemonfanart + portage + qaiserazim + smokebush + stayactive | 55 | 0.0064707 |
205 | amendment + weekend + surviving + loses + cent + 70 + custom + lords + union + lovely | 55 | 0.0064707 |
235 | size + image + edition + limited + adamas + craigalanart_ + kamp + x24 + x30 + x34 | 55 | 0.0064707 |
328 | birthday + happy + mkbsd + wrongs + mom + wishes | 55 | 0.0064707 |
345 | hell + beautiful + fucking + stunning + gorgeous + waoow + contrarian + fuckinhell + impressively + mandir | 55 | 0.0064707 |
358 | veins + inject + crying + kcvslar + directly + oui + tears + annas + callejon + capitano + croix + crossaints + noght | 55 | 0.0064707 |
414 | move + alive + trust + pengness + diminished + woow + unai + trends + motto + sn | 55 | 0.0064707 |
457 | mince + comfy + ablo + luchagors + sakeena + uproariously + washers + navdeep + physicist + preed | 55 | 0.0064707 |
539 | overs + wicket + wickets + aussies + ashes2019 + india + bowling + bowlers + runs + england | 55 | 0.0064707 |
607 | thas + ella + waters + eh + 4get2 + alexandra’s + arithafranklin + beegreendirectory + blancpain + daly’s + jyoti.chandhok + maxgeorge + sundaysex | 55 | 0.0064707 |
723 | fortnite + madden + york + curse + 50v50 + justva + lifelines + percz + crossed + dsquared + fanciers + pushback | 55 | 0.0064707 |
738 | code + percent + 2book + 10 + curating + sale + cuda + limite + store + 50 | 55 | 0.0064707 |
822 | rink + cctv + meghan + amberwindows + ashole + bhikhu + concer + hellmann’s + kuda’s + kumlien’s + luncg + medicinecalling + multiplex + ng12 + parekh + prem’s + shawall + sheik’s + triviathursday + ukippy + workaholic | 55 | 0.0064707 |
899 | yah + 22g + dullness + every.single.year + rosd + shellz + spina + vechile + clammy + kneading + overdosed + pager | 55 | 0.0064707 |
943 | doggy + focka + setlement + suspence + sxc + sledges + yard + tiddies + sprain + altered + blouses + ghosting | 55 | 0.0064707 |
1020 | respeck + onky + pizzatime + sprog + steamroll + trumpy + sauvage + toilet + corfu + cozzie + orthodoxy | 54 | 0.0063530 |
1083 | cure + damola + disagree + doctor’s + hypnotic + fob + snowman + radical + partying + dunk | 54 | 0.0063530 |
11 | competition + fab + cool + win | 54 | 0.0063530 |
1119 | greddy + isterrifyinglyaword + ched + sirius + winnats + thrilled + edd + terrifyingly + glide + mints + wam | 54 | 0.0063530 |
112 | ezprint + uv + wall + vertical + world’s + printed + directly + 3d + bespoke + mural | 54 | 0.0063530 |
1135 | fridayreads + eatafilmforbreakfast + insitu + henry + netball + datguymoses + fireplug38 + itienary + japanexpo + pahnationaldogday + qbaraz + rescuecentre + shorthaired + subscrition + weareroses | 54 | 0.0063530 |
1168 | osmo + slowmotion + ksivsloganpaul + chaff + sedate + choreograph + pussycat + wary + cinematic + rigged + swallowed | 54 | 0.0063530 |
133 | correct + weekend + brill + beast + lovely + screaming + kellie + bruce + steve + bast | 54 | 0.0063530 |
1335 | bendy + yalls + sick + bronchitis + hyperthermia + grater + constipation + invigilators + resorted + recommending + viagra | 54 | 0.0063530 |
1411 | bbc1xtra3shots + hesadick + sherk + inder + yanoe + spoken + hugest + unseemly + harder + prospering | 54 | 0.0063530 |
1498 | tickets + birminghams + cordially + effie + profesional + dj’s + lalu + tickledpink + sale + hiring | 54 | 0.0063530 |
1499 | freelance + financially + apprecia + vote + arabic + stress + struggling + addenbrookes + diffus + edip + individual’s + laughi + multiply + neutralise + parents.w + quadrillion + recouper + rijke + rws + thingsthatarebadforyourhealth + untangling | 54 | 0.0063530 |
155 | whoop + whoopee + xx + landscaping + paving + bella + gain + loss + win + pics | 54 | 0.0063530 |
1556 | slime + timepm + barrio + cunningham + gelato + tickets + thousandths + interiors + starlight + staff | 54 | 0.0063530 |
1564 | exit + andangnya + archetypes + awinkado + brablec’s + cematu + dooring + evide + evokes + foundational + gaurentee + iaccidentlyatesome + ladsnightout + mapuche + suge | 54 | 0.0063530 |
1608 | morrison’s + lemonade + strategic + pairs + 2016 + 1703 + backstreets + fbp + flt + joulio + logistic + loughbor + opte + parlov + ramallah + segal’s + skyfire + voce | 54 | 0.0063530 |
1625 | hutu + pooh + mh + slow + songs + 21.02.18 + 70yrs + kuchafua + lifeboats + lineage + meza + michael_hunter + mushaf + rua + usayd | 54 | 0.0063530 |
1639 | 60fps + 99s + aquate + communicative + environm + heari + humanizing + itmustbetheonions + jayday32 + obrees + overlong + pampas + pastu + sneerin + swingi + witc | 54 | 0.0063530 |
1641 | microbe + sth + 1mp + abstractions + allocat + aret + barometer + courted + defiçiency + follwed + grandmothers + mordin + munroebergdorf + salarian + solus + talke + turian | 54 | 0.0063530 |
1667 | nightcore + placeshapers + cpd + community + event + selfless + lyric + recognising + graduates + ghana | 54 | 0.0063530 |
1722 | gardenscapes + actioncoach + historians + meeting + orchestra + forward + adultwork.com + davidhuseobe + exitstrategies + gereation + growthspecialist + iwillweek + kasey + mcghee’s + mischiefmakers + neeo + paedsed + paedsrocks + railwaysafety + rupaul’s + safarnama + summerreadingchallenge + tfj_photography + trasecelebration2019 + uhls | 54 | 0.0063530 |
183 | nope + pomes + budging + quickest + involve + piercing + guard + yup + perfectly + gunna | 54 | 0.0063530 |
210 | ty + keeping + hope + alls + tricia + lui + lov + lovel + jody + morning | 54 | 0.0063530 |
248 | smitten + hunny + angeline + postpartum + rayven + tbff + farther + psychosis + charity’s + greysanatomy | 54 | 0.0063530 |
27 | planted + bombs + sigh + damage + followers + plane + bud + sexy + words + weekend | 54 | 0.0063530 |
338 | mood + sooner + fat + current + page + merrier + storms + mj + 1000 + backwards | 54 | 0.0063530 |
355 | miniature + fimo + guineapigs + guineapig + miniatures + guinea + pets + pigs + cute + pig | 54 | 0.0063530 |
385 | followers + reach + helping + chance + hundred + outstanding + ten + literally + halfway + past | 54 | 0.0063530 |
482 | love + xx + babyg + heartbreakingly + leapy + suni + moree + yaa + lots + xxx | 54 | 0.0063530 |
593 | meantime + catalan + disobeyed + extractor + godards + hailthesun + nissed + swmbd + tradgic + wolcru | 54 | 0.0063530 |
630 | boirders + brexit + priti + guts + betrayal + patel + mp + selling + call + wrightstuff | 54 | 0.0063530 |
688 | loveisland + impendi + politican + dumbasses + muslims + shack + island + establishment + corrupt + loveisiand + temporary | 54 | 0.0063530 |
699 | agenda2030 + unga + sdg + owed + combat + zoo + rates + pensions + akabusi + apauling + criminological + fansites + fotoshop + imoral + jihadis + mciroy + oceand + rebalance + redrow + repossessed + screengrab + snatche + sociological | 54 | 0.0063530 |
728 | xx + babe + darling + greeat + sanawich93 + wintery + manicure + anytime + greg’s + reposted + smithy | 54 | 0.0063530 |
823 | arafuckingbella + jacare + liol + nioolas + sandbach + todayb + yamcha + lip + else’s + hercule + jepson + jovani’s + royalbaby3 | 54 | 0.0063530 |
872 | confortable + logos + universal + 1954 + 2ltr + analysise + anusface + banchees + bestsellers + brummies + burr + cindere + denbies + devinya + doctored + gahh + hardcore.the + neworleans + soiuxsie + sphincter + stanhope | 54 | 0.0063530 |
1018 | data + gcseresultsday2019 + carbon + 11.59pm + bizi + desertislanddiscs + devopsagainsthumanity + dynamit + hsj + maggie’s + onyourfeet + opposable + ourhouse + typesetting + vfr | 53 | 0.0062354 |
1027 | aide + aggy + moron + bolton + novels + boasted + goldenballs + teakshi + teyana + vinlands | 53 | 0.0062354 |
1043 | gynae + nicu + fries + stella + pint + season + 13reasonswhyseasontwo + condor + antihistamines + makeashowormoviecold | 53 | 0.0062354 |
1049 | thugs + cape + rat + anticlimactic + flashly + freddys + gleu + muddascunt + napm + oystons + partings + teggies + tweewtmy | 53 | 0.0062354 |
1073 | frasier + enforc + euelection + girihaji + gw4crucible + psu + runwithrav + spotlights + tonistorm + arni + mummyblogger + nxtukcoventry + psyched | 53 | 0.0062354 |
1089 | sekonda + guten + improving + a’dam + alilowth + balsall + beebot + blnvids + bluesatbrod + cathicon19 + chibnall + domed + embodiments + holdings + horrorfamily + horrormovies + internationaldayofthegirl + intersections + keyham + moreso + rausby + seksy + sippy | 53 | 0.0062354 |
1112 | 91yrds + dhibaato + fjb + notbuyingit + preserving + rember + gratuity + politicising + 53s + hunnid + rustler | 53 | 0.0062354 |
1166 | adama + attic + polling + battlestar + cim + confederates + contributio + fa_wpl + floorboa + galactica + houska + iunno + janetjackson + marcus’s + nocontextdnd + purpurea + redrafting + sarracenia + scrend + ukbffnationals2018 + walsh’s | 53 | 0.0062354 |
1186 | candice + happened + hotspur + magic + areright + bellewhaye2 + coursed + halliwells + m3 + ohmygodyou + pledge2pray + prestwich + ratlikecunning + whoes | 53 | 0.0062354 |
1224 | indefinite + radicalise + noblest + perspirant + hbu + catchment + pursued + dfw + ligue + chased + fume + rodney + rounding | 53 | 0.0062354 |
1231 | yuh + heyzos + twitterer + wetbandits + earth + marry + 61min + desailly + bawl + bevs + teetotal + whisk | 53 | 0.0062354 |
1232 | babcock + broadband + cost + employment + 15b + 2388.24 + equalizing + gingh + itvhub + knh + macpro + najibrazak + virgininternet | 53 | 0.0062354 |
1240 | stamford + redbull + posted + nowplaying + rt + forge + watermead + dragons + numan + 2v0 + 3st + afterleavingthevillage + ainfinityalgebras + arxivpreprints + babesinthewood + blackfridayweek + cheddarvalley + coalgebras + crownprosecution + goldstarproductions + lauraashleyhome + mulderscully + nelsons + oldisgold + oldwithnew + pintage + sarahracing + show8 + smeg + solicitorsaccounts + stasheff + stringfieldtheory + thetruthisoutthere + yousef | 53 | 0.0062354 |
1302 | luther + closethegap + gunfingers + leeprobert + seabridge + sharkweek + weezer + lou + bangs + gw19 + rosetti + stormzys + waugh | 53 | 0.0062354 |
1424 | fearofheights + filthytigermolester + imessages + nevercarryaballretriever + parlance + shepard + slauson + heelys + nympho + syphilis | 53 | 0.0062354 |
1458 | tickets + cordially + limitless18 + pblounge + cara + le2 + textured + strung + tickledpinkcomedy + stoneygate | 53 | 0.0062354 |
154 | xxx + fab + hamper + jessie + bored + fine + stay + xx + excited + love | 53 | 0.0062354 |
1642 | brecht + vivek + priest + naive + angushad + buddhistpriest + carls + defendin + dftb17 + guara + japanidol + kewl + powerwashingporn + quirk + sabo + seventee + subreddit + zionis | 53 | 0.0062354 |
1663 | barkby + exhibition + march + taster + gt + adayforleicester + batson + breadangel + curatorial + hellbladesenuassacrifice + interrelated + jbi + latests + lt3 + ltown + neiland + ollie_kd7 + outcheax + reggulites + tebo + the_bhf + thegallerysocial + vote.leo + wheyhey + y10 | 53 | 0.0062354 |
174 | prize + awesome + stroking + andrew + scratching + scratches + yikes + strokes + fur + ears | 53 | 0.0062354 |
195 | storytimeselfie + children’s + promote + helping + brill + challeng + bridal + sona + nims + bride | 53 | 0.0062354 |
375 | waiting + chori + aur + karo + bas + kay + ki + patiently + actives + akhhbsnoh + banayee + beguman + behter + bevkufo + bhabi + bhagya + bhi + bkre + bukkake + choro + cina + dakoo + ffifa19 + gainwithtrevor + gfro + gushing + hmly + hoty + huwee + ihc + jata + jiysee + jori + kaha + kaltay + khaney + laey + lagal + larkay + leaue + mahlay + mazakh + mjh + nabe + nahe + nisar + oookimm + paise + phir + pizzay + salo + sangawi + shakal + she3re + steveweisers + suno + trapadrive + uperse + wileyfox + wirelessfestivallineup | 53 | 0.0062354 |
388 | prayers + recipe + nothin + tasty + tenerife + jamies + moongh + watchinginthepub + anjay + nuer + onggi | 53 | 0.0062354 |
450 | whoop + fight + ah + frenchy + gettingwhooped + kahn + plaice + sixnations2019 + 1v1 + leiwol | 53 | 0.0062354 |
522 | love + xxx + lov + cammy + shortstorycollectionbytinaabrebestseller + xoxx + alka’s + norty + moe + catered + wich | 53 | 0.0062354 |
545 | happy + paddy’s + christmas + merry + ho + grandparents + xmas + adrianx + halloween2014 + happyhalloween2018 + hidaya + holloween + lillystone + squigglers + styatesday + thekindnessofpeople + topsyandtango + wignall + worldratday | 53 | 0.0062354 |
563 | birthday + happy + 170yrs + englandsnumber9 + girlsmissing + happilyevermackie + ourlovestory + tweetyourtreat + xmaseve + zumbalove | 53 | 0.0062354 |
603 | funder + remorse + proposals + watc + agreeing + pros + passes + rumours + 4u + bombarde + incloud + leicestersquare + nakkash + rolandout | 53 | 0.0062354 |
683 | brexit + tories + labour + itvdebate + tory + marr + minority + stance + vote + againist + bexit + britrev + cupido + dither + elution + hbhb + howbigwillthelossbe + imaged + inbetweeten | 53 | 0.0062354 |
686 | labour + vote + tories + tory + party + borrowing + democrats + brexit + democratic + remainers + ukip | 53 | 0.0062354 |
693 | champ + fifa + mvp + spurs + lincoln + annasoubry + copeland + enim + forknife + tuber | 53 | 0.0062354 |
774 | anabel + blanchard + lawrence + commentator + jeremykyle + cah + 270s + albee + chiwali + cissam + cunton + enought20 + fourtick + ginsberg + jamescorden + killary + lecure + moxon + nascar + quickscopes + revo + soccernans + trubel | 53 | 0.0062354 |
796 | insta + dcdatgdshtde + groupchats + hmwk + primeday + wastemans + invader + mohawk + puzzled + ugly | 53 | 0.0062354 |
896 | krypton + syfy + watched + luther + bulimia + carbonation + endofthefxingworld + jefferies + qnd + thearchitec | 53 | 0.0062354 |
917 | teemo + lord + rush + alertness + balne + blessedness + calcio + ewok + freud’s + hatoofficers + niv + strobes + tweetdeck + unacknowledged + visiblemaths | 53 | 0.0062354 |
92 | wonderfully + ff + artists + talented + dedicatedly + ks2 + talents + sixty + genuinely + count | 53 | 0.0062354 |
961 | imagine + oasis + imsorry + ndabananiyeland + cóques + 28m + burmese + macaulay + ms19 + relies + xg | 53 | 0.0062354 |
979 | proud + fantastic + aminatakamara + day1mate + hote + oldhow + saymashaallah + u14s + bonbons + welcomi + yourselve | 53 | 0.0062354 |
982 | kabhi + juicy + aang + bryllcreem + coords + galz + gham + khushi + mastrepieces + tesoro | 53 | 0.0062354 |
1002 | pep + 10ball + alors + anthonyjoshuavsalexanderpovetkin + bringmethanos + dommage + freemahrez + garros + grigg’s + knifepoint + r92vuls + thamographe | 52 | 0.0061177 |
1024 | cartoon + jersey + 90hz + ambulanceservice + animating + babearslife + bestofboth + bischoff + cartograms + castleman + churner + conten + educa + harb + ivortheengine:bagpuss’s + retes + wreford | 52 | 0.0061177 |
1033 | aquaphrase + bashmore + bbm’ing + bigga + channeled + cheetah + earthists + gussets + margret + quotables + scherzomfishrnwner + uste | 52 | 0.0061177 |
1053 | chalmers + charlize + deloran + dizzle + heatacelebrity + mustbebuzzininyourbonesbitch + nurdle + sext + shmapag + childish | 52 | 0.0061177 |
1054 | ariana + 99.999 + dispise + indisputable + lcpa + shuttling + bingewatching + caucasians + parodying + saxons + shitehouse | 52 | 0.0061177 |
1143 | baghban + cockwash + guzan + karuis + muckhole + mullarikey + scruples + snakiest + badescu + goodwoodraces + triffic | 52 | 0.0061177 |
1155 | film + lift + toast + recognises + encounter + carter + elite + rosie + 13minutestothemoon + andrewneilinterviews + astarisbornmovie + kakhulu + racingpost | 52 | 0.0061177 |
1173 | comeaux + cuckwhoo + have’offended + ibelieveyou + skagness + zonndi + arturo + blueplanet2 + edmondson + fugde + zora | 52 | 0.0061177 |
1205 | douche + mumble + conspired + crankie + daenarys + neidhart + underhandedly + kyle + gods + jimmy | 52 | 0.0061177 |
1269 | two1st + fuccs + gdprday + gyros + jday + melancholic + stiffy + sunset + sleep + crepe + granat + nido + vimtos | 52 | 0.0061177 |
1280 | 57mins + 5secs + guenwhozi + sheltered + boning + compare + bopped + bye + mcsauce + giftbetter | 52 | 0.0061177 |
1390 | cani + intellectuals + keywest + kindhearted + parkhead + yestheroy + words + doctoring + onepiece967 + describe | 52 | 0.0061177 |
218 | giveaway + fantastic + awesome + shoeoftheweek + lovely + brilliant + competition + guys + raffle + win | 52 | 0.0061177 |
283 | black + white + partridge + jobs + pear + assistant + 3 + 2 + 1 + tree | 52 | 0.0061177 |
299 | thankyou + thankyouu + sima + tomeka + beaut + leah + bestfriend + smile + diamond + doll | 52 | 0.0061177 |
301 | nice + angelface + matkins + bronya + ilysm + babyy + babe + cindy + maeve + baby | 52 | 0.0061177 |
344 | fuck + poll + fock + fockoff + frack + shitshow + transferable + serpent + pencils + romania | 52 | 0.0061177 |
398 | agree + vitty + deader + happened + mls + veteran + prouder + clocks + nicer + bangers | 52 | 0.0061177 |
415 | unstitched + happylohri + sari + match15 + mondayoffer + jewellery + mix + range + gift + cann | 52 | 0.0061177 |
476 | eyes + munbarca + rehoboth + nobodys + cheapskate + perked + 12hr + rafinha + rakitic + slopes | 52 | 0.0061177 |
490 | kingdom + united + pausemedia + vintagebollywood + rhiannamanani + mua + photography + nims + boutique + model | 52 | 0.0061177 |
526 | folabi + godhelphisflock + laudrup + neoconservatives + racsts + smoo + sparkplugtour + cosplayer + endpjparalysis + intomes + novella + rubin | 52 | 0.0061177 |
57 | fie + positively + itunes + productive + lies + bandcamp + click + grow + light + album | 52 | 0.0061177 |
721 | laughing + loud + screamed + flubbed + illbleed + muvver + oisin + orgasmed + propositioning + table1 + wyla | 52 | 0.0061177 |
735 | blame + pod + debt + 2217 + boarder’s + chechnya + disreg + ev’s + factcheck + gvt + involvin + itsalies + lgbti + metalman + prolet + psycos + suppressing + unchal + understan + zerohour | 52 | 0.0061177 |
736 | deadass + exelent + cerelac + class + homygod + lolzx + penoo + craving + wingthh + yerp | 52 | 0.0061177 |
769 | disturbia + hhp + sheroes + whitlows + youstillturnmeon + bepicolombo + thunderbolt + yorke + hoods + yvonne | 52 | 0.0061177 |
820 | green + chickenness + familyouting + getgremlytograduation + harjap + when’t + admires + funnel + sud + thistopia + trilby | 52 | 0.0061177 |
863 | mascriding + islam + charlatans + illiterate + prisoners + 80 + rooted + loveisland + monty + europe | 52 | 0.0061177 |
87 | precisely + painting + contact + loadofballs + confusion + aha + coys + gary + kmt + bro | 52 | 0.0061177 |
881 | fake + fuels + fossil + justsaying + greedier + infantilism + kust + nosuprise + nuf + peculiarly + redistribution + replapsed + sorry.i + that.he | 52 | 0.0061177 |
1026 | newcomerfairytale + spider + walaalo + banger + fucke + impala + iwe + zeph + mangled + ctrl | 51 | 0.0060001 |
1109 | uni + assignments + antarctic + badluckcharm + brutalist + dankest + laminitic + rich + biochemistry + shibden + unnaturally + wdyd | 51 | 0.0060001 |
1199 | 5ft8s + bnard + gurlez + heartbreaks + huhne + intead + itvin + llloris + ooft + playerpower + screenwriting + soat | 51 | 0.0060001 |
1228 | ashley + applicable + criminalresponsibility + davro + grizzly + idrees + laminators + member’s + sanderful + zeitgeist | 51 | 0.0060001 |
1246 | foreals + sugalumps + revengeissweet + mood + gassed + habitat + confront + minnie + followthefoxes + morning | 51 | 0.0060001 |
1260 | alliancesurge + anglicised + bolloks + crypt + lyles + cranes + kem + facists + varda + blusher + shoehorn | 51 | 0.0060001 |
1274 | ezone + glutenfree + vegan + coffee + free + store + highcross + gluten + iced + stocking | 51 | 0.0060001 |
1285 | choking + uou + jambalaya + annoyed + kickstarting + ugh + irritable + shakers + iccworldcup2019 + squealing + wager | 51 | 0.0060001 |
1337 | wait + sleep + divisionala + mywinterinparisregion + waris + amsterdam + weeks + cheesefest + gopats + nighters | 51 | 0.0060001 |
1378 | wave + sea + bastard + 3xa + serums + taxidermists + theroar + surprised + pandoras + sandown | 51 | 0.0060001 |
1383 | alisons + maam + the100 + weekend.come + odaat + crapping + earpers + hideout + quitter + cite + oman + perm | 51 | 0.0060001 |
1395 | paranoia + gsm + ridens + yall + courtoisthesnake + ascertain + deaded + prostituting + slums + davidattenborough | 51 | 0.0060001 |
1455 | centre + city + art + tigers + 2bs + 68thmissworld + advantageous + bitchass + bythethroat + charlt + craigtatt1975 + diagcon + dialectquiz + diggininthecrates + djabilities + eyedeaandabilities + imaround + instablogger + lancers + loughboroughsport + michaellarson + mixtapedjs + mr_granger1 + multifaith + northernlass + opentothepublic + philwarrington + pierreliggett + rceinengland + revl + scotty_g_18 + sept2018 + thisisreal + truhiphophead + uclfinal2019 + wallysofwigston + watercolours + watercooler + wheelerd80 | 51 | 0.0060001 |
1464 | knowingly + earnings + resolved + 360p + appts + clarifications + consen + customers.took + eureftwo + facebookgate + leicswin20one8 + passworded + practioner + reafy + virginrail | 51 | 0.0060001 |
207 | foodwaste + unitedkingdom + bacon + free + baguettes + caesar + chicken + olives + tomatoes + avocado | 51 | 0.0060001 |
246 | mornin + coffee + ave + souds + drinkin + fluids + 5.30am + plenty + gud + warm | 51 | 0.0060001 |
261 | amazing + amstelgoldrace + mammamiaherewegoagain + liveve + jhb + mammamia2 + shots + goal + player + victory | 51 | 0.0060001 |
326 | yummy + hm + tasty + mmm + yum + yummyness + overt + stews + hmm + gingers + injected | 51 | 0.0060001 |
406 | sharks + 0 + converts + mcknight + wicket + cc2 + scores + bernardini + hampton + alexander | 51 | 0.0060001 |
472 | beautiful + couse + scucces + stunning + goldsmiths + saddened + love + og + glam + faye | 51 | 0.0060001 |
485 | heart + pogboom + cannonball + dris + farewall + fluxys + grettle + matt_lecointe + ravenstone + rhymegame | 51 | 0.0060001 |
488 | kingdom + united + 4ward + priz + poundland + comps + babysrus + fencers + toysrus + coaches | 51 | 0.0060001 |
565 | awat + tidoq + lagi + gregory + oki + accent + partly + tak + bb + abt | 51 | 0.0060001 |
573 | birthday + happy + pele + day + coyb + blessed + dday75years + dispastico + girthday + letitshine + t’celebrations + thankyousir | 51 | 0.0060001 |
582 | inna + skating + amazingthank + bestfriendsday + getvoting + goofball + josza + lillahi + mbcca19 + mbcca2019 + stripeyhoney + tbchmakeschristmas + timesupacademia + tutland + weareuol | 51 | 0.0060001 |
641 | rail + wages + arbitrary + deutzer + freiheit + futureequalityequalpayrespect + lecker + rgds + twatsontheroad + voteone | 51 | 0.0060001 |
665 | nap + britney + dolly + icon + cagou + dolemite + frustra + krispies + mariya’s + recommende + relevan + sissorh + treas + whereisourchuffingsummer | 51 | 0.0060001 |
667 | unfit + cunt + prick + loud + laughing + pulises + sharif’s + sharpened + bastards + borisjohnsonlies + kiddin + livpsg + rihad + riyadh | 51 | 0.0060001 |
69 | correct + emerson + electric + hiring + join + england + engineering + job + businessmgmt + team | 51 | 0.0060001 |
712 | blah + dom + statistics + 0.0001 + arranges + bankruptcies + catholic’s + discrediting + fumour + heisenberg’s + kiwa + marb + transph | 51 | 0.0060001 |
715 | thurmaston + cte + stadium + king + power + augustintoseptember + britishlgbtawards + captaincorelli + fridayplay + happyjuly + justtheone + latesummerseve + littlefluffballs + mauveroselips + mondayisj + neededmuchley + newbuilding + pastlesontheeyes + tks | 51 | 0.0060001 |
783 | pic + xx + nice + cum + cheape + lovelyvxx + xcxx + carlings + babe + um | 51 | 0.0060001 |
799 | gea + lloris + goal + de + header + lukaku + eurovision2019 + hibshearts + tottenham + argnga + arsnew + beepbeep + veron | 51 | 0.0060001 |
886 | panoramic + influences + soulful + rating + flavours + enterprise + arthroscopy + bhaktirasamrta + colby_richardson + excusethesliders + idm2019 + invitee + meniscustear + nathanie + nrhbcf18 + prayerful + premere + samiya + team.they + topa + wonderdog | 51 | 0.0060001 |
90 | honestly + truthfully + portsmouth + eats + sucks + uber + bin + hun + honest | 51 | 0.0060001 |
945 | durnig + 1.4 + allnighter + extricate + quails + tommorrow + coke + tomorrow + policy + noose | 51 | 0.0060001 |
965 | frizzy + suturing + puel + 60 + defecto + drucker + kaptuska + oppositions + rowdiness + thouhts | 51 | 0.0060001 |
1185 | traffic + 30yrs + fuckarff + rotd3 + umbre + wip’s + unclean + decided + drivers + facebook | 50 | 0.0058824 |
1252 | dmxenzwzeqzmssuzwszzwwzwsjz + howbowda + snjxwmndnskxkmd + henchmen + beanies + dese + aot + conceived + sucha + properly + ugly | 50 | 0.0058824 |
1417 | booty + loyalty + settling + capote + flavor + pedometer + sharking + tourer + corolla + ewe + hanuman + metaphorical + nass + pragmatism + selflessness + vigorous | 50 | 0.0058824 |
1583 | cutka + airforce + lier + committee + eu + modi + labour + rahul + taxes + nhs | 50 | 0.0058824 |
1601 | chippy + thesis + mh + a.m.excuse + adagioforstrings + barreiro + coffeehouses + d.j + hellspaw + hoodle + hoodledoodle + kingston’s + phoene + puffy’s + redgrouse + sips2018 + twen + wheelchairing + wolfies | 50 | 0.0058824 |
1604 | 1080ti + 2080ti + aldershot + changin + compcraze + dobe + finland’s + gaultier + healer + masuku + may’ve + o’level + odenkirk + ourself + quotability + ryland + shamans + sounness + st.matthews + suffereing + unebviable + zimsec | 50 | 0.0058824 |
1620 | african + concerns + knob + alphas + cockhead + gaini + liveing + nimekumislead + parents + crocodiles + eissh + everyb + frustation + humdrum + inaccessible | 50 | 0.0058824 |
1637 | shonas + towering + dome + korea + palestine + mosque + racist + offensive + alansugar + biloor + confus + firdos + firstlyiy + janatul + nationaltreeweek + ndebeles + organisa + teamate’s + thirdly + underlies | 50 | 0.0058824 |
1729 | undocumented + bullyin + campaign’s + derecognise + erupt + incel’s + increasin + looter + narrato + nativeamerican + newsquiz + notor + occupa + perpetua + pilgrims + pref + prevarica + rightwing’s + risible + rmt + servative | 50 | 0.0058824 |
238 | freelancephotographer + autosport + mistress + thankyou + average + eighteen + thousand + nurse + tenkyou + whebyou | 50 | 0.0058824 |
271 | nice + redolent + sexy + cool + coil + ukspace2019 + yorkshireman + naughty + jody + respectfully | 50 | 0.0058824 |
274 | surveys + retweeting + gove + pro + imply + immigration + academics + tryin + eu + subsidy | 50 | 0.0058824 |
352 | drinking + stout + bitter + sour + pale + porter + photo + ipa + beer + fruity | 50 | 0.0058824 |
382 | hours + boi + sad + nigga + asthetics + jeremih + lonely + shut + veins + cud + sizes | 50 | 0.0058824 |
442 | market + holders + buys + stock + biddies + changeable + daily’s + gyrations + immigrate + pge + volitality | 50 | 0.0058824 |
583 | lunch + oops + brunch + alunacoconut + inthedeep + mcindians + nicu + warr + winitwednesday + matchday | 50 | 0.0058824 |
587 | betterthansexin3words + awful + incredible + noel + accabuster + viversection + cureheartachein4words + dignityin5words + electrocuting + fulla | 50 | 0.0058824 |
631 | blessings + awkss + blathered + checkyourballs + cliffhangers + dianne’s + ladysings + lovetoread + monsterenergy + peariscope + testicularcancer | 50 | 0.0058824 |
642 | sad + died + poignant + hear + 12.7km + 48.6km + councillo + defuzzed + funn + spacewalk + visio + youbare | 50 | 0.0058824 |
68 | supportindiefilm + actorslife + christmaslights + highcross + britvoteharrystyles + prettystreets + leicesterguildhall + follow + leicestercathedral + christmas | 50 | 0.0058824 |
697 | synapses + pimples + bonsoirair + coursee + dancecomigo + diggory + itsasign + jp’s + lovemyclients + masterofscience + nomakeupgang + oldgirls2018 + pieceofme | 50 | 0.0058824 |
717 | laughing + cometh + loud + neek + comedian + baddaz + irewal + sugababes + ass + francesca | 50 | 0.0058824 |
750 | gea + franco + goal + lacazette + de + baresi + finish + courtois + ball + kick | 50 | 0.0058824 |
761 | lilia + taila + teampixie + xx + beginnings + gent + sweetest + fiona + glenn + david | 50 | 0.0058824 |
816 | lending + proved + barbecuing + boycot + copyrights + fashi + fucku + guaidó + leeson + opprobrium + ugl + venomous | 50 | 0.0058824 |
853 | courier + le2 + bev’s + bitdegree + datacentre + destructions + euparliament + gsme + kamall + kt2 + mccains + movingon + ng21 + pshychiatry + steemit + stromness + syed + syedkamall + ultrafast + visu + xlwb + you’scunext + zuckerberghearing | 50 | 0.0058824 |
900 | login + account + dm + darran + le39qb + so’d + mercury + avios + deta + diddnt + perce + timotei | 50 | 0.0058824 |
905 | jamaican + tl + fuck + jesus + ahistorical + anthropomorphic + chandock + cheeran + inouarashi + jilo + nek + propanganda + swordsman + tyson’s + waja + zoo’s | 50 | 0.0058824 |
tweet_classifications %>%
count(tweet_flair_e6c11m2_top_emotion) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
kable()
tweet_flair_e6c11m2_top_emotion | n | perc |
---|---|---|
admiration | 73547 | 8.6527104 |
annoyance | 38992 | 4.5873589 |
anticipation | 40162 | 4.7250079 |
excitement | 37889 | 4.4575923 |
gratitude | 10959 | 1.2893123 |
interest | 39486 | 4.6454773 |
joy | 579108 | 68.1313148 |
sadness | 29222 | 3.4379309 |
uncertain | 623 | 0.0732952 |
tweet_classifications %>%
count(tweet_flair_c6c12m1_top_context) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
kable()
tweet_flair_c6c12m1_top_context | n | perc |
---|---|---|
commercial | 55849 | 6.5705633 |
community events | 29706 | 3.4948729 |
connecting and sharing | 194357 | 22.8658522 |
family, friendship and relationships | 19574 | 2.3028560 |
health, fitness and wellbeing | 28137 | 3.3102820 |
leisure, hobbies and interests | 493237 | 58.0287016 |
local environment | 7490 | 0.8811889 |
place character | 9964 | 1.1722518 |
uncertain | 11674 | 1.3734312 |
tweet_classifications %>%
count(tweet_flair_e6c11m2_top_emotion, tweet_flair_c6c12m1_top_context) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
kable()
tweet_flair_e6c11m2_top_emotion | tweet_flair_c6c12m1_top_context | n | perc |
---|---|---|---|
admiration | commercial | 7971 | 0.9377779 |
admiration | community events | 6979 | 0.8210704 |
admiration | connecting and sharing | 8920 | 1.0494266 |
admiration | family, friendship and relationships | 1747 | 0.2055323 |
admiration | health, fitness and wellbeing | 9177 | 1.0796623 |
admiration | leisure, hobbies and interests | 37151 | 4.3707676 |
admiration | local environment | 809 | 0.0951778 |
admiration | place character | 525 | 0.0617656 |
admiration | uncertain | 268 | 0.0315299 |
annoyance | commercial | 4046 | 0.4760067 |
annoyance | community events | 321 | 0.0377652 |
annoyance | connecting and sharing | 10868 | 1.2786063 |
annoyance | family, friendship and relationships | 218 | 0.0256474 |
annoyance | health, fitness and wellbeing | 784 | 0.0922366 |
annoyance | leisure, hobbies and interests | 20634 | 2.4275637 |
annoyance | local environment | 704 | 0.0828247 |
annoyance | place character | 1087 | 0.1278842 |
annoyance | uncertain | 330 | 0.0388241 |
anticipation | commercial | 9305 | 1.0947213 |
anticipation | community events | 2198 | 0.2585919 |
anticipation | connecting and sharing | 4964 | 0.5840082 |
anticipation | family, friendship and relationships | 325 | 0.0382358 |
anticipation | health, fitness and wellbeing | 2251 | 0.2648273 |
anticipation | leisure, hobbies and interests | 20302 | 2.3885043 |
anticipation | local environment | 81 | 0.0095295 |
anticipation | place character | 103 | 0.0121178 |
anticipation | uncertain | 633 | 0.0744716 |
excitement | commercial | 969 | 0.1140016 |
excitement | community events | 584 | 0.0687069 |
excitement | connecting and sharing | 6393 | 0.7521283 |
excitement | family, friendship and relationships | 682 | 0.0802364 |
excitement | health, fitness and wellbeing | 483 | 0.0568243 |
excitement | leisure, hobbies and interests | 28486 | 3.3513414 |
excitement | local environment | 57 | 0.0067060 |
excitement | place character | 30 | 0.0035295 |
excitement | uncertain | 205 | 0.0241180 |
gratitude | commercial | 1182 | 0.1390608 |
gratitude | community events | 584 | 0.0687069 |
gratitude | connecting and sharing | 1612 | 0.1896497 |
gratitude | family, friendship and relationships | 387 | 0.0455301 |
gratitude | health, fitness and wellbeing | 849 | 0.0998838 |
gratitude | leisure, hobbies and interests | 6135 | 0.7217749 |
gratitude | local environment | 122 | 0.0143531 |
gratitude | place character | 49 | 0.0057648 |
gratitude | uncertain | 39 | 0.0045883 |
interest | commercial | 4711 | 0.5542431 |
interest | community events | 1902 | 0.2237679 |
interest | connecting and sharing | 7991 | 0.9401309 |
interest | family, friendship and relationships | 273 | 0.0321181 |
interest | health, fitness and wellbeing | 2979 | 0.3504755 |
interest | leisure, hobbies and interests | 16562 | 1.9484981 |
interest | local environment | 835 | 0.0982367 |
interest | place character | 3332 | 0.3920055 |
interest | uncertain | 901 | 0.1060015 |
joy | commercial | 24422 | 2.8732170 |
joy | community events | 16679 | 1.9622630 |
joy | connecting and sharing | 147179 | 17.3154209 |
joy | family, friendship and relationships | 15786 | 1.8572027 |
joy | health, fitness and wellbeing | 10258 | 1.2068406 |
joy | leisure, hobbies and interests | 348028 | 40.9450486 |
joy | local environment | 4547 | 0.5349487 |
joy | place character | 3421 | 0.4024763 |
joy | uncertain | 8788 | 1.0338969 |
sadness | commercial | 3210 | 0.3776524 |
sadness | community events | 451 | 0.0530596 |
sadness | connecting and sharing | 6261 | 0.7365986 |
sadness | family, friendship and relationships | 154 | 0.0181179 |
sadness | health, fitness and wellbeing | 1342 | 0.1578846 |
sadness | leisure, hobbies and interests | 15675 | 1.8441437 |
sadness | local environment | 323 | 0.0380005 |
sadness | place character | 1416 | 0.1665906 |
sadness | uncertain | 390 | 0.0458830 |
uncertain | commercial | 33 | 0.0038824 |
uncertain | community events | 8 | 0.0009412 |
uncertain | connecting and sharing | 169 | 0.0198826 |
uncertain | family, friendship and relationships | 2 | 0.0002353 |
uncertain | health, fitness and wellbeing | 14 | 0.0016471 |
uncertain | leisure, hobbies and interests | 264 | 0.0310593 |
uncertain | local environment | 12 | 0.0014118 |
uncertain | place character | 1 | 0.0001176 |
uncertain | uncertain | 120 | 0.0141178 |
tweet_classifications %>%
count(btm200bg_topic_sum_b, btm200bg_token10_sum_b) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
arrange(btm200bg_token10_sum_b) %>%
kable()
btm200bg_topic_sum_b | btm200bg_token10_sum_b | n | perc |
---|---|---|---|
-1 | 31234 | 3.6746401 | |
47 | 12pm + lunch + till + menu + restaurant + tawa + chinese + late + 4pm + indo | 440 | 0.0517654 |
29 | 2 + 1 + 3 + 0 + 4 + 5 + 6 + keycap + half + win | 2647 | 0.3114162 |
156 | album + today’s + song + gary + love + live + numan + play + vinyl + darshan | 1899 | 0.2234149 |
191 | amaze + love + beautiful + meet + day + absolutely + lovely + watch + hear + lady | 6032 | 0.7096571 |
109 | ambulance + harry + prince + royal + antigua + barbuda + meghan + potter + nightshift + princess | 711 | 0.0836482 |
176 | arrow + craft + card + curve + cute + decorate + greet + bear + embellishment + cardmaking | 598 | 0.0703539 |
198 | art + paint + artist + numb + gallery + contractor + artwork + piece + design + sketch | 1533 | 0.1803555 |
145 | beard + barber + pole + fine + thebeardedrapscallion + ayston + massage + road + cut + scissor + shave | 461 | 0.0542361 |
69 | birthday + happy + day + cake + balloon + hope + party + gift + popper + shortcake | 4008 | 0.4715361 |
90 | black + flag + white + lion + rainbow + square + triangular + england + ball + soccer | 1452 | 0.1708259 |
21 | book + read + write + love + theatre + story + art + film + brilliant + performance | 3585 | 0.4217707 |
133 | boris + johnson + minister + prime + tory + pm + michael + gove + sell + cabinet | 1145 | 0.1347078 |
14 | boutique + nims + online + percent + shop + sale + twelve + store + jewellery + 6pm | 1021 | 0.1201193 |
120 | box + fight + glove + british + tony + mckenzie + ballot + 90s + archive + light + night | 1368 | 0.1609434 |
78 | box + fitness + professional + boxer + workout + kelton + boxercise4health + mckenzie + glove + active | 3820 | 0.4494181 |
77 | button + music + gig + night + cafe + drum + play + bright + band + guitar | 844 | 0.0992955 |
149 | buy + store + ticket + sale + free + offer + percent + shop + online + price | 4075 | 0.4794185 |
167 | camera + photo + flash + shoot + photography + post + portrait + photographer + movie + model | 1306 | 0.1536492 |
152 | car + drive + driver + bus + road + park + bike + ride + vehicle + taxi | 2319 | 0.2728274 |
106 | car + police + light + alert + ticket + collision + officer + voltage + fire + day | 814 | 0.0957661 |
99 | cat + call + dog + kitty + animal + thousand + eleven + iphone + mtkitty + love | 856 | 0.1007073 |
197 | change + learn + research + datum + plan + question + agree + uk + system + issue | 10407 | 1.2243702 |
93 | chocolate + ice + bar + cream + cake + coffee + eat + tea + soft + milk | 3669 | 0.4316532 |
57 | christmas + tree + santa + claus + merry + light + skin + xmas + tone + gift | 2630 | 0.3094161 |
185 | circle + red + blue + white + black + ball + soccer + 0to100returns + diamond + djfestlei | 814 | 0.0957661 |
151 | click + job + england + link + view + late + hire + engineer + apply + detail + force | 1665 | 0.1958851 |
117 | cry + loudly + heart + red + laugh + god + break + love + miss + guy | 5921 | 0.6965981 |
104 | cry + loudly + tear + joy + heart + smile + feel + weary + day + eye | 14931 | 1.7566130 |
188 | day + smile + heart + eye + morning + love + hand + night + lovely + happy | 40645 | 4.7818322 |
76 | day + twenty + hour + week + ten + month + ago + minute + start + thirty | 4523 | 0.5321252 |
178 | de + montfort + hall + university + dmu + town + statue + thousand + otd + joseph | 861 | 0.1012955 |
113 | design + shop + retail + store + hammer + cbd + print + net + tech + brand | 699 | 0.0822365 |
192 | djing + djrupz + stunt + party + highlight + david + birthday + readytorock + surprise + rock | 418 | 0.0491772 |
70 | dog + hamburger + pooch + spin + thepoochery + dry + puppy + love + boy + cow | 1080 | 0.1270606 |
165 | drink + beer + ale + pint + mug + nice + ipa + tropical + festival + pub | 2676 | 0.3148280 |
12 | duck + bounce + bob + dylan + golden + lebron + trident + jet + era + step | 502 | 0.0590597 |
95 | event + day + meet + talk + forward + business + conference + support + team + excite | 10739 | 1.2634296 |
131 | excuse + gesture + wat + person + ju + ah + guy + love + yoh + coz | 800 | 0.0941190 |
38 | fan + game + win + team + city + league + joy + play + club + tear | 21332 | 2.5096825 |
71 | fear + scream + god + call + worry + black + wow + luck + purple + rainbow | 809 | 0.0951778 |
141 | feel + bite + eye + hope + walk + head + leave + home + morning + day | 13447 | 1.5820223 |
135 | finger + cross + skin + tone + light + middle + medium + luck + christmas + hope | 1358 | 0.1597670 |
36 | fire + collision + graffitiart + hot + urbanart + streetart + voltage + spraycanart + sprayart + fuck | 1274 | 0.1498845 |
190 | fish + line + electric + pole + plug + wash + machine + picket + catch + chip | 809 | 0.0951778 |
86 | fist + oncoming + collision + skin + tone + light + medium + sunglass + bro + smile | 588 | 0.0691774 |
186 | flex + bicep + skin + tone + light + medium + day + gym + dark + wink | 1093 | 0.1285901 |
44 | food + savor + eat + vegan + meal + restaurant + lunch + love + dinner + delicious | 2590 | 0.3047102 |
169 | fox + blue + lcfc + heart + hand + soccer + ball + city + king + power | 2834 | 0.3334165 |
146 | free + unitedkingdom + foodwaste + pret + chicken + baguette + sandwich + cheese + salad + ham | 1870 | 0.2200031 |
157 | fuck + mate + absolute + bite + love + call + proper + cunt + lad + watch | 5927 | 0.6973040 |
10 | fuck + shit + ass + people + bitch + real + im + unamused + gonna + talk | 3245 | 0.3817701 |
142 | game + cricket + play + england + day + win + bat + bowl + match + county | 3183 | 0.3744759 |
180 | gift + wrap + christmas + im + love + santa + ive + box + deer + list | 711 | 0.0836482 |
64 | girl + boy + sex + sexy + love + woman + lady + call + feel + naughty | 2647 | 0.3114162 |
58 | glass + clink + bottle + pop + cork + wine + cocktail + beer + drink + mug | 2170 | 0.2552977 |
37 | goal + player + fuck + play + game + score + ball + world + win + penalty | 13669 | 1.6081404 |
155 | goat + allah + muslim + sha + islam + ma + adam + al + salah + fast | 531 | 0.0624715 |
67 | god + fold + bless + jesus + family + prayer + day + hand + life + lord + peace | 2820 | 0.3317694 |
3 | golf + hole + club + flag + hat + junior + day + play + height + captain | 842 | 0.0990602 |
159 | gt + lt + friend + 3 + live + girl + vibronics + people + whatsthebigmistry + takeover | 1069 | 0.1257665 |
171 | ha + holistic + simply + health + heal + bulldog + magickal + smp + therapy + wink | 652 | 0.0767070 |
137 | hair + colour + heart + wig + cut + mua + beautiful + balayage + lash + sparkle | 1228 | 0.1444726 |
162 | hand + clap + skin + tone + light + medium + call + heart + dark + black | 3535 | 0.4158882 |
158 | head + explode + bandage + speak + day + brain + mind + haq + overthink + hurt | 1060 | 0.1247076 |
19 | health + mental + people + issue + experience + valproate + call + support + autism + awareness + care | 2282 | 0.2684744 |
56 | heart + love + red + smile + eye + xx + hand + hug + hope + blow | 13353 | 1.5709634 |
50 | heart + red + blue + green + purple + love + black + smile + eye + yellow | 9680 | 1.1388396 |
193 | heart + sparkle + grow + beat + love + smile + revolve + eye + purple + blue | 3549 | 0.4175353 |
65 | ho + whoop + route + en + jane + leo + hey + sing + bet + xfactor | 648 | 0.0762364 |
181 | horn + sign + light + skin + tone + medium + smile + black + heart + eye | 2106 | 0.2477682 |
134 | hot + beverage + mornin + wink + earlycrew + coffee + morning + tea + blow + kiss | 1660 | 0.1952969 |
101 | hug + wed + venue + decor + hundred + dj + thevenue + repost + image + event | 657 | 0.0772952 |
97 | hundred + thousand + sixty + million + twenty + forty + fifty + eighty + call + ninety | 3282 | 0.3861231 |
130 | hundredth + mile + endorphin + endomondo + finish + run + thirty + walk + twenty + fifty | 1003 | 0.1180017 |
161 | index + backhand + tone + skin + medium + light + dark + leave + fox + lcfc | 782 | 0.0920013 |
138 | india + pm + fold + hand + pakistan + sri + create + indian + congratulation + hindu | 821 | 0.0965896 |
160 | jack + lantern + skull + halloween + ghost + clown + spider + happy + crossbones + web | 969 | 0.1140016 |
111 | japan + retweet + support + dan + follow + attempt + banzai + inspirationnation + pc + idol | 737 | 0.0867071 |
189 | john + james + smith + tom + steve + chris + sir + paul + david + love + talk | 4051 | 0.4765950 |
170 | joy + tear + day + eye + smile + laugh + people + leave + roll + home | 69916 | 8.2255279 |
-1 | joy + tear + heart + smile + eye + skin + tone + hand + love + laugh | 1247 | 0.1467080 |
13 | joy + tear + laugh + loud + roll + floor + cry + loudly + person + wink | 15240 | 1.7929665 |
196 | joy + tear + laugh + roll + floor + fuck + cry + skin + eye + tone | 27065 | 3.1841626 |
39 | kadiri + news + highfields + evington + sweet + launderette + candy + unite + strawberry + chocolate | 1172 | 0.1378843 |
43 | key + snake + lock + kill + gameofthrones + san + battle + king + jon + call | 904 | 0.1063544 |
194 | king + power + stadium + city + lcfc + shire + unite + algeria + football + ball | 1583 | 0.1862379 |
54 | kiss + mark + blow + heart + rise + smile + sweetie + babe + red + eye | 4455 | 0.5241250 |
9 | kitchen + knife + wave + water + architecture + fork + bye + interiordesign + plate + buildingibd | 577 | 0.0678833 |
148 | la + soul + tenth + london + minus + el + hiphop + jazz + rnb + patriot | 583 | 0.0685892 |
28 | laugh + cry + girl + loudly + loud + people + guy + gonna + mad + boy | 19908 | 2.3421507 |
53 | laugh + loud + ass + xx + tweet + funny + fuck + lcfc + imagine + joke | 4567 | 0.5373017 |
102 | lcfc + play + vardy + game + puel + player + season + start + team + goal | 9047 | 1.0643680 |
61 | leaf + dash + green + clover + wind + tree + fall + easter + chick + hand | 961 | 0.1130604 |
20 | listen + bbc + radio + news + parent + hear + talk + watch + tv + live | 2488 | 0.2927100 |
124 | live + uk + tour + ticket + concert + arena + thousand + birmingham + night + london | 850 | 0.1000014 |
122 | lorry + articulate + wink + mornin + truck + honk + option + phase + alignment + delivery | 410 | 0.0482360 |
60 | love + list + ant + dead + watch + hero + im + anne + dec + numb | 886 | 0.1042368 |
11 | love + watch + play + live + night + song + fuck + life + people + wait | 13974 | 1.6440232 |
85 | loveisland + love + jack + alex + georgia + fuck + girl + laura + loveisiand + megan | 1879 | 0.2210619 |
6 | mark + check + heavy + white + cross + exclamation + heart + sign + win + box | 1243 | 0.1462374 |
33 | mark + exclamation + double + ticket + speaker + volume + sell + fire + low + car | 1389 | 0.1634141 |
84 | mi + ah + dem + di + fi + yuh + nuh + gyal + ting + life | 957 | 0.1125898 |
175 | monkey + evil + speak + heart + hear + smile + eye + red + love + blow | 1507 | 0.1772966 |
187 | mouth + symbol + hand + fuck + zipper + frown + expressionless + pout + hate + nose | 969 | 0.1140016 |
2 | mum + baby + dad + family + love + friend + child + day + kid + parent | 4067 | 0.4784773 |
15 | music + song + album + listen + love + play + tune + hear + video + track | 6463 | 0.7603637 |
68 | musical + note + score + microphone + headphone + guitar + hand + keyboard + song + music | 1275 | 0.1500021 |
179 | nose + steam + zzz + fuck + whyisthat + ffs + day + sleep + sleepy + bowl | 629 | 0.0740010 |
62 | nottingham + thousand + fair + goose + exposure + seventeen + eighteen + longexposure + goosefair + photography | 414 | 0.0487066 |
59 | nurse + nhs + care + hospital + staff + patient + day + team + doctor + service | 2152 | 0.2531800 |
49 | oadby + meet + cyclone + community + detail + morning + dementia + wigston + ganga + support | 537 | 0.0631774 |
32 | orange + diamond + nail + biking + polish + gelnails + cycle + minibikers + tangerine + letsride | 416 | 0.0489419 |
27 | original + poster + kit + ready + monster + nike + mutant + post + fanatic + buy | 605 | 0.0711775 |
31 | party + popper + birthday + heart + happy + confetti + balloon + ball + eye + red | 2026 | 0.2383563 |
42 | pay + people + uk + tax + sign + government + nhs + house + job + percent | 8529 | 1.0034259 |
154 | people + agree + brexit + lie + party + tory + absolutely + country + totally + bad | 9990 | 1.1753107 |
100 | people + life + feel + love + lot + change + live + day + world + hard | 29479 | 3.4681666 |
23 | people + police + kill + law + child + stop + crime + call + woman + attack | 8495 | 0.9994259 |
5 | people + read + word + tweet + question + bite + wrong + lot + opinion + answer | 9758 | 1.1480162 |
17 | people + trump + labour + anti + racist + party + leave + corbyn + tory + wing | 5946 | 0.6995393 |
125 | percent + 100 + syringe + 10 + 50 + 20 + 19 + 18 + london + 22 | 1314 | 0.1545904 |
126 | perform + dance + dizzy + art + ear + burlesque + skytribe + bunny + belly + night | 563 | 0.0662362 |
110 | phone + app + iphone + apple + video + laptop + samsung + computer + play + galaxy | 3455 | 0.4064763 |
75 | player + play + maguire + start + sign + unite + transfer + season + arsenal + team | 2179 | 0.2563566 |
119 | pout + fuck + angry + cunt + hell + shit + people + bastard + disgust + bloody | 2900 | 0.3411813 |
150 | pride + rainbow + lgbt + parade + lgbtq + gay + white + victoria + park + shire | 672 | 0.0790599 |
91 | print + paw + miniature + cute + fimo + pig + pet + guinea + unicorn + jar | 1039 | 0.1222370 |
116 | race + horse + chequer + flag + crown + spain + winner + god + motorcycle + congratulation | 913 | 0.1074133 |
80 | read + article + daily + pro + mail + academic + paper + news + survey + eu | 786 | 0.0924719 |
105 | reddeadonline + reddeadredemption2 + rdr2 + rdo + wolf + ps4share + flower + vgpunite + wilt + rise | 347 | 0.0408241 |
153 | reminder + friday + tribute + findom + night + quick + stevie + rt + paypig + cashmaster | 642 | 0.0755305 |
94 | rise + shamrock + blossom + bouquet + tulip + cherry + fold + hand + hibiscus + india | 1361 | 0.1601199 |
7 | road + lane + warn + traffic + close + park + flood + police + light + car | 2410 | 0.2835334 |
127 | road + pizza + london + le2 + blend + forty + passion + hindbar + takeaway + hind | 858 | 0.1009426 |
112 | rocket + globe + moon + space + europe + africa + national + centre + americas + asia | 1073 | 0.1262371 |
26 | roll + floor + laugh + eye + loud + cry + loudly + grin + fuck + dead | 5655 | 0.6653035 |
63 | royal + mix + match + range + collection + set + shop + gold + bag + earring | 1161 | 0.1365902 |
115 | run + park + person + sign + morning + male + swim + victoria + walk + bike | 1490 | 0.1752966 |
82 | sad + relieve + pensive + break + news + rip + hear + fold + family + heart | 2724 | 0.3204751 |
200 | school + session + day + centre + free + child + week + train + class + learn | 2682 | 0.3155339 |
118 | send + call + service + phone + numb + customer + message + account + dm + receive | 4258 | 0.5009482 |
48 | sign + bin + litter + petition + stop + save + wastebasket + share + trash + ni | 814 | 0.0957661 |
41 | sign + person + skin + tone + medium + male + female + light + facepalming + shrug | 8347 | 0.9820139 |
123 | skin + tone + hand + light + medium + raise + fold + heart + victory + red | 6939 | 0.8163645 |
52 | skin + tone + light + medium + hand + heart + smile + eye + sign + person | 18274 | 2.1499127 |
132 | skin + tone + medium + dark + hand + raise + clap + fold + fist + oncoming | 3315 | 0.3900055 |
8 | skin + tone + medium + person + light + people + sign + day + female + feel | 8859 | 1.0422500 |
34 | sleep + night + tire + hour + bed + wake + day + morning + feel + shift | 6834 | 0.8040114 |
46 | slightly + plead + frown + break + average + smile + miss + extremely + feel + greatly | 1073 | 0.1262371 |
107 | smile + ball + soccer + blue + beer + mug + heart + clink + weekend + lovely | 7376 | 0.8677770 |
129 | smile + chicken + cheese + salad + fry + potato + tomato + cook + food + eat | 5802 | 0.6825979 |
25 | smile + eye + heart + beam + grin + 3 + hand + slightly + roll + love | 17933 | 2.1097945 |
79 | smile + pig + moose + eye + heart + palette + shade + lip + lipstick + purple | 1700 | 0.2000028 |
4 | smile + sunglass + smirk + hand + cool + sun + yonex + eye + fire + awesome | 675 | 0.0794129 |
72 | snowflake + cold + snow + weather + winter + morning + warm + day + snowman + ice | 1817 | 0.2137677 |
87 | south + west + africa + african + nigeria + zimbabwe + jamaica + north + ham + country | 729 | 0.0857659 |
81 | star + strike + glow + day + amaze + war + review + sparkle + wow + pass | 1165 | 0.1370608 |
103 | stick + drool + sticky + gimme + head + pum + tenth + tongue + upd + tooth | 433 | 0.0509419 |
184 | stone + gem + head + spot + doo + speed + photo + location + shark + knot | 451 | 0.0530596 |
177 | story + ship + file + love + toy + folder + character + sea + park + fall | 1133 | 0.1332960 |
143 | student + graduation + cap + university + graduate + dmu + uni + degree + proud + congratulation | 1902 | 0.2237679 |
24 | suit + week + cocktail + shooter + island + fantasy + geekycocktails + drink + giffardliqueurs + tropical | 387 | 0.0455301 |
199 | sun + rain + umbrella + drop + cloud + weather + beach + day + summer + sunshine | 1537 | 0.1808261 |
88 | support + donate + raise + charity + uk + hospital + baby + donation + tweet + fundraising | 1364 | 0.1604729 |
144 | sweat + grin + poo + pile + droplet + anxious + downcast + eye + shit + sky | 1160 | 0.1364725 |
45 | tattoo + ring + bride + veil + wed + dragon + piece + studio + bell + start | 896 | 0.1054133 |
89 | team + amaze + award + proud + congratulation + fantastic + win + night + support + tonight | 11749 | 1.3822548 |
74 | tear + joy + cry + loudly + laugh + heart + loud + love + funny + skull | 17345 | 2.0406170 |
128 | tear + joy + im + fuck + bro + guy + nah + funny + life + joke | 2817 | 0.3314164 |
195 | test + pass + congratulation + drive + attempt + ooh + wowowow + fault + minor + tube | 864 | 0.1016485 |
121 | thousand + eighteen + snooker + nineteen + photo + shoot + pro + mmandmp + twenty + seventeen | 1080 | 0.1270606 |
30 | thumb + skin + tone + light + medium + smile + eye + wink + hand + hope | 7135 | 0.8394236 |
108 | tiger + rugby + football + clock + round + game + italy + pushpin + road + calendar | 1506 | 0.1771790 |
139 | tongue + squint + wink + grin + ghost + zany + eye + smile + excite + happy | 1792 | 0.2108265 |
163 | tonight + live + night + comedy + direct + 10pm + 8 + 8pm + hit + gmt | 1059 | 0.1245900 |
168 | tower + resort + family + romance + alton + ride + love + story + park + read | 714 | 0.0840012 |
182 | trade + close + short + sell + loss + profit + buy + price + stop + forex | 670 | 0.0788246 |
136 | train + service + london + east + station + midlands + shire + bus + city + morning | 3534 | 0.4157706 |
22 | trophy + medal + tennis + basketball + 1st + sport + field + ball + rider + hockey | 1131 | 0.1330607 |
55 | twenty + thousand + saturday + friday + 7 + 8 + day + join + 2 + march | 7345 | 0.8641298 |
173 | twitter + tweet + people + follow + account + remember + post + join + send + reply | 7099 | 0.8351883 |
98 | upside + banknote + flush + pound + grimace + dollar + spaghetti + euro + bag + yen | 677 | 0.0796482 |
172 | video + post + follow + link + check + youtube + instagram + love + page + photo | 4449 | 0.5234192 |
92 | vomit + nauseate + mask + medical + sneeze + feel + sick + bad + thermometer + confound | 1384 | 0.1628258 |
164 | vote + brexit + eu + leave + tory + union + labour + custom + deal + people | 6829 | 0.8034231 |
96 | walk + centre + city + park + house + build + st + museum + beautiful + day | 3815 | 0.4488299 |
174 | wall + print + video + 3d + bespeak + mural + wallpaper + amaze + art + photo | 532 | 0.0625891 |
183 | war + bush + hundred + oil + eleven + yemen + trump + american + company + bomb | 1278 | 0.1503551 |
18 | watch + film + movie + episode + love + series + tv + season + night + game | 7676 | 0.9030716 |
114 | water + plastic + air + clean + lot + love + oil + save + plant + fresh | 1788 | 0.2103559 |
83 | wear + dress + store + shirt + shoe + colour + style + heart + top + naqshonline | 3242 | 0.3814171 |
66 | weary + astonish + cat + super + god + treat + fold + chance + amaze + win | 592 | 0.0696480 |
16 | week + wait + book + day + holiday + excite + tomorrow + airplane + ticket + forward | 3442 | 0.4049469 |
166 | weight + gym + body + workout + muscle + leg + lose + exercise + lift + core + train | 1768 | 0.2080029 |
35 | win + chance + prize + competition + love + awesome + enter + giveaway + fab + cash | 4030 | 0.4741243 |
73 | win + game + league + final + cup + play + team + ball + world + season | 8714 | 1.0251909 |
147 | woman + dance + tone + skin + light + medium + hand + heart + red + dark | 1495 | 0.1758848 |
51 | world + unite + england + cup + kingdom + uk + france + country + flag + live | 2963 | 0.3485932 |
40 | write + read + start + book + exam + word + learn + finish + paper + day | 2862 | 0.3367106 |
140 | zany + gin + pub + ukpubs + low + tonic + alcohol + revolution + ultra + beer | 636 | 0.0748246 |
tweet_classifications %>%
count(trans_umap_hdbscan, trans_umap_hdbscan_tfidf10) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
arrange(trans_umap_hdbscan_tfidf10) %>%
kable()
trans_umap_hdbscan | trans_umap_hdbscan_tfidf10 | n | perc |
---|---|---|---|
329 | ___ + ____ + morning + sheets + cornstarch + decomposable + faxing + therer + hugs + adc + epma + insipid + pairings | 90 | 0.0105884 |
556 | 0 + 1 + 2 + 3 + thatlovingfeeling + nffc + tigers + coys + 5 + 4 | 245 | 0.0288239 |
936 | 0 + u12s + final + finalists + cup + won + finals + bogeys + congratulations + win | 84 | 0.0098825 |
672 | 07894509206 + glitz + ents + decor + blinds + mandap + pizza + domino’s + contact + dj | 57 | 0.0067060 |
700 | 0to100 + avaliable + christine’s + eversograteful + grammy2019 + grammyawards2019 + internationaldogday + loveasnapchatfilter + mygorgeousgranddaughter + octavia + remus + shadeson + valantine | 75 | 0.0088237 |
364 | 0to100returns + fantastic + lit + representing + 0toone00returns + derful + labourbellend + takingthepisstuesday + catch + rave | 73 | 0.0085884 |
879 | 0to100xmas + tickets + wizards + hallway + wizardswonderland + boutique + madfriday + wonderland + motivation + thecurryshow | 87 | 0.0102354 |
1071 | 1000000000000000000000000000000000 + brambles + hpindigo12000 + longpigs + the2019 + ttgtravelhero + tunage + 1988 + idles + outkast | 55 | 0.0064707 |
492 | 104.9fm + commentary + lyrical + femaleempowerment + jhasikirani + kanganaranaut + manikarnikathequeenofjhansi + manikarnika + thousand + dab | 79 | 0.0092942 |
1604 | 1080ti + 2080ti + aldershot + changin + compcraze + dobe + finland’s + gaultier + healer + masuku + may’ve + o’level + odenkirk + ourself + quotability + ryland + shamans + sounness + st.matthews + suffereing + unebviable + zimsec | 50 | 0.0058824 |
1299 | 10g + doppler + monofilament + patriarch + flyover + simulate + ultrasound + handheld + sanofi + police | 57 | 0.0067060 |
960 | 11.35pm + ayeartaughtme + beyondlimits + burfield + doaba + hartnell + powertothepeople + spiceless + timeslip + tooting + turnandrun | 58 | 0.0068236 |
234 | 12daysofjones + 24rs + headfuck + isatim + battleofwinterfell + stressed + unbelievable + alcacer + hermione + breakingbad + gameofthronesseason8 + gaucho | 61 | 0.0071766 |
1023 | 12daysofjones + daystogo + yay + cheers + giveaway + 2date + crisp + donated + apriciado + chh + ells + hardbacks + mileys + stylistlive2018 + thoughtsandprayers + twerky | 88 | 0.0103531 |
1098 | 12min + cf97 + eggman’s + jeresey + marti + moulting + purplerain + sonna + syer + munda + nuthin + pellow | 62 | 0.0072942 |
79 | 12pm + indo + tawa + hire + grill + 4pm + menu + restaurant + venue + chinese | 126 | 0.0148237 |
1281 | 14grandkids + casemates + flirted + gedit + wye + kenzo + stripy + tellum + ibro + smoker | 80 | 0.0094119 |
1670 | 1844 + refusing + museums + friedrich + onthisday + benz + tower + entrepreneur + karl + toaster | 84 | 0.0098825 |
1491 | 2019hopes + nomorecrimps + happynewyear + digit + socialclimbing_leicester + bouldering + gabrielle + bxrod + filipinavocalist + moneypcm + pinay | 97 | 0.0114119 |
82 | 20mm + lense + preach + nikon + ass + 22 + fireworks + badly + london + 10 | 65 | 0.0076472 |
197 | 24hoursinpolicecustody + weekend + lovely + brill + wonderful + hope + day + vpu + wanker + castrated + sain | 63 | 0.0074119 |
232 | 2556161 + unreal + buffet + iftar + forreal + 10pm + 6pm + real + details + sixteen | 73 | 0.0085884 |
59 | 30daysofshadow + prompts + prompt + asktwice + _________________ + swipe + dreams + challenge + sweet + night | 123 | 0.0144708 |
1731 | 35a + labour + assad + patriot + cosplay + democratic + establishment + political + voting + leader | 61 | 0.0071766 |
570 | 3lb + sleep + aches + hours + awake + mums + asnaps + ineedcoffee + planenerd + reyt + spazzin | 65 | 0.0076472 |
1710 | 40m + uninspiring + killin + blah + statements + reasons + deny + 236b + afams + boniface + borno + carnets + cheerier + datetime + dgnb + epsteins + exageratting + famo + gael.conrad + internalisi + jpa + justifi + lemaitre + maiduguri + maybank + nigeri + occurre + offen + particulars + rhotic + whichev | 94 | 0.0110590 |
1248 | 41 + school + girls + forwarding + secondary + people + grew + sense + mainstream + loud | 173 | 0.0203532 |
780 | 50pus6753 + 5a + basketcase + cherrygoodnight + dangerdanger + genoristy + gsadventday13 + icefesto + kwayet + kxipvsrh + mougthly + neighbourhoodplan + reimbursement + upperedenvalley + whychangeofheart | 58 | 0.0068236 |
1280 | 57mins + 5secs + guenwhozi + sheltered + boning + compare + bopped + bye + mcsauce + giftbetter | 52 | 0.0061177 |
437 | 5fl + gwendolen + lehngas + le5 + readymade + weddingphotography + chumke + partylehnga + bridesmaiddress + bridesmaiddresses | 66 | 0.0077648 |
1199 | 5ft8s + bnard + gurlez + heartbreaks + huhne + intead + itvin + llloris + ooft + playerpower + screenwriting + soat | 51 | 0.0060001 |
106 | 5lbs + fitness + classes + loseweight + receive + punch + boxercise4health + lose + offers + weight | 104 | 0.0122355 |
162 | 5lbs + gear + weight + punch + lose + fitness + resolutions + gym + sign + slowing | 60 | 0.0070589 |
1639 | 60fps + 99s + aquate + communicative + environm + heari + humanizing + itmustbetheonions + jayday32 + obrees + overlong + pampas + pastu + sneerin + swingi + witc | 54 | 0.0063530 |
1271 | 7daybookchallenge + video + plough + stunts + simplymagickal + magickal + polarv800 + check + stuntman + truppr | 643 | 0.0756481 |
78 | 8️⃣ + luckiest + inspirationnation + hoping + babe + favourite + advent + day + adv + cola | 72 | 0.0084707 |
1192 | 900k + casio + castrate + deathrow + farfan + forefather + grobellar + ilness + rapistinthewhitehouse + surviorseries + wheww | 92 | 0.0108237 |
1112 | 91yrds + dhibaato + fjb + notbuyingit + preserving + rember + gratuity + politicising + 53s + hunnid + rustler | 53 | 0.0062354 |
1554 | aaarsenal + possibility + stem + expectancy + clinicians + mats + medicine + buttons + devices + valproate | 127 | 0.0149414 |
1609 | abo + ordinary + occupants + people + hairstyle + change + wear + human + hitler + helmet | 156 | 0.0183532 |
1661 | absence + destroy + 1john + beachlive + blatently + coulysee + detach + dontchan + famine + florrie + multiplesclerosis + multitudes + p’rhaps + profaned + seagal + successe + wishe + yonce | 77 | 0.0090590 |
1448 | abulam + crazyabdkdndndhd + escherichia + felinhedonia + finallygotthere + fuckidhdhdyingsjsjsj + hayleys + lowheresyouracomol + skskkskss + skskskksks + speckle | 95 | 0.0111766 |
1356 | account + app + parcel + delivered + mobile + online + contact + delivery + payment + received | 491 | 0.0577655 |
776 | actress + 16.12.2018 + biancaandreescu + fankoo + fluffballs + hibaag + jackanddani + renesmae’s + shethenorth + shorthair + teyanaandiman + theconjuring + usopenfinals + yussuf + zane | 64 | 0.0075295 |
971 | actual + brothers + gameofthrones + anywh + freat + glennout + sevond + trickles + whitechicks + thearchers | 91 | 0.0107060 |
1166 | adama + attic + polling + battlestar + cim + confederates + contributio + fa_wpl + floorboa + galactica + houska + iunno + janetjackson + marcus’s + nocontextdnd + purpurea + redrafting + sarracenia + scrend + ukbffnationals2018 + walsh’s | 53 | 0.0062354 |
182 | addasupervillainruinanything + cute + wow + hey + read + follow + cutehh + shek + villian + darkseid + xz | 78 | 0.0091766 |
203 | addisu + thankyou.lins + honourable + kiran + curriculum + sir + gentleman + praise + neil + purpose | 78 | 0.0091766 |
609 | adeola + corpses + devvy + thebloomalbum + zombs + bomfunk + engerland + swelled + callmebyyourname + chika + freestyler + torment | 83 | 0.0097648 |
1537 | adultlearning + pompeii + freud + event + meeko + conference + panel + business + virtual + 0416 + acquaintance + afterrnoo + alaica + aleksa + alyarmouk + archeology + arnaud + attenbor + auditworldcup + bradleylightbody + breakingnews + brightfuturesuol + chrystal + coffeeandnatter + conceptualising + craned + drapier + duk2019 + dutchess + ericrobone2 + frcpath + goingtheextramile + greatlessons + healthybody + healthymind + higgett + hra + inniative + ivoted + jacq + lals + leicestershospitals + lookafter + lowerbackpain + lwfa + meldrum + napier + nathaniel + nevertoldtolearn + overawed + pathway2grow + produc + providin + rateliff + s.whelan + soon.the + spon + staffband + yself | 93 | 0.0109413 |
1130 | aee + airbender + amita + balard + bezee + drumonds + humperdink + inej + mbj + teenagecrush | 84 | 0.0098825 |
1708 | aeo + vlog + check + creatives + video + radar + share + glen + raise + acribatic + aiethics + alison’s + artis + awesomefoursome + babysdayout + bambinos + boscombe + criminologycommunity + csi + debutradar + dontclang2019 + equalopportunities + estimat + fantasticfour + fenderprecision + findyourniche + fitgotreal + helpin + iop + itsyounotserato + kartar + knacke + marchbabies + millionmakers + nebulae + neurodiversity + neverendingsupport + niches + oldjrum + partridge’s + safespace + skydog + slt’s + talesfromthewilderness + tryingtobeabassplayer + twoteams + vipeventsxm | 92 | 0.0108237 |
1374 | aew + thelogansshow + assure + blows + spooky + avacados + bohoihoi + boirs + bowfoot + broods + cardus + magsaysay + messers + qell + remainhere + thow + unsuspected + whaleslovkia | 145 | 0.0170591 |
1044 | af + den + suck + classy + scots + ahl + bumfriend + catchit + deek + fker + forkie + hae + imovie + inhad + mebee + nestor + real’n’proper + salaah + scrievin + thawto + toffeefilled + watermelown + waveh + woff + wuo | 121 | 0.0142355 |
1620 | african + concerns + knob + alphas + cockhead + gaini + liveing + nimekumislead + parents + crocodiles + eissh + everyb + frustation + humdrum + inaccessible | 50 | 0.0058824 |
606 | afsaanah + alahumabarik + buffness + farfromhome + funiest + hindrance + wayhay + twin + jake + csnt + defin + everlasting + leicestee + pallete + rheumatoid + ukhti | 77 | 0.0090590 |
969 | again.yes + allbeauty + chockful + crete.might + everytimeitrainsi + favre + happen.ashes2019 + julien + rastafarians + swooner + trafficker | 57 | 0.0067060 |
1229 | aged + cyrille + regis + bluebirds + gypsies + stan + 2lb + kmt + chavs + tramps | 219 | 0.0257651 |
699 | agenda2030 + unga + sdg + owed + combat + zoo + rates + pensions + akabusi + apauling + criminological + fansites + fotoshop + imoral + jihadis + mciroy + oceand + rebalance + redrow + repossessed + screengrab + snatche + sociological | 54 | 0.0063530 |
170 | agree + avarice + ropey + consuming + nominations + agrees + strong + innit + absolutely + statement | 56 | 0.0065883 |
930 | agree + concur + icecream + pree + blocked + vic + helmet + naturally + 44mm + 47mm + apogise + awnser + conceit + deafen + dsq + hacienda + hallucination + listicle + rmbr + slapper + tbrvqh | 226 | 0.0265886 |
1571 | agree + considers + detail + eligible + buying + frailty + wrongly + widely + services + farmers | 190 | 0.0223533 |
1444 | agree + ilovegodbecause + tweet + loud + laughing + spiritual + honest + dont + pisses + milf | 537 | 0.0631774 |
520 | agree + mate + true + yeah + bot + sadly + read + cheers + wrong + beef | 2525 | 0.2970630 |
504 | agree + people + eu + brexit + labour + understand + yeah + wh + vote + opinion | 11526 | 1.3560191 |
1624 | agree + sense + bilal + zooming + puel + ds + fit + speak + person + makes | 285 | 0.0335299 |
806 | agree + suits + charege + dhhdhsjs + electi + magique + makehimgoaway + oxjin + s0ns + selasi + tweethandle + verire | 143 | 0.0168238 |
171 | agree + totally + 100 + wholeheartedly + fay’s + lynwen + tripit + walts + percent + totaly | 81 | 0.0095295 |
913 | agree + totally + smoke + lecturer + 18mnths + brawling + gaswork + sensatori + styrene + surre | 63 | 0.0074119 |
1711 | agree + tragedy + banjir + canai + destinies + differentials + emasculate + hijra + irregulars + mrs.potatohead + noticeab + pbuhing + shari + treacl + tuggi | 62 | 0.0072942 |
398 | agree + vitty + deader + happened + mls + veteran + prouder + clocks + nicer + bangers | 52 | 0.0061177 |
1440 | ahahha + bookstore + evelina + frebyoull + jedgarhoover + kasbah + know.has + lolx + northernpoorhouse + trumpprotests + ungood + wankwise + whattwittermeanstome | 125 | 0.0147061 |
507 | ahem + yep + ha + gobble + honk + demarai + cowboy + nice + im + ht | 340 | 0.0400006 |
1027 | aide + aggy + moron + bolton + novels + boasted + goldenballs + teakshi + teyana + vinlands | 53 | 0.0062354 |
3 | aigust + pride + leicesterpride + lgbtq + victoria + nineteen + kingdom + park + thirty + united | 1423 | 0.1674141 |
1236 | akata + bankdrain + bellaroma + chimamanda + doers + gallardo + maxandjanine + princenaseem + skated + tineye + v.r | 74 | 0.0087060 |
1060 | albania’s + bestintravel + cathal + ds620 + feltbad + hbr + latelateshow + lidington + phdlove + phun + rastafarian + senzo + shabba + shabbascores + spawns + ulo + whathappensnext | 88 | 0.0103531 |
1058 | album + banger + song + looku + songs + tiller + bangers + track + bryson + days | 128 | 0.0150590 |
1057 | album + song + funniest + whitest + mathematicalsongs + bangers + relatable + tune + music + slaps | 348 | 0.0409418 |
907 | algebra + kleeneze + barbies + gt + ticket + webcam + replacement + bands + restrictions + scotland | 155 | 0.0182356 |
1383 | alisons + maam + the100 + weekend.come + odaat + crapping + earpers + hideout + quitter + cite + oman + perm | 51 | 0.0060001 |
1260 | alliancesurge + anglicised + bolloks + crypt + lyles + cranes + kem + facists + varda + blusher + shoehorn | 51 | 0.0060001 |
845 | allium + roof + vanish + middle + england + 1.01 + 11yr + consu + contect + culldungsroman + fab2019 + futurejobs + pantone + polytechnic + snapcha + swebsite + upt + yourholidayisover | 116 | 0.0136473 |
1103 | allthebest + babe_ruthl3ss + blusterustery + loverikmayall + lvd + phonicsbootcamp + reggatone + scrumplicious + stoofie + hell | 99 | 0.0116472 |
1344 | almohandes + dailygratitude + darlek + krays + piston + susah + chronically + dermatologist + gila + phdmusic + supping | 62 | 0.0072942 |
1157 | alpedzwift + apoliticalcampusmyarse + b.excuse + bringbacksummer + cantsay + deice + isover + me.f + stonker + ushamba | 56 | 0.0065883 |
685 | alright + hun + horny + mate + babe + wanna + xxx + xx + pls + fancy | 459 | 0.0540008 |
429 | alright + jingle + oooh + ooh + lovely + fatteh + kahba + shortstuff + streambig + tanwir + zoomer | 88 | 0.0103531 |
1101 | amanhecer + anoitecer + feedback + ___________ + teething + ao + pj’s + customers + cancer + ants | 129 | 0.0151767 |
1113 | amazing + 30stm + coyy + feathering + fuck’excuse + mexicane + rik’s + sciencetist + sherlene + pipe | 97 | 0.0114119 |
261 | amazing + amstelgoldrace + mammamiaherewegoagain + liveve + jhb + mammamia2 + shots + goal + player + victory | 51 | 0.0060001 |
1104 | amazing + ha + nekkid + fantasticbeasts + cute + hero + wow + liar + abbasback + andrewlincoln + canthandlethetruth + dudeperfect + fieryfriday + goodlad + gotmykeys + grosbeak + henson + holz + johnnfinnemore + loadofbollox + loveyourgarden + notanewmanager + notaplonkeranymore + oversocks + perdoobliable + personauknumber1 + phooey + pinni + practicaltheology + reincarnate + rickgrimes + seductionvalentine + sh1thousery + shooked + standardsstandards + topboynetflix + troublefollowsme + universeboss + vellos + wallisweekend + wokeup | 316 | 0.0371770 |
1078 | amazing + proud + fantastic + team + event + support + night + staff + brilliant + players | 237 | 0.0278827 |
370 | amea + demarcus + nana + winnin + wallahi + uploads + arlo + boo + mum + siri | 151 | 0.0177650 |
205 | amendment + weekend + surviving + loses + cent + 70 + custom + lords + union + lovely | 55 | 0.0064707 |
924 | americans + somalians + rah + africans + grooming + rafa + nob + pokemon + altooki + carribbeans + delusia + fantasist + inbreeding + kebbell + lacasadelasflores + northernness + romanians + shur + tase + yoplait | 81 | 0.0095295 |
1486 | ams + property + wadkinbursgreen + brett_pruce + tigers + moulders + kingdom + stadium + leicester’s + united | 325 | 0.0382358 |
774 | anabel + blanchard + lawrence + commentator + jeremykyle + cah + 270s + albee + chiwali + cissam + cunton + enought20 + fourtick + ginsberg + jamescorden + killary + lecure + moxon + nascar + quickscopes + revo + soccernans + trubel | 53 | 0.0062354 |
72 | ando + bb + inshallah + videos + type + follow + awesome + lot + love | 66 | 0.0077648 |
1306 | anger + statement + barnaby + cowards + accurate + serial + liars + adulterors + ception + champloo + chatshow + ghostintheshell + oldish + orgasming + scherzinger + snakeyy + unconsciously + vance’s | 156 | 0.0183532 |
1289 | angry + irritated + stressed + feeling + andro + decisions:d + forgetten + navs + babybels + dest + remixing | 71 | 0.0083531 |
1534 | ani + woman’s + event + 7pm + evening + games + mahathat + cup + inspiring + bromley | 212 | 0.0249415 |
1161 | anna + 7.8 + aiden’s + brionys + gies + leanham + loy + phobias + silverlining + tigerroll | 76 | 0.0089413 |
856 | announce + deffo + hushhush + bants + stop + yeah + gary + kremmos + bottom + fuck | 1808 | 0.2127089 |
815 | answer + heaven + god + lot + boys + familiar + bad + blocked + ffs + sounds | 175 | 0.0205885 |
653 | anthem + national + fake + news + todays + da + bowie + aventador + benzo + bestamericanasong + bitchesz + carpoolkaraoke + clouzineinternationalmusicaward + deep’s + drillers + grennan’s + kermet + lilbaby + livee + mayle’s + niguh’s + proffesor + schwarzer + siwas + skepta’s + slaughterer’s + tkay’s + trappers + walkupandkissyou + wintermans | 79 | 0.0092942 |
858 | anxiety + liquor + affairs + ileugl + realblackpool + suicide.againstantidepressants + znfnfbfnjd + xoxo + edans + neave + unfashionable | 69 | 0.0081178 |
1514 | anxiety + pain + server + bipolar + 224 + cambell + deepl + disabling + gassy + gastroparesis + godhaabakqqhiw + ikhwaan + insistence + krasznahorkai + kyopolou + l’m + majah + netflixoriginal + remarried + seasonings + seokmin + singleparent + sunan + tenne + villanelles | 83 | 0.0097648 |
1309 | apeth + bringbackthenationaldex + danerys + gorbachev + menories + overdressed + ratemyplate + tirnom + appropriateness + bolder + doja + echr + hollies + ratae + revolve + tensioning + wqe | 72 | 0.0084707 |
1547 | apply + afda + painting + join + rfc + panorama + leavers + ucas + exhibiting + contemporary | 64 | 0.0075295 |
107 | apply + suitable + happened + casting + squadie + yiy + maguire + retard + soyuncu + deer | 59 | 0.0069413 |
1628 | appreciative + car + extremity + symbolize + cadjpy + gels + mypathtolaw + incompatible + 50 + mor | 220 | 0.0258827 |
1033 | aquaphrase + bashmore + bbm’ing + bigga + channeled + cheetah + earthists + gussets + margret + quotables + scherzomfishrnwner + uste | 52 | 0.0061177 |
823 | arafuckingbella + jacare + liol + nioolas + sandbach + todayb + yamcha + lip + else’s + hercule + jepson + jovani’s + royalbaby3 | 54 | 0.0063530 |
1733 | aresting + valand + islamophobic + proportions + rightful + somaliland + occupation + somalia + wether + ik | 71 | 0.0083531 |
1555 | arguing + viewpoint + decisions + people + cdj’s + conceptualised + delici + dialectical + disenfranchises + dispassionate + dissemble + ēg + excludi + hesaltine + housr + invalu + jugak + l.o.v.excuse + loreto + metaspaces + neutrality + obvi + ostensibly + portentous + stalinist + technicalities + thing.state + uppe + videoes | 119 | 0.0140002 |
1054 | ariana + 99.999 + dispise + indisputable + lcpa + shuttling + bingewatching + caucasians + parodying + saxons + shitehouse | 52 | 0.0061177 |
159 | aromatherapy + 75mins + couch + indulge + relaxing + gents + homemade + babies + birthday + love | 194 | 0.0228239 |
1012 | arsonist + chugged + fentanyl + fluster + fucc + lovetowin + badder + 7up + chrysanthemum + honeslty + icicles + sksksksks | 58 | 0.0068236 |
1655 | artistic + today’s + adme + americaneedsyou + and.username + bbcelfie + disocering + duncanfegredo + exceptiona + exvellence + future100 + futurefocus2019 + girders + impactteamsuk + ise2018 + jayzneedsyou + lboromarkettastic + lboroquality + learningspace + lencarta + letaveit + nause + oboe + oranginser + ordinator’s + purpos + r2ba + saveourocean + ström’s + strongerthanmyfears + tab’s + thegriefcast + theineptfive + womensawards + yesidonate + zorba | 84 | 0.0098825 |
1211 | artsy + skytribe + sketch + photoshop + artwork + modernart + graphicdesign + artoftheday + texturedart + fusionbellydance + tribalfusion | 70 | 0.0082354 |
1228 | ashley + applicable + criminalresponsibility + davro + grizzly + idrees + laminators + member’s + sanderful + zeitgeist | 51 | 0.0060001 |
1038 | ashtray + goldberg + ackers + dampening + omelet + samuraj’s + shippinguptoboston + teprosteakgrill + wholelottalove + cheaper | 90 | 0.0105884 |
200 | askadamsaleh + silk + embroidered + bags + luxurious + dupattas + beautiful + clutch + luxury + raw | 106 | 0.0124708 |
839 | askally + any1 + bo4 + hey + xx + kwiff + ps4 + 2k20 + play + legends | 174 | 0.0204709 |
634 | askally + play + excuse + fancy + uk + buy + wanna + plz + pics + xx | 143 | 0.0168238 |
871 | asksrk + designers + gon + injuries + infirmary + 4thvisit + febreze + habon + my1stquestioninheaven + rerferemdum + rhetoricalquestion + winwin | 58 | 0.0068236 |
714 | ass + laughing + hell + fucking + bloody + christmaslocally + wilin + jammiest + kodak’s + roasts | 79 | 0.0092942 |
1709 | assumi + launch + kickstarter + meeting + welcoming + scholarship + winner + students + showers + cohort | 107 | 0.0125884 |
1253 | atlantis + bbcskisunday + earlies + kristoffersen + skisunday + tamam + tumultuous + patience + criticalthinking + slalom | 59 | 0.0069413 |
1221 | attacked + confused + sick + feel + life + personally + im + identify + gonna + wanna | 514 | 0.0604714 |
1332 | attacked + cry + feel + life + wanna + rt + bcoz + flexible + people + violated | 304 | 0.0357652 |
1287 | attendance + rearranged + moans + uni + deductex + dejs + travel + bf + marks + realising | 80 | 0.0094119 |
999 | auchinleck + bcce + blackbur + consert + grammable + icce + linn + loth + outground + saturdayfootball + venetia | 74 | 0.0087060 |
1100 | audible + givenchy + albany + alfred + ark + bedford + solidarity + oil + intimate + trolley | 144 | 0.0169414 |
1220 | authored + caucasoids + fwm + nochance + inverary + mway + dependant + kkk + cathartic + flabbergasted | 66 | 0.0077648 |
708 | average + fiddled + memb + pay + spend + ability + migraine + intelligence + explained + believed | 106 | 0.0124708 |
499 | aw + amazing + congratulations + pleasure + appreciated + judith + girly + lovely + aww + miss | 289 | 0.0340005 |
1265 | awake + nap + sleep + muff + weight + bed + eat + drinking + roast + nights | 280 | 0.0329416 |
756 | awake + shift + hours + dozing + paradisegardens + lips + 1.8 + 8hrs + cantsleep + mousse | 57 | 0.0067060 |
789 | awake + sleep + daffodils + wardrobe + wide + glittery + hours + tomo + 5am + sleeping | 100 | 0.0117649 |
1502 | awards + luck + congratulations + winning + juniors + junior + women’s + teams + cricketers + night | 259 | 0.0304710 |
565 | awat + tidoq + lagi + gregory + oki + accent + partly + tak + bb + abt | 51 | 0.0060001 |
17 | awesome + awespome + spooner + mvouchercodes + chillaxing + cx + nin + loll + medium + 10pm | 708 | 0.0832953 |
627 | awesome + bewitchingly + blair + stunningly + beautiful + weird + wow + wcw + final + eurovision | 1300 | 0.1529433 |
744 | awesome + blub + cool + xxx + fastdad + gangly + ingame + latinas + makoya + myheroe + rayburn + rmalfc + rmaliv | 156 | 0.0183532 |
335 | awesome + boobs + skinny + meme + jeans + elite + town + damn + super + guys | 61 | 0.0071766 |
518 | awesome + competition + 33a + hubbell + lifegoal + lubbell + practicemakesperfect + tweetheart + wondergul + wynonna + yolanyard | 120 | 0.0141178 |
147 | awesome + fantastic + lizkendall + nationalbestfriendsday + lovely + jools + transformers + chum + canvas + tracksuit | 73 | 0.0085884 |
269 | awesome + kev + cheers + brilliant + cool + mate + inspirationnation + nice + spot + call | 556 | 0.0654127 |
49 | awesome + prize + treat + won + super + chance + crayfish + foodwaste + avocado + unitedkingdom | 388 | 0.0456477 |
511 | awesome + sounds + fab + picture + handdrawings + impresive + primadonnas + stonkingly + overqualified + brilliant | 110 | 0.0129414 |
309 | awesome + worries + kev + cheers + nicola + downloaded + piece + brilliant + engagingly + medialens + ngiright + step’s | 142 | 0.0167061 |
885 | awesome + yuh + 3grams + bootie + emblazoned + lickeble + marsexit + minipip + shawty’s + stearing | 119 | 0.0140002 |
542 | ayes + worldcup + uta + goal + lampard + finish + kasper + whoop + 20pts + 89pts + freehit + g2army + gurdiola + kuldeep + pissin + wingy + worldmatchplay | 93 | 0.0109413 |
883 | ayston + le3 + 7b + 0to100xmas + 2ga + giffardliqueurs + boutique + shooter + 15.5cm + aystonroadbarbers | 160 | 0.0188238 |
1430 | b.t + crappyexcusesforcheating + hagga + presumptuous + resonsibility + scarring + yoursekfv + ashawo + fortnightly + higgy + immortals | 58 | 0.0068236 |
1445 | b1 + vivasurvivor + goldenthread + jaffer + wasim + personalisation + bics19 + lbf2019 + batsman + hr | 113 | 0.0132943 |
655 | ba + beefa + jejune + peno’s + playdough + righty + sldr + stormgareth + unponcey + painful | 76 | 0.0089413 |
1232 | babcock + broadband + cost + employment + 15b + 2388.24 + equalizing + gingh + itvhub + knh + macpro + najibrazak + virgininternet | 53 | 0.0062354 |
314 | babe + darling + um + gorgeous + horny + honey + sexy + bum + lips + nice | 212 | 0.0249415 |
420 | babe + thankyou + love + birthday + happy + xxx + 8yearsofscienceandfaith + homelands + nindlebug + hooch + siss | 113 | 0.0132943 |
313 | babe + um + darling + gorgeous + honey + horny + anytime + sexy + mm + bum | 121 | 0.0142355 |
730 | baby + mummy + bathroom + sweet + marry + dream + alehouse + argento’s + batterytechnology + choca + gadosh + niggalations + tagat + weekendatbernies | 169 | 0.0198826 |
191 | backwardistan + nigeria + buhari + disgusting + sick + president + makeup + gibbs + ghetto + imacelebrity | 169 | 0.0198826 |
1392 | badness + unpopular + 11s + novelists + sid + bastile + burgler + charolsville + chestily + concord + flamely + horroranymovie + infared + kikstart + no45 + tollesbury + torchy + unrebuked + whitepool + whitsun | 144 | 0.0169414 |
1143 | baghban + cockwash + guzan + karuis + muckhole + mullarikey + scruples + snakiest + badescu + goodwoodraces + triffic | 52 | 0.0061177 |
668 | balloon + blimp + sadiq + badgers + affording + authorizes + desdamona + livestock + othello + rebooting + unshakeable | 74 | 0.0087060 |
1072 | balwant + bigears + daysofyore + galaxywatch + jt‘s + misterland + neonnight + zovirax + zowie + cute | 70 | 0.0082354 |
963 | bang + overrated + 18c + crazeh + evver + foodsecurity + ikara + maccaodyssey + madu + moshpit + tremble | 59 | 0.0069413 |
1183 | bangs + overrated + annihilationmovie + aspaceodyssey + banshee + deconstructing + finnick + friel + greenpaper + mbb + mosley + shepeteri + sodom + whitepaper + wiona + wolfhard | 61 | 0.0071766 |
1194 | bangy + awful + agree + l.ove + pvac + paul + espionage + ripmacmiller + 170 + clandestine + maybot + planb + restrained | 97 | 0.0114119 |
745 | banterawaydays + crispay + ralf + tooz + tree’s + wobbed + newshepard + synthwave + ferret + squid + su4 | 73 | 0.0085884 |
1663 | barkby + exhibition + march + taster + gt + adayforleicester + batson + breadangel + curatorial + hellbladesenuassacrifice + interrelated + jbi + latests + lt3 + ltown + neiland + ollie_kd7 + outcheax + reggulites + tebo + the_bhf + thegallerysocial + vote.leo + wheyhey + y10 | 53 | 0.0062354 |
1403 | battleaxe + musings + blog + trainee + hiya + dye + scenes + amazing + 5yearsago + absurdinstruments + adjoining + asmona + bbcradioplayer + bedifferent + beeby + catapults + ergonomics + flashbacking + grindstone + marriam + mercie + øres + shed’s + twitterissoannoyingattimes | 66 | 0.0077648 |
1304 | bbc + news + police + petition + jailed + pensioners + deepfake + deforestation + xkam.billa.toorx + yangyang | 265 | 0.0311769 |
695 | bbc.my + bigblackcock + dommes + desires + adverts + cum + people + fuck + assholes + hate | 187 | 0.0220003 |
1411 | bbc1xtra3shots + hesadick + sherk + inder + yanoe + spoken + hugest + unseemly + harder + prospering | 54 | 0.0063530 |
160 | bbcradioleicester + lcfc + 0 + leibou + leiswa + diabate + leishu + leistk + iheanacho + city | 135 | 0.0158826 |
1652 | bbcsports + premiereleague + bbcsport + presentations + outlander + arsenalfc + support + kilted + progr + mentoring + notting | 119 | 0.0140002 |
997 | beardage + fergoose + preciate + teammall + ucustrikeback + yayuh + callister + disneyemoji + luck + disneybloggerschat + ffed | 63 | 0.0074119 |
600 | beautiful + babe + gorgeous + sweetie + cute + soo + god + love + sexy + wow | 1658 | 0.1950616 |
472 | beautiful + couse + scucces + stunning + goldsmiths + saddened + love + og + glam + faye | 51 | 0.0060001 |
117 | beautiful + enormous + stunning + luck + serenely + pretty + gorgeous + holidayinsephora + lalalala + sicho + taittingerbathtime | 188 | 0.0221180 |
161 | beautiful + promises + gorgeous + flecks + wearly + pastey + dapper + horrors + progressed + madders | 77 | 0.0090590 |
775 | beautiful + stunning + xx + babe + pic + awesome + gorgeous + xxx + ha + congratulations | 381 | 0.0448242 |
1531 | beavoter + polling + recordoftheday + election + station + finding + sport + boop + album + today’s | 102 | 0.0120002 |
701 | beckenha + dontmanupspeakup + fagulous + story.hope + thed + thistles + well.but + youngestmembersoftheaudience + bmd + funtime + oaklands + saturdaythoughts | 56 | 0.0065883 |
1317 | bed + extracted + hiccups + peeling + charcoal + straws + agwjeormg + bmwshow + carnaval + evey + otherthinking + soundwaves | 100 | 0.0117649 |
1431 | believes + bdjfjfkfjf + keelan + moshh + muhfuckas + proffitt + punch’s + sandieago + seaborneferries + maddi + plots + skeptical + snitchin + tagmovie + vibrators | 127 | 0.0149414 |
356 | bella + woo + saluti + wit + birthday + happy + mornin + anniversary + whoop + geetz + salutibella | 73 | 0.0085884 |
1671 | belonged + woop + tony + 10.25am + 11.02am + 11.06am + abled + apportunity + authorwouldyou + blogged + bodypump + d19 + ecgs + forgiv + jawsome + josh’s + maslwa + megmovie + metacalm + moonraker + prigent + russo + two0miles + waddled + whisked + مصالوه | 55 | 0.0064707 |
1335 | bendy + yalls + sick + bronchitis + hyperthermia + grater + constipation + invigilators + resorted + recommending + viagra | 54 | 0.0063530 |
215 | bendybus + feellikeakid + bendy + weriseagain + coops + robbo + fastest + recommendation + striker + slice | 77 | 0.0090590 |
1562 | bestie + oven + buffet + 78million + annoyances + arranger + asma’s + bidon + claime + ebo + itsoveritsdone + maybe’s + safed + salerno + sausag + seder + theskripture + triix + uncomfort | 57 | 0.0067060 |
838 | betterbrew + cavalli + espadrilles + stirs + toreador + yorkshiretea + youngman + ha + nocturne + pyrex + refinitive + sweated | 58 | 0.0068236 |
151 | betterpoints + cycled + earned + miles + hundredths + pigs + thirty + blankets + bashers + bible | 91 | 0.0107060 |
157 | betterpoints + earned + walked + hundredths + miles + antalya + brill + thirty + weekend + timelords | 238 | 0.0280004 |
113 | betterpoints + earned + walked + hundredths + miles + fantastic + eighty + thirty + fifty + superb | 56 | 0.0065883 |
587 | betterthansexin3words + awful + incredible + noel + accabuster + viversection + cureheartachein4words + dignityin5words + electrocuting + fulla | 50 | 0.0058824 |
862 | bhoy + congratulations + superstars + proud + congrats + deserved + achievement + infirmary + batleyandspen + bryers + gishmeme + lydo + muchas | 75 | 0.0088237 |
1263 | biggrowler + camridgeanalyticauncovered + choralspectacular + cume + dreamliners + episode2 + hussien + icefields + johncreilly + lincolnunihereicome + lovecruise + makeasongormoviepoetical + miniaturepainting + morello + purpel + rattan + season1 + serigne + sheena + teamtroupersdance + werente + whataboutthiswhataboutthat + whatch | 62 | 0.0072942 |
1163 | billyfest + fuckable + leeloo + lumpas + reichelt + shege + soapbox + ff’s + umpa + endoscopy + manifestation + nigella | 55 | 0.0064707 |
308 | bin + morning + legend + portillo + adam’s + brexiteers + trash + michael + garbage + theresa | 225 | 0.0264710 |
1594 | biog + cremer + prophets + addiction + quote + resonates + environment + negative + nurses + pick | 186 | 0.0218827 |
741 | biography + soldered + unfrie + revoke + petition + repair + replaceable + 50 + ebay + february | 70 | 0.0082354 |
1323 | biology + question + agutter + antwood + behr + chemistryin4words + everitme + gettogether + loviest + wint | 75 | 0.0088237 |
1419 | biomed + uck + happened + concourses + decommissioned + laeekas + machine’s + preening + specialness + theorist + trawler + usllay | 57 | 0.0067060 |
377 | birthday + congrats + happy + congratulations + whoop + party + acprc + babbyy + colclough + grandnational2018 + grandsonno2 + imagane + railroad + runor + ygs + yhats | 179 | 0.0210591 |
322 | birthday + enjoy + happy + bhai + sweetie + sis + love + roommates + lovely + shree | 387 | 0.0455301 |
563 | birthday + happy + 170yrs + englandsnumber9 + girlsmissing + happilyevermackie + ourlovestory + tweetyourtreat + xmaseve + zumbalove | 53 | 0.0062354 |
327 | birthday + happy + holi + wishing + decode + mayday2019 + nephi + bandi + saffy + shor | 145 | 0.0170591 |
572 | birthday + happy + hope + cake + cobbles + xxx + xx + day + bday + belated | 121 | 0.0142355 |
571 | birthday + happy + hope + day + xx + wishing + fab + wonderful + awesome + returns | 213 | 0.0250592 |
574 | birthday + happy + hope + xx + day + xxx + lots + boo + blessings + belated | 264 | 0.0310593 |
560 | birthday + happy + inspirationnation + prachi + hope + classteachmeet2018 + appreciation + julie + day + congratulations | 247 | 0.0290592 |
328 | birthday + happy + mkbsd + wrongs + mom + wishes | 55 | 0.0064707 |
573 | birthday + happy + pele + day + coyb + blessed + dday75years + dispastico + girthday + letitshine + t’celebrations + thankyousir | 51 | 0.0060001 |
569 | birthday + happy + smashing + boo + b’day + day + belated + aliaarmy + congratulations + queen | 416 | 0.0489419 |
378 | birthday + happy + xx + anniversary + xxx + bday + bro + pride + lanky + xo | 421 | 0.0495301 |
1315 | birthday + pleasure + amazing + griffin + brilliant + drums + anniversary + meet + goodies + 3nessltd + bangerz + bashford + birminhampride + britishsummer2018 + defacing + founder’s + hunkiness + itscorey_09856 + lifel + liko + picu + runnersknee + tielamans + wearearcades + ww100 | 83 | 0.0097648 |
564 | birthday + xxx + hope + happy + beaut + xx + day + lovely + wonderful + hey | 213 | 0.0250592 |
283 | black + white + partridge + jobs + pear + assistant + 3 + 2 + 1 + tree | 52 | 0.0061177 |
1463 | blackboys + goodmusic + rideshare + epicrecords + brentsayers + nonlikeus + carpool + islanddefjam + daretobefearless + dreamchasers | 65 | 0.0076472 |
211 | blackevent + enhanced + contributions + accessories + deposit + landrover + 20 + jaguar + lipless + 15 | 66 | 0.0077648 |
712 | blah + dom + statistics + 0.0001 + arranges + bankruptcies + catholic’s + discrediting + fumour + heisenberg’s + kiwa + marb + transph | 51 | 0.0060001 |
1550 | blah + requests + 2.20.1 + buyout + dannymurphy + gatwi + georgebenson + idna + righting + satell + schooltoyday + scrapio + seedbanking + shoehorning + skirpal + uneconomic | 60 | 0.0070589 |
735 | blame + pod + debt + 2217 + boarder’s + chechnya + disreg + ev’s + factcheck + gvt + involvin + itsalies + lgbti + metalman + prolet + psycos + suppressing + unchal + understan + zerohour | 52 | 0.0061177 |
1623 | bland + cyclist + bicycle + abuse + hoc + farscape + ripjeremyhardy + women + people + safe | 248 | 0.0291769 |
718 | bleach + drink + love + 50g + cantu + cheesegate + chewit + crowding + laterc + midras + mybrotherskeeper + spech | 119 | 0.0140002 |
436 | bless + returns + god + xx + allah + happy + blessing + aw + bro + 24hoursae + 24hrsae + britishidol + emiliano + fairwell + swetu + डी | 128 | 0.0150590 |
631 | blessings + awkss + blathered + checkyourballs + cliffhangers + dianne’s + ladysings + lovetoread + monsterenergy + peariscope + testicularcancer | 50 | 0.0058824 |
1110 | blethyn + cheekyfekers + laundrybar + lestha + nothingbutthieves + roadtomexico + stillgetitupthebumholey + amsterdam + anthropocene + frome + interminable + jrod_hd + knotweed | 85 | 0.0100001 |
1347 | bleuvandross + boj + disagreements + fye + pramripdoddy + sheering + teamtayla + shutters + refuse + kid | 58 | 0.0068236 |
1611 | bloggeruk + bromyard + wonderful + childrensmentalhealthweek + families + inspiring + team + training + companion + morty | 134 | 0.0157649 |
855 | blue + wootton + fams + godennis + greenmanalishi + kkrvcsk + ole20 + skillset + talismans + poo | 91 | 0.0107060 |
1214 | bluray + fatal + markets + attraction + 1.0.2 + ahmedabad + badasswomen + bloggerloveshare + herculean + hereforlgbtqs + malwarebytes + nasarbayev + nursultan + talak + toytrains4u + womenhelpingwomen | 67 | 0.0078825 |
630 | boirders + brexit + priti + guts + betrayal + patel + mp + selling + call + wrightstuff | 54 | 0.0063530 |
1148 | books + shook + mars + triggered + birds + salty + harsh + stylish + recycling + teamwork | 485 | 0.0570596 |
1417 | booty + loyalty + settling + capote + flavor + pedometer + sharking + tourer + corolla + ewe + hanuman + metaphorical + nass + pragmatism + selflessness + vigorous | 50 | 0.0058824 |
651 | bored + notifications + 46yrs + aiko’s + alfiedeyes + andre’s + bieber’s + crüe’s + cuddlyfriends + engvbel + hildy + lavigne’s + maría + mohan + mötley + mumblogger + muse’s + pointlessblog + secretive + sinead’s + sprunger + star1 + tinkled + udhdjsis + undermyskintour + vila’s + wozz | 104 | 0.0122355 |
988 | boris + adulterer + ashes.engaus + balvin + belcher + chibu + crus + gangstas + heathcliffe + mortez + privilage + titoff + wynonnaearp | 73 | 0.0085884 |
1218 | bottle + electracuted + milowatch + occlusion + wackiest + wna + cockblocking + diagnosing + igloo + shyness + unwilling | 66 | 0.0077648 |
1160 | bowled + hollywood + backstree + carlito + climatedebate + din’t + duedateproblems + farrier + fulloflove + thewritestuff + twale | 89 | 0.0104707 |
251 | boxer + kelton + boxing + fitness + boxercise4health + workouts + professional + mckenzie + workout + active | 3727 | 0.4384768 |
1385 | boy’s + accounted + cogito + englishmen + habitually + nhs71 + ownas + sachet + wingthh + beauvoir + clurb + jordanne | 63 | 0.0074119 |
1520 | branches + car + children + academics + armed + bursa + cowa + cseday19 + daudia’s + dibnah + edf + fiendishly + godsons + helpinghands + indifensible + judiannes + muss + pagerank + philologists + propulsion + psychia + reformation + renton + repairman + saffir + sportspsychology + stranglin + subsiste + sunak + upo | 72 | 0.0084707 |
1642 | brecht + vivek + priest + naive + angushad + buddhistpriest + carls + defendin + dftb17 + guara + japanidol + kewl + powerwashingporn + quirk + sabo + seventee + subreddit + zionis | 53 | 0.0062354 |
1456 | breixt + satan + bigwhite + bordersblake + complainant + congi + jsksksk + malignantseven + osmonds + realisations + terrarium | 113 | 0.0132943 |
626 | brexit + ass + laughing + deal + kelsey + britain + eureka + igbo + vote + accent | 120 | 0.0141178 |
850 | brexit + betrayal + inflict + tory + marr + 251thisyear + b’n’n + cliffedge + everybodyelseiswrong + onviously + orgeza + p.r + trogan | 57 | 0.0067060 |
909 | brexit + corrupt + eu + tory + centrist + poorer + democracy + tories + negative + conflict | 74 | 0.0087060 |
1732 | brexit + country + regime + poverty + afghanistan + tories + likes + stalking + tory + poor | 63 | 0.0074119 |
1648 | brexit + impasse + jha + eu + voted + union + political + politics + lt + government | 64 | 0.0075295 |
1738 | brexit + labour + remain + referendum + vote + tories + parliament + tory + lied + voted | 202 | 0.0237650 |
1170 | brexit + labour + tory + voted + mps + vote + customs + corbyn + union + voters | 100 | 0.0117649 |
645 | brexit + time’s + palestine + justify + disgusting + corrasco + ottomans + paneka + phonebanked + saladin + vurb | 76 | 0.0089413 |
687 | brexit + tories + election + labour + leave + deal + tory + vote + eu + remainers | 464 | 0.0545890 |
683 | brexit + tories + labour + itvdebate + tory + marr + minority + stance + vote + againist + bexit + britrev + cupido + dither + elution + hbhb + howbigwillthelossbe + imaged + inbetweeten | 53 | 0.0062354 |
1603 | brexit + trump + corbyn + federal + tory + democracy + racism + constituency + party + reporter | 60 | 0.0070589 |
1735 | brexit + vote + eu + tories + amendment + conservatives + labour + surviving + customs + deal | 83 | 0.0097648 |
1736 | brexit + vote + lapdogs + cbi + deal + conservatives + amendment + tories + surviving + party | 62 | 0.0072942 |
867 | brexit + voted + labour + eu + leave + vote + rudd + tories + 17.4m + extension | 83 | 0.0097648 |
953 | brexit + voters + generalelectionnow + remainparty + eu + brexitparty + doo + tories + voted + electbhupen | 168 | 0.0197650 |
208 | brill + weekend + hiring + projectmgmt + o2jobs + england + lovely + fit + job + retail | 228 | 0.0268239 |
192 | brill + weekend + lovely + claire + chris + alison + kenny + ken + 16yearsago + m’lovely + recommendable | 67 | 0.0078825 |
120 | brill + weekend + lovely + dougie + steve + ken + antony + si + lynn + corah + rowells | 120 | 0.0141178 |
144 | brill + weekend + lovely + hope + steve + craig + jak + ray + karl + david | 303 | 0.0356476 |
181 | brill + weekend + lovely + liam + daniel + simon + mike + stephen + jonathan + matthew | 77 | 0.0090590 |
169 | brill + weekend + lovely + luke + simon + goodluck + lance + bud + jason + sam | 161 | 0.0189414 |
270 | brill + weekend + ta + bud + hope + mick + lovely + ty + good’un + alan | 98 | 0.0115296 |
53 | brilliant + bollocks + loquated + relationshipskey + onlyconnect + partnerships + carole + tactical + clarity + perfection | 86 | 0.0101178 |
167 | brilliant + hignfy + marketing + bombshell + wrestlers + pressing + night + scandal + timing + bloody | 163 | 0.0191767 |
680 | brit + temperature + saffron + activeleicester + dogrescuers + hmpleicester + prelim + rugby.such + westaystrong + earlybath + gromit + josep + sunil | 64 | 0.0075295 |
1681 | britishbasketball + dusk + bradford + doughnut + ghana + gimme + 11.15am + 5pt + beastfromtheeastcantstopus + bennies + chickweed + denham + fightcancer + futurethrowback + holmesparkfc + iqra + 🅿️ + pariahtour + philprosportsimages + resiawards19 + saskiaashalarsen + tesla’s + timbers + trumpeter + wathes + wolloff’s + xtremescreampark | 85 | 0.0100001 |
243 | britishbasketball + readin + mens + riders + challenge + 2date + book + read + cheerleaders + mate | 60 | 0.0070589 |
1510 | britishbasketball + riders + winners + whereyousucceed + newground + whereyoubelong + awards + congratulations + inktober + 2nds | 159 | 0.0187061 |
362 | bro + mate + congrats + luck + congratulations + cheers + legend + birthday + topman + happy | 11955 | 1.4064904 |
908 | broken + relatable + banger + annoying + sexiest + hardest + crap + worst + accurate + trash | 235 | 0.0276474 |
1061 | brokenkettlehell + visuals + slipped + mvp + moments + run + morning + avantdale + blitzed + bruno.nelly + dogs.this + domesticated + edithstein + furpals + got8 + papaji + penury + smthg + sttheresabenedictaofthecross + ta1300 + tided + waterboys | 80 | 0.0094119 |
694 | bruh + nice + crunch + beautiful + newprofilepic + elizabeth + home + footballindex + h8ters + lotioning + nationalyorkshirepuddingday + needscenerynow + pamphle + popopoo + summervibes + weldone + wohoo + wordsmatter + xvideos | 91 | 0.0107060 |
1720 | bsr + woodcut + justsponsored + today’s + students + dmuleicester + community + check + female + fundraising | 68 | 0.0080001 |
50 | bud + ekadashi + centralfirestation + firestation + leicestershirefireandrescue + petition + weekend + discoverleicester + lovely + rt | 88 | 0.0103531 |
124 | bugsbunnyabook + bunny + feta + salads + greek + foodwaste + unitedkingdom + bugs + rabbit + bunnies | 72 | 0.0084707 |
1212 | bulldogs + surrounded + relieved + beyblade + enotional + fassbinders + imout + keemz + pheeww + predictableartbloke + tweetsforno | 59 | 0.0069413 |
1459 | bulldoze + ferocious + riv + consumed + pantomime + hero + rage + 1a + 54s + arshya’s + barcelo + bouali + brants + chevrolet + commemoration + decompress + dionne + dommedagsnatt + everydaymatters + eyc + freegensan13 + ghanta + gsc + guthlacs + hassiba + hippest + imhereandimahero + jumperoo + let‘excuse + muezzin + room’s + sissyinside + summersundae + thankfu + thorr’s + timethese + waiver + zea | 86 | 0.0101178 |
1454 | bully + shsjsbdbdbjsjs + skdksksksks + vday + terrorist + 25yrs + bennell + mundo + underaged + meant | 94 | 0.0110590 |
1407 | burgess + avenged + badshah + bèen + degr + hights + improveyourlifein4words + s’okay + sevenfold + anthony | 75 | 0.0088237 |
1237 | bursgreen + wadkin + copper + twitterblades + hortons + rcn + tai + lcfc + gallery + blades | 88 | 0.0103531 |
1518 | bus + dazzle + endemic + ebay + uber + driver + spreads + pencils + partly + patients | 172 | 0.0202356 |
142 | bush + fmsphotoaday + voters + fmspad + hundred + sunrise + brexit + cent + 07710900160 + bbl2017 + bbl2018 | 227 | 0.0267063 |
1687 | business + event + raise + design + launch + coaching + conference + charity + cad + diabetes | 146 | 0.0171767 |
734 | busy + fridays + healthy + jasleen + lasenza + plasmas + lemme + arianna + sal + ukht | 87 | 0.0102354 |
584 | butter + accuser + waddanimo + wanchain + whrn + wlv + vlog + amazonfire + bragged + charlotte’s + investigates + izombie + octopuses + provokes | 57 | 0.0067060 |
1553 | byte + protestant + mets + service + pharma + policy + controlled + investigate + walk + similar | 124 | 0.0145884 |
852 | cabbages + lawofattraction + sainsbury’s + loa + 12july + ballaghaderreen + chopra’s + disinflation + dobbies + dynamo’s + fcukregev + gammon’s + kitsune + marblehead + middx + middxleics + milbrook + mygirlbandiscalled + naan’s + noele + powerwall + regevoffcampus + shopworkers + signwriters + solicitor’s + soundproof + submits + sumi + thecommuter + thewarriors + tomschwarz + tysonfurytomschwarz + ukhospitality + unsa + urbanutility + zaka | 86 | 0.0101178 |
1678 | cach + heritage + campus + caribbean + cfp + wellbeing + marque + appropriately + propel + week | 150 | 0.0176473 |
590 | calm + uh + swear + signed + mate + chald + makeanoldsayingdirty + breddah + deafness + ushie | 81 | 0.0095295 |
122 | camra + drinking + prize + festival + beer + eighteen + thousand + chilling + mistress + sams | 85 | 0.0100001 |
981 | canavese + hornseyroad + m’colleague + mate.this + raf.but + rosso + sexyfying + suports + thankyou.i + wadvreallybloved | 59 | 0.0069413 |
1186 | candice + happened + hotspur + magic + areright + bellewhaye2 + coursed + halliwells + m3 + ohmygodyou + pledge2pray + prestwich + ratlikecunning + whoes | 53 | 0.0062354 |
1390 | cani + intellectuals + keywest + kindhearted + parkhead + yestheroy + words + doctoring + onepiece967 + describe | 52 | 0.0061177 |
311 | cannibals + clowns + grandad + taste + casualty + miss + corrie + eat + jonnie + collarbone | 162 | 0.0190591 |
1432 | cares + honest + incest + dickhead + responses + anightin + applys + caseworkers + duplitious + eeermm + fkskdksksks + inmpose + jigger + mokentroll + podgier + prayforsudan + section28 + supremecourtlive + wasil + wingmirrorgate + wounding | 195 | 0.0229415 |
1024 | cartoon + jersey + 90hz + ambulanceservice + animating + babearslife + bestofboth + bischoff + cartograms + castleman + churner + conten + educa + harb + ivortheengine:bagpuss’s + retes + wreford | 52 | 0.0061177 |
751 | cashslave + paypig + paypigs + findom + cashmaster + cashpig + cashfag + humanatm + cashcow + finsub | 112 | 0.0131767 |
1597 | catastrophic + climatechange + universities + persons + impact + worldwide + aboriginal + apparates + being’s + circumvent + citation + grolsch + haggarty + impostors + impre + loyalist + netballworldcup + ofte + qabbalistic + sephirah + statele + terns + yesod | 75 | 0.0088237 |
1469 | cathedral + bouldering + monumentalmuscle + fabteam + votes100 + highcross + monumental + montage + vote100 + botanical | 71 | 0.0083531 |
1001 | cctv + haven + antivax + arthropod + barrow’s + busymorning + luther + makingthewordsrain + mercury’s + profiled + sl700 + st6 + winwithradian | 64 | 0.0075295 |
1493 | cdn + share.pubgameshowtime.com + showimage.php + stadium + enderby + pubg + leicestershire + lcfcfamily + squash + teamwork | 63 | 0.0074119 |
1584 | celine + 1970 + hundredths + mop + anytime + recently + 11yrs + apaz + apologie + cellos + dions + driff + e2 + ferguso + foundatio + freaki + headbanging + headmistress + hobbie + immersed + itv3 + kiersten + lucife + marigold + millionaireslatte + oldes + or + pannie + recluse + s.a.d + smashbox + sound + stac + stonecoldheart + twothree + unlces + vaugly + verte + writhing | 119 | 0.0140002 |
449 | cellino + tiling + ha + mbali + od + elaborate + gorge + origins + survivor + admitting | 83 | 0.0097648 |
67 | centralnews + itvcentral + switchon + christmaslights + itv + lights + christmas + sambailey + mkt + united | 62 | 0.0072942 |
1455 | centre + city + art + tigers + 2bs + 68thmissworld + advantageous + bitchass + bythethroat + charlt + craigtatt1975 + diagcon + dialectquiz + diggininthecrates + djabilities + eyedeaandabilities + imaround + instablogger + lancers + loughboroughsport + michaellarson + mixtapedjs + mr_granger1 + multifaith + northernlass + opentothepublic + philwarrington + pierreliggett + rceinengland + revl + scotty_g_18 + sept2018 + thisisreal + truhiphophead + uclfinal2019 + wallysofwigston + watercolours + watercooler + wheelerd80 | 51 | 0.0060001 |
1723 | centres + conference + ordination + event + meeting + quickest + forward + forthcoming + leadership + litter | 77 | 0.0090590 |
1695 | cereb + effectivecontent + socialmediamanager + nowhiring + whitexmasshow + unrivalled + event + developing + hosted + project | 117 | 0.0137649 |
37 | cfsfurniture + antique + 107.5fm + unod + contest + tunein + smartphones + french + gmt + lar | 59 | 0.0069413 |
1396 | chakrabortty + ghd + accountancy + aditya + everest + hugh + peer + alissa + announcin + artceramics + baxiworks + bikepacking + biscuitbreakdown + coppermatt + cytoskeleton + dmuelections2019 + edz + elavation + everest2018 + franziska + frigh + futurefocus + goldcrest + hanja + hoarders + holidayclub + hotlist + icssao2018 + iftekhar + imidra + intermediaries + ivanliburd + jopson + justinbieber + kinase + kotecha + ld19 + ldweek18 + ldweek2018 + lhotse + loveabaxiinstall + mannix + mitosis + spreadlovein3words + uksepsistrust + valeria + yasmin_basamh + zonato’s | 89 | 0.0104707 |
1053 | chalmers + charlize + deloran + dizzle + heatacelebrity + mustbebuzzininyourbonesbitch + nurdle + sext + shmapag + childish | 52 | 0.0061177 |
814 | cham + abhorrent + despise + opinion + sexton + withnail + emery + everton + napoli + goat | 150 | 0.0176473 |
693 | champ + fifa + mvp + spurs + lincoln + annasoubry + copeland + enim + forknife + tuber | 53 | 0.0062354 |
19 | chance + awesome + tonic + foodwaste + unitedkingdom + ultra + gordon’s + alcohol + gin + gra | 230 | 0.0270592 |
42 | chance + awesome + union + customs + eu + links + remains + basis + click + adoption | 94 | 0.0110590 |
100 | chance + win + awesome + prize + competition + nationalbestfriendday + vivienne + repondez + s’il + plait | 64 | 0.0075295 |
1052 | changer + tvormoviesynonyms + watermusic + beggy + ere + weirdo + boy + ntas + truth + naughty | 264 | 0.0310593 |
1573 | charging + streetview + pension + magnitude + websites + cctv + stalk + district + bought + price | 103 | 0.0121178 |
1664 | charity + familyyoga + sattvalifeyoga + yogaforever + event + newmusicalert + tus + yoga + monday + 1979 | 102 | 0.0120002 |
1004 | charlatan + jeremykyle + cunt + bla + fucking + jayda + kurtha + mustbewalkers + outrages + starks + unprincipled + unwashed | 82 | 0.0096472 |
1357 | charters + fur + gooder + grouted + mathamagician + worldmathsday + petname + splinters + hear + fen + ronak | 64 | 0.0075295 |
1293 | chatbots + nicheawards + interactive + venture + incarnation + bulldog + rescue + beeroclock + burgers + darts | 87 | 0.0102354 |
1566 | cheaper + adobe + gigi + facebook + app + system + sen + sold + hungary + dire + tab | 209 | 0.0245886 |
20 | cheddar + mood + pickle + foodwaste + unitedkingdom + posh + baguette + pret + free + moody | 142 | 0.0167061 |
401 | cheers + birthday + happy + wood + mornin + tavern + bud + pour + lee + cuddles | 93 | 0.0109413 |
91 | cheers + capes + losange + wear + hero’s + foodwaste + heroes + baked + unitedkingdom + stone | 267 | 0.0314122 |
379 | cheers + geoff + fella + dude + birthday + accabusters + darbo + subscribeormissout + sxy + gurn + shinj | 73 | 0.0085884 |
794 | chelsea + 0 + 1 + lcfc + liverpool + performance + lfc + season + 2 + avfc | 77 | 0.0090590 |
893 | chelshit + pum + classic + dickhead + sack + continue + 3wordweather + 43yr + celled + davounii + smoocher + thebiglearnersrally | 79 | 0.0092942 |
1066 | chicken + garlic + salad + cheese + fried + rice + spinach + potatoes + potato + salmon | 523 | 0.0615303 |
1167 | chintz + dictation + 20min + qc + scrutiny + viewers + data + cyclists + petrol + 600lt + aldred + browsers + clev + comp.lang.forth + dennett + druds + enf + headgear + hospitalised + infra + landl + loadi + megadrive + mitigation + rackets + subcutaneous + terribad + usenet + valpro + vpa | 92 | 0.0108237 |
1601 | chippy + thesis + mh + a.m.excuse + adagioforstrings + barreiro + coffeehouses + d.j + hellspaw + hoodle + hoodledoodle + kingston’s + phoene + puffy’s + redgrouse + sips2018 + twen + wheelchairing + wolfies | 50 | 0.0058824 |
1213 | chitty + gimps + streets + bestdad + exemplified + knowtherules + knowyourjob + monout + ninez + nonceing + snouts + struee + sueage | 98 | 0.0115296 |
993 | chitty + mh + mis + junction + les + 180cals + adapts + contin’d + dilute + doomsdayclock + enhanc + fom19 + form.a + fragmenting + img2 + joo + lectu + lucis + mba’s + menstruation + monoxid + nehitv + parliam + plantbasedmag + rejoined + valentinoremz + viewi + walvaus + weshallnotsurrender + xamarin | 78 | 0.0091766 |
1127 | choccy + allstarsbasketball + beefier + chilleh + dysonfan + pook + warband + wwelita + yummeh + supply | 76 | 0.0089413 |
1285 | choking + uou + jambalaya + annoyed + kickstarting + ugh + irritable + shakers + iccworldcup2019 + squealing + wager | 51 | 0.0060001 |
0 | choose + lord + question + visit + person | 3777 | 0.4443592 |
422 | christmas + halloween + autotraderxmas + xmas + festive + easter + tree + christmassy + jumper + halloween2019 + singchristmas | 204 | 0.0240003 |
746 | christmas + sad + rip + news + peace + hear + family + prayers + passing + rest | 484 | 0.0569420 |
427 | christmas + xmas + halloween + till + valentines + decorations + cough + sleeps + eve + songs | 96 | 0.0112943 |
428 | christmas + xmas + tree + eve + carphonequizmas + carol + gift + halloween + decorations + merry | 212 | 0.0249415 |
1150 | christmassed + exasperating + summation + shitted + tutti + darken + concise + gover + journo + creases | 61 | 0.0071766 |
1629 | chuck + jjs + sera + 35yrs + poncho + thematically + woodchuck + instruction + yo + words | 224 | 0.0263533 |
1634 | chung + inclined + bobwen + bongi + bossvleader + clyne’s + derken + desensitising + earnestness + ecw + gofundmes + stigmatisin + timeh + worryi | 86 | 0.0101178 |
94 | chunni + newdupattas + dupatta + foodwaste + pastries + unitedkingdom + crayfish + floraldupatta + mix + online | 67 | 0.0078825 |
1435 | church + stadium + lcfc + boiler + localised + power + baptist + king + hall + 3points | 146 | 0.0171767 |
1443 | churlish + engalnd + fiveasidereflections + overlaps + wowowowowowo + mtbing + nutmegs + unliked + bee + cheerfully + scattered | 71 | 0.0083531 |
920 | citg + kuvunyelwe + sheals + prayers + notifs + recipient + transsexual + feedbacks + freespeech + lantern + moaner | 63 | 0.0074119 |
349 | classy + bigstarsbiggerstar + doddie + mooncups + rhyce + supafly + invaders + mnd + bwfc + jpn | 61 | 0.0071766 |
1697 | claus + personally + churchianity + keels + opinion + danish + kinky + christianity + rivalry + stupid | 110 | 0.0129414 |
1650 | click + view + morrison’s + charade + bus + heels + surgery + ohuaye + sigmundfreud + vet’s + worricker | 386 | 0.0454124 |
1370 | cmeing + efflort + retype + smellos + threre + terabytes + garms + pedestrianisation + uninvited + doping | 102 | 0.0120002 |
1226 | cob + nom + artselfie + googlearts + osiers + bridge + adem__yc + britsout + chagosislands + ciggie + favedj + goholidayswithdiviyesh + jago + jeremykyleadverts + jwmefford + mexicanfood + microwaves + minicruiser + nowlistening + praccy + replanted + vegasbitches | 59 | 0.0069413 |
738 | code + percent + 2book + 10 + curating + sale + cuda + limite + store + 50 | 55 | 0.0064707 |
662 | cold + snow + goodnight + hot + coldest + temperature + eyes + sun + burning + jon | 134 | 0.0157649 |
421 | collected + prize + cash + summertreats + extra + win + chance + xmastreats + proceeds + back2schooltreats | 65 | 0.0076472 |
1617 | combating + frikkin + storms + institution + click + albei + bry’s + colourfield + friends.lots + jugg + mamer + newsagent + ogacho + philippine + probed + rejigging + velition + wankneighbour + workmate’s | 62 | 0.0072942 |
1173 | comeaux + cuckwhoo + have’offended + ibelieveyou + skagness + zonndi + arturo + blueplanet2 + edmondson + fugde + zora | 52 | 0.0061177 |
747 | commented + rg18 + thankss + cunts + bro + scumbag + yeah + heart + 21.48 + ancestral + chatrier’s + fuckk + hailtothekingbaby + lookfabinwhite + manspreader + moocs + petti + prerecording + ripharley + ripharleyrace + scottland + shxtting + teejayx + thickems + tunnelbhands + yaard | 390 | 0.0458830 |
247 | competition + brilliant + chance + literally + ass + guys + allovasoden + ashdknsbwj + flatlined + guysksksks + lemek + pussoir + slicks + thingspeoplesaythatannoyme | 142 | 0.0167061 |
103 | competition + brilliant + macro + compressed + lens + flower + wind + gif + photos + eighteen | 59 | 0.0069413 |
14 | competition + dupattas + blouses + skirts + _________________________ + bang + pret + foodwaste + unitedkingdom + mix | 114 | 0.0134120 |
11 | competition + fab + cool + win | 54 | 0.0063530 |
130 | competition + fab + guys + gregs + xx + milo + teamwork + xxx + brilliant + comp | 77 | 0.0090590 |
384 | competition + wow + screenwriter + yoy + adapt + animation + accom + follower + urge + respond | 75 | 0.0088237 |
412 | compotime + cryptography + lineofduty5 + mclarenadvent + 12dayswild + kerching + sdlive + hounds + scarlets + abcmurders + pancakeday | 86 | 0.0101178 |
1508 | compressedair + motorservice + powersystemsaircompressors + welford + epl + views + installed + 2secs + backpiece + beatyesterday + bookreviewer + burgessfest + ericworre + firestone + girlsjustwanttohavefun + goagain + halestorm + ianother + inaya + kygo + millibar + missalous + pivac’s + prestigeous + raul’s + saddling + senio + spacegirl + spithappens + spsevents + subj + thecouplenextdoor + tinyadventures + tonkas + trocaz + turnus + twinsontour + vicha + youcanbewhateveryouwanttobe | 89 | 0.0104707 |
1702 | conference + contentasaservice + goalsexpress + kenticocloud + students + hockey + cms + developer + aspiring + halls | 98 | 0.0115296 |
1622 | conference + extension + whitney + houston + launch + students + discuss + charnwood + dual + aiming + mixing | 111 | 0.0130590 |
872 | confortable + logos + universal + 1954 + 2ltr + analysise + anusface + banchees + bestsellers + brummies + burr + cindere + denbies + devinya + doctored + gahh + hardcore.the + neworleans + soiuxsie + sphincter + stanhope | 54 | 0.0063530 |
649 | congrats + congratulations + carrie + guy’s + matey + 2736nm + 57nm + disorganisation + flyboy + hearteu + hyland + keyo + nis + seswimmimg + sneeky + trudi | 150 | 0.0176473 |
524 | congratulations + becareful + boysh + husqvarna + justinsherwood + leefrost + luckykhera + tez + coys + toptipping + trog | 81 | 0.0095295 |
512 | congratulations + congrats + buzz + rob + birthday + deserved + happy + erector + kellyrae + mexicocity | 66 | 0.0077648 |
350 | congratulations + congrats + clap + rl + quality + yey + goal + team + luck + effort | 373 | 0.0438830 |
690 | congratulations + congrats + malawithewarmheartofafrica + bless + morning + highflyingbirds + love + aww + aw + wowowow | 466 | 0.0548243 |
628 | congratulations + congrats + spudulike + deserved + 3sh + ahlamdulilah + coupple + engineer’s + escapologists + iks + shailesh + soubds | 90 | 0.0105884 |
510 | congratulations + luck + forward + wait + hope + brilliant + amazing + xx + congrats + haha | 4383 | 0.5156543 |
566 | congratulations + safe + congrats + journey + trip + m’lady + flight + home + cleanoenergy + dermott + oky + welcometotheworld | 126 | 0.0148237 |
562 | congratulations + sarah + maroitoje + opa + petts + xx + nlcc + played + uve + willo | 69 | 0.0081178 |
391 | congratulations + thumbs + rt + congrats + fabulous + mornin + sunday + happy + absolutely + win | 131 | 0.0154120 |
983 | congratulations + xxx + proud + congrats + xx + digitalchallenge + rhinoceroses + chuffed + beautif + celia + coley + lils + sportforall | 80 | 0.0094119 |
1095 | connect + santander + ha + sung + objects + blame + jeez + 21stcenturyhostess + actuallu + brixham + carenvy + dcu + equalitynow + hetal + hitman2 + lethelenfly + manenoz + missrik + notmyselftonight + oik + shillings + snowdaytomorrowatthisrate + socceraid2018 + stpiran + tdk + topically + visualiser + zombified + zorb | 205 | 0.0241180 |
497 | conniexnewlook + autie + copaselfieking + goodo + catalog + etches + photobomb + chirpy + pinny + cozzie | 82 | 0.0096472 |
1699 | consultant + chemo + garba + communication + actionlearning + amwritingromance + autismparent + chachacha + emtraining + fdhm + freelancers + gms + gmsworld + incentivising + lhswellbeing + llrcares + nylacas + rcemcurriculum2020 + rodeos + sss | 63 | 0.0074119 |
16 | consulte + recycles + curious + insufficient + refilled + transferwindow + meaning + shocked + begins + search | 1226 | 0.1442373 |
152 | contractors + bootsale + leicester’s + painting + charity + letter + charge + growi + app + growin | 86 | 0.0101178 |
878 | cooked + goddess + chrome + declined + aliens + breakfast + narrative + sell + alibis + asalamualaikum + domme + horizont + kubernetes + malp + recogniti + riseyourwallet + sayimg + shitstor + surpost + telli + truecaller + umthakathi + waktu | 81 | 0.0095295 |
1632 | cookie + details + tickets + evening + duffys + saturday + thursday + friday + camp + event | 780 | 0.0917660 |
928 | cool + beautiful + harrison + afsgw18 + alanchambers + engvirl + ippo + massive.thanks + yes.yes + brudda’s + embodiment + hajime | 69 | 0.0081178 |
99 | cool + jacks + quran + foodwaste + verse + focaccia + toasting + unitedkingdom + nominated + tl | 84 | 0.0098825 |
1250 | copped + taught + beyonce’s + molehills + origen + riarchy + talkings + thefirstlineofmyautobiography + turnstiles + tick | 79 | 0.0092942 |
501 | copuos + intern + earphones + 2inarow + accounta + adder + amazons + becomi + brookvale + burnings + citisenship + complexions + dicke + fall’s + holida + itali + notnum + pakistansig + prouk + recoll + repositor + seq + tria | 63 | 0.0074119 |
994 | coronary + dldk + fourpm + frit + klf + labrynthitis + lookig + nettleship + nonethe + 2ds + boswell + gappy + inverary + kis + loosies + slinky | 60 | 0.0070589 |
661 | correct + deep + wrong + uns + leeds + perfect + ado + astrothunder + decisiin + giggld + makeafilmmuchbigger + thith + thommo + whowho + yanstand | 156 | 0.0183532 |
69 | correct + emerson + electric + hiring + join + england + engineering + job + businessmgmt + team | 51 | 0.0060001 |
133 | correct + weekend + brill + beast + lovely + screaming + kellie + bruce + steve + bast | 54 | 0.0063530 |
1572 | corsa + grass + formula + slime + unicorn + bird + adspace + andreessen + bookkeeping + carvah + daugh + dmugrad19 + ewelme + fartfag + financiall + from.a + futurism + gelatodog + lovell + njwk13 + okada + rainmaker + see.a + shilly + spoonie + spoonielife + whiteboards | 79 | 0.0092942 |
1507 | cortisol + pulses + chronically + acute + resulted + electronic + affects + trauma + journeys + measure | 136 | 0.0160002 |
671 | costco + __________ + europe + retail + weddingparty + venueleicester + voluptuous + partytime + ____________ + _________ | 82 | 0.0096472 |
948 | couldnt + champion + johnson + boris + control + spot + 5so + doidge + paprika’s + sigala + spiceupmusic + theemmys | 58 | 0.0068236 |
1460 | counsellingcourses + rothley + brook + flood + leicestereducation + evng + alert + investigate + counsell + leicestershire | 98 | 0.0115296 |
276 | count + bro + xx + padawan + कोटी + love + broski + kilda + theworldgonemad + usharp + आपको | 156 | 0.0183532 |
279 | count + sir + ma’am + wow + awesome + nice + hamper + xx + comp + fantastic | 92 | 0.0108237 |
1124 | country + empire + obama + matters + trump + people + racist + cyclists + hatred + attack | 93 | 0.0109413 |
972 | country + religion + music + listening + islam + song + tommyrobinson + traitors + british + sighted | 239 | 0.0281180 |
853 | courier + le2 + bev’s + bitdegree + datacentre + destructions + euparliament + gsme + kamall + kt2 + mccains + movingon + ng21 + pshychiatry + steemit + stromness + syed + syedkamall + ultrafast + visu + xlwb + you’scunext + zuckerberghearing | 50 | 0.0058824 |
125 | crafts + decorate + greeting + cardmaking + cards + embellishments + greetingcards + cute + miniature + bears | 186 | 0.0218827 |
1307 | crassness + normies + pratchett + pratchettesque + reusing + royston + rza + thoux + winmimg + zeitgeisty | 77 | 0.0090590 |
1266 | craving + july + sunday + chicken + friday + january + saturday + june + day + monday | 198 | 0.0232944 |
1552 | create + banknotes + originall + pdr + reclaimthehappiness + students + defaced + rain + vendor + tubeless | 150 | 0.0176473 |
1470 | cricket + stadium + boiler + radish + king + power + combi + learner + clan + swing | 89 | 0.0104707 |
1056 | crime + raped + offenders + 6yearswithoutcory + egalitarian + gomsh + kalesalad + luddite + mishandled + queda + rainwater + reservoirs + souther + terrorisim + unreservable | 93 | 0.0109413 |
323 | cringe + ustaad + lord + congratulations + bowing + shree + ayoze + jai + krishna + sacred | 58 | 0.0068236 |
453 | crossed + fingers + horny + excuse + martial + feeling + amazing + giovannispanno + myvouchercodes + abetting + gigg + wakey | 94 | 0.0110590 |
1412 | cry + retweeted + edgelords + embittered + filmore + offbrand + sticking + 5ft7 + lecherous + tampax | 74 | 0.0087060 |
199 | crying + added + unlocked + unlock + fridayforty + tap + rush + tickets + entered + performances | 87 | 0.0102354 |
1288 | crying + dying + attacked + heartbroken + feel + gonna + dead + atm + tears + jug | 340 | 0.0400006 |
1093 | cunts + nigga + thearchers + worldmapsongs + thechase + wankers + bastards + mare + braindead + fuck | 323 | 0.0380005 |
1083 | cure + damola + disagree + doctor’s + hypnotic + fob + snowman + radical + partying + dunk | 54 | 0.0063530 |
51 | current + mood + sumeer + di + pa + attempt + cool | 92 | 0.0108237 |
1292 | custom + free + fitting + vegan + store + paleale + tickets + bikes + sale + range | 176 | 0.0207062 |
1475 | customer + service + sizes + refund + mins + parcel + items + stolen + postage + received | 139 | 0.0163532 |
1122 | customs + union + boirders + democratic + brexit + remoaners + vote + voted + priti + betrayal | 95 | 0.0111766 |
1141 | cute + austriangp + bestinworld + cringemoment + hallucinations + huggable + ifuknowuknow + lowo + smahsing + teamajd + troilusandcressidapuns + weeklyfix | 73 | 0.0085884 |
779 | cute + beautiful + smile + sexy + love + m’a + baby + cutie + boy + god | 2269 | 0.2669449 |
1140 | cute + nice + meow + sounds + gorgeous + awesome + heh + amazing + retweet + wow | 704 | 0.0828247 |
1179 | cutest + faves + rupi + kaur + bangs + lowkey + kendall + emotional + joke + father | 198 | 0.0232944 |
902 | cutie + afresh + fuck + booties + cancel + hope + 100 + beginnings + mm + sauce | 195 | 0.0229415 |
491 | cutie + count + prize + xx + luck + wow + oooh + yummy + thankyou + xxx | 308 | 0.0362358 |
1583 | cutka + airforce + lier + committee + eu + modi + labour + rahul + taxes + nhs | 50 | 0.0058824 |
985 | dal + kev + luck + snow + chips + enjoy + rain + awesome + onepiece + brilliant | 391 | 0.0460006 |
1193 | damn + desperately + 30minute + agentbatman + athlete’s + bhutto + birkenhead + carnigie + childishgambino + cryfield + donaldglover + dye’s + fancywoman + getthecrownedtouch + infusing + jumperday + kieth + kingharry + kneecapping + macnee + mhyki + muderer + ooopsie + orangino + pissboiling + pliers + reelected + seriousrocking + teammeteor + teamthanos + theough + thisisamerica | 186 | 0.0218827 |
1188 | damned + allarene + arisesirstokes + cunkingclass + dirtydeepingdefenders + fabrepas + mispresed + murmured + proteinshakes + cunkonbritian + meaulnes + perri + strayed + zelfah | 94 | 0.0110590 |
1162 | dance + erm + blackpanther + haha + agree + body + archdeacons + bettuh + boxoffice + bunions + busyboy + efter + f2ri + homesunderthehammer + knightingale + kthnx + marvelstudios + minnits + onwiththeshow + photie + roygrace + sabbatical + shamba + stubbly + superleeds + that1 + wakandaforver + xyloband + yeritielmans | 220 | 0.0258827 |
361 | dancing + creampuffs + signing + epic + april2018 + clexacon2018 + fetchyourlife + omgomgomgomgomg + ukcreampuff + wallis | 82 | 0.0096472 |
1524 | darcy + launch + eco + announce + syston + 1of + amresearching + apaka469 + armistice2018 + backbypopulardemand + bbcleiceste + blemish + communitychampions + dumbfounded + eflplayofinal + era_thekid + evin + faulkes + fullcar + gianluca + herschel’s + histfic + huzzah + learnining + leicesteropen30 + leicsatmipim + mokulito + mokulitoprint + neoelegance + playwright + posca + posne + psec + qualifiying + ravensbridge + remebranceday + rhiann + sikhsoldiers + skillbuild2018 + squonk + talktopresident + thecarmillamovie + thedebutradar + triumvirate + vaperazzi + vialli + watsondayout + workwinter2018 | 72 | 0.0084707 |
1234 | dare + abuse + carefull + uruguayan + wcth + winningwednesdayinpink + wordstoliveby + ccuk + gerbils + compare | 93 | 0.0109413 |
1327 | dare + terminal + toilet + nude + die + clout + feeding + 8months + ahagshdhdkfaka + coitus + dontspoiltheendgame + ignor + interruptus + kingpins + kymmarsh + lassy + ndkajxjajxj + oncall + relived + tinest | 256 | 0.0301181 |
1719 | darragh + britishbasketball + expedition + o’connor + proud + anonymousnightclubleicester + aykcbourn + britney’s + bucssport + celebratesafely + getonthefloorlive + judgemeadowlove + matthewbourne13 + meetingprofs + meetingsshow + mikhail’s + mucha + robbie’s + sinceday + suerte + teesside + tenyearsofrrf + weeked + werehavingaball | 56 | 0.0065883 |
36 | darshan + today’s + yesterday’s + inlaws + pakistan’s + generosity + camrgb + 3eh’s + bhud + dipti + freestone + humbostem + imparts + notdrunk + partha + pujari + putfootballinafilm + say’zindagi + suryanamskar + swastikas + unibond + younge | 381 | 0.0448242 |
875 | dat + tonsills + birth + dis + asthma + fave + birdingloveit + feartwd + realsupport + xxc | 70 | 0.0082354 |
1018 | data + gcseresultsday2019 + carbon + 11.59pm + bizi + desertislanddiscs + devopsagainsthumanity + dynamit + hsj + maggie’s + onyourfeet + opposable + ourhouse + typesetting + vfr | 53 | 0.0062354 |
1242 | ddlj + nusret + alternate + advert + starring + nigeria + dxeu + hugey + huj + i.think + karod + momslife + mumslife + nigerianews + prid + sabsidy + saveing + stephencollins + walows + womensday2019 + ypxuqp | 63 | 0.0074119 |
736 | deadass + exelent + cerelac + class + homygod + lolzx + penoo + craving + wingthh + yerp | 52 | 0.0061177 |
26 | dear + painting + contact + breakfast + downstairs + priorities + kiss + charity + update + public | 58 | 0.0068236 |
321 | dearest + morning + jai + bhai + har + bless + sister + shree + mahadev + family | 404 | 0.0475301 |
1728 | débardeurs + pédés + ndigbo + jews + people + arresting + police + griezmann + countries + translation | 135 | 0.0158826 |
1568 | declare + abattoir + failwell + financin + groundwater + koalas + losi + moneyfornothing + penkhull + playgrounds + recogni + reddits + reshel + usel + wastemoney | 55 | 0.0064707 |
619 | dedications + support + proud + amazing + kitamestimenang + team + congratulations + therealfullmonty + students + huge | 246 | 0.0289416 |
1438 | deep + defects + slog + lying + honest + 350r + chicarito + customisation + deffinatly + fooballin + ios13 + jords + mentiond + noteable + precede + relegious + remding + stably + virginal | 180 | 0.0211768 |
1414 | deep + drip + bedbugs + btown + golddigger + mydifference + sealysecretsanta + equine + fiddling + humor | 56 | 0.0065883 |
1473 | deficienc + duplicity + heeded + rubbed + moral + 50ft + awkwa + bloodlust + chille + colonising + dagmar + handli + newbi + oka + platinums + sako’s + shamy + solitaire + sunildutt + trigger’s + voyd | 61 | 0.0071766 |
1519 | deficiency + gestational + diabetes + dg + bookcase + adhd + blackbird + identified + treatment + psychological | 105 | 0.0123531 |
1343 | degree + uni + swim + bus + 18p + 2020commission + auburn + cashshow + darkskinned + econometrics + radio1escaperoom + tb2k17 | 74 | 0.0087060 |
185 | del + britain’s + whoop + info + luck + mornin + theory + pic + buddy + cheers | 427 | 0.0502360 |
1013 | delboy + wiggle + yay + leopard + exciting + whoop + ackn + actfast + bayahlupha + bovary + camlephat + corrine’s + edhuddle + fastscan + isee + jeanna + karenina + kenyon + lavo + mmmp4 + oldcorn + rebecka + sath + textbooks + thisgirlneedsnewclothes | 109 | 0.0128237 |
923 | delete + lemme + tommyrobinson + learn + everyday + lame + plank + dry + header + draupadi + gaggle + gofgi + grc + hemorrhoid + impersonat + moshpitting + origintes + ormrod + perhapps + publicty + sanbizzle3333333 + skieoner + smugmarcel + wew | 232 | 0.0272945 |
119 | dels + bud + donee + kidslovenature + contes + job + yee + duas + deal + fella | 139 | 0.0163532 |
40 | demestic + property’s + contractors + commercial + painting + cucumber + tuna + mayo + emerson + links | 66 | 0.0077648 |
1557 | departing + camp + february + tickets + counting + kickoff + 2018 + ko + book + leicestercity | 110 | 0.0129414 |
804 | depends + yep + plan + doubt + careful + choose + sounds + bye + lord + suppose | 192 | 0.0225886 |
1320 | depressing + tired + beig + gold1 + setener + szn’s + sober + 100kg + doomsday + oversleeping | 69 | 0.0081178 |
1184 | der + 649 + andrewmarrshow + ayleks + biggums + chons + cohent + excised + frav + jarvid + mccoys + neagan + squaishey + stampy + womams | 75 | 0.0088237 |
494 | derrick + sharon + gabe + javeed + garin + judith + beutiful + moxey + revoir + tino | 60 | 0.0070589 |
1256 | desperate + shaku + honest + sketchbooky + triby + 2face + beens + nitro + innit + aii | 88 | 0.0103531 |
1630 | details + academy2 + tickets + rakhee’s + 5pm + tomorrow + eighth + venue + krishna + portfolio | 77 | 0.0090590 |
1546 | details + afda + ales + apply + welford + gallery + rfc + art + stadium + join | 347 | 0.0408241 |
1548 | details + cookie + kitchen + russell + matchchoice + neps + sattars + leavers + nep + progress | 149 | 0.0175297 |
1334 | determinate + creampuff + btch + duvetday + girlfrend + gooing + stayinyourlane + subtotals + teun + assuming | 87 | 0.0102354 |
1050 | devastated + alcudia + asyouwere + backsies + cahpo + garnering + inbreakable + lfucking + naspers + noshame + revan + smugmodeon + snogger | 81 | 0.0095295 |
1070 | devil + tew + ovie + 80sbaby + andalou + angin + backingtheblues + ddb + defsoul + dryness + energyzozo + fraidsters + gnt + iamdbb + jaebom + moudly + peskycyclists + sexpositive + shangalang + wipped | 138 | 0.0162355 |
848 | devorced + insensitivo + pahaahhahaha + auidence + florists + menopausalwomen + impresses + spurs + orwell + tint | 61 | 0.0071766 |
440 | dey + eurovision + wey + applicable + abeg + anthem + dem + don + oo + waka | 209 | 0.0245886 |
933 | didlo + yoghurt + cheers + tasted + donotsuffer + feelers + gesture.well + halloweenkills + paypacket + pengo + smockington | 89 | 0.0104707 |
1500 | diet + excerpt + gendered + timelapse + broken + roundabout + academia + aimed + differences + freelance | 210 | 0.0247062 |
921 | digestives + rewatched + yum + bagainsciously + bbvalentines + dubh + foundobjectpuppetry + laidley + longneededbreak + panc + saúde + toolstuesday + venom2 + vinho + zeo | 107 | 0.0125884 |
1358 | disagree + cruyffcourtstmatthews + ifyoubuildittheywillcome + tmr + tse + blackcats + disagreed + fif + allah + chillies + swerved | 58 | 0.0068236 |
285 | disgrace + amendments + lords + amazing + disgraceful + cricketaustralia + houseoflords + medicalscience + tarnation + spongers | 73 | 0.0085884 |
792 | disgusting + animals + slapping + girls + sick + act + cah + fuck + 94.26 + alanis + btsxlotte + crac + diferent + gorimapa + kecah + maddie’s + mindfullness + morissette’s + narsstty + nimeosha + survivalist + unislamic + vyombo + wispies | 110 | 0.0129414 |
1560 | disrupts + macan + partri + health + people + conversation + excerpts + academics + 20m + thefts | 261 | 0.0307063 |
844 | distrust + fenty + priv + 700k + behooves + bratty + breitbart + contradictive + execs + gradients + grg + imprinted + mcdreamy + proportionality + stoatandbiscuit + thotfapman + work.hate | 59 | 0.0069413 |
769 | disturbia + hhp + sheroes + whitlows + youstillturnmeon + bepicolombo + thunderbolt + yorke + hoods + yvonne | 52 | 0.0061177 |
1241 | diviyesh + posted + oadbyceramics + gelato + photo + garratt + instalive + village + votelabour + check | 235 | 0.0276474 |
1080 | djene + jaw + pill + tablets + bipolar + c.s + clic + darcie’s + fairhill + frankfurter + hevent + highstreet + throa | 55 | 0.0064707 |
675 | dm + inbox + pls + follow + xxx + dms + 0n + ansser + bahamas’s + bbes + dollas + gtg + kps + mesel + retweete + rosh + stewming | 106 | 0.0124708 |
559 | dm + love + prize + cure + bykergrove + dsi + frase + hunkyman + sophs + theturnawaygirls + yearoftheradley | 96 | 0.0112943 |
674 | dm + send + bedding + xx + deets + dealers + details + curtest + nudes + choones + drivin + madi + walaalo | 57 | 0.0067060 |
737 | dm + send + xx + message + txtin + rose + tree + factory + msg + details | 433 | 0.0509419 |
550 | dm + ticket + question + hmu + selling + tickets + wireless + spare + dm’s + class1 + qwhat + readingtickets | 96 | 0.0112943 |
220 | dm’d + posted + kfc + photo + pm’d + coast + restaurant + restaurants + onetakechallenge + peperz + ripburger + shallowgrave + zx’s | 86 | 0.0101178 |
460 | dm’s + waiting + check + dude + patiently + ya + stretty + bud + surprise + spare | 123 | 0.0144708 |
716 | dms + dm + check + gardening + 8yearsofonedirection + link + send + 8yearsof1d + 8yearsonedirection + bedding | 323 | 0.0380005 |
1540 | dmupolitics + innovation + exploring + teaching + extent + paper + kidney + geographers + health + inclusive | 253 | 0.0297651 |
1252 | dmxenzwzeqzmssuzwszzwwzwsjz + howbowda + snjxwmndnskxkmd + henchmen + beanies + dese + aot + conceived + sucha + properly + ugly | 50 | 0.0058824 |
1418 | dog + badger + brandenburgconcertos + fiya + hudgens + marcalmond + miow + regestring + taxreturns + thevictim + wolvesfamily | 143 | 0.0168238 |
1294 | dog + cat + boobs + leapt + muharram + npc + repainting + zakiah + 午餐 + anaesthetist + fiyah + kylies + lacazete + norvina + snd | 89 | 0.0104707 |
943 | doggy + focka + setlement + suspence + sxc + sledges + yard + tiddies + sprain + altered + blouses + ghosting | 55 | 0.0064707 |
1321 | dogs + jenny + elevate + feel + feeling + crisis + cry + wiv + cats + life | 180 | 0.0211768 |
1367 | dogs + optimist + malfoy + motives + comeongunners + lovecollies + opalesa + reachest + rogerkline + satisfyingly | 149 | 0.0175297 |
724 | dollar + climate + strike + arses + socialism + animals + green + reduction + bolton + viral | 76 | 0.0089413 |
919 | donald + mornin + song + december + game + trump + ft + boom + michael + mavado | 241 | 0.0283533 |
1718 | donate + fundraising + raising + charity + event + congratulations + justgiving + team + graduate + student | 819 | 0.0963543 |
1713 | donating + bein + fits + enterprise + support + airquality + amcis + amcisconftwo018 + ardabmutiyaran + awarenes + barrell + charitybikebuild + conférence + diseas + donatebloodsavelife + greeninfrastructure + happyworlddayforchildren + japaneseanime + jenergyfitnessleicester + lightingdesignersinsilhouette + lleicester + loveladiesbusinessgroup + makesporteveryonesgame + mclindon + mercedes_amg + neurons + oliversean’s + oscarwildequotes + pm_valeting + powerljfting + raceforlifr + sssnakes + teamlancaster + teamyork + trainee’s + tts_earlyyears + twls + ukyouth | 61 | 0.0071766 |
1689 | donation + contributed + cbd + construction + forum + absolutelyfantastic + bollywoodagents2018 + davegorman + deliving + doktorhazecircusofhorrors + evrey + glenf + hpv + ipcc + irie + jurassickingdom + lija + mainstre + makku + nasendco + nauts + parking’s + platinumed + samesamedifferent + sefton + skillstests + stemcell + tran4m + transitiongameisstrong + upcomin + uuklockout + wilderfuture | 73 | 0.0085884 |
1021 | dontletindiaburn + herewwe + cloe + goddammit + holts + incitement + searingly + buckfast + ddd + faceless | 61 | 0.0071766 |
1267 | doubling + stunts + stuntman + shotbyv1 + prince + handmade + 1to1 + ambatman + bhpco + breakkie + crazycat + discoloured + eatameatycelebrity + fathersday2018 + getmentalking + hardestroadhome + heartbreakingstories + instgramfollowers + leavvie + manlikekazzyahknow + ozy + plasticstraws + ready4 + rofivelli + sgs + thebreastsongsever + theinflammedmind + unikitty + unintuitive + xmendarkphoenix + yourfavdancingrapper | 94 | 0.0110590 |
1205 | douche + mumble + conspired + crankie + daenarys + neidhart + underhandedly + kyle + gods + jimmy | 52 | 0.0061177 |
1366 | drift + puppies + halime + iroh + dogs + dont + allout + ama2000 + foreveraparent + intellectually + stimulated | 69 | 0.0081178 |
353 | drinking + ale + ipa + stout + pale + porter + photo + abstrakt + jackpin + refreshing | 257 | 0.0302357 |
351 | drinking + boar + wetherspoon + ale + beer + stout + plantagenet + porter + camra + humberstone | 334 | 0.0392947 |
367 | drinking + scrumtogether + joinjeff + pale + rbs + cash + xmastreats + prize + 2556161 + winners | 138 | 0.0162355 |
352 | drinking + stout + bitter + sour + pale + porter + photo + ipa + beer + fruity | 50 | 0.0058824 |
1118 | drog + flyeaglesfly + lookslikeacarthorsebodyofashirehorse + mwad + skink + supplemental + thatwasalreadyinyoursearchhistoryhonest + theribmam + thwadi + wondabar | 118 | 0.0138825 |
859 | drug + clout + nyt + wear + brie + coloured + bentner + dbi + inhibitors + loyl + trainer’s | 64 | 0.0075295 |
1195 | drums + coover + eastmidlandschamber + expatiate + gawan + gunna’s + laachi + laung + lumos + motivations + nurbanu + reclining + ripjason + stevejobs + tweetlikethe1600s | 157 | 0.0184708 |
1605 | dsusummerball + brides + arrival + awards + award + winner + britishbasketball + finalists + riders + 2018 | 111 | 0.0130590 |
1614 | dsusummerball + noms + team + britishbasketball + award + forward + blend + siren + luck + event | 282 | 0.0331769 |
922 | duff + pancakes + cheers + cheese + coker + derrygirls + gangrel + its_happening.gif + macandcheese + macdonald’s + oneshow + ørsted + spall + tetleys + wankered | 95 | 0.0111766 |
945 | durnig + 1.4 + allnighter + extricate + quails + tommorrow + coke + tomorrow + policy + noose | 51 | 0.0060001 |
292 | duterte + philippines + rodrigo + stopthekillings + 7.30pm + endimpunity + insanity + leisure + stopkillingfarmers + braunstone | 165 | 0.0194120 |
5 | earlycrew + competition + mornin + agreed + yawn + foodwaste + preach + unitedkingdom + sandwich + cringe | 165 | 0.0194120 |
148 | earlycrew + mornin + friday + locals + round + hump + chilly + happyfridayeve + mardyriyad + nive + walkabouts | 110 | 0.0129414 |
305 | earlycrew + mornin + prize + fab + beatsx + voxixphones + xs + earphones + competition + wireless | 66 | 0.0077648 |
149 | earlycrew + mornin + round2 + halfway | 59 | 0.0069413 |
58 | earlycrew + shaniececarroll + mornin + gluten + foodwaste + unitedkingdom + avo + bread + pret + free | 58 | 0.0068236 |
1580 | earners + ios + corporates + sd1 + tax + narborough + price + benefit + scandal + disclosure | 168 | 0.0197650 |
1239 | earth + alexis + cigarettes + hearth + humbler + lrts + odetojoy + whippet + nah + marriage | 104 | 0.0122355 |
733 | eat + askval + availble + cassavas + redkin + frieda + hbu + yams + starburst + plz | 71 | 0.0083531 |
478 | eatlikeapro + heartbreaking + eyes + heart + alltogethernowstl + setmefree + love + song + 3 + lav | 184 | 0.0216474 |
1425 | echo + understood + read + heard + honest + sis + inappropriate + idea + blame + louder | 272 | 0.0320005 |
138 | eeek + mornin + enormous + prize + stadium + leicestershire + king + power + city + luck | 153 | 0.0180003 |
1152 | eijit + marce + parabellum + pleasureless + rightnooww + carboot + havisham + llamas + moomin + ability | 103 | 0.0121178 |
1296 | eis + homehub + journalism’s + payment + tax + income + customer + 26mb + aiui + allowances + craigslist + diversit + jacquelyn + kimber + lyft + miiverse + regulating + tfl’s + usipolipa + webdev | 70 | 0.0082354 |
1730 | elected + labour + government + political + eu + brexit + people + party + tory + racist | 316 | 0.0371770 |
868 | election + brexit + voters + referendum + vote + voted + pigs + eu + dickdicks + easyer + mayoutnow + uinon + whatsthepoint | 58 | 0.0068236 |
1488 | emecheta + united + kingdom + belvoir + asianlifefestival + misty + leicester’s + jubilee + executive + leisure | 57 | 0.0067060 |
30 | endomondo + endorphins + 1h + km + hundredths + 2h + finished + running + miles + twenty | 92 | 0.0108237 |
29 | endomondo + endorphins + cycling + hundredths + miles + finished + 1h + null + 34m + fifty | 77 | 0.0090590 |
28 | endomondo + endorphins + hundredths + miles + walking + null + sixty + running + seventy + pret | 164 | 0.0192944 |
31 | endomondo + endorphins + hundredths + null + miles + finished + running + 1h + km + 46m | 114 | 0.0134120 |
62 | england + threelions + coming + home + itscominghome + wales + scotland + worldcup2018 + george’s + lads | 778 | 0.0915307 |
968 | english + spanish + forntite + galicia + galician + guys.he + lonliest + mainlander + methodological + ned’s + song.happy | 72 | 0.0084707 |
1019 | enjoy + yum + delish + chickenandmushroom + cnosummit + espana + holiyays + letterboxd + marais + nationaltoastday + pracatan + tasteofbella19 + youcanmakeit | 88 | 0.0103531 |
1421 | enjoyed + expect + people + blabbed + chutzpah + fantasised + mediacentr0 + niam + goosebumps + gender | 111 | 0.0130590 |
177 | enormous + merry + advent + luck + talk + christmas + dust + jolly + magic + guys | 118 | 0.0138825 |
1607 | entrichment + rmplc + leadership + primary + leader + community + afternoon + delighted + county + talented | 97 | 0.0114119 |
890 | eos + canon + sigma + mki + 5d + morningside + 50mm + mercure + 1.7 + 50iso + nine0 + rhul | 64 | 0.0075295 |
1029 | ep2 + wait + stoked + thexfiles + brexipocolypse + cfwm + cuthberts + experimentar + fuellerlife + greatplayers + guiz + helpfindhugo + icannotwait + inacative + personable + shezness + theband + thefuelstore + urlike + vou + whatapic + wize | 138 | 0.0162355 |
1216 | ernie + ladybird + powerhouse + passion + performance + cemetery + ming + fantastic + lovely + day | 149 | 0.0175297 |
1120 | esl’s + fished + horseboxdrivers + justanopinion + smartieplum + stanleykubrick + 40p + herod + crunchies + driverless + enroute + wus | 71 | 0.0083531 |
1734 | establishment + anti + behaviour + politics + coalition + currency + laws + tories + bj + masses | 98 | 0.0115296 |
1031 | ethnography + dagr + build + a’rushden + algorithm’s + asthmaplusme + avalable + badaction + benin + capstick + curlies + customizations + defaults + dhconf18 + earlydiagnosis + excavators + expo18nhs + ferroscanning + financed + funi + greenspace + halfin + herstory + iothub + kashmirstillundercurfew + killall + loggist’s + lovelyday + nicaraguan + o’gaunt + osbournes + philbeerband + puregold + shoplcfc + smsports + systemuiserver + thebiggestweekend + theron + wearepeople + wishihadasociallife + zaxis | 86 | 0.0101178 |
1351 | etsy + listing + whey + lgbt + invites + activism + thu + gentlest + found + education | 132 | 0.0155296 |
1007 | europeday + luxembourg + detail + mock + photoshoot + sing + 12mb + 18mb + antholo + blueprints + bryam + budgie’s + daysinthesun + godblessournhs + gujara + indesign + joviality + magicmail + mentalhealthday2018 + mpcastleford + needencouragement + nitefreak + quay + quillette + talbles + trundle + typeset + wmhday | 55 | 0.0064707 |
179 | evenin + yoh + idiya + bathoong + bravery + alwaya + blesins + fetlock + heifert + inorganic + lina + mentalite + nutshelling + thant + unmove | 148 | 0.0174120 |
647 | evening + fantastic + disappointment + congratulations + team + deserved + christmas + dm + hospitality + informative | 102 | 0.0120002 |
1612 | event + nurse’s + church + fantastic + afternoon + amazing + prashant + meeting + congratulations + inviting | 251 | 0.0295298 |
1669 | event + off’s + unsigned + sport + 2018 + sdg + relief + lsa + pm + exhibitions | 110 | 0.0129414 |
967 | evil + effigies + filipino + issa + accent + jennifer + catchy + asf + showman + live | 81 | 0.0095295 |
1420 | ewallet + saraha + explosions + shiny + dredd + drivings + itsstillgottimethough + larvitar + umpteen + unsymmetrical + vagan | 123 | 0.0144708 |
263 | excuse + betrayal + shocking + british + coloursphotography + scienceandfaith + 1901 + cocktails + entr + thescriptfamily | 154 | 0.0181179 |
1626 | exhibition + rcslt + event + apply + join + hall + art + ninth + local + assista | 264 | 0.0310593 |
1564 | exit + andangnya + archetypes + awinkado + brablec’s + cematu + dooring + evide + evokes + foundational + gaurentee + iaccidentlyatesome + ladsnightout + mapuche + suge | 54 | 0.0063530 |
514 | explain + question + fancy + proof + surely + tickets + uk + talking + mate + erm | 1524 | 0.1792966 |
12 | exposures + goosefair + longexposure + goose + gererals + nottingham + prize + robbins + eighteen + princes + spies | 179 | 0.0210591 |
476 | eyes + munbarca + rehoboth + nobodys + cheapskate + perked + 12hr + rafinha + rakitic + slopes | 52 | 0.0061177 |
479 | eyes + yannoe + eye + tae + 140s + converses + gastly + grammars + ispy + kloppout + leebaans + nannie + skeeters + spou + t’leeds + trendss + tske + unaffected + unseeing + vf + watchful | 168 | 0.0197650 |
1274 | ezone + glutenfree + vegan + coffee + free + store + highcross + gluten + iced + stocking | 51 | 0.0060001 |
112 | ezprint + uv + wall + vertical + world’s + printed + directly + 3d + bespoke + mural | 54 | 0.0063530 |
498 | f1 + groby + reminds + 36mcg + adanoids + brome + caffeined + ferven + grommets + lasker + microfibre + polygamist + revitalising + sandwichstation + sureshot + wolff | 57 | 0.0067060 |
55 | fab + goodz + xz + shading + steering + cx + melting + dancingonice + goodies + mugs | 133 | 0.0156473 |
178 | fab + xxx + rbird + nowruz + rkid + xzx + kool + crackin + evolving + obv | 81 | 0.0095295 |
1522 | fabricator + expanding + hiring + require + clients + experienced + metal + sheet + steel + bevcan | 66 | 0.0077648 |
1146 | fag + lover + ha + favs + nope + 2000m + 311th + 90cm + ackee + bababoi + bacerz + bawtry + brighton’s + callaloo + charmaz + coolasyouget + coporate + delicatemusicvideo + fawns + garmin520 + groundedtheory + hairiness + justjuice + lergy + mathsconf1 + nikesh + roadhouse + transformationthursday + will.tell | 143 | 0.0168238 |
389 | fair + fuck + ffs + true + valid + piss + bang + lie + spot + conditions | 165 | 0.0194120 |
1638 | fairs + founder + event + join + music + 10a + american_football + applica + beapartofsomething + ceildh + changinglocallives + falcor + fluxdance + gasoline + getagripepshow + getlyntothegraps + globalclimatestrike + idries + independentliving + initiateleicester’s + irishdance + itsback + joinus + manofthematch + maskoff + myeverything + newartists + newrelease + nsdf19 + nursingsociety + oadby’s + povertyactionweek + pritibodies + pumpkinsforpower + pumpkintwists + punjaban + saqqara + soulreasonshow + timhortons + visito + wex | 68 | 0.0080001 |
881 | fake + fuels + fossil + justsaying + greedier + infantilism + kust + nosuprise + nuf + peculiarly + redistribution + replapsed + sorry.i + that.he | 52 | 0.0061177 |
318 | fantastic + wonderful + superb + efcfamily + wondurfull + outstanding + illustration + brave + stunning + excellent | 72 | 0.0084707 |
1527 | fantastic.staffordleysyr3 + immaterial + bloggerstribe + wordpress + blogging + pss18 + puppets + roxy + blogs + wonderland | 71 | 0.0083531 |
1225 | fatshaming + severs + spurt + talksportdrive + toothlesstigers + wmyb + thesecretlifeoflandfill + billi + mn + kinks + recess | 62 | 0.0072942 |
1640 | fayre + trendytuesday + campus + wedding + melton + join + saturday + attend + announced + rising | 67 | 0.0078825 |
444 | fearless + lcfc + foxesneverquit + foreverfearless + befearless + foxes + foxesunleashed + fox + filbert + ricky | 275 | 0.0323534 |
1424 | fearofheights + filthytigermolester + imessages + nevercarryaballretriever + parlance + shepard + slauson + heelys + nympho + syphilis | 53 | 0.0062354 |
1339 | feel + head + weekends + pure + pain + hayfever + body + absoloutly + bsck + diadem + kuzzys + larch + lewwy + marinas + minky + mividalocal + okokk + ravenckaws + ugli + vrancic + well.have + worstnightmare | 170 | 0.0200003 |
818 | fever + eat + snm + stock + producing + hay + popcorn + drink + vegetarian + aftershaves + ag5 + bady + blondebombshell + br3 + crêped + dogo + errday + schlapp + sobersally + strawpedo + thatsmademyday | 149 | 0.0175297 |
577 | ff + followfriday + posted + photo + practiceing + practice + tonight + eighth + derby + atm | 873 | 0.1027073 |
431 | ffs + westlife + god + pls + keto + presale + netflix + shift + mornin + weeks | 384 | 0.0451771 |
57 | fie + positively + itunes + productive + lies + bandcamp + click + grow + light + album | 52 | 0.0061177 |
136 | figures + straight + dawg + chippa + beef + hunni + ova + responsibilities + truth + akh | 80 | 0.0094119 |
1155 | film + lift + toast + recognises + encounter + carter + elite + rosie + 13minutestothemoon + andrewneilinterviews + astarisbornmovie + kakhulu + racingpost | 52 | 0.0061177 |
1154 | film + movie + incredibles + gomez + racist + jorja + trailer + celebsgodating + wars + star | 145 | 0.0170591 |
408 | fimo + miniature + polymerclay + etsy + etsyshop + jar + cute + miniatures + guineapig + guineapigs | 173 | 0.0203532 |
766 | findomme + baby + imaginary + screw + header + pls + akwaababall + buhh + cuckys + famgang + fireworksnight + headassery + jibby + judgiinngg + kiyoko + nationallottory + puelball + rind + summerville + supermarketsweep + talktome + tonioli + wburs | 217 | 0.0255298 |
1276 | finedarkskintwitter + digitaldetox + impulse + nf + nation + finally + switzerland + iraq + sweaty + add | 223 | 0.0262357 |
447 | fire + riotx + sweetnaija + allout + ojuelegba + lit + banger + fielding + ep + riot | 119 | 0.0140002 |
446 | fire + word + applicable + ggas + griggs + lit + nigga + hebraic + omfds + omds | 270 | 0.0317652 |
222 | fitty + darshan + trust + hell + monkey + cheeky + recycl + sells + bloody + davis | 114 | 0.0134120 |
1401 | fizzy + term + energy + goals + healthy + alcohol + months + hardest + cold + fitness | 114 | 0.0134120 |
1084 | flammkuchen + kfc + meal + headlining + enjoyed + yummy + burger + puff + opera + peas | 144 | 0.0169414 |
1255 | flex + weird + throws + adoration + badeens + brendens + chaining + crownifthorns + dodgites + epilepsyweek + erh + fibbing + genderinequality + lowercases + lutherblissett + rectitude + renationalisation + yeses | 139 | 0.0163532 |
914 | fly + bro + ayamm + junkets + mashreport + teaam + yungers + administer + derisory + idiosyncratic + midline | 94 | 0.0110590 |
684 | foals + win + ynwa + liverpool + spurs + bets + arseholed + assenal + champag + thankyouarsene | 79 | 0.0092942 |
526 | folabi + godhelphisflock + laudrup + neoconservatives + racsts + smoo + sparkplugtour + cosplayer + endpjparalysis + intomes + novella + rubin | 52 | 0.0061177 |
1041 | foldedarmsbrigade + hellraiser + pinhead + stemcafedakar + teamplants + trilog + verka + birmingham + adr + psyched + tedu2020 | 63 | 0.0074119 |
385 | followers + reach + helping + chance + hundred + outstanding + ten + literally + halfway + past | 54 | 0.0063530 |
610 | foodbank + channel + oadby + families + helped + breaking + label + dj + club + music | 76 | 0.0089413 |
207 | foodwaste + unitedkingdom + bacon + free + baguettes + caesar + chicken + olives + tomatoes + avocado | 51 | 0.0060001 |
73 | foodwaste + unitedkingdom + baguettes + free + pret + greve + sandwiches + cru + nespresso + ham | 104 | 0.0122355 |
184 | foodwaste + unitedkingdom + crayfish + ________________________________ + salads + online + sandwiches + free + baguettes + toasties | 141 | 0.0165885 |
206 | foodwaste + unitedkingdom + free + chicken + pret + baguette + protein + salmon + avo + salad | 275 | 0.0323534 |
76 | foodwaste + unitedkingdom + free + irseven + flatbread + baguette + avocado + falafel + gluten + chipotle | 259 | 0.0304710 |
128 | foodwaste + unitedkingdom + free + salad + baguette + salmon + smoked + italian + greek + dill | 143 | 0.0168238 |
18 | foodwaste + unitedkingdom + pret + bang + chicken + wrap + toastie + mustard + cracker + free | 124 | 0.0145884 |
81 | foodwaste + unitedkingdom + silverarcade + classic + superclub + pret + ouch + restoration + arcade + free | 116 | 0.0136473 |
849 | fooker + timothy + timmy + loud + loses + lads + lee + laughing + average + kante | 93 | 0.0109413 |
1246 | foreals + sugalumps + revengeissweet + mood + gassed + habitat + confront + minnie + followthefoxes + morning | 51 | 0.0060001 |
153 | forecast + weather + whetstone + competition + app + met + office + banqueting + jul + heavy | 84 | 0.0098825 |
1506 | forge + dragons + kingdom + united + koi + tattoo + sarangichillout2 + studio + sleeve + leicestershire | 267 | 0.0314122 |
810 | forthethrone + klitschko + folds + lukaku + baller + fucking + channelling + barlow + game + alonso | 225 | 0.0264710 |
1651 | fortieth + 1666 + angelou + crimson’s + decadently + dekker + designformula + dromgoole’s + egerton’s + encyclopaedia + homie’s + jabhangduensgeugvsjskjgshs + kazillion + kibbe + krampus + ninea + nineam + seasona + sweight + thegreatestvisitation + uperton + venti + wretching | 57 | 0.0067060 |
723 | fortnite + madden + york + curse + 50v50 + justva + lifelines + percz + crossed + dsquared + fanciers + pushback | 55 | 0.0064707 |
519 | forward + appreciated + cheers + pleasure + hope + enjoyed + enjoy + greatly + safe + pleased | 250 | 0.0294122 |
1610 | forward + kickers + event + 60forsixty + cub + drayton + prix + carols + 2018 + heaton | 145 | 0.0170591 |
592 | forward + xx + crimeandpunishment + hypersbdaybash + mondassian + psc + shivali + softtail + tuttisunset + unfolded + yazidi | 84 | 0.0098825 |
1073 | frasier + enforc + euelection + girihaji + gw4crucible + psu + runwithrav + spotlights + tonistorm + arni + mummyblogger + nxtukcoventry + psyched | 53 | 0.0062354 |
772 | freakiest + aiko + daps + dexta + wait + jhene + graceful + anniversary + glissade + jamietld + jovovich + lomacampbell + milla + mushed + rollonibiza + specialmoments | 104 | 0.0122355 |
1499 | freelance + financially + apprecia + vote + arabic + stress + struggling + addenbrookes + diffus + edip + individual’s + laughi + multiply + neutralise + parents.w + quadrillion + recouper + rijke + rws + thingsthatarebadforyourhealth + untangling | 54 | 0.0063530 |
1517 | freelance + financially + struggling + dhaar + extra + appreci + yeovil + expertise + piercing + 223139 + 324 + appendix + befits + biano44 + ceili + cidery + denti + gocat + hd800 + normalform + olderpeoplesday + onmy + peteranthon4 + plurals + realistical + scoped + sinek + smis + starcsite + tongasiyuswnp + underpinning + whiped + wowclassic | 68 | 0.0080001 |
817 | freelance + printing + internet + possibly + anothergasleakinleicester + girlsincarcerated + madeit + misunderstandin + scavenging + personal | 66 | 0.0077648 |
238 | freelancephotographer + autosport + mistress + thankyou + average + eighteen + thousand + nurse + tenkyou + whebyou | 50 | 0.0058824 |
812 | freshener + hybrid + dyinghg + elbe + fodmap + loil + woos + woza + yeshobby + medicate + treads | 75 | 0.0088237 |
1700 | freud + speaking + brick + installation + clinic + forum + employment + 17729 + 978 + alltogether + benchtop + bloodflowrestriction + contributi + dedicatedday + depa + eidu + equalityadvocate + examinatio + forensiccollaboration + giversgain + hoses + isbn + perfectcombination + profitsble + skillsgap + stakeh + startles + thevolunteerexperience + unityrecovery + workforceplanning | 59 | 0.0069413 |
819 | friday + bday + sleep + sunday’s + o’clock + 7.45 + friìiday + growingupfinally + mortgagewankers + thatdepressionfeel | 77 | 0.0090590 |
1135 | fridayreads + eatafilmforbreakfast + insitu + henry + netball + datguymoses + fireplug38 + itienary + japanexpo + pahnationaldogday + qbaraz + rescuecentre + shorthaired + subscrition + weareroses | 54 | 0.0063530 |
965 | frizzy + suturing + puel + 60 + defecto + drucker + kaptuska + oppositions + rowdiness + thouhts | 51 | 0.0060001 |
532 | fuck + cmon + fucked + fair + brill + play + bout + bro + botoxed + cag + cronkite + fyckin + gengey + kerty + stayawayfromme + suasage | 134 | 0.0157649 |
249 | fuck + crumb + single + fucking + soulei + goal + gerard + veins + sip + puff | 248 | 0.0291769 |
390 | fuck + ha + yeah + tlof + moggy + guy + 7️⃣ + bayfield + clairvoyant + cout + ellas + geert + lg’s + maracana + mathanda + mthande + prewarned + ramazan + rimmo + spursday + taqqiya + today.brilliant + wiggo + witherspoon’s | 336 | 0.0395300 |
462 | fuck + hell + headbutt + tik + laughing + remind + grad + guy + happened + loud | 254 | 0.0298828 |
835 | fuck + laughing + loud + happened + hell + wrong + tf + whats + people + actual | 4057 | 0.4773009 |
551 | fuck + pancake + nap + waking + ripping + bank + hundredths + 8am + akways + aleeping + caillou + freelancelife + invoices + ketumbit + mosn + notimpressed + pulak + sangat + smegma + stresshitsdifferent + teamnightshift | 101 | 0.0118825 |
344 | fuck + poll + fock + fockoff + frack + shitshow + transferable + serpent + pencils + romania | 52 | 0.0061177 |
643 | fuck + rees + mogg + questioning + fruckle + goyte + homers + nazak + nunos + cheat | 68 | 0.0080001 |
266 | fuck + sake + ffs + imouttahere + tykes + fucks + tarkowski + allan + desktop + shucks | 64 | 0.0075295 |
1034 | fucker + bastard + twat + truer + fucking + fuck + bastards + absolute + shoot + motherfucking | 210 | 0.0247062 |
1196 | fucking + forreal + fuck + blimey + hat + britishmovielocations + legend + bit + boy + correct | 2391 | 0.2812981 |
253 | fucking + preferential + hell + fuckin + hiring + treatment + eu + recommend + push + wake | 382 | 0.0449418 |
1615 | fuckthisshit + notestostrangers + advertising + believers + eurgh + negotiating + discourse + control + philosophy + politician | 99 | 0.0116472 |
768 | fuk + alan + andthewinneris + ballpits + bribery’you + chokoraas + coursework’ll + inje + leavehimalone + reminderespeciallyformyself + snowfl + wanasemanga + youknowwhoyouare | 83 | 0.0097648 |
289 | fuming + honest + caprison + mixitup + nigeil + literally + twits + honestly + fini + wavelength | 89 | 0.0104707 |
603 | funder + remorse + proposals + watc + agreeing + pros + passes + rumours + 4u + bombarde + incloud + leicestersquare + nakkash + rolandout | 53 | 0.0062354 |
947 | funniest + ttt + doubling + lovethedarts + nigeria + fav + tunisian + shite + robert + daudia | 176 | 0.0207062 |
614 | funworksworlduk + forward + psn + lfo + tattooartist + instagram + platforms + social + media + snapchat | 70 | 0.0082354 |
214 | furtherreductionsshop + stor + morning + goodmorning + xx + sale + online + xxx + darling + gorgeous | 66 | 0.0077648 |
1503 | game + congratulations + rugby + winners + luck + purim + skitz + forward + season + awards | 175 | 0.0205885 |
732 | game + fortnite + barnes + harvey + southgate + gareth + wwe + robertson + won + yeh | 178 | 0.0209415 |
725 | gameofthrones + cosmicblue + gavinandstaceychristmasspecial + song + english + gavinandstacey + pavement + episode + hear + thrones | 100 | 0.0117649 |
901 | gangs + cats + operating + ayite + gridlock + groml + polistick + unconventionaldarkness + behave + washy + wishy | 72 | 0.0084707 |
1722 | gardenscapes + actioncoach + historians + meeting + orchestra + forward + adultwork.com + davidhuseobe + exitstrategies + gereation + growthspecialist + iwillweek + kasey + mcghee’s + mischiefmakers + neeo + paedsed + paedsrocks + railwaysafety + rupaul’s + safarnama + summerreadingchallenge + tfj_photography + trasecelebration2019 + uhls | 54 | 0.0063530 |
588 | garlfrend + teach + idiya + chilwell + fuck + ben + excuse + absolutely + areno + enchanting + h.u.g.excuse + nees | 108 | 0.0127061 |
750 | gea + franco + goal + lacazette + de + baresi + finish + courtois + ball + kick | 50 | 0.0058824 |
799 | gea + lloris + goal + de + header + lukaku + eurovision2019 + hibshearts + tottenham + argnga + arsnew + beepbeep + veron | 51 | 0.0060001 |
884 | geekycocktails + giffardliqueurs + nims + boutique + shooter + cocktail + cocktails + leicestercocktails + bluecuracao + decor | 365 | 0.0429418 |
244 | get_repost + repost + asian_celebrations_bridal_show + kanizali + nims + jewellery + boutique + exhibiting + morningside + arena | 128 | 0.0150590 |
95 | getgarytosingwithemma + relightmyfire + gbsolo2018 + foodwaste + unitedkingdom + desire + baguette + 32ff + faketits + flatbreads | 72 | 0.0084707 |
236 | getpaid + mnfst + influencer + graffitiart + urbanart + bringthepaint + download + graffiti + app + 1up | 82 | 0.0096472 |
846 | ghostarchipelago + joll + bronwen + oregano + hicks + olympian + zand + beaker + misspelled + woojin | 62 | 0.0072942 |
786 | giftbetter + eat + amounts + bills + brianna + couplers + déjeuner + fathersons + gudday + guzzle + milkshaking + mybackpackisfullof + voteonthursday | 79 | 0.0092942 |
998 | giggy + soups + wiggy + news + mrsbs + forward + buffy + dill + shetland + lunch | 207 | 0.0243533 |
1592 | ginzburg + baggins + drug + vicar + oil + perfume + eileen + addict + wa + bus | 139 | 0.0163532 |
127 | girlsparty + littleprincesses + pamperparty + partytime + unicorn + foodwaste + unitedkingdom + pamper + xx + salmon | 86 | 0.0101178 |
218 | giveaway + fantastic + awesome + shoeoftheweek + lovely + brilliant + competition + guys + raffle + win | 52 | 0.0061177 |
135 | giveaway + galaxy + iphone + xs + samsung + oneplus + rt + max + s9 + prize | 75 | 0.0088237 |
1032 | glasgow + inspirational + confidence + apr + driveway + leicinnovation + blog + diana + building + rehearsals | 117 | 0.0137649 |
1579 | gmc + charged + cannibal + someo + atlantic + amazon + avi + item + 76p + a380s + airbus + belfast’s + buse + fligh + geneuine + impossibl + launche + surpr + therange | 70 | 0.0082354 |
334 | goal + teamclaret + crosses + row + midtableatbest + olbromski + 1 + 9️⃣ + badam + trick | 60 | 0.0070589 |
698 | goal + waw + faith + save + 14seconds + awhahahahaha + ballista + bft + dartboard + dees + kiko + lim’s | 102 | 0.0120002 |
239 | goam + motorcycle + ronaldo + caption + mash + ninety + charityevent + drinking + catchment + god | 157 | 0.0184708 |
354 | goam + spain + motorcycle + topman + king + congrats + mate + luck + god + bud | 720 | 0.0847071 |
939 | goat + trippier + muscle + thug + 30rain + 8️⃣0️⃣th + ampesi + ariza + chards + deadlocs + deathtoyoghurtmonsters + engarg + justiceleague + kingsto + pyb10 + spearing + superbowl2019 + waam | 102 | 0.0120002 |
1082 | god + 33k + 51k + akukho + deleging + obsceneties + lula + mouthguard + suppleness + toks | 87 | 0.0102354 |
803 | god + careful + m’lady + reunion + 1gs + beirut + biscuitchat + cosmonaughties + fuckijg + hellinacell2 + lcfcu18s + mada + northbank + paddycam | 178 | 0.0209415 |
1172 | god + eheartedly + f2eg + firstnameonthesheet + holeu + lecktrick + poggers + sonsgwithnumbersinthetitle + technik + keys | 149 | 0.0175297 |
134 | god + harrumph + life + viva + appreciated + faith + r’n’rr + rok’n’roll + comment + spin | 107 | 0.0125884 |
456 | god + laughing + loud + crying + nah + heart + soo + cry + sad + fuck | 2958 | 0.3480049 |
544 | gofishingforbandsandsongs + snowwhitessinisterdwarfs + omfg + god + 1bait2 + d:bream + flasher + peepeeing + scato + screechy + spools + trouthere | 70 | 0.0082354 |
471 | goodnight + morning + night + goodmorning + sending + hg + lover + cancerwarrior + bhudi + earlyrisersclub | 78 | 0.0091766 |
393 | goodnight + night + bud + chotu + gnight + hugsfornav + mataji + rashad + speedyrecovery + yeeh | 83 | 0.0097648 |
394 | goodnight + night + xx + xxx + dreams + sleep + sweet + nighty + n’night + wishing | 130 | 0.0152943 |
480 | goodnight + sweetdreamsandwetones + love + xxx + thankss + twitterverse + lovelies + youu + angel + babe | 138 | 0.0162355 |
1574 | googleplus + marked + toda + leak + allyship + bilaterally + complexed + desc + displeasure + ens + forecasting + hef + independe + minutely + recoveryspace + renewin + stockpiles + tvml + ugand + unregulated + unsubtle | 57 | 0.0067060 |
1037 | goosebumps + limbs + pum + bin + beauty + respect + dick + yh + childish + milner | 742 | 0.0872954 |
706 | gorgeous + beautiful + awebsite + aww + catrin + ccant + chibaba + dibyesh + heelsoffuk + leye + rawan + suki | 98 | 0.0115296 |
166 | gorgeous + beautiful + awkward + peachy + untill + ink + mummy + kiss + wicked + breath | 57 | 0.0067060 |
703 | gotcha + love + piestories + relaz + wayze + gravestone + plez + satnav + matron + strongbow | 56 | 0.0065883 |
1727 | governed + country + somethin + historic + austerity + political + poverty + cannibas.the + cbbandrew + coue’d + crimina + dysphoria + falsification + heatal + legalization + madarchauds + passaris + specie + toiled | 65 | 0.0076472 |
754 | govt + murder + guilty + court + law + mentioned + affairs + happened + accuses + iraq | 86 | 0.0101178 |
1333 | grandkids + predictive + meant + angrylibrarians + asceticism + fonti + greqt + lavuelta + laze + limbering + phychickhan + sparrowark + squarerootofnowhere + trumpettiness + valdes | 170 | 0.0200003 |
228 | grant + pop + dm + disappointment + caused + deets + sorted + tania + delay + customer | 117 | 0.0137649 |
586 | grateful + pathway + vichai + completed + specifically + dreams + followers + alzheimers + countryroads + derick + dhani’s + grandm + piersy + prattling + pulpit + ripastori + september13 + sizz + ugliness + wonderous + zoglive | 78 | 0.0091766 |
787 | grecian + norwichporridge + speccie + thelavenderhillmob + zap + luckoftheirish + stormtrooper + dm + clare’s + clover + mac’s + pvc + urn | 80 | 0.0094119 |
1119 | greddy + isterrifyinglyaword + ched + sirius + winnats + thrilled + edd + terrifyingly + glide + mints + wam | 54 | 0.0063530 |
820 | green + chickenness + familyouting + getgremlytograduation + harjap + when’t + admires + funnel + sud + thistopia + trilby | 52 | 0.0061177 |
811 | grm + daily + video + music + m1llionz + headbanger + headie + mods + 50shadesoftiger + aj4y7 + anilbria + baynes + clacey + david_sachdev + doingwhatwedobest + doj + dolores + ekk + emilio + gabriela + georgeezra + gruenwald + hasselblad + hotsummerdays + imstillremembering + internetfriends + internetfriendsmeeting + linh + lippy’s + luzern + medellin + mmtakeover + muotd + neilsmithcreati + newcombe + nguygen + rabbitrabbit + sbtv + simrunbadh + snookerloopy + sunmer + twoyearold + xpan | 79 | 0.0092942 |
273 | grow + word + goldfinger + idf + killers + engcro + wait + child + ricky + defending | 56 | 0.0065883 |
1313 | growth + event + wellbeing + 02 + officer + cricket + holmes + manage + stadium + lcfc | 100 | 0.0117649 |
636 | grumps + goodman + paramedicine + worldly + yaass + truely + oap + technician + yass + priorities | 56 | 0.0065883 |
163 | gt + ding + dong + serving + hny + xmas + whatsthebigmistry + absent + takeover + brill | 105 | 0.0123531 |
259 | gt + lt + 3 + agenda + 333 + amplified + kjv + halloumi + dogs + attire | 188 | 0.0221180 |
258 | gt + lt + friends + girls + sex + cte + knowing + energy + smalling + babes | 796 | 0.0936484 |
973 | gto + howl’s + anpr + gcses2018 + radio + testify + sabras + 4.30pm + ferrari + increases | 99 | 0.0116472 |
778 | gtworld + gift + rays + clouds + activecampaign + bashy + crashied + definelty + fluffier + g’up + kyalami + mondos + nyonya + soons + whatthefluffchallenge + whenyouwakeupand | 111 | 0.0130590 |
1369 | guff + wrong + spelt + dakka + disintegrate + gyaan + hahahhahaha + palatial + pey + prattle + racistly + shhsjwhxhwhxsjb + skully + skyped + sleephygiene + spreadingpower + twere + voyager2 + wispy + wlsmdwnxjwhhs | 127 | 0.0149414 |
300 | gugs + prin + rhi + nas + sand + ash + lover + hide + neil + boo | 69 | 0.0081178 |
762 | guji + inclement + larkai + mcmoon + moony + needanotherholiday + pocketmags + tayyab’s + wentz + masi + nisha | 76 | 0.0089413 |
892 | gutterball + kirkwood + pi’s + shjt + smooch + sugarmums + charleston + shittin + stupidquestionsfortheschoolnurse + tassimo | 56 | 0.0065883 |
974 | guy + hey + norm + surprises + deliciousness + drugg + kiss’n’tell + lifekeepsmoving + makemusicmanly + dating | 100 | 0.0117649 |
1198 | guy + morata + bring + omds + overpowered + bloke + boku + neymar + 2k18 + roddy + strain | 267 | 0.0314122 |
22 | guys + upgrade + beats + chest + treat + sir + bitch + heart + mum + fuck | 238 | 0.0280004 |
1217 | gwara + laura + kmt + beccasloveislandpage + boyswhoascot + dajid + fatwa + fishbourne + getroxanneout + goris + kandis + kugan + labul + meninsuits + opinionsofcoppenandnotitv + speckled + ukpop + waywards + yesimlate | 88 | 0.0103531 |
1672 | gyimah + bbc + imports + pm + sham + country + system + european + news + political | 88 | 0.0103531 |
250 | gym + strong + leg + training + abs + nffc + stronger + bro + body + session | 498 | 0.0585891 |
646 | gym + weighed + 2 + watched + surreal + felling + gallstones + unconvincing + refurbishment + drank | 248 | 0.0291769 |
1043 | gynae + nicu + fries + stella + pint + season + 13reasonswhyseasontwo + condor + antihistamines + makeashowormoviecold | 53 | 0.0062354 |
175 | ha + doo + aww + cute + ah + love + god + babe + baby + myoddballs | 1956 | 0.2301209 |
1008 | ha + fyha + eurovision + nigga + kane + nom + yeah + willetts + wait + jeremykyle | 782 | 0.0920013 |
613 | ha + haha + blue + yeah + loud + laughing + beep + bet + game + greeny | 908 | 0.1068250 |
608 | ha + haq + sounds + batwatch + fantasic + multifacets + nwachukwu + warris + mundeles + love | 80 | 0.0094119 |
1164 | ha + ready + hai + pooch + curve + brilliant + haha + agree + verse + fabulous | 261 | 0.0307063 |
368 | hä + tictok + demarcus + beef + robyn + hus + florida + arsh + bitrude + chocofeather + eposed + giddem + goodpie + goujons + grany + innocently + juntao + nakeeb + namiko + narrtwess + néze + officechat + shhurupp + sidwell + stinkin + videocredit + zabee | 127 | 0.0149414 |
1158 | ha + wow + oya + god + argh + itscominghome + ahra + ahrathy + celebrityxfactor + dap + do.x + fuckme + halla + jameelajamil + letabitchlive + mciavl + ollys + perfectlyflawed + shauna + unbelieva’brow + waccoe + wahaay | 191 | 0.0224709 |
1349 | habits + miss + isol + nexy + ohlife + poerty + rubbishnow + sorrynotinmyvocab + toing + wowowowo | 77 | 0.0090590 |
1138 | haha + adorable + guinness + brollys + carvwr + crunchier + didoslament + fromalantoellen + haina + healthyfood + hellenistic + lakini + lestahshire + limon + maana + naona + o.o.d + onerous + overstaying + paler + shyamalan + slowcookersunday + spenp + spoiltforchoice + theparty + toa + walkersstax | 204 | 0.0240003 |
1139 | haha + love + amazin + ow + loveisiand + 50fr + brinklzz19 + chocablock + easter2019 + giveawayalert + grandslamofdarts2018 + hand_ + hegerty + isthatbad + jet2 + kummerspeck + mantua + owltastic + peptides + slimmingworldonline + smog + sudpended + teletriage + tetweeted + underused + wwii | 182 | 0.0214121 |
1314 | hair + sleep + blonde + bed + dyed + wait + complaining + hairdresser + braids + bouje + helpmeitsjuly + oversleep + plaited + slicking | 97 | 0.0114119 |
137 | happen + pics + racheal + rosemary + identical + evening + updating + pic + happened + shoutout | 97 | 0.0114119 |
568 | happy + birthday + thanksgiving + friday + easter + prin’s + monday + furry + tuesday + november | 172 | 0.0202356 |
417 | happy + hump + bestfinisher + overplayed + scrimmed + tuesday + ave + libra + gorl + dryjanuary + jai | 57 | 0.0067060 |
545 | happy + paddy’s + christmas + merry + ho + grandparents + xmas + adrianx + halloween2014 + happyhalloween2018 + hidaya + holloween + lillystone + squigglers + styatesday + thekindnessofpeople + topsyandtango + wignall + worldratday | 53 | 0.0062354 |
98 | har + tweeter + dearest + weekend + mahadev + lovely + india + surprise + shree + wonderful | 73 | 0.0085884 |
1409 | harrassed + people + spielberg + laughing + love + masturbate + loud + age + hate + names | 263 | 0.0309416 |
287 | harrystyles + iheartawards + bestsolobreakout + sweet + voting + playing + rt + vote + signofthetimes + bestmusicvideo | 65 | 0.0076472 |
857 | harsh + pathetic + awkward + yeah + prick + madness + treat + 90minutes + cavalcade + coked + darky + kickracismoutoffootball + movings + reeal + showracismtheredcard + wadaha + weasil + weried + winstons | 167 | 0.0196473 |
977 | hassle + caused + pain + emotional + bravest + feel + destination + sand + psalms + san | 118 | 0.0138825 |
1361 | hate + life + cry + swear + wanna + ive + feelings + pain + conversations + feel | 297 | 0.0349417 |
1362 | hate + people + arsed + friends + laughing + feel + watch + loud + videos + wanna | 472 | 0.0555302 |
1017 | hate + uni + medieval + armour + uniform + allthatmatters + commuterlife + quadratic + streetb + gc | 84 | 0.0098825 |
1340 | hate + unsee + addington + alwaysjustme + bsides + durrty + harrassing + hela + satisfys + shittillysays + thankoibfor + vant + waitstsystsysgshehhss + whatnursesdo | 71 | 0.0083531 |
469 | hear + loss + blees + xx + bata + compaionate + govenment + jaspreet + mvelase + ripuncleden | 125 | 0.0147061 |
1400 | heard + remember + watched + cried + dashboard + people + jarring + moto + leifle + understanding | 325 | 0.0382358 |
477 | heart + hoodie + brigg + gosta + omgomgomgomg + shafts + bighead + overton + miss + benji + shifty | 63 | 0.0074119 |
485 | heart + pogboom + cannonball + dris + farewall + fluxys + grettle + matt_lecointe + ravenstone + rhymegame | 51 | 0.0060001 |
739 | heartache + cheatin + loosing + carla + carter + war + talentless + teary + lost + snowing | 78 | 0.0091766 |
1131 | heist + sexily + dramatically + escalated + maura + congrecolition + fewmin + foine + hollys + storh | 72 | 0.0084707 |
1244 | helicopter + crashes + owner’s + crash + bbc + city + news + ma’moolaat + concern + missing | 143 | 0.0168238 |
345 | hell + beautiful + fucking + stunning + gorgeous + waoow + contrarian + fuckinhell + impressively + mandir | 55 | 0.0064707 |
1376 | hepatitis + equalities + hurray + accident + topic + junction + vehicle + 100mcg + 15mcg + 1bn + 4videos + all.but + boge + bupivacaine + camerafone + cv04 + dissect + enactment + facilitie + fenta + gare + geophys + grill’s + heathly + humanhight + iapt + industrialisation + innovati + klingon + penetrat + pida + plushie + propagate + resta + saturates + skm + synthesising + zaatari | 68 | 0.0080001 |
1404 | hes + happened + fuckedup + glenfi + marsellus + optim + riverisland + scunt + sjksnsjsn + thearchers | 155 | 0.0182356 |
316 | hh + sven + tanning + welling + lotion + lawrence + jackson + ty + rainbow + shock | 56 | 0.0065883 |
1465 | highcross + troupers + 9 + 6 + racecourse + djrupz + lcfc + montfort + academy + city | 500 | 0.0588244 |
1310 | hilarious + stan + funny + funnier + jokes + lit + finest + hahaha + laura + dead | 310 | 0.0364711 |
1585 | hillary + nigh + syrup + blank + foot + anyhoo + behaviourist + dandhinos + delieverd + dryads + frito + gottakeepawake + happie + kyles + laundered + lovestory + mantic + mccan + michaelsek + monito + nitrate + nostalg + peltinghell + perril’s + pew + quesito + rollercoaster:from + sissay + spokenwordpoetry + sudacrem + testin + yehs | 95 | 0.0111766 |
1345 | hired + fairportconvention + fuckoffsis + offguard + penss + psorasis + rewatches + shesanidiot + insty + korra + watchlist | 57 | 0.0067060 |
405 | hiring + laughing + loud + haha + creeps + tatws + manufacturing + god + england + liftgate + skybynumbers | 940 | 0.1105898 |
196 | hny + weekend + lovely + brill + hope + goodluck + lynn + nanna + steve + angie | 101 | 0.0118825 |
1449 | hoax + bobriskys + fuxkwit + hiddlestan + jbags + microbial + overhauled + renters + baso + debunked + hiddles + leaker + marinating + mway + sahara + scholarly + topple + youts | 106 | 0.0124708 |
475 | holistic + healing + peregrine + england + dobbersweeklyweighin + hicarty + health + cathedral + officialgfw + peregrinefalcon | 76 | 0.0089413 |
1096 | holla + dough + cbbann + fripay + ipayroadtax + johnstonpress + moonbase + murdeous + secretaryofstate + stow + turtley + westenra + yorkshirepost | 115 | 0.0135296 |
635 | homewrecker + applicable + jack’s + yeah + nana + ___ + ____ + donatella + educative + excitingly + izaiah + jarrow + model’s + naivete + nanananana + nsusernotification + robfans + rodrick + scabbing + shareable + theassassinationofgianniversace | 69 | 0.0081178 |
1433 | honest + tables + incorrect + chapatti + gaabs + legg + 21c + duarte + mella + dinger + fulani + immobile + lampards + spams + waw | 109 | 0.0128237 |
90 | honestly + truthfully + portsmouth + eats + sucks + uber + bin + hun + honest | 51 | 0.0060001 |
272 | honey + um + babe + love + kiss + xx + xxx + pies + dear + darling | 100 | 0.0117649 |
303 | honey + xxx + xx + wow + coverdrives + lamble + pusheen + birdfair + mirror + hehehehe | 61 | 0.0071766 |
123 | honk + thankyou + moose + pig + fuck + xx + fab + buddy + feck + trucker | 145 | 0.0170591 |
1191 | hoosk + doms + 0w0 + abbott’s + abought + benevolence + bulldozed + gnarled + leuvren + loeb + manboob + mockingit + peppa’s + scillies + stillgame | 135 | 0.0158826 |
984 | hope + xx + congratulations + luck + forward + glad + mate + lovely + xxx + enjoy | 6863 | 0.8074232 |
553 | hope + xx + xxx + love + recovery + feel + sorted + awh + glad + follow | 292 | 0.0343534 |
837 | horny + 19 + sleepy + alcholohic + bdodarts + bigday + butmustkeepgojng + ketosis + loggins + mind’s + mohamoud + tinkers | 99 | 0.0116472 |
1674 | hospital + drunk + memories + kuli + wisp + kindness + coursework + creates + heigh + wi | 313 | 0.0368240 |
21 | hotline + samaritans + night + xx + paste + someo + suicide + cheddar + pickle + baguette | 132 | 0.0155296 |
1559 | hours + ago + watched + feel + months + drank + weeks + treadmill + week + 9am | 171 | 0.0201179 |
382 | hours + boi + sad + nigga + asthetics + jeremih + lonely + shut + veins + cud + sizes | 50 | 0.0058824 |
1359 | howling + notepad + screaming + waterproof + bothered + stress + people + laugh + lived + life | 167 | 0.0196473 |
399 | hows + evenin + afternoon + hey + tuk + alrite + blees + bhai + dearest + sister | 134 | 0.0157649 |
400 | hows + evenin + hey + morning + coping + feeling + britsliampayne + how’re + salamz + buddy | 546 | 0.0642362 |
1 | huge | 192 | 0.0225886 |
331 | hugs + sending + xx + hug + xxx + vibes + wishes + teletubbies + positive + virtual | 101 | 0.0118825 |
275 | humberstone + heights + golf + hole + par + club + holes + eighty + tee + logantrophy | 65 | 0.0076472 |
529 | hundred + billion + sixty + million + thousand + forty + call + thirty + ninety + goose | 118 | 0.0138825 |
454 | hundred + thousand + avi + sixty + ninety + coochie + seventy + eighty + cook + fifty | 99 | 0.0116472 |
528 | hundredths + hundred + sixty + fifty + ninety + thousand + million + billion + forty + eighty | 211 | 0.0248239 |
467 | hundredths + ninety + hundred + purchase + forty + hindbar + price + cd + seventy + blinds | 67 | 0.0078825 |
625 | hungry + tea + eurovision + labs + characterising + mne + phizz + timemovesfast + messi + rumbling + svn + turchi + turchiconquest | 74 | 0.0087060 |
1149 | hustle + bliss + begins + ignorance + parrot + thread + animaljobs + aquasafari + birkinish + blinkin + catandmouse + cobyin + dambreach + ensues + familyreconciliationsjeremykyle + flubber + frug + gamston + hahahaah + jamaat + maan + mamual + penniless + riverdales | 133 | 0.0156473 |
1625 | hutu + pooh + mh + slow + songs + 21.02.18 + 70yrs + kuchafua + lifeboats + lineage + meza + michael_hunter + mushaf + rua + usayd | 54 | 0.0063530 |
891 | hyst + janet + developed + madonna + adl + heartbr + northside + sadowitz + situates + unabashedly | 57 | 0.0067060 |
1144 | i’am + shook + goin + crying + mins + nintendo + floating + hayfever + ho + forehead | 220 | 0.0258827 |
1724 | iamawomanwho + dementia + vlog + business + forward + staff + planning + schools + becca’s + bookmarking + brickinthewall + ccaddyshakers + charlotta + clearing2018 + d.m + dianaf + dogdistroystoys + dyingmattersweek2019 + eastmidssios + elated + excitin + fmb + focuzed + foste + gujerati’s + gweme + hermitt + iasym19 + launchmyself + lomography + loroshospice + lurcher + m9ments + matinez + meifcelebratesuccess + micromasters + microsoft’s + mygateway + nested + ota’s + over:kensington + pds + rcnstudents + ribbo + sheron + streetcount + teenyoga + telescopic + thiepval + xboxseriesx | 97 | 0.0114119 |
1059 | iconic + desent + drakeveffect + fennec + findme + gonebutneverforgotton + heroically + holo + inesta + italiangp + karke + lappy + sadda + sohnja + theforceisstrong + youthie + zeds | 61 | 0.0071766 |
1081 | idea + bfj + cannybare + choosepsychiatry + haward + jaybird + lfw + millie’s + nabbing + oxtonboy + psychers + tiggle + wrrmuphflt | 68 | 0.0080001 |
1086 | idea + loving + pockets + loveisiand + pets + amaxing + bhalei + britainsfatfight + campness + dannytetley + deadting + dyah + friendgoals + fuckyounhs + guggenheimmystery + inundated + lovelygirls + madarame’s + mehs + namedrop + notthatnunwoman + ratmum + rayofsunshine + rollininit + solanki + sorryjack + soubou + statment + whatdoesyourfursonasmelike + whoopie | 167 | 0.0196473 |
1576 | ignorance + normalise + arithmetic + question + disengagement + education + poverty + opulence + dangerous + centuries | 99 | 0.0116472 |
1476 | ilovegodbecause + kingdom + sew + 011628372212 + fortnum + musc + profoto + saffronlane + welford + leicestershire | 79 | 0.0092942 |
692 | imaceleb + anne + joinin247 + ffs + waiting + croatia + budap + decsnips + indiedisco + karankaout + moanirinho + thatstwowishes + zey | 179 | 0.0210591 |
77 | image + day + john + soulages + jean + pierre + james + abdelkhader + adeney + adolph + alda + aleen + aleksandr + alenza + anatsui + anedd + ansingh + archipenko + arge + arshile + auguste + barriball + basquiat + bassous + beahkov + billmark + boghossian + bonheur + bracht + britton + brofett + brzesk + bunce + chakrabhand + coppin + cotman + danielsen + deyneka + dunkley + effat + ephrem + eugen + eugenio + fischl + fontana + gaudier + gayane + gensou + girtin + goodloe + gorky + greavette + hadjisoteriou + hammershoi + heungsou + hoang + houamel + hye + ikeda + j.m.w + jakob + katz + khachaturian + kitaj + laidlay + latilla + llia + lorgio + lucio + luostarinen + mammen + mantegna + mantz + masuo + menzel + menzio + monamy + mousseau + nagy + nashashibi + nerio + okuda + onditi + osborn + permeke + posayakrit + r.b + raemaekers + rankle + raveel + rawsthorne + rego + rubens + skunder + sok + soldon + stael + stannard + steuart + tapies + tich + ugolilo + uhlig + venny + vilhelm + wishart + wyndham + xanthos + yacouba + zumian | 119 | 0.0140002 |
832 | imagine + duran + male + kmt + white + dinage + gissing + ground.the + hmrcrefundscam + inaint + jinna + jmu’s + kinlg + metroland + professing + sex.i + tearworks + whatabitch | 94 | 0.0110590 |
961 | imagine + oasis + imsorry + ndabananiyeland + cóques + 28m + burmese + macaulay + ms19 + relies + xg | 53 | 0.0062354 |
1382 | imagine + publicity + shock + offended + people + laughing + watching + netflix + thug + watched | 186 | 0.0218827 |
366 | immense + alltogethernow + epic + plz + awesome + comments + incredible + till + creampuffs + late | 192 | 0.0225886 |
676 | immigrant + fbi + language + connor + claiming + aizen + ichigo + liluffy + loose.stopbrexit + machetes + prorougeing + sieg + wym | 76 | 0.0089413 |
156 | impossible + god + nims + boutique + plz + gifts + retweet + delivery + gift + perfect | 108 | 0.0127061 |
1224 | indefinite + radicalise + noblest + perspirant + hbu + catchment + pursued + dfw + ligue + chased + fume + rodney + rounding | 53 | 0.0062354 |
759 | indianajones + french + bio + kindess + larousse + rickenbacker + rosegoldgang + webbelliscup + stunts + faves | 124 | 0.0145884 |
1675 | infections + rats + mum + books + brother’s + lonely + sensation + ago + history + blogging | 131 | 0.0154120 |
416 | inject + beep + unlucky + gawd + veins + piss + lucky + tramps + shit + cryin | 100 | 0.0117649 |
934 | inject + chop + town + impeachmenthearings + obsessional + suckling + teet + onel + winslet + hazza | 56 | 0.0065883 |
582 | inna + skating + amazingthank + bestfriendsday + getvoting + goofball + josza + lillahi + mbcca19 + mbcca2019 + stripeyhoney + tbchmakeschristmas + timesupacademia + tutland + weareuol | 51 | 0.0060001 |
1712 | insān + nasiya + religious + sex + personal + mild + forecast + linked + advanc + argument.they + court’s + decam + dike + foxholes + franzen + hippocracy + labourout + polygamy + remoany + sadl + salafi + shittiness + snitty | 61 | 0.0071766 |
10 | inspirationnation + follow + ammunition + remoaners + davis + ore + inspiratinnation + adrift + distracts + javid | 105 | 0.0123531 |
139 | inspirationnation + painting + contact + love + duas + healed + 13love + babygo + behindlocalnews + hotm + ipaintportraits + lyds + mekemstudio | 85 | 0.0100001 |
129 | inspirationnation + posted + photo + abbey + praisejamxiv + park + praisejam2018 + retweet + spread + curve | 105 | 0.0123531 |
223 | inspirationnation + rl + love + retweet + appreciated + eric + christina + youve + follow + julie | 62 | 0.0072942 |
217 | inspirationnation + ronnell + amar + retweet + appreciated + love + positivity + ammal + bjm + inspirsationnation + mevlida + unreciprocated + zerotollerance | 66 | 0.0077648 |
121 | inspirationnation + welcomee + corona + excused + m’lady + bhai + designs + dear + welcomed + ricky | 73 | 0.0085884 |
1512 | inspiring + evening + kendrick + 167 + 178 + 1873 + assertyourself + cwcone9 + d1w2 + diaconate + dogsocialisation + greasethemusical + individualism + londinium + mjfc + socdm2019 + upcomingrapper + we_can_live_together + workface | 71 | 0.0083531 |
1107 | inspiring + ramadan + hosted + honoured + tri + invited + joined + 50years + abbeypumpingstation + annum + birdin + birdwatcher + bonaventura + chocolatekrispiecakes + cimc2018 + cjc + convertib + dmuvloggers + doha2019 + expressos + fenton + funafterschool + gpcareers + gpjobs + granbabiesmuchlove + hairpage + healthyschool + homegro + iowfestival + librarylife + lovemission + m240i + receivers + ryalls + sedbergh + vmware + watersidecare + wheresthevodka + wherewouldbebewithoutmusic | 78 | 0.0091766 |
796 | insta + dcdatgdshtde + groupchats + hmwk + primeday + wastemans + invader + mohawk + puzzled + ugly | 53 | 0.0062354 |
1005 | institch + 12daysofjones + spiritridingfreetoys + stitching + bestquoteever + classmeet2018 + crackdown3boomquetsweepstakes + fyreuk + getactive + greatshow + laserpointers + martinshottap + massivecongrats + munbae + perseverence + saddltastic + schoolisfun + soundsdodgy + webbtelescope + webbuk | 59 | 0.0069413 |
942 | intercourse + downloading + theo + acceptability + arsacm + bulging + cluehq + deities + dol + immigrantsongs + ls1277 + mismanagement + morphology + piloted + rf2 + ridiculouskeeper + shrugging + sinatras + statisti + superhuman + weeknigh + wheelbarrows | 91 | 0.0107060 |
941 | investment + findom + offering + nt + people + failing + app + frds + read + cashmaster | 980 | 0.1152957 |
702 | iphone + huawei + yesyes + agree + yesyesyesyes + bicycles + nauseous + reverse + motorways + motorist | 153 | 0.0180003 |
1545 | iraqi + afda + catering + drums + sessions + musician + 14mpg + 29.09.19 + application’s + availabil + clent + costadelleicester + curvetheatre + dayofthedeadtattoo + drumkit + fielded + hashem + hpt + hypexmonsters + larrad + leicestermela2018 + lesmistour + lovecurling + matchweek27 + natashas + percussion + pressnight + round27 + runforall + seasicksteve + seasonsgreetings + smallbusinessowner + soundchecking + teamremo + username.strivet + vicfirth + weal | 63 | 0.0074119 |
833 | isapp + mande + nasilemak69 + notifies + nown + sledgo + steadyareyouready + surgest + ww84 + bounceback + elevensies + groupchat + unr | 69 | 0.0081178 |
1703 | issue + puel + slash + opinion + people + arising + barber’s + dhami + everydayman + fostersson + handsomest + jatinder + langua + pris + threethree + transgress | 87 | 0.0102354 |
1561 | istandwithvic + distributed + kickvic + residency + poles + screenshots + nhs + dubai + customer + 3.4m + animegate + bookmarklet + breaches + dimond + equities + facadism + geoip + immigrationreform + praslin + prepube + underwriting + worldbenzoday | 63 | 0.0074119 |
46 | itballers + cous + thankss + pp + strokes + ade + skip + behalf + advance + checked | 160 | 0.0188238 |
1543 | iwill + partnering + tagging + announce + artclub + bulkingseason + cutandpaste + ea.esthetics_ + ebcd + faithinhumanity + falcore’s + fernandoizquierdo + formida + gulati + internatinalwomensday + julievivas + katardley + knowyournormal + learningtools + makenigehappy + malcom’s + newoffice + newsx + parasitologists + persone + radicaldmu19 + samsunggalaxynote9 + sjdetailing21 + spooptacular + underthesea + weimprove | 65 | 0.0076472 |
410 | jacks + pixie + baltic + ave + palm + tracksuit + chilly + nando’s + angels + bella | 86 | 0.0101178 |
1202 | jaime + lannister + naruto + weapon + airbarkley + arnau + couldve + eldervair + gengis + mjn + omotso + spinalls + teppei + teraweeh + trashiana + yajirobe | 116 | 0.0136473 |
793 | jamaica + armitage + jenners + kardashians + laws + zimbabwean + florence + unpopular + listening + apology | 74 | 0.0087060 |
905 | jamaican + tl + fuck + jesus + ahistorical + anthropomorphic + chandock + cheeran + inouarashi + jilo + nek + propanganda + swordsman + tyson’s + waja + zoo’s | 50 | 0.0058824 |
45 | japan + banzai + amen + bud + expo + landmark + singers + idol + foodwaste + unitedkingdom | 172 | 0.0202356 |
1153 | jennifer + garner + actress + accuri + aleida + conjouring + differentoverlordrules + firstgirliloved + gged + kpoop + tamera + technicallyron + ugandans + undermyskin | 61 | 0.0071766 |
681 | jeremykyle + pranked + jezza + boris + cos + absouletly + bulldogs.jeremykyle + cheltenhamfestival2018 + flightless + hoffmeister + ipulate + lie.jeremykyle + mwahahhahahahhahaha + oxymoronic + remebered + strongbowdarked | 76 | 0.0089413 |
1200 | jeremykyle + rip + david + beckham + george + harry + cody + neil + cramer + wanker | 420 | 0.0494125 |
805 | jeremykyle + scum + bastard + twat + puel + breathing + footy + fixthisshit + game7 + joewicksthebodycoach + johnsnow + malfeasance + papoos’s + papooses + plinkey + poaching + robporter + roughedd + tigercubs + unseat + yoghurty | 110 | 0.0129414 |
1003 | jeremykyle + wildly + jermaine + goat + klaxon + walsh + thechase + bradley + 5.7m + arronbanks + asazi + boikot + bronsons + commoner + cuckhold + dayumn + financials + fuuking + hammy + hussies + inners + jazz’a + kimak + michaelmcintyre + orthoptist + pedalling + policeman’s + unimaginable | 98 | 0.0115296 |
463 | jesus + christ + wept + win + lord + cute + sweet + xx + fucking + gabriel | 320 | 0.0376476 |
1691 | jewels + dropped + aguirre + brain’s + cabage + cthonic + falli + gargantua + ghostmane + glutened + labourin + pensioned + sarcastica + selfacceptance + titani | 65 | 0.0076472 |
1219 | jiggle + sick + manure + convinced + belief + 10er + instagramdowm + softbot + thwomp + makes | 132 | 0.0155296 |
1600 | jnbl + join + saturday + gameday + event + september + pilot + 9.30am + meal + joining | 77 | 0.0090590 |
1393 | jnrs + missengland2019 + headship + nike + montfort + garter + bbcradioleicester + nighttimephotography + vestige + lcfc | 175 | 0.0205885 |
1126 | johnathan + jacques + jean + cuvelier + boop + sharring + iax18 + unitingtwoworlds + rascal + ribena | 94 | 0.0110590 |
1644 | join + newmusicalert + newmusiccomingsoon + chef + july + guest + event + drops + shaf + newmusic | 245 | 0.0288239 |
1457 | joke + weird + drivers + painful + baffling + honest + happening + bedroomed + bidets + colonsay + leagueops + ludacris + mauritians + moratta + osaurus + putaringonit + tautology + termatior + texters + tooney + ukhousingbikeclub + zoella | 251 | 0.0295298 |
1201 | jr + cooper + bobby + 6ix + 9ine + abdurrahman + alinfeevs + banderas + beastwangonair + benaloune + deronda + gurumusik + lokko + mertasaker + regalmusic + sanada + schmurda + sczesny + snacc + spoilamoviein2words + spreadbury + tongiht + yeahboyd + yrah | 102 | 0.0120002 |
764 | jumps + areoplane + dahlin + enjoyitall + evears + goethe + hepicopter + hermano + jokanovicin + palla + sugared + superclásico | 119 | 0.0140002 |
982 | kabhi + juicy + aang + bryllcreem + coords + galz + gham + khushi + mastrepieces + tesoro | 53 | 0.0062354 |
315 | kadiri + launderette + kadiri_news + highfields + evington + news + kadirinews + slush + kadiri_newsagents + sweets | 209 | 0.0245886 |
407 | kadiri_news + highfields + evington + kadiri + sweets + leicesterhairstylist + kadiri_newsagents + leicesterhairdresser + darissa_hair_mua + tagyourtalent | 355 | 0.0417653 |
580 | kanareunion + tweetiepie + sweetie + labyrinth + distinctly + reme + regretting + hectic + flooring + nt | 61 | 0.0071766 |
294 | keepyourfeethappy + thehappyfootclinic + healthycuticles + healthynails + happynails + scentedcuticleoil + birthday + keepyournailspretty + happy + cuticleoils | 75 | 0.0088237 |
374 | ket + laughing + loud + girl + bitch + guy + words + gonna + fuck + shut | 3335 | 0.3923585 |
873 | kev + enjoy + 3thousand + onbut + pikapika + see.sound + summerxs + unmute + yourll + admins + busybusy + furman + tinks + tryanuary + tuffers + walnutgate | 72 | 0.0084707 |
1136 | killing + jedi + cut + laying + bbygirl + executors + jarrodlyle + payable + emoji + cryen + grandstanding + slicer | 146 | 0.0171767 |
1511 | king + merrick + audiodescription + quarry + joseph + stadium + statue + lestweforget + lcfc + power | 164 | 0.0192944 |
1283 | king + newprofilepic + post + filmsthatarecriminal + link + found + animal + goat + legend + video | 5708 | 0.6715389 |
624 | kingdom + blackcatsofinstagram + catsofinstagram + blackcats + united + nikond4 + tamronmacro90mm + cats + streetphotography + photographs | 79 | 0.0092942 |
488 | kingdom + united + 4ward + priz + poundland + comps + babysrus + fencers + toysrus + coaches | 51 | 0.0060001 |
1483 | kingdom + united + boxed + park + abbey + cathedral + bar + venue + city + funs | 385 | 0.0452948 |
1501 | kingdom + united + comedyclub + livecomedy + standupcomedy + bioderma + comedyfestival + standup + alston + chim | 79 | 0.0092942 |
1479 | kingdom + united + gals + kobe + duties + hoodie + boardingschoolboarding + coffeepint + debbies + gofurther + itsnormal + mynewhome + rakki + richardarmitage + seanys + sexyman + tommy_lennon_ | 59 | 0.0069413 |
1489 | kingdom + united + leicestershire + deephouse + newmusicmonday + nitinkumar + soulfulhousemusic + soulfulhousesession + soulfulhousetunes + museum | 132 | 0.0155296 |
1482 | kingdom + united + mng + areacode + tnc + malemassage + malemasseur + city + beefeater + dailypic | 161 | 0.0189414 |
1485 | kingdom + united + nethermoor + guiseley + roadtowembley + stockton + emiratesfacup + astronauts + qualifying + bbc’s + undergraduate | 177 | 0.0208238 |
1480 | kingdom + united + park + abbey + victoria + city + cathedral + leicestercity + leicestershire + highcross | 2303 | 0.2709450 |
490 | kingdom + united + pausemedia + vintagebollywood + rhiannamanani + mua + photography + nims + boutique + model | 52 | 0.0061177 |
1434 | kingdom + united + stadium + wes + nt + hvac + lcfc + applause + degree + king | 172 | 0.0202356 |
1477 | kingdom + united + tigers + brood + thy + 2018bestnineoninstagram + americanfootball + amiallowed + aylestonecommunityawards + brûlée + corpsing + deepthoughts + diwalileicester2018 + engagemet + graceroad + gtb + heartshine.sal + ifounditlikethis + jasmin’s + kningpowerstadium + leicesterpanto + leicesterpride2018 + locat + longhorns + merrymen + ncode + npro + onebignye2018 + pieszczek + ponderment + royallondononedaycup + saffronlaneshopfronts + shimmylikeyoumeanit + sills + sydne + thechickenbaltichronicles + therapyroomsleicester + throwbackmusic + tinaturner + tittering + touristing + twoyearsenglandleicester + typicallytinashow + veryexciting + wheresthebear | 79 | 0.0092942 |
320 | kingdom + united + vince + deadlifts + golf + amagraduate + ballestero + beingextra + caddyshackersleicester + catspring + fauxleather + gibbstaa + hollins + jellylegs + kirstyblackwellphotography + loughboroughtoleicester + makingitcount + orwell1984 + sargent + sevvy + zaramen | 77 | 0.0090590 |
1487 | kitchens + buildingibd + architecture + interiordesign + interiorsbydesign + burlesque + chicas + locas + showcase + dragonball | 69 | 0.0081178 |
1481 | kitchens + buildingibd + interiordesign + jointherebellion + architecture + showroom + tickets + tickledpink + interiorsbydesign + ppf | 64 | 0.0075295 |
1254 | kno + frenchexit + mees + passy + mighty + chlorine + skis + syfy + taffy + dotun + hope’s + trotters | 121 | 0.0142355 |
1464 | knowingly + earnings + resolved + 360p + appts + clarifications + consen + customers.took + eureftwo + facebookgate + leicswin20one8 + passworded + practioner + reafy + virginrail | 51 | 0.0060001 |
1496 | komatiite + quest + chastity + amiga + sewn + shoved + ars + panties + sissy + shelf | 109 | 0.0128237 |
1259 | krazy + arctic + louder + monkeys + bananana + chloeout + heartier + humours + keepmoat + swimmin | 73 | 0.0085884 |
896 | krypton + syfy + watched + luther + bulimia + carbonation + endofthefxingworld + jefferies + qnd + thearchitec | 53 | 0.0062354 |
1207 | kun + craving + philadelphia + blackfriday + sleep + 7.23am + faya + manhattans + marving + tastys + todsy | 56 | 0.0065883 |
1529 | kurtz + day + newyork + 2004 + patent + week + firsts + yesterday + masala + river | 164 | 0.0192944 |
1538 | la + grindhouse + refix + ukbass + ukhouse + magazine + crocodile + martin’s + comedy + gates | 73 | 0.0085884 |
1737 | labour + brexit + referendum + eu + conservative + iran + party + deal + tory + theresa | 107 | 0.0125884 |
686 | labour + vote + tories + tory + party + borrowing + democrats + brexit + democratic + remainers + ukip | 53 | 0.0062354 |
508 | lambo + thinking + boyfriend + braces + theresa + bestfriend + grenfell + carrot + apparently + theapprentice | 237 | 0.0278827 |
1105 | lana + cutepuss + drempt + natashamina + nsama + shareboxes + wwemmc + yesproject + catscountdown + compromises + smudge + unlikelypsychicpredictions + valchanginglives + viscous | 101 | 0.0118825 |
1022 | lancomegwp + wait + haha + butts + vegan + birding + water + warmth + beer + pokemon | 203 | 0.0238827 |
959 | lasvegas + sportsman + playground + wrestlemania + vote + 1.25 + bebrilliant + bumbaclause + for610 + granddaughter’s + moni + thepaway + waterbridge | 66 | 0.0077648 |
1286 | laugh + linked + braggers + eminem’s + fcks + galvanize + lifeisprecious + parrysparody + pubescent + youmatter + youngens + zuckerburg | 71 | 0.0083531 |
1247 | laughing + bubeck + generalized + muchato + shelliest + tellwhy + wheatos + gaydar + soundtr + sister | 60 | 0.0070589 |
455 | laughing + chelsea + loud + laugh + oxtail + beep + hilarious + fuck + crying + ffs | 187 | 0.0220003 |
717 | laughing + cometh + loud + neek + comedian + baddaz + irewal + sugababes + ass + francesca | 50 | 0.0058824 |
980 | laughing + loud + appeased + barma + greenbelt + hott + out’s + tinderbox + cladding + suckin | 66 | 0.0077648 |
720 | laughing + loud + ass + brilliant + hilarious + fucking + lool + init + cap + yeah | 504 | 0.0592950 |
722 | laughing + loud + ass + funny + crying + triggered + fam + honestly + mad + nah | 2593 | 0.3050631 |
637 | laughing + loud + fuck + fives + gameofthrones + 1800th + djwkdnskskd + exchequer + hyun + isand + mainz + per’s + rasengan | 115 | 0.0135296 |
346 | laughing + loud + funny + ass + imagine + laugh + fucking + literally + haha + mate | 8672 | 1.0202497 |
458 | laughing + loud + funny + fuck + ha + guy + laugh + bro + nah + wat | 12138 | 1.4280202 |
612 | laughing + loud + haha + funny + mate + yeah + tears + nah + people + tweet | 1529 | 0.1798849 |
903 | laughing + loud + huh + reo + speedwagon + tobacconist + cudnt + franz + lfcvcity + whats | 87 | 0.0102354 |
433 | laughing + loud + laugh + ass + dead + fuck + hilarious + funny + loveisland + funniest | 1180 | 0.1388255 |
525 | laughing + loud + madders + 2facedpiers + badpand + breastisbest + concencus + hesslewood + jintro + kinowoke + lookersec4ben + mert + pigeonoutsider + skintoskinlove + squalid + suckingup + yasen | 68 | 0.0080001 |
1097 | laughing + loud + mbio + urgot + wombats + sore + pun + creams + amateur + anytying + bwipo’s + casetify + chocolatine + confines + elliegould + eyehealth + frank’s + fulbourn + joyed + kathmandu + mcaleese + optometry + optomlife + ripjohn + salazars + salut + sate + secombe + shattap + snuffle + spt + sweet’s + thermos + whynosoundaward + whysoquiet | 239 | 0.0281180 |
333 | laughing + loud + people + girls + guess + fuck + ffs + wrong + shit + stop | 5701 | 0.6707154 |
721 | laughing + loud + screamed + flubbed + illbleed + muvver + oisin + orgasmed + propositioning + table1 + wyla | 52 | 0.0061177 |
1364 | laughing + loud + watching + assaulting + mumford + love + watch + swear + watched + unironically | 281 | 0.0330593 |
1373 | laughing + loud + women + people + niggas + girls + stupid + arseholes + unpopular + common | 188 | 0.0221180 |
1016 | laughing + people + loud + fuck + shit + brexit + feel + life + agree + yeah | 61392 | 7.2226902 |
1360 | laughing + people + loud + laughed + humans + immigrant + endgame + dumb + 320p + 6seasonsandamovie + 77jubilee + contractor’s + disinterest + gnomeo + libra’s + llow + loud.well + stooped + tbvfh + trishapaytas + unfashionably | 132 | 0.0155296 |
869 | laughing + true + sounds + loud + waiting + bit + yah + ass + damn + wee | 2795 | 0.3288282 |
1408 | laughing + understand + loud + cried + acc + lot + barbie + love + imagine + baffoon + caos + chesh + cracker’s + laffen + limmy’s + midnigh + moicy + punk’d + resembl + seokjins + stefflondon + tittiess | 168 | 0.0197650 |
1258 | lawrence + fitness + 5mths + audioblogic + bigpedal + birdlife + blaw2019 + bookofshadows + cameofameo + cheapflight + decathlon + embroiderer + finess + foundinthespiderweb + jeret + leteverythingthathasbreadthpraisethelord + mylestones + oadbyapaw + optimistically + postyourpicandgainwithfam + praisegod + rccg + startline + stuntcoordinator + summercrush + tema + yearofcolour | 72 | 0.0084707 |
1492 | lcfc + bollyshake + stadium + encourages + king + power + enterprise + eddies + nopalmoi + shorted + weeklydesignchallenge | 169 | 0.0198826 |
541 | lcfc + chelsea + league + vardy + fans + games + lfc + england’s + rashford + player | 199 | 0.0234121 |
543 | lcfc + league + players + goal + game + player + liverpool + season + win + fans | 23676 | 2.7854511 |
540 | lcfc + liverpool + spurs + goal + league + penalty + players + player + arsenal + chelsea | 684 | 0.0804717 |
1646 | leadership + discussion + development + communities + approaches + wip + humanists + tackling + loneliness + ahp + gamedev | 139 | 0.0163532 |
330 | league + arsenal + penalty + wenger + utd + 0 + season + concede + keeper + salah | 139 | 0.0163532 |
1156 | lecturers + itsofficial + scion + snowpatrol + theapprenticetwenty18 + throwupthex + uniformed + valid + dubya + nakedness + pfeffel | 74 | 0.0087060 |
1069 | legs + heart + bdaypresent + dilution + skkfjdjsksk + unbuttoning + gnashers + gyming + lisboa + llm + tocks + volks | 88 | 0.0103531 |
1490 | leicestershire + burlesque + artsy + chicas + tribalfusion + skytribe + locas + art + stadium + burlesquetroupe | 278 | 0.0327063 |
9 | leicestershire + manger + highcross + roundhill + adult + nixon + learning + bees + knees + court | 98 | 0.0115296 |
111 | leicestershire + rapper + boastful + santhi + 00miles + narcissisism + leicestershirelive + malignant + v.i.p + entourage | 67 | 0.0078825 |
198 | leicestershire + smilesbygurms + clearbraces + invisalign + quickstraightteeth + braunstone + cosmetic + bonding + vue + whitening | 206 | 0.0242356 |
1142 | leicestershiregolf + festive + fut19 + christmas + tickets + golf + fifa19 + fut + ninth + blackberrie + chickenkeeping + christmasjumpers + englandgolf + fathersdaymeal + fia + fifaultimateteam + futchampions + getintogolf + guildhall’s + handma + kaykay + kingofthegrill + libbynorbury + mariachi + mixin + physicschristmas + sausa + totgs + youwonnapizzame | 61 | 0.0071766 |
1215 | leinew + oaf + glassworks + gurriel + hibab + morningboom + shmoke + sleeplikeahero + valderrama + goatee + greb + hoodrich + rakshabandhan | 97 | 0.0114119 |
288 | leiscester + mng + swami + ji + detailed + ganga + kingdom + united + shooting + documentary | 61 | 0.0071766 |
816 | lending + proved + barbecuing + boycot + copyrights + fashi + fucku + guaidó + leeson + opprobrium + ugl + venomous | 50 | 0.0058824 |
1660 | lent2019 + morningprayer + rhaegal + determination + murakami + boast + energy + weirder + lord + flesh | 121 | 0.0142355 |
771 | leriq + flirt + wait + 21days + actin + changemanagement + cheekysmile + choicestyleicon + dadjoke + derbydays + everylittlehelpsright + hdbsjbsjana + hotcakes + lusciouslips + mummas + perries + porsha’s + superduper + teguise + thatsanotherdaygone | 154 | 0.0181179 |
267 | lesserknownkindsofwars + bbcradioleicester + leiche + winners + pro + cup + app + beat + war + final | 73 | 0.0085884 |
1684 | library’s + kimberlin + rothschild + join + lease + recruiting + floor + event + friendl + redevelop | 143 | 0.0168238 |
402 | lies + madness + liar + amazing + scenes + staysin2018 + bolero + tranquil + incredible + craziness | 56 | 0.0065883 |
1495 | lighting + mamokgethiphakeng + pulselighting + meeting + install + exhilarating + conference + iwd2018 + youtube + team | 208 | 0.0244709 |
548 | like4like + follow4follow + bambibains + boutique + nims + mua + goodvibes + goodnight + jewellery + copperjewellery + handmadejewelry + maharanichokersetfrom + weddingfairs + weddingvenues | 67 | 0.0078825 |
761 | lilia + taila + teampixie + xx + beginnings + gent + sweetest + fiona + glenn + david | 50 | 0.0058824 |
70 | lineofduty + ted + number’s + pure + mother + bent + copper + grateful + vindhya + joseph | 212 | 0.0249415 |
83 | links + count + adoption + protests + chance + included + forced + aiden + click + vie | 121 | 0.0142355 |
1336 | links + lt + monday + iamaphysicist + pages + support + cpr + supervision + client + users | 164 | 0.0192944 |
1223 | listing + etsy + notch + skull + berry + 15mg + 160mg + 20mg + 24kwh + 300mg + 350mcg + 3mls + 40kwh + blackboards + diamorphine + educati + elemen + endcommercialwhaling + footwell + gobbl + grubbed + kustow + liteea + marcain + metabol + oxidant + pigmentations + sickl + teachable | 64 | 0.0075295 |
1422 | literature + andrias + corbn + dealornodeal + diraac + issue’s + markahams + smmh + specificity + spleen + the’adult + unpicked | 73 | 0.0085884 |
802 | liverpool + league + lcfc + goal + arsenal + game + spurs + player + win + season | 7603 | 0.8944832 |
1582 | locos + janie + penguin + birth + doctors + people + valproate + adamant + suffer + diversity | 249 | 0.0292945 |
900 | login + account + dm + darran + le39qb + so’d + mercury + avios + deta + diddnt + perce + timotei | 50 | 0.0058824 |
465 | lool + chance + screaming + im + howling + lolol + cackling + nice + dumelow + liverpoolololol + lmaok + lolololhvx | 95 | 0.0111766 |
473 | loss + goodnight + night + aww + 14daysandcounting + loveyouu + nightt + family + teatotal + tuwaine | 69 | 0.0081178 |
1115 | loud + laughing + jeremykyle + boom + cbb + ryan + yoots + fuck + worse + ronnie | 495 | 0.0582361 |
1387 | loud + laughing + people + laughed + poppies + sense + noo + friendships + weird + im | 199 | 0.0234121 |
1108 | loud + laughing + squadron + dataprotection + esculated + inet + pies + bigelow + lianne + shoeing | 79 | 0.0092942 |
204 | louder + everythi + achieved + supported + people + celebrating + involved + pls + cafss + fuddus | 58 | 0.0068236 |
486 | love + beautiful + heart + bro + proud + stunning + baby + rip + girl + hearts | 955 | 0.1123545 |
659 | love + exciting + pies + proud + delicious + cake + fine + xx + pricilla + tomorrow | 300 | 0.0352946 |
549 | love + fell + wine + nite + cumuli + mosby + nimbus + sunnyland + muchh + myhero | 89 | 0.0104707 |
418 | love + noice + fosco + namers + loving + chef + thefootball + tans + thementalist + steiner | 115 | 0.0135296 |
482 | love + xx + babyg + heartbreakingly + leapy + suni + moree + yaa + lots + xxx | 54 | 0.0063530 |
581 | love + xx + granada + xoxo + miss + babe + xxx + soz + amityville + bbygrl + choicescifitvactor + eben + farout + fertilise + gravitating + mullers + protostellar + theselyricschangedmylife + thesupoort + unharmed + worryign + xhzbxhxhd | 153 | 0.0180003 |
483 | love + xx + madly + gorge + pix + miss + leanne + plughits + sax + zee | 65 | 0.0076472 |
522 | love + xxx + lov + cammy + shortstorycollectionbytinaabrebestseller + xoxx + alka’s + norty + moe + catered + wich | 53 | 0.0062354 |
481 | love + yourii + heart + selfievirgin + babe + baby + bro + beautiful + follow + promise | 451 | 0.0530596 |
617 | loveisland + georgia + wes + laura + megan + amber + hayley + adam + alex + ellie | 152 | 0.0178826 |
688 | loveisland + impendi + politican + dumbasses + muslims + shack + island + establishment + corrupt + loveisiand + temporary | 54 | 0.0063530 |
689 | loveisland + loveisiand + corrupt + georgia + establishment + laura + alex + megan + immigration + dani | 578 | 0.0680010 |
464 | loveisland + planes + 737max + accent + niall + borisjohnsonshouldnotbepm + borisjohnsonspeech + brezase + coachella’s + endearingly + mosthatedmanintheuk + pocketing + schiff + undercutting | 58 | 0.0068236 |
255 | lt + 3 + 33 + 333 + xd + chelle + k0n + lurv + taytay + yeen + yoon | 73 | 0.0085884 |
48 | ltid + coyb + fab + xx + stadium + leicestershire + lcfc + king + power + ltidlcfc | 72 | 0.0084707 |
396 | luck + birthday + 28yrs + shaka + happy + sham + scorpio + mee + franchise + venture | 62 | 0.0072942 |
864 | luck + booyaka + dadgoals + fundads + giveakidthebestlife + greenings + shr + tgtconf18 + tinguk + valueeducation + voteeducation + youreonlyyoungonce | 57 | 0.0067060 |
888 | luck + cinnamoncat + yay + aww + johnny + proud + xx + team + xxx + congratulations | 277 | 0.0325887 |
523 | luck + congratulations + today.go + odi + congrats + chas + deanna + sardarji + satsriakal + shakila | 123 | 0.0144708 |
946 | luck + hugs + tomorrow + taping + download + xmas + wait + scotland + hang + sharing | 188 | 0.0221180 |
843 | luck + news + pinkmagazine + ruti + xx + thankyou + 60m + cinamoncat + woohoo + johnny | 328 | 0.0385888 |
392 | luck + rugbyinheaven + alevelresultsday2018 + coyks + forvalour + ipswichballer + itsboomtime + mindbuilder + onceagooneralwaysagooner + womeninmedicine | 83 | 0.0097648 |
887 | luck + wellocksadvent + congratulations + wherehistorybegins + congrats + proud + xx + bb + beth + baith + dontleavepls + glocalization + jack_mrengland + keanan + nitesh + scottishteacheroftheyear + sharethehobbylove + syuhrah’s + winnersanyway | 108 | 0.0127061 |
889 | luck + yay + deacy + harries + thegrinch + guys + pinkmagazine + cheers + aw + awesome | 220 | 0.0258827 |
373 | luf + shaga + brownies + ding + beatin + gymking + muntari + starhmzi + tecs + arguing | 59 | 0.0069413 |
623 | luffy + sick + sauce + stuart + christmaleftovers + cornmeal + cremeeggmayo + mossy + vaps + chilli | 76 | 0.0089413 |
583 | lunch + oops + brunch + alunacoconut + inthedeep + mcindians + nicu + warr + winitwednesday + matchday | 50 | 0.0058824 |
1302 | luther + closethegap + gunfingers + leeprobert + seabridge + sharkweek + weezer + lou + bangs + gw19 + rosetti + stormzys + waugh | 53 | 0.0062354 |
341 | lvl + follow + lashlift + lash + thebeautyhavenleics + instalashes + nouveaulvl + lift + lvllashes + naturallashes + nouveaulashes | 82 | 0.0096472 |
918 | lynda + comm + eaton + cllr + sunday’s + 1963 + 260st + althusser + brigden’s + cambria’s + disadvantages + freego + gen2 + gene1 + hallvard + jmasouri + kalamazoo + onlyonepxg + oscarprincemusic + otmoor + pilotlife + segamastersystem + sidebottom + steffens + sundaygolf + unheavenly + usernamelondon + wined + wmn + wotsapp | 78 | 0.0091766 |
1441 | m8t + enemy + cantdecide + hosptial + cults + melancholia + analogies + intrude + scoliosis + shiro’s | 59 | 0.0069413 |
278 | mad + shot + quality + dude + arsenal + class + 13reasonswhys2 + criming + lmpocibal + mcmbirmingham + memorys + superbikes + topiary | 177 | 0.0208238 |
639 | madness + smart + yeah + init + chills + cold + dementiacarecrisis + reverent + smarty + badness + horniness + tightness + yaass | 57 | 0.0067060 |
474 | magic + sksjjshshhshssh + blessings + celaire + corbynout + akshay + deen + kumar + yessir + dynamo | 57 | 0.0067060 |
172 | makemyfriday + missguided + morning + calamari + himilayan + mongolian + perfecting + styled + 9,0 + prawn | 129 | 0.0151767 |
773 | makeyourowncorbynsmear + corbyn + erg + jeremy + meek + circle’s + imnotsorry + kxipvkkr + marathi + rastafarian’s + rednapp + touchs + whyijoinedtwitter | 64 | 0.0075295 |
336 | mammy + ah + tae + ma + heer + onna + mebbe + um + wee + hee | 126 | 0.0148237 |
1593 | marines + kop + morrison’s + stand + ripped + 88a + 9ft + accursed + alfstewart + bangon + bdw + belgravehallgardens + blighters + boerne + ebony’s + famoly + fatale + from.they + guinevere + inthelongrun + irmin + jarofdirt + lampstand + mosiacs + od’d + rove + setinthe80 + vagrants + zephaniah’s | 60 | 0.0070589 |
442 | market + holders + buys + stock + biddies + changeable + daily’s + gyrations + immigrate + pge + volitality | 50 | 0.0058824 |
1384 | marketing + harborough + sampling + city’s + business + funded + mugs + 1.8m + 350t + 720s + albertdock + attentional + autoplanner + barbastelle + battleofsaragarhi + bhaktapur + cfa’s + cherylholding + connectmecafe + coverag + dementiaactionweek2019 + doctoralcollege + dower + durbar + ehi + ema’s + entrepreneursprogramme + eqw2018 + focusin + getshitdone + highstreetratesrelief + hypercar + jackpinpale + letstalkmh + lga + lgaworkforce + lipreader + lptyoungvoices + marketingtips + mather + npqsl + pathwa + promin + psicareers19 + relatio + ryedinghigh + satdium + secondday + sinkerstout + smallbiz + spacetech1718 + spreader + supercarsunday + tenantmanagementworks + tuiti | 84 | 0.0098825 |
696 | married + discriminate + unfollowed + dumb + elected + people + cousins + insidenumber10 + jaide + mokes + msd + shushed | 79 | 0.0092942 |
1062 | martial + watchin + bielik + crudd + fugley + gypsyking + janika + lookum + malonee + masher + megazone + mollyy + natt + pudu + siruh + sonraki + tengs + thirdinatwohorserace + tranna + zedebee | 84 | 0.0098825 |
863 | mascriding + islam + charlatans + illiterate + prisoners + 80 + rooted + loveisland + monty + europe | 52 | 0.0061177 |
599 | masha’allah + mashaallah + airpods + aced + azadimubarak + breakfastexecutive + catlovers + dogsdaytoo + eatcontinental + finepeoplefromsierraleone + g66666666 + happymothersday2018 + hdbeauty + leger + loungemarriot + mahsallah + myheartismush + rbahia1991 + sieved + waynak | 119 | 0.0140002 |
957 | massage + glasses + eaten + 9am + inches + weather + 13p + batchelors + disappointingly + mrsa + sorento + umbria | 78 | 0.0091766 |
657 | masstechnology + mttnstore + trademark + tescoexpress + annajeebhq + eastereggs + adultwork + net + annajeeb + bodyshopathome | 99 | 0.0116472 |
527 | mate + yeah + laughing + crapfactor + agree + cunt + fuck + loud + true + shite | 4960 | 0.5835376 |
910 | mathswwc + coq10 + edema + macular + rvo + sweepstake + fireleicester + numeracy + algorithms + department | 95 | 0.0111766 |
1587 | maythetoysbewithyou + _mamta + 12daysofjones + museum + zine + vibronics + djing + submissions + lestweforget + exhibition | 59 | 0.0069413 |
727 | mcdonald’s + baklava + tuesday + treat + dlamini + eggs + sundaybrunch + bath + iced + mcdonalds | 66 | 0.0077648 |
176 | mckenzie + archives + welterweight + 90s + boxing + tony + professional + british + light + champion | 75 | 0.0088237 |
1238 | mealtimesmatters + pg + alleviate + chrixbuilds + comicbook + deskstudy + discographys + gaafar + gallantry + greatdays + hisham + interv + jembling + jiving + lancelaunch + liveliness + longmire + neologism + nichola + powerofsocialmedia + racunari + samwell + soccerstreams + soundc + tarly + teamisla + twilightwalk2018 + wardour | 95 | 0.0111766 |
593 | meantime + catalan + disobeyed + extractor + godards + hailthesun + nissed + swmbd + tradgic + wolcru | 54 | 0.0063530 |
1484 | meeko + wilbur + adopted + month + 9three0am + bloodletters + compassionately + elissia + limitingbeliefs + malamute + perennials | 56 | 0.0065883 |
1653 | meeting + fantastic + students + event + session + support + forward + wonderful + charity + lots | 552 | 0.0649421 |
1009 | memes + dalalai + heysiri + mofos + organises + patronized + peopleshapingp3 + qualityfiction + abegi + acquainted + addi + fifa’s + grotbags + manche + powercut + reimburse + toplads + twittertunes + verymerewards | 95 | 0.0111766 |
622 | merkel + pinkipa + yami + condescending + globalists + blanc + eu + bitch + jeremykyle + save | 123 | 0.0144708 |
547 | merry + christmas + mother’s + happy + mubarak + father’s + eid + ramadan + mothers + allah | 435 | 0.0511772 |
423 | merry + christmas + xmas + eve + christmasjumperday + happy + 12daysofchristmas + wishing + guys + santa | 545 | 0.0641186 |
1516 | metafilter + cortisol + importance + vertical + attend + children + feed + protein + botw + cbdengland + cdb + crossbones + datascience + diggle + doubleneck + frictionless + housingassociation + middl + norse + proteios + rememberedeverythingelse + restating + riscpc | 78 | 0.0091766 |
1300 | mhra + duplicating + return + file + automatic + livesnotknives + assessment + 17 + forming + db | 74 | 0.0087060 |
397 | mi + nuh + dem + di + yuh + fi + ah + mek + seh + inna | 259 | 0.0304710 |
1641 | microbe + sth + 1mp + abstractions + allocat + aret + barometer + courted + defiçiency + follwed + grandmothers + mordin + munroebergdorf + salarian + solus + talke + turian | 54 | 0.0063530 |
1117 | mideastlks + breixt + librarians + plug + smelly + lesson + sea + possibly + disappointed + ated + comeracing + eachothers + guttedforhim + hearingloss + judt + malevolent + minstrasy + ngqa + precum + premen + shouldick + smarttech + surender + symbiotic + worldbollards | 168 | 0.0197650 |
457 | mince + comfy + ablo + luchagors + sakeena + uproariously + washers + navdeep + physicist + preed | 55 | 0.0064707 |
426 | mincing + sprouts + valentine + activily + magson + students.this + valentines + boogy + datway + draghi’s | 68 | 0.0080001 |
808 | mine + speak + marry + fab + vibes + borek + crackham + deff + dissodone + hemorrhoids + myrdoch + quotidian + simpal + tgem | 179 | 0.0210591 |
355 | miniature + fimo + guineapigs + guineapig + miniatures + guinea + pets + pigs + cute + pig | 54 | 0.0063530 |
237 | minibikers + learntocycle + balanceability + cycling + cudabikes + toddler + learntoride + bike + independently + riding | 70 | 0.0082354 |
1051 | miriam + watched + generic + nicki + buonannonuovo + drumline + godsofegypt + horrendo + intaferon + lemocrats + oldskoolhiphopbangerstop20 + realeased + rites + sbvi + sene + simz + spazaz + stavs | 62 | 0.0072942 |
1040 | mirror + bitch + shit + real + lifes + fork + snitch + damp + ja + forever | 153 | 0.0180003 |
1316 | mirror + feel + home + bored + assignment + dollar + stripper + surgery + waved + walking | 203 | 0.0238827 |
1290 | miss + liking + strongly + buss + content + insta + watched + 40ft + apchat + dougal + hahahh + inferential + joshuavparker + kany + reuploaded + rudeboij + snapchat’s + trickshotting | 118 | 0.0138825 |
1227 | miss + parenting + teacher + bants + kelis + photography’s + randomest + sheneedsamakeoverbyamua + tweety + reply | 72 | 0.0084707 |
1558 | mistake + home + generated + read + unwell + books + bought + spelling + morning + grammar | 118 | 0.0138825 |
1282 | mistress + 6td + aristole + cquin1b + mofkrs + isis + albertfinney + glowin + reinforcements + senco + zzzs | 56 | 0.0065883 |
212 | mixture + blindfold + widows + bled + mouldy + pillocks + pish + tbqh + bit + duh | 78 | 0.0091766 |
227 | mmandmp_pro + premierleague + premier + bradgate + finish + league + weekend + lovely + queen + win | 102 | 0.0120002 |
265 | mng + inktober + kingdom + united + slobbering + inktober2018 + foxes + illustration + shararas + lcfcfamily | 102 | 0.0120002 |
1182 | moin + kevinthecarrot + mugged + chanting + ahkmenrah + ankara + barmyarmy + festjustsaying + grudgeful + ineverdance + liztruss + mediaeval + moscovites + pisspoortours + rican + teamaquaria + teamkameron + trumpshutown | 82 | 0.0096472 |
555 | moment.strict + startsomethingpriceless + tories + engvrsa + immigration + majority + rwc2019 + liars + clein + government | 79 | 0.0092942 |
1701 | moms + kill + xml + tend + disorders + excuse + arsehole + heard + ˈtɛm + 1909 + aldub + beeing + compartmentalise + completeled + defer + esta + f6 + giveyourselfabreak + hinterland + m.adams + mian + noneth + petulance + piont + scurril + susu + susus + tempts + trəs + typi + ulti + vicarious + xhtml2 + youself | 132 | 0.0155296 |
1176 | monday + night + till + spag + week + day + 5am + cheeseboard + chivvying + fatloss + gonegirl + gulps + lunctime + mansa + mumsquig + oneoneam + squezy + sucka + sundehh + weightgain | 155 | 0.0182356 |
1087 | mondayiscoming + enjoy + aural + image + images + love + fab + dice + photos + sax | 312 | 0.0367064 |
658 | moneym + million + lcfc + city + utd + mahrez + united + maguire + 60m + southampton | 135 | 0.0158826 |
937 | montfort + university + de + dmu + djing + kingdom + united + djrupz + iphonegraphy + thevenueleicester | 200 | 0.0235297 |
749 | mood + lipgloss + yhh + balancelife + beppy + bestpizza + fahad + fever.x + killah + lifebalance + lurggy + muwallad | 120 | 0.0141178 |
1047 | mood + mane + worldcupofthedecade + broad’s + harryrednap + irtgtfasap + longeatoninvaders + maddsion + peaksandtroughs + rematchakimbo + swingsandroundabouts + wollop | 57 | 0.0067060 |
108 | mood + mooded + shmood + fr + af + moods + rly + asf + perfectly + process | 81 | 0.0095295 |
337 | mood + nims + boutique + thread + breathes + brain + current + rasier + lucy + year’s | 544 | 0.0640009 |
338 | mood + sooner + fat + current + page + merrier + storms + mj + 1000 + backwards | 54 | 0.0063530 |
438 | moose + pig + 30daysofhappiness + morning + happy + lips + lippy + anniversarykudos + breakie + wakey | 680 | 0.0800011 |
439 | moose + pig + complexion + dance + kudos + flawless + hellodecember + tuesday + true + appreciatethesimplethings + bedaring + belimitless + everylevel + everymoment + fridayist + happinessisfoundinsimplethings + hippywarrior + justkillingit + nolimits + openroad + rememberingthoseyearswearingpointshoes + secondincome + sheis + simplethings + takerisks + tinyhappythings + vishal + walklikeawarrior + workfromhome + youdontneedtobelogical + yoursoulwillspeak + yourstrength | 135 | 0.0158826 |
381 | moose + pig + necklaces + earrings + tikkas + royal + tigers + collection + tigersfamily + velvet | 261 | 0.0307063 |
1159 | morganout + peepers + pfn + schwebebahn + skullduggery + rich_draper6 + braised + diabete + anit + ef + rapha + safest + soonest | 65 | 0.0076472 |
246 | mornin + coffee + ave + souds + drinkin + fluids + 5.30am + plenty + gud + warm | 51 | 0.0060001 |
150 | mornin + glory + pallet + wraps + shrink + cardboard + materials + packaging + deals + boxes | 76 | 0.0089413 |
495 | mornin + hows + thepond + ticket + tickets + stealth + watchin + babe + xx + brinsworth + crinklow + gynaegang + hearbyright + interveiw + macky + mackygee + peecekeeper + pppn + tjay | 61 | 0.0071766 |
245 | mornin + im + rainin + monday + thepond + washin + ive + mite + yep + shorts | 177 | 0.0208238 |
132 | mornin + nite + thepond + pleasure + olowofela + voteolowofela + worldrugbyu20s + xx + heartsurgerypsp + breakthrough | 253 | 0.0297651 |
602 | mornin + rain + ding + brolly + rainin + rattling + weathers + booked + wet + drip | 132 | 0.0155296 |
118 | mornin + round + morning + fours + tweeps + napue + sprig + topgirlfriend + whoopwhoop + busybusy + cranberries + tippin | 67 | 0.0078825 |
86 | morning + a2z + atz + tz + hey + 7books + read + lot + nomination + kpop | 258 | 0.0303534 |
1011 | morning + beige + rain + loved + slides + forward + brum + cold + snow + 1h10 + 5.7c + alove + beautifulasyouare + certaint + englishtourismweek + flowerworks + honeymakers + inhabited + leicesterrailwaystation + missef + naturalbody + recurved + waterlilies + youlgreave | 150 | 0.0176473 |
404 | morning + fingertoescrossed + rtweeted + amazeballs + congratulations + beery + eddie + comrade + jered + ep | 116 | 0.0136473 |
302 | morning + frosty + bud + sacked + waking + mist + mate + lee + fave + shopup + sweehar + yedb + yesbelmond | 177 | 0.0208238 |
304 | morning + sexy + horny + xx + babe + um + y’all + gorgeous + britain + tasty | 122 | 0.0143531 |
1608 | morrison’s + lemonade + strategic + pairs + 2016 + 1703 + backstreets + fbp + flt + joulio + logistic + loughbor + opte + parlov + ramallah + segal’s + skyfire + voce | 54 | 0.0063530 |
414 | move + alive + trust + pengness + diminished + woow + unai + trends + motto + sn | 55 | 0.0064707 |
1693 | movement4movement + prof + customers + colleagues + local + inactivity + fascinating + opportunities + teamproludic + bray + technicians | 141 | 0.0165885 |
1658 | mowing + enoug + lawn + pleasing + jesus + christ + puel + sister + negative + helping | 104 | 0.0122355 |
193 | mp + petition + theresa + sign + robinson + helen’s + voiceless + hon + tommy + sis | 138 | 0.0162355 |
4 | mtkitty + cat + may2018 + cosplayers + mcmcomiccon + kitty + iphone + gifs + prize + eleven | 67 | 0.0078825 |
546 | mubarak + eid + eidmubarak + diwali + celebrating + wishing + peace + happiness + al + fitr | 67 | 0.0078825 |
1363 | mum + advents + maladjusted + depressed + grimace + outwards + expedition + godess + interpreting + walloped | 91 | 0.0107060 |
958 | muslim + 1950 + fascism + globalist + eu + album + hip + song + sculpture + johns | 89 | 0.0104707 |
54 | mytwitteranniversary + joined + remember + twitter + graham + brill + 20yearsinleicestershire + adecadeoftweets + eventnurse + idont + innerpeace + mytwitteranniversary6 + nursesontwitter + tweetme | 238 | 0.0280004 |
1015 | n’night + blooms + bed + enjoy + snow + forward + glad + hues + day + beautiful | 267 | 0.0314122 |
665 | nap + britney + dolly + icon + cagou + dolemite + frustra + krispies + mariya’s + recommende + relevan + sissorh + treas + whereisourchuffingsummer | 51 | 0.0060001 |
911 | naqshonline + store + dresses + womenswear + colours + dress + nims + boutique + glitter + online | 1863 | 0.2191796 |
1180 | nearer + albania’d + blindironman + blockt + catpartsinfilmsandsongs + cheesier + demoninating + frontier + itsallaboutpoo + mfa + raspi + relegationfodder + ridence + singingnmyhead + solidarityforever + stanlio + uttered + vasectomies + walkofshame + whwtatarat + yyes | 84 | 0.0098825 |
1513 | neighbourhood + cushing’s + pituitary + edt + helpful + mental + inspiring + health + disease + committee | 129 | 0.0151767 |
1683 | nepotism + censoring + monstrous + racism + discrimination + stupid + speak + corrupt + muslims + apposing + barelvis + bettermanagers + blairlike + clai + corb + deobandis + eardrums + emissary + glasshouses + hallow + hôtel + monge + polonecks + pourtalès + rotich + shootin + swarmed + turpitude + uncoils + venality + yaya’s | 86 | 0.0101178 |
882 | nestle + crushed + factory + hundreds + jordanova + ludmilla + quirks + prof + engines + chocolat | 122 | 0.0143531 |
962 | netflix + film + raped + riverdale + episode + 0130 + 0230 + edginess + escapetoathena + ishmael + kenya’s + leftenant + lootenant + mashin + me.r.o + migingo + montesquieus + mumbo + photocopied + rogermoore + slr’s + statement.have + storks + tgsalearningisfun + treks + uganda’s + way.this + win.they | 130 | 0.0152943 |
895 | netflix + heinz + loved + 03.45 + anerican + cyberverse + doerr + likevthe + mayitlastforever + mfl + najeeb’s + roadtorecovery + sjp + tardigrade + tawny | 99 | 0.0116472 |
1026 | newcomerfairytale + spider + walaalo + banger + fucke + impala + iwe + zeph + mangled + ctrl | 51 | 0.0060001 |
851 | newfoundland + avi + header + eve + descendent + dungul + eecomelbodo + joelycettsgotyourback + neenaws + pushingmyluck + silme + suys + unassailabletalent | 80 | 0.0094119 |
1668 | newmusicalert + teenspirit + opticians + donation + nhs70 + newmusic + rehearsals + 535 + akwaaba + asianfaceofmissengland + championsbrandagency + cheyettesaccountants + deepa’s + falalalalah + groovehorizons + hakomou + hockney’s + kykellyofficial + loler + lptactivetravelweek + moodle + nativ + ncc + neilands + notti + onlythebrave + qurbani + secretgarden + sideshift + taxseason + thebeautygeek_atthemu + townkins + turinepicurealcapital + worldentrepreneursday | 71 | 0.0083531 |
554 | newprofilepic + allcrossed + xxx + evenin + homeiswheretheartis + makotoshinkai + smile’s + weatheringwithyou + winbenandholly + youngs.tom | 66 | 0.0077648 |
1209 | newprofilepic + choo + lovely + bitno + caketable + coomuter + crewey + ctr + custodians + freedomchildpicks + guado + instacousin + instaselfie + instawedding + lololo + mamoojee + neversmashed + nmiai + patternedd + remastering + samiraandamilliontypes + shapey + simmervibes + teggys + torycuts + tsacousticep + wednesdaycrushwoman | 103 | 0.0121178 |
339 | news + excellent + oneofourown + coys + breaking + reroute + rivally + talkshit + endeavor + vtid | 79 | 0.0092942 |
561 | nhctownnearme + bullshit + trash + del + 84thleicesterlittlethorpescout + anybodygoingtolondontourfromleicester + bringingbasicback + flatpackempirehowdothetgetthesejobs + nhctownearme + yeah’at | 63 | 0.0074119 |
301 | nice + angelface + matkins + bronya + ilysm + babyy + babe + cindy + maeve + baby | 52 | 0.0061177 |
146 | nice + bowles + ribena + mist + contacts + kettle + ollie + fits + uniform + sally | 62 | 0.0072942 |
271 | nice + redolent + sexy + cool + coil + ukspace2019 + yorkshireman + naughty + jody + respectfully | 50 | 0.0058824 |
114 | nice + sweetie + writes + lottery + ff + raise + fan + stark + buy + tickets | 228 | 0.0268239 |
1210 | nickleodeon + annoying + shocking + clout + heard + people + 104bpm + alcott + assia + chegwin + cuntish + disdaining + dssawrehjffssd + fik57 + horribles + klara + lys + mixrace + obeyed + suuwhooped + thebritawards | 129 | 0.0151767 |
1092 | nigga + bastards + landscapebandsorsongs + thearchers + queen + drummer + roar + fuckers + 3.50ko + affectations + ashworth4pm + bosso + bumba + dineo + edgeimundo + eygptian + groundhoppers + hooky + kangdan + kickback + mutton + ohmyfest + sashay + scarced + supercouple + surridge + vulgarian + yawande | 140 | 0.0164708 |
1091 | nigga + thearchers + surbhi + guy + nosurbhinoishabaz + gravy + imaceleb + keef + lil + bitch | 260 | 0.0305887 |
1311 | niggas + disgusting + mad + tweet + funny + town + thread + pregnant + scary + shit | 986 | 0.1160016 |
1262 | niggas + dope + niggaz + dead + move + animal + yoh + deserves + heads + weird | 254 | 0.0298828 |
1261 | niggas + y’all + chyna + hunted + barstols + cahil + hisshirt + iheartraves + inthe + nahjhghgh + narns + odili + reassures + unfairness + unrecovered + wrips | 113 | 0.0132943 |
1257 | niggaz + ate + cockeyed + complainin + famousonthebeach + interflora + lampoon + ninian + ovulating + rockpool + scubaturkey + shallowest + starbeck + takeonefortheteam + thwaiped | 141 | 0.0165885 |
1667 | nightcore + placeshapers + cpd + community + event + selfless + lyric + recognising + graduates + ghana | 54 | 0.0063530 |
241 | nims + boutique + ___________________________ + _______________________________ + jewellery + ____________________________ + ____________________________________________ + luxurybagschoose + ______________________________ + mukhtar_rehman_hairstylist + thanky | 71 | 0.0083531 |
264 | nimsboutique + pajamisuit + guilty + enormous + pajami + forvthe + lt + thumbs + readymade + navy | 149 | 0.0175297 |
85 | nite + toastie + mustard + foodwaste + unitedkingdom + ham + cheese + free + tuckered + toasties | 83 | 0.0097648 |
1451 | nits + grades + crewe + monitor + traffic + fm + spots + image + aborti + allopathic + attaches + bidshorts + burundian + cambridgeanalytics + conveni + dail + debuggers + depar + eggfreezing + elicit + fingerprintable + inappropriat + inferences + intercity + interviewe + jeweller + ketech + lichensclerosis + ncbs + nicethings + pcad + punit + retina’s + scotrail + tradg + weighband + wonderi | 70 | 0.0082354 |
1682 | noodly + base + students + uhl + adler + studies + meeting + donation + session + honorary | 117 | 0.0137649 |
183 | nope + pomes + budging + quickest + involve + piercing + guard + yup + perfectly + gunna | 54 | 0.0063530 |
1102 | notebook + 200s + 42sq + councelling + holidayreads + lenghts + moodymann + ńot + slosh + gothel + memorising + specialized + sundress + tove | 87 | 0.0102354 |
1025 | notty + carwash + kno + notinterested + secondreferendum + tizin + primed + wondurfull + bouff + calms + queenie | 94 | 0.0110590 |
860 | novelist + shoes + ima + accentchallenge + desd + gutho + haemostasis + oddaa + oluwa + scosmr + sunlit + thatwhitefriend | 129 | 0.0151767 |
443 | nowplaying + nowplaying️ + onvinyl + hawley + nowpiaying + bunnymen + ipodonrandom + krule + a.s + vinylsoundsbetter | 233 | 0.0274122 |
509 | nowspinning + onvinyl + shadows + kudos + liquid + shades + hawley + supermodel + porn + marlon | 67 | 0.0078825 |
1134 | nt + kingdom + united + stadium + lcfc + jamaican + morningside + king + taiko + power | 142 | 0.0167061 |
1494 | numan + gary + song + sunbathe + airlane + krys + autumn + cold + playing + pleasure | 179 | 0.0210591 |
1509 | numan + song + ghent + gary + birch + demo + aela’s + birchnell + bridgewater + cocteau + delsol + filles + hospital’s + laisse + leopardstown + marlowe’s + ofm2019 + prayerfully + reminisced + sarson + tomber + wanamaker | 56 | 0.0065883 |
950 | nyc + annualcamp2019 + cumwhitton + itshersnow + missher + omnes + samme + summerlivesonitv + summersolstice + unem + wtestlecon | 56 | 0.0065883 |
372 | o2jobs + savoy + choosing + bags + jewellery + range + evergoldbeauty + pastry + piping + bakery | 65 | 0.0076472 |
679 | oddwaystomakeafriend + disgusting + addabeertoamovieorshow + addonewordtomakeafilmmorefun + legend + addabrandruinamovie + oddthingstocollect + ruinabandnamewithoneletter + rita + addtoystoaband + changeanyvowelsinamovie + filmsthatcanswim + makeahororfilmlescary + replaceawordinamovietitlewithfanny | 204 | 0.0240003 |
1187 | officer + dollar + stabby + exterminate + ausopen2018 + beatmetoit + bkchatreunion + drumstickgate + floatation + kartik + killingeve2 + liesofleavingneverland + lunartics + moonies + morghen + moyda + niggs + nilesh’s + overseer + radice + sake’s + showingmyage + surelythiscouldneverhappen | 131 | 0.0154120 |
1468 | official + video + music + ft + feat + 2funky + forward + museum + prod + audio | 395 | 0.0464712 |
1645 | one2onediet + jazz + join + scr + funrun + event + 4pm + gt + july + klxud | 101 | 0.0118825 |
371 | online + jewellery + code + delivery + gift + 6pm + christmas + nims + twelve + boutique | 100 | 0.0117649 |
280 | oooh + ooh + prize + xxx + xx + lovely + fab + fantastic + treat + p___y + pizzagate | 64 | 0.0075295 |
1563 | opportunities + development + workshop + techniques + skills + health + patronage + username’s + discussing + welfare | 188 | 0.0221180 |
1350 | optic + bus + patients + patrol + risk + timetable + lecturer + bipolar + park + bible | 128 | 0.0150590 |
1715 | orchestral + sessions + students + interactive + languages + academics + innovative + project + build + 1keycrew + artinschool + changemakers + creativitymatters + darkon2021 + databases + efen + empowermusem + endangerin + finnie + fundingfair19 + futurecreatives + gatwacommunity + leadinginleicester + leture + liftengineering + m.p + nextrans + nursesweek2018 + radicalinclusion + registrars + sassi + step’with + tedium + thght + vocational | 73 | 0.0085884 |
1696 | originalsoundz + support + dsat + dubs + yoga + cleanse + event + sileby + exciting + proceeds | 133 | 0.0156473 |
1000 | orthopaedics + physio + copywriting + haematology + sanitarium + victorian + bakineering + bivvy + committmentanddedication + congresswomen + darters + epidural + gastroenterologist + iems + majoring + meer + melodic + neurosurgery + onlinelearning + politcs + postlethwaite + pugwash + raisingawareness + retrosunday + roadrunner + shipmates + stoptober + thedays + tijuana + toobin | 79 | 0.0092942 |
1168 | osmo + slowmotion + ksivsloganpaul + chaff + sedate + choreograph + pussycat + wary + cinematic + rigged + swallowed | 54 | 0.0063530 |
1532 | otd + morning + yesterday + morningmotivation + meeting + amazing + evening + fantastic + students + day | 439 | 0.0516478 |
1533 | otd + team + conference + gardens + clu + evening + dec + ward + funky + huge | 143 | 0.0168238 |
530 | otd + thousand + hundred + nineteen + twenty + jingly + seventy + eighteen + eighty + sixty | 318 | 0.0374123 |
74 | ousting + betterpoints + nimsboutique + lied + theresa + british + parliament + influential + hiring + hughes | 85 | 0.0100001 |
949 | outcome + 8c + braverman + estée + freako + gainsbourg + o’reilly + pharoah + poyser + selector + sisu + winx | 75 | 0.0088237 |
1643 | overheard + reverses + output + 3two10 + adeolokun + biscui + chastise + duck’s + eunuch + holiday.could + inkle + man.utd + parkruns + rosslyn + scuffle + slapdash + somew + strategica + timepieces + watchmen + yarble + yarbles | 76 | 0.0089413 |
1203 | overrated + underrated + tony + resign + smh + alexsandra + amiable + aseel + bollaking + bumbershoot + earthbound + gpsbehindcloseddoors + hardwell + inoperable + insanity18 + jigglypuff + morethanjustablackcat + pixelart + pokemontattoo + pomeroy + refendum + rrose + salome + saxe + selavy + smited + sr3mm + thenerdcouncil + tiddlyham + uncertity + wharram + whitneys + yik | 161 | 0.0189414 |
539 | overs + wicket + wickets + aussies + ashes2019 + india + bowling + bowlers + runs + england | 55 | 0.0064707 |
1132 | pain + bipolar + ticket + missing + easier + aviyah’s + donnaru + hakkinen + hermionie + j22 + joaquim + meret + rgrump + smybolar + tomorr | 80 | 0.0094119 |
760 | pain + cripple + lapha + rearranged + proposes + ha + regarded + yeyi + apologising + arrangements | 65 | 0.0076472 |
1365 | pain + wavey + wprkers + blessings + forging + fuckyou + uncontrollable + wayside + hideaway + 1kg | 73 | 0.0085884 |
39 | paintingcontractors + eastmidlands + links + gererals + contractors + princes + spies + adoption + protests + painting | 86 | 0.0101178 |
1635 | pakistanzindabad + pakistan + pakistanairforce + india + airforce + corsia + pakistanarmy + nhs + narratives + indian | 96 | 0.0112943 |
1694 | palitoy + mathletics + negrit + transforming + edutainment + negritude + opal22 + musicians + wildfire + conference | 144 | 0.0169414 |
7 | pampersforpreemies + premature + nappy + donated + betrayal + tweeting + customs + foodwaste + unitedkingdom + hospital | 105 | 0.0123531 |
886 | panoramic + influences + soulful + rating + flavours + enterprise + arthroscopy + bhaktirasamrta + colby_richardson + excusethesliders + idm2019 + invitee + meniscustear + nathanie + nrhbcf18 + prayerful + premere + samiya + team.they + topa + wonderdog | 51 | 0.0060001 |
1395 | paranoia + gsm + ridens + yall + courtoisthesnake + ascertain + deaded + prostituting + slums + davidattenborough | 51 | 0.0060001 |
1569 | parcel + customer + delivery + service + delivered + refund + received + account + card + app | 1154 | 0.1357666 |
291 | parents + listening + cheers + coming + majors + doggo + sorted + 18years + belway + cattitude + goners + panicisonherway + parentingtips + parentsforfuture + pboro + raga + resourse | 257 | 0.0302357 |
441 | parents + listening + cheers + sycophants + enjoy + clueless + prick + luck + publicity + 13km + comfirm + emillio + hrp + johnoo + leicestermathsconf + malam + phwor | 183 | 0.0215297 |
1528 | paresh + inspiring + wet + britten + pwc + rapscallion’s + cobham + sun + brilliant + evening | 174 | 0.0204709 |
1575 | parking + minister + syston + ifs + phone + moved + dealer + toaster + ticket + booked | 113 | 0.0132943 |
1565 | parkinson’s + spotifywrapped + pdf + writer + vat + profit + 1.7.1 + arteriovascular + convenien + definintely + disabiltys + drivi + genealogists + inspitates + irrevocable + johnmayer + malformation + pollinate + savelumadschools + stoplumadkillings + universtiy + unravels | 68 | 0.0080001 |
669 | passed + faults + congratulations + minor + test + attempt + buddi + drive + couple + instructor | 80 | 0.0094119 |
827 | patches + stoned + bedding + candle + fam + inshallah + pair + adian + aroyalteamtalk + dilit + inspiringwords + ndole + pleasee + remmeber | 203 | 0.0238827 |
743 | pathetic + king + leaderless + pusb + undeserving + lethargic + darts + diabolical + coventry + woeful | 99 | 0.0116472 |
831 | pay + buy + expensive + afford + spend + sleep + awake + spent + paid + cash | 1844 | 0.2169442 |
1577 | pay + moneym + income + people + nhs + system + eu + buying + cuts + data | 579 | 0.0681186 |
1539 | pay + rnb + apology + eu + alleviates + committi + compensations + debt’s + devaluation + equalized + ghislane + laddos + mandat + mandated + meritocracy + nisan + nottsfails + otr + pseudonymisation + statehood + ub | 58 | 0.0068236 |
753 | paycheck + scumbag + mourinho + awhwe + callipers + cheila + dirty_knix + heiko + knicked + skinfold + sophy | 74 | 0.0087060 |
1375 | pda + autism + blog + battery’s + pcso + polis + products + data + encourage + asians | 177 | 0.0208238 |
670 | peace + rest + prayers + vichai + supporting + followers + informative + gemma + c2 + freakley + fwl + lastlaughinlasvegas + masterrace + mhs + ripp + springequinox + sundsy + this.another + weproudofdaya | 103 | 0.0121178 |
790 | peaceful + amazingaldichristmas + hope + max + afternoon + day + wishing + morning + happy + inspirationnation | 72 | 0.0084707 |
660 | penalty + weaker + thinner + penalties + blunter + complicates + coxonian + grumpier + hendersons + melbournederby + nigarg + thoushallnotgettooinvolved + tigris | 79 | 0.0092942 |
1235 | pengest + olives + pancake + perks + andalus + hungy + orisirisi + underlined + sunday + omlette | 57 | 0.0067060 |
987 | pent + bhetke + definitel + detangle + devasted + extraverted + lydon + meonce + winaldjum + buying | 57 | 0.0067060 |
1714 | peony + networking + opportunity + dale + event + exciting + 0101111 + 200im + 40oz + 9.45 + authorized + beattheodds + borough’s + bpk + chicksarecute + debuted + eurofantruestory + fanaticsteamwearcomingsoon + firearmssurrender + greasey + guidedogs + handsoffmyplate + housingfirst + jobsite + joshbaulf + june’s + laurenti + naionalspacecentre + newbabychicks + newsinglealert + postgraduates + resus + soundimage2018 + tabletalk + tmg + traineeconference + walescomiccon + wiwibloggs | 97 | 0.0114119 |
1413 | people + laughing + congeniality + rate + loud + nah + girls + rattled + sensitive + 50.75 + artwankers + bookiness + buzinghgh + charleschaplin + emit + fictional.the + gillead + jandira + olivier + palvin + policia + pretensions + racismo + scottished + truk + weech | 215 | 0.0252945 |
1692 | people + question + daudia + tweet + ashwin + blatantly + chucked + excuse + mediate + sensed | 337 | 0.0396476 |
1717 | people + women + sexism + distasteful + comments + wives + guts + culture + religious + abudhabigp + annihilator + assaul + betters + bytes + colluded + dishonourable + etymology + forcedmarriage + fp3 + galv + gobbling + grandstandin + harpi + imwithkap + nevercorbyn + neverlabour + nore + oakshott + paraphrased + patchworkpals + poltiics + procuring + proudboys + replitians + spheres + statemet + swatika + ukpolitics + unfriend + unrepentant + venally + womad + wrongens | 144 | 0.0169414 |
1002 | pep + 10ball + alors + anthonyjoshuavsalexanderpovetkin + bringmethanos + dommage + freemahrez + garros + grigg’s + knifepoint + r92vuls + thamographe | 52 | 0.0061177 |
293 | percent + 100 + agree + respect + 90 + 10000 + messi’s + similarity + 110 + true | 155 | 0.0182356 |
1298 | petition + eu + ensure + customs + sign + share + leaves + bbc + un’s + u.k | 127 | 0.0149414 |
413 | petition + sign + parliament + uk + government + stop + save + mp + ban + sekondawatches | 297 | 0.0349417 |
1305 | petition + signed + sign + calling + bbc + police + share + cris + news + terriermen | 214 | 0.0251768 |
707 | phone + ctrl + afford + traumatic + ikea + percent + mental + dbrand + dorna + everyword + feted + furnitureland + knacker + slowe + thisnperson + uncertaintimes + unsticking + watermarked + xmassongs | 102 | 0.0120002 |
876 | photo + budd + pic + roxy + marathon + pictures + film + gary + brilliant + aqp + bettina + cozzy + damaris + diction’s + ess + fakery + freshersflu + isthisthereallife + kadar + larksintransit + mâché + mosthaunted + panzers + patrickwolf’s + saheb + unhurt + willie’s + winsbury + wow.gorgeous | 177 | 0.0208238 |
557 | phwoar + nutshell + beautiful + fuck + game + whew + armeh + inat + rnrnf + emphasises + tje | 100 | 0.0117649 |
781 | pic + picture + photo + pics + xx + snap + beautiful + _visauk + everso + notbthat + novelway + puttingthe + visauk | 69 | 0.0081178 |
783 | pic + xx + nice + cum + cheape + lovelyvxx + xcxx + carlings + babe + um | 51 | 0.0060001 |
1399 | picit + friends + trust + disagree + amount + highly + mums + yeah + captured + kmt | 336 | 0.0395300 |
801 | picoftheday + wall + wallpaper + mural + bespoke + art + style + photo + video + chainesdancecompany | 113 | 0.0132943 |
466 | picoftheday + wall + wallpaper + mural + bespoke + style + art + cum + photo + tile | 77 | 0.0090590 |
1685 | piece + pot + ecb + stem + advanced + pride + apple + ades + assistin + christams + clift + feil + humi + imagines + irmisbiceps + kotg + nityha + openpsychometrics + painmanagementprogramme + peterstafford + playtesting + pvs + resurrectingdemocracy + roader + rollsroycecullinan + sparklin + teak + teamstory + theyayteam + transplantation + unveils + wembleystadium | 62 | 0.0072942 |
1368 | piers + abortion + murder + woman + rid + judges + sympathy + agree + religious + disgusting | 78 | 0.0091766 |
1428 | pigs + putsontinhat + incorrect + honest + beautiful + bird + sticks + carabou + crawshaws + faldo + hothothot + neny + reacers + robotnik + satantic + sheepishly + taxadvisers + whilton | 188 | 0.0221180 |
826 | pillow + inshallah + qik + sabelo + tanqueray + polish + garnishes + wicklow + boe + penoosa | 81 | 0.0095295 |
194 | pin + chip + drinking + hoppy + ipa + celeia + corbel + whakatu + ale + porter | 60 | 0.0070589 |
841 | pink + colours + rf + calmed + agree + gifs + rebecca + answercto + autoco + barbrawl + batti + britainslostmasterpieces + burin + crumby + drakefell + goust + hallers + ihearttattyteddy + kuffar + meninist + mosli + novelist’s + rembrandt + spamforbrains + tweetit + whishaw | 269 | 0.0316475 |
1251 | pissing + ngl + betrayal + ukip + waiting + im + rapper + sand + landing + backwardsness + energy’s + ghostblitz + humped + islas + karmawillcomeforyou + lute + nfi + pt2 + puregreed + ratajkowski + syndrom + terrys + truthbombs | 181 | 0.0212944 |
664 | plan + sounds + ooh + asbo + guendozi + guffman + hairbands + leachy + motherbuka + realign + soundsike + swype + tume | 102 | 0.0120002 |
27 | planted + bombs + sigh + damage + followers + plane + bud + sexy + words + weekend | 54 | 0.0063530 |
940 | plated + scooters + sources + whilst + 21.04.2018 + atlant + attacted + bbcmotd + bejeezus + brollies + escor + findalan + fookin’bastid + holohoax + huhuhuh + kitorang + mortgageprisoners + nopressure + outposts + phills + poundlandbandit + radia + sciencecommunication + thankslet + untainted + weloveir7 + wingmaned + zuckberg | 102 | 0.0120002 |
260 | playwhatami + gdagarwal + ganga + detailed + supported + mother + hey + film + heyy + proj + projec | 127 | 0.0149414 |
1331 | plead + yeyi + hai + forgive + mum + diagnosed + dont + type + gut + feelings | 279 | 0.0328240 |
1665 | plinky + plonky + plagues + exodus + horribly + words + exhaustion + moses + egypt + tablet | 158 | 0.0185885 |
1437 | plottin + honest + critter + admittedly + bouncered + bulit + dija + eitherways + evrything + funereal + gettingridofthedefects + hatchbacks + hora + jakupobitch + l’il + muncie + toothed + toutous + watch1 + worlocks | 137 | 0.0161179 |
579 | plotting + banger + cushions + tempting + cream + asdfghjkl + banksyofpoem + brunetteorblonde + candlelit + finesseforeva + glook + handwritten + hoots + markjones + natou’s + prada’s + rdr’s + relaxin + seavers + shamakhiara + shrieks + sidro + snuggs + twatsport + whitecat | 123 | 0.0144708 |
1063 | plunges + pip + gcseresultsday2019 + dwp + radio + golden + adinktober + adox + appearanc + benjudd + boccua + clamity + comited + consented + createspace + dico’ya + dressings + énergie + englandvssweden + fictio + fursuit + gatepost + gaylestorm + gothsloth + gretna + kdp + locatio + londons + longestfootballgame + melaniemartinez + netherhall + neveraskanangrywoman + oustudents + pacify + pennydale + planetearth2 + pleather + poorlymum + progres + reasearch + rollz + sailboat + sandman + sexandthecity + snta + vardyquake + weatherwatchers | 123 | 0.0144708 |
173 | pm + emergancy + lovely + bofors + created + kashmir + impose + ramadhan + 2 + super6 | 244 | 0.0287063 |
1381 | police + road + missing + burglary + mumbei + appealing + traffic + irreversible + petitio + reassessments | 108 | 0.0127061 |
1145 | pom + awkward + darksideofthering + fckdd + k.i.d.s + loovens + shalln’t + transcend + turley + amazingaldichristmas + brody + bruiser + carrow | 77 | 0.0090590 |
115 | pooch + thepoochery + thepoocheryleicester + thepoocheryglenparva + poochery + bath + glenparvadoggrooming + puppy + glenparva + daisy | 189 | 0.0222356 |
1278 | pooper + riddems + suppl + pubs + 3gs + mbc + rent + offering + investigation + masked | 308 | 0.0362358 |
847 | poptart + blue + horny + read + controversy + nets + badrhino + btwx + filtresàselfiecanadiens + fuckedontherocks + fums + happyfinaltransferday + kind.x + lokso + makeasongdrunk + megapixel + orangeade + shitall + somelovelyquotes + teamedward + tolateraled + trademarked + unbanned + witt | 269 | 0.0316475 |
836 | portman + films + morons + natalie + dinnerladies + hnd + equality + criminal + fuentes + lehmann + liers + monologues | 70 | 0.0082354 |
1055 | portman + mcs + offence + criminal + nunu + jimin + middle + east + evil + rebecca | 144 | 0.0169414 |
1295 | portugal + woop + hungry + eat + alcoholic + booty + gym + struggles + spoon + cream | 120 | 0.0141178 |
632 | positioned + henrycatt + lpc2018 + patchouli + takeingtheboyoutofnottingham + بـ + ذكرني + dementor + howl’s + otrb + wannables | 83 | 0.0097648 |
387 | posted + kingdom + aces + united + video + upcoming + colleagues + conference + international + globe | 118 | 0.0138825 |
60 | posted + kingdom + united + photo + photographs + granite + driveway + qatar + photos + image | 333 | 0.0391770 |
1230 | posted + photo + fridayreads + woolaston + takeacartothemovies + soundcloud + au + photos + filmswithbodyparts + couldnt | 532 | 0.0625891 |
904 | potato + tastes + beetroot + strawberry + badtimesattheelroyale + bide + esomeprazole + feldman + freche + marigoldhotel + northbankclockendhighbury + restarau + rmb + spatz + summermia + v4 | 89 | 0.0104707 |
842 | pounds + fantasies + cancer + connie + warmth + weigh + damaged + lacking + sad + tough | 61 | 0.0071766 |
1174 | practice + alternates + beastfromtheeastmidlands + hatehatehate + laddie + worvlei + impressive + bateman + digne + runnings | 68 | 0.0080001 |
1686 | practice + deepest + limitations + maroon + fear + inadequate + utter + christians + planting + teacher | 157 | 0.0184708 |
897 | prav + understatement + bib + 22st + ascension + lifeofastudent + swilling + cocksucka + islamaphobes + labourpains + sixnationsrugby | 97 | 0.0114119 |
931 | pray + account + leave + delete + tbf + agree + praying + tut + zimbabwe + heyy | 294 | 0.0345887 |
1106 | pray + nike + 767mph + alemia + chainsmoker + condenses + cultivation + februadry + glamourise + januadry + mama45 + ngidlisiwe + ok’s + theforce | 92 | 0.0108237 |
656 | prayers + condolences + families + crash + helicopter + devastating + involved + sad + lcfc + tributes | 58 | 0.0068236 |
317 | prayers + leonie + thinking + isla + xxx + alex + aww + sending + family + marley | 144 | 0.0169414 |
388 | prayers + recipe + nothin + tasty + tenerife + jamies + moongh + watchinginthepub + anjay + nuer + onggi | 53 | 0.0062354 |
585 | prayers + support + jesy + helicopter + br + returns + tiger + direct + amazing + celebrating | 84 | 0.0098825 |
87 | precisely + painting + contact + loadofballs + confusion + aha + coys + gary + kmt + bro | 52 | 0.0061177 |
1504 | prepactive + rhi + graduates + pb + wishing + bahhumbug + baulbles + calkeunlocked + escapevenues + gadsby + harrystylesliveontourbirmingham + hospitable + runnerschat + townandgown10k | 66 | 0.0077648 |
1450 | presenters + asthetically + coachsackings + nel + shejxjsn + naked + amrezy + bobbies + down’s + epq | 78 | 0.0091766 |
13 | pret + foodwaste + unitedkingdom + hoisin + exposures + goosefair + longexposure + wrap + duck + goose | 61 | 0.0071766 |
1570 | prices + tax + homes + price + building + council + unsure + feeding + automatical + communiti + concensous + concreting + deploym + homose + lifers + likesome + million’s + newpm + pernicious + pupillages + qobuz + shoud’ve + swathesof + whenprotestartmirrorslife | 81 | 0.0095295 |
347 | pride + leicesterpride + lcfc + fvh2019 + leicry + rainbow + lgbt + flag + chair + tune | 109 | 0.0128237 |
23 | pride + victoriapark + leicesterpride + lgbtq + lgbt + parade + fireandrescue + joorton + emh + foxespride + jaycockshort + leicesyerfireandrescue + lgbtcentre + lgbtmelton + missie + nickicollins + rorypalmer + socialistparty + stjohn + transliiving + youarepride | 56 | 0.0065883 |
15 | print.possible + walls + paintingcontractors + taverns + eastmidlands + hogarths + printing + contractors + cloudy + printed | 70 | 0.0082354 |
24 | printe + ezprint + uv + vertical + world’s + printed + directly + 3d + 10gb + walls | 62 | 0.0072942 |
225 | prize + alignment + regulatory + win + shock + default + agreement + awesome + customs + phase | 176 | 0.0207062 |
174 | prize + awesome + stroking + andrew + scratching + scratches + yikes + strokes + fur + ears | 53 | 0.0062354 |
101 | prize + chance + fab + awesome + fantastic + giveaway + competition + win + bashthebookies + guys | 60 | 0.0070589 |
52 | prize + ek + treat + chance + super + amazing + commented + won + losange + content | 124 | 0.0145884 |
47 | prize + fab + deliciouslydifferent + wash + boyfriend + car + brilliant | 132 | 0.0155296 |
286 | prize + fab + xxx + count + xx + prizes + guys + swanage + awesome + lovely | 89 | 0.0104707 |
32 | prize + geordiemarv + autumnequinox + lou + inspire + price + cricket + fantastic + mum + awesome | 133 | 0.0156473 |
75 | prize + guys + fab + scenes + mcfluzza + fabulous + yummy + ace + awesome + epic | 76 | 0.0089413 |
202 | prize + mentalhealthishealth + highland + illness + romance + prizes + scotch + secrets + rocks + perfect | 117 | 0.0137649 |
252 | prize + shucks + dead + wow + aw + giveaway + fantastic + fab + crawling + lovely | 79 | 0.0092942 |
44 | prize + withbanneryoucan + prizes + sale + result | 65 | 0.0076472 |
1461 | prizes + collection + yum + win + menu + free + fiveal + recipe + christmas + 8pm | 128 | 0.0150590 |
748 | procession + awards + congratulations + vaisakhi + winning + sikh + krishna + ecb + award + mandir | 107 | 0.0125884 |
1725 | prod + entertainers + freud + revision + conference + balanceforbetteriwd2019 + crystalharmeny + dmutalks + entrepreneu + euroapprentices + findingthegold + greatteamsachieveeverything + historyedexccel + incentivise + jameirahgroup + localresilience + mybody + nutritionandhydrationweeki + pearse + pnhcaconf18 + realse + reneeallaboutschoolcreativity + satellites + spaceports + wheatley + workperks | 58 | 0.0068236 |
1549 | prof + volkswagen + psafetycongress + tropicalpeat + pathways + nurses + ongoing + sepsis + ties + keynote | 86 | 0.0101178 |
1688 | programme + dmu4life + bachelors + chairing + unboxing + 1hr + session + honours + network + evington | 85 | 0.0100001 |
986 | proud + demonlove + gostarsgo + improvlove + lborograd2018 + mariya + shandy’s + stocky + zombiemusic + bullseye + crystalball + enforcer + gotoams + ingrid | 85 | 0.0100001 |
979 | proud + fantastic + aminatakamara + day1mate + hote + oldhow + saymashaallah + u14s + bonbons + welcomi + yourselve | 53 | 0.0062354 |
978 | proud + supported + team + fantastic + congratulations + attended + graduation + amazing + winning + huge | 91 | 0.0107060 |
1707 | proudtobecalthropsno1fans + comic + team + treasureisland + launch + expectation + teamdmu + proudtobemore + donated + 4.20 + 97.3fm + airambulance + annotation + ardour + areweready + attendanceandpunctuality + benovelence + betula + castlemeadacademy + citiloaders + damged + ellxxtt + emira + expofcare + kohinoor + laundeprimaryschool + magi + mildmay + murugan + nationalbourbonday + northbynorthwich + overvi + patientsfirst + pendula + perumal + radio2funky + ridersfamily + rmjazzband + sanditoksvig + soulism + square’s + teamfestiveflorals + whitfield’s + wildabeast__ + yawncoffeeco | 81 | 0.0095295 |
1567 | proxy + stuffs + capital + item + 5gwar + 8.70 + austrailia’s + boffins + caretakers + daripada + dustjacket + figu + fk’s + keyless + mat’s + pakai + pimco + playstations + polticial + sumthing + twitterdms + ypung | 55 | 0.0064707 |
343 | ps4 + xbox + bf3 + hemdog + mw3 + competition + xboxone + giveaway + wicked + nintendoswitch | 79 | 0.0092942 |
800 | pubs + ukpubs + reign + dovercastle + helsinkinightclub + rainbowanddove + blackhorse + ireign + wereign + pubsmatter | 81 | 0.0095295 |
1662 | puel + agree + rivalry + abused + belittling + feelingfestive + himsel + judgi + knowns + ptas + sniffy + thingsdisabledpeopleknow + upsett | 67 | 0.0078825 |
824 | puffs + creampuffs + mutual + avidly + buyingahouse + cpp + enobong + fortni + hammer’s + helptobuy + specialff + ufgently + unfettered + waitingtimes | 58 | 0.0068236 |
1039 | pulp + impressive + fiction + wavey + abdallah + babyspice + barbaros + boozin + catline + delajore + fishponds + madderz + nextdoir + nocafetraining + raceready + zoomers | 99 | 0.0116472 |
1452 | puregym + offer + fee + percent + joining + store + deals + sale + savehalf + membership | 115 | 0.0135296 |
1666 | purvis + gulliver’s + festival + chanc + hermione + saturday + july + join + jam + party | 101 | 0.0118825 |
1598 | pyrography + click + view + bright + technically + assignmen + beatnik + caudaequinasyndrome + collarless + epistemology + excelle + faccinating + gallaher + hik + hyperbad + kungs + lithuanian + mansfiel + marshmallowspine + momento + senorita + smws + spinalcordinjury + triumphdolomite + whiteout + xmasdinner | 74 | 0.0087060 |
1085 | queen + ausopen + serena + icon + bronzie + fuckingmelt + hondaf1 + knobber + spaggy + stoptheb | 64 | 0.0075295 |
277 | queer + fashanu + hoison + innersoles + mickelson + sidas + दिल + से + venda + hella | 107 | 0.0125884 |
906 | question + fuck + happened + surely + people + whats + hey + tickets + hell + laughing | 26885 | 3.1629858 |
611 | question + innit + ei + coronationstreet + dying + adam + hush + ya + song + unis | 516 | 0.0607067 |
281 | question + questions + answer + stupid + rhetorical + answering + askip + evading + hembrassing + interesing + noanswers + qohoo + questionsoftheday | 111 | 0.0130590 |
1312 | qui + sleep + nighter + shower + sadness + sleeping + extraenergyuk + heaux + hecc + needashower + needawash + trekked | 67 | 0.0078825 |
419 | r.i.p + christmas + halloween + g.o.a.t + p.i.m.p + xmas + woop + valentine + a.s.f.w + boune + djah + h.i.t.h + hussles + jlloyd + junky + l.f.c + m.a.a.d + m.i.l.f + onerepublic + s.i.m.p | 77 | 0.0090590 |
500 | r’n’r + anytime + raio + refilling + aw + midges + nivea + vks + glue + ideal | 73 | 0.0085884 |
516 | race + comment + um + shameful + 2042 + a’d + comity + concerving + corgy’s + demerit + friendlyclub + galeazzi + ghiblis + giggleswick + handfuls + kuzanyiwa + lodaniel + maniacs + morpeth + phallic + predicitve + rages + sexmum + snowf + thewho + unmemorable + vertically + whateves + zagging + zombieliker | 248 | 0.0291769 |
268 | race + winner + congratulations + lmdctour + guided + timepm + pro + app + champions + sixth | 81 | 0.0095295 |
1379 | racehorses + raspbian + homekit + iammother + petition + installs + mattress + signed + seats + attempted + welfare | 79 | 0.0092942 |
966 | raheem + stormzy + albrighton + harsha + lothbrok + medicals + skandalous + walshie + gareth + bosch + feltz + sjoberg + uppa | 83 | 0.0097648 |
641 | rail + wages + arbitrary + deutzer + freiheit + futureequalityequalpayrespect + lecker + rgds + twatsontheroad + voteone | 51 | 0.0060001 |
61 | railway + lei + letsride + letsrideleicester + demontfortuniversity + station + dmuleicester + panoramic + leicestercity + demonfm | 118 | 0.0138825 |
925 | rap + mumble + music + song + rappers + assurance + katy + genre + album + anthem | 83 | 0.0097648 |
976 | rasprclub + dialysis + pd + infants + dhikr + membrane + vans + fire + mortality + overcoming + statutory | 86 | 0.0101178 |
1075 | ratings + cool + boom + ales + beauty + jump + controller + awesome + ag2r + autumncolour + boabie + busyliving + chccyafest + clumpy + cometigers + desmonds + exfactor + flywithbrookside + funkier + greatline + greenasabean + hammbo + hehehehehe + hellotohalifax + howtotrainyourdragon + interpreter + lavercup2018 + norestforthewicked + onepiece20 + originaljam + partyanimal + rapidcharge + slurm + snakepass + takeheraway + tanx + tee’s + thass + translater + uncis + whayy + worhol | 295 | 0.0347064 |
1249 | ravishingrumble + revering + sksjks + timemins + yatts + deleted + freshh + jikook + reinvent + whimsy | 78 | 0.0091766 |
104 | rdr2 + reddeadonline + rdo + reddeadredemption2 + ps4share + vgpunite + ps4pro + photomode + virtualphotography + rdr2 | 214 | 0.0251768 |
874 | reasons + thirteen + tam + netflix + amsterdam + 15million + bbcimpartiality + disseration + goodnotes + illumination + imbasicallyanticipatingabasicallykkaxonbasically + ittchy + msisrubbish + netflixs + notability + nt’s + thatinsulttho | 69 | 0.0081178 |
866 | reasons + watched + thirteen + swati + unbreakable + police + binged + episodes + translate + african | 126 | 0.0148237 |
1474 | recipe + bottomless + 5pm + menu + beers + christmas + 8pm + stickers + tomorrow + delicious | 74 | 0.0087060 |
1525 | refle + provider + 1000km + 10downingstreet + allaboutthebalance + autumnally + birdsfoot + bracey + burnet + byg + communitycohesion + cosmonaut + dowden + enkalonhouse + enterpriselecturer + externalrelations + facebookads + facebookblueprint + foxon + hackathons + hichkithefilm + jotham + leicsstartupweek2018 + natureshots + publicdressrehearsal + ranimukerji + schoolride + stna + supremes + toptoucher + transitiontaskforce + trefoil + vitamincneeded | 58 | 0.0068236 |
1088 | regret + billions + 12x12 + aerosmith’s + attitutudes + blubisland + gruppo + kumbyah + mariokarttour + maxinepeake + oooggh + pct + resubscribe + solars + strummer + truepotential + vesuvius + wooping | 115 | 0.0135296 |
591 | relatable + bemoregreig + cap + hof + wanny’d + fair + grow + chin + whatsoever + pattern | 216 | 0.0254121 |
1426 | relate + hahahahahahahahaha + clutch + dropped + alcoholism + angelnumbers + hammerhead + keris + larxene + marluxia + pcw + photoshops + profesh + satalite + spazzing + starker + turds | 121 | 0.0142355 |
1423 | related + attracted + boringly + jsksksks + pakimanlikedan + alexis7 + despising + tagmovie + tweet + ahn + complemented + despised + discovers + gravestone + gujrati | 122 | 0.0143531 |
1716 | religion + lefox + hating + properganda + feminists + sexuality + race + people + slag + country | 118 | 0.0138825 |
927 | reload + pussy + brave + accurate + suck + banz + cbbnatalie + demn + diverter + gorgues + groins + makeliteraturesexy + murph + outbreaktour + preconception + rightlg + sexymenuitems + truthing | 174 | 0.0204709 |
1541 | renovation + jnbl + bestseatinthehouse + candidphototography + rashmikant + basketball + sessions + joshi + vaisakhi + firsts | 69 | 0.0081178 |
1319 | research + modifications + melton + informa + physiclinic + consulting + borough + proposed + trials + mock | 58 | 0.0068236 |
143 | reserves + division + kick + 2.00pm + debated + 20mm + doitdoitnow + lense + saturday + nikon | 95 | 0.0111766 |
1020 | respeck + onky + pizzatime + sprog + steamroll + trumpy + sauvage + toilet + corfu + cozzie + orthodoxy | 54 | 0.0063530 |
719 | respects + 16yr + cousin’s + marathon + gofundme + lost + abdirahman + funeral + olds + aspiring | 146 | 0.0171767 |
386 | retweet + sharing + nims + boutique + rt + caring + xx + reminding + advice + roomies | 111 | 0.0130590 |
310 | retweet + sign + plz + thankyou + abhinandancomingback + apologizetoanexin4words + butimfascinatedbylugovoiandkovtun + climatejustice + eki + idontknowaboutyou + imrankhanprimeminister + litvinenko + oliverhardy | 62 | 0.0072942 |
233 | revitalusmartcaps + happyucoffee + revitalu + revitalubrew + revitalucoffee + revital + revitaluworks + luck + revitalusamples + revitaluweightloss | 62 | 0.0072942 |
1389 | rgmfeverxhimnuhnormal + 8lettersacoustic + fatzofficial + lorra + osiers + utopia + check + gymnastics + vue + unlock | 143 | 0.0168238 |
1190 | rifle + undertaker + shithole + navy + eyal + basset + dgw + fxcked + mateitscominghome + nahmir + nancys + placr + sofi + sproston + vladimirs + ybn | 68 | 0.0080001 |
822 | rink + cctv + meghan + amberwindows + ashole + bhikhu + concer + hellmann’s + kuda’s + kumlien’s + luncg + medicinecalling + multiplex + ng12 + parekh + prem’s + shawall + sheik’s + triviathursday + ukippy + workaholic | 55 | 0.0064707 |
825 | rip + sunshine + 08.01.19 + ayebody + bruntingthorpe.even + cataracts + haxan + iproc + moistmonday + on.tigers + sextalk + wnjoyed | 86 | 0.0101178 |
1380 | road + fire + lane + police + collision + traffic + rtc + closed + officers + junction | 1312 | 0.1543551 |
1014 | rogerfederer + salute + bukem + chrissymus + craigdavid + diffident + flamingle + humbleone + lifelounge + ltj + m2 + mysterybox + nixtape + oosh + sherman + skulduggery + thatvoice + weg2018 + whataguy + woojins | 111 | 0.0130590 |
1322 | rollercoaster + bredrin + unborn + sums + weak + sorta + life + yeah + wallah + meant | 346 | 0.0407065 |
1171 | rowell + afia + badprimeministers + bopp + chimdi + climtiy + cocanie + creed2 + envoiallen + fzce + iko + indited + jonnycore + kajol + loyiso + roxanne‘s + rukh + scarmongering + silvia + threshing + trapp | 135 | 0.0158826 |
383 | royalwedding + royalwedding2018 + wedding + meet + valentine + royalfamily + nice + weddings + lovely + royalweddingday | 183 | 0.0215297 |
409 | rt + luck + yum + ffbwednesday + likeing + tophound + muchappreciated + retweet’s + xx + enzo | 66 | 0.0077648 |
360 | rt + thankyou + film + thabks + rts + retweets + appreciated + assworship + follwing + sominatrix + stockinga + thabkyou + thankyouhoseok + thankyoukeep | 102 | 0.0120002 |
975 | rtc + lane + traffic + causing + junction + tailbacks + road + nearside + blocking + inbound | 187 | 0.0220003 |
376 | rts + unboxing + video + samsung + unboxingtime + supersafstyle + appreciated + galaxy + igtv + s9 | 86 | 0.0101178 |
297 | run + park + graduated + 10k + graduation + commute + fastest + graduationceremony + justgraduated + graduate | 193 | 0.0227062 |
1591 | saboteurs + moderate + christian + wealthy + pollution + russians + propaganda + albasheer + compasses + crima + disappoi + galadimas + hadeeth + heatbreaking + laffng + panellis + q.excuse + statemen + toryleadership + trs + unnaceptable + upkeep + verhofstadt + بس + تسقط | 61 | 0.0071766 |
1505 | sabras + fantastic + night + team + sponsors + nims + bhavin’s + birminghampride + directo + enthus + fittingly + londonmarathon18 + majinder + makai + malala’s + pjxiv2019 + reytagainstmachine + superf + the_garage_flowers + u17b + yersel + yousafzai + ziauddin | 83 | 0.0097648 |
840 | sad + business + gutted + cgl + getchu + mind + 49ers + octagonal + forget + duct | 103 | 0.0121178 |
642 | sad + died + poignant + hear + 12.7km + 48.6km + councillo + defuzzed + funn + spacewalk + visio + youbare | 50 | 0.0058824 |
763 | sad + hair + ell + blackpool + gt + aleyna + beaneath + bombaybadboy + callice + chucklechucklevision + combo’s + cryy + dnce + evenmotherwasscared + flairy + fuckin’ell + giris + globalwarming + kyliessecretnight + likesthat + peakest + rentboy + tilkis + tinydeskconcerts + transfusions + youstupidgreatlumpolive | 190 | 0.0223533 |
650 | sad + hear + inconvenience + loss + news + gutted + aged + nineteenth + hugs + closed | 103 | 0.0121178 |
461 | safe + bro + hear + real + fixcareermode + jell + musicsnacks + pringle + macleod + wellens | 65 | 0.0076472 |
605 | safe + sike + pls + cher + technocracy + zinfandel + stay + carm + signatories + gomes + messi’s | 93 | 0.0109413 |
1704 | saha + campus + impro + ww1 + meeting + solutions + site + printing + forward + team | 83 | 0.0097648 |
445 | saltby + gon + true + firesaltby + flatfire + potentiality + waazza + karma + imma + distractions + mcmafia | 71 | 0.0083531 |
1114 | sanctions + immature + lame + geller’s + pathetic + payer + uri + dangerous + brexit + politics | 72 | 0.0084707 |
1589 | sandhu + prompting + tools + naj + inte + dr + empower + qualification + testimonial + improving | 55 | 0.0064707 |
1272 | sanofi + valproate + evidence + ipad + p46 + signed + alton + mhra + speed + towers | 111 | 0.0130590 |
1602 | santander + consent + child + frustrated + actio + awliya + barbarity + disru + nabeelah + o.g.s + priviliging + qualitativeresearch + rebuttal + satisfie + sonetimes + torne + ulama | 70 | 0.0082354 |
638 | satsumas + flown + dreading + 13.5mph + 22kph + bankholidaysunshine + bargained + dedicat + fackk + freedomtospeakup + plater + webster’s | 66 | 0.0077648 |
1647 | sauropods + cetiosaurus + myf + sffpit + peasant + bron’s + mg + repping + dinosaur + iplayer | 121 | 0.0142355 |
791 | sausage + stressed + pains + feels + attit + bonnke + clien + headachy + notchristmasfilms + rasher + reinhard + timetabling + walk1000miles | 57 | 0.0067060 |
1402 | saveghouta + film + morning + bluray + vinnie + eat + keto + comfort + barking + earnt + willow | 209 | 0.0245886 |
991 | scarefest + gals + hayley + dawkes + evolution:man + hozier + kenan + mzungu + owlandpussycat + sewnn + teambecky + wrestlemania35 + ymas | 67 | 0.0078825 |
865 | sceptre + healthpsychology + msc + toda + leicestershire + acapellas + audisq7 + beavertown + blockley + bovver + cdj + curdling + dailycalm + edibl + eqpmnt + fisher’s + iamrare + kulwinder + mindmatters + norrie + numtraining + occupationaltherapy + onepintlighter + otstudent + phdsupervisorlife + pretender + revalidation + wellnesswednesday + yearofcalm + zootropolis | 61 | 0.0071766 |
1627 | schools + leicinnovation + primary + trainer + attma + belmas + cpc18 + crn + eanetwork + entitlemen + flooddefence + forthemanynotthefew + generates + geogrpahic + gnr19 + industri + instahub + launged + leadershipacademy + makedoandmend + mhaw + mixup + mts + my_twitter_name + officialleicesteraudi + partipant + pausa + rmdandt + taysum + terrk + thefertilityshow + winstone’s + zat | 63 | 0.0074119 |
601 | schrolled + awilo + deleon + longomba + scrapp + ibrahimovic + fridaynightdinner + fernando + sunnah + thoo + tomlin | 59 | 0.0069413 |
1523 | scorn + rapture + 14.40 + 808 + batista + coercivecontrol + cramping + dobble + elation + farty + hobb + horrocks + miseducating + personaphotos + principalities + rememory + steadfast + thasts + tirmidhi + toga + tussle + visualised | 71 | 0.0083531 |
1679 | scrapbook + city’s + business + inclusion + ken + 120gsm + afps + allowi + archhealth + beastmyarse + dawoodi + drumtuition + hines + jisc + khunti + knapp + leadershipskills + libguides + massag + mphil + neurosurgical + nisbet + pestcontrol + prototypes + selfiecompetition + sherrington + stps + supportingothers + thurn | 56 | 0.0065883 |
434 | screaming + chineye + galilee + stewebsite + tongue + scream + ahahahahha + bahrain + whaat + carlton | 63 | 0.0074119 |
629 | scroll + nuh + win + gon + doublepenaltyrule + infinitum + mondaymagic + vcgivesback + meme + dnk + randomactofkindnessday | 58 | 0.0068236 |
1042 | scrooge + numpties + messi + lilac + meow + truth + poor + nigga + 25c + 60b + alkada + alwaystimeforyourfans + bbcapprentice + brexit50p + crumbie + currencys + dutch578 + enticed + flameswhetstone + fuguring + gymsharkblackout + hunnit + lanvyor + lonsdales + motorsports + muhfucka + ock + popstarsinrhymingcars + progenitor + prometheus + rx7 + showpony + unforgettablegig + vxqe | 145 | 0.0170591 |
912 | sdgs + spate + year11 + year8 + presttitut + today’s + mumbai + improving + abortio + accoutrements + aspley + book’s + deputising + eastmidlandsgateway + facu + firebug’s + hhpapp + indianapolis + ioan + juntendo + kinmonth + lesley’s + longlister + machynlleth + marfan + n.robinson + ng_supereagles + plou + pwei + radiolink + selfmanagement + sustainabledevelopment + wmcna + worksmart + ypf | 81 | 0.0095295 |
1089 | sekonda + guten + improving + a’dam + alilowth + balsall + beebot + blnvids + bluesatbrod + cathicon19 + chibnall + domed + embodiments + holdings + horrorfamily + horrormovies + internationaldayofthegirl + intersections + keyham + moreso + rausby + seksy + sippy | 53 | 0.0062354 |
648 | sense + makes + strong + late + pls + lush + tipping + xl + appreciated + oxox + ओके | 95 | 0.0111766 |
1268 | separation + tired + impactnowplease + thebigpaintingchallenge + brain + coughed + cranked + termism + lonely + complain | 69 | 0.0081178 |
1121 | server + contraindications + dialup + guidan + hayu + sponsored + ntd + sabyasachi + ssds + birchbox + counterparts + frowned + woes | 59 | 0.0069413 |
951 | service + 20ft + hundred + phone + brands + hundredths + ladders + micro + hey + sheffield | 112 | 0.0131767 |
621 | service + customer + disgusting + retweeting + 4k + zara + android + 2mora + airwo + concep + daum + enlarge + fancafe + ffa + fucktheaccountant + ouzels + samsungnote + schematics | 81 | 0.0095295 |
141 | serving + nightshifts + timepm + 07 + mornin + woah + hardworking + campus + 17 + danielle | 143 | 0.0168238 |
1578 | session + forward + hitchings + students + fantastic + plgirls + keynote + autotraderxmas + accomodation + awards | 163 | 0.0191767 |
1588 | session + vr + stadium + jellyfish + tonight’s + u16 + event + recruitment + king + awards | 121 | 0.0142355 |
229 | severed + zarb + unionised + heil + disregard + prague + accidental + rethink + unsee + scousers + throne | 57 | 0.0067060 |
1169 | shadders + makemenervousin5words + uta + caught + worse + incoming + nowt + whoop + a’brewin + barnacles + brokenvows + bullys + carvwol + chatshit + clockey + coolasfuck + disconnects + don‘t + ejaculatory + electrically + glovlei + gownage + gradations + halamadridynadamas + hfq + honezly + ipods + lovage + meloney + nightcrawler + orangearmy + phewmin + poznan + punya + putafootballerinasong + soutot + supportstaff + t’county + thebay + thwiate + tm’s + townie + travellight | 301 | 0.0354123 |
1177 | shaku + calmest + donet + nevert + obinna + ringler + svu + tombstones + bia + minimize + pmsing | 91 | 0.0107060 |
691 | shambles + goal + hazard + saints + cartwheel + chrishughton + cougs + premierleaguedarts + poweryourunion + gameover + omnishambles + sherrock | 64 | 0.0075295 |
782 | share + fantastic + cancerhasnocolours + ludens + xx + jake + manupmywardrobe + busker + discolouration + luckier + wd | 62 | 0.0072942 |
757 | sharing + thankyou + sweetie + pleasure + aww + o’gold + rayaan + teambaxi + togo + comment | 93 | 0.0109413 |
1415 | shark + a.b.s + campassionate + flatulence + hipwell + mataland + ahha + rubix + smells + donnington + quiffy | 92 | 0.0108237 |
406 | sharks + 0 + converts + mcknight + wicket + cc2 + scores + bernardini + hampton + alexander | 51 | 0.0060001 |
1165 | shatap + musa + gobsmacked + laughing + loud + matching + afence + allaboutthecheesejokes + bodygaurd + brokeback + carumba + cuming + derr + freedomofspeech + frontrow + imposes + janmoir + metformin + ohmoussademble + sadjoj + whoopiisaledge | 100 | 0.0117649 |
1405 | shh + deetsing + madchester + demontford + biff + cleveland + rabelais + sheeps + grenfelltower + kipper + maclaren + strangling | 61 | 0.0071766 |
256 | shift + overseas + sleep + peaceful + night + restfully + peacefully + restful + goodnight + wishing | 57 | 0.0067060 |
821 | shoes + broke + coats + shopping + marrying + flick + porridge + twenty + goose + bankncard + clerking + doublefigures + geniusbar + notcoveryourfinances + regift + tapsaff + theartofbouncingback + whenfinancedoes + wqwtvh | 100 | 0.0117649 |
898 | shoes + wears + hope + wear + understand + pants + socks + shirt + jeans + hair | 445 | 0.0523537 |
1637 | shonas + towering + dome + korea + palestine + mosque + racist + offensive + alansugar + biloor + confus + firdos + firstlyiy + janatul + nationaltreeweek + ndebeles + organisa + teamate’s + thirdly + underlies | 50 | 0.0058824 |
1284 | shoop + horny + week + chest + tiring + tight + tired + 20t + firstdrivinglesson + hanssen + poundo + shooping + swaecation + tireds + wipping | 118 | 0.0138825 |
1619 | shorts + pon + surreal + 1880s + 2ns + abbé + amicus + askpixie + eryng + hasenhüttl’s + littrell + macquart + manish’s + mouret + pathology + popworld + rewi + rougon + rox + steinberg + understatemen + vanishin + wafting + yhr + zola’s | 76 | 0.0089413 |
380 | shut + hell + nope + true + fuck + ye + yeah + shutup + satnavtotheclub + nah | 140 | 0.0164708 |
558 | shut + shutup + mouth + dear + deal + nonce + pipe + boiled + eater + whore | 104 | 0.0122355 |
1338 | sick + feel + throat + ill + hours + hungover + killing + 30g + bonbon + boullion + constantlylivingoutofasuitcase + fiveg + hoildays + invisableillness + queazy + reeding + sevenam + tann + tmrw’s | 129 | 0.0151767 |
262 | sigh + laughs + hugs + shakes + insert + sighs + mutes + grunt + deletes + waves | 336 | 0.0395300 |
25 | sigh + rewardsforgood + betterpoints + miles + hundredths + rewarded + earned + vintageglamourinspired + hema + bollywood | 96 | 0.0112943 |
93 | sigh + sighs + bcc + aigh + sighh + phdchat + urgh + mufc + af + crap | 57 | 0.0067060 |
1079 | sigue + ding + hart + 4head + amunt + babbage + chile’s + coonate + ct2bb + drinkerslikeme + estadi + hilfiger + iden + knuc + knuth + leicestericerink + looe + mestalla + moistly + museuming + nickin + preset + rendezvous + seaward + solvent + some.serious + strategoc | 67 | 0.0078825 |
1076 | sigue + masterchefuk + prick + blaming’someone + chairbots + clementino + dontgoadthegoat + gooaal + guzaing + inauthentic + leivpau + leoseason + leosrule + muther + scrupulous + sitdown + teensy + whatnottodoatthebeach | 86 | 0.0101178 |
1621 | sin + nonviolence + sv + medic + nickname + 50 + horse + react + relationship + belief | 109 | 0.0128237 |
916 | singaporeans + meghan + articles + hole + news + harry + police + prince + cyclist + street | 149 | 0.0175297 |
813 | sins + delete + beautiful + alchohol + bohill + daiy + eyelure + mountclothes + olbus + 2p’s + misquoted + newhaven + prude + sativex + serafina | 120 | 0.0141178 |
938 | sis + energy + collect + abam + attactive + boastfully + consults + manis + meins + numismatists + rollover + shano + testittuesday + turmbun + uncircumcised | 113 | 0.0132943 |
1388 | sitcoms + bloopers + imagine + forex + traders + girls + people + clout + 6ft2 + acn + areoles + babbled + backinblack + buzzcut + c.ronaldo’s + dg7forever + dksksk + dontgodemarai + equall + fastandfurioushobbsandshaw + haechan + incohently + jarr + justkeepswimming + masculinities + o’grady + polyamory + shelboss + somethint + whytes | 147 | 0.0172944 |
235 | size + image + edition + limited + adamas + craigalanart_ + kamp + x24 + x30 + x34 | 55 | 0.0064707 |
257 | skating + ice + dancing + skaters + dancingonice + stars + freebiefriday + birthday + tour + partners | 61 | 0.0071766 |
1453 | sksksks + bling + sksksk + wears + similara + youtrack + yeah + jilted + safeguards + sksksksksk + transports | 119 | 0.0140002 |
854 | skylink + 02.08.2018 + animates + chesterfeild + eastmidlandtrains + fbloggers + garnier’s + penci + ust + wrestli | 63 | 0.0074119 |
1128 | slatt + wholelotta + ha + netflix + ey + 2fast4me + 501s + arrgh + atypical + classily + crystalmaxe + dbfighterz + defiently + dopple + eggplant + gele + jilt + jury’s + lllios + nestlé + ohmydays + paradoxical + pastiche + rukky + russells + snagged + sundaysizzler + ursula’s + virginriver | 154 | 0.0181179 |
870 | slave + pain + amoeba + amoebas + bharata + catthorpe + disfuctional + free’d + lintels + natyam + psychotical + spellbound | 80 | 0.0094119 |
552 | sleep + bed + follow + congratsx + weekdays + pls + jono + davey + hendo + muzzy + wtaf | 63 | 0.0074119 |
1245 | sleep + cardio + drinking + bed + numan + 16.5km + 250kchallenge2018 + cuddler + itsalaff + smother | 86 | 0.0101178 |
1606 | sleep + cough + sarahlucyjackson + wings + hours + night + weight + laid + hav + slept | 145 | 0.0170591 |
1353 | sleep + gym + hair + bed + wanna + wait + tomorrow + wake + hours + tired | 475 | 0.0558831 |
1352 | sleep + hair + wanna + wait + nose + holiday + month + headaches + washing + hours | 176 | 0.0207062 |
1301 | sleep + hours + tatfest + timeam + nap + wake + junk + exam + shift + buying | 62 | 0.0072942 |
1324 | sleep + slept + hours + hair + 9am + braids + tired + sunglasses + 2,17,7 + getmeonthatplane + goodlord + hellovegas + jailhouse + movingg | 88 | 0.0103531 |
788 | sleep + snore + awake + exams + finish + loveislandlates + onlyfourhourssleep + shoveling + thorpepark + turnpike + worsts | 63 | 0.0074119 |
765 | sleep + tired + feel + wanna + laughing + hate + bed + cold + loud + imagine | 12819 | 1.5081389 |
517 | sleep + tired + sleeping + hours + knackered + uni + pattern + crappy + nights + naps | 124 | 0.0145884 |
1556 | slime + timepm + barrio + cunningham + gelato + tickets + thousandths + interiors + starlight + staff | 54 | 0.0063530 |
1706 | smallbusiness + coring + fashioningacity + monnet + conference + governance + session + meeting + jean + supporting | 77 | 0.0090590 |
248 | smitten + hunny + angeline + postpartum + rayven + tbff + farther + psychosis + charity’s + greysanatomy | 54 | 0.0063530 |
34 | snooker + eighteen + thousand + shoot + photos | 130 | 0.0152943 |
2 | snooker + mmandmp_pro + shoot + photos + eighteen + thousand | 113 | 0.0132943 |
282 | snooker + size + shoot + eighteen + photos + thousand + ten + waist + sizes + medium | 72 | 0.0084707 |
1536 | snoring + watermelon + burzum + heavt + mattre + prirformis + psychotics + stethoscopes + upthat + weaned | 55 | 0.0064707 |
1036 | snort + learnt + 11.44am + burntthehouses + grandson’s + izabo + mohdaziz + noneofmybusiness + pokusaj + shalford + swayze + themakingofme | 86 | 0.0101178 |
369 | snout + mummy + gut + cow + gonna + suck + cunts + speed + grown + basirat + bubby + paapi + problemz + twodoorsdown + udders + ungreatful + whxhsnxb | 77 | 0.0090590 |
932 | snow + cheese + spaghetti + peri + lettuce + doom + watched + beautiful + songs + assigment + chancery + chaplin’s + crumbly + dredging + gripp + gudrun + horror’s + husk + kabob + psyllium + rehaul + s3 + slowcookerstuff + themummy + thicko’s + timefor + tomcruise | 131 | 0.0154120 |
1397 | socialmedia + phd + numan + studios + analyser + baranowska + beforehan + buddha’s + characteri + clinicalscience + congresotoxicologia + crossers + dawkinsellis + ddrb + deacs + deeplearning + dietetic + dietitiansweek2019 + ecotec + familyrun + fimba + financialservices + fourthgeneration + freenas + gurminder + healthapps + highgrowth + ilc + internationalarchaeologyday + jagdev + legislatively + livingalive + lptplt18 + mickey90 + moggmentum + oaanewcastle2019 + officepolitics + roadtoespoo + rulebased + safedriving + scad + scardifield + sciospec + signups + sonocent + soutar + specialneeds + successionplanning + toxicol + tvis + ucisa + volvoxc60 + way.c’mon + wehorr + whatrdsdo | 81 | 0.0095295 |
1406 | socials + sticker + mad + ignoring + butwhy + chics + flim + iamatopfan + jefferey + rwteet + sammys + thankgodsheisnotontwitter + whenimoutofmymind + wnba | 119 | 0.0140002 |
1649 | society + interpretation + argument + feed + var + trigger + responsibility + rely + abyssinian + adjudged + apoliticism + appropri + breakf + corresponds + cozart + cuse + enery + euvote + fevertree’s + fuckingjoking + mitigating + moats + mouthings + names.all + narwhal + public.heic + recipient’s + rh + saltiness + scrooges + strid + tresnformed + violati + youmust + 三 | 79 | 0.0092942 |
616 | someone’s + everyone’s + somebody’s + ha + destiny’s + daughter + man’s + nje + tryna + mcm | 855 | 0.1005897 |
777 | sonali.ig + eya + falcoreislanduk + ongwana + zstnc + 10k + xx + follow + lezza + pigmented | 56 | 0.0065883 |
955 | song + 70 + rap + muslim + rihanna + listening + portuguese + america + 32yrs + bangerss + cacuasians + colman’s + dontcare + faught + flemish + hongkongers + jhad + memorized + pamela’s + pokemonthepowerofus + seenwhat + tyndall + wringing + you.the | 83 | 0.0097648 |
996 | song + banger + bop + repeat + songs + album + 1x + tune + albums + track | 75 | 0.0088237 |
956 | song + mv + gameofthrones + island + listening + rap + jamming + listened + history + language | 110 | 0.0129414 |
1521 | song + walk + fallout + pablo + 6lack + starset + taknbystorm + scarves + massacre + klaxons | 241 | 0.0283533 |
970 | songs + racist + nukes + trash + northern + pulls + music + atmospherics + critisism + feminazis + mandatary + mansions + marority + nationalsmileday + nezu + pulip + reclaiming + rockson + saxobeat + vcountry | 132 | 0.0155296 |
1275 | soupa + burnsie + creme + retweet + poundland + chocolate + waveology + replacements + fitz + innocence + psychopath | 246 | 0.0289416 |
729 | soupa + sleep + timetable + chunder + iciroc + ngicela + profanities + toungeouttuesday + woken + appletizer + lye | 75 | 0.0088237 |
1206 | sousa + orton + daudia + shaku + tom + harry + henderson + abdishakur + berberas + biebers + catnotpartner + completer + delfino + deuces + drdomore + flipp + fodera + godfather2 + iddin + irevnz + lamped + lomyidolol + pawer + pawsa + ramses + ridder + standbyme + swollocks + unranked + vardss + wankwaffle | 161 | 0.0189414 |
110 | soverignty + concerns + immigration + evidence + brexit + congratulations + tattoo + tattooflash + traditionaltattoo + prize | 120 | 0.0141178 |
190 | soverignty + mornin + immigration + concerns + brexit + fantastic + controls + borders + friday + tories | 114 | 0.0134120 |
1467 | space + national + centre + ekadashi + elton + darshan + song + nationalspacecentre + fordfiesta + dibby + faraway | 167 | 0.0196473 |
673 | specialoffers + le2 + le1 + fooddelivery + le5 + pizzas + road + fastfood + takeaways + le3 | 71 | 0.0083531 |
926 | spell + products + bundle + weird + anstrad + attslamdunk + bankruptcybands + dafs + ddp + fuckjng + hellbound + hitmarkers + idiotbaby + kellys + majotiry + muellerreport + naughtymuj + netanshit + newambassador + rainbowism + stringent | 200 | 0.0235297 |
1371 | spelt + smells + wrong + cats + everytime + bet + mad + ammer + britainsfavouritedogs + catveries + couldent + disband + enderbys + finnlawfriday + joycean + laptopneverleftlondon + longweekagain + northwalesbantz + nurserylife + nurserynurse + o’kanes + saam + skeem + splurted + spygate + thewaymymindworks + vaghar + wooaarh | 195 | 0.0229415 |
1328 | spinning + worst + life + head + tired + im + scent + mood + awaiting + days | 179 | 0.0210591 |
158 | splendid + msdukinnovationchallenge + ooo + santa + im + ive + moose + markets + pig + hump | 73 | 0.0085884 |
1478 | splitcosts + kingdom + united + carpool + rideshare + blackandwhitephotography + park + wildlife + gt + 5hd + aaronkeylock + amwritingpoetry + badtouch + bassplayer + boni + bradydrums + britishwildlife + burling_paul + bydgoszcz + cample + challange + childrenstheatre + classicgeorgian + crake + deanmartin + definitiveratpack + dg3 + divali + dogthanking + ebrey + enterpriseadvisor + franksinatra + gerrygvipcode + getborisout + ginannie + grungerock + harket + hiphopmusic + hollowstar + indianidol10 + instatennis + justmadeabangerwithsevaq + kwnzafest + labourforthenhs + leicesterrocks + leicesterstudent + leicesterunistrike + mocha’s + morten + nkoli + phonescoping + pureaero + puresoul + purestrike + rossmassey + sammydavisjr + sharecoffee + sharemusic + studygram + sunderbans + tennistunsinourblood + thornhill + tiffaniworldwide + tonyandguys + touringrelights + wildlifeevents + witwatersrand + xanderandtgepeacepirates | 60 | 0.0070589 |
451 | spoilers + sounds + spot + ya + fordmupride + spoton + oooh + amigos + lescott + heart’s | 60 | 0.0070589 |
332 | sportpsychology + alphabet + reinvestment + tekkers + thurmaston + gym + precision + prestige + kingdom + eid | 65 | 0.0076472 |
165 | spotifywrapped + 2018wrapped + spending + returns + 1 + hours + brilliant + happy + thirty + bestprogrammeever + dadaji + xylø | 61 | 0.0071766 |
63 | spraycanart + sprayart + urbanart + graffporn + graffitiart + graffphoto + streetart + stronger + click + inplaywithray | 178 | 0.0209415 |
126 | springtreats + cash + prize + winning + collected + valentinestreats + extra + summertreats + win + chance | 80 | 0.0094119 |
489 | spurs + liverpool + pitch + league + incoming + 14.01 + 150games + dianna + greenie + lb3 + lcb5 + leaguetottenham + mediadarlings + nedd + newvmon + numbering + putthepressurwon + rcb4 + sating | 92 | 0.0108237 |
1659 | squeg + functioning + accents + slavery + wholeheartedly + language + women + politics + ga + agree | 99 | 0.0116472 |
1090 | squidward + askia + courtney’s + enslavers + gmgb + lackathreat + nonarbhinoishqbaz + racisit + samori + sexisim + shaqtin + teamgbrl | 60 | 0.0070589 |
596 | srivaddhanaprabha + vichai + vichaisrivaddhanaprabha + test + cannock + internationalwomensday + wishing + christmas + nhs1000miles + passed | 80 | 0.0094119 |
1497 | stadium + power + king + pl2 + dents + teamuhl + lcfc + visiting + 11.11.11 + charityretail2018 + cristianeriksen + cubb + dellealli + fitchie + fodelli + gputurbo + iainrosterphillips + imen + l1a_ch3ng + lptsmw + minicooper + night.username + oddsocksday + openwater + pricelessmascot + removable + tailgate + veining | 71 | 0.0083531 |
1466 | stadium + rgmfeverxhimnuhnormal + unitingtwoworlds + welford + drafted + charity + km + national + feat + tb | 129 | 0.0151767 |
1329 | stadium + wewillrememberthem + lcfc + leicester’s + contract + incentive + mechanical + searchdogheros + experienced + honda | 210 | 0.0247062 |
1240 | stamford + redbull + posted + nowplaying + rt + forge + watermead + dragons + numan + 2v0 + 3st + afterleavingthevillage + ainfinityalgebras + arxivpreprints + babesinthewood + blackfridayweek + cheddarvalley + coalgebras + crownprosecution + goldstarproductions + lauraashleyhome + mulderscully + nelsons + oldisgold + oldwithnew + pintage + sarahracing + show8 + smeg + solicitorsaccounts + stasheff + stringfieldtheory + thetruthisoutthere + yousef | 53 | 0.0062354 |
952 | statesidesix + submitted + maythe4thbewithyou + starwarsday + entry + enter + steamin + brockshill + crownedbyemiliehair + grwm + irishracing7 | 190 | 0.0223533 |
88 | stevie + tribute + reminder + rt + quick + friday + night + ch + chee + che | 70 | 0.0082354 |
6 | stick + win + sticky + love + guys + cx + turtletuesday + catches + matches + picked | 152 | 0.0178826 |
830 | stink + sleep + nap + rice + fuckery + kinda + 10.40am + bihh + bobcat + bodywarmer + fluoride + maray + muskets + noseyseason | 113 | 0.0132943 |
828 | stoned + heaven + advocategeneralwatch + balkans + barf + belling + nippiest + philli + rafio + rugbyam | 102 | 0.0120002 |
1462 | store + preorder + grab + win + sale + copy + chance + pop + enter + edition | 868 | 0.1021191 |
188 | story + true + shush + scar + arya + peak + hazard + levels + pass + hush | 150 | 0.0176473 |
195 | storytimeselfie + children’s + promote + helping + brill + challeng + bridal + sona + nims + bride | 53 | 0.0062354 |
935 | stress + dead + miguna + cigs + edging + cannabis + ahaha + bra + ima + 48min + boggled + conultant + delts + dissociation + frienships + glawsfamily + glawstowin + iwilltrytorememberallofyoulittlepeople + liveeverydayasifitisyourlast + metronomy + mincer + petitioning + sub8ten + sukali + suppin + urrm + whenthereisnochanceofsex | 222 | 0.0261180 |
964 | stressed + nervous + cba + followingourdream + movingtowhitby + skimpy + sleighgiveaway + ultram + wotlessness + 3,4 + aaand + gatts + omdz + sores | 120 | 0.0141178 |
1680 | striyah + rbf + meds + howled + nemo + shouts + ikea + women + doctor + 2ft’s + 83yr + 8ths + abridgement + afterward + aldergrove + alleyne + barrista + bce + benazir’s + breathlessly + carmarthen + choux + devah + ehrenreich’s + exacerbat + five4 + goren + groundbrea + indieapril + intramuscular + lupus + lygo + moldova’s + morsel + nickiminaj + philosophicall + pranah + red.gilchrist + sandwhich + sawitcoming + spreding + swapshop + thien + viewin + votesone | 102 | 0.0120002 |
1133 | stroke + word + cheers + cbr500r + haaving + yeah + a7i + sonyalpha + boy + christianhiphop | 76 | 0.0089413 |
1656 | students + ___________________________________ + radnorfizz + fortitude + teambrilliant + fantastic + scramble + caddyshackers + sewing + check | 127 | 0.0149414 |
1596 | students + geography + melcav + talks + worldmentalhealthday + composting + zetasafe + health + specifications + service | 194 | 0.0228239 |
1726 | students + launch + teacher + conference + science + learning + linkedin + session + partnership + kensington | 163 | 0.0191767 |
1654 | students + meeting + workshop + team + session + fantastic + insight + britian + username’s + event | 300 | 0.0352946 |
1067 | sudan + data + paying + privacy + 1980ish + 7.9bn + agia + cashback + caustic + claymore + directive + exceris + gibraltor + insuran + maotsetungsaid + neices + phse + reporse + skippingschool + sudany + telecom + twitterbot + usmca + wiliam | 69 | 0.0081178 |
1618 | sunidhi + chauhan + britishbasketball + newwalkmuseum + fixtures + picnic + queer + 5k + afterhours + alistargeorge + blackfordby + braunstoneswimmingclub + bungie + chari + deliciousfood + dickeheads + dontating + earthshaker + flowertattoo + formerstudent + freeths + herron + kh3 + lasa + lifephotography + lifestylephotography + nner + playtest + polytec + ppg + probaly + specialvisitor + squidgel24 + ultrarunner + unilax + virdee | 62 | 0.0072942 |
618 | superb + gadd + mendy + robbie + _mendy + bewaremadeiramarket + bibao + c.g.i + helmcken + midsummers + notknowihad + playbill | 75 | 0.0088237 |
487 | supportandshare + kindly + committee’s + vital + uf + wowowow + disasters + exercise + mozambique + malawi | 122 | 0.0143531 |
68 | supportindiefilm + actorslife + christmaslights + highcross + britvoteharrystyles + prettystreets + leicesterguildhall + follow + leicestercathedral + christmas | 50 | 0.0058824 |
274 | surveys + retweeting + gove + pro + imply + immigration + academics + tryin + eu + subsidy | 50 | 0.0058824 |
342 | sweetie + cheers + nudge + decent + morning + blathereens + hainan + kickborisout + nufsaid + slitheens + tomora + tottey | 180 | 0.0211768 |
312 | sweetie + decieving + stunning + theresa + customs + union + plans + british + leave + uwcb | 63 | 0.0074119 |
459 | sweetie + gorgeous + babe + boo + stunning + xx + birthday + mornin + love + happy | 1202 | 0.1414138 |
319 | sweetie + gorgeous + stunning + pic + wow + pics + tormentor + torment + grandad’s + discharged | 111 | 0.0130590 |
502 | sweetie + healty + icant + instergram + joeys + normani + terrol + wishidhaveadayofrompsychoanalysis + seduce + worsening | 74 | 0.0087060 |
633 | sweetie + lovely + happy + love + awesome + hope + amazing + congratulations + enjoy + xx | 5827 | 0.6855391 |
213 | sweetie + pic + gorgeous + pics + beautiful + setter + stunning + beaut + stunnin + love | 58 | 0.0068236 |
654 | swim + briony’s + caadbawait + come.the + joystick + kinkys + littld + moterway + mygoalie + overacted + peeps.tigersfamily + shoppedout | 126 | 0.0148237 |
944 | swollen + fromaggi + hambledon + quattro + zaflora + drunk + kilos + horny + asbestos + kgs + martinis + vibepayfriday + zoflora | 61 | 0.0071766 |
989 | sylvaniansleigh + hear + eliot + steven + 31.03.18 + bluesy + dakar + dua’s + fuckknifes + proudmummoment + sheenie’s + sluggy + sundaybloodysunday + trishalive + vogueitalia + worldcup2018maths | 90 | 0.0105884 |
697 | synapses + pimples + bonsoirair + coursee + dancecomigo + diggory + itsasign + jp’s + lovemyclients + masterofscience + nomakeupgang + oldgirls2018 + pieceofme | 50 | 0.0058824 |
96 | taas + knots + prize + gbp + spotted + location + speed + fab + heading + hotels | 181 | 0.0212944 |
1046 | taller + memes + 96l’s + ahain + besmircher + carparks + defendant + dolezal + grapefruits + karamizov + kokkaro + malory + miming + neoteric + rhimes + s3eed + sameera + stairwells + tanvi + winnerforme + wyipippo | 112 | 0.0131767 |
1068 | tax + politicos + potholes + corrupted + taxpayers + brunette + plastics + labour + msm + vincent | 83 | 0.0097648 |
576 | tayler + babelas + tock + gardens + engineering + castle + square + jubilee + aladwani + becauseican + breastcancerwarriors + chadeya + f’kry + fairstein + fantayze + ghnutrition + gopinkhair + haysi + hermanos + kristie + louchest + noapologies + precarityontrial + serivce + slithering + tailboard + tiill + whysoserious | 85 | 0.0100001 |
726 | tea + chicken + milk + chocolate + cheese + juice + drink + water + coffee + chips | 2469 | 0.2904747 |
917 | teemo + lord + rush + alertness + balne + blessedness + calcio + ewok + freud’s + hatoofficers + niv + strobes + tweetdeck + unacknowledged + visiblemaths | 53 | 0.0062354 |
1721 | template + farndon + staybrave + exciting + caprice + deepthroat + ocr + scholarships + project + event | 176 | 0.0207062 |
1595 | tempo + cd’s + talksport + cyclist + sp + a4s + chrissy’s + deltics + forc + fuckmate + herodotus + kosskhol + manicdepression + represen + sensibilities | 62 | 0.0072942 |
66 | tenyears + pride + leicesterpride + lgbt + parade + gay + beckons + dusk + march + leicestershire | 79 | 0.0092942 |
1429 | texas + float + size + plastic + sea + audition + ule + chasin + queenies + urasta | 57 | 0.0067060 |
1326 | text + uni + cry + alarm + exam + breaktime + dashiki + extremo + formatting + londontown + movingpartstour + restoproject + slammy + suicidial | 104 | 0.0122355 |
226 | thankyou + follow + xx + xxx + sharing + nurse + colleagues + zee + sammy + highlighting | 69 | 0.0081178 |
254 | thankyou + gripping + lifting + spy + rocket + pocket + holy + eyes + bernies + bizz + carayol + flujab + npqh + phily + rammoed + righteo + spotkicks | 130 | 0.0152943 |
340 | thankyou + iman + doll + babe + hon + elizaa + honny + irem + kimnamjoon + kimseokjin + mandu + minyoongi + nanni + salma + thaanks | 100 | 0.0117649 |
299 | thankyou + thankyouu + sima + tomeka + beaut + leah + bestfriend + smile + diamond + doll | 52 | 0.0061177 |
607 | thas + ella + waters + eh + 4get2 + alexandra’s + arithafranklin + beegreendirectory + blancpain + daly’s + jyoti.chandhok + maxgeorge + sundaysex | 55 | 0.0064707 |
131 | theapprentice2018 + whoop + camilla + spoty + sian + 22 + gin + distillers + photography + ginschool | 71 | 0.0083531 |
221 | thebeardedrapscallion + maintainmagnificence + beardproducts + beardbalm + beardoil + magnificence + rapscallions + beard + beardcare + beards | 62 | 0.0072942 |
35 | thebritishbasketballallstars + nite + basketball + amen + stars + brewdog + seventeen + british + sweetie + rouge | 146 | 0.0171767 |
1544 | thedsauk + agile + conference + team + 250th + adventureapril + allroadsleadtoleicester + beencoming + bobtail + castleford + caucus + chairwoman + cinemalegend + committedtochange + coolaeronautics + discoveryprogramme + driveincinema + dsastars + em2c2019 + ev2 + eve18 + fdmcareers + festivalofcareers + finirbache + followfulhamaway + giveitayear + glengorsegc + inforgraphic + newwriters + niecewards + phc + rcslt2019 + rich.reed + rusia2018 + saveourfarm + smil + stadiu + tivoli + trejo + vicephec18 + womeninrental + worldathleticschamps | 89 | 0.0104707 |
1613 | themselve + britishbasketball + prs + divas + threerd + bagged + finalists + heading + july + 15pt + achoo + auliya + bally’s + campingparty + citin + delegatetreats + dmuequestrian + dupaata + evertonfc + fabulousness + fasciamodels + gardenia + goodnewsstory + hankering + harjitharman + hdbrowas + hrc2019 + krips43 + leaverassembly + libbah3 + motivationalmonday + naat + prashika + rivalryweek + rollerderby + sabra | 65 | 0.0076472 |
644 | theon + fuming + fuck + sparking + ffs + disrespected + galoob + haikyuu + downsides + loudness | 507 | 0.0596479 |
506 | thevenueleicester + thevenue + fit + mendhiparty + dogsofinstagram + mendhi + henna + hiring + england + repost | 66 | 0.0077648 |
1439 | they’s + bahsbxhwbs + fastidious + sexualised + totty + unforgivably + disappointment + decoy + mammas + mclovin + tutti + weasley | 60 | 0.0070589 |
1394 | thinking + beat + ayrshire + broght + chewol + complainants + copyrighting + fuckup + intimated + medea’s + ripstevenhawking + wigless | 151 | 0.0177650 |
1270 | thirteenth + sleep + beefcake + chicken + eat + hungry + famished + sundays + weight + gaining | 222 | 0.0261180 |
1151 | thor + captain + iron + america + bhache + gravityalwayswinsgirls + hiddleston + kingofhorror + kneecaps + moniuts + runak + slurred + tdw + tws | 61 | 0.0071766 |
640 | thousand + 0 + nineteen + nots + do’s + beginners + eighteen + 6.3 + takeaways + diwali | 58 | 0.0068236 |
536 | thousand + hundred + eighteen + ninety + nineteen + seventy + eighty + heatwave + sixty + thirteen | 75 | 0.0088237 |
534 | thousand + hundred + eighteen + seventy + thirty + nineteen + eighty + forty + ninety + tenths | 97 | 0.0114119 |
538 | thousand + hundred + kameena + nineteen + eighteen + twenty + fifty + forty + days + july | 64 | 0.0075295 |
537 | thousand + hundred + nineteen + eighteen + hundredths + twenty + ninety + thirty + eighty + seventy | 262 | 0.0308240 |
535 | thousand + hundred + nineteen + eighteen + twenty + ninety + thirty + seventy + forty + hundredths | 1541 | 0.1812967 |
533 | thousand + hundredths + jingly + hundred + nineteen + fifty + census + otd + ep + ninety | 79 | 0.0092942 |
578 | thousand + nineteen + fm + lock + waves + tenths + eighteen + hundredths + youth + hitting | 79 | 0.0092942 |
531 | thousand + nineteen + hundred + eighteen + hundredths + 3qe + eighty + twenty + sixty + seventy | 80 | 0.0094119 |
1147 | thread + boastfulness + netherland + speeder + boyy + bruva + disclaimers + teetotals + beautifully + nuanced + romcom | 68 | 0.0080001 |
1048 | thugga + versatile + betrayer + cucks + demandbetter + deuxpoints + edgware + haahhaa + ikpeazuhasfailed + irritayting + kurewa + swantonbomb + trrc + twirraa + whitesnakes | 72 | 0.0084707 |
1049 | thugs + cape + rat + anticlimactic + flashly + freddys + gleu + muddascunt + napm + oystons + partings + teggies + tweewtmy | 53 | 0.0062354 |
715 | thurmaston + cte + stadium + king + power + augustintoseptember + britishlgbtawards + captaincorelli + fridayplay + happyjuly + justtheone + latesummerseve + littlefluffballs + mauveroselips + mondayisj + neededmuchley + newbuilding + pastlesontheeyes + tks | 51 | 0.0060001 |
597 | thurmaston + gt + laughterloft + painting + sneaky + settings + variety + 20one5 + amerikaz + athreefoldcordnoteasilybroken + channelislands + earthing + ehenrral + fabambassador + facebooks + flitting + funksplosion + gymbeast + hansumbasturts + japanexpothailand2020 + jerseyci + lbdc + lepus + leveret + lievre + lifewiththreekids + mctell + mixedmedia + ofr + preclude + presentbthe + rainbocorns + seascapes + tahlia + thelateishshow + timeforus + uolcvs + wildboy | 118 | 0.0138825 |
1446 | tickets + 9am + saturday + ticket + gazette + sleighbell + biltong + dontclangbruv + stall + thursday | 89 | 0.0104707 |
468 | tickets + askally + fusion + booked + copped + festival + due + ticket + evolved + billionaire | 204 | 0.0240003 |
995 | tickets + batch + grab + behindcloseddoors + leicesterracecourse + cop + carvery + moneypp + sold + stalls | 78 | 0.0091766 |
1472 | tickets + beer + store + beers + selling + antidote + pop + 0to100returns + handpicked + offering | 145 | 0.0170591 |
1398 | tickets + beers + ales + sold + puregym + chamilia + lnil + lastnightinlei + till + instapic | 85 | 0.0100001 |
1498 | tickets + birminghams + cordially + effie + profesional + dj’s + lalu + tickledpink + sale + hiring | 54 | 0.0063530 |
1526 | tickets + christmas + globe + cookie + trials + 3pm + join + details + blendbar + comedy | 95 | 0.0111766 |
1458 | tickets + cordially + limitless18 + pblounge + cara + le2 + textured + strung + tickledpinkcomedy + stoneygate | 53 | 0.0062354 |
1631 | tickets + merry + camps + astley + saturday + campus + doors + wax + restaurant + thorpe | 65 | 0.0076472 |
1471 | tickets + tfs + 02 + afrocarni + junior + camp + deals + branded + sale + sold | 82 | 0.0096472 |
432 | tickled + alfie + hahahahaha + ethnicjoke + henweekend + jokeofaclub + kimiraikkonen + lanaguage + meaks + singlies + speling | 106 | 0.0124708 |
880 | timepm + boxing + activities + association + unity + spinalgraps + round + bringing + earlybird + tickets | 62 | 0.0072942 |
1064 | ting + atozquiz + sh + iconic + innit + putafilmonabudget + shurrup + wimp + chaldish + anyting + farst + forzaferrari + gursimrans11 + heatradiospringclean + kicky + labrawn + quim | 547 | 0.0643538 |
1342 | tired + gym + sleep + till + shisha + ready + shave + amsrtists + dumbells + espressoyourself + hotstuff + hurried + pattering | 127 | 0.0149414 |
452 | tits + laughing + realisticsay + slim’s + trinkets + grimace + illuminating + lollipops + tans + vd | 57 | 0.0067060 |
1233 | tlof + codeine + shrink + tired + days + hour + stressed + hours + cba + gonna | 239 | 0.0281180 |
240 | 𝚝𝚘 + 𝚐𝚘𝚘𝚍 + 𝘐 + 𝘵𝘩𝘦 + 𝚝𝚑𝚎 + 𝕩 + 𝘺𝘰𝘶 + sprinkles + fairy + 𝚊 + 𝘢 + 𝗮 + 𝗔𝗚𝗥𝗘𝗘 + alleyways + 𝚊𝚕𝚠𝚊𝚢𝚜 + 𝕒𝕟𝕕 + 𝒂𝒔𝒌𝒊𝒏𝒈 + 𝕓𝕖 + 𝘣𝘦𝘤𝘢𝘮𝘦 + 𝑪𝒂𝒃𝒂𝒓𝒆𝒕 + 𝑪𝒉𝒓𝒊𝒔𝒕𝒎𝒂𝒔 + 𝚌𝚘𝚖𝚎 + 𝗖𝗢𝗠𝗠𝗘𝗡𝗧𝗦 + 𝚍𝚊𝚢 + 𝚍𝚘 + 𝕕𝕠𝕟’𝕥 + 𝒇𝒐𝒓 + 𝘧𝘰𝘳 + glassesgirl + 𝘨𝘰𝘭𝘧𝘦𝘳𝘴 + 𝒉𝒆𝒍𝒑 + 𝕀’𝕞 + 𝗜𝗙 + 𝗜𝗡 + 𝒊𝒔 + 𝚕𝚒𝚔𝚎 + 𝗹𝗼𝘃𝗲 + 𝘮𝘪𝘴𝘴 + newbalence + 𝘯𝘪𝘨𝘩𝘵 + 𝘯𝘰𝘵 + 𝕠𝕟𝕖 + 𝘱𝘳𝘰 + 𝗧𝗛𝗘 + 𝑻𝒉𝒊𝒔 + 𝘵𝘰 + 𝗧𝗬𝗣𝗘 + 𝘞𝘦 + 𝒘𝒆’𝒓𝒆 + 𝗬𝗘𝗦 + 𝗬𝗢𝗨 + 𝕪𝕠𝕦’𝕝𝕝 + 𝒚𝒐𝒖𝒓 | 57 | 0.0067060 |
430 | tock + ha + originally + becum + teenagefantasy + unific + whereitallbegan + fuckin + tick + arithmetics + bounty’s + mongo | 87 | 0.0102354 |
1178 | today’s + strikeforuss + ustrike + ucustrike + geography + year11 + asteroidday + year10 + picket + year8 | 184 | 0.0216474 |
1690 | told + alcohole + fate + fear + cbd + ago + volume + ye + poisonous + snort | 295 | 0.0347064 |
1676 | told + deserted + receptionist + telly + psn + daenerys + write + mum + walked + flu | 143 | 0.0168238 |
521 | ton + birthday + nic + happy + follower + hump + wishing + ateam + delectable + doneily + headingupwards + lateast + liveforever + missya + reshaping + ugnaughts + up.will | 173 | 0.0203532 |
834 | tongue + pissing + mouth + ffs + fuck + shaku + faint + someone’s + cursed + phone | 227 | 0.0267063 |
505 | tories + coutinho + european + corbyn + blarite + dishonour + entryists + glamouring + gloryfying + hooklineandsinker + justed + radio4 + reggaetonlento + solas + usp + wmgeneration | 97 | 0.0114119 |
992 | totally + software + 22minutes + agree.never + dedirable + detori + downsized + ebikers + ecclesial + flawlessly + henryhoover + mael + mefuckinow + motocross + nguru + nitpick + obl + paper’s + prevaricating + reichsparteitagsgelände + rti + shiko + suzhou + that.s + wagers | 81 | 0.0095295 |
515 | tout + mange + fouled + ha + mata + moo + bark + bite + accessillibilliclub + bestow + bunton + distill + fukof + goforit + hale’s + humping + lancing + legacies + nopityfromanyone + spentmuchtimebettering + toot’n | 155 | 0.0182356 |
1197 | towel + president + brom + horn + deserves + nigga + bitch + checkup + fuckton + gnash + kizito + labourmp + lilos + mewrecker + mixie + murda + newlab + oversleeps + skzjshxhsh + theassaassinationtour + toped + up’d + veiws + yhedego | 143 | 0.0168238 |
1616 | toy + ago + watched + meds + hip + months + story + days + frankel + watchi | 259 | 0.0304710 |
164 | trade + closed + usdcad + usdchf + profit + forex + trading + audusd + eurchf + loss | 311 | 0.0365888 |
1185 | traffic + 30yrs + fuckarff + rotd3 + umbre + wip’s + unclean + decided + drivers + facebook | 50 | 0.0058824 |
1303 | traffic + road + petition + blocking + lane + junction + bbc + domain + belgrave + hinckley | 117 | 0.0137649 |
1551 | train + mattie + bme + careful + comms + deaths + coalville + enjoys + apparently + forms | 92 | 0.0108237 |
663 | trampy + agajsjvwiwosjshsh + expensivemonth + flatliners + gypsys + mymainsqueeze + pillage + rocovery + turtlebay + doddy + goode + leto + misdirection + tristram + unlikeable + wrestlingresurgence + yanoe | 100 | 0.0117649 |
1372 | trash + women + opinion + popular + stan + females + creatures + laughing + strangers + camal + dicested + exhaustingly + ikburnel + katyperryisover + killjoy + kilometers + proficient + reworking + rrst + shelbys + sotu + waroftheworlds + wonderwoman | 146 | 0.0171767 |
363 | treacle + sukki + pebbles + chilled + xxx + blackcat + chilling + nylah + xx + cute | 107 | 0.0125884 |
1123 | triggered + pum + worse + mars + rightly + fishstick + goaway + me’d + neostorm + nyaman + puddi + shouldni + simplier + urugly + ya’l | 92 | 0.0108237 |
1657 | trinity + fossils + supported + beingourselves + childrensmhw + academy + bhosle + crosby + sudesh + ltsig | 157 | 0.0184708 |
861 | trousers + biffers + deniys + fifalife + krokodil + portaloos + ryanaircyberweek + slappers + harvesting + strains | 78 | 0.0091766 |
109 | true + 30 + shocking + positive + humpday + dont + stay + wrong’un + bring + lovlies + squabbling | 98 | 0.0115296 |
105 | true + dear + bto + nkng + trueb + truee + sigh + indeedy + omgg + github + occurring | 138 | 0.0162355 |
102 | true + honey + amazing + xx + hurt + amaazing + implications + donna + wont + inspiration | 78 | 0.0091766 |
1129 | true + phew + thee + legs + superb + benatia + n’pton + rockn + startapetition + tooeasy + unbiassed + wankie | 251 | 0.0295298 |
1447 | true + wont + honest + 10yearchallege + 3501r + audioweb + bbygurl + centrum + danke + didhdiensos + dube + feelinghopeless + freezered + inventer + nuttah + sggzhshagags + sksksksksjs + totaltool + usfull + yammy | 214 | 0.0251768 |
752 | trump + government + tax + fisa + president + claims + eu + costofbrexit + fiasco.and + uk | 322 | 0.0378829 |
829 | trust + unbelievable + hokage + kagame + schone + undetectable + unsurprised + 72milli + foresee + gap | 96 | 0.0112943 |
1277 | trustworthy + hindi + average + contest + 07534975300 + abokyire + assholery + beashark + brenbros + findparesh + findpareshpatel + gorgo + heroism + maanav + shakyra + threeali + threebahri + threethemandem + threezayn + tmkoc + visiblewoman + visiblewomen | 88 | 0.0103531 |
731 | tryna + supposed + aite + babyface + finepeoplefromlondon + finepeoplefrommidlands + sabrinaonnetflix + settle + defini + whaat | 68 | 0.0080001 |
877 | tunnel + george’s + ir + enjoyed + walk + gig + mile + busy + inspiration + gb | 122 | 0.0143531 |
1189 | tut + alex.s + alexfromglasto + babas + ballsed + breen + castrovilli + drakevspusha + evertons + geraghty + hegazy + loban + makeacelebrityerotic + mbapps + myshkin + rambi + raq + realchamp + rearing + rectal + shakespeareinspace + sphinxometer + sportsbreakfast + stoger + thunderdome | 91 | 0.0107060 |
666 | twat + fool + hehe + stack + aurait + crininal + dreamboat + enciting + lenz + scurffy + trumper + ufc244 + youl | 91 | 0.0107060 |
709 | twat + fuckety + prick + bastards + putscotlandinafilmorsong + cowards + bugger + weapons + cheky + groundless + michail + tartans | 68 | 0.0080001 |
589 | twat + horny + wicked + hear + vile + kandeep + nincumpoops + cow + shortarse + stupid | 65 | 0.0076472 |
1442 | twirl + amazigh + feelmypain + hern + rushford + spitballing + xxpetite + 47k + bitc + feltz + mindsets | 56 | 0.0065883 |
1269 | two1st + fuccs + gdprday + gyros + jday + melancholic + stiffy + sunset + sleep + crepe + granat + nido + vimtos | 52 | 0.0061177 |
210 | ty + keeping + hope + alls + tricia + lui + lov + lovel + jody + morning | 54 | 0.0063530 |
1094 | typhootuesday + tagging + aree + awesomechips + bloodsugar + bramptonwines + hellbeasts + janmat + justbbold + lusted + modenese + naijas + piece’s + pintotage + superdays + teariffic + yuge | 68 | 0.0080001 |
1116 | uf + happening + 2t87 + alola + arghhghhghhggdhhj + aweosme + bonham + caned + celebritycallcentre + gatorade + halton + mischa + narcissistically + nodes | 89 | 0.0104707 |
189 | ukjobs + crazy + assembly + contractors + easter + leicester’s + painting + central + idea + apprentice + performed | 82 | 0.0096472 |
1599 | ulwfc + 1sts + awards + homeed + primaryschool + yalc + competing + oliversean + celebrating + 2nds + enjoythegame | 120 | 0.0141178 |
1297 | umar + vigil + masjid + otd + fog + reel + lid + night + 50shadesofgrey + gbkburgers | 327 | 0.0384711 |
677 | umbongo + phew + lozza + oge + ashame + nabby + spini + soo + bares + africans | 57 | 0.0067060 |
1204 | underrated + joshua + twat + idiot + moss + leon + tyler + character + thanos + average | 158 | 0.0185885 |
1354 | understand + watching + konami + watch + suck + offense + thrones + miss + armysgoingtojailparty + episode | 252 | 0.0296475 |
403 | undertaker + dhanaan + euck + hereditarymovie + hottestdayonrecord + jungshook + malaa + mariannenetflix + pemfest + wwessd | 128 | 0.0150590 |
1729 | undocumented + bullyin + campaign’s + derecognise + erupt + incel’s + increasin + looter + narrato + nativeamerican + newsquiz + notor + occupa + perpetua + pilgrims + pref + prevarica + rightwing’s + risible + rmt + servative | 50 | 0.0058824 |
1515 | unfairly + calorie + matters + considerate + nature + 993 + academicwriting + aeros + amagnificent + autisti + cashslaves + developi + deviate + extendin + fossilfuel + gilgun + gleefully + howtosurviveinteaching + keto’s + miscalculated + neurodevelo + nissanleaf + ortho + poisonjim + shantabai + sympathised + taverne + tranist + tyrying + undestruction + uninte | 85 | 0.0100001 |
667 | unfit + cunt + prick + loud + laughing + pulises + sharif’s + sharpened + bastards + borisjohnsonlies + kiddin + livpsg + rihad + riyadh | 51 | 0.0060001 |
1137 | unhappy + cba + 2ये + disconcerted + jakarta + melodramatic + nospoilers + ohthsnk + unconventionally + इंडिया + मेरा + हे | 73 | 0.0085884 |
1325 | uni + ammar + bevv’d + lso + stiddy + streetwanks + pulling + blare + raisa + sponging | 73 | 0.0085884 |
1109 | uni + assignments + antarctic + badluckcharm + brutalist + dankest + laminitic + rich + biochemistry + shibden + unnaturally + wdyd | 51 | 0.0060001 |
1318 | uni + bored + home + plantation + wanna + feel + ifslaverywasachoice + fucked + exam + gonna | 237 | 0.0278827 |
1111 | uni + essay + modules + hours + adulting + presentation + wait + accumulators + antwerp + bestival + eurovison2018 + huband + multiusers + ontwitter + roadtotenerife + shmoney + skskskd + starladder + tvos + vyvjncfgcgdtyvjk | 99 | 0.0116472 |
1264 | uni + lecture + lecturer + 9hours + arcitic + clumsiness + detoxicated + eligius + evacuating + galletas + gurt + renay’s + spacekru + tosta + wnloading | 71 | 0.0083531 |
807 | uni + lectures + stalking + exams + fifteen + 21sts + aslevel + badstockphotoofmyjob + boated + cram + foreverababy + irlensyndrome + isaw2018 + mias + rfid + ringlight + sidling + smad + spinis + studentblogger + thrumming + tonght + undergraduat | 104 | 0.0122355 |
1028 | uni + msg + friends + sand + bloviate + breate + comimg + disembodied + fieldtrip + gdprcompliance + gdprjokes + gdprready + jokermovie + jonghyun + marshawn + notajust + pokestops + reappl + showup + wishme | 78 | 0.0091766 |
1341 | uni + wait + breakdowns + sleep + hours + slept + hallelujah + coursework + week + bed | 138 | 0.0162355 |
1348 | uni + wanna + life + breathe + psfour + boyfriend + tweeting + car + feel + honestly | 269 | 0.0316475 |
1291 | uni + wanna + walk + marry + excited + im + phone + library + laughing + baby | 290 | 0.0341181 |
1208 | uniting + arcade + roundabout + cultures + universal + phoenix + 126 + 1se + 25mpg + 85mm18 + admi + anaesthetists + bamber + blos + challengesin + conceicao + directline + endeavoured + euthanized + glamor + gorgonzola + hollywoo + hollywoodbowl + looped + pestfromthewest + rehydrated + rob_hoang + roni + seethepersonnotthedisease + to0 + troubleso + vaulted | 77 | 0.0090590 |
415 | unstitched + happylohri + sari + match15 + mondayoffer + jewellery + mix + range + gift + cann | 52 | 0.0061177 |
56 | updated + firm + justsponsored + gett + tagging + tenths + stick + leicestercity + fundraising + 6.30am | 98 | 0.0115296 |
1175 | upgrade + pak + attempting + guardian + bim’s + convicts + danemill + incentivetrip + ja’s + joannah14 + narbrg + pikapool + protes + psycology + shaheen1aur + tentacles + transpires + zero0 | 65 | 0.0076472 |
1391 | usernamebestseatinthehouse + 2funky + busine + yoga + magickal + bestseatinthehouse + morrisons + stadium + camping + starbucks + turtle | 104 | 0.0122355 |
425 | utct + 12xmasdays + competitions + helpingpeopleinneed + reema + heart + 5words + allnatural + bathbomb + fakespear + freeproducts + instaas + ipromiseyou_wannaone + mrlindo + ocean8 + one2xmasdays + planetofferssnaps + prideinlove + queendom + ronniekray + shakeit + unno + wannaoneipucomeback + 시 + 약속해요 + 워너원과 | 121 | 0.0142355 |
598 | vaillantgroup + johann + vaillant + goody + memori + dsylmmusicvideo + endlessly + bucs + demi + bags | 62 | 0.0072942 |
1636 | val + support + activatetoeducate + bestpresentever + blisworth + camllie + communit + dicsussion + featherstone + feroza + fullcbd + geophysicsinabox + heatherspride + herturn + jolly’s + kiit + nationa + nbsculptor + nel’s + nierop + p’ship + reiko + runnerschatuk + rushcliffe + schoolsride2018 + shellard + takeastand + westmoreland | 69 | 0.0081178 |
424 | valentine’s + valentines + happy + day + valentinesday + valentine + valentinesday2019 + christmas + darkchocolate + single | 189 | 0.0222356 |
1673 | vaporeon + retreat + center + artsjobs + bcbf_18 + chos + digitilartist + dinn + disadvantag + espeon + facili + gowelltoday + headzupbusiness + helpi + ionic + iwca + jobsearch + literarylunch + meriva + moandzoe + pokemonfanart + portage + qaiserazim + smokebush + stayactive | 55 | 0.0064707 |
797 | varda + watched + agnes + film + rhapsody + bohemian + batman + screw + films + netflix + score | 138 | 0.0162355 |
484 | vardy + mahrez + ball + goal + 0 + epl + shot + 1 + keeper + goals | 137 | 0.0161179 |
1222 | vegans + channel + 5k + 01524831807 + 07976733666 + assassinscreedorigins + bargethedoor + blockworkbrickworkstone + chinaadtalks + feigel + habbits + heyeveryone + housemartins + hwtl + ingvareggertsigurðsson + innovateuk + jackhaslam + lessing + lotstodo + lunt + makeyourmark + mashupmix + neversleepnevertire + notimetodoitin + peititon + puppin + rickshawchallenge + sharethewarmth + smallachievement + spluttering + spn + stebbins + swingseat + tailoring + tgr + v2g + vesta + volume13 + widescreen | 99 | 0.0116472 |
358 | veins + inject + crying + kcvslar + directly + oui + tears + annas + callejon + capitano + croix + crossaints + noght | 55 | 0.0064707 |
755 | venezuelan + affinit + usa + threat + patriotic + russia + eu + government + muslim + direct | 68 | 0.0080001 |
652 | verry + wray + henny + morty + krept + mf + gunna + doom + slaps + jd | 112 | 0.0131767 |
89 | version + fireworks + imma + start | 78 | 0.0091766 |
1279 | vexed + feeling + feel + heaping + masclunist + basis + worst + comfort + dead + tongue | 111 | 0.0130590 |
594 | vichaisrivaddhanaprabha + theboss + lcfc + wowowow + vichai + thankyou + ooh + footballfamily + gudhi + padwa | 64 | 0.0075295 |
1542 | volvoxc40 + volvoxc40launch + 2️⃣0️⃣1️⃣9️⃣ + national + space + applicants + dgpconf18 + talk + forward + students | 146 | 0.0171767 |
493 | wagons + pose + shit + honkhonk + stuff + roll + perfect + canceledt + corton + fblock + hegotknockedthefuckout + lawrences | 92 | 0.0108237 |
604 | wah + cbb + comedian + 400th + blackiron + candy’s + carr’s + clugston + etive + gallic + itselioyefeso + jenson + lem + lundun + middled + orrin + ripniphussle + ron’s + satcheleaster + speedo’s + stressawarenessmonth + theoutlaws + wizz + yosserllyes | 76 | 0.0089413 |
470 | wait + chillis + neck + bottle + 750mlburgundy + constellations + eyess + meze + needit + ice | 71 | 0.0083531 |
767 | wait + dinner + absolutefavrestaurant + alotclosertohome + arsholes + babbas + bustling + cannes2019 + foxtonlocks + greas + hellospring + snowfall | 92 | 0.0108237 |
1074 | wait + excited + tomorrow + awesome + night + tour + vote + haha + rebelhearttour + gonna | 578 | 0.0680010 |
306 | wait + pause + aguer + tirednhsstaff + psh + huh + samatta + backflip + siding + aew + pencho | 117 | 0.0137649 |
1337 | wait + sleep + divisionala + mywinterinparisregion + waris + amsterdam + weeks + cheesefest + gopats + nighters | 51 | 0.0060001 |
990 | wait + sleeps + adaduk19 + bcmepencilsforrobaloumeracy + gatprimaryathletics + liveshows + mackems + manship + oneofthoseweeks + schofe + thankyouander + unbelievablejeff | 74 | 0.0087060 |
375 | waiting + chori + aur + karo + bas + kay + ki + patiently + actives + akhhbsnoh + banayee + beguman + behter + bevkufo + bhabi + bhagya + bhi + bkre + bukkake + choro + cina + dakoo + ffifa19 + gainwithtrevor + gfro + gushing + hmly + hoty + huwee + ihc + jata + jiysee + jori + kaha + kaltay + khaney + laey + lagal + larkay + leaue + mahlay + mazakh + mjh + nabe + nahe + nisar + oookimm + paise + phir + pizzay + salo + sangawi + shakal + she3re + steveweisers + suno + trapadrive + uperse + wileyfox + wirelessfestivallineup | 53 | 0.0062354 |
224 | waits + mutes + insert + problematic + not + casquette + improver + nimh + saod + sickdeep + splurts + squeaking + tters + twittersh + vassels + wryly | 128 | 0.0150590 |
1077 | wakaze + bhutan + mamsha + flight + austere + wexmondays + marco’s + feedback + crypto + demolition | 282 | 0.0331769 |
1330 | wanna + uni + library + fass + jetlag + phone + travelling + home + car + abbformulae + beardlife + fibro + hinching + itsahardlife + journaling + selfemployed + skyscanner + waitingh | 146 | 0.0171767 |
1677 | warrington + tours + forward + tonight’s + apcr + artclass + blackhistorymonth + bpsa + bpsaontheway + colm + humangeog + madprofessor + mthemahirakhan + palf + phillimore + pullman + rehearsa + rhinocup + shabana + slinger’s + spacegeek + weareacademicvenues | 61 | 0.0071766 |
1427 | warwick + divorce + childsplaymovie + glassess + haved + leggins + ndbdjfjd + pretentiously + swarms + uxurious | 69 | 0.0081178 |
915 | watch + gotchu + gamble + forgotten + cockrock + dooleys + hhm + mashaka + smack’s + vax | 86 | 0.0101178 |
1346 | watched + bothers + rtd + happening + kid + mccann + netflix + lorraine + 19ish + desperatehousewives + guncle + hashtagged + istandwithmermaids + maddymccann + mocharie + shhshsbs + t’aime + tayla + thethinning2 + thewitchernetflix | 105 | 0.0123531 |
1355 | watched + puff + soft + awight + blindsi + bromides + canrana + castlerock + doggedly + evrrytime + glassiyan + hirai + lawsonhisside + shaak + shownwas + studentlyf + teammaura + unsexy | 132 | 0.0155296 |
1410 | watched + relations + genuinely + novelist + remember + fell + screamed + died + abboandoned + birmz + feellikeayoyo + forthesakeofmybloodpressure + greenleafs + jojk + lactosing + laughjijinhgghh + lpl + molby + oneofthelastreasonswhythesundoesnotsetontheunionjack + pulledinalldirections + scummiest + sorter + sporadically + sweerie + thab + weatherspoon | 183 | 0.0215297 |
809 | waterfall + brit + 352 + anthisan + dews + hamletbbctwo + jwp + mafalda + mcclaren’s + mindbending + mrissed + reattached + rigg + righr + russellhowardwho | 91 | 0.0107060 |
1378 | wave + sea + bastard + 3xa + serums + taxidermists + theroar + surprised + pandoras + sandown | 51 | 0.0060001 |
1065 | wavy + tweedle + ferocious + allergicfilms + brotherly + detecter + doonstairs + gettinghelpineed + idan + isports + kral + masego + morco + overrule + shuffler + tumbleweed | 57 | 0.0067060 |
1586 | wayne’s + ajax + tub + draw + mosaic + juventus + dave + husband + cpd + disability | 66 | 0.0077648 |
1010 | weaknesses + sexism + americans + war + species + celeb + ansen + electionfraud + madmen + sargwani + sgirl + sounder + states.strength + sweepers | 63 | 0.0074119 |
798 | weather + cold + snow + middle + rain + wind + o’clock + snowing + england + hot | 791 | 0.0930601 |
713 | weather + winter + frost + morning + benjart + buging + fräulein + thawed + bucket + sunday | 65 | 0.0076472 |
41 | weddingparty + venueleicester + venue + partytime + decor + wedding + wow + fun + family + hallhireleicester | 69 | 0.0081178 |
180 | weekend + brill + lovely + follow + steve + garin + shihab + rick + barry + keith | 92 | 0.0108237 |
187 | weekend + keeping + brill + alls + hope + lovely + ty + wonderful + bud + paul | 94 | 0.0110590 |
84 | weekend + lovely + brill + hope + goodluck + daire + rob + simon + wonderful + craig | 91 | 0.0107060 |
43 | weekend + lovely + brill + insid + squishy + wetter + ian + ben + repost + ash | 110 | 0.0129414 |
359 | weekend + lovely + brill + wonderful + sherlock + morning + andrew + christofer + bud + shit | 111 | 0.0130590 |
168 | weekend + lovely + bud + wonderful + nads + hny + pat + rob + rich | 118 | 0.0138825 |
365 | weekend + lovely + hasan + nadeem + wonderful + salman + noah + eep + soumya + arberora + leeyah + zurich | 56 | 0.0065883 |
145 | weekend + lovely + hope + brill + wonderful | 55 | 0.0064707 |
298 | weekend + lovely + playwhatami + brill + teenchoice + rebrand + xx + mee + lynn + ministers | 193 | 0.0227062 |
209 | weekend + lovely + wonderful + brill + xx + hope + heike + caitlin + christine + gilbert | 410 | 0.0482360 |
80 | weekend + wonderful + glory + hope + xx + lovely + femmes + conformity + femininity + brill | 243 | 0.0285886 |
186 | weekend + wonderful + lovely + hny + brill + xx + hope + day + karen + morning | 192 | 0.0225886 |
1181 | welshman + chatterley’s + endviolence + iamthesudanrevolution + justiceforuyghur + sudanuprising + thuram’s + ygz + worzel + gummidge + kosher + kruger + puth | 55 | 0.0064707 |
770 | wemberley + god + freak + 000192 + 180718 + chitting + ermal + haha.what + mine.xx + refrence | 62 | 0.0072942 |
620 | whaat + blogger + erm + german + ahaha + hungover + farage + accents + nigel + brexit | 159 | 0.0187061 |
929 | whale + thanksgiving + bruno + proud + amitji + beasties + bloodborne + bodie’s + dawdling + flightschool + flightskillstest + pfco + ringchromosome6 + timetotalkday2018 | 65 | 0.0076472 |
1698 | whinging + faggot + animals + chancellor + elected + behav + deeming + delyth + elnemy + emancipated + mansour’s + weakn | 61 | 0.0071766 |
357 | whoop + bella + saluti + whoopee + 2p + copypasta + pit + kelly + crisis + ave | 93 | 0.0109413 |
450 | whoop + fight + ah + frenchy + gettingwhooped + kahn + plaice + sixnations2019 + 1v1 + leiwol | 53 | 0.0062354 |
155 | whoop + whoopee + xx + landscaping + paving + bella + gain + loss + win + pics | 54 | 0.0063530 |
324 | whowantstobeamillionaire + stutter + congratulations + wwtbam + askthehost + friands + nissy + phosphorus + screeaming + whowantstobamillionaire | 65 | 0.0076472 |
1590 | whyisthat + unhelpful + government + people + system + society + poor + reported + poverty + evidence | 838 | 0.0985896 |
954 | wicker + wrestlemania + bicentenary + biggardenbirdwatch + blingy + chertseypanto + cocoaworld + daresay + eccleshall + hl + instragammable + shoreham + ttm + tumbet + wolfrun2018 | 82 | 0.0096472 |
1125 | wilding + fucked + ovie + bathony + bundah + chanpsionship + chimps + deniers + doorty + jaq + usband | 84 | 0.0098825 |
307 | wimbledon + djokovic + frenchopen + ausopen + tennis + 6 + rg18 + nadal + quarterfinals + federer | 212 | 0.0249415 |
758 | win + game + shirley + uno + henderson + india + worse + bollix + burghley + d.silva + danial + germanygp + gokhan + inler + legolas + ljunberg + reekz + strictlyblackpool | 109 | 0.0128237 |
8 | win + love + hm + pizza + xx + favourite + guys | 57 | 0.0067060 |
284 | win + love + oooh + wow + xx + prize + nephews + xxx + copy + nieces | 380 | 0.0447065 |
325 | win + rocknroll + twitter + bartoli + blackdog + land.thats + lestar + penitentiary + sojealous + soyas + vitesse + wideawakeclub | 111 | 0.0130590 |
678 | winitwednesday + beautiful + yummy + freebiefriday + giveaway + forever + competition + sunday + horny + love | 595 | 0.0700010 |
230 | wink + caribbeans + swaminarayan + percent + shree + girlfriends + ffs + bidded + bignosed + chatsh + coram + dearmetenyearsago + did’nt + edgeley + flocons + granville + hatefuck + high15 + igy + intaking + leer + martinique + nodss + nomoretweetingforme + puricia + shaan + t’is + tgetbanged + toiletry + toothpicky + transiti + unlungu + usury + zonefacelift | 346 | 0.0407065 |
71 | winner + love + xxx + xx + worthy + wow + giveaway + ace + gin + win | 64 | 0.0075295 |
1436 | wipe + sadnessinhiseyes + supanatural + creating + honest + stainless + niagra + preferences + puzzled + tasteless | 55 | 0.0064707 |
1273 | wittertainment + accounts + lambert + parlour + reflecting + strength + leigh + progress + journalism + 15yrsaflo + 20minute + ande + behal + benetton + bers + borderlines + burkina + burkinabé + designstudio + elefun + ephemera + excess’s + f.u.n + faso + funnies + gheeze + haddad + individu + izorb + jamiehughes30 + lastresort + legibil + newtome + nqn + pilsbury + regr + starti + tuisova | 64 | 0.0075295 |
1386 | women + trash + people + crazy + girls + mad + evil + boys + theory + freaks | 283 | 0.0332946 |
595 | women’s + shopped + test + international + cannock + supported + internationalwomensday + nets + passed + grandson | 87 | 0.0102354 |
1030 | wonderful + reflector + sheepie + warfury + yesu + yupp + dietitian + dovi + halfpintfull + instilled + kaa + minerals | 121 | 0.0142355 |
92 | wonderfully + ff + artists + talented + dedicatedly + ks2 + talents + sixty + genuinely + count | 53 | 0.0062354 |
38 | woo + wit + projectmgmt + extremism + recommend + advertising + scrim + wing + england + hiring | 64 | 0.0075295 |
615 | word + doo + words + phrase + called + fuckmice + knobbing + kill + nah + fuck | 1242 | 0.1461197 |
348 | word + hands + lustrino + sonido + truth + amen + compensated + fives + grigg + leifle + ruben | 61 | 0.0071766 |
1633 | workshop + research + augustin + displaced + students + conference + artificialinteligence + machinelearning + session + botswana | 137 | 0.0161179 |
219 | wow + disgusting + wowzers + awesome + embarrassing + fab + aphrodisiac + owsome + wamhat + disgraceful | 68 | 0.0080001 |
1705 | wowser + pushti + raising + tune + cricketers + excited + antonio + launch + trad + conte | 105 | 0.0123531 |
1243 | wrecker + hugging + pls + haunt + minutes + cba + bout + murdered + miami + cats | 161 | 0.0189414 |
496 | wren + teamuhl + forward + sweetie + wait + pleasure + lovely + aww + amusez + at’cha + bellas + cherrington + eastmidlandsengine + hmos + k9 + kward + ladiesinred + my2faves + nixie + raakhee + smili + sofiane + twab + vsphere | 296 | 0.0348240 |
1377 | writers + confirmedbrummie + cuppy + earnshaws + freund + helwani + hindleys + lintons + timettes + clairey + dwane + emos + nonutnovember + safechuck + steffen + urselfs | 58 | 0.0068236 |
1416 | wrong + arsed + birdhouse + denist + feudal + longlost + primarni + sherrif + srry + urfjfgfgnitfghghd | 119 | 0.0140002 |
1530 | xie + hath + variation + wonderful + parkrun + choir + ho + enjoyed + sun + piano | 110 | 0.0129414 |
1581 | xmp + issue + exclusion + cost + 23.9 + ecommerce + environmen + fromabanker + herbies + housingforall + ironica + itgs + neen + populat + processi + sard + shrinks + stasi + tonhrt + transhumanism + unanswerable + youbrokeityoufixit | 78 | 0.0091766 |
784 | xx + ace + spiritridingfreetoys + shared + retweeted + jo3official + babe + pls + xxx + photographer | 197 | 0.0231768 |
97 | xx + adverse + experiences + papers + childhood + morning + ace + international + conference + xxx | 113 | 0.0132943 |
728 | xx + babe + darling + greeat + sanawich93 + wintery + manicure + anytime + greg’s + reposted + smithy | 54 | 0.0063530 |
740 | xx + babe + horny + underwear + lippy + bum + nice + bra + lea_ldn + misho + nac’s | 75 | 0.0088237 |
435 | xx + care + xxx + allah + luke + babes + ladies + 2.8k + actrice + reasonstobecheerful + rollonsunday + shakeywakey + whello + yr3 | 173 | 0.0203532 |
567 | xx + congratulations + enjoy + wishing + fab + congrats + hope + day + enjoyed + glad | 493 | 0.0580008 |
682 | xx + message + xxx + xoxo + babe + xox + chains + names + cba + pls | 190 | 0.0223533 |
705 | xx + sexy + babe + nipples + gorgeous + nice + tempting + wow + darling + cheers | 282 | 0.0331769 |
201 | xx + xxx + awesome + oooh + wow + fab + super + babe + gorgeous + brilliant | 183 | 0.0215297 |
295 | xx + xxx + babe + hun + jude + lovely + roar + hunny + cootie + lovelybx + patootie + shantell + zeibun + zlegro | 125 | 0.0147061 |
513 | xx + xxx + count + babe + awesome + congratulations + earlycrew + chance + thankyou + happy | 412 | 0.0484713 |
296 | xx + xxx + darling + lovely + lolli + xxxyou + lady + xoxo + rehana + saru | 67 | 0.0078825 |
742 | xxx + babe + anais + dressedbyjess + giveaway + chen + signing + allcrossed + lena + xx | 56 | 0.0065883 |
785 | xxx + babe + xoxo + comp + xx + id + steamin + shirt + shared + edinburgh | 249 | 0.0292945 |
894 | xxx + bravi + dingy’s + l.o.l + ragazzi + spreed + donel + sweeties + ya + sammie + tomasz | 77 | 0.0090590 |
216 | xxx + count + queer + gentleman + masters + degree + completed + ladies + performance + xx | 62 | 0.0072942 |
154 | xxx + fab + hamper + jessie + bored + fine + stay + xx + excited + love | 53 | 0.0062354 |
448 | xxx + follow + idol + birthday + xx + tweet + happiest + wait + pix + meet | 59 | 0.0069413 |
116 | xxx + lin + wehearyou + weseeyou + cxx + bronte + lj + xx + austen + haw | 117 | 0.0137649 |
899 | yah + 22g + dullness + every.single.year + rosd + shellz + spina + vechile + clammy + kneading + overdosed + pager | 55 | 0.0064707 |
1308 | yas + builder’s + excitedd + inmad + midafternoon + moisturized + owmayn + preg + drunk + numbed + trimester | 90 | 0.0105884 |
231 | yawn + whispers + pineapple + likier + saynotobergs + tireder + ashlawn + citations + doffs + litfic + ody + polishes + pore + tiph | 95 | 0.0111766 |
704 | yeah + halved + lidl + dictionary + charm + chill + helps + ouhh + rivetz + uhuh | 73 | 0.0085884 |
411 | yeah + stfu + burberry + cutee + pickup + stoped + pretended + fuller + scarborough + claus | 68 | 0.0080001 |
1535 | yesterday + team + bhaji + deser + forward + logs + mukesh + game + ivory + wowsers | 172 | 0.0202356 |
1045 | yeyi + dashed + clarity + 2mnths + cedr + hbe + jalesh + spongerob + squirted + th3 + toliver + twitterniece | 71 | 0.0083531 |
1035 | yh + bin + ah + absabloodylutely + anx + grrrl + nobe + pineappleciti + sweart + virtuous + yeaas | 81 | 0.0095295 |
64 | yikes + bodyconfidence + bodypositive + desperately + sleepy + theknickerfairy + click + cress + lost + yuck | 113 | 0.0132943 |
575 | yogabunny + marksandspencer + dark + merky + cheery + samosa + youu + bunny + yoga + trick | 102 | 0.0120002 |
33 | yougov + poll | 68 | 0.0080001 |
1231 | yuh + heyzos + twitterer + wetbandits + earth + marry + 61min + desailly + bawl + bevs + teetotal + whisk | 53 | 0.0062354 |
710 | yuk + apocalypse + zombie + kettle + avatars + brandambassador + doneouthere + dsharp + excitedandscared + grandcanaria + hobknobs + kangdaniel + lavalamp + madlad + nomo + sadnotsad + strangly + trolliewallie + waec + 강다니엘 | 106 | 0.0124708 |
65 | yule + offline + click + view + break + christmas + days + rew + lock + calpe | 107 | 0.0125884 |
711 | yummy + delicious + tasty + incoming + dilly + tryna + snooze + nice + evenin + bank | 319 | 0.0375299 |
326 | yummy + hm + tasty + mmm + yum + yummyness + overt + stews + hmm + gingers + injected | 51 | 0.0060001 |
395 | yummy + yum + luck + yumyum + goodluck + yumy + banana + peppasecretsurprise + dosas + eurghh + hala_madrid + mjk + swail + yumminess | 162 | 0.0190591 |
503 | zaha + 12g + 9g + advan + allerdice + artifici + mubepa + semunhu + stimmos + vakapinda + zvinotobuda | 77 | 0.0090590 |
1006 | zeph + diaz + nate + liam + cunt + scouse + ebele + effusive + erman + handwaver + hatt + jameis + koo + malace + neglects | 58 | 0.0068236 |
140 | zerowaste + unitedkingdom + free + persperant + hangers + conditioner + shampoo + spray + bubblewraps + matress | 112 | 0.0131767 |
290 | zim + oohnice + pdl + 5’7 + laughing + bathong + yoh + loveisland + fell + gyal | 466 | 0.0548243 |
242 | zip + apply + click + mornin + address + engineer + hiring + england + manufacturing + job | 114 | 0.0134120 |
1099 | zoo + bacon’s + buggar + cookbooks + gekko + goodtemptation + mdem + stretchingit + strum + stucktoweightwatchers + thealarm + thepowerofthetowers + three0dayswild | 84 | 0.0098825 |
795 | ॐ + outdated + car + brake + realise + pad + cars + cards + urge + 21december + 70.61 + 90x40cm + advisories + baes + bhagavadgita + daltrey + elena + ffstechconf + gotthatfridayfeeling + kayak + kayaks + kwikfit + letsjustcrackonnowalready + nelis + papped | 97 | 0.0114119 |
-1 | NA | 358431 | 42.1689483 |
tweet_classifications %>%
count(btm200bg_topic_sum_b, btm200bg_token10_sum_b) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
arrange(btm200bg_topic_sum_b) %>%
kable()
btm200bg_topic_sum_b | btm200bg_token10_sum_b | n | perc |
---|---|---|---|
-1 | 31234 | 3.6746401 | |
-1 | joy + tear + heart + smile + eye + skin + tone + hand + love + laugh | 1247 | 0.1467080 |
10 | fuck + shit + ass + people + bitch + real + im + unamused + gonna + talk | 3245 | 0.3817701 |
100 | people + life + feel + love + lot + change + live + day + world + hard | 29479 | 3.4681666 |
101 | hug + wed + venue + decor + hundred + dj + thevenue + repost + image + event | 657 | 0.0772952 |
102 | lcfc + play + vardy + game + puel + player + season + start + team + goal | 9047 | 1.0643680 |
103 | stick + drool + sticky + gimme + head + pum + tenth + tongue + upd + tooth | 433 | 0.0509419 |
104 | cry + loudly + tear + joy + heart + smile + feel + weary + day + eye | 14931 | 1.7566130 |
105 | reddeadonline + reddeadredemption2 + rdr2 + rdo + wolf + ps4share + flower + vgpunite + wilt + rise | 347 | 0.0408241 |
106 | car + police + light + alert + ticket + collision + officer + voltage + fire + day | 814 | 0.0957661 |
107 | smile + ball + soccer + blue + beer + mug + heart + clink + weekend + lovely | 7376 | 0.8677770 |
108 | tiger + rugby + football + clock + round + game + italy + pushpin + road + calendar | 1506 | 0.1771790 |
109 | ambulance + harry + prince + royal + antigua + barbuda + meghan + potter + nightshift + princess | 711 | 0.0836482 |
11 | love + watch + play + live + night + song + fuck + life + people + wait | 13974 | 1.6440232 |
110 | phone + app + iphone + apple + video + laptop + samsung + computer + play + galaxy | 3455 | 0.4064763 |
111 | japan + retweet + support + dan + follow + attempt + banzai + inspirationnation + pc + idol | 737 | 0.0867071 |
112 | rocket + globe + moon + space + europe + africa + national + centre + americas + asia | 1073 | 0.1262371 |
113 | design + shop + retail + store + hammer + cbd + print + net + tech + brand | 699 | 0.0822365 |
114 | water + plastic + air + clean + lot + love + oil + save + plant + fresh | 1788 | 0.2103559 |
115 | run + park + person + sign + morning + male + swim + victoria + walk + bike | 1490 | 0.1752966 |
116 | race + horse + chequer + flag + crown + spain + winner + god + motorcycle + congratulation | 913 | 0.1074133 |
117 | cry + loudly + heart + red + laugh + god + break + love + miss + guy | 5921 | 0.6965981 |
118 | send + call + service + phone + numb + customer + message + account + dm + receive | 4258 | 0.5009482 |
119 | pout + fuck + angry + cunt + hell + shit + people + bastard + disgust + bloody | 2900 | 0.3411813 |
12 | duck + bounce + bob + dylan + golden + lebron + trident + jet + era + step | 502 | 0.0590597 |
120 | box + fight + glove + british + tony + mckenzie + ballot + 90s + archive + light + night | 1368 | 0.1609434 |
121 | thousand + eighteen + snooker + nineteen + photo + shoot + pro + mmandmp + twenty + seventeen | 1080 | 0.1270606 |
122 | lorry + articulate + wink + mornin + truck + honk + option + phase + alignment + delivery | 410 | 0.0482360 |
123 | skin + tone + hand + light + medium + raise + fold + heart + victory + red | 6939 | 0.8163645 |
124 | live + uk + tour + ticket + concert + arena + thousand + birmingham + night + london | 850 | 0.1000014 |
125 | percent + 100 + syringe + 10 + 50 + 20 + 19 + 18 + london + 22 | 1314 | 0.1545904 |
126 | perform + dance + dizzy + art + ear + burlesque + skytribe + bunny + belly + night | 563 | 0.0662362 |
127 | road + pizza + london + le2 + blend + forty + passion + hindbar + takeaway + hind | 858 | 0.1009426 |
128 | tear + joy + im + fuck + bro + guy + nah + funny + life + joke | 2817 | 0.3314164 |
129 | smile + chicken + cheese + salad + fry + potato + tomato + cook + food + eat | 5802 | 0.6825979 |
13 | joy + tear + laugh + loud + roll + floor + cry + loudly + person + wink | 15240 | 1.7929665 |
130 | hundredth + mile + endorphin + endomondo + finish + run + thirty + walk + twenty + fifty | 1003 | 0.1180017 |
131 | excuse + gesture + wat + person + ju + ah + guy + love + yoh + coz | 800 | 0.0941190 |
132 | skin + tone + medium + dark + hand + raise + clap + fold + fist + oncoming | 3315 | 0.3900055 |
133 | boris + johnson + minister + prime + tory + pm + michael + gove + sell + cabinet | 1145 | 0.1347078 |
134 | hot + beverage + mornin + wink + earlycrew + coffee + morning + tea + blow + kiss | 1660 | 0.1952969 |
135 | finger + cross + skin + tone + light + middle + medium + luck + christmas + hope | 1358 | 0.1597670 |
136 | train + service + london + east + station + midlands + shire + bus + city + morning | 3534 | 0.4157706 |
137 | hair + colour + heart + wig + cut + mua + beautiful + balayage + lash + sparkle | 1228 | 0.1444726 |
138 | india + pm + fold + hand + pakistan + sri + create + indian + congratulation + hindu | 821 | 0.0965896 |
139 | tongue + squint + wink + grin + ghost + zany + eye + smile + excite + happy | 1792 | 0.2108265 |
14 | boutique + nims + online + percent + shop + sale + twelve + store + jewellery + 6pm | 1021 | 0.1201193 |
140 | zany + gin + pub + ukpubs + low + tonic + alcohol + revolution + ultra + beer | 636 | 0.0748246 |
141 | feel + bite + eye + hope + walk + head + leave + home + morning + day | 13447 | 1.5820223 |
142 | game + cricket + play + england + day + win + bat + bowl + match + county | 3183 | 0.3744759 |
143 | student + graduation + cap + university + graduate + dmu + uni + degree + proud + congratulation | 1902 | 0.2237679 |
144 | sweat + grin + poo + pile + droplet + anxious + downcast + eye + shit + sky | 1160 | 0.1364725 |
145 | beard + barber + pole + fine + thebeardedrapscallion + ayston + massage + road + cut + scissor + shave | 461 | 0.0542361 |
146 | free + unitedkingdom + foodwaste + pret + chicken + baguette + sandwich + cheese + salad + ham | 1870 | 0.2200031 |
147 | woman + dance + tone + skin + light + medium + hand + heart + red + dark | 1495 | 0.1758848 |
148 | la + soul + tenth + london + minus + el + hiphop + jazz + rnb + patriot | 583 | 0.0685892 |
149 | buy + store + ticket + sale + free + offer + percent + shop + online + price | 4075 | 0.4794185 |
15 | music + song + album + listen + love + play + tune + hear + video + track | 6463 | 0.7603637 |
150 | pride + rainbow + lgbt + parade + lgbtq + gay + white + victoria + park + shire | 672 | 0.0790599 |
151 | click + job + england + link + view + late + hire + engineer + apply + detail + force | 1665 | 0.1958851 |
152 | car + drive + driver + bus + road + park + bike + ride + vehicle + taxi | 2319 | 0.2728274 |
153 | reminder + friday + tribute + findom + night + quick + stevie + rt + paypig + cashmaster | 642 | 0.0755305 |
154 | people + agree + brexit + lie + party + tory + absolutely + country + totally + bad | 9990 | 1.1753107 |
155 | goat + allah + muslim + sha + islam + ma + adam + al + salah + fast | 531 | 0.0624715 |
156 | album + today’s + song + gary + love + live + numan + play + vinyl + darshan | 1899 | 0.2234149 |
157 | fuck + mate + absolute + bite + love + call + proper + cunt + lad + watch | 5927 | 0.6973040 |
158 | head + explode + bandage + speak + day + brain + mind + haq + overthink + hurt | 1060 | 0.1247076 |
159 | gt + lt + friend + 3 + live + girl + vibronics + people + whatsthebigmistry + takeover | 1069 | 0.1257665 |
16 | week + wait + book + day + holiday + excite + tomorrow + airplane + ticket + forward | 3442 | 0.4049469 |
160 | jack + lantern + skull + halloween + ghost + clown + spider + happy + crossbones + web | 969 | 0.1140016 |
161 | index + backhand + tone + skin + medium + light + dark + leave + fox + lcfc | 782 | 0.0920013 |
162 | hand + clap + skin + tone + light + medium + call + heart + dark + black | 3535 | 0.4158882 |
163 | tonight + live + night + comedy + direct + 10pm + 8 + 8pm + hit + gmt | 1059 | 0.1245900 |
164 | vote + brexit + eu + leave + tory + union + labour + custom + deal + people | 6829 | 0.8034231 |
165 | drink + beer + ale + pint + mug + nice + ipa + tropical + festival + pub | 2676 | 0.3148280 |
166 | weight + gym + body + workout + muscle + leg + lose + exercise + lift + core + train | 1768 | 0.2080029 |
167 | camera + photo + flash + shoot + photography + post + portrait + photographer + movie + model | 1306 | 0.1536492 |
168 | tower + resort + family + romance + alton + ride + love + story + park + read | 714 | 0.0840012 |
169 | fox + blue + lcfc + heart + hand + soccer + ball + city + king + power | 2834 | 0.3334165 |
17 | people + trump + labour + anti + racist + party + leave + corbyn + tory + wing | 5946 | 0.6995393 |
170 | joy + tear + day + eye + smile + laugh + people + leave + roll + home | 69916 | 8.2255279 |
171 | ha + holistic + simply + health + heal + bulldog + magickal + smp + therapy + wink | 652 | 0.0767070 |
172 | video + post + follow + link + check + youtube + instagram + love + page + photo | 4449 | 0.5234192 |
173 | twitter + tweet + people + follow + account + remember + post + join + send + reply | 7099 | 0.8351883 |
174 | wall + print + video + 3d + bespeak + mural + wallpaper + amaze + art + photo | 532 | 0.0625891 |
175 | monkey + evil + speak + heart + hear + smile + eye + red + love + blow | 1507 | 0.1772966 |
176 | arrow + craft + card + curve + cute + decorate + greet + bear + embellishment + cardmaking | 598 | 0.0703539 |
177 | story + ship + file + love + toy + folder + character + sea + park + fall | 1133 | 0.1332960 |
178 | de + montfort + hall + university + dmu + town + statue + thousand + otd + joseph | 861 | 0.1012955 |
179 | nose + steam + zzz + fuck + whyisthat + ffs + day + sleep + sleepy + bowl | 629 | 0.0740010 |
18 | watch + film + movie + episode + love + series + tv + season + night + game | 7676 | 0.9030716 |
180 | gift + wrap + christmas + im + love + santa + ive + box + deer + list | 711 | 0.0836482 |
181 | horn + sign + light + skin + tone + medium + smile + black + heart + eye | 2106 | 0.2477682 |
182 | trade + close + short + sell + loss + profit + buy + price + stop + forex | 670 | 0.0788246 |
183 | war + bush + hundred + oil + eleven + yemen + trump + american + company + bomb | 1278 | 0.1503551 |
184 | stone + gem + head + spot + doo + speed + photo + location + shark + knot | 451 | 0.0530596 |
185 | circle + red + blue + white + black + ball + soccer + 0to100returns + diamond + djfestlei | 814 | 0.0957661 |
186 | flex + bicep + skin + tone + light + medium + day + gym + dark + wink | 1093 | 0.1285901 |
187 | mouth + symbol + hand + fuck + zipper + frown + expressionless + pout + hate + nose | 969 | 0.1140016 |
188 | day + smile + heart + eye + morning + love + hand + night + lovely + happy | 40645 | 4.7818322 |
189 | john + james + smith + tom + steve + chris + sir + paul + david + love + talk | 4051 | 0.4765950 |
19 | health + mental + people + issue + experience + valproate + call + support + autism + awareness + care | 2282 | 0.2684744 |
190 | fish + line + electric + pole + plug + wash + machine + picket + catch + chip | 809 | 0.0951778 |
191 | amaze + love + beautiful + meet + day + absolutely + lovely + watch + hear + lady | 6032 | 0.7096571 |
192 | djing + djrupz + stunt + party + highlight + david + birthday + readytorock + surprise + rock | 418 | 0.0491772 |
193 | heart + sparkle + grow + beat + love + smile + revolve + eye + purple + blue | 3549 | 0.4175353 |
194 | king + power + stadium + city + lcfc + shire + unite + algeria + football + ball | 1583 | 0.1862379 |
195 | test + pass + congratulation + drive + attempt + ooh + wowowow + fault + minor + tube | 864 | 0.1016485 |
196 | joy + tear + laugh + roll + floor + fuck + cry + skin + eye + tone | 27065 | 3.1841626 |
197 | change + learn + research + datum + plan + question + agree + uk + system + issue | 10407 | 1.2243702 |
198 | art + paint + artist + numb + gallery + contractor + artwork + piece + design + sketch | 1533 | 0.1803555 |
199 | sun + rain + umbrella + drop + cloud + weather + beach + day + summer + sunshine | 1537 | 0.1808261 |
2 | mum + baby + dad + family + love + friend + child + day + kid + parent | 4067 | 0.4784773 |
20 | listen + bbc + radio + news + parent + hear + talk + watch + tv + live | 2488 | 0.2927100 |
200 | school + session + day + centre + free + child + week + train + class + learn | 2682 | 0.3155339 |
21 | book + read + write + love + theatre + story + art + film + brilliant + performance | 3585 | 0.4217707 |
22 | trophy + medal + tennis + basketball + 1st + sport + field + ball + rider + hockey | 1131 | 0.1330607 |
23 | people + police + kill + law + child + stop + crime + call + woman + attack | 8495 | 0.9994259 |
24 | suit + week + cocktail + shooter + island + fantasy + geekycocktails + drink + giffardliqueurs + tropical | 387 | 0.0455301 |
25 | smile + eye + heart + beam + grin + 3 + hand + slightly + roll + love | 17933 | 2.1097945 |
26 | roll + floor + laugh + eye + loud + cry + loudly + grin + fuck + dead | 5655 | 0.6653035 |
27 | original + poster + kit + ready + monster + nike + mutant + post + fanatic + buy | 605 | 0.0711775 |
28 | laugh + cry + girl + loudly + loud + people + guy + gonna + mad + boy | 19908 | 2.3421507 |
29 | 2 + 1 + 3 + 0 + 4 + 5 + 6 + keycap + half + win | 2647 | 0.3114162 |
3 | golf + hole + club + flag + hat + junior + day + play + height + captain | 842 | 0.0990602 |
30 | thumb + skin + tone + light + medium + smile + eye + wink + hand + hope | 7135 | 0.8394236 |
31 | party + popper + birthday + heart + happy + confetti + balloon + ball + eye + red | 2026 | 0.2383563 |
32 | orange + diamond + nail + biking + polish + gelnails + cycle + minibikers + tangerine + letsride | 416 | 0.0489419 |
33 | mark + exclamation + double + ticket + speaker + volume + sell + fire + low + car | 1389 | 0.1634141 |
34 | sleep + night + tire + hour + bed + wake + day + morning + feel + shift | 6834 | 0.8040114 |
35 | win + chance + prize + competition + love + awesome + enter + giveaway + fab + cash | 4030 | 0.4741243 |
36 | fire + collision + graffitiart + hot + urbanart + streetart + voltage + spraycanart + sprayart + fuck | 1274 | 0.1498845 |
37 | goal + player + fuck + play + game + score + ball + world + win + penalty | 13669 | 1.6081404 |
38 | fan + game + win + team + city + league + joy + play + club + tear | 21332 | 2.5096825 |
39 | kadiri + news + highfields + evington + sweet + launderette + candy + unite + strawberry + chocolate | 1172 | 0.1378843 |
4 | smile + sunglass + smirk + hand + cool + sun + yonex + eye + fire + awesome | 675 | 0.0794129 |
40 | write + read + start + book + exam + word + learn + finish + paper + day | 2862 | 0.3367106 |
41 | sign + person + skin + tone + medium + male + female + light + facepalming + shrug | 8347 | 0.9820139 |
42 | pay + people + uk + tax + sign + government + nhs + house + job + percent | 8529 | 1.0034259 |
43 | key + snake + lock + kill + gameofthrones + san + battle + king + jon + call | 904 | 0.1063544 |
44 | food + savor + eat + vegan + meal + restaurant + lunch + love + dinner + delicious | 2590 | 0.3047102 |
45 | tattoo + ring + bride + veil + wed + dragon + piece + studio + bell + start | 896 | 0.1054133 |
46 | slightly + plead + frown + break + average + smile + miss + extremely + feel + greatly | 1073 | 0.1262371 |
47 | 12pm + lunch + till + menu + restaurant + tawa + chinese + late + 4pm + indo | 440 | 0.0517654 |
48 | sign + bin + litter + petition + stop + save + wastebasket + share + trash + ni | 814 | 0.0957661 |
49 | oadby + meet + cyclone + community + detail + morning + dementia + wigston + ganga + support | 537 | 0.0631774 |
5 | people + read + word + tweet + question + bite + wrong + lot + opinion + answer | 9758 | 1.1480162 |
50 | heart + red + blue + green + purple + love + black + smile + eye + yellow | 9680 | 1.1388396 |
51 | world + unite + england + cup + kingdom + uk + france + country + flag + live | 2963 | 0.3485932 |
52 | skin + tone + light + medium + hand + heart + smile + eye + sign + person | 18274 | 2.1499127 |
53 | laugh + loud + ass + xx + tweet + funny + fuck + lcfc + imagine + joke | 4567 | 0.5373017 |
54 | kiss + mark + blow + heart + rise + smile + sweetie + babe + red + eye | 4455 | 0.5241250 |
55 | twenty + thousand + saturday + friday + 7 + 8 + day + join + 2 + march | 7345 | 0.8641298 |
56 | heart + love + red + smile + eye + xx + hand + hug + hope + blow | 13353 | 1.5709634 |
57 | christmas + tree + santa + claus + merry + light + skin + xmas + tone + gift | 2630 | 0.3094161 |
58 | glass + clink + bottle + pop + cork + wine + cocktail + beer + drink + mug | 2170 | 0.2552977 |
59 | nurse + nhs + care + hospital + staff + patient + day + team + doctor + service | 2152 | 0.2531800 |
6 | mark + check + heavy + white + cross + exclamation + heart + sign + win + box | 1243 | 0.1462374 |
60 | love + list + ant + dead + watch + hero + im + anne + dec + numb | 886 | 0.1042368 |
61 | leaf + dash + green + clover + wind + tree + fall + easter + chick + hand | 961 | 0.1130604 |
62 | nottingham + thousand + fair + goose + exposure + seventeen + eighteen + longexposure + goosefair + photography | 414 | 0.0487066 |
63 | royal + mix + match + range + collection + set + shop + gold + bag + earring | 1161 | 0.1365902 |
64 | girl + boy + sex + sexy + love + woman + lady + call + feel + naughty | 2647 | 0.3114162 |
65 | ho + whoop + route + en + jane + leo + hey + sing + bet + xfactor | 648 | 0.0762364 |
66 | weary + astonish + cat + super + god + treat + fold + chance + amaze + win | 592 | 0.0696480 |
67 | god + fold + bless + jesus + family + prayer + day + hand + life + lord + peace | 2820 | 0.3317694 |
68 | musical + note + score + microphone + headphone + guitar + hand + keyboard + song + music | 1275 | 0.1500021 |
69 | birthday + happy + day + cake + balloon + hope + party + gift + popper + shortcake | 4008 | 0.4715361 |
7 | road + lane + warn + traffic + close + park + flood + police + light + car | 2410 | 0.2835334 |
70 | dog + hamburger + pooch + spin + thepoochery + dry + puppy + love + boy + cow | 1080 | 0.1270606 |
71 | fear + scream + god + call + worry + black + wow + luck + purple + rainbow | 809 | 0.0951778 |
72 | snowflake + cold + snow + weather + winter + morning + warm + day + snowman + ice | 1817 | 0.2137677 |
73 | win + game + league + final + cup + play + team + ball + world + season | 8714 | 1.0251909 |
74 | tear + joy + cry + loudly + laugh + heart + loud + love + funny + skull | 17345 | 2.0406170 |
75 | player + play + maguire + start + sign + unite + transfer + season + arsenal + team | 2179 | 0.2563566 |
76 | day + twenty + hour + week + ten + month + ago + minute + start + thirty | 4523 | 0.5321252 |
77 | button + music + gig + night + cafe + drum + play + bright + band + guitar | 844 | 0.0992955 |
78 | box + fitness + professional + boxer + workout + kelton + boxercise4health + mckenzie + glove + active | 3820 | 0.4494181 |
79 | smile + pig + moose + eye + heart + palette + shade + lip + lipstick + purple | 1700 | 0.2000028 |
8 | skin + tone + medium + person + light + people + sign + day + female + feel | 8859 | 1.0422500 |
80 | read + article + daily + pro + mail + academic + paper + news + survey + eu | 786 | 0.0924719 |
81 | star + strike + glow + day + amaze + war + review + sparkle + wow + pass | 1165 | 0.1370608 |
82 | sad + relieve + pensive + break + news + rip + hear + fold + family + heart | 2724 | 0.3204751 |
83 | wear + dress + store + shirt + shoe + colour + style + heart + top + naqshonline | 3242 | 0.3814171 |
84 | mi + ah + dem + di + fi + yuh + nuh + gyal + ting + life | 957 | 0.1125898 |
85 | loveisland + love + jack + alex + georgia + fuck + girl + laura + loveisiand + megan | 1879 | 0.2210619 |
86 | fist + oncoming + collision + skin + tone + light + medium + sunglass + bro + smile | 588 | 0.0691774 |
87 | south + west + africa + african + nigeria + zimbabwe + jamaica + north + ham + country | 729 | 0.0857659 |
88 | support + donate + raise + charity + uk + hospital + baby + donation + tweet + fundraising | 1364 | 0.1604729 |
89 | team + amaze + award + proud + congratulation + fantastic + win + night + support + tonight | 11749 | 1.3822548 |
9 | kitchen + knife + wave + water + architecture + fork + bye + interiordesign + plate + buildingibd | 577 | 0.0678833 |
90 | black + flag + white + lion + rainbow + square + triangular + england + ball + soccer | 1452 | 0.1708259 |
91 | print + paw + miniature + cute + fimo + pig + pet + guinea + unicorn + jar | 1039 | 0.1222370 |
92 | vomit + nauseate + mask + medical + sneeze + feel + sick + bad + thermometer + confound | 1384 | 0.1628258 |
93 | chocolate + ice + bar + cream + cake + coffee + eat + tea + soft + milk | 3669 | 0.4316532 |
94 | rise + shamrock + blossom + bouquet + tulip + cherry + fold + hand + hibiscus + india | 1361 | 0.1601199 |
95 | event + day + meet + talk + forward + business + conference + support + team + excite | 10739 | 1.2634296 |
96 | walk + centre + city + park + house + build + st + museum + beautiful + day | 3815 | 0.4488299 |
97 | hundred + thousand + sixty + million + twenty + forty + fifty + eighty + call + ninety | 3282 | 0.3861231 |
98 | upside + banknote + flush + pound + grimace + dollar + spaghetti + euro + bag + yen | 677 | 0.0796482 |
99 | cat + call + dog + kitty + animal + thousand + eleven + iphone + mtkitty + love | 856 | 0.1007073 |
tweet_classifications %>%
count(trans_umap_hdbscan, trans_umap_hdbscan_tfidf10) %>%
ungroup() %>%
mutate(perc = (n / sum(n)) * 100) %>%
arrange(trans_umap_hdbscan) %>%
kable()
trans_umap_hdbscan | trans_umap_hdbscan_tfidf10 | n | perc |
---|---|---|---|
-1 | NA | 358431 | 42.1689483 |
0 | choose + lord + question + visit + person | 3777 | 0.4443592 |
1 | huge | 192 | 0.0225886 |
10 | inspirationnation + follow + ammunition + remoaners + davis + ore + inspiratinnation + adrift + distracts + javid | 105 | 0.0123531 |
100 | chance + win + awesome + prize + competition + nationalbestfriendday + vivienne + repondez + s’il + plait | 64 | 0.0075295 |
1000 | orthopaedics + physio + copywriting + haematology + sanitarium + victorian + bakineering + bivvy + committmentanddedication + congresswomen + darters + epidural + gastroenterologist + iems + majoring + meer + melodic + neurosurgery + onlinelearning + politcs + postlethwaite + pugwash + raisingawareness + retrosunday + roadrunner + shipmates + stoptober + thedays + tijuana + toobin | 79 | 0.0092942 |
1001 | cctv + haven + antivax + arthropod + barrow’s + busymorning + luther + makingthewordsrain + mercury’s + profiled + sl700 + st6 + winwithradian | 64 | 0.0075295 |
1002 | pep + 10ball + alors + anthonyjoshuavsalexanderpovetkin + bringmethanos + dommage + freemahrez + garros + grigg’s + knifepoint + r92vuls + thamographe | 52 | 0.0061177 |
1003 | jeremykyle + wildly + jermaine + goat + klaxon + walsh + thechase + bradley + 5.7m + arronbanks + asazi + boikot + bronsons + commoner + cuckhold + dayumn + financials + fuuking + hammy + hussies + inners + jazz’a + kimak + michaelmcintyre + orthoptist + pedalling + policeman’s + unimaginable | 98 | 0.0115296 |
1004 | charlatan + jeremykyle + cunt + bla + fucking + jayda + kurtha + mustbewalkers + outrages + starks + unprincipled + unwashed | 82 | 0.0096472 |
1005 | institch + 12daysofjones + spiritridingfreetoys + stitching + bestquoteever + classmeet2018 + crackdown3boomquetsweepstakes + fyreuk + getactive + greatshow + laserpointers + martinshottap + massivecongrats + munbae + perseverence + saddltastic + schoolisfun + soundsdodgy + webbtelescope + webbuk | 59 | 0.0069413 |
1006 | zeph + diaz + nate + liam + cunt + scouse + ebele + effusive + erman + handwaver + hatt + jameis + koo + malace + neglects | 58 | 0.0068236 |
1007 | europeday + luxembourg + detail + mock + photoshoot + sing + 12mb + 18mb + antholo + blueprints + bryam + budgie’s + daysinthesun + godblessournhs + gujara + indesign + joviality + magicmail + mentalhealthday2018 + mpcastleford + needencouragement + nitefreak + quay + quillette + talbles + trundle + typeset + wmhday | 55 | 0.0064707 |
1008 | ha + fyha + eurovision + nigga + kane + nom + yeah + willetts + wait + jeremykyle | 782 | 0.0920013 |
1009 | memes + dalalai + heysiri + mofos + organises + patronized + peopleshapingp3 + qualityfiction + abegi + acquainted + addi + fifa’s + grotbags + manche + powercut + reimburse + toplads + twittertunes + verymerewards | 95 | 0.0111766 |
101 | prize + chance + fab + awesome + fantastic + giveaway + competition + win + bashthebookies + guys | 60 | 0.0070589 |
1010 | weaknesses + sexism + americans + war + species + celeb + ansen + electionfraud + madmen + sargwani + sgirl + sounder + states.strength + sweepers | 63 | 0.0074119 |
1011 | morning + beige + rain + loved + slides + forward + brum + cold + snow + 1h10 + 5.7c + alove + beautifulasyouare + certaint + englishtourismweek + flowerworks + honeymakers + inhabited + leicesterrailwaystation + missef + naturalbody + recurved + waterlilies + youlgreave | 150 | 0.0176473 |
1012 | arsonist + chugged + fentanyl + fluster + fucc + lovetowin + badder + 7up + chrysanthemum + honeslty + icicles + sksksksks | 58 | 0.0068236 |
1013 | delboy + wiggle + yay + leopard + exciting + whoop + ackn + actfast + bayahlupha + bovary + camlephat + corrine’s + edhuddle + fastscan + isee + jeanna + karenina + kenyon + lavo + mmmp4 + oldcorn + rebecka + sath + textbooks + thisgirlneedsnewclothes | 109 | 0.0128237 |
1014 | rogerfederer + salute + bukem + chrissymus + craigdavid + diffident + flamingle + humbleone + lifelounge + ltj + m2 + mysterybox + nixtape + oosh + sherman + skulduggery + thatvoice + weg2018 + whataguy + woojins | 111 | 0.0130590 |
1015 | n’night + blooms + bed + enjoy + snow + forward + glad + hues + day + beautiful | 267 | 0.0314122 |
1016 | laughing + people + loud + fuck + shit + brexit + feel + life + agree + yeah | 61392 | 7.2226902 |
1017 | hate + uni + medieval + armour + uniform + allthatmatters + commuterlife + quadratic + streetb + gc | 84 | 0.0098825 |
1018 | data + gcseresultsday2019 + carbon + 11.59pm + bizi + desertislanddiscs + devopsagainsthumanity + dynamit + hsj + maggie’s + onyourfeet + opposable + ourhouse + typesetting + vfr | 53 | 0.0062354 |
1019 | enjoy + yum + delish + chickenandmushroom + cnosummit + espana + holiyays + letterboxd + marais + nationaltoastday + pracatan + tasteofbella19 + youcanmakeit | 88 | 0.0103531 |
102 | true + honey + amazing + xx + hurt + amaazing + implications + donna + wont + inspiration | 78 | 0.0091766 |
1020 | respeck + onky + pizzatime + sprog + steamroll + trumpy + sauvage + toilet + corfu + cozzie + orthodoxy | 54 | 0.0063530 |
1021 | dontletindiaburn + herewwe + cloe + goddammit + holts + incitement + searingly + buckfast + ddd + faceless | 61 | 0.0071766 |
1022 | lancomegwp + wait + haha + butts + vegan + birding + water + warmth + beer + pokemon | 203 | 0.0238827 |
1023 | 12daysofjones + daystogo + yay + cheers + giveaway + 2date + crisp + donated + apriciado + chh + ells + hardbacks + mileys + stylistlive2018 + thoughtsandprayers + twerky | 88 | 0.0103531 |
1024 | cartoon + jersey + 90hz + ambulanceservice + animating + babearslife + bestofboth + bischoff + cartograms + castleman + churner + conten + educa + harb + ivortheengine:bagpuss’s + retes + wreford | 52 | 0.0061177 |
1025 | notty + carwash + kno + notinterested + secondreferendum + tizin + primed + wondurfull + bouff + calms + queenie | 94 | 0.0110590 |
1026 | newcomerfairytale + spider + walaalo + banger + fucke + impala + iwe + zeph + mangled + ctrl | 51 | 0.0060001 |
1027 | aide + aggy + moron + bolton + novels + boasted + goldenballs + teakshi + teyana + vinlands | 53 | 0.0062354 |
1028 | uni + msg + friends + sand + bloviate + breate + comimg + disembodied + fieldtrip + gdprcompliance + gdprjokes + gdprready + jokermovie + jonghyun + marshawn + notajust + pokestops + reappl + showup + wishme | 78 | 0.0091766 |
1029 | ep2 + wait + stoked + thexfiles + brexipocolypse + cfwm + cuthberts + experimentar + fuellerlife + greatplayers + guiz + helpfindhugo + icannotwait + inacative + personable + shezness + theband + thefuelstore + urlike + vou + whatapic + wize | 138 | 0.0162355 |
103 | competition + brilliant + macro + compressed + lens + flower + wind + gif + photos + eighteen | 59 | 0.0069413 |
1030 | wonderful + reflector + sheepie + warfury + yesu + yupp + dietitian + dovi + halfpintfull + instilled + kaa + minerals | 121 | 0.0142355 |
1031 | ethnography + dagr + build + a’rushden + algorithm’s + asthmaplusme + avalable + badaction + benin + capstick + curlies + customizations + defaults + dhconf18 + earlydiagnosis + excavators + expo18nhs + ferroscanning + financed + funi + greenspace + halfin + herstory + iothub + kashmirstillundercurfew + killall + loggist’s + lovelyday + nicaraguan + o’gaunt + osbournes + philbeerband + puregold + shoplcfc + smsports + systemuiserver + thebiggestweekend + theron + wearepeople + wishihadasociallife + zaxis | 86 | 0.0101178 |
1032 | glasgow + inspirational + confidence + apr + driveway + leicinnovation + blog + diana + building + rehearsals | 117 | 0.0137649 |
1033 | aquaphrase + bashmore + bbm’ing + bigga + channeled + cheetah + earthists + gussets + margret + quotables + scherzomfishrnwner + uste | 52 | 0.0061177 |
1034 | fucker + bastard + twat + truer + fucking + fuck + bastards + absolute + shoot + motherfucking | 210 | 0.0247062 |
1035 | yh + bin + ah + absabloodylutely + anx + grrrl + nobe + pineappleciti + sweart + virtuous + yeaas | 81 | 0.0095295 |
1036 | snort + learnt + 11.44am + burntthehouses + grandson’s + izabo + mohdaziz + noneofmybusiness + pokusaj + shalford + swayze + themakingofme | 86 | 0.0101178 |
1037 | goosebumps + limbs + pum + bin + beauty + respect + dick + yh + childish + milner | 742 | 0.0872954 |
1038 | ashtray + goldberg + ackers + dampening + omelet + samuraj’s + shippinguptoboston + teprosteakgrill + wholelottalove + cheaper | 90 | 0.0105884 |
1039 | pulp + impressive + fiction + wavey + abdallah + babyspice + barbaros + boozin + catline + delajore + fishponds + madderz + nextdoir + nocafetraining + raceready + zoomers | 99 | 0.0116472 |
104 | rdr2 + reddeadonline + rdo + reddeadredemption2 + ps4share + vgpunite + ps4pro + photomode + virtualphotography + rdr2 | 214 | 0.0251768 |
1040 | mirror + bitch + shit + real + lifes + fork + snitch + damp + ja + forever | 153 | 0.0180003 |
1041 | foldedarmsbrigade + hellraiser + pinhead + stemcafedakar + teamplants + trilog + verka + birmingham + adr + psyched + tedu2020 | 63 | 0.0074119 |
1042 | scrooge + numpties + messi + lilac + meow + truth + poor + nigga + 25c + 60b + alkada + alwaystimeforyourfans + bbcapprentice + brexit50p + crumbie + currencys + dutch578 + enticed + flameswhetstone + fuguring + gymsharkblackout + hunnit + lanvyor + lonsdales + motorsports + muhfucka + ock + popstarsinrhymingcars + progenitor + prometheus + rx7 + showpony + unforgettablegig + vxqe | 145 | 0.0170591 |
1043 | gynae + nicu + fries + stella + pint + season + 13reasonswhyseasontwo + condor + antihistamines + makeashowormoviecold | 53 | 0.0062354 |
1044 | af + den + suck + classy + scots + ahl + bumfriend + catchit + deek + fker + forkie + hae + imovie + inhad + mebee + nestor + real’n’proper + salaah + scrievin + thawto + toffeefilled + watermelown + waveh + woff + wuo | 121 | 0.0142355 |
1045 | yeyi + dashed + clarity + 2mnths + cedr + hbe + jalesh + spongerob + squirted + th3 + toliver + twitterniece | 71 | 0.0083531 |
1046 | taller + memes + 96l’s + ahain + besmircher + carparks + defendant + dolezal + grapefruits + karamizov + kokkaro + malory + miming + neoteric + rhimes + s3eed + sameera + stairwells + tanvi + winnerforme + wyipippo | 112 | 0.0131767 |
1047 | mood + mane + worldcupofthedecade + broad’s + harryrednap + irtgtfasap + longeatoninvaders + maddsion + peaksandtroughs + rematchakimbo + swingsandroundabouts + wollop | 57 | 0.0067060 |
1048 | thugga + versatile + betrayer + cucks + demandbetter + deuxpoints + edgware + haahhaa + ikpeazuhasfailed + irritayting + kurewa + swantonbomb + trrc + twirraa + whitesnakes | 72 | 0.0084707 |
1049 | thugs + cape + rat + anticlimactic + flashly + freddys + gleu + muddascunt + napm + oystons + partings + teggies + tweewtmy | 53 | 0.0062354 |
105 | true + dear + bto + nkng + trueb + truee + sigh + indeedy + omgg + github + occurring | 138 | 0.0162355 |
1050 | devastated + alcudia + asyouwere + backsies + cahpo + garnering + inbreakable + lfucking + naspers + noshame + revan + smugmodeon + snogger | 81 | 0.0095295 |
1051 | miriam + watched + generic + nicki + buonannonuovo + drumline + godsofegypt + horrendo + intaferon + lemocrats + oldskoolhiphopbangerstop20 + realeased + rites + sbvi + sene + simz + spazaz + stavs | 62 | 0.0072942 |
1052 | changer + tvormoviesynonyms + watermusic + beggy + ere + weirdo + boy + ntas + truth + naughty | 264 | 0.0310593 |
1053 | chalmers + charlize + deloran + dizzle + heatacelebrity + mustbebuzzininyourbonesbitch + nurdle + sext + shmapag + childish | 52 | 0.0061177 |
1054 | ariana + 99.999 + dispise + indisputable + lcpa + shuttling + bingewatching + caucasians + parodying + saxons + shitehouse | 52 | 0.0061177 |
1055 | portman + mcs + offence + criminal + nunu + jimin + middle + east + evil + rebecca | 144 | 0.0169414 |
1056 | crime + raped + offenders + 6yearswithoutcory + egalitarian + gomsh + kalesalad + luddite + mishandled + queda + rainwater + reservoirs + souther + terrorisim + unreservable | 93 | 0.0109413 |
1057 | album + song + funniest + whitest + mathematicalsongs + bangers + relatable + tune + music + slaps | 348 | 0.0409418 |
1058 | album + banger + song + looku + songs + tiller + bangers + track + bryson + days | 128 | 0.0150590 |
1059 | iconic + desent + drakeveffect + fennec + findme + gonebutneverforgotton + heroically + holo + inesta + italiangp + karke + lappy + sadda + sohnja + theforceisstrong + youthie + zeds | 61 | 0.0071766 |
106 | 5lbs + fitness + classes + loseweight + receive + punch + boxercise4health + lose + offers + weight | 104 | 0.0122355 |
1060 | albania’s + bestintravel + cathal + ds620 + feltbad + hbr + latelateshow + lidington + phdlove + phun + rastafarian + senzo + shabba + shabbascores + spawns + ulo + whathappensnext | 88 | 0.0103531 |
1061 | brokenkettlehell + visuals + slipped + mvp + moments + run + morning + avantdale + blitzed + bruno.nelly + dogs.this + domesticated + edithstein + furpals + got8 + papaji + penury + smthg + sttheresabenedictaofthecross + ta1300 + tided + waterboys | 80 | 0.0094119 |
1062 | martial + watchin + bielik + crudd + fugley + gypsyking + janika + lookum + malonee + masher + megazone + mollyy + natt + pudu + siruh + sonraki + tengs + thirdinatwohorserace + tranna + zedebee | 84 | 0.0098825 |
1063 | plunges + pip + gcseresultsday2019 + dwp + radio + golden + adinktober + adox + appearanc + benjudd + boccua + clamity + comited + consented + createspace + dico’ya + dressings + énergie + englandvssweden + fictio + fursuit + gatepost + gaylestorm + gothsloth + gretna + kdp + locatio + londons + longestfootballgame + melaniemartinez + netherhall + neveraskanangrywoman + oustudents + pacify + pennydale + planetearth2 + pleather + poorlymum + progres + reasearch + rollz + sailboat + sandman + sexandthecity + snta + vardyquake + weatherwatchers | 123 | 0.0144708 |
1064 | ting + atozquiz + sh + iconic + innit + putafilmonabudget + shurrup + wimp + chaldish + anyting + farst + forzaferrari + gursimrans11 + heatradiospringclean + kicky + labrawn + quim | 547 | 0.0643538 |
1065 | wavy + tweedle + ferocious + allergicfilms + brotherly + detecter + doonstairs + gettinghelpineed + idan + isports + kral + masego + morco + overrule + shuffler + tumbleweed | 57 | 0.0067060 |
1066 | chicken + garlic + salad + cheese + fried + rice + spinach + potatoes + potato + salmon | 523 | 0.0615303 |
1067 | sudan + data + paying + privacy + 1980ish + 7.9bn + agia + cashback + caustic + claymore + directive + exceris + gibraltor + insuran + maotsetungsaid + neices + phse + reporse + skippingschool + sudany + telecom + twitterbot + usmca + wiliam | 69 | 0.0081178 |
1068 | tax + politicos + potholes + corrupted + taxpayers + brunette + plastics + labour + msm + vincent | 83 | 0.0097648 |
1069 | legs + heart + bdaypresent + dilution + skkfjdjsksk + unbuttoning + gnashers + gyming + lisboa + llm + tocks + volks | 88 | 0.0103531 |
107 | apply + suitable + happened + casting + squadie + yiy + maguire + retard + soyuncu + deer | 59 | 0.0069413 |
1070 | devil + tew + ovie + 80sbaby + andalou + angin + backingtheblues + ddb + defsoul + dryness + energyzozo + fraidsters + gnt + iamdbb + jaebom + moudly + peskycyclists + sexpositive + shangalang + wipped | 138 | 0.0162355 |
1071 | 1000000000000000000000000000000000 + brambles + hpindigo12000 + longpigs + the2019 + ttgtravelhero + tunage + 1988 + idles + outkast | 55 | 0.0064707 |
1072 | balwant + bigears + daysofyore + galaxywatch + jt‘s + misterland + neonnight + zovirax + zowie + cute | 70 | 0.0082354 |
1073 | frasier + enforc + euelection + girihaji + gw4crucible + psu + runwithrav + spotlights + tonistorm + arni + mummyblogger + nxtukcoventry + psyched | 53 | 0.0062354 |
1074 | wait + excited + tomorrow + awesome + night + tour + vote + haha + rebelhearttour + gonna | 578 | 0.0680010 |
1075 | ratings + cool + boom + ales + beauty + jump + controller + awesome + ag2r + autumncolour + boabie + busyliving + chccyafest + clumpy + cometigers + desmonds + exfactor + flywithbrookside + funkier + greatline + greenasabean + hammbo + hehehehehe + hellotohalifax + howtotrainyourdragon + interpreter + lavercup2018 + norestforthewicked + onepiece20 + originaljam + partyanimal + rapidcharge + slurm + snakepass + takeheraway + tanx + tee’s + thass + translater + uncis + whayy + worhol | 295 | 0.0347064 |
1076 | sigue + masterchefuk + prick + blaming’someone + chairbots + clementino + dontgoadthegoat + gooaal + guzaing + inauthentic + leivpau + leoseason + leosrule + muther + scrupulous + sitdown + teensy + whatnottodoatthebeach | 86 | 0.0101178 |
1077 | wakaze + bhutan + mamsha + flight + austere + wexmondays + marco’s + feedback + crypto + demolition | 282 | 0.0331769 |
1078 | amazing + proud + fantastic + team + event + support + night + staff + brilliant + players | 237 | 0.0278827 |
1079 | sigue + ding + hart + 4head + amunt + babbage + chile’s + coonate + ct2bb + drinkerslikeme + estadi + hilfiger + iden + knuc + knuth + leicestericerink + looe + mestalla + moistly + museuming + nickin + preset + rendezvous + seaward + solvent + some.serious + strategoc | 67 | 0.0078825 |
108 | mood + mooded + shmood + fr + af + moods + rly + asf + perfectly + process | 81 | 0.0095295 |
1080 | djene + jaw + pill + tablets + bipolar + c.s + clic + darcie’s + fairhill + frankfurter + hevent + highstreet + throa | 55 | 0.0064707 |
1081 | idea + bfj + cannybare + choosepsychiatry + haward + jaybird + lfw + millie’s + nabbing + oxtonboy + psychers + tiggle + wrrmuphflt | 68 | 0.0080001 |
1082 | god + 33k + 51k + akukho + deleging + obsceneties + lula + mouthguard + suppleness + toks | 87 | 0.0102354 |
1083 | cure + damola + disagree + doctor’s + hypnotic + fob + snowman + radical + partying + dunk | 54 | 0.0063530 |
1084 | flammkuchen + kfc + meal + headlining + enjoyed + yummy + burger + puff + opera + peas | 144 | 0.0169414 |
1085 | queen + ausopen + serena + icon + bronzie + fuckingmelt + hondaf1 + knobber + spaggy + stoptheb | 64 | 0.0075295 |
1086 | idea + loving + pockets + loveisiand + pets + amaxing + bhalei + britainsfatfight + campness + dannytetley + deadting + dyah + friendgoals + fuckyounhs + guggenheimmystery + inundated + lovelygirls + madarame’s + mehs + namedrop + notthatnunwoman + ratmum + rayofsunshine + rollininit + solanki + sorryjack + soubou + statment + whatdoesyourfursonasmelike + whoopie | 167 | 0.0196473 |
1087 | mondayiscoming + enjoy + aural + image + images + love + fab + dice + photos + sax | 312 | 0.0367064 |
1088 | regret + billions + 12x12 + aerosmith’s + attitutudes + blubisland + gruppo + kumbyah + mariokarttour + maxinepeake + oooggh + pct + resubscribe + solars + strummer + truepotential + vesuvius + wooping | 115 | 0.0135296 |
1089 | sekonda + guten + improving + a’dam + alilowth + balsall + beebot + blnvids + bluesatbrod + cathicon19 + chibnall + domed + embodiments + holdings + horrorfamily + horrormovies + internationaldayofthegirl + intersections + keyham + moreso + rausby + seksy + sippy | 53 | 0.0062354 |
109 | true + 30 + shocking + positive + humpday + dont + stay + wrong’un + bring + lovlies + squabbling | 98 | 0.0115296 |
1090 | squidward + askia + courtney’s + enslavers + gmgb + lackathreat + nonarbhinoishqbaz + racisit + samori + sexisim + shaqtin + teamgbrl | 60 | 0.0070589 |
1091 | nigga + thearchers + surbhi + guy + nosurbhinoishabaz + gravy + imaceleb + keef + lil + bitch | 260 | 0.0305887 |
1092 | nigga + bastards + landscapebandsorsongs + thearchers + queen + drummer + roar + fuckers + 3.50ko + affectations + ashworth4pm + bosso + bumba + dineo + edgeimundo + eygptian + groundhoppers + hooky + kangdan + kickback + mutton + ohmyfest + sashay + scarced + supercouple + surridge + vulgarian + yawande | 140 | 0.0164708 |
1093 | cunts + nigga + thearchers + worldmapsongs + thechase + wankers + bastards + mare + braindead + fuck | 323 | 0.0380005 |
1094 | typhootuesday + tagging + aree + awesomechips + bloodsugar + bramptonwines + hellbeasts + janmat + justbbold + lusted + modenese + naijas + piece’s + pintotage + superdays + teariffic + yuge | 68 | 0.0080001 |
1095 | connect + santander + ha + sung + objects + blame + jeez + 21stcenturyhostess + actuallu + brixham + carenvy + dcu + equalitynow + hetal + hitman2 + lethelenfly + manenoz + missrik + notmyselftonight + oik + shillings + snowdaytomorrowatthisrate + socceraid2018 + stpiran + tdk + topically + visualiser + zombified + zorb | 205 | 0.0241180 |
1096 | holla + dough + cbbann + fripay + ipayroadtax + johnstonpress + moonbase + murdeous + secretaryofstate + stow + turtley + westenra + yorkshirepost | 115 | 0.0135296 |
1097 | laughing + loud + mbio + urgot + wombats + sore + pun + creams + amateur + anytying + bwipo’s + casetify + chocolatine + confines + elliegould + eyehealth + frank’s + fulbourn + joyed + kathmandu + mcaleese + optometry + optomlife + ripjohn + salazars + salut + sate + secombe + shattap + snuffle + spt + sweet’s + thermos + whynosoundaward + whysoquiet | 239 | 0.0281180 |
1098 | 12min + cf97 + eggman’s + jeresey + marti + moulting + purplerain + sonna + syer + munda + nuthin + pellow | 62 | 0.0072942 |
1099 | zoo + bacon’s + buggar + cookbooks + gekko + goodtemptation + mdem + stretchingit + strum + stucktoweightwatchers + thealarm + thepowerofthetowers + three0dayswild | 84 | 0.0098825 |
11 | competition + fab + cool + win | 54 | 0.0063530 |
110 | soverignty + concerns + immigration + evidence + brexit + congratulations + tattoo + tattooflash + traditionaltattoo + prize | 120 | 0.0141178 |
1100 | audible + givenchy + albany + alfred + ark + bedford + solidarity + oil + intimate + trolley | 144 | 0.0169414 |
1101 | amanhecer + anoitecer + feedback + ___________ + teething + ao + pj’s + customers + cancer + ants | 129 | 0.0151767 |
1102 | notebook + 200s + 42sq + councelling + holidayreads + lenghts + moodymann + ńot + slosh + gothel + memorising + specialized + sundress + tove | 87 | 0.0102354 |
1103 | allthebest + babe_ruthl3ss + blusterustery + loverikmayall + lvd + phonicsbootcamp + reggatone + scrumplicious + stoofie + hell | 99 | 0.0116472 |
1104 | amazing + ha + nekkid + fantasticbeasts + cute + hero + wow + liar + abbasback + andrewlincoln + canthandlethetruth + dudeperfect + fieryfriday + goodlad + gotmykeys + grosbeak + henson + holz + johnnfinnemore + loadofbollox + loveyourgarden + notanewmanager + notaplonkeranymore + oversocks + perdoobliable + personauknumber1 + phooey + pinni + practicaltheology + reincarnate + rickgrimes + seductionvalentine + sh1thousery + shooked + standardsstandards + topboynetflix + troublefollowsme + universeboss + vellos + wallisweekend + wokeup | 316 | 0.0371770 |
1105 | lana + cutepuss + drempt + natashamina + nsama + shareboxes + wwemmc + yesproject + catscountdown + compromises + smudge + unlikelypsychicpredictions + valchanginglives + viscous | 101 | 0.0118825 |
1106 | pray + nike + 767mph + alemia + chainsmoker + condenses + cultivation + februadry + glamourise + januadry + mama45 + ngidlisiwe + ok’s + theforce | 92 | 0.0108237 |
1107 | inspiring + ramadan + hosted + honoured + tri + invited + joined + 50years + abbeypumpingstation + annum + birdin + birdwatcher + bonaventura + chocolatekrispiecakes + cimc2018 + cjc + convertib + dmuvloggers + doha2019 + expressos + fenton + funafterschool + gpcareers + gpjobs + granbabiesmuchlove + hairpage + healthyschool + homegro + iowfestival + librarylife + lovemission + m240i + receivers + ryalls + sedbergh + vmware + watersidecare + wheresthevodka + wherewouldbebewithoutmusic | 78 | 0.0091766 |
1108 | loud + laughing + squadron + dataprotection + esculated + inet + pies + bigelow + lianne + shoeing | 79 | 0.0092942 |
1109 | uni + assignments + antarctic + badluckcharm + brutalist + dankest + laminitic + rich + biochemistry + shibden + unnaturally + wdyd | 51 | 0.0060001 |
111 | leicestershire + rapper + boastful + santhi + 00miles + narcissisism + leicestershirelive + malignant + v.i.p + entourage | 67 | 0.0078825 |
1110 | blethyn + cheekyfekers + laundrybar + lestha + nothingbutthieves + roadtomexico + stillgetitupthebumholey + amsterdam + anthropocene + frome + interminable + jrod_hd + knotweed | 85 | 0.0100001 |
1111 | uni + essay + modules + hours + adulting + presentation + wait + accumulators + antwerp + bestival + eurovison2018 + huband + multiusers + ontwitter + roadtotenerife + shmoney + skskskd + starladder + tvos + vyvjncfgcgdtyvjk | 99 | 0.0116472 |
1112 | 91yrds + dhibaato + fjb + notbuyingit + preserving + rember + gratuity + politicising + 53s + hunnid + rustler | 53 | 0.0062354 |
1113 | amazing + 30stm + coyy + feathering + fuck’excuse + mexicane + rik’s + sciencetist + sherlene + pipe | 97 | 0.0114119 |
1114 | sanctions + immature + lame + geller’s + pathetic + payer + uri + dangerous + brexit + politics | 72 | 0.0084707 |
1115 | loud + laughing + jeremykyle + boom + cbb + ryan + yoots + fuck + worse + ronnie | 495 | 0.0582361 |
1116 | uf + happening + 2t87 + alola + arghhghhghhggdhhj + aweosme + bonham + caned + celebritycallcentre + gatorade + halton + mischa + narcissistically + nodes | 89 | 0.0104707 |
1117 | mideastlks + breixt + librarians + plug + smelly + lesson + sea + possibly + disappointed + ated + comeracing + eachothers + guttedforhim + hearingloss + judt + malevolent + minstrasy + ngqa + precum + premen + shouldick + smarttech + surender + symbiotic + worldbollards | 168 | 0.0197650 |
1118 | drog + flyeaglesfly + lookslikeacarthorsebodyofashirehorse + mwad + skink + supplemental + thatwasalreadyinyoursearchhistoryhonest + theribmam + thwadi + wondabar | 118 | 0.0138825 |
1119 | greddy + isterrifyinglyaword + ched + sirius + winnats + thrilled + edd + terrifyingly + glide + mints + wam | 54 | 0.0063530 |
112 | ezprint + uv + wall + vertical + world’s + printed + directly + 3d + bespoke + mural | 54 | 0.0063530 |
1120 | esl’s + fished + horseboxdrivers + justanopinion + smartieplum + stanleykubrick + 40p + herod + crunchies + driverless + enroute + wus | 71 | 0.0083531 |
1121 | server + contraindications + dialup + guidan + hayu + sponsored + ntd + sabyasachi + ssds + birchbox + counterparts + frowned + woes | 59 | 0.0069413 |
1122 | customs + union + boirders + democratic + brexit + remoaners + vote + voted + priti + betrayal | 95 | 0.0111766 |
1123 | triggered + pum + worse + mars + rightly + fishstick + goaway + me’d + neostorm + nyaman + puddi + shouldni + simplier + urugly + ya’l | 92 | 0.0108237 |
1124 | country + empire + obama + matters + trump + people + racist + cyclists + hatred + attack | 93 | 0.0109413 |
1125 | wilding + fucked + ovie + bathony + bundah + chanpsionship + chimps + deniers + doorty + jaq + usband | 84 | 0.0098825 |
1126 | johnathan + jacques + jean + cuvelier + boop + sharring + iax18 + unitingtwoworlds + rascal + ribena | 94 | 0.0110590 |
1127 | choccy + allstarsbasketball + beefier + chilleh + dysonfan + pook + warband + wwelita + yummeh + supply | 76 | 0.0089413 |
1128 | slatt + wholelotta + ha + netflix + ey + 2fast4me + 501s + arrgh + atypical + classily + crystalmaxe + dbfighterz + defiently + dopple + eggplant + gele + jilt + jury’s + lllios + nestlé + ohmydays + paradoxical + pastiche + rukky + russells + snagged + sundaysizzler + ursula’s + virginriver | 154 | 0.0181179 |
1129 | true + phew + thee + legs + superb + benatia + n’pton + rockn + startapetition + tooeasy + unbiassed + wankie | 251 | 0.0295298 |
113 | betterpoints + earned + walked + hundredths + miles + fantastic + eighty + thirty + fifty + superb | 56 | 0.0065883 |
1130 | aee + airbender + amita + balard + bezee + drumonds + humperdink + inej + mbj + teenagecrush | 84 | 0.0098825 |
1131 | heist + sexily + dramatically + escalated + maura + congrecolition + fewmin + foine + hollys + storh | 72 | 0.0084707 |
1132 | pain + bipolar + ticket + missing + easier + aviyah’s + donnaru + hakkinen + hermionie + j22 + joaquim + meret + rgrump + smybolar + tomorr | 80 | 0.0094119 |
1133 | stroke + word + cheers + cbr500r + haaving + yeah + a7i + sonyalpha + boy + christianhiphop | 76 | 0.0089413 |
1134 | nt + kingdom + united + stadium + lcfc + jamaican + morningside + king + taiko + power | 142 | 0.0167061 |
1135 | fridayreads + eatafilmforbreakfast + insitu + henry + netball + datguymoses + fireplug38 + itienary + japanexpo + pahnationaldogday + qbaraz + rescuecentre + shorthaired + subscrition + weareroses | 54 | 0.0063530 |
1136 | killing + jedi + cut + laying + bbygirl + executors + jarrodlyle + payable + emoji + cryen + grandstanding + slicer | 146 | 0.0171767 |
1137 | unhappy + cba + 2ये + disconcerted + jakarta + melodramatic + nospoilers + ohthsnk + unconventionally + इंडिया + मेरा + हे | 73 | 0.0085884 |
1138 | haha + adorable + guinness + brollys + carvwr + crunchier + didoslament + fromalantoellen + haina + healthyfood + hellenistic + lakini + lestahshire + limon + maana + naona + o.o.d + onerous + overstaying + paler + shyamalan + slowcookersunday + spenp + spoiltforchoice + theparty + toa + walkersstax | 204 | 0.0240003 |
1139 | haha + love + amazin + ow + loveisiand + 50fr + brinklzz19 + chocablock + easter2019 + giveawayalert + grandslamofdarts2018 + hand_ + hegerty + isthatbad + jet2 + kummerspeck + mantua + owltastic + peptides + slimmingworldonline + smog + sudpended + teletriage + tetweeted + underused + wwii | 182 | 0.0214121 |
114 | nice + sweetie + writes + lottery + ff + raise + fan + stark + buy + tickets | 228 | 0.0268239 |
1140 | cute + nice + meow + sounds + gorgeous + awesome + heh + amazing + retweet + wow | 704 | 0.0828247 |
1141 | cute + austriangp + bestinworld + cringemoment + hallucinations + huggable + ifuknowuknow + lowo + smahsing + teamajd + troilusandcressidapuns + weeklyfix | 73 | 0.0085884 |
1142 | leicestershiregolf + festive + fut19 + christmas + tickets + golf + fifa19 + fut + ninth + blackberrie + chickenkeeping + christmasjumpers + englandgolf + fathersdaymeal + fia + fifaultimateteam + futchampions + getintogolf + guildhall’s + handma + kaykay + kingofthegrill + libbynorbury + mariachi + mixin + physicschristmas + sausa + totgs + youwonnapizzame | 61 | 0.0071766 |
1143 | baghban + cockwash + guzan + karuis + muckhole + mullarikey + scruples + snakiest + badescu + goodwoodraces + triffic | 52 | 0.0061177 |
1144 | i’am + shook + goin + crying + mins + nintendo + floating + hayfever + ho + forehead | 220 | 0.0258827 |
1145 | pom + awkward + darksideofthering + fckdd + k.i.d.s + loovens + shalln’t + transcend + turley + amazingaldichristmas + brody + bruiser + carrow | 77 | 0.0090590 |
1146 | fag + lover + ha + favs + nope + 2000m + 311th + 90cm + ackee + bababoi + bacerz + bawtry + brighton’s + callaloo + charmaz + coolasyouget + coporate + delicatemusicvideo + fawns + garmin520 + groundedtheory + hairiness + justjuice + lergy + mathsconf1 + nikesh + roadhouse + transformationthursday + will.tell | 143 | 0.0168238 |
1147 | thread + boastfulness + netherland + speeder + boyy + bruva + disclaimers + teetotals + beautifully + nuanced + romcom | 68 | 0.0080001 |
1148 | books + shook + mars + triggered + birds + salty + harsh + stylish + recycling + teamwork | 485 | 0.0570596 |
1149 | hustle + bliss + begins + ignorance + parrot + thread + animaljobs + aquasafari + birkinish + blinkin + catandmouse + cobyin + dambreach + ensues + familyreconciliationsjeremykyle + flubber + frug + gamston + hahahaah + jamaat + maan + mamual + penniless + riverdales | 133 | 0.0156473 |
115 | pooch + thepoochery + thepoocheryleicester + thepoocheryglenparva + poochery + bath + glenparvadoggrooming + puppy + glenparva + daisy | 189 | 0.0222356 |
1150 | christmassed + exasperating + summation + shitted + tutti + darken + concise + gover + journo + creases | 61 | 0.0071766 |
1151 | thor + captain + iron + america + bhache + gravityalwayswinsgirls + hiddleston + kingofhorror + kneecaps + moniuts + runak + slurred + tdw + tws | 61 | 0.0071766 |
1152 | eijit + marce + parabellum + pleasureless + rightnooww + carboot + havisham + llamas + moomin + ability | 103 | 0.0121178 |
1153 | jennifer + garner + actress + accuri + aleida + conjouring + differentoverlordrules + firstgirliloved + gged + kpoop + tamera + technicallyron + ugandans + undermyskin | 61 | 0.0071766 |
1154 | film + movie + incredibles + gomez + racist + jorja + trailer + celebsgodating + wars + star | 145 | 0.0170591 |
1155 | film + lift + toast + recognises + encounter + carter + elite + rosie + 13minutestothemoon + andrewneilinterviews + astarisbornmovie + kakhulu + racingpost | 52 | 0.0061177 |
1156 | lecturers + itsofficial + scion + snowpatrol + theapprenticetwenty18 + throwupthex + uniformed + valid + dubya + nakedness + pfeffel | 74 | 0.0087060 |
1157 | alpedzwift + apoliticalcampusmyarse + b.excuse + bringbacksummer + cantsay + deice + isover + me.f + stonker + ushamba | 56 | 0.0065883 |
1158 | ha + wow + oya + god + argh + itscominghome + ahra + ahrathy + celebrityxfactor + dap + do.x + fuckme + halla + jameelajamil + letabitchlive + mciavl + ollys + perfectlyflawed + shauna + unbelieva’brow + waccoe + wahaay | 191 | 0.0224709 |
1159 | morganout + peepers + pfn + schwebebahn + skullduggery + rich_draper6 + braised + diabete + anit + ef + rapha + safest + soonest | 65 | 0.0076472 |
116 | xxx + lin + wehearyou + weseeyou + cxx + bronte + lj + xx + austen + haw | 117 | 0.0137649 |
1160 | bowled + hollywood + backstree + carlito + climatedebate + din’t + duedateproblems + farrier + fulloflove + thewritestuff + twale | 89 | 0.0104707 |
1161 | anna + 7.8 + aiden’s + brionys + gies + leanham + loy + phobias + silverlining + tigerroll | 76 | 0.0089413 |
1162 | dance + erm + blackpanther + haha + agree + body + archdeacons + bettuh + boxoffice + bunions + busyboy + efter + f2ri + homesunderthehammer + knightingale + kthnx + marvelstudios + minnits + onwiththeshow + photie + roygrace + sabbatical + shamba + stubbly + superleeds + that1 + wakandaforver + xyloband + yeritielmans | 220 | 0.0258827 |
1163 | billyfest + fuckable + leeloo + lumpas + reichelt + shege + soapbox + ff’s + umpa + endoscopy + manifestation + nigella | 55 | 0.0064707 |
1164 | ha + ready + hai + pooch + curve + brilliant + haha + agree + verse + fabulous | 261 | 0.0307063 |
1165 | shatap + musa + gobsmacked + laughing + loud + matching + afence + allaboutthecheesejokes + bodygaurd + brokeback + carumba + cuming + derr + freedomofspeech + frontrow + imposes + janmoir + metformin + ohmoussademble + sadjoj + whoopiisaledge | 100 | 0.0117649 |
1166 | adama + attic + polling + battlestar + cim + confederates + contributio + fa_wpl + floorboa + galactica + houska + iunno + janetjackson + marcus’s + nocontextdnd + purpurea + redrafting + sarracenia + scrend + ukbffnationals2018 + walsh’s | 53 | 0.0062354 |
1167 | chintz + dictation + 20min + qc + scrutiny + viewers + data + cyclists + petrol + 600lt + aldred + browsers + clev + comp.lang.forth + dennett + druds + enf + headgear + hospitalised + infra + landl + loadi + megadrive + mitigation + rackets + subcutaneous + terribad + usenet + valpro + vpa | 92 | 0.0108237 |
1168 | osmo + slowmotion + ksivsloganpaul + chaff + sedate + choreograph + pussycat + wary + cinematic + rigged + swallowed | 54 | 0.0063530 |
1169 | shadders + makemenervousin5words + uta + caught + worse + incoming + nowt + whoop + a’brewin + barnacles + brokenvows + bullys + carvwol + chatshit + clockey + coolasfuck + disconnects + don‘t + ejaculatory + electrically + glovlei + gownage + gradations + halamadridynadamas + hfq + honezly + ipods + lovage + meloney + nightcrawler + orangearmy + phewmin + poznan + punya + putafootballerinasong + soutot + supportstaff + t’county + thebay + thwiate + tm’s + townie + travellight | 301 | 0.0354123 |
117 | beautiful + enormous + stunning + luck + serenely + pretty + gorgeous + holidayinsephora + lalalala + sicho + taittingerbathtime | 188 | 0.0221180 |
1170 | brexit + labour + tory + voted + mps + vote + customs + corbyn + union + voters | 100 | 0.0117649 |
1171 | rowell + afia + badprimeministers + bopp + chimdi + climtiy + cocanie + creed2 + envoiallen + fzce + iko + indited + jonnycore + kajol + loyiso + roxanne‘s + rukh + scarmongering + silvia + threshing + trapp | 135 | 0.0158826 |
1172 | god + eheartedly + f2eg + firstnameonthesheet + holeu + lecktrick + poggers + sonsgwithnumbersinthetitle + technik + keys | 149 | 0.0175297 |
1173 | comeaux + cuckwhoo + have’offended + ibelieveyou + skagness + zonndi + arturo + blueplanet2 + edmondson + fugde + zora | 52 | 0.0061177 |
1174 | practice + alternates + beastfromtheeastmidlands + hatehatehate + laddie + worvlei + impressive + bateman + digne + runnings | 68 | 0.0080001 |
1175 | upgrade + pak + attempting + guardian + bim’s + convicts + danemill + incentivetrip + ja’s + joannah14 + narbrg + pikapool + protes + psycology + shaheen1aur + tentacles + transpires + zero0 | 65 | 0.0076472 |
1176 | monday + night + till + spag + week + day + 5am + cheeseboard + chivvying + fatloss + gonegirl + gulps + lunctime + mansa + mumsquig + oneoneam + squezy + sucka + sundehh + weightgain | 155 | 0.0182356 |
1177 | shaku + calmest + donet + nevert + obinna + ringler + svu + tombstones + bia + minimize + pmsing | 91 | 0.0107060 |
1178 | today’s + strikeforuss + ustrike + ucustrike + geography + year11 + asteroidday + year10 + picket + year8 | 184 | 0.0216474 |
1179 | cutest + faves + rupi + kaur + bangs + lowkey + kendall + emotional + joke + father | 198 | 0.0232944 |
118 | mornin + round + morning + fours + tweeps + napue + sprig + topgirlfriend + whoopwhoop + busybusy + cranberries + tippin | 67 | 0.0078825 |
1180 | nearer + albania’d + blindironman + blockt + catpartsinfilmsandsongs + cheesier + demoninating + frontier + itsallaboutpoo + mfa + raspi + relegationfodder + ridence + singingnmyhead + solidarityforever + stanlio + uttered + vasectomies + walkofshame + whwtatarat + yyes | 84 | 0.0098825 |
1181 | welshman + chatterley’s + endviolence + iamthesudanrevolution + justiceforuyghur + sudanuprising + thuram’s + ygz + worzel + gummidge + kosher + kruger + puth | 55 | 0.0064707 |
1182 | moin + kevinthecarrot + mugged + chanting + ahkmenrah + ankara + barmyarmy + festjustsaying + grudgeful + ineverdance + liztruss + mediaeval + moscovites + pisspoortours + rican + teamaquaria + teamkameron + trumpshutown | 82 | 0.0096472 |
1183 | bangs + overrated + annihilationmovie + aspaceodyssey + banshee + deconstructing + finnick + friel + greenpaper + mbb + mosley + shepeteri + sodom + whitepaper + wiona + wolfhard | 61 | 0.0071766 |
1184 | der + 649 + andrewmarrshow + ayleks + biggums + chons + cohent + excised + frav + jarvid + mccoys + neagan + squaishey + stampy + womams | 75 | 0.0088237 |
1185 | traffic + 30yrs + fuckarff + rotd3 + umbre + wip’s + unclean + decided + drivers + facebook | 50 | 0.0058824 |
1186 | candice + happened + hotspur + magic + areright + bellewhaye2 + coursed + halliwells + m3 + ohmygodyou + pledge2pray + prestwich + ratlikecunning + whoes | 53 | 0.0062354 |
1187 | officer + dollar + stabby + exterminate + ausopen2018 + beatmetoit + bkchatreunion + drumstickgate + floatation + kartik + killingeve2 + liesofleavingneverland + lunartics + moonies + morghen + moyda + niggs + nilesh’s + overseer + radice + sake’s + showingmyage + surelythiscouldneverhappen | 131 | 0.0154120 |
1188 | damned + allarene + arisesirstokes + cunkingclass + dirtydeepingdefenders + fabrepas + mispresed + murmured + proteinshakes + cunkonbritian + meaulnes + perri + strayed + zelfah | 94 | 0.0110590 |
1189 | tut + alex.s + alexfromglasto + babas + ballsed + breen + castrovilli + drakevspusha + evertons + geraghty + hegazy + loban + makeacelebrityerotic + mbapps + myshkin + rambi + raq + realchamp + rearing + rectal + shakespeareinspace + sphinxometer + sportsbreakfast + stoger + thunderdome | 91 | 0.0107060 |
119 | dels + bud + donee + kidslovenature + contes + job + yee + duas + deal + fella | 139 | 0.0163532 |
1190 | rifle + undertaker + shithole + navy + eyal + basset + dgw + fxcked + mateitscominghome + nahmir + nancys + placr + sofi + sproston + vladimirs + ybn | 68 | 0.0080001 |
1191 | hoosk + doms + 0w0 + abbott’s + abought + benevolence + bulldozed + gnarled + leuvren + loeb + manboob + mockingit + peppa’s + scillies + stillgame | 135 | 0.0158826 |
1192 | 900k + casio + castrate + deathrow + farfan + forefather + grobellar + ilness + rapistinthewhitehouse + surviorseries + wheww | 92 | 0.0108237 |
1193 | damn + desperately + 30minute + agentbatman + athlete’s + bhutto + birkenhead + carnigie + childishgambino + cryfield + donaldglover + dye’s + fancywoman + getthecrownedtouch + infusing + jumperday + kieth + kingharry + kneecapping + macnee + mhyki + muderer + ooopsie + orangino + pissboiling + pliers + reelected + seriousrocking + teammeteor + teamthanos + theough + thisisamerica | 186 | 0.0218827 |
1194 | bangy + awful + agree + l.ove + pvac + paul + espionage + ripmacmiller + 170 + clandestine + maybot + planb + restrained | 97 | 0.0114119 |
1195 | drums + coover + eastmidlandschamber + expatiate + gawan + gunna’s + laachi + laung + lumos + motivations + nurbanu + reclining + ripjason + stevejobs + tweetlikethe1600s | 157 | 0.0184708 |
1196 | fucking + forreal + fuck + blimey + hat + britishmovielocations + legend + bit + boy + correct | 2391 | 0.2812981 |
1197 | towel + president + brom + horn + deserves + nigga + bitch + checkup + fuckton + gnash + kizito + labourmp + lilos + mewrecker + mixie + murda + newlab + oversleeps + skzjshxhsh + theassaassinationtour + toped + up’d + veiws + yhedego | 143 | 0.0168238 |
1198 | guy + morata + bring + omds + overpowered + bloke + boku + neymar + 2k18 + roddy + strain | 267 | 0.0314122 |
1199 | 5ft8s + bnard + gurlez + heartbreaks + huhne + intead + itvin + llloris + ooft + playerpower + screenwriting + soat | 51 | 0.0060001 |
12 | exposures + goosefair + longexposure + goose + gererals + nottingham + prize + robbins + eighteen + princes + spies | 179 | 0.0210591 |
120 | brill + weekend + lovely + dougie + steve + ken + antony + si + lynn + corah + rowells | 120 | 0.0141178 |
1200 | jeremykyle + rip + david + beckham + george + harry + cody + neil + cramer + wanker | 420 | 0.0494125 |
1201 | jr + cooper + bobby + 6ix + 9ine + abdurrahman + alinfeevs + banderas + beastwangonair + benaloune + deronda + gurumusik + lokko + mertasaker + regalmusic + sanada + schmurda + sczesny + snacc + spoilamoviein2words + spreadbury + tongiht + yeahboyd + yrah | 102 | 0.0120002 |
1202 | jaime + lannister + naruto + weapon + airbarkley + arnau + couldve + eldervair + gengis + mjn + omotso + spinalls + teppei + teraweeh + trashiana + yajirobe | 116 | 0.0136473 |
1203 | overrated + underrated + tony + resign + smh + alexsandra + amiable + aseel + bollaking + bumbershoot + earthbound + gpsbehindcloseddoors + hardwell + inoperable + insanity18 + jigglypuff + morethanjustablackcat + pixelart + pokemontattoo + pomeroy + refendum + rrose + salome + saxe + selavy + smited + sr3mm + thenerdcouncil + tiddlyham + uncertity + wharram + whitneys + yik | 161 | 0.0189414 |
1204 | underrated + joshua + twat + idiot + moss + leon + tyler + character + thanos + average | 158 | 0.0185885 |
1205 | douche + mumble + conspired + crankie + daenarys + neidhart + underhandedly + kyle + gods + jimmy | 52 | 0.0061177 |
1206 | sousa + orton + daudia + shaku + tom + harry + henderson + abdishakur + berberas + biebers + catnotpartner + completer + delfino + deuces + drdomore + flipp + fodera + godfather2 + iddin + irevnz + lamped + lomyidolol + pawer + pawsa + ramses + ridder + standbyme + swollocks + unranked + vardss + wankwaffle | 161 | 0.0189414 |
1207 | kun + craving + philadelphia + blackfriday + sleep + 7.23am + faya + manhattans + marving + tastys + todsy | 56 | 0.0065883 |
1208 | uniting + arcade + roundabout + cultures + universal + phoenix + 126 + 1se + 25mpg + 85mm18 + admi + anaesthetists + bamber + blos + challengesin + conceicao + directline + endeavoured + euthanized + glamor + gorgonzola + hollywoo + hollywoodbowl + looped + pestfromthewest + rehydrated + rob_hoang + roni + seethepersonnotthedisease + to0 + troubleso + vaulted | 77 | 0.0090590 |
1209 | newprofilepic + choo + lovely + bitno + caketable + coomuter + crewey + ctr + custodians + freedomchildpicks + guado + instacousin + instaselfie + instawedding + lololo + mamoojee + neversmashed + nmiai + patternedd + remastering + samiraandamilliontypes + shapey + simmervibes + teggys + torycuts + tsacousticep + wednesdaycrushwoman | 103 | 0.0121178 |
121 | inspirationnation + welcomee + corona + excused + m’lady + bhai + designs + dear + welcomed + ricky | 73 | 0.0085884 |
1210 | nickleodeon + annoying + shocking + clout + heard + people + 104bpm + alcott + assia + chegwin + cuntish + disdaining + dssawrehjffssd + fik57 + horribles + klara + lys + mixrace + obeyed + suuwhooped + thebritawards | 129 | 0.0151767 |
1211 | artsy + skytribe + sketch + photoshop + artwork + modernart + graphicdesign + artoftheday + texturedart + fusionbellydance + tribalfusion | 70 | 0.0082354 |
1212 | bulldogs + surrounded + relieved + beyblade + enotional + fassbinders + imout + keemz + pheeww + predictableartbloke + tweetsforno | 59 | 0.0069413 |
1213 | chitty + gimps + streets + bestdad + exemplified + knowtherules + knowyourjob + monout + ninez + nonceing + snouts + struee + sueage | 98 | 0.0115296 |
1214 | bluray + fatal + markets + attraction + 1.0.2 + ahmedabad + badasswomen + bloggerloveshare + herculean + hereforlgbtqs + malwarebytes + nasarbayev + nursultan + talak + toytrains4u + womenhelpingwomen | 67 | 0.0078825 |
1215 | leinew + oaf + glassworks + gurriel + hibab + morningboom + shmoke + sleeplikeahero + valderrama + goatee + greb + hoodrich + rakshabandhan | 97 | 0.0114119 |
1216 | ernie + ladybird + powerhouse + passion + performance + cemetery + ming + fantastic + lovely + day | 149 | 0.0175297 |
1217 | gwara + laura + kmt + beccasloveislandpage + boyswhoascot + dajid + fatwa + fishbourne + getroxanneout + goris + kandis + kugan + labul + meninsuits + opinionsofcoppenandnotitv + speckled + ukpop + waywards + yesimlate | 88 | 0.0103531 |
1218 | bottle + electracuted + milowatch + occlusion + wackiest + wna + cockblocking + diagnosing + igloo + shyness + unwilling | 66 | 0.0077648 |
1219 | jiggle + sick + manure + convinced + belief + 10er + instagramdowm + softbot + thwomp + makes | 132 | 0.0155296 |
122 | camra + drinking + prize + festival + beer + eighteen + thousand + chilling + mistress + sams | 85 | 0.0100001 |
1220 | authored + caucasoids + fwm + nochance + inverary + mway + dependant + kkk + cathartic + flabbergasted | 66 | 0.0077648 |
1221 | attacked + confused + sick + feel + life + personally + im + identify + gonna + wanna | 514 | 0.0604714 |
1222 | vegans + channel + 5k + 01524831807 + 07976733666 + assassinscreedorigins + bargethedoor + blockworkbrickworkstone + chinaadtalks + feigel + habbits + heyeveryone + housemartins + hwtl + ingvareggertsigurðsson + innovateuk + jackhaslam + lessing + lotstodo + lunt + makeyourmark + mashupmix + neversleepnevertire + notimetodoitin + peititon + puppin + rickshawchallenge + sharethewarmth + smallachievement + spluttering + spn + stebbins + swingseat + tailoring + tgr + v2g + vesta + volume13 + widescreen | 99 | 0.0116472 |
1223 | listing + etsy + notch + skull + berry + 15mg + 160mg + 20mg + 24kwh + 300mg + 350mcg + 3mls + 40kwh + blackboards + diamorphine + educati + elemen + endcommercialwhaling + footwell + gobbl + grubbed + kustow + liteea + marcain + metabol + oxidant + pigmentations + sickl + teachable | 64 | 0.0075295 |
1224 | indefinite + radicalise + noblest + perspirant + hbu + catchment + pursued + dfw + ligue + chased + fume + rodney + rounding | 53 | 0.0062354 |
1225 | fatshaming + severs + spurt + talksportdrive + toothlesstigers + wmyb + thesecretlifeoflandfill + billi + mn + kinks + recess | 62 | 0.0072942 |
1226 | cob + nom + artselfie + googlearts + osiers + bridge + adem__yc + britsout + chagosislands + ciggie + favedj + goholidayswithdiviyesh + jago + jeremykyleadverts + jwmefford + mexicanfood + microwaves + minicruiser + nowlistening + praccy + replanted + vegasbitches | 59 | 0.0069413 |
1227 | miss + parenting + teacher + bants + kelis + photography’s + randomest + sheneedsamakeoverbyamua + tweety + reply | 72 | 0.0084707 |
1228 | ashley + applicable + criminalresponsibility + davro + grizzly + idrees + laminators + member’s + sanderful + zeitgeist | 51 | 0.0060001 |
1229 | aged + cyrille + regis + bluebirds + gypsies + stan + 2lb + kmt + chavs + tramps | 219 | 0.0257651 |
123 | honk + thankyou + moose + pig + fuck + xx + fab + buddy + feck + trucker | 145 | 0.0170591 |
1230 | posted + photo + fridayreads + woolaston + takeacartothemovies + soundcloud + au + photos + filmswithbodyparts + couldnt | 532 | 0.0625891 |
1231 | yuh + heyzos + twitterer + wetbandits + earth + marry + 61min + desailly + bawl + bevs + teetotal + whisk | 53 | 0.0062354 |
1232 | babcock + broadband + cost + employment + 15b + 2388.24 + equalizing + gingh + itvhub + knh + macpro + najibrazak + virgininternet | 53 | 0.0062354 |
1233 | tlof + codeine + shrink + tired + days + hour + stressed + hours + cba + gonna | 239 | 0.0281180 |
1234 | dare + abuse + carefull + uruguayan + wcth + winningwednesdayinpink + wordstoliveby + ccuk + gerbils + compare | 93 | 0.0109413 |
1235 | pengest + olives + pancake + perks + andalus + hungy + orisirisi + underlined + sunday + omlette | 57 | 0.0067060 |
1236 | akata + bankdrain + bellaroma + chimamanda + doers + gallardo + maxandjanine + princenaseem + skated + tineye + v.r | 74 | 0.0087060 |
1237 | bursgreen + wadkin + copper + twitterblades + hortons + rcn + tai + lcfc + gallery + blades | 88 | 0.0103531 |
1238 | mealtimesmatters + pg + alleviate + chrixbuilds + comicbook + deskstudy + discographys + gaafar + gallantry + greatdays + hisham + interv + jembling + jiving + lancelaunch + liveliness + longmire + neologism + nichola + powerofsocialmedia + racunari + samwell + soccerstreams + soundc + tarly + teamisla + twilightwalk2018 + wardour | 95 | 0.0111766 |
1239 | earth + alexis + cigarettes + hearth + humbler + lrts + odetojoy + whippet + nah + marriage | 104 | 0.0122355 |
124 | bugsbunnyabook + bunny + feta + salads + greek + foodwaste + unitedkingdom + bugs + rabbit + bunnies | 72 | 0.0084707 |
1240 | stamford + redbull + posted + nowplaying + rt + forge + watermead + dragons + numan + 2v0 + 3st + afterleavingthevillage + ainfinityalgebras + arxivpreprints + babesinthewood + blackfridayweek + cheddarvalley + coalgebras + crownprosecution + goldstarproductions + lauraashleyhome + mulderscully + nelsons + oldisgold + oldwithnew + pintage + sarahracing + show8 + smeg + solicitorsaccounts + stasheff + stringfieldtheory + thetruthisoutthere + yousef | 53 | 0.0062354 |
1241 | diviyesh + posted + oadbyceramics + gelato + photo + garratt + instalive + village + votelabour + check | 235 | 0.0276474 |
1242 | ddlj + nusret + alternate + advert + starring + nigeria + dxeu + hugey + huj + i.think + karod + momslife + mumslife + nigerianews + prid + sabsidy + saveing + stephencollins + walows + womensday2019 + ypxuqp | 63 | 0.0074119 |
1243 | wrecker + hugging + pls + haunt + minutes + cba + bout + murdered + miami + cats | 161 | 0.0189414 |
1244 | helicopter + crashes + owner’s + crash + bbc + city + news + ma’moolaat + concern + missing | 143 | 0.0168238 |
1245 | sleep + cardio + drinking + bed + numan + 16.5km + 250kchallenge2018 + cuddler + itsalaff + smother | 86 | 0.0101178 |
1246 | foreals + sugalumps + revengeissweet + mood + gassed + habitat + confront + minnie + followthefoxes + morning | 51 | 0.0060001 |
1247 | laughing + bubeck + generalized + muchato + shelliest + tellwhy + wheatos + gaydar + soundtr + sister | 60 | 0.0070589 |
1248 | 41 + school + girls + forwarding + secondary + people + grew + sense + mainstream + loud | 173 | 0.0203532 |
1249 | ravishingrumble + revering + sksjks + timemins + yatts + deleted + freshh + jikook + reinvent + whimsy | 78 | 0.0091766 |
125 | crafts + decorate + greeting + cardmaking + cards + embellishments + greetingcards + cute + miniature + bears | 186 | 0.0218827 |
1250 | copped + taught + beyonce’s + molehills + origen + riarchy + talkings + thefirstlineofmyautobiography + turnstiles + tick | 79 | 0.0092942 |
1251 | pissing + ngl + betrayal + ukip + waiting + im + rapper + sand + landing + backwardsness + energy’s + ghostblitz + humped + islas + karmawillcomeforyou + lute + nfi + pt2 + puregreed + ratajkowski + syndrom + terrys + truthbombs | 181 | 0.0212944 |
1252 | dmxenzwzeqzmssuzwszzwwzwsjz + howbowda + snjxwmndnskxkmd + henchmen + beanies + dese + aot + conceived + sucha + properly + ugly | 50 | 0.0058824 |
1253 | atlantis + bbcskisunday + earlies + kristoffersen + skisunday + tamam + tumultuous + patience + criticalthinking + slalom | 59 | 0.0069413 |
1254 | kno + frenchexit + mees + passy + mighty + chlorine + skis + syfy + taffy + dotun + hope’s + trotters | 121 | 0.0142355 |
1255 | flex + weird + throws + adoration + badeens + brendens + chaining + crownifthorns + dodgites + epilepsyweek + erh + fibbing + genderinequality + lowercases + lutherblissett + rectitude + renationalisation + yeses | 139 | 0.0163532 |
1256 | desperate + shaku + honest + sketchbooky + triby + 2face + beens + nitro + innit + aii | 88 | 0.0103531 |
1257 | niggaz + ate + cockeyed + complainin + famousonthebeach + interflora + lampoon + ninian + ovulating + rockpool + scubaturkey + shallowest + starbeck + takeonefortheteam + thwaiped | 141 | 0.0165885 |
1258 | lawrence + fitness + 5mths + audioblogic + bigpedal + birdlife + blaw2019 + bookofshadows + cameofameo + cheapflight + decathlon + embroiderer + finess + foundinthespiderweb + jeret + leteverythingthathasbreadthpraisethelord + mylestones + oadbyapaw + optimistically + postyourpicandgainwithfam + praisegod + rccg + startline + stuntcoordinator + summercrush + tema + yearofcolour | 72 | 0.0084707 |
1259 | krazy + arctic + louder + monkeys + bananana + chloeout + heartier + humours + keepmoat + swimmin | 73 | 0.0085884 |
126 | springtreats + cash + prize + winning + collected + valentinestreats + extra + summertreats + win + chance | 80 | 0.0094119 |
1260 | alliancesurge + anglicised + bolloks + crypt + lyles + cranes + kem + facists + varda + blusher + shoehorn | 51 | 0.0060001 |
1261 | niggas + y’all + chyna + hunted + barstols + cahil + hisshirt + iheartraves + inthe + nahjhghgh + narns + odili + reassures + unfairness + unrecovered + wrips | 113 | 0.0132943 |
1262 | niggas + dope + niggaz + dead + move + animal + yoh + deserves + heads + weird | 254 | 0.0298828 |
1263 | biggrowler + camridgeanalyticauncovered + choralspectacular + cume + dreamliners + episode2 + hussien + icefields + johncreilly + lincolnunihereicome + lovecruise + makeasongormoviepoetical + miniaturepainting + morello + purpel + rattan + season1 + serigne + sheena + teamtroupersdance + werente + whataboutthiswhataboutthat + whatch | 62 | 0.0072942 |
1264 | uni + lecture + lecturer + 9hours + arcitic + clumsiness + detoxicated + eligius + evacuating + galletas + gurt + renay’s + spacekru + tosta + wnloading | 71 | 0.0083531 |
1265 | awake + nap + sleep + muff + weight + bed + eat + drinking + roast + nights | 280 | 0.0329416 |
1266 | craving + july + sunday + chicken + friday + january + saturday + june + day + monday | 198 | 0.0232944 |
1267 | doubling + stunts + stuntman + shotbyv1 + prince + handmade + 1to1 + ambatman + bhpco + breakkie + crazycat + discoloured + eatameatycelebrity + fathersday2018 + getmentalking + hardestroadhome + heartbreakingstories + instgramfollowers + leavvie + manlikekazzyahknow + ozy + plasticstraws + ready4 + rofivelli + sgs + thebreastsongsever + theinflammedmind + unikitty + unintuitive + xmendarkphoenix + yourfavdancingrapper | 94 | 0.0110590 |
1268 | separation + tired + impactnowplease + thebigpaintingchallenge + brain + coughed + cranked + termism + lonely + complain | 69 | 0.0081178 |
1269 | two1st + fuccs + gdprday + gyros + jday + melancholic + stiffy + sunset + sleep + crepe + granat + nido + vimtos | 52 | 0.0061177 |
127 | girlsparty + littleprincesses + pamperparty + partytime + unicorn + foodwaste + unitedkingdom + pamper + xx + salmon | 86 | 0.0101178 |
1270 | thirteenth + sleep + beefcake + chicken + eat + hungry + famished + sundays + weight + gaining | 222 | 0.0261180 |
1271 | 7daybookchallenge + video + plough + stunts + simplymagickal + magickal + polarv800 + check + stuntman + truppr | 643 | 0.0756481 |
1272 | sanofi + valproate + evidence + ipad + p46 + signed + alton + mhra + speed + towers | 111 | 0.0130590 |
1273 | wittertainment + accounts + lambert + parlour + reflecting + strength + leigh + progress + journalism + 15yrsaflo + 20minute + ande + behal + benetton + bers + borderlines + burkina + burkinabé + designstudio + elefun + ephemera + excess’s + f.u.n + faso + funnies + gheeze + haddad + individu + izorb + jamiehughes30 + lastresort + legibil + newtome + nqn + pilsbury + regr + starti + tuisova | 64 | 0.0075295 |
1274 | ezone + glutenfree + vegan + coffee + free + store + highcross + gluten + iced + stocking | 51 | 0.0060001 |
1275 | soupa + burnsie + creme + retweet + poundland + chocolate + waveology + replacements + fitz + innocence + psychopath | 246 | 0.0289416 |
1276 | finedarkskintwitter + digitaldetox + impulse + nf + nation + finally + switzerland + iraq + sweaty + add | 223 | 0.0262357 |
1277 | trustworthy + hindi + average + contest + 07534975300 + abokyire + assholery + beashark + brenbros + findparesh + findpareshpatel + gorgo + heroism + maanav + shakyra + threeali + threebahri + threethemandem + threezayn + tmkoc + visiblewoman + visiblewomen | 88 | 0.0103531 |
1278 | pooper + riddems + suppl + pubs + 3gs + mbc + rent + offering + investigation + masked | 308 | 0.0362358 |
1279 | vexed + feeling + feel + heaping + masclunist + basis + worst + comfort + dead + tongue | 111 | 0.0130590 |
128 | foodwaste + unitedkingdom + free + salad + baguette + salmon + smoked + italian + greek + dill | 143 | 0.0168238 |
1280 | 57mins + 5secs + guenwhozi + sheltered + boning + compare + bopped + bye + mcsauce + giftbetter | 52 | 0.0061177 |
1281 | 14grandkids + casemates + flirted + gedit + wye + kenzo + stripy + tellum + ibro + smoker | 80 | 0.0094119 |
1282 | mistress + 6td + aristole + cquin1b + mofkrs + isis + albertfinney + glowin + reinforcements + senco + zzzs | 56 | 0.0065883 |
1283 | king + newprofilepic + post + filmsthatarecriminal + link + found + animal + goat + legend + video | 5708 | 0.6715389 |
1284 | shoop + horny + week + chest + tiring + tight + tired + 20t + firstdrivinglesson + hanssen + poundo + shooping + swaecation + tireds + wipping | 118 | 0.0138825 |
1285 | choking + uou + jambalaya + annoyed + kickstarting + ugh + irritable + shakers + iccworldcup2019 + squealing + wager | 51 | 0.0060001 |
1286 | laugh + linked + braggers + eminem’s + fcks + galvanize + lifeisprecious + parrysparody + pubescent + youmatter + youngens + zuckerburg | 71 | 0.0083531 |
1287 | attendance + rearranged + moans + uni + deductex + dejs + travel + bf + marks + realising | 80 | 0.0094119 |
1288 | crying + dying + attacked + heartbroken + feel + gonna + dead + atm + tears + jug | 340 | 0.0400006 |
1289 | angry + irritated + stressed + feeling + andro + decisions:d + forgetten + navs + babybels + dest + remixing | 71 | 0.0083531 |
129 | inspirationnation + posted + photo + abbey + praisejamxiv + park + praisejam2018 + retweet + spread + curve | 105 | 0.0123531 |
1290 | miss + liking + strongly + buss + content + insta + watched + 40ft + apchat + dougal + hahahh + inferential + joshuavparker + kany + reuploaded + rudeboij + snapchat’s + trickshotting | 118 | 0.0138825 |
1291 | uni + wanna + walk + marry + excited + im + phone + library + laughing + baby | 290 | 0.0341181 |
1292 | custom + free + fitting + vegan + store + paleale + tickets + bikes + sale + range | 176 | 0.0207062 |
1293 | chatbots + nicheawards + interactive + venture + incarnation + bulldog + rescue + beeroclock + burgers + darts | 87 | 0.0102354 |
1294 | dog + cat + boobs + leapt + muharram + npc + repainting + zakiah + 午餐 + anaesthetist + fiyah + kylies + lacazete + norvina + snd | 89 | 0.0104707 |
1295 | portugal + woop + hungry + eat + alcoholic + booty + gym + struggles + spoon + cream | 120 | 0.0141178 |
1296 | eis + homehub + journalism’s + payment + tax + income + customer + 26mb + aiui + allowances + craigslist + diversit + jacquelyn + kimber + lyft + miiverse + regulating + tfl’s + usipolipa + webdev | 70 | 0.0082354 |
1297 | umar + vigil + masjid + otd + fog + reel + lid + night + 50shadesofgrey + gbkburgers | 327 | 0.0384711 |
1298 | petition + eu + ensure + customs + sign + share + leaves + bbc + un’s + u.k | 127 | 0.0149414 |
1299 | 10g + doppler + monofilament + patriarch + flyover + simulate + ultrasound + handheld + sanofi + police | 57 | 0.0067060 |
13 | pret + foodwaste + unitedkingdom + hoisin + exposures + goosefair + longexposure + wrap + duck + goose | 61 | 0.0071766 |
130 | competition + fab + guys + gregs + xx + milo + teamwork + xxx + brilliant + comp | 77 | 0.0090590 |
1300 | mhra + duplicating + return + file + automatic + livesnotknives + assessment + 17 + forming + db | 74 | 0.0087060 |
1301 | sleep + hours + tatfest + timeam + nap + wake + junk + exam + shift + buying | 62 | 0.0072942 |
1302 | luther + closethegap + gunfingers + leeprobert + seabridge + sharkweek + weezer + lou + bangs + gw19 + rosetti + stormzys + waugh | 53 | 0.0062354 |
1303 | traffic + road + petition + blocking + lane + junction + bbc + domain + belgrave + hinckley | 117 | 0.0137649 |
1304 | bbc + news + police + petition + jailed + pensioners + deepfake + deforestation + xkam.billa.toorx + yangyang | 265 | 0.0311769 |
1305 | petition + signed + sign + calling + bbc + police + share + cris + news + terriermen | 214 | 0.0251768 |
1306 | anger + statement + barnaby + cowards + accurate + serial + liars + adulterors + ception + champloo + chatshow + ghostintheshell + oldish + orgasming + scherzinger + snakeyy + unconsciously + vance’s | 156 | 0.0183532 |
1307 | crassness + normies + pratchett + pratchettesque + reusing + royston + rza + thoux + winmimg + zeitgeisty | 77 | 0.0090590 |
1308 | yas + builder’s + excitedd + inmad + midafternoon + moisturized + owmayn + preg + drunk + numbed + trimester | 90 | 0.0105884 |
1309 | apeth + bringbackthenationaldex + danerys + gorbachev + menories + overdressed + ratemyplate + tirnom + appropriateness + bolder + doja + echr + hollies + ratae + revolve + tensioning + wqe | 72 | 0.0084707 |
131 | theapprentice2018 + whoop + camilla + spoty + sian + 22 + gin + distillers + photography + ginschool | 71 | 0.0083531 |
1310 | hilarious + stan + funny + funnier + jokes + lit + finest + hahaha + laura + dead | 310 | 0.0364711 |
1311 | niggas + disgusting + mad + tweet + funny + town + thread + pregnant + scary + shit | 986 | 0.1160016 |
1312 | qui + sleep + nighter + shower + sadness + sleeping + extraenergyuk + heaux + hecc + needashower + needawash + trekked | 67 | 0.0078825 |
1313 | growth + event + wellbeing + 02 + officer + cricket + holmes + manage + stadium + lcfc | 100 | 0.0117649 |
1314 | hair + sleep + blonde + bed + dyed + wait + complaining + hairdresser + braids + bouje + helpmeitsjuly + oversleep + plaited + slicking | 97 | 0.0114119 |
1315 | birthday + pleasure + amazing + griffin + brilliant + drums + anniversary + meet + goodies + 3nessltd + bangerz + bashford + birminhampride + britishsummer2018 + defacing + founder’s + hunkiness + itscorey_09856 + lifel + liko + picu + runnersknee + tielamans + wearearcades + ww100 | 83 | 0.0097648 |
1316 | mirror + feel + home + bored + assignment + dollar + stripper + surgery + waved + walking | 203 | 0.0238827 |
1317 | bed + extracted + hiccups + peeling + charcoal + straws + agwjeormg + bmwshow + carnaval + evey + otherthinking + soundwaves | 100 | 0.0117649 |
1318 | uni + bored + home + plantation + wanna + feel + ifslaverywasachoice + fucked + exam + gonna | 237 | 0.0278827 |
1319 | research + modifications + melton + informa + physiclinic + consulting + borough + proposed + trials + mock | 58 | 0.0068236 |
132 | mornin + nite + thepond + pleasure + olowofela + voteolowofela + worldrugbyu20s + xx + heartsurgerypsp + breakthrough | 253 | 0.0297651 |
1320 | depressing + tired + beig + gold1 + setener + szn’s + sober + 100kg + doomsday + oversleeping | 69 | 0.0081178 |
1321 | dogs + jenny + elevate + feel + feeling + crisis + cry + wiv + cats + life | 180 | 0.0211768 |
1322 | rollercoaster + bredrin + unborn + sums + weak + sorta + life + yeah + wallah + meant | 346 | 0.0407065 |
1323 | biology + question + agutter + antwood + behr + chemistryin4words + everitme + gettogether + loviest + wint | 75 | 0.0088237 |
1324 | sleep + slept + hours + hair + 9am + braids + tired + sunglasses + 2,17,7 + getmeonthatplane + goodlord + hellovegas + jailhouse + movingg | 88 | 0.0103531 |
1325 | uni + ammar + bevv’d + lso + stiddy + streetwanks + pulling + blare + raisa + sponging | 73 | 0.0085884 |
1326 | text + uni + cry + alarm + exam + breaktime + dashiki + extremo + formatting + londontown + movingpartstour + restoproject + slammy + suicidial | 104 | 0.0122355 |
1327 | dare + terminal + toilet + nude + die + clout + feeding + 8months + ahagshdhdkfaka + coitus + dontspoiltheendgame + ignor + interruptus + kingpins + kymmarsh + lassy + ndkajxjajxj + oncall + relived + tinest | 256 | 0.0301181 |
1328 | spinning + worst + life + head + tired + im + scent + mood + awaiting + days | 179 | 0.0210591 |
1329 | stadium + wewillrememberthem + lcfc + leicester’s + contract + incentive + mechanical + searchdogheros + experienced + honda | 210 | 0.0247062 |
133 | correct + weekend + brill + beast + lovely + screaming + kellie + bruce + steve + bast | 54 | 0.0063530 |
1330 | wanna + uni + library + fass + jetlag + phone + travelling + home + car + abbformulae + beardlife + fibro + hinching + itsahardlife + journaling + selfemployed + skyscanner + waitingh | 146 | 0.0171767 |
1331 | plead + yeyi + hai + forgive + mum + diagnosed + dont + type + gut + feelings | 279 | 0.0328240 |
1332 | attacked + cry + feel + life + wanna + rt + bcoz + flexible + people + violated | 304 | 0.0357652 |
1333 | grandkids + predictive + meant + angrylibrarians + asceticism + fonti + greqt + lavuelta + laze + limbering + phychickhan + sparrowark + squarerootofnowhere + trumpettiness + valdes | 170 | 0.0200003 |
1334 | determinate + creampuff + btch + duvetday + girlfrend + gooing + stayinyourlane + subtotals + teun + assuming | 87 | 0.0102354 |
1335 | bendy + yalls + sick + bronchitis + hyperthermia + grater + constipation + invigilators + resorted + recommending + viagra | 54 | 0.0063530 |
1336 | links + lt + monday + iamaphysicist + pages + support + cpr + supervision + client + users | 164 | 0.0192944 |
1337 | wait + sleep + divisionala + mywinterinparisregion + waris + amsterdam + weeks + cheesefest + gopats + nighters | 51 | 0.0060001 |
1338 | sick + feel + throat + ill + hours + hungover + killing + 30g + bonbon + boullion + constantlylivingoutofasuitcase + fiveg + hoildays + invisableillness + queazy + reeding + sevenam + tann + tmrw’s | 129 | 0.0151767 |
1339 | feel + head + weekends + pure + pain + hayfever + body + absoloutly + bsck + diadem + kuzzys + larch + lewwy + marinas + minky + mividalocal + okokk + ravenckaws + ugli + vrancic + well.have + worstnightmare | 170 | 0.0200003 |
134 | god + harrumph + life + viva + appreciated + faith + r’n’rr + rok’n’roll + comment + spin | 107 | 0.0125884 |
1340 | hate + unsee + addington + alwaysjustme + bsides + durrty + harrassing + hela + satisfys + shittillysays + thankoibfor + vant + waitstsystsysgshehhss + whatnursesdo | 71 | 0.0083531 |
1341 | uni + wait + breakdowns + sleep + hours + slept + hallelujah + coursework + week + bed | 138 | 0.0162355 |
1342 | tired + gym + sleep + till + shisha + ready + shave + amsrtists + dumbells + espressoyourself + hotstuff + hurried + pattering | 127 | 0.0149414 |
1343 | degree + uni + swim + bus + 18p + 2020commission + auburn + cashshow + darkskinned + econometrics + radio1escaperoom + tb2k17 | 74 | 0.0087060 |
1344 | almohandes + dailygratitude + darlek + krays + piston + susah + chronically + dermatologist + gila + phdmusic + supping | 62 | 0.0072942 |
1345 | hired + fairportconvention + fuckoffsis + offguard + penss + psorasis + rewatches + shesanidiot + insty + korra + watchlist | 57 | 0.0067060 |
1346 | watched + bothers + rtd + happening + kid + mccann + netflix + lorraine + 19ish + desperatehousewives + guncle + hashtagged + istandwithmermaids + maddymccann + mocharie + shhshsbs + t’aime + tayla + thethinning2 + thewitchernetflix | 105 | 0.0123531 |
1347 | bleuvandross + boj + disagreements + fye + pramripdoddy + sheering + teamtayla + shutters + refuse + kid | 58 | 0.0068236 |
1348 | uni + wanna + life + breathe + psfour + boyfriend + tweeting + car + feel + honestly | 269 | 0.0316475 |
1349 | habits + miss + isol + nexy + ohlife + poerty + rubbishnow + sorrynotinmyvocab + toing + wowowowo | 77 | 0.0090590 |
135 | giveaway + galaxy + iphone + xs + samsung + oneplus + rt + max + s9 + prize | 75 | 0.0088237 |
1350 | optic + bus + patients + patrol + risk + timetable + lecturer + bipolar + park + bible | 128 | 0.0150590 |
1351 | etsy + listing + whey + lgbt + invites + activism + thu + gentlest + found + education | 132 | 0.0155296 |
1352 | sleep + hair + wanna + wait + nose + holiday + month + headaches + washing + hours | 176 | 0.0207062 |
1353 | sleep + gym + hair + bed + wanna + wait + tomorrow + wake + hours + tired | 475 | 0.0558831 |
1354 | understand + watching + konami + watch + suck + offense + thrones + miss + armysgoingtojailparty + episode | 252 | 0.0296475 |
1355 | watched + puff + soft + awight + blindsi + bromides + canrana + castlerock + doggedly + evrrytime + glassiyan + hirai + lawsonhisside + shaak + shownwas + studentlyf + teammaura + unsexy | 132 | 0.0155296 |
1356 | account + app + parcel + delivered + mobile + online + contact + delivery + payment + received | 491 | 0.0577655 |
1357 | charters + fur + gooder + grouted + mathamagician + worldmathsday + petname + splinters + hear + fen + ronak | 64 | 0.0075295 |
1358 | disagree + cruyffcourtstmatthews + ifyoubuildittheywillcome + tmr + tse + blackcats + disagreed + fif + allah + chillies + swerved | 58 | 0.0068236 |
1359 | howling + notepad + screaming + waterproof + bothered + stress + people + laugh + lived + life | 167 | 0.0196473 |
136 | figures + straight + dawg + chippa + beef + hunni + ova + responsibilities + truth + akh | 80 | 0.0094119 |
1360 | laughing + people + loud + laughed + humans + immigrant + endgame + dumb + 320p + 6seasonsandamovie + 77jubilee + contractor’s + disinterest + gnomeo + libra’s + llow + loud.well + stooped + tbvfh + trishapaytas + unfashionably | 132 | 0.0155296 |
1361 | hate + life + cry + swear + wanna + ive + feelings + pain + conversations + feel | 297 | 0.0349417 |
1362 | hate + people + arsed + friends + laughing + feel + watch + loud + videos + wanna | 472 | 0.0555302 |
1363 | mum + advents + maladjusted + depressed + grimace + outwards + expedition + godess + interpreting + walloped | 91 | 0.0107060 |
1364 | laughing + loud + watching + assaulting + mumford + love + watch + swear + watched + unironically | 281 | 0.0330593 |
1365 | pain + wavey + wprkers + blessings + forging + fuckyou + uncontrollable + wayside + hideaway + 1kg | 73 | 0.0085884 |
1366 | drift + puppies + halime + iroh + dogs + dont + allout + ama2000 + foreveraparent + intellectually + stimulated | 69 | 0.0081178 |
1367 | dogs + optimist + malfoy + motives + comeongunners + lovecollies + opalesa + reachest + rogerkline + satisfyingly | 149 | 0.0175297 |
1368 | piers + abortion + murder + woman + rid + judges + sympathy + agree + religious + disgusting | 78 | 0.0091766 |
1369 | guff + wrong + spelt + dakka + disintegrate + gyaan + hahahhahaha + palatial + pey + prattle + racistly + shhsjwhxhwhxsjb + skully + skyped + sleephygiene + spreadingpower + twere + voyager2 + wispy + wlsmdwnxjwhhs | 127 | 0.0149414 |
137 | happen + pics + racheal + rosemary + identical + evening + updating + pic + happened + shoutout | 97 | 0.0114119 |
1370 | cmeing + efflort + retype + smellos + threre + terabytes + garms + pedestrianisation + uninvited + doping | 102 | 0.0120002 |
1371 | spelt + smells + wrong + cats + everytime + bet + mad + ammer + britainsfavouritedogs + catveries + couldent + disband + enderbys + finnlawfriday + joycean + laptopneverleftlondon + longweekagain + northwalesbantz + nurserylife + nurserynurse + o’kanes + saam + skeem + splurted + spygate + thewaymymindworks + vaghar + wooaarh | 195 | 0.0229415 |
1372 | trash + women + opinion + popular + stan + females + creatures + laughing + strangers + camal + dicested + exhaustingly + ikburnel + katyperryisover + killjoy + kilometers + proficient + reworking + rrst + shelbys + sotu + waroftheworlds + wonderwoman | 146 | 0.0171767 |
1373 | laughing + loud + women + people + niggas + girls + stupid + arseholes + unpopular + common | 188 | 0.0221180 |
1374 | aew + thelogansshow + assure + blows + spooky + avacados + bohoihoi + boirs + bowfoot + broods + cardus + magsaysay + messers + qell + remainhere + thow + unsuspected + whaleslovkia | 145 | 0.0170591 |
1375 | pda + autism + blog + battery’s + pcso + polis + products + data + encourage + asians | 177 | 0.0208238 |
1376 | hepatitis + equalities + hurray + accident + topic + junction + vehicle + 100mcg + 15mcg + 1bn + 4videos + all.but + boge + bupivacaine + camerafone + cv04 + dissect + enactment + facilitie + fenta + gare + geophys + grill’s + heathly + humanhight + iapt + industrialisation + innovati + klingon + penetrat + pida + plushie + propagate + resta + saturates + skm + synthesising + zaatari | 68 | 0.0080001 |
1377 | writers + confirmedbrummie + cuppy + earnshaws + freund + helwani + hindleys + lintons + timettes + clairey + dwane + emos + nonutnovember + safechuck + steffen + urselfs | 58 | 0.0068236 |
1378 | wave + sea + bastard + 3xa + serums + taxidermists + theroar + surprised + pandoras + sandown | 51 | 0.0060001 |
1379 | racehorses + raspbian + homekit + iammother + petition + installs + mattress + signed + seats + attempted + welfare | 79 | 0.0092942 |
138 | eeek + mornin + enormous + prize + stadium + leicestershire + king + power + city + luck | 153 | 0.0180003 |
1380 | road + fire + lane + police + collision + traffic + rtc + closed + officers + junction | 1312 | 0.1543551 |
1381 | police + road + missing + burglary + mumbei + appealing + traffic + irreversible + petitio + reassessments | 108 | 0.0127061 |
1382 | imagine + publicity + shock + offended + people + laughing + watching + netflix + thug + watched | 186 | 0.0218827 |
1383 | alisons + maam + the100 + weekend.come + odaat + crapping + earpers + hideout + quitter + cite + oman + perm | 51 | 0.0060001 |
1384 | marketing + harborough + sampling + city’s + business + funded + mugs + 1.8m + 350t + 720s + albertdock + attentional + autoplanner + barbastelle + battleofsaragarhi + bhaktapur + cfa’s + cherylholding + connectmecafe + coverag + dementiaactionweek2019 + doctoralcollege + dower + durbar + ehi + ema’s + entrepreneursprogramme + eqw2018 + focusin + getshitdone + highstreetratesrelief + hypercar + jackpinpale + letstalkmh + lga + lgaworkforce + lipreader + lptyoungvoices + marketingtips + mather + npqsl + pathwa + promin + psicareers19 + relatio + ryedinghigh + satdium + secondday + sinkerstout + smallbiz + spacetech1718 + spreader + supercarsunday + tenantmanagementworks + tuiti | 84 | 0.0098825 |
1385 | boy’s + accounted + cogito + englishmen + habitually + nhs71 + ownas + sachet + wingthh + beauvoir + clurb + jordanne | 63 | 0.0074119 |
1386 | women + trash + people + crazy + girls + mad + evil + boys + theory + freaks | 283 | 0.0332946 |
1387 | loud + laughing + people + laughed + poppies + sense + noo + friendships + weird + im | 199 | 0.0234121 |
1388 | sitcoms + bloopers + imagine + forex + traders + girls + people + clout + 6ft2 + acn + areoles + babbled + backinblack + buzzcut + c.ronaldo’s + dg7forever + dksksk + dontgodemarai + equall + fastandfurioushobbsandshaw + haechan + incohently + jarr + justkeepswimming + masculinities + o’grady + polyamory + shelboss + somethint + whytes | 147 | 0.0172944 |
1389 | rgmfeverxhimnuhnormal + 8lettersacoustic + fatzofficial + lorra + osiers + utopia + check + gymnastics + vue + unlock | 143 | 0.0168238 |
139 | inspirationnation + painting + contact + love + duas + healed + 13love + babygo + behindlocalnews + hotm + ipaintportraits + lyds + mekemstudio | 85 | 0.0100001 |
1390 | cani + intellectuals + keywest + kindhearted + parkhead + yestheroy + words + doctoring + onepiece967 + describe | 52 | 0.0061177 |
1391 | usernamebestseatinthehouse + 2funky + busine + yoga + magickal + bestseatinthehouse + morrisons + stadium + camping + starbucks + turtle | 104 | 0.0122355 |
1392 | badness + unpopular + 11s + novelists + sid + bastile + burgler + charolsville + chestily + concord + flamely + horroranymovie + infared + kikstart + no45 + tollesbury + torchy + unrebuked + whitepool + whitsun | 144 | 0.0169414 |
1393 | jnrs + missengland2019 + headship + nike + montfort + garter + bbcradioleicester + nighttimephotography + vestige + lcfc | 175 | 0.0205885 |
1394 | thinking + beat + ayrshire + broght + chewol + complainants + copyrighting + fuckup + intimated + medea’s + ripstevenhawking + wigless | 151 | 0.0177650 |
1395 | paranoia + gsm + ridens + yall + courtoisthesnake + ascertain + deaded + prostituting + slums + davidattenborough | 51 | 0.0060001 |
1396 | chakrabortty + ghd + accountancy + aditya + everest + hugh + peer + alissa + announcin + artceramics + baxiworks + bikepacking + biscuitbreakdown + coppermatt + cytoskeleton + dmuelections2019 + edz + elavation + everest2018 + franziska + frigh + futurefocus + goldcrest + hanja + hoarders + holidayclub + hotlist + icssao2018 + iftekhar + imidra + intermediaries + ivanliburd + jopson + justinbieber + kinase + kotecha + ld19 + ldweek18 + ldweek2018 + lhotse + loveabaxiinstall + mannix + mitosis + spreadlovein3words + uksepsistrust + valeria + yasmin_basamh + zonato’s | 89 | 0.0104707 |
1397 | socialmedia + phd + numan + studios + analyser + baranowska + beforehan + buddha’s + characteri + clinicalscience + congresotoxicologia + crossers + dawkinsellis + ddrb + deacs + deeplearning + dietetic + dietitiansweek2019 + ecotec + familyrun + fimba + financialservices + fourthgeneration + freenas + gurminder + healthapps + highgrowth + ilc + internationalarchaeologyday + jagdev + legislatively + livingalive + lptplt18 + mickey90 + moggmentum + oaanewcastle2019 + officepolitics + roadtoespoo + rulebased + safedriving + scad + scardifield + sciospec + signups + sonocent + soutar + specialneeds + successionplanning + toxicol + tvis + ucisa + volvoxc60 + way.c’mon + wehorr + whatrdsdo | 81 | 0.0095295 |
1398 | tickets + beers + ales + sold + puregym + chamilia + lnil + lastnightinlei + till + instapic | 85 | 0.0100001 |
1399 | picit + friends + trust + disagree + amount + highly + mums + yeah + captured + kmt | 336 | 0.0395300 |
14 | competition + dupattas + blouses + skirts + _________________________ + bang + pret + foodwaste + unitedkingdom + mix | 114 | 0.0134120 |
140 | zerowaste + unitedkingdom + free + persperant + hangers + conditioner + shampoo + spray + bubblewraps + matress | 112 | 0.0131767 |
1400 | heard + remember + watched + cried + dashboard + people + jarring + moto + leifle + understanding | 325 | 0.0382358 |
1401 | fizzy + term + energy + goals + healthy + alcohol + months + hardest + cold + fitness | 114 | 0.0134120 |
1402 | saveghouta + film + morning + bluray + vinnie + eat + keto + comfort + barking + earnt + willow | 209 | 0.0245886 |
1403 | battleaxe + musings + blog + trainee + hiya + dye + scenes + amazing + 5yearsago + absurdinstruments + adjoining + asmona + bbcradioplayer + bedifferent + beeby + catapults + ergonomics + flashbacking + grindstone + marriam + mercie + øres + shed’s + twitterissoannoyingattimes | 66 | 0.0077648 |
1404 | hes + happened + fuckedup + glenfi + marsellus + optim + riverisland + scunt + sjksnsjsn + thearchers | 155 | 0.0182356 |
1405 | shh + deetsing + madchester + demontford + biff + cleveland + rabelais + sheeps + grenfelltower + kipper + maclaren + strangling | 61 | 0.0071766 |
1406 | socials + sticker + mad + ignoring + butwhy + chics + flim + iamatopfan + jefferey + rwteet + sammys + thankgodsheisnotontwitter + whenimoutofmymind + wnba | 119 | 0.0140002 |
1407 | burgess + avenged + badshah + bèen + degr + hights + improveyourlifein4words + s’okay + sevenfold + anthony | 75 | 0.0088237 |
1408 | laughing + understand + loud + cried + acc + lot + barbie + love + imagine + baffoon + caos + chesh + cracker’s + laffen + limmy’s + midnigh + moicy + punk’d + resembl + seokjins + stefflondon + tittiess | 168 | 0.0197650 |
1409 | harrassed + people + spielberg + laughing + love + masturbate + loud + age + hate + names | 263 | 0.0309416 |
141 | serving + nightshifts + timepm + 07 + mornin + woah + hardworking + campus + 17 + danielle | 143 | 0.0168238 |
1410 | watched + relations + genuinely + novelist + remember + fell + screamed + died + abboandoned + birmz + feellikeayoyo + forthesakeofmybloodpressure + greenleafs + jojk + lactosing + laughjijinhgghh + lpl + molby + oneofthelastreasonswhythesundoesnotsetontheunionjack + pulledinalldirections + scummiest + sorter + sporadically + sweerie + thab + weatherspoon | 183 | 0.0215297 |
1411 | bbc1xtra3shots + hesadick + sherk + inder + yanoe + spoken + hugest + unseemly + harder + prospering | 54 | 0.0063530 |
1412 | cry + retweeted + edgelords + embittered + filmore + offbrand + sticking + 5ft7 + lecherous + tampax | 74 | 0.0087060 |
1413 | people + laughing + congeniality + rate + loud + nah + girls + rattled + sensitive + 50.75 + artwankers + bookiness + buzinghgh + charleschaplin + emit + fictional.the + gillead + jandira + olivier + palvin + policia + pretensions + racismo + scottished + truk + weech | 215 | 0.0252945 |
1414 | deep + drip + bedbugs + btown + golddigger + mydifference + sealysecretsanta + equine + fiddling + humor | 56 | 0.0065883 |
1415 | shark + a.b.s + campassionate + flatulence + hipwell + mataland + ahha + rubix + smells + donnington + quiffy | 92 | 0.0108237 |
1416 | wrong + arsed + birdhouse + denist + feudal + longlost + primarni + sherrif + srry + urfjfgfgnitfghghd | 119 | 0.0140002 |
1417 | booty + loyalty + settling + capote + flavor + pedometer + sharking + tourer + corolla + ewe + hanuman + metaphorical + nass + pragmatism + selflessness + vigorous | 50 | 0.0058824 |
1418 | dog + badger + brandenburgconcertos + fiya + hudgens + marcalmond + miow + regestring + taxreturns + thevictim + wolvesfamily | 143 | 0.0168238 |
1419 | biomed + uck + happened + concourses + decommissioned + laeekas + machine’s + preening + specialness + theorist + trawler + usllay | 57 | 0.0067060 |
142 | bush + fmsphotoaday + voters + fmspad + hundred + sunrise + brexit + cent + 07710900160 + bbl2017 + bbl2018 | 227 | 0.0267063 |
1420 | ewallet + saraha + explosions + shiny + dredd + drivings + itsstillgottimethough + larvitar + umpteen + unsymmetrical + vagan | 123 | 0.0144708 |
1421 | enjoyed + expect + people + blabbed + chutzpah + fantasised + mediacentr0 + niam + goosebumps + gender | 111 | 0.0130590 |
1422 | literature + andrias + corbn + dealornodeal + diraac + issue’s + markahams + smmh + specificity + spleen + the’adult + unpicked | 73 | 0.0085884 |
1423 | related + attracted + boringly + jsksksks + pakimanlikedan + alexis7 + despising + tagmovie + tweet + ahn + complemented + despised + discovers + gravestone + gujrati | 122 | 0.0143531 |
1424 | fearofheights + filthytigermolester + imessages + nevercarryaballretriever + parlance + shepard + slauson + heelys + nympho + syphilis | 53 | 0.0062354 |
1425 | echo + understood + read + heard + honest + sis + inappropriate + idea + blame + louder | 272 | 0.0320005 |
1426 | relate + hahahahahahahahaha + clutch + dropped + alcoholism + angelnumbers + hammerhead + keris + larxene + marluxia + pcw + photoshops + profesh + satalite + spazzing + starker + turds | 121 | 0.0142355 |
1427 | warwick + divorce + childsplaymovie + glassess + haved + leggins + ndbdjfjd + pretentiously + swarms + uxurious | 69 | 0.0081178 |
1428 | pigs + putsontinhat + incorrect + honest + beautiful + bird + sticks + carabou + crawshaws + faldo + hothothot + neny + reacers + robotnik + satantic + sheepishly + taxadvisers + whilton | 188 | 0.0221180 |
1429 | texas + float + size + plastic + sea + audition + ule + chasin + queenies + urasta | 57 | 0.0067060 |
143 | reserves + division + kick + 2.00pm + debated + 20mm + doitdoitnow + lense + saturday + nikon | 95 | 0.0111766 |
1430 | b.t + crappyexcusesforcheating + hagga + presumptuous + resonsibility + scarring + yoursekfv + ashawo + fortnightly + higgy + immortals | 58 | 0.0068236 |
1431 | believes + bdjfjfkfjf + keelan + moshh + muhfuckas + proffitt + punch’s + sandieago + seaborneferries + maddi + plots + skeptical + snitchin + tagmovie + vibrators | 127 | 0.0149414 |
1432 | cares + honest + incest + dickhead + responses + anightin + applys + caseworkers + duplitious + eeermm + fkskdksksks + inmpose + jigger + mokentroll + podgier + prayforsudan + section28 + supremecourtlive + wasil + wingmirrorgate + wounding | 195 | 0.0229415 |
1433 | honest + tables + incorrect + chapatti + gaabs + legg + 21c + duarte + mella + dinger + fulani + immobile + lampards + spams + waw | 109 | 0.0128237 |
1434 | kingdom + united + stadium + wes + nt + hvac + lcfc + applause + degree + king | 172 | 0.0202356 |
1435 | church + stadium + lcfc + boiler + localised + power + baptist + king + hall + 3points | 146 | 0.0171767 |
1436 | wipe + sadnessinhiseyes + supanatural + creating + honest + stainless + niagra + preferences + puzzled + tasteless | 55 | 0.0064707 |
1437 | plottin + honest + critter + admittedly + bouncered + bulit + dija + eitherways + evrything + funereal + gettingridofthedefects + hatchbacks + hora + jakupobitch + l’il + muncie + toothed + toutous + watch1 + worlocks | 137 | 0.0161179 |
1438 | deep + defects + slog + lying + honest + 350r + chicarito + customisation + deffinatly + fooballin + ios13 + jords + mentiond + noteable + precede + relegious + remding + stably + virginal | 180 | 0.0211768 |
1439 | they’s + bahsbxhwbs + fastidious + sexualised + totty + unforgivably + disappointment + decoy + mammas + mclovin + tutti + weasley | 60 | 0.0070589 |
144 | brill + weekend + lovely + hope + steve + craig + jak + ray + karl + david | 303 | 0.0356476 |
1440 | ahahha + bookstore + evelina + frebyoull + jedgarhoover + kasbah + know.has + lolx + northernpoorhouse + trumpprotests + ungood + wankwise + whattwittermeanstome | 125 | 0.0147061 |
1441 | m8t + enemy + cantdecide + hosptial + cults + melancholia + analogies + intrude + scoliosis + shiro’s | 59 | 0.0069413 |
1442 | twirl + amazigh + feelmypain + hern + rushford + spitballing + xxpetite + 47k + bitc + feltz + mindsets | 56 | 0.0065883 |
1443 | churlish + engalnd + fiveasidereflections + overlaps + wowowowowowo + mtbing + nutmegs + unliked + bee + cheerfully + scattered | 71 | 0.0083531 |
1444 | agree + ilovegodbecause + tweet + loud + laughing + spiritual + honest + dont + pisses + milf | 537 | 0.0631774 |
1445 | b1 + vivasurvivor + goldenthread + jaffer + wasim + personalisation + bics19 + lbf2019 + batsman + hr | 113 | 0.0132943 |
1446 | tickets + 9am + saturday + ticket + gazette + sleighbell + biltong + dontclangbruv + stall + thursday | 89 | 0.0104707 |
1447 | true + wont + honest + 10yearchallege + 3501r + audioweb + bbygurl + centrum + danke + didhdiensos + dube + feelinghopeless + freezered + inventer + nuttah + sggzhshagags + sksksksksjs + totaltool + usfull + yammy | 214 | 0.0251768 |
1448 | abulam + crazyabdkdndndhd + escherichia + felinhedonia + finallygotthere + fuckidhdhdyingsjsjsj + hayleys + lowheresyouracomol + skskkskss + skskskksks + speckle | 95 | 0.0111766 |
1449 | hoax + bobriskys + fuxkwit + hiddlestan + jbags + microbial + overhauled + renters + baso + debunked + hiddles + leaker + marinating + mway + sahara + scholarly + topple + youts | 106 | 0.0124708 |
145 | weekend + lovely + hope + brill + wonderful | 55 | 0.0064707 |
1450 | presenters + asthetically + coachsackings + nel + shejxjsn + naked + amrezy + bobbies + down’s + epq | 78 | 0.0091766 |
1451 | nits + grades + crewe + monitor + traffic + fm + spots + image + aborti + allopathic + attaches + bidshorts + burundian + cambridgeanalytics + conveni + dail + debuggers + depar + eggfreezing + elicit + fingerprintable + inappropriat + inferences + intercity + interviewe + jeweller + ketech + lichensclerosis + ncbs + nicethings + pcad + punit + retina’s + scotrail + tradg + weighband + wonderi | 70 | 0.0082354 |
1452 | puregym + offer + fee + percent + joining + store + deals + sale + savehalf + membership | 115 | 0.0135296 |
1453 | sksksks + bling + sksksk + wears + similara + youtrack + yeah + jilted + safeguards + sksksksksk + transports | 119 | 0.0140002 |
1454 | bully + shsjsbdbdbjsjs + skdksksksks + vday + terrorist + 25yrs + bennell + mundo + underaged + meant | 94 | 0.0110590 |
1455 | centre + city + art + tigers + 2bs + 68thmissworld + advantageous + bitchass + bythethroat + charlt + craigtatt1975 + diagcon + dialectquiz + diggininthecrates + djabilities + eyedeaandabilities + imaround + instablogger + lancers + loughboroughsport + michaellarson + mixtapedjs + mr_granger1 + multifaith + northernlass + opentothepublic + philwarrington + pierreliggett + rceinengland + revl + scotty_g_18 + sept2018 + thisisreal + truhiphophead + uclfinal2019 + wallysofwigston + watercolours + watercooler + wheelerd80 | 51 | 0.0060001 |
1456 | breixt + satan + bigwhite + bordersblake + complainant + congi + jsksksk + malignantseven + osmonds + realisations + terrarium | 113 | 0.0132943 |
1457 | joke + weird + drivers + painful + baffling + honest + happening + bedroomed + bidets + colonsay + leagueops + ludacris + mauritians + moratta + osaurus + putaringonit + tautology + termatior + texters + tooney + ukhousingbikeclub + zoella | 251 | 0.0295298 |
1458 | tickets + cordially + limitless18 + pblounge + cara + le2 + textured + strung + tickledpinkcomedy + stoneygate | 53 | 0.0062354 |
1459 | bulldoze + ferocious + riv + consumed + pantomime + hero + rage + 1a + 54s + arshya’s + barcelo + bouali + brants + chevrolet + commemoration + decompress + dionne + dommedagsnatt + everydaymatters + eyc + freegensan13 + ghanta + gsc + guthlacs + hassiba + hippest + imhereandimahero + jumperoo + let‘excuse + muezzin + room’s + sissyinside + summersundae + thankfu + thorr’s + timethese + waiver + zea | 86 | 0.0101178 |
146 | nice + bowles + ribena + mist + contacts + kettle + ollie + fits + uniform + sally | 62 | 0.0072942 |
1460 | counsellingcourses + rothley + brook + flood + leicestereducation + evng + alert + investigate + counsell + leicestershire | 98 | 0.0115296 |
1461 | prizes + collection + yum + win + menu + free + fiveal + recipe + christmas + 8pm | 128 | 0.0150590 |
1462 | store + preorder + grab + win + sale + copy + chance + pop + enter + edition | 868 | 0.1021191 |
1463 | blackboys + goodmusic + rideshare + epicrecords + brentsayers + nonlikeus + carpool + islanddefjam + daretobefearless + dreamchasers | 65 | 0.0076472 |
1464 | knowingly + earnings + resolved + 360p + appts + clarifications + consen + customers.took + eureftwo + facebookgate + leicswin20one8 + passworded + practioner + reafy + virginrail | 51 | 0.0060001 |
1465 | highcross + troupers + 9 + 6 + racecourse + djrupz + lcfc + montfort + academy + city | 500 | 0.0588244 |
1466 | stadium + rgmfeverxhimnuhnormal + unitingtwoworlds + welford + drafted + charity + km + national + feat + tb | 129 | 0.0151767 |
1467 | space + national + centre + ekadashi + elton + darshan + song + nationalspacecentre + fordfiesta + dibby + faraway | 167 | 0.0196473 |
1468 | official + video + music + ft + feat + 2funky + forward + museum + prod + audio | 395 | 0.0464712 |
1469 | cathedral + bouldering + monumentalmuscle + fabteam + votes100 + highcross + monumental + montage + vote100 + botanical | 71 | 0.0083531 |
147 | awesome + fantastic + lizkendall + nationalbestfriendsday + lovely + jools + transformers + chum + canvas + tracksuit | 73 | 0.0085884 |
1470 | cricket + stadium + boiler + radish + king + power + combi + learner + clan + swing | 89 | 0.0104707 |
1471 | tickets + tfs + 02 + afrocarni + junior + camp + deals + branded + sale + sold | 82 | 0.0096472 |
1472 | tickets + beer + store + beers + selling + antidote + pop + 0to100returns + handpicked + offering | 145 | 0.0170591 |
1473 | deficienc + duplicity + heeded + rubbed + moral + 50ft + awkwa + bloodlust + chille + colonising + dagmar + handli + newbi + oka + platinums + sako’s + shamy + solitaire + sunildutt + trigger’s + voyd | 61 | 0.0071766 |
1474 | recipe + bottomless + 5pm + menu + beers + christmas + 8pm + stickers + tomorrow + delicious | 74 | 0.0087060 |
1475 | customer + service + sizes + refund + mins + parcel + items + stolen + postage + received | 139 | 0.0163532 |
1476 | ilovegodbecause + kingdom + sew + 011628372212 + fortnum + musc + profoto + saffronlane + welford + leicestershire | 79 | 0.0092942 |
1477 | kingdom + united + tigers + brood + thy + 2018bestnineoninstagram + americanfootball + amiallowed + aylestonecommunityawards + brûlée + corpsing + deepthoughts + diwalileicester2018 + engagemet + graceroad + gtb + heartshine.sal + ifounditlikethis + jasmin’s + kningpowerstadium + leicesterpanto + leicesterpride2018 + locat + longhorns + merrymen + ncode + npro + onebignye2018 + pieszczek + ponderment + royallondononedaycup + saffronlaneshopfronts + shimmylikeyoumeanit + sills + sydne + thechickenbaltichronicles + therapyroomsleicester + throwbackmusic + tinaturner + tittering + touristing + twoyearsenglandleicester + typicallytinashow + veryexciting + wheresthebear | 79 | 0.0092942 |
1478 | splitcosts + kingdom + united + carpool + rideshare + blackandwhitephotography + park + wildlife + gt + 5hd + aaronkeylock + amwritingpoetry + badtouch + bassplayer + boni + bradydrums + britishwildlife + burling_paul + bydgoszcz + cample + challange + childrenstheatre + classicgeorgian + crake + deanmartin + definitiveratpack + dg3 + divali + dogthanking + ebrey + enterpriseadvisor + franksinatra + gerrygvipcode + getborisout + ginannie + grungerock + harket + hiphopmusic + hollowstar + indianidol10 + instatennis + justmadeabangerwithsevaq + kwnzafest + labourforthenhs + leicesterrocks + leicesterstudent + leicesterunistrike + mocha’s + morten + nkoli + phonescoping + pureaero + puresoul + purestrike + rossmassey + sammydavisjr + sharecoffee + sharemusic + studygram + sunderbans + tennistunsinourblood + thornhill + tiffaniworldwide + tonyandguys + touringrelights + wildlifeevents + witwatersrand + xanderandtgepeacepirates | 60 | 0.0070589 |
1479 | kingdom + united + gals + kobe + duties + hoodie + boardingschoolboarding + coffeepint + debbies + gofurther + itsnormal + mynewhome + rakki + richardarmitage + seanys + sexyman + tommy_lennon_ | 59 | 0.0069413 |
148 | earlycrew + mornin + friday + locals + round + hump + chilly + happyfridayeve + mardyriyad + nive + walkabouts | 110 | 0.0129414 |
1480 | kingdom + united + park + abbey + victoria + city + cathedral + leicestercity + leicestershire + highcross | 2303 | 0.2709450 |
1481 | kitchens + buildingibd + interiordesign + jointherebellion + architecture + showroom + tickets + tickledpink + interiorsbydesign + ppf | 64 | 0.0075295 |
1482 | kingdom + united + mng + areacode + tnc + malemassage + malemasseur + city + beefeater + dailypic | 161 | 0.0189414 |
1483 | kingdom + united + boxed + park + abbey + cathedral + bar + venue + city + funs | 385 | 0.0452948 |
1484 | meeko + wilbur + adopted + month + 9three0am + bloodletters + compassionately + elissia + limitingbeliefs + malamute + perennials | 56 | 0.0065883 |
1485 | kingdom + united + nethermoor + guiseley + roadtowembley + stockton + emiratesfacup + astronauts + qualifying + bbc’s + undergraduate | 177 | 0.0208238 |
1486 | ams + property + wadkinbursgreen + brett_pruce + tigers + moulders + kingdom + stadium + leicester’s + united | 325 | 0.0382358 |
1487 | kitchens + buildingibd + architecture + interiordesign + interiorsbydesign + burlesque + chicas + locas + showcase + dragonball | 69 | 0.0081178 |
1488 | emecheta + united + kingdom + belvoir + asianlifefestival + misty + leicester’s + jubilee + executive + leisure | 57 | 0.0067060 |
1489 | kingdom + united + leicestershire + deephouse + newmusicmonday + nitinkumar + soulfulhousemusic + soulfulhousesession + soulfulhousetunes + museum | 132 | 0.0155296 |
149 | earlycrew + mornin + round2 + halfway | 59 | 0.0069413 |
1490 | leicestershire + burlesque + artsy + chicas + tribalfusion + skytribe + locas + art + stadium + burlesquetroupe | 278 | 0.0327063 |
1491 | 2019hopes + nomorecrimps + happynewyear + digit + socialclimbing_leicester + bouldering + gabrielle + bxrod + filipinavocalist + moneypcm + pinay | 97 | 0.0114119 |
1492 | lcfc + bollyshake + stadium + encourages + king + power + enterprise + eddies + nopalmoi + shorted + weeklydesignchallenge | 169 | 0.0198826 |
1493 | cdn + share.pubgameshowtime.com + showimage.php + stadium + enderby + pubg + leicestershire + lcfcfamily + squash + teamwork | 63 | 0.0074119 |
1494 | numan + gary + song + sunbathe + airlane + krys + autumn + cold + playing + pleasure | 179 | 0.0210591 |
1495 | lighting + mamokgethiphakeng + pulselighting + meeting + install + exhilarating + conference + iwd2018 + youtube + team | 208 | 0.0244709 |
1496 | komatiite + quest + chastity + amiga + sewn + shoved + ars + panties + sissy + shelf | 109 | 0.0128237 |
1497 | stadium + power + king + pl2 + dents + teamuhl + lcfc + visiting + 11.11.11 + charityretail2018 + cristianeriksen + cubb + dellealli + fitchie + fodelli + gputurbo + iainrosterphillips + imen + l1a_ch3ng + lptsmw + minicooper + night.username + oddsocksday + openwater + pricelessmascot + removable + tailgate + veining | 71 | 0.0083531 |
1498 | tickets + birminghams + cordially + effie + profesional + dj’s + lalu + tickledpink + sale + hiring | 54 | 0.0063530 |
1499 | freelance + financially + apprecia + vote + arabic + stress + struggling + addenbrookes + diffus + edip + individual’s + laughi + multiply + neutralise + parents.w + quadrillion + recouper + rijke + rws + thingsthatarebadforyourhealth + untangling | 54 | 0.0063530 |
15 | print.possible + walls + paintingcontractors + taverns + eastmidlands + hogarths + printing + contractors + cloudy + printed | 70 | 0.0082354 |
150 | mornin + glory + pallet + wraps + shrink + cardboard + materials + packaging + deals + boxes | 76 | 0.0089413 |
1500 | diet + excerpt + gendered + timelapse + broken + roundabout + academia + aimed + differences + freelance | 210 | 0.0247062 |
1501 | kingdom + united + comedyclub + livecomedy + standupcomedy + bioderma + comedyfestival + standup + alston + chim | 79 | 0.0092942 |
1502 | awards + luck + congratulations + winning + juniors + junior + women’s + teams + cricketers + night | 259 | 0.0304710 |
1503 | game + congratulations + rugby + winners + luck + purim + skitz + forward + season + awards | 175 | 0.0205885 |
1504 | prepactive + rhi + graduates + pb + wishing + bahhumbug + baulbles + calkeunlocked + escapevenues + gadsby + harrystylesliveontourbirmingham + hospitable + runnerschat + townandgown10k | 66 | 0.0077648 |
1505 | sabras + fantastic + night + team + sponsors + nims + bhavin’s + birminghampride + directo + enthus + fittingly + londonmarathon18 + majinder + makai + malala’s + pjxiv2019 + reytagainstmachine + superf + the_garage_flowers + u17b + yersel + yousafzai + ziauddin | 83 | 0.0097648 |
1506 | forge + dragons + kingdom + united + koi + tattoo + sarangichillout2 + studio + sleeve + leicestershire | 267 | 0.0314122 |
1507 | cortisol + pulses + chronically + acute + resulted + electronic + affects + trauma + journeys + measure | 136 | 0.0160002 |
1508 | compressedair + motorservice + powersystemsaircompressors + welford + epl + views + installed + 2secs + backpiece + beatyesterday + bookreviewer + burgessfest + ericworre + firestone + girlsjustwanttohavefun + goagain + halestorm + ianother + inaya + kygo + millibar + missalous + pivac’s + prestigeous + raul’s + saddling + senio + spacegirl + spithappens + spsevents + subj + thecouplenextdoor + tinyadventures + tonkas + trocaz + turnus + twinsontour + vicha + youcanbewhateveryouwanttobe | 89 | 0.0104707 |
1509 | numan + song + ghent + gary + birch + demo + aela’s + birchnell + bridgewater + cocteau + delsol + filles + hospital’s + laisse + leopardstown + marlowe’s + ofm2019 + prayerfully + reminisced + sarson + tomber + wanamaker | 56 | 0.0065883 |
151 | betterpoints + cycled + earned + miles + hundredths + pigs + thirty + blankets + bashers + bible | 91 | 0.0107060 |
1510 | britishbasketball + riders + winners + whereyousucceed + newground + whereyoubelong + awards + congratulations + inktober + 2nds | 159 | 0.0187061 |
1511 | king + merrick + audiodescription + quarry + joseph + stadium + statue + lestweforget + lcfc + power | 164 | 0.0192944 |
1512 | inspiring + evening + kendrick + 167 + 178 + 1873 + assertyourself + cwcone9 + d1w2 + diaconate + dogsocialisation + greasethemusical + individualism + londinium + mjfc + socdm2019 + upcomingrapper + we_can_live_together + workface | 71 | 0.0083531 |
1513 | neighbourhood + cushing’s + pituitary + edt + helpful + mental + inspiring + health + disease + committee | 129 | 0.0151767 |
1514 | anxiety + pain + server + bipolar + 224 + cambell + deepl + disabling + gassy + gastroparesis + godhaabakqqhiw + ikhwaan + insistence + krasznahorkai + kyopolou + l’m + majah + netflixoriginal + remarried + seasonings + seokmin + singleparent + sunan + tenne + villanelles | 83 | 0.0097648 |
1515 | unfairly + calorie + matters + considerate + nature + 993 + academicwriting + aeros + amagnificent + autisti + cashslaves + developi + deviate + extendin + fossilfuel + gilgun + gleefully + howtosurviveinteaching + keto’s + miscalculated + neurodevelo + nissanleaf + ortho + poisonjim + shantabai + sympathised + taverne + tranist + tyrying + undestruction + uninte | 85 | 0.0100001 |
1516 | metafilter + cortisol + importance + vertical + attend + children + feed + protein + botw + cbdengland + cdb + crossbones + datascience + diggle + doubleneck + frictionless + housingassociation + middl + norse + proteios + rememberedeverythingelse + restating + riscpc | 78 | 0.0091766 |
1517 | freelance + financially + struggling + dhaar + extra + appreci + yeovil + expertise + piercing + 223139 + 324 + appendix + befits + biano44 + ceili + cidery + denti + gocat + hd800 + normalform + olderpeoplesday + onmy + peteranthon4 + plurals + realistical + scoped + sinek + smis + starcsite + tongasiyuswnp + underpinning + whiped + wowclassic | 68 | 0.0080001 |
1518 | bus + dazzle + endemic + ebay + uber + driver + spreads + pencils + partly + patients | 172 | 0.0202356 |
1519 | deficiency + gestational + diabetes + dg + bookcase + adhd + blackbird + identified + treatment + psychological | 105 | 0.0123531 |
152 | contractors + bootsale + leicester’s + painting + charity + letter + charge + growi + app + growin | 86 | 0.0101178 |
1520 | branches + car + children + academics + armed + bursa + cowa + cseday19 + daudia’s + dibnah + edf + fiendishly + godsons + helpinghands + indifensible + judiannes + muss + pagerank + philologists + propulsion + psychia + reformation + renton + repairman + saffir + sportspsychology + stranglin + subsiste + sunak + upo | 72 | 0.0084707 |
1521 | song + walk + fallout + pablo + 6lack + starset + taknbystorm + scarves + massacre + klaxons | 241 | 0.0283533 |
1522 | fabricator + expanding + hiring + require + clients + experienced + metal + sheet + steel + bevcan | 66 | 0.0077648 |
1523 | scorn + rapture + 14.40 + 808 + batista + coercivecontrol + cramping + dobble + elation + farty + hobb + horrocks + miseducating + personaphotos + principalities + rememory + steadfast + thasts + tirmidhi + toga + tussle + visualised | 71 | 0.0083531 |
1524 | darcy + launch + eco + announce + syston + 1of + amresearching + apaka469 + armistice2018 + backbypopulardemand + bbcleiceste + blemish + communitychampions + dumbfounded + eflplayofinal + era_thekid + evin + faulkes + fullcar + gianluca + herschel’s + histfic + huzzah + learnining + leicesteropen30 + leicsatmipim + mokulito + mokulitoprint + neoelegance + playwright + posca + posne + psec + qualifiying + ravensbridge + remebranceday + rhiann + sikhsoldiers + skillbuild2018 + squonk + talktopresident + thecarmillamovie + thedebutradar + triumvirate + vaperazzi + vialli + watsondayout + workwinter2018 | 72 | 0.0084707 |
1525 | refle + provider + 1000km + 10downingstreet + allaboutthebalance + autumnally + birdsfoot + bracey + burnet + byg + communitycohesion + cosmonaut + dowden + enkalonhouse + enterpriselecturer + externalrelations + facebookads + facebookblueprint + foxon + hackathons + hichkithefilm + jotham + leicsstartupweek2018 + natureshots + publicdressrehearsal + ranimukerji + schoolride + stna + supremes + toptoucher + transitiontaskforce + trefoil + vitamincneeded | 58 | 0.0068236 |
1526 | tickets + christmas + globe + cookie + trials + 3pm + join + details + blendbar + comedy | 95 | 0.0111766 |
1527 | fantastic.staffordleysyr3 + immaterial + bloggerstribe + wordpress + blogging + pss18 + puppets + roxy + blogs + wonderland | 71 | 0.0083531 |
1528 | paresh + inspiring + wet + britten + pwc + rapscallion’s + cobham + sun + brilliant + evening | 174 | 0.0204709 |
1529 | kurtz + day + newyork + 2004 + patent + week + firsts + yesterday + masala + river | 164 | 0.0192944 |
153 | forecast + weather + whetstone + competition + app + met + office + banqueting + jul + heavy | 84 | 0.0098825 |
1530 | xie + hath + variation + wonderful + parkrun + choir + ho + enjoyed + sun + piano | 110 | 0.0129414 |
1531 | beavoter + polling + recordoftheday + election + station + finding + sport + boop + album + today’s | 102 | 0.0120002 |
1532 | otd + morning + yesterday + morningmotivation + meeting + amazing + evening + fantastic + students + day | 439 | 0.0516478 |
1533 | otd + team + conference + gardens + clu + evening + dec + ward + funky + huge | 143 | 0.0168238 |
1534 | ani + woman’s + event + 7pm + evening + games + mahathat + cup + inspiring + bromley | 212 | 0.0249415 |
1535 | yesterday + team + bhaji + deser + forward + logs + mukesh + game + ivory + wowsers | 172 | 0.0202356 |
1536 | snoring + watermelon + burzum + heavt + mattre + prirformis + psychotics + stethoscopes + upthat + weaned | 55 | 0.0064707 |
1537 | adultlearning + pompeii + freud + event + meeko + conference + panel + business + virtual + 0416 + acquaintance + afterrnoo + alaica + aleksa + alyarmouk + archeology + arnaud + attenbor + auditworldcup + bradleylightbody + breakingnews + brightfuturesuol + chrystal + coffeeandnatter + conceptualising + craned + drapier + duk2019 + dutchess + ericrobone2 + frcpath + goingtheextramile + greatlessons + healthybody + healthymind + higgett + hra + inniative + ivoted + jacq + lals + leicestershospitals + lookafter + lowerbackpain + lwfa + meldrum + napier + nathaniel + nevertoldtolearn + overawed + pathway2grow + produc + providin + rateliff + s.whelan + soon.the + spon + staffband + yself | 93 | 0.0109413 |
1538 | la + grindhouse + refix + ukbass + ukhouse + magazine + crocodile + martin’s + comedy + gates | 73 | 0.0085884 |
1539 | pay + rnb + apology + eu + alleviates + committi + compensations + debt’s + devaluation + equalized + ghislane + laddos + mandat + mandated + meritocracy + nisan + nottsfails + otr + pseudonymisation + statehood + ub | 58 | 0.0068236 |
154 | xxx + fab + hamper + jessie + bored + fine + stay + xx + excited + love | 53 | 0.0062354 |
1540 | dmupolitics + innovation + exploring + teaching + extent + paper + kidney + geographers + health + inclusive | 253 | 0.0297651 |
1541 | renovation + jnbl + bestseatinthehouse + candidphototography + rashmikant + basketball + sessions + joshi + vaisakhi + firsts | 69 | 0.0081178 |
1542 | volvoxc40 + volvoxc40launch + 2️⃣0️⃣1️⃣9️⃣ + national + space + applicants + dgpconf18 + talk + forward + students | 146 | 0.0171767 |
1543 | iwill + partnering + tagging + announce + artclub + bulkingseason + cutandpaste + ea.esthetics_ + ebcd + faithinhumanity + falcore’s + fernandoizquierdo + formida + gulati + internatinalwomensday + julievivas + katardley + knowyournormal + learningtools + makenigehappy + malcom’s + newoffice + newsx + parasitologists + persone + radicaldmu19 + samsunggalaxynote9 + sjdetailing21 + spooptacular + underthesea + weimprove | 65 | 0.0076472 |
1544 | thedsauk + agile + conference + team + 250th + adventureapril + allroadsleadtoleicester + beencoming + bobtail + castleford + caucus + chairwoman + cinemalegend + committedtochange + coolaeronautics + discoveryprogramme + driveincinema + dsastars + em2c2019 + ev2 + eve18 + fdmcareers + festivalofcareers + finirbache + followfulhamaway + giveitayear + glengorsegc + inforgraphic + newwriters + niecewards + phc + rcslt2019 + rich.reed + rusia2018 + saveourfarm + smil + stadiu + tivoli + trejo + vicephec18 + womeninrental + worldathleticschamps | 89 | 0.0104707 |
1545 | iraqi + afda + catering + drums + sessions + musician + 14mpg + 29.09.19 + application’s + availabil + clent + costadelleicester + curvetheatre + dayofthedeadtattoo + drumkit + fielded + hashem + hpt + hypexmonsters + larrad + leicestermela2018 + lesmistour + lovecurling + matchweek27 + natashas + percussion + pressnight + round27 + runforall + seasicksteve + seasonsgreetings + smallbusinessowner + soundchecking + teamremo + username.strivet + vicfirth + weal | 63 | 0.0074119 |
1546 | details + afda + ales + apply + welford + gallery + rfc + art + stadium + join | 347 | 0.0408241 |
1547 | apply + afda + painting + join + rfc + panorama + leavers + ucas + exhibiting + contemporary | 64 | 0.0075295 |
1548 | details + cookie + kitchen + russell + matchchoice + neps + sattars + leavers + nep + progress | 149 | 0.0175297 |
1549 | prof + volkswagen + psafetycongress + tropicalpeat + pathways + nurses + ongoing + sepsis + ties + keynote | 86 | 0.0101178 |
155 | whoop + whoopee + xx + landscaping + paving + bella + gain + loss + win + pics | 54 | 0.0063530 |
1550 | blah + requests + 2.20.1 + buyout + dannymurphy + gatwi + georgebenson + idna + righting + satell + schooltoyday + scrapio + seedbanking + shoehorning + skirpal + uneconomic | 60 | 0.0070589 |
1551 | train + mattie + bme + careful + comms + deaths + coalville + enjoys + apparently + forms | 92 | 0.0108237 |
1552 | create + banknotes + originall + pdr + reclaimthehappiness + students + defaced + rain + vendor + tubeless | 150 | 0.0176473 |
1553 | byte + protestant + mets + service + pharma + policy + controlled + investigate + walk + similar | 124 | 0.0145884 |
1554 | aaarsenal + possibility + stem + expectancy + clinicians + mats + medicine + buttons + devices + valproate | 127 | 0.0149414 |
1555 | arguing + viewpoint + decisions + people + cdj’s + conceptualised + delici + dialectical + disenfranchises + dispassionate + dissemble + ēg + excludi + hesaltine + housr + invalu + jugak + l.o.v.excuse + loreto + metaspaces + neutrality + obvi + ostensibly + portentous + stalinist + technicalities + thing.state + uppe + videoes | 119 | 0.0140002 |
1556 | slime + timepm + barrio + cunningham + gelato + tickets + thousandths + interiors + starlight + staff | 54 | 0.0063530 |
1557 | departing + camp + february + tickets + counting + kickoff + 2018 + ko + book + leicestercity | 110 | 0.0129414 |
1558 | mistake + home + generated + read + unwell + books + bought + spelling + morning + grammar | 118 | 0.0138825 |
1559 | hours + ago + watched + feel + months + drank + weeks + treadmill + week + 9am | 171 | 0.0201179 |
156 | impossible + god + nims + boutique + plz + gifts + retweet + delivery + gift + perfect | 108 | 0.0127061 |
1560 | disrupts + macan + partri + health + people + conversation + excerpts + academics + 20m + thefts | 261 | 0.0307063 |
1561 | istandwithvic + distributed + kickvic + residency + poles + screenshots + nhs + dubai + customer + 3.4m + animegate + bookmarklet + breaches + dimond + equities + facadism + geoip + immigrationreform + praslin + prepube + underwriting + worldbenzoday | 63 | 0.0074119 |
1562 | bestie + oven + buffet + 78million + annoyances + arranger + asma’s + bidon + claime + ebo + itsoveritsdone + maybe’s + safed + salerno + sausag + seder + theskripture + triix + uncomfort | 57 | 0.0067060 |
1563 | opportunities + development + workshop + techniques + skills + health + patronage + username’s + discussing + welfare | 188 | 0.0221180 |
1564 | exit + andangnya + archetypes + awinkado + brablec’s + cematu + dooring + evide + evokes + foundational + gaurentee + iaccidentlyatesome + ladsnightout + mapuche + suge | 54 | 0.0063530 |
1565 | parkinson’s + spotifywrapped + pdf + writer + vat + profit + 1.7.1 + arteriovascular + convenien + definintely + disabiltys + drivi + genealogists + inspitates + irrevocable + johnmayer + malformation + pollinate + savelumadschools + stoplumadkillings + universtiy + unravels | 68 | 0.0080001 |
1566 | cheaper + adobe + gigi + facebook + app + system + sen + sold + hungary + dire + tab | 209 | 0.0245886 |
1567 | proxy + stuffs + capital + item + 5gwar + 8.70 + austrailia’s + boffins + caretakers + daripada + dustjacket + figu + fk’s + keyless + mat’s + pakai + pimco + playstations + polticial + sumthing + twitterdms + ypung | 55 | 0.0064707 |
1568 | declare + abattoir + failwell + financin + groundwater + koalas + losi + moneyfornothing + penkhull + playgrounds + recogni + reddits + reshel + usel + wastemoney | 55 | 0.0064707 |
1569 | parcel + customer + delivery + service + delivered + refund + received + account + card + app | 1154 | 0.1357666 |
157 | betterpoints + earned + walked + hundredths + miles + antalya + brill + thirty + weekend + timelords | 238 | 0.0280004 |
1570 | prices + tax + homes + price + building + council + unsure + feeding + automatical + communiti + concensous + concreting + deploym + homose + lifers + likesome + million’s + newpm + pernicious + pupillages + qobuz + shoud’ve + swathesof + whenprotestartmirrorslife | 81 | 0.0095295 |
1571 | agree + considers + detail + eligible + buying + frailty + wrongly + widely + services + farmers | 190 | 0.0223533 |
1572 | corsa + grass + formula + slime + unicorn + bird + adspace + andreessen + bookkeeping + carvah + daugh + dmugrad19 + ewelme + fartfag + financiall + from.a + futurism + gelatodog + lovell + njwk13 + okada + rainmaker + see.a + shilly + spoonie + spoonielife + whiteboards | 79 | 0.0092942 |
1573 | charging + streetview + pension + magnitude + websites + cctv + stalk + district + bought + price | 103 | 0.0121178 |
1574 | googleplus + marked + toda + leak + allyship + bilaterally + complexed + desc + displeasure + ens + forecasting + hef + independe + minutely + recoveryspace + renewin + stockpiles + tvml + ugand + unregulated + unsubtle | 57 | 0.0067060 |
1575 | parking + minister + syston + ifs + phone + moved + dealer + toaster + ticket + booked | 113 | 0.0132943 |
1576 | ignorance + normalise + arithmetic + question + disengagement + education + poverty + opulence + dangerous + centuries | 99 | 0.0116472 |
1577 | pay + moneym + income + people + nhs + system + eu + buying + cuts + data | 579 | 0.0681186 |
1578 | session + forward + hitchings + students + fantastic + plgirls + keynote + autotraderxmas + accomodation + awards | 163 | 0.0191767 |
1579 | gmc + charged + cannibal + someo + atlantic + amazon + avi + item + 76p + a380s + airbus + belfast’s + buse + fligh + geneuine + impossibl + launche + surpr + therange | 70 | 0.0082354 |
158 | splendid + msdukinnovationchallenge + ooo + santa + im + ive + moose + markets + pig + hump | 73 | 0.0085884 |
1580 | earners + ios + corporates + sd1 + tax + narborough + price + benefit + scandal + disclosure | 168 | 0.0197650 |
1581 | xmp + issue + exclusion + cost + 23.9 + ecommerce + environmen + fromabanker + herbies + housingforall + ironica + itgs + neen + populat + processi + sard + shrinks + stasi + tonhrt + transhumanism + unanswerable + youbrokeityoufixit | 78 | 0.0091766 |
1582 | locos + janie + penguin + birth + doctors + people + valproate + adamant + suffer + diversity | 249 | 0.0292945 |
1583 | cutka + airforce + lier + committee + eu + modi + labour + rahul + taxes + nhs | 50 | 0.0058824 |
1584 | celine + 1970 + hundredths + mop + anytime + recently + 11yrs + apaz + apologie + cellos + dions + driff + e2 + ferguso + foundatio + freaki + headbanging + headmistress + hobbie + immersed + itv3 + kiersten + lucife + marigold + millionaireslatte + oldes + or + pannie + recluse + s.a.d + smashbox + sound + stac + stonecoldheart + twothree + unlces + vaugly + verte + writhing | 119 | 0.0140002 |
1585 | hillary + nigh + syrup + blank + foot + anyhoo + behaviourist + dandhinos + delieverd + dryads + frito + gottakeepawake + happie + kyles + laundered + lovestory + mantic + mccan + michaelsek + monito + nitrate + nostalg + peltinghell + perril’s + pew + quesito + rollercoaster:from + sissay + spokenwordpoetry + sudacrem + testin + yehs | 95 | 0.0111766 |
1586 | wayne’s + ajax + tub + draw + mosaic + juventus + dave + husband + cpd + disability | 66 | 0.0077648 |
1587 | maythetoysbewithyou + _mamta + 12daysofjones + museum + zine + vibronics + djing + submissions + lestweforget + exhibition | 59 | 0.0069413 |
1588 | session + vr + stadium + jellyfish + tonight’s + u16 + event + recruitment + king + awards | 121 | 0.0142355 |
1589 | sandhu + prompting + tools + naj + inte + dr + empower + qualification + testimonial + improving | 55 | 0.0064707 |
159 | aromatherapy + 75mins + couch + indulge + relaxing + gents + homemade + babies + birthday + love | 194 | 0.0228239 |
1590 | whyisthat + unhelpful + government + people + system + society + poor + reported + poverty + evidence | 838 | 0.0985896 |
1591 | saboteurs + moderate + christian + wealthy + pollution + russians + propaganda + albasheer + compasses + crima + disappoi + galadimas + hadeeth + heatbreaking + laffng + panellis + q.excuse + statemen + toryleadership + trs + unnaceptable + upkeep + verhofstadt + بس + تسقط | 61 | 0.0071766 |
1592 | ginzburg + baggins + drug + vicar + oil + perfume + eileen + addict + wa + bus | 139 | 0.0163532 |
1593 | marines + kop + morrison’s + stand + ripped + 88a + 9ft + accursed + alfstewart + bangon + bdw + belgravehallgardens + blighters + boerne + ebony’s + famoly + fatale + from.they + guinevere + inthelongrun + irmin + jarofdirt + lampstand + mosiacs + od’d + rove + setinthe80 + vagrants + zephaniah’s | 60 | 0.0070589 |
1594 | biog + cremer + prophets + addiction + quote + resonates + environment + negative + nurses + pick | 186 | 0.0218827 |
1595 | tempo + cd’s + talksport + cyclist + sp + a4s + chrissy’s + deltics + forc + fuckmate + herodotus + kosskhol + manicdepression + represen + sensibilities | 62 | 0.0072942 |
1596 | students + geography + melcav + talks + worldmentalhealthday + composting + zetasafe + health + specifications + service | 194 | 0.0228239 |
1597 | catastrophic + climatechange + universities + persons + impact + worldwide + aboriginal + apparates + being’s + circumvent + citation + grolsch + haggarty + impostors + impre + loyalist + netballworldcup + ofte + qabbalistic + sephirah + statele + terns + yesod | 75 | 0.0088237 |
1598 | pyrography + click + view + bright + technically + assignmen + beatnik + caudaequinasyndrome + collarless + epistemology + excelle + faccinating + gallaher + hik + hyperbad + kungs + lithuanian + mansfiel + marshmallowspine + momento + senorita + smws + spinalcordinjury + triumphdolomite + whiteout + xmasdinner | 74 | 0.0087060 |
1599 | ulwfc + 1sts + awards + homeed + primaryschool + yalc + competing + oliversean + celebrating + 2nds + enjoythegame | 120 | 0.0141178 |
16 | consulte + recycles + curious + insufficient + refilled + transferwindow + meaning + shocked + begins + search | 1226 | 0.1442373 |
160 | bbcradioleicester + lcfc + 0 + leibou + leiswa + diabate + leishu + leistk + iheanacho + city | 135 | 0.0158826 |
1600 | jnbl + join + saturday + gameday + event + september + pilot + 9.30am + meal + joining | 77 | 0.0090590 |
1601 | chippy + thesis + mh + a.m.excuse + adagioforstrings + barreiro + coffeehouses + d.j + hellspaw + hoodle + hoodledoodle + kingston’s + phoene + puffy’s + redgrouse + sips2018 + twen + wheelchairing + wolfies | 50 | 0.0058824 |
1602 | santander + consent + child + frustrated + actio + awliya + barbarity + disru + nabeelah + o.g.s + priviliging + qualitativeresearch + rebuttal + satisfie + sonetimes + torne + ulama | 70 | 0.0082354 |
1603 | brexit + trump + corbyn + federal + tory + democracy + racism + constituency + party + reporter | 60 | 0.0070589 |
1604 | 1080ti + 2080ti + aldershot + changin + compcraze + dobe + finland’s + gaultier + healer + masuku + may’ve + o’level + odenkirk + ourself + quotability + ryland + shamans + sounness + st.matthews + suffereing + unebviable + zimsec | 50 | 0.0058824 |
1605 | dsusummerball + brides + arrival + awards + award + winner + britishbasketball + finalists + riders + 2018 | 111 | 0.0130590 |
1606 | sleep + cough + sarahlucyjackson + wings + hours + night + weight + laid + hav + slept | 145 | 0.0170591 |
1607 | entrichment + rmplc + leadership + primary + leader + community + afternoon + delighted + county + talented | 97 | 0.0114119 |
1608 | morrison’s + lemonade + strategic + pairs + 2016 + 1703 + backstreets + fbp + flt + joulio + logistic + loughbor + opte + parlov + ramallah + segal’s + skyfire + voce | 54 | 0.0063530 |
1609 | abo + ordinary + occupants + people + hairstyle + change + wear + human + hitler + helmet | 156 | 0.0183532 |
161 | beautiful + promises + gorgeous + flecks + wearly + pastey + dapper + horrors + progressed + madders | 77 | 0.0090590 |
1610 | forward + kickers + event + 60forsixty + cub + drayton + prix + carols + 2018 + heaton | 145 | 0.0170591 |
1611 | bloggeruk + bromyard + wonderful + childrensmentalhealthweek + families + inspiring + team + training + companion + morty | 134 | 0.0157649 |
1612 | event + nurse’s + church + fantastic + afternoon + amazing + prashant + meeting + congratulations + inviting | 251 | 0.0295298 |
1613 | themselve + britishbasketball + prs + divas + threerd + bagged + finalists + heading + july + 15pt + achoo + auliya + bally’s + campingparty + citin + delegatetreats + dmuequestrian + dupaata + evertonfc + fabulousness + fasciamodels + gardenia + goodnewsstory + hankering + harjitharman + hdbrowas + hrc2019 + krips43 + leaverassembly + libbah3 + motivationalmonday + naat + prashika + rivalryweek + rollerderby + sabra | 65 | 0.0076472 |
1614 | dsusummerball + noms + team + britishbasketball + award + forward + blend + siren + luck + event | 282 | 0.0331769 |
1615 | fuckthisshit + notestostrangers + advertising + believers + eurgh + negotiating + discourse + control + philosophy + politician | 99 | 0.0116472 |
1616 | toy + ago + watched + meds + hip + months + story + days + frankel + watchi | 259 | 0.0304710 |
1617 | combating + frikkin + storms + institution + click + albei + bry’s + colourfield + friends.lots + jugg + mamer + newsagent + ogacho + philippine + probed + rejigging + velition + wankneighbour + workmate’s | 62 | 0.0072942 |
1618 | sunidhi + chauhan + britishbasketball + newwalkmuseum + fixtures + picnic + queer + 5k + afterhours + alistargeorge + blackfordby + braunstoneswimmingclub + bungie + chari + deliciousfood + dickeheads + dontating + earthshaker + flowertattoo + formerstudent + freeths + herron + kh3 + lasa + lifephotography + lifestylephotography + nner + playtest + polytec + ppg + probaly + specialvisitor + squidgel24 + ultrarunner + unilax + virdee | 62 | 0.0072942 |
1619 | shorts + pon + surreal + 1880s + 2ns + abbé + amicus + askpixie + eryng + hasenhüttl’s + littrell + macquart + manish’s + mouret + pathology + popworld + rewi + rougon + rox + steinberg + understatemen + vanishin + wafting + yhr + zola’s | 76 | 0.0089413 |
162 | 5lbs + gear + weight + punch + lose + fitness + resolutions + gym + sign + slowing | 60 | 0.0070589 |
1620 | african + concerns + knob + alphas + cockhead + gaini + liveing + nimekumislead + parents + crocodiles + eissh + everyb + frustation + humdrum + inaccessible | 50 | 0.0058824 |
1621 | sin + nonviolence + sv + medic + nickname + 50 + horse + react + relationship + belief | 109 | 0.0128237 |
1622 | conference + extension + whitney + houston + launch + students + discuss + charnwood + dual + aiming + mixing | 111 | 0.0130590 |
1623 | bland + cyclist + bicycle + abuse + hoc + farscape + ripjeremyhardy + women + people + safe | 248 | 0.0291769 |
1624 | agree + sense + bilal + zooming + puel + ds + fit + speak + person + makes | 285 | 0.0335299 |
1625 | hutu + pooh + mh + slow + songs + 21.02.18 + 70yrs + kuchafua + lifeboats + lineage + meza + michael_hunter + mushaf + rua + usayd | 54 | 0.0063530 |
1626 | exhibition + rcslt + event + apply + join + hall + art + ninth + local + assista | 264 | 0.0310593 |
1627 | schools + leicinnovation + primary + trainer + attma + belmas + cpc18 + crn + eanetwork + entitlemen + flooddefence + forthemanynotthefew + generates + geogrpahic + gnr19 + industri + instahub + launged + leadershipacademy + makedoandmend + mhaw + mixup + mts + my_twitter_name + officialleicesteraudi + partipant + pausa + rmdandt + taysum + terrk + thefertilityshow + winstone’s + zat | 63 | 0.0074119 |
1628 | appreciative + car + extremity + symbolize + cadjpy + gels + mypathtolaw + incompatible + 50 + mor | 220 | 0.0258827 |
1629 | chuck + jjs + sera + 35yrs + poncho + thematically + woodchuck + instruction + yo + words | 224 | 0.0263533 |
163 | gt + ding + dong + serving + hny + xmas + whatsthebigmistry + absent + takeover + brill | 105 | 0.0123531 |
1630 | details + academy2 + tickets + rakhee’s + 5pm + tomorrow + eighth + venue + krishna + portfolio | 77 | 0.0090590 |
1631 | tickets + merry + camps + astley + saturday + campus + doors + wax + restaurant + thorpe | 65 | 0.0076472 |
1632 | cookie + details + tickets + evening + duffys + saturday + thursday + friday + camp + event | 780 | 0.0917660 |
1633 | workshop + research + augustin + displaced + students + conference + artificialinteligence + machinelearning + session + botswana | 137 | 0.0161179 |
1634 | chung + inclined + bobwen + bongi + bossvleader + clyne’s + derken + desensitising + earnestness + ecw + gofundmes + stigmatisin + timeh + worryi | 86 | 0.0101178 |
1635 | pakistanzindabad + pakistan + pakistanairforce + india + airforce + corsia + pakistanarmy + nhs + narratives + indian | 96 | 0.0112943 |
1636 | val + support + activatetoeducate + bestpresentever + blisworth + camllie + communit + dicsussion + featherstone + feroza + fullcbd + geophysicsinabox + heatherspride + herturn + jolly’s + kiit + nationa + nbsculptor + nel’s + nierop + p’ship + reiko + runnerschatuk + rushcliffe + schoolsride2018 + shellard + takeastand + westmoreland | 69 | 0.0081178 |
1637 | shonas + towering + dome + korea + palestine + mosque + racist + offensive + alansugar + biloor + confus + firdos + firstlyiy + janatul + nationaltreeweek + ndebeles + organisa + teamate’s + thirdly + underlies | 50 | 0.0058824 |
1638 | fairs + founder + event + join + music + 10a + american_football + applica + beapartofsomething + ceildh + changinglocallives + falcor + fluxdance + gasoline + getagripepshow + getlyntothegraps + globalclimatestrike + idries + independentliving + initiateleicester’s + irishdance + itsback + joinus + manofthematch + maskoff + myeverything + newartists + newrelease + nsdf19 + nursingsociety + oadby’s + povertyactionweek + pritibodies + pumpkinsforpower + pumpkintwists + punjaban + saqqara + soulreasonshow + timhortons + visito + wex | 68 | 0.0080001 |
1639 | 60fps + 99s + aquate + communicative + environm + heari + humanizing + itmustbetheonions + jayday32 + obrees + overlong + pampas + pastu + sneerin + swingi + witc | 54 | 0.0063530 |
164 | trade + closed + usdcad + usdchf + profit + forex + trading + audusd + eurchf + loss | 311 | 0.0365888 |
1640 | fayre + trendytuesday + campus + wedding + melton + join + saturday + attend + announced + rising | 67 | 0.0078825 |
1641 | microbe + sth + 1mp + abstractions + allocat + aret + barometer + courted + defiçiency + follwed + grandmothers + mordin + munroebergdorf + salarian + solus + talke + turian | 54 | 0.0063530 |
1642 | brecht + vivek + priest + naive + angushad + buddhistpriest + carls + defendin + dftb17 + guara + japanidol + kewl + powerwashingporn + quirk + sabo + seventee + subreddit + zionis | 53 | 0.0062354 |
1643 | overheard + reverses + output + 3two10 + adeolokun + biscui + chastise + duck’s + eunuch + holiday.could + inkle + man.utd + parkruns + rosslyn + scuffle + slapdash + somew + strategica + timepieces + watchmen + yarble + yarbles | 76 | 0.0089413 |
1644 | join + newmusicalert + newmusiccomingsoon + chef + july + guest + event + drops + shaf + newmusic | 245 | 0.0288239 |
1645 | one2onediet + jazz + join + scr + funrun + event + 4pm + gt + july + klxud | 101 | 0.0118825 |
1646 | leadership + discussion + development + communities + approaches + wip + humanists + tackling + loneliness + ahp + gamedev | 139 | 0.0163532 |
1647 | sauropods + cetiosaurus + myf + sffpit + peasant + bron’s + mg + repping + dinosaur + iplayer | 121 | 0.0142355 |
1648 | brexit + impasse + jha + eu + voted + union + political + politics + lt + government | 64 | 0.0075295 |
1649 | society + interpretation + argument + feed + var + trigger + responsibility + rely + abyssinian + adjudged + apoliticism + appropri + breakf + corresponds + cozart + cuse + enery + euvote + fevertree’s + fuckingjoking + mitigating + moats + mouthings + names.all + narwhal + public.heic + recipient’s + rh + saltiness + scrooges + strid + tresnformed + violati + youmust + 三 | 79 | 0.0092942 |
165 | spotifywrapped + 2018wrapped + spending + returns + 1 + hours + brilliant + happy + thirty + bestprogrammeever + dadaji + xylø | 61 | 0.0071766 |
1650 | click + view + morrison’s + charade + bus + heels + surgery + ohuaye + sigmundfreud + vet’s + worricker | 386 | 0.0454124 |
1651 | fortieth + 1666 + angelou + crimson’s + decadently + dekker + designformula + dromgoole’s + egerton’s + encyclopaedia + homie’s + jabhangduensgeugvsjskjgshs + kazillion + kibbe + krampus + ninea + nineam + seasona + sweight + thegreatestvisitation + uperton + venti + wretching | 57 | 0.0067060 |
1652 | bbcsports + premiereleague + bbcsport + presentations + outlander + arsenalfc + support + kilted + progr + mentoring + notting | 119 | 0.0140002 |
1653 | meeting + fantastic + students + event + session + support + forward + wonderful + charity + lots | 552 | 0.0649421 |
1654 | students + meeting + workshop + team + session + fantastic + insight + britian + username’s + event | 300 | 0.0352946 |
1655 | artistic + today’s + adme + americaneedsyou + and.username + bbcelfie + disocering + duncanfegredo + exceptiona + exvellence + future100 + futurefocus2019 + girders + impactteamsuk + ise2018 + jayzneedsyou + lboromarkettastic + lboroquality + learningspace + lencarta + letaveit + nause + oboe + oranginser + ordinator’s + purpos + r2ba + saveourocean + ström’s + strongerthanmyfears + tab’s + thegriefcast + theineptfive + womensawards + yesidonate + zorba | 84 | 0.0098825 |
1656 | students + ___________________________________ + radnorfizz + fortitude + teambrilliant + fantastic + scramble + caddyshackers + sewing + check | 127 | 0.0149414 |
1657 | trinity + fossils + supported + beingourselves + childrensmhw + academy + bhosle + crosby + sudesh + ltsig | 157 | 0.0184708 |
1658 | mowing + enoug + lawn + pleasing + jesus + christ + puel + sister + negative + helping | 104 | 0.0122355 |
1659 | squeg + functioning + accents + slavery + wholeheartedly + language + women + politics + ga + agree | 99 | 0.0116472 |
166 | gorgeous + beautiful + awkward + peachy + untill + ink + mummy + kiss + wicked + breath | 57 | 0.0067060 |
1660 | lent2019 + morningprayer + rhaegal + determination + murakami + boast + energy + weirder + lord + flesh | 121 | 0.0142355 |
1661 | absence + destroy + 1john + beachlive + blatently + coulysee + detach + dontchan + famine + florrie + multiplesclerosis + multitudes + p’rhaps + profaned + seagal + successe + wishe + yonce | 77 | 0.0090590 |
1662 | puel + agree + rivalry + abused + belittling + feelingfestive + himsel + judgi + knowns + ptas + sniffy + thingsdisabledpeopleknow + upsett | 67 | 0.0078825 |
1663 | barkby + exhibition + march + taster + gt + adayforleicester + batson + breadangel + curatorial + hellbladesenuassacrifice + interrelated + jbi + latests + lt3 + ltown + neiland + ollie_kd7 + outcheax + reggulites + tebo + the_bhf + thegallerysocial + vote.leo + wheyhey + y10 | 53 | 0.0062354 |
1664 | charity + familyyoga + sattvalifeyoga + yogaforever + event + newmusicalert + tus + yoga + monday + 1979 | 102 | 0.0120002 |
1665 | plinky + plonky + plagues + exodus + horribly + words + exhaustion + moses + egypt + tablet | 158 | 0.0185885 |
1666 | purvis + gulliver’s + festival + chanc + hermione + saturday + july + join + jam + party | 101 | 0.0118825 |
1667 | nightcore + placeshapers + cpd + community + event + selfless + lyric + recognising + graduates + ghana | 54 | 0.0063530 |
1668 | newmusicalert + teenspirit + opticians + donation + nhs70 + newmusic + rehearsals + 535 + akwaaba + asianfaceofmissengland + championsbrandagency + cheyettesaccountants + deepa’s + falalalalah + groovehorizons + hakomou + hockney’s + kykellyofficial + loler + lptactivetravelweek + moodle + nativ + ncc + neilands + notti + onlythebrave + qurbani + secretgarden + sideshift + taxseason + thebeautygeek_atthemu + townkins + turinepicurealcapital + worldentrepreneursday | 71 | 0.0083531 |
1669 | event + off’s + unsigned + sport + 2018 + sdg + relief + lsa + pm + exhibitions | 110 | 0.0129414 |
167 | brilliant + hignfy + marketing + bombshell + wrestlers + pressing + night + scandal + timing + bloody | 163 | 0.0191767 |
1670 | 1844 + refusing + museums + friedrich + onthisday + benz + tower + entrepreneur + karl + toaster | 84 | 0.0098825 |
1671 | belonged + woop + tony + 10.25am + 11.02am + 11.06am + abled + apportunity + authorwouldyou + blogged + bodypump + d19 + ecgs + forgiv + jawsome + josh’s + maslwa + megmovie + metacalm + moonraker + prigent + russo + two0miles + waddled + whisked + مصالوه | 55 | 0.0064707 |
1672 | gyimah + bbc + imports + pm + sham + country + system + european + news + political | 88 | 0.0103531 |
1673 | vaporeon + retreat + center + artsjobs + bcbf_18 + chos + digitilartist + dinn + disadvantag + espeon + facili + gowelltoday + headzupbusiness + helpi + ionic + iwca + jobsearch + literarylunch + meriva + moandzoe + pokemonfanart + portage + qaiserazim + smokebush + stayactive | 55 | 0.0064707 |
1674 | hospital + drunk + memories + kuli + wisp + kindness + coursework + creates + heigh + wi | 313 | 0.0368240 |
1675 | infections + rats + mum + books + brother’s + lonely + sensation + ago + history + blogging | 131 | 0.0154120 |
1676 | told + deserted + receptionist + telly + psn + daenerys + write + mum + walked + flu | 143 | 0.0168238 |
1677 | warrington + tours + forward + tonight’s + apcr + artclass + blackhistorymonth + bpsa + bpsaontheway + colm + humangeog + madprofessor + mthemahirakhan + palf + phillimore + pullman + rehearsa + rhinocup + shabana + slinger’s + spacegeek + weareacademicvenues | 61 | 0.0071766 |
1678 | cach + heritage + campus + caribbean + cfp + wellbeing + marque + appropriately + propel + week | 150 | 0.0176473 |
1679 | scrapbook + city’s + business + inclusion + ken + 120gsm + afps + allowi + archhealth + beastmyarse + dawoodi + drumtuition + hines + jisc + khunti + knapp + leadershipskills + libguides + massag + mphil + neurosurgical + nisbet + pestcontrol + prototypes + selfiecompetition + sherrington + stps + supportingothers + thurn | 56 | 0.0065883 |
168 | weekend + lovely + bud + wonderful + nads + hny + pat + rob + rich | 118 | 0.0138825 |
1680 | striyah + rbf + meds + howled + nemo + shouts + ikea + women + doctor + 2ft’s + 83yr + 8ths + abridgement + afterward + aldergrove + alleyne + barrista + bce + benazir’s + breathlessly + carmarthen + choux + devah + ehrenreich’s + exacerbat + five4 + goren + groundbrea + indieapril + intramuscular + lupus + lygo + moldova’s + morsel + nickiminaj + philosophicall + pranah + red.gilchrist + sandwhich + sawitcoming + spreding + swapshop + thien + viewin + votesone | 102 | 0.0120002 |
1681 | britishbasketball + dusk + bradford + doughnut + ghana + gimme + 11.15am + 5pt + beastfromtheeastcantstopus + bennies + chickweed + denham + fightcancer + futurethrowback + holmesparkfc + iqra + 🅿️ + pariahtour + philprosportsimages + resiawards19 + saskiaashalarsen + tesla’s + timbers + trumpeter + wathes + wolloff’s + xtremescreampark | 85 | 0.0100001 |
1682 | noodly + base + students + uhl + adler + studies + meeting + donation + session + honorary | 117 | 0.0137649 |
1683 | nepotism + censoring + monstrous + racism + discrimination + stupid + speak + corrupt + muslims + apposing + barelvis + bettermanagers + blairlike + clai + corb + deobandis + eardrums + emissary + glasshouses + hallow + hôtel + monge + polonecks + pourtalès + rotich + shootin + swarmed + turpitude + uncoils + venality + yaya’s | 86 | 0.0101178 |
1684 | library’s + kimberlin + rothschild + join + lease + recruiting + floor + event + friendl + redevelop | 143 | 0.0168238 |
1685 | piece + pot + ecb + stem + advanced + pride + apple + ades + assistin + christams + clift + feil + humi + imagines + irmisbiceps + kotg + nityha + openpsychometrics + painmanagementprogramme + peterstafford + playtesting + pvs + resurrectingdemocracy + roader + rollsroycecullinan + sparklin + teak + teamstory + theyayteam + transplantation + unveils + wembleystadium | 62 | 0.0072942 |
1686 | practice + deepest + limitations + maroon + fear + inadequate + utter + christians + planting + teacher | 157 | 0.0184708 |
1687 | business + event + raise + design + launch + coaching + conference + charity + cad + diabetes | 146 | 0.0171767 |
1688 | programme + dmu4life + bachelors + chairing + unboxing + 1hr + session + honours + network + evington | 85 | 0.0100001 |
1689 | donation + contributed + cbd + construction + forum + absolutelyfantastic + bollywoodagents2018 + davegorman + deliving + doktorhazecircusofhorrors + evrey + glenf + hpv + ipcc + irie + jurassickingdom + lija + mainstre + makku + nasendco + nauts + parking’s + platinumed + samesamedifferent + sefton + skillstests + stemcell + tran4m + transitiongameisstrong + upcomin + uuklockout + wilderfuture | 73 | 0.0085884 |
169 | brill + weekend + lovely + luke + simon + goodluck + lance + bud + jason + sam | 161 | 0.0189414 |
1690 | told + alcohole + fate + fear + cbd + ago + volume + ye + poisonous + snort | 295 | 0.0347064 |
1691 | jewels + dropped + aguirre + brain’s + cabage + cthonic + falli + gargantua + ghostmane + glutened + labourin + pensioned + sarcastica + selfacceptance + titani | 65 | 0.0076472 |
1692 | people + question + daudia + tweet + ashwin + blatantly + chucked + excuse + mediate + sensed | 337 | 0.0396476 |
1693 | movement4movement + prof + customers + colleagues + local + inactivity + fascinating + opportunities + teamproludic + bray + technicians | 141 | 0.0165885 |
1694 | palitoy + mathletics + negrit + transforming + edutainment + negritude + opal22 + musicians + wildfire + conference | 144 | 0.0169414 |
1695 | cereb + effectivecontent + socialmediamanager + nowhiring + whitexmasshow + unrivalled + event + developing + hosted + project | 117 | 0.0137649 |
1696 | originalsoundz + support + dsat + dubs + yoga + cleanse + event + sileby + exciting + proceeds | 133 | 0.0156473 |
1697 | claus + personally + churchianity + keels + opinion + danish + kinky + christianity + rivalry + stupid | 110 | 0.0129414 |
1698 | whinging + faggot + animals + chancellor + elected + behav + deeming + delyth + elnemy + emancipated + mansour’s + weakn | 61 | 0.0071766 |
1699 | consultant + chemo + garba + communication + actionlearning + amwritingromance + autismparent + chachacha + emtraining + fdhm + freelancers + gms + gmsworld + incentivising + lhswellbeing + llrcares + nylacas + rcemcurriculum2020 + rodeos + sss | 63 | 0.0074119 |
17 | awesome + awespome + spooner + mvouchercodes + chillaxing + cx + nin + loll + medium + 10pm | 708 | 0.0832953 |
170 | agree + avarice + ropey + consuming + nominations + agrees + strong + innit + absolutely + statement | 56 | 0.0065883 |
1700 | freud + speaking + brick + installation + clinic + forum + employment + 17729 + 978 + alltogether + benchtop + bloodflowrestriction + contributi + dedicatedday + depa + eidu + equalityadvocate + examinatio + forensiccollaboration + giversgain + hoses + isbn + perfectcombination + profitsble + skillsgap + stakeh + startles + thevolunteerexperience + unityrecovery + workforceplanning | 59 | 0.0069413 |
1701 | moms + kill + xml + tend + disorders + excuse + arsehole + heard + ˈtɛm + 1909 + aldub + beeing + compartmentalise + completeled + defer + esta + f6 + giveyourselfabreak + hinterland + m.adams + mian + noneth + petulance + piont + scurril + susu + susus + tempts + trəs + typi + ulti + vicarious + xhtml2 + youself | 132 | 0.0155296 |
1702 | conference + contentasaservice + goalsexpress + kenticocloud + students + hockey + cms + developer + aspiring + halls | 98 | 0.0115296 |
1703 | issue + puel + slash + opinion + people + arising + barber’s + dhami + everydayman + fostersson + handsomest + jatinder + langua + pris + threethree + transgress | 87 | 0.0102354 |
1704 | saha + campus + impro + ww1 + meeting + solutions + site + printing + forward + team | 83 | 0.0097648 |
1705 | wowser + pushti + raising + tune + cricketers + excited + antonio + launch + trad + conte | 105 | 0.0123531 |
1706 | smallbusiness + coring + fashioningacity + monnet + conference + governance + session + meeting + jean + supporting | 77 | 0.0090590 |
1707 | proudtobecalthropsno1fans + comic + team + treasureisland + launch + expectation + teamdmu + proudtobemore + donated + 4.20 + 97.3fm + airambulance + annotation + ardour + areweready + attendanceandpunctuality + benovelence + betula + castlemeadacademy + citiloaders + damged + ellxxtt + emira + expofcare + kohinoor + laundeprimaryschool + magi + mildmay + murugan + nationalbourbonday + northbynorthwich + overvi + patientsfirst + pendula + perumal + radio2funky + ridersfamily + rmjazzband + sanditoksvig + soulism + square’s + teamfestiveflorals + whitfield’s + wildabeast__ + yawncoffeeco | 81 | 0.0095295 |
1708 | aeo + vlog + check + creatives + video + radar + share + glen + raise + acribatic + aiethics + alison’s + artis + awesomefoursome + babysdayout + bambinos + boscombe + criminologycommunity + csi + debutradar + dontclang2019 + equalopportunities + estimat + fantasticfour + fenderprecision + findyourniche + fitgotreal + helpin + iop + itsyounotserato + kartar + knacke + marchbabies + millionmakers + nebulae + neurodiversity + neverendingsupport + niches + oldjrum + partridge’s + safespace + skydog + slt’s + talesfromthewilderness + tryingtobeabassplayer + twoteams + vipeventsxm | 92 | 0.0108237 |
1709 | assumi + launch + kickstarter + meeting + welcoming + scholarship + winner + students + showers + cohort | 107 | 0.0125884 |
171 | agree + totally + 100 + wholeheartedly + fay’s + lynwen + tripit + walts + percent + totaly | 81 | 0.0095295 |
1710 | 40m + uninspiring + killin + blah + statements + reasons + deny + 236b + afams + boniface + borno + carnets + cheerier + datetime + dgnb + epsteins + exageratting + famo + gael.conrad + internalisi + jpa + justifi + lemaitre + maiduguri + maybank + nigeri + occurre + offen + particulars + rhotic + whichev | 94 | 0.0110590 |
1711 | agree + tragedy + banjir + canai + destinies + differentials + emasculate + hijra + irregulars + mrs.potatohead + noticeab + pbuhing + shari + treacl + tuggi | 62 | 0.0072942 |
1712 | insān + nasiya + religious + sex + personal + mild + forecast + linked + advanc + argument.they + court’s + decam + dike + foxholes + franzen + hippocracy + labourout + polygamy + remoany + sadl + salafi + shittiness + snitty | 61 | 0.0071766 |
1713 | donating + bein + fits + enterprise + support + airquality + amcis + amcisconftwo018 + ardabmutiyaran + awarenes + barrell + charitybikebuild + conférence + diseas + donatebloodsavelife + greeninfrastructure + happyworlddayforchildren + japaneseanime + jenergyfitnessleicester + lightingdesignersinsilhouette + lleicester + loveladiesbusinessgroup + makesporteveryonesgame + mclindon + mercedes_amg + neurons + oliversean’s + oscarwildequotes + pm_valeting + powerljfting + raceforlifr + sssnakes + teamlancaster + teamyork + trainee’s + tts_earlyyears + twls + ukyouth | 61 | 0.0071766 |
1714 | peony + networking + opportunity + dale + event + exciting + 0101111 + 200im + 40oz + 9.45 + authorized + beattheodds + borough’s + bpk + chicksarecute + debuted + eurofantruestory + fanaticsteamwearcomingsoon + firearmssurrender + greasey + guidedogs + handsoffmyplate + housingfirst + jobsite + joshbaulf + june’s + laurenti + naionalspacecentre + newbabychicks + newsinglealert + postgraduates + resus + soundimage2018 + tabletalk + tmg + traineeconference + walescomiccon + wiwibloggs | 97 | 0.0114119 |
1715 | orchestral + sessions + students + interactive + languages + academics + innovative + project + build + 1keycrew + artinschool + changemakers + creativitymatters + darkon2021 + databases + efen + empowermusem + endangerin + finnie + fundingfair19 + futurecreatives + gatwacommunity + leadinginleicester + leture + liftengineering + m.p + nextrans + nursesweek2018 + radicalinclusion + registrars + sassi + step’with + tedium + thght + vocational | 73 | 0.0085884 |
1716 | religion + lefox + hating + properganda + feminists + sexuality + race + people + slag + country | 118 | 0.0138825 |
1717 | people + women + sexism + distasteful + comments + wives + guts + culture + religious + abudhabigp + annihilator + assaul + betters + bytes + colluded + dishonourable + etymology + forcedmarriage + fp3 + galv + gobbling + grandstandin + harpi + imwithkap + nevercorbyn + neverlabour + nore + oakshott + paraphrased + patchworkpals + poltiics + procuring + proudboys + replitians + spheres + statemet + swatika + ukpolitics + unfriend + unrepentant + venally + womad + wrongens | 144 | 0.0169414 |
1718 | donate + fundraising + raising + charity + event + congratulations + justgiving + team + graduate + student | 819 | 0.0963543 |
1719 | darragh + britishbasketball + expedition + o’connor + proud + anonymousnightclubleicester + aykcbourn + britney’s + bucssport + celebratesafely + getonthefloorlive + judgemeadowlove + matthewbourne13 + meetingprofs + meetingsshow + mikhail’s + mucha + robbie’s + sinceday + suerte + teesside + tenyearsofrrf + weeked + werehavingaball | 56 | 0.0065883 |
172 | makemyfriday + missguided + morning + calamari + himilayan + mongolian + perfecting + styled + 9,0 + prawn | 129 | 0.0151767 |
1720 | bsr + woodcut + justsponsored + today’s + students + dmuleicester + community + check + female + fundraising | 68 | 0.0080001 |
1721 | template + farndon + staybrave + exciting + caprice + deepthroat + ocr + scholarships + project + event | 176 | 0.0207062 |
1722 | gardenscapes + actioncoach + historians + meeting + orchestra + forward + adultwork.com + davidhuseobe + exitstrategies + gereation + growthspecialist + iwillweek + kasey + mcghee’s + mischiefmakers + neeo + paedsed + paedsrocks + railwaysafety + rupaul’s + safarnama + summerreadingchallenge + tfj_photography + trasecelebration2019 + uhls | 54 | 0.0063530 |
1723 | centres + conference + ordination + event + meeting + quickest + forward + forthcoming + leadership + litter | 77 | 0.0090590 |
1724 | iamawomanwho + dementia + vlog + business + forward + staff + planning + schools + becca’s + bookmarking + brickinthewall + ccaddyshakers + charlotta + clearing2018 + d.m + dianaf + dogdistroystoys + dyingmattersweek2019 + eastmidssios + elated + excitin + fmb + focuzed + foste + gujerati’s + gweme + hermitt + iasym19 + launchmyself + lomography + loroshospice + lurcher + m9ments + matinez + meifcelebratesuccess + micromasters + microsoft’s + mygateway + nested + ota’s + over:kensington + pds + rcnstudents + ribbo + sheron + streetcount + teenyoga + telescopic + thiepval + xboxseriesx | 97 | 0.0114119 |
1725 | prod + entertainers + freud + revision + conference + balanceforbetteriwd2019 + crystalharmeny + dmutalks + entrepreneu + euroapprentices + findingthegold + greatteamsachieveeverything + historyedexccel + incentivise + jameirahgroup + localresilience + mybody + nutritionandhydrationweeki + pearse + pnhcaconf18 + realse + reneeallaboutschoolcreativity + satellites + spaceports + wheatley + workperks | 58 | 0.0068236 |
1726 | students + launch + teacher + conference + science + learning + linkedin + session + partnership + kensington | 163 | 0.0191767 |
1727 | governed + country + somethin + historic + austerity + political + poverty + cannibas.the + cbbandrew + coue’d + crimina + dysphoria + falsification + heatal + legalization + madarchauds + passaris + specie + toiled | 65 | 0.0076472 |
1728 | débardeurs + pédés + ndigbo + jews + people + arresting + police + griezmann + countries + translation | 135 | 0.0158826 |
1729 | undocumented + bullyin + campaign’s + derecognise + erupt + incel’s + increasin + looter + narrato + nativeamerican + newsquiz + notor + occupa + perpetua + pilgrims + pref + prevarica + rightwing’s + risible + rmt + servative | 50 | 0.0058824 |
173 | pm + emergancy + lovely + bofors + created + kashmir + impose + ramadhan + 2 + super6 | 244 | 0.0287063 |
1730 | elected + labour + government + political + eu + brexit + people + party + tory + racist | 316 | 0.0371770 |
1731 | 35a + labour + assad + patriot + cosplay + democratic + establishment + political + voting + leader | 61 | 0.0071766 |
1732 | brexit + country + regime + poverty + afghanistan + tories + likes + stalking + tory + poor | 63 | 0.0074119 |
1733 | aresting + valand + islamophobic + proportions + rightful + somaliland + occupation + somalia + wether + ik | 71 | 0.0083531 |
1734 | establishment + anti + behaviour + politics + coalition + currency + laws + tories + bj + masses | 98 | 0.0115296 |
1735 | brexit + vote + eu + tories + amendment + conservatives + labour + surviving + customs + deal | 83 | 0.0097648 |
1736 | brexit + vote + lapdogs + cbi + deal + conservatives + amendment + tories + surviving + party | 62 | 0.0072942 |
1737 | labour + brexit + referendum + eu + conservative + iran + party + deal + tory + theresa | 107 | 0.0125884 |
1738 | brexit + labour + remain + referendum + vote + tories + parliament + tory + lied + voted | 202 | 0.0237650 |
174 | prize + awesome + stroking + andrew + scratching + scratches + yikes + strokes + fur + ears | 53 | 0.0062354 |
175 | ha + doo + aww + cute + ah + love + god + babe + baby + myoddballs | 1956 | 0.2301209 |
176 | mckenzie + archives + welterweight + 90s + boxing + tony + professional + british + light + champion | 75 | 0.0088237 |
177 | enormous + merry + advent + luck + talk + christmas + dust + jolly + magic + guys | 118 | 0.0138825 |
178 | fab + xxx + rbird + nowruz + rkid + xzx + kool + crackin + evolving + obv | 81 | 0.0095295 |
179 | evenin + yoh + idiya + bathoong + bravery + alwaya + blesins + fetlock + heifert + inorganic + lina + mentalite + nutshelling + thant + unmove | 148 | 0.0174120 |
18 | foodwaste + unitedkingdom + pret + bang + chicken + wrap + toastie + mustard + cracker + free | 124 | 0.0145884 |
180 | weekend + brill + lovely + follow + steve + garin + shihab + rick + barry + keith | 92 | 0.0108237 |
181 | brill + weekend + lovely + liam + daniel + simon + mike + stephen + jonathan + matthew | 77 | 0.0090590 |
182 | addasupervillainruinanything + cute + wow + hey + read + follow + cutehh + shek + villian + darkseid + xz | 78 | 0.0091766 |
183 | nope + pomes + budging + quickest + involve + piercing + guard + yup + perfectly + gunna | 54 | 0.0063530 |
184 | foodwaste + unitedkingdom + crayfish + ________________________________ + salads + online + sandwiches + free + baguettes + toasties | 141 | 0.0165885 |
185 | del + britain’s + whoop + info + luck + mornin + theory + pic + buddy + cheers | 427 | 0.0502360 |
186 | weekend + wonderful + lovely + hny + brill + xx + hope + day + karen + morning | 192 | 0.0225886 |
187 | weekend + keeping + brill + alls + hope + lovely + ty + wonderful + bud + paul | 94 | 0.0110590 |
188 | story + true + shush + scar + arya + peak + hazard + levels + pass + hush | 150 | 0.0176473 |
189 | ukjobs + crazy + assembly + contractors + easter + leicester’s + painting + central + idea + apprentice + performed | 82 | 0.0096472 |
19 | chance + awesome + tonic + foodwaste + unitedkingdom + ultra + gordon’s + alcohol + gin + gra | 230 | 0.0270592 |
190 | soverignty + mornin + immigration + concerns + brexit + fantastic + controls + borders + friday + tories | 114 | 0.0134120 |
191 | backwardistan + nigeria + buhari + disgusting + sick + president + makeup + gibbs + ghetto + imacelebrity | 169 | 0.0198826 |
192 | brill + weekend + lovely + claire + chris + alison + kenny + ken + 16yearsago + m’lovely + recommendable | 67 | 0.0078825 |
193 | mp + petition + theresa + sign + robinson + helen’s + voiceless + hon + tommy + sis | 138 | 0.0162355 |
194 | pin + chip + drinking + hoppy + ipa + celeia + corbel + whakatu + ale + porter | 60 | 0.0070589 |
195 | storytimeselfie + children’s + promote + helping + brill + challeng + bridal + sona + nims + bride | 53 | 0.0062354 |
196 | hny + weekend + lovely + brill + hope + goodluck + lynn + nanna + steve + angie | 101 | 0.0118825 |
197 | 24hoursinpolicecustody + weekend + lovely + brill + wonderful + hope + day + vpu + wanker + castrated + sain | 63 | 0.0074119 |
198 | leicestershire + smilesbygurms + clearbraces + invisalign + quickstraightteeth + braunstone + cosmetic + bonding + vue + whitening | 206 | 0.0242356 |
199 | crying + added + unlocked + unlock + fridayforty + tap + rush + tickets + entered + performances | 87 | 0.0102354 |
2 | snooker + mmandmp_pro + shoot + photos + eighteen + thousand | 113 | 0.0132943 |
20 | cheddar + mood + pickle + foodwaste + unitedkingdom + posh + baguette + pret + free + moody | 142 | 0.0167061 |
200 | askadamsaleh + silk + embroidered + bags + luxurious + dupattas + beautiful + clutch + luxury + raw | 106 | 0.0124708 |
201 | xx + xxx + awesome + oooh + wow + fab + super + babe + gorgeous + brilliant | 183 | 0.0215297 |
202 | prize + mentalhealthishealth + highland + illness + romance + prizes + scotch + secrets + rocks + perfect | 117 | 0.0137649 |
203 | addisu + thankyou.lins + honourable + kiran + curriculum + sir + gentleman + praise + neil + purpose | 78 | 0.0091766 |
204 | louder + everythi + achieved + supported + people + celebrating + involved + pls + cafss + fuddus | 58 | 0.0068236 |
205 | amendment + weekend + surviving + loses + cent + 70 + custom + lords + union + lovely | 55 | 0.0064707 |
206 | foodwaste + unitedkingdom + free + chicken + pret + baguette + protein + salmon + avo + salad | 275 | 0.0323534 |
207 | foodwaste + unitedkingdom + bacon + free + baguettes + caesar + chicken + olives + tomatoes + avocado | 51 | 0.0060001 |
208 | brill + weekend + hiring + projectmgmt + o2jobs + england + lovely + fit + job + retail | 228 | 0.0268239 |
209 | weekend + lovely + wonderful + brill + xx + hope + heike + caitlin + christine + gilbert | 410 | 0.0482360 |
21 | hotline + samaritans + night + xx + paste + someo + suicide + cheddar + pickle + baguette | 132 | 0.0155296 |
210 | ty + keeping + hope + alls + tricia + lui + lov + lovel + jody + morning | 54 | 0.0063530 |
211 | blackevent + enhanced + contributions + accessories + deposit + landrover + 20 + jaguar + lipless + 15 | 66 | 0.0077648 |
212 | mixture + blindfold + widows + bled + mouldy + pillocks + pish + tbqh + bit + duh | 78 | 0.0091766 |
213 | sweetie + pic + gorgeous + pics + beautiful + setter + stunning + beaut + stunnin + love | 58 | 0.0068236 |
214 | furtherreductionsshop + stor + morning + goodmorning + xx + sale + online + xxx + darling + gorgeous | 66 | 0.0077648 |
215 | bendybus + feellikeakid + bendy + weriseagain + coops + robbo + fastest + recommendation + striker + slice | 77 | 0.0090590 |
216 | xxx + count + queer + gentleman + masters + degree + completed + ladies + performance + xx | 62 | 0.0072942 |
217 | inspirationnation + ronnell + amar + retweet + appreciated + love + positivity + ammal + bjm + inspirsationnation + mevlida + unreciprocated + zerotollerance | 66 | 0.0077648 |
218 | giveaway + fantastic + awesome + shoeoftheweek + lovely + brilliant + competition + guys + raffle + win | 52 | 0.0061177 |
219 | wow + disgusting + wowzers + awesome + embarrassing + fab + aphrodisiac + owsome + wamhat + disgraceful | 68 | 0.0080001 |
22 | guys + upgrade + beats + chest + treat + sir + bitch + heart + mum + fuck | 238 | 0.0280004 |
220 | dm’d + posted + kfc + photo + pm’d + coast + restaurant + restaurants + onetakechallenge + peperz + ripburger + shallowgrave + zx’s | 86 | 0.0101178 |
221 | thebeardedrapscallion + maintainmagnificence + beardproducts + beardbalm + beardoil + magnificence + rapscallions + beard + beardcare + beards | 62 | 0.0072942 |
222 | fitty + darshan + trust + hell + monkey + cheeky + recycl + sells + bloody + davis | 114 | 0.0134120 |
223 | inspirationnation + rl + love + retweet + appreciated + eric + christina + youve + follow + julie | 62 | 0.0072942 |
224 | waits + mutes + insert + problematic + not + casquette + improver + nimh + saod + sickdeep + splurts + squeaking + tters + twittersh + vassels + wryly | 128 | 0.0150590 |
225 | prize + alignment + regulatory + win + shock + default + agreement + awesome + customs + phase | 176 | 0.0207062 |
226 | thankyou + follow + xx + xxx + sharing + nurse + colleagues + zee + sammy + highlighting | 69 | 0.0081178 |
227 | mmandmp_pro + premierleague + premier + bradgate + finish + league + weekend + lovely + queen + win | 102 | 0.0120002 |
228 | grant + pop + dm + disappointment + caused + deets + sorted + tania + delay + customer | 117 | 0.0137649 |
229 | severed + zarb + unionised + heil + disregard + prague + accidental + rethink + unsee + scousers + throne | 57 | 0.0067060 |
23 | pride + victoriapark + leicesterpride + lgbtq + lgbt + parade + fireandrescue + joorton + emh + foxespride + jaycockshort + leicesyerfireandrescue + lgbtcentre + lgbtmelton + missie + nickicollins + rorypalmer + socialistparty + stjohn + transliiving + youarepride | 56 | 0.0065883 |
230 | wink + caribbeans + swaminarayan + percent + shree + girlfriends + ffs + bidded + bignosed + chatsh + coram + dearmetenyearsago + did’nt + edgeley + flocons + granville + hatefuck + high15 + igy + intaking + leer + martinique + nodss + nomoretweetingforme + puricia + shaan + t’is + tgetbanged + toiletry + toothpicky + transiti + unlungu + usury + zonefacelift | 346 | 0.0407065 |
231 | yawn + whispers + pineapple + likier + saynotobergs + tireder + ashlawn + citations + doffs + litfic + ody + polishes + pore + tiph | 95 | 0.0111766 |
232 | 2556161 + unreal + buffet + iftar + forreal + 10pm + 6pm + real + details + sixteen | 73 | 0.0085884 |
233 | revitalusmartcaps + happyucoffee + revitalu + revitalubrew + revitalucoffee + revital + revitaluworks + luck + revitalusamples + revitaluweightloss | 62 | 0.0072942 |
234 | 12daysofjones + 24rs + headfuck + isatim + battleofwinterfell + stressed + unbelievable + alcacer + hermione + breakingbad + gameofthronesseason8 + gaucho | 61 | 0.0071766 |
235 | size + image + edition + limited + adamas + craigalanart_ + kamp + x24 + x30 + x34 | 55 | 0.0064707 |
236 | getpaid + mnfst + influencer + graffitiart + urbanart + bringthepaint + download + graffiti + app + 1up | 82 | 0.0096472 |
237 | minibikers + learntocycle + balanceability + cycling + cudabikes + toddler + learntoride + bike + independently + riding | 70 | 0.0082354 |
238 | freelancephotographer + autosport + mistress + thankyou + average + eighteen + thousand + nurse + tenkyou + whebyou | 50 | 0.0058824 |
239 | goam + motorcycle + ronaldo + caption + mash + ninety + charityevent + drinking + catchment + god | 157 | 0.0184708 |
24 | printe + ezprint + uv + vertical + world’s + printed + directly + 3d + 10gb + walls | 62 | 0.0072942 |
240 | 𝚝𝚘 + 𝚐𝚘𝚘𝚍 + 𝘐 + 𝘵𝘩𝘦 + 𝚝𝚑𝚎 + 𝕩 + 𝘺𝘰𝘶 + sprinkles + fairy + 𝚊 + 𝘢 + 𝗮 + 𝗔𝗚𝗥𝗘𝗘 + alleyways + 𝚊𝚕𝚠𝚊𝚢𝚜 + 𝕒𝕟𝕕 + 𝒂𝒔𝒌𝒊𝒏𝒈 + 𝕓𝕖 + 𝘣𝘦𝘤𝘢𝘮𝘦 + 𝑪𝒂𝒃𝒂𝒓𝒆𝒕 + 𝑪𝒉𝒓𝒊𝒔𝒕𝒎𝒂𝒔 + 𝚌𝚘𝚖𝚎 + 𝗖𝗢𝗠𝗠𝗘𝗡𝗧𝗦 + 𝚍𝚊𝚢 + 𝚍𝚘 + 𝕕𝕠𝕟’𝕥 + 𝒇𝒐𝒓 + 𝘧𝘰𝘳 + glassesgirl + 𝘨𝘰𝘭𝘧𝘦𝘳𝘴 + 𝒉𝒆𝒍𝒑 + 𝕀’𝕞 + 𝗜𝗙 + 𝗜𝗡 + 𝒊𝒔 + 𝚕𝚒𝚔𝚎 + 𝗹𝗼𝘃𝗲 + 𝘮𝘪𝘴𝘴 + newbalence + 𝘯𝘪𝘨𝘩𝘵 + 𝘯𝘰𝘵 + 𝕠𝕟𝕖 + 𝘱𝘳𝘰 + 𝗧𝗛𝗘 + 𝑻𝒉𝒊𝒔 + 𝘵𝘰 + 𝗧𝗬𝗣𝗘 + 𝘞𝘦 + 𝒘𝒆’𝒓𝒆 + 𝗬𝗘𝗦 + 𝗬𝗢𝗨 + 𝕪𝕠𝕦’𝕝𝕝 + 𝒚𝒐𝒖𝒓 | 57 | 0.0067060 |
241 | nims + boutique + ___________________________ + _______________________________ + jewellery + ____________________________ + ____________________________________________ + luxurybagschoose + ______________________________ + mukhtar_rehman_hairstylist + thanky | 71 | 0.0083531 |
242 | zip + apply + click + mornin + address + engineer + hiring + england + manufacturing + job | 114 | 0.0134120 |
243 | britishbasketball + readin + mens + riders + challenge + 2date + book + read + cheerleaders + mate | 60 | 0.0070589 |
244 | get_repost + repost + asian_celebrations_bridal_show + kanizali + nims + jewellery + boutique + exhibiting + morningside + arena | 128 | 0.0150590 |
245 | mornin + im + rainin + monday + thepond + washin + ive + mite + yep + shorts | 177 | 0.0208238 |
246 | mornin + coffee + ave + souds + drinkin + fluids + 5.30am + plenty + gud + warm | 51 | 0.0060001 |
247 | competition + brilliant + chance + literally + ass + guys + allovasoden + ashdknsbwj + flatlined + guysksksks + lemek + pussoir + slicks + thingspeoplesaythatannoyme | 142 | 0.0167061 |
248 | smitten + hunny + angeline + postpartum + rayven + tbff + farther + psychosis + charity’s + greysanatomy | 54 | 0.0063530 |
249 | fuck + crumb + single + fucking + soulei + goal + gerard + veins + sip + puff | 248 | 0.0291769 |
25 | sigh + rewardsforgood + betterpoints + miles + hundredths + rewarded + earned + vintageglamourinspired + hema + bollywood | 96 | 0.0112943 |
250 | gym + strong + leg + training + abs + nffc + stronger + bro + body + session | 498 | 0.0585891 |
251 | boxer + kelton + boxing + fitness + boxercise4health + workouts + professional + mckenzie + workout + active | 3727 | 0.4384768 |
252 | prize + shucks + dead + wow + aw + giveaway + fantastic + fab + crawling + lovely | 79 | 0.0092942 |
253 | fucking + preferential + hell + fuckin + hiring + treatment + eu + recommend + push + wake | 382 | 0.0449418 |
254 | thankyou + gripping + lifting + spy + rocket + pocket + holy + eyes + bernies + bizz + carayol + flujab + npqh + phily + rammoed + righteo + spotkicks | 130 | 0.0152943 |
255 | lt + 3 + 33 + 333 + xd + chelle + k0n + lurv + taytay + yeen + yoon | 73 | 0.0085884 |
256 | shift + overseas + sleep + peaceful + night + restfully + peacefully + restful + goodnight + wishing | 57 | 0.0067060 |
257 | skating + ice + dancing + skaters + dancingonice + stars + freebiefriday + birthday + tour + partners | 61 | 0.0071766 |
258 | gt + lt + friends + girls + sex + cte + knowing + energy + smalling + babes | 796 | 0.0936484 |
259 | gt + lt + 3 + agenda + 333 + amplified + kjv + halloumi + dogs + attire | 188 | 0.0221180 |
26 | dear + painting + contact + breakfast + downstairs + priorities + kiss + charity + update + public | 58 | 0.0068236 |
260 | playwhatami + gdagarwal + ganga + detailed + supported + mother + hey + film + heyy + proj + projec | 127 | 0.0149414 |
261 | amazing + amstelgoldrace + mammamiaherewegoagain + liveve + jhb + mammamia2 + shots + goal + player + victory | 51 | 0.0060001 |
262 | sigh + laughs + hugs + shakes + insert + sighs + mutes + grunt + deletes + waves | 336 | 0.0395300 |
263 | excuse + betrayal + shocking + british + coloursphotography + scienceandfaith + 1901 + cocktails + entr + thescriptfamily | 154 | 0.0181179 |
264 | nimsboutique + pajamisuit + guilty + enormous + pajami + forvthe + lt + thumbs + readymade + navy | 149 | 0.0175297 |
265 | mng + inktober + kingdom + united + slobbering + inktober2018 + foxes + illustration + shararas + lcfcfamily | 102 | 0.0120002 |
266 | fuck + sake + ffs + imouttahere + tykes + fucks + tarkowski + allan + desktop + shucks | 64 | 0.0075295 |
267 | lesserknownkindsofwars + bbcradioleicester + leiche + winners + pro + cup + app + beat + war + final | 73 | 0.0085884 |
268 | race + winner + congratulations + lmdctour + guided + timepm + pro + app + champions + sixth | 81 | 0.0095295 |
269 | awesome + kev + cheers + brilliant + cool + mate + inspirationnation + nice + spot + call | 556 | 0.0654127 |
27 | planted + bombs + sigh + damage + followers + plane + bud + sexy + words + weekend | 54 | 0.0063530 |
270 | brill + weekend + ta + bud + hope + mick + lovely + ty + good’un + alan | 98 | 0.0115296 |
271 | nice + redolent + sexy + cool + coil + ukspace2019 + yorkshireman + naughty + jody + respectfully | 50 | 0.0058824 |
272 | honey + um + babe + love + kiss + xx + xxx + pies + dear + darling | 100 | 0.0117649 |
273 | grow + word + goldfinger + idf + killers + engcro + wait + child + ricky + defending | 56 | 0.0065883 |
274 | surveys + retweeting + gove + pro + imply + immigration + academics + tryin + eu + subsidy | 50 | 0.0058824 |
275 | humberstone + heights + golf + hole + par + club + holes + eighty + tee + logantrophy | 65 | 0.0076472 |
276 | count + bro + xx + padawan + कोटी + love + broski + kilda + theworldgonemad + usharp + आपको | 156 | 0.0183532 |
277 | queer + fashanu + hoison + innersoles + mickelson + sidas + दिल + से + venda + hella | 107 | 0.0125884 |
278 | mad + shot + quality + dude + arsenal + class + 13reasonswhys2 + criming + lmpocibal + mcmbirmingham + memorys + superbikes + topiary | 177 | 0.0208238 |
279 | count + sir + ma’am + wow + awesome + nice + hamper + xx + comp + fantastic | 92 | 0.0108237 |
28 | endomondo + endorphins + hundredths + miles + walking + null + sixty + running + seventy + pret | 164 | 0.0192944 |
280 | oooh + ooh + prize + xxx + xx + lovely + fab + fantastic + treat + p___y + pizzagate | 64 | 0.0075295 |
281 | question + questions + answer + stupid + rhetorical + answering + askip + evading + hembrassing + interesing + noanswers + qohoo + questionsoftheday | 111 | 0.0130590 |
282 | snooker + size + shoot + eighteen + photos + thousand + ten + waist + sizes + medium | 72 | 0.0084707 |
283 | black + white + partridge + jobs + pear + assistant + 3 + 2 + 1 + tree | 52 | 0.0061177 |
284 | win + love + oooh + wow + xx + prize + nephews + xxx + copy + nieces | 380 | 0.0447065 |
285 | disgrace + amendments + lords + amazing + disgraceful + cricketaustralia + houseoflords + medicalscience + tarnation + spongers | 73 | 0.0085884 |
286 | prize + fab + xxx + count + xx + prizes + guys + swanage + awesome + lovely | 89 | 0.0104707 |
287 | harrystyles + iheartawards + bestsolobreakout + sweet + voting + playing + rt + vote + signofthetimes + bestmusicvideo | 65 | 0.0076472 |
288 | leiscester + mng + swami + ji + detailed + ganga + kingdom + united + shooting + documentary | 61 | 0.0071766 |
289 | fuming + honest + caprison + mixitup + nigeil + literally + twits + honestly + fini + wavelength | 89 | 0.0104707 |
29 | endomondo + endorphins + cycling + hundredths + miles + finished + 1h + null + 34m + fifty | 77 | 0.0090590 |
290 | zim + oohnice + pdl + 5’7 + laughing + bathong + yoh + loveisland + fell + gyal | 466 | 0.0548243 |
291 | parents + listening + cheers + coming + majors + doggo + sorted + 18years + belway + cattitude + goners + panicisonherway + parentingtips + parentsforfuture + pboro + raga + resourse | 257 | 0.0302357 |
292 | duterte + philippines + rodrigo + stopthekillings + 7.30pm + endimpunity + insanity + leisure + stopkillingfarmers + braunstone | 165 | 0.0194120 |
293 | percent + 100 + agree + respect + 90 + 10000 + messi’s + similarity + 110 + true | 155 | 0.0182356 |
294 | keepyourfeethappy + thehappyfootclinic + healthycuticles + healthynails + happynails + scentedcuticleoil + birthday + keepyournailspretty + happy + cuticleoils | 75 | 0.0088237 |
295 | xx + xxx + babe + hun + jude + lovely + roar + hunny + cootie + lovelybx + patootie + shantell + zeibun + zlegro | 125 | 0.0147061 |
296 | xx + xxx + darling + lovely + lolli + xxxyou + lady + xoxo + rehana + saru | 67 | 0.0078825 |
297 | run + park + graduated + 10k + graduation + commute + fastest + graduationceremony + justgraduated + graduate | 193 | 0.0227062 |
298 | weekend + lovely + playwhatami + brill + teenchoice + rebrand + xx + mee + lynn + ministers | 193 | 0.0227062 |
299 | thankyou + thankyouu + sima + tomeka + beaut + leah + bestfriend + smile + diamond + doll | 52 | 0.0061177 |
3 | aigust + pride + leicesterpride + lgbtq + victoria + nineteen + kingdom + park + thirty + united | 1423 | 0.1674141 |
30 | endomondo + endorphins + 1h + km + hundredths + 2h + finished + running + miles + twenty | 92 | 0.0108237 |
300 | gugs + prin + rhi + nas + sand + ash + lover + hide + neil + boo | 69 | 0.0081178 |
301 | nice + angelface + matkins + bronya + ilysm + babyy + babe + cindy + maeve + baby | 52 | 0.0061177 |
302 | morning + frosty + bud + sacked + waking + mist + mate + lee + fave + shopup + sweehar + yedb + yesbelmond | 177 | 0.0208238 |
303 | honey + xxx + xx + wow + coverdrives + lamble + pusheen + birdfair + mirror + hehehehe | 61 | 0.0071766 |
304 | morning + sexy + horny + xx + babe + um + y’all + gorgeous + britain + tasty | 122 | 0.0143531 |
305 | earlycrew + mornin + prize + fab + beatsx + voxixphones + xs + earphones + competition + wireless | 66 | 0.0077648 |
306 | wait + pause + aguer + tirednhsstaff + psh + huh + samatta + backflip + siding + aew + pencho | 117 | 0.0137649 |
307 | wimbledon + djokovic + frenchopen + ausopen + tennis + 6 + rg18 + nadal + quarterfinals + federer | 212 | 0.0249415 |
308 | bin + morning + legend + portillo + adam’s + brexiteers + trash + michael + garbage + theresa | 225 | 0.0264710 |
309 | awesome + worries + kev + cheers + nicola + downloaded + piece + brilliant + engagingly + medialens + ngiright + step’s | 142 | 0.0167061 |
31 | endomondo + endorphins + hundredths + null + miles + finished + running + 1h + km + 46m | 114 | 0.0134120 |
310 | retweet + sign + plz + thankyou + abhinandancomingback + apologizetoanexin4words + butimfascinatedbylugovoiandkovtun + climatejustice + eki + idontknowaboutyou + imrankhanprimeminister + litvinenko + oliverhardy | 62 | 0.0072942 |
311 | cannibals + clowns + grandad + taste + casualty + miss + corrie + eat + jonnie + collarbone | 162 | 0.0190591 |
312 | sweetie + decieving + stunning + theresa + customs + union + plans + british + leave + uwcb | 63 | 0.0074119 |
313 | babe + um + darling + gorgeous + honey + horny + anytime + sexy + mm + bum | 121 | 0.0142355 |
314 | babe + darling + um + gorgeous + horny + honey + sexy + bum + lips + nice | 212 | 0.0249415 |
315 | kadiri + launderette + kadiri_news + highfields + evington + news + kadirinews + slush + kadiri_newsagents + sweets | 209 | 0.0245886 |
316 | hh + sven + tanning + welling + lotion + lawrence + jackson + ty + rainbow + shock | 56 | 0.0065883 |
317 | prayers + leonie + thinking + isla + xxx + alex + aww + sending + family + marley | 144 | 0.0169414 |
318 | fantastic + wonderful + superb + efcfamily + wondurfull + outstanding + illustration + brave + stunning + excellent | 72 | 0.0084707 |
319 | sweetie + gorgeous + stunning + pic + wow + pics + tormentor + torment + grandad’s + discharged | 111 | 0.0130590 |
32 | prize + geordiemarv + autumnequinox + lou + inspire + price + cricket + fantastic + mum + awesome | 133 | 0.0156473 |
320 | kingdom + united + vince + deadlifts + golf + amagraduate + ballestero + beingextra + caddyshackersleicester + catspring + fauxleather + gibbstaa + hollins + jellylegs + kirstyblackwellphotography + loughboroughtoleicester + makingitcount + orwell1984 + sargent + sevvy + zaramen | 77 | 0.0090590 |
321 | dearest + morning + jai + bhai + har + bless + sister + shree + mahadev + family | 404 | 0.0475301 |
322 | birthday + enjoy + happy + bhai + sweetie + sis + love + roommates + lovely + shree | 387 | 0.0455301 |
323 | cringe + ustaad + lord + congratulations + bowing + shree + ayoze + jai + krishna + sacred | 58 | 0.0068236 |
324 | whowantstobeamillionaire + stutter + congratulations + wwtbam + askthehost + friands + nissy + phosphorus + screeaming + whowantstobamillionaire | 65 | 0.0076472 |
325 | win + rocknroll + twitter + bartoli + blackdog + land.thats + lestar + penitentiary + sojealous + soyas + vitesse + wideawakeclub | 111 | 0.0130590 |
326 | yummy + hm + tasty + mmm + yum + yummyness + overt + stews + hmm + gingers + injected | 51 | 0.0060001 |
327 | birthday + happy + holi + wishing + decode + mayday2019 + nephi + bandi + saffy + shor | 145 | 0.0170591 |
328 | birthday + happy + mkbsd + wrongs + mom + wishes | 55 | 0.0064707 |
329 | ___ + ____ + morning + sheets + cornstarch + decomposable + faxing + therer + hugs + adc + epma + insipid + pairings | 90 | 0.0105884 |
33 | yougov + poll | 68 | 0.0080001 |
330 | league + arsenal + penalty + wenger + utd + 0 + season + concede + keeper + salah | 139 | 0.0163532 |
331 | hugs + sending + xx + hug + xxx + vibes + wishes + teletubbies + positive + virtual | 101 | 0.0118825 |
332 | sportpsychology + alphabet + reinvestment + tekkers + thurmaston + gym + precision + prestige + kingdom + eid | 65 | 0.0076472 |
333 | laughing + loud + people + girls + guess + fuck + ffs + wrong + shit + stop | 5701 | 0.6707154 |
334 | goal + teamclaret + crosses + row + midtableatbest + olbromski + 1 + 9️⃣ + badam + trick | 60 | 0.0070589 |
335 | awesome + boobs + skinny + meme + jeans + elite + town + damn + super + guys | 61 | 0.0071766 |
336 | mammy + ah + tae + ma + heer + onna + mebbe + um + wee + hee | 126 | 0.0148237 |
337 | mood + nims + boutique + thread + breathes + brain + current + rasier + lucy + year’s | 544 | 0.0640009 |
338 | mood + sooner + fat + current + page + merrier + storms + mj + 1000 + backwards | 54 | 0.0063530 |
339 | news + excellent + oneofourown + coys + breaking + reroute + rivally + talkshit + endeavor + vtid | 79 | 0.0092942 |
34 | snooker + eighteen + thousand + shoot + photos | 130 | 0.0152943 |
340 | thankyou + iman + doll + babe + hon + elizaa + honny + irem + kimnamjoon + kimseokjin + mandu + minyoongi + nanni + salma + thaanks | 100 | 0.0117649 |
341 | lvl + follow + lashlift + lash + thebeautyhavenleics + instalashes + nouveaulvl + lift + lvllashes + naturallashes + nouveaulashes | 82 | 0.0096472 |
342 | sweetie + cheers + nudge + decent + morning + blathereens + hainan + kickborisout + nufsaid + slitheens + tomora + tottey | 180 | 0.0211768 |
343 | ps4 + xbox + bf3 + hemdog + mw3 + competition + xboxone + giveaway + wicked + nintendoswitch | 79 | 0.0092942 |
344 | fuck + poll + fock + fockoff + frack + shitshow + transferable + serpent + pencils + romania | 52 | 0.0061177 |
345 | hell + beautiful + fucking + stunning + gorgeous + waoow + contrarian + fuckinhell + impressively + mandir | 55 | 0.0064707 |
346 | laughing + loud + funny + ass + imagine + laugh + fucking + literally + haha + mate | 8672 | 1.0202497 |
347 | pride + leicesterpride + lcfc + fvh2019 + leicry + rainbow + lgbt + flag + chair + tune | 109 | 0.0128237 |
348 | word + hands + lustrino + sonido + truth + amen + compensated + fives + grigg + leifle + ruben | 61 | 0.0071766 |
349 | classy + bigstarsbiggerstar + doddie + mooncups + rhyce + supafly + invaders + mnd + bwfc + jpn | 61 | 0.0071766 |
35 | thebritishbasketballallstars + nite + basketball + amen + stars + brewdog + seventeen + british + sweetie + rouge | 146 | 0.0171767 |
350 | congratulations + congrats + clap + rl + quality + yey + goal + team + luck + effort | 373 | 0.0438830 |
351 | drinking + boar + wetherspoon + ale + beer + stout + plantagenet + porter + camra + humberstone | 334 | 0.0392947 |
352 | drinking + stout + bitter + sour + pale + porter + photo + ipa + beer + fruity | 50 | 0.0058824 |
353 | drinking + ale + ipa + stout + pale + porter + photo + abstrakt + jackpin + refreshing | 257 | 0.0302357 |
354 | goam + spain + motorcycle + topman + king + congrats + mate + luck + god + bud | 720 | 0.0847071 |
355 | miniature + fimo + guineapigs + guineapig + miniatures + guinea + pets + pigs + cute + pig | 54 | 0.0063530 |
356 | bella + woo + saluti + wit + birthday + happy + mornin + anniversary + whoop + geetz + salutibella | 73 | 0.0085884 |
357 | whoop + bella + saluti + whoopee + 2p + copypasta + pit + kelly + crisis + ave | 93 | 0.0109413 |
358 | veins + inject + crying + kcvslar + directly + oui + tears + annas + callejon + capitano + croix + crossaints + noght | 55 | 0.0064707 |
359 | weekend + lovely + brill + wonderful + sherlock + morning + andrew + christofer + bud + shit | 111 | 0.0130590 |
36 | darshan + today’s + yesterday’s + inlaws + pakistan’s + generosity + camrgb + 3eh’s + bhud + dipti + freestone + humbostem + imparts + notdrunk + partha + pujari + putfootballinafilm + say’zindagi + suryanamskar + swastikas + unibond + younge | 381 | 0.0448242 |
360 | rt + thankyou + film + thabks + rts + retweets + appreciated + assworship + follwing + sominatrix + stockinga + thabkyou + thankyouhoseok + thankyoukeep | 102 | 0.0120002 |
361 | dancing + creampuffs + signing + epic + april2018 + clexacon2018 + fetchyourlife + omgomgomgomgomg + ukcreampuff + wallis | 82 | 0.0096472 |
362 | bro + mate + congrats + luck + congratulations + cheers + legend + birthday + topman + happy | 11955 | 1.4064904 |
363 | treacle + sukki + pebbles + chilled + xxx + blackcat + chilling + nylah + xx + cute | 107 | 0.0125884 |
364 | 0to100returns + fantastic + lit + representing + 0toone00returns + derful + labourbellend + takingthepisstuesday + catch + rave | 73 | 0.0085884 |
365 | weekend + lovely + hasan + nadeem + wonderful + salman + noah + eep + soumya + arberora + leeyah + zurich | 56 | 0.0065883 |
366 | immense + alltogethernow + epic + plz + awesome + comments + incredible + till + creampuffs + late | 192 | 0.0225886 |
367 | drinking + scrumtogether + joinjeff + pale + rbs + cash + xmastreats + prize + 2556161 + winners | 138 | 0.0162355 |
368 | hä + tictok + demarcus + beef + robyn + hus + florida + arsh + bitrude + chocofeather + eposed + giddem + goodpie + goujons + grany + innocently + juntao + nakeeb + namiko + narrtwess + néze + officechat + shhurupp + sidwell + stinkin + videocredit + zabee | 127 | 0.0149414 |
369 | snout + mummy + gut + cow + gonna + suck + cunts + speed + grown + basirat + bubby + paapi + problemz + twodoorsdown + udders + ungreatful + whxhsnxb | 77 | 0.0090590 |
37 | cfsfurniture + antique + 107.5fm + unod + contest + tunein + smartphones + french + gmt + lar | 59 | 0.0069413 |
370 | amea + demarcus + nana + winnin + wallahi + uploads + arlo + boo + mum + siri | 151 | 0.0177650 |
371 | online + jewellery + code + delivery + gift + 6pm + christmas + nims + twelve + boutique | 100 | 0.0117649 |
372 | o2jobs + savoy + choosing + bags + jewellery + range + evergoldbeauty + pastry + piping + bakery | 65 | 0.0076472 |
373 | luf + shaga + brownies + ding + beatin + gymking + muntari + starhmzi + tecs + arguing | 59 | 0.0069413 |
374 | ket + laughing + loud + girl + bitch + guy + words + gonna + fuck + shut | 3335 | 0.3923585 |
375 | waiting + chori + aur + karo + bas + kay + ki + patiently + actives + akhhbsnoh + banayee + beguman + behter + bevkufo + bhabi + bhagya + bhi + bkre + bukkake + choro + cina + dakoo + ffifa19 + gainwithtrevor + gfro + gushing + hmly + hoty + huwee + ihc + jata + jiysee + jori + kaha + kaltay + khaney + laey + lagal + larkay + leaue + mahlay + mazakh + mjh + nabe + nahe + nisar + oookimm + paise + phir + pizzay + salo + sangawi + shakal + she3re + steveweisers + suno + trapadrive + uperse + wileyfox + wirelessfestivallineup | 53 | 0.0062354 |
376 | rts + unboxing + video + samsung + unboxingtime + supersafstyle + appreciated + galaxy + igtv + s9 | 86 | 0.0101178 |
377 | birthday + congrats + happy + congratulations + whoop + party + acprc + babbyy + colclough + grandnational2018 + grandsonno2 + imagane + railroad + runor + ygs + yhats | 179 | 0.0210591 |
378 | birthday + happy + xx + anniversary + xxx + bday + bro + pride + lanky + xo | 421 | 0.0495301 |
379 | cheers + geoff + fella + dude + birthday + accabusters + darbo + subscribeormissout + sxy + gurn + shinj | 73 | 0.0085884 |
38 | woo + wit + projectmgmt + extremism + recommend + advertising + scrim + wing + england + hiring | 64 | 0.0075295 |
380 | shut + hell + nope + true + fuck + ye + yeah + shutup + satnavtotheclub + nah | 140 | 0.0164708 |
381 | moose + pig + necklaces + earrings + tikkas + royal + tigers + collection + tigersfamily + velvet | 261 | 0.0307063 |
382 | hours + boi + sad + nigga + asthetics + jeremih + lonely + shut + veins + cud + sizes | 50 | 0.0058824 |
383 | royalwedding + royalwedding2018 + wedding + meet + valentine + royalfamily + nice + weddings + lovely + royalweddingday | 183 | 0.0215297 |
384 | competition + wow + screenwriter + yoy + adapt + animation + accom + follower + urge + respond | 75 | 0.0088237 |
385 | followers + reach + helping + chance + hundred + outstanding + ten + literally + halfway + past | 54 | 0.0063530 |
386 | retweet + sharing + nims + boutique + rt + caring + xx + reminding + advice + roomies | 111 | 0.0130590 |
387 | posted + kingdom + aces + united + video + upcoming + colleagues + conference + international + globe | 118 | 0.0138825 |
388 | prayers + recipe + nothin + tasty + tenerife + jamies + moongh + watchinginthepub + anjay + nuer + onggi | 53 | 0.0062354 |
389 | fair + fuck + ffs + true + valid + piss + bang + lie + spot + conditions | 165 | 0.0194120 |
39 | paintingcontractors + eastmidlands + links + gererals + contractors + princes + spies + adoption + protests + painting | 86 | 0.0101178 |
390 | fuck + ha + yeah + tlof + moggy + guy + 7️⃣ + bayfield + clairvoyant + cout + ellas + geert + lg’s + maracana + mathanda + mthande + prewarned + ramazan + rimmo + spursday + taqqiya + today.brilliant + wiggo + witherspoon’s | 336 | 0.0395300 |
391 | congratulations + thumbs + rt + congrats + fabulous + mornin + sunday + happy + absolutely + win | 131 | 0.0154120 |
392 | luck + rugbyinheaven + alevelresultsday2018 + coyks + forvalour + ipswichballer + itsboomtime + mindbuilder + onceagooneralwaysagooner + womeninmedicine | 83 | 0.0097648 |
393 | goodnight + night + bud + chotu + gnight + hugsfornav + mataji + rashad + speedyrecovery + yeeh | 83 | 0.0097648 |
394 | goodnight + night + xx + xxx + dreams + sleep + sweet + nighty + n’night + wishing | 130 | 0.0152943 |
395 | yummy + yum + luck + yumyum + goodluck + yumy + banana + peppasecretsurprise + dosas + eurghh + hala_madrid + mjk + swail + yumminess | 162 | 0.0190591 |
396 | luck + birthday + 28yrs + shaka + happy + sham + scorpio + mee + franchise + venture | 62 | 0.0072942 |
397 | mi + nuh + dem + di + yuh + fi + ah + mek + seh + inna | 259 | 0.0304710 |
398 | agree + vitty + deader + happened + mls + veteran + prouder + clocks + nicer + bangers | 52 | 0.0061177 |
399 | hows + evenin + afternoon + hey + tuk + alrite + blees + bhai + dearest + sister | 134 | 0.0157649 |
4 | mtkitty + cat + may2018 + cosplayers + mcmcomiccon + kitty + iphone + gifs + prize + eleven | 67 | 0.0078825 |
40 | demestic + property’s + contractors + commercial + painting + cucumber + tuna + mayo + emerson + links | 66 | 0.0077648 |
400 | hows + evenin + hey + morning + coping + feeling + britsliampayne + how’re + salamz + buddy | 546 | 0.0642362 |
401 | cheers + birthday + happy + wood + mornin + tavern + bud + pour + lee + cuddles | 93 | 0.0109413 |
402 | lies + madness + liar + amazing + scenes + staysin2018 + bolero + tranquil + incredible + craziness | 56 | 0.0065883 |
403 | undertaker + dhanaan + euck + hereditarymovie + hottestdayonrecord + jungshook + malaa + mariannenetflix + pemfest + wwessd | 128 | 0.0150590 |
404 | morning + fingertoescrossed + rtweeted + amazeballs + congratulations + beery + eddie + comrade + jered + ep | 116 | 0.0136473 |
405 | hiring + laughing + loud + haha + creeps + tatws + manufacturing + god + england + liftgate + skybynumbers | 940 | 0.1105898 |
406 | sharks + 0 + converts + mcknight + wicket + cc2 + scores + bernardini + hampton + alexander | 51 | 0.0060001 |
407 | kadiri_news + highfields + evington + kadiri + sweets + leicesterhairstylist + kadiri_newsagents + leicesterhairdresser + darissa_hair_mua + tagyourtalent | 355 | 0.0417653 |
408 | fimo + miniature + polymerclay + etsy + etsyshop + jar + cute + miniatures + guineapig + guineapigs | 173 | 0.0203532 |
409 | rt + luck + yum + ffbwednesday + likeing + tophound + muchappreciated + retweet’s + xx + enzo | 66 | 0.0077648 |
41 | weddingparty + venueleicester + venue + partytime + decor + wedding + wow + fun + family + hallhireleicester | 69 | 0.0081178 |
410 | jacks + pixie + baltic + ave + palm + tracksuit + chilly + nando’s + angels + bella | 86 | 0.0101178 |
411 | yeah + stfu + burberry + cutee + pickup + stoped + pretended + fuller + scarborough + claus | 68 | 0.0080001 |
412 | compotime + cryptography + lineofduty5 + mclarenadvent + 12dayswild + kerching + sdlive + hounds + scarlets + abcmurders + pancakeday | 86 | 0.0101178 |
413 | petition + sign + parliament + uk + government + stop + save + mp + ban + sekondawatches | 297 | 0.0349417 |
414 | move + alive + trust + pengness + diminished + woow + unai + trends + motto + sn | 55 | 0.0064707 |
415 | unstitched + happylohri + sari + match15 + mondayoffer + jewellery + mix + range + gift + cann | 52 | 0.0061177 |
416 | inject + beep + unlucky + gawd + veins + piss + lucky + tramps + shit + cryin | 100 | 0.0117649 |
417 | happy + hump + bestfinisher + overplayed + scrimmed + tuesday + ave + libra + gorl + dryjanuary + jai | 57 | 0.0067060 |
418 | love + noice + fosco + namers + loving + chef + thefootball + tans + thementalist + steiner | 115 | 0.0135296 |
419 | r.i.p + christmas + halloween + g.o.a.t + p.i.m.p + xmas + woop + valentine + a.s.f.w + boune + djah + h.i.t.h + hussles + jlloyd + junky + l.f.c + m.a.a.d + m.i.l.f + onerepublic + s.i.m.p | 77 | 0.0090590 |
42 | chance + awesome + union + customs + eu + links + remains + basis + click + adoption | 94 | 0.0110590 |
420 | babe + thankyou + love + birthday + happy + xxx + 8yearsofscienceandfaith + homelands + nindlebug + hooch + siss | 113 | 0.0132943 |
421 | collected + prize + cash + summertreats + extra + win + chance + xmastreats + proceeds + back2schooltreats | 65 | 0.0076472 |
422 | christmas + halloween + autotraderxmas + xmas + festive + easter + tree + christmassy + jumper + halloween2019 + singchristmas | 204 | 0.0240003 |
423 | merry + christmas + xmas + eve + christmasjumperday + happy + 12daysofchristmas + wishing + guys + santa | 545 | 0.0641186 |
424 | valentine’s + valentines + happy + day + valentinesday + valentine + valentinesday2019 + christmas + darkchocolate + single | 189 | 0.0222356 |
425 | utct + 12xmasdays + competitions + helpingpeopleinneed + reema + heart + 5words + allnatural + bathbomb + fakespear + freeproducts + instaas + ipromiseyou_wannaone + mrlindo + ocean8 + one2xmasdays + planetofferssnaps + prideinlove + queendom + ronniekray + shakeit + unno + wannaoneipucomeback + 시 + 약속해요 + 워너원과 | 121 | 0.0142355 |
426 | mincing + sprouts + valentine + activily + magson + students.this + valentines + boogy + datway + draghi’s | 68 | 0.0080001 |
427 | christmas + xmas + halloween + till + valentines + decorations + cough + sleeps + eve + songs | 96 | 0.0112943 |
428 | christmas + xmas + tree + eve + carphonequizmas + carol + gift + halloween + decorations + merry | 212 | 0.0249415 |
429 | alright + jingle + oooh + ooh + lovely + fatteh + kahba + shortstuff + streambig + tanwir + zoomer | 88 | 0.0103531 |
43 | weekend + lovely + brill + insid + squishy + wetter + ian + ben + repost + ash | 110 | 0.0129414 |
430 | tock + ha + originally + becum + teenagefantasy + unific + whereitallbegan + fuckin + tick + arithmetics + bounty’s + mongo | 87 | 0.0102354 |
431 | ffs + westlife + god + pls + keto + presale + netflix + shift + mornin + weeks | 384 | 0.0451771 |
432 | tickled + alfie + hahahahaha + ethnicjoke + henweekend + jokeofaclub + kimiraikkonen + lanaguage + meaks + singlies + speling | 106 | 0.0124708 |
433 | laughing + loud + laugh + ass + dead + fuck + hilarious + funny + loveisland + funniest | 1180 | 0.1388255 |
434 | screaming + chineye + galilee + stewebsite + tongue + scream + ahahahahha + bahrain + whaat + carlton | 63 | 0.0074119 |
435 | xx + care + xxx + allah + luke + babes + ladies + 2.8k + actrice + reasonstobecheerful + rollonsunday + shakeywakey + whello + yr3 | 173 | 0.0203532 |
436 | bless + returns + god + xx + allah + happy + blessing + aw + bro + 24hoursae + 24hrsae + britishidol + emiliano + fairwell + swetu + डी | 128 | 0.0150590 |
437 | 5fl + gwendolen + lehngas + le5 + readymade + weddingphotography + chumke + partylehnga + bridesmaiddress + bridesmaiddresses | 66 | 0.0077648 |
438 | moose + pig + 30daysofhappiness + morning + happy + lips + lippy + anniversarykudos + breakie + wakey | 680 | 0.0800011 |
439 | moose + pig + complexion + dance + kudos + flawless + hellodecember + tuesday + true + appreciatethesimplethings + bedaring + belimitless + everylevel + everymoment + fridayist + happinessisfoundinsimplethings + hippywarrior + justkillingit + nolimits + openroad + rememberingthoseyearswearingpointshoes + secondincome + sheis + simplethings + takerisks + tinyhappythings + vishal + walklikeawarrior + workfromhome + youdontneedtobelogical + yoursoulwillspeak + yourstrength | 135 | 0.0158826 |
44 | prize + withbanneryoucan + prizes + sale + result | 65 | 0.0076472 |
440 | dey + eurovision + wey + applicable + abeg + anthem + dem + don + oo + waka | 209 | 0.0245886 |
441 | parents + listening + cheers + sycophants + enjoy + clueless + prick + luck + publicity + 13km + comfirm + emillio + hrp + johnoo + leicestermathsconf + malam + phwor | 183 | 0.0215297 |
442 | market + holders + buys + stock + biddies + changeable + daily’s + gyrations + immigrate + pge + volitality | 50 | 0.0058824 |
443 | nowplaying + nowplaying️ + onvinyl + hawley + nowpiaying + bunnymen + ipodonrandom + krule + a.s + vinylsoundsbetter | 233 | 0.0274122 |
444 | fearless + lcfc + foxesneverquit + foreverfearless + befearless + foxes + foxesunleashed + fox + filbert + ricky | 275 | 0.0323534 |
445 | saltby + gon + true + firesaltby + flatfire + potentiality + waazza + karma + imma + distractions + mcmafia | 71 | 0.0083531 |
446 | fire + word + applicable + ggas + griggs + lit + nigga + hebraic + omfds + omds | 270 | 0.0317652 |
447 | fire + riotx + sweetnaija + allout + ojuelegba + lit + banger + fielding + ep + riot | 119 | 0.0140002 |
448 | xxx + follow + idol + birthday + xx + tweet + happiest + wait + pix + meet | 59 | 0.0069413 |
449 | cellino + tiling + ha + mbali + od + elaborate + gorge + origins + survivor + admitting | 83 | 0.0097648 |
45 | japan + banzai + amen + bud + expo + landmark + singers + idol + foodwaste + unitedkingdom | 172 | 0.0202356 |
450 | whoop + fight + ah + frenchy + gettingwhooped + kahn + plaice + sixnations2019 + 1v1 + leiwol | 53 | 0.0062354 |
451 | spoilers + sounds + spot + ya + fordmupride + spoton + oooh + amigos + lescott + heart’s | 60 | 0.0070589 |
452 | tits + laughing + realisticsay + slim’s + trinkets + grimace + illuminating + lollipops + tans + vd | 57 | 0.0067060 |
453 | crossed + fingers + horny + excuse + martial + feeling + amazing + giovannispanno + myvouchercodes + abetting + gigg + wakey | 94 | 0.0110590 |
454 | hundred + thousand + avi + sixty + ninety + coochie + seventy + eighty + cook + fifty | 99 | 0.0116472 |
455 | laughing + chelsea + loud + laugh + oxtail + beep + hilarious + fuck + crying + ffs | 187 | 0.0220003 |
456 | god + laughing + loud + crying + nah + heart + soo + cry + sad + fuck | 2958 | 0.3480049 |
457 | mince + comfy + ablo + luchagors + sakeena + uproariously + washers + navdeep + physicist + preed | 55 | 0.0064707 |
458 | laughing + loud + funny + fuck + ha + guy + laugh + bro + nah + wat | 12138 | 1.4280202 |
459 | sweetie + gorgeous + babe + boo + stunning + xx + birthday + mornin + love + happy | 1202 | 0.1414138 |
46 | itballers + cous + thankss + pp + strokes + ade + skip + behalf + advance + checked | 160 | 0.0188238 |
460 | dm’s + waiting + check + dude + patiently + ya + stretty + bud + surprise + spare | 123 | 0.0144708 |
461 | safe + bro + hear + real + fixcareermode + jell + musicsnacks + pringle + macleod + wellens | 65 | 0.0076472 |
462 | fuck + hell + headbutt + tik + laughing + remind + grad + guy + happened + loud | 254 | 0.0298828 |
463 | jesus + christ + wept + win + lord + cute + sweet + xx + fucking + gabriel | 320 | 0.0376476 |
464 | loveisland + planes + 737max + accent + niall + borisjohnsonshouldnotbepm + borisjohnsonspeech + brezase + coachella’s + endearingly + mosthatedmanintheuk + pocketing + schiff + undercutting | 58 | 0.0068236 |
465 | lool + chance + screaming + im + howling + lolol + cackling + nice + dumelow + liverpoolololol + lmaok + lolololhvx | 95 | 0.0111766 |
466 | picoftheday + wall + wallpaper + mural + bespoke + style + art + cum + photo + tile | 77 | 0.0090590 |
467 | hundredths + ninety + hundred + purchase + forty + hindbar + price + cd + seventy + blinds | 67 | 0.0078825 |
468 | tickets + askally + fusion + booked + copped + festival + due + ticket + evolved + billionaire | 204 | 0.0240003 |
469 | hear + loss + blees + xx + bata + compaionate + govenment + jaspreet + mvelase + ripuncleden | 125 | 0.0147061 |
47 | prize + fab + deliciouslydifferent + wash + boyfriend + car + brilliant | 132 | 0.0155296 |
470 | wait + chillis + neck + bottle + 750mlburgundy + constellations + eyess + meze + needit + ice | 71 | 0.0083531 |
471 | goodnight + morning + night + goodmorning + sending + hg + lover + cancerwarrior + bhudi + earlyrisersclub | 78 | 0.0091766 |
472 | beautiful + couse + scucces + stunning + goldsmiths + saddened + love + og + glam + faye | 51 | 0.0060001 |
473 | loss + goodnight + night + aww + 14daysandcounting + loveyouu + nightt + family + teatotal + tuwaine | 69 | 0.0081178 |
474 | magic + sksjjshshhshssh + blessings + celaire + corbynout + akshay + deen + kumar + yessir + dynamo | 57 | 0.0067060 |
475 | holistic + healing + peregrine + england + dobbersweeklyweighin + hicarty + health + cathedral + officialgfw + peregrinefalcon | 76 | 0.0089413 |
476 | eyes + munbarca + rehoboth + nobodys + cheapskate + perked + 12hr + rafinha + rakitic + slopes | 52 | 0.0061177 |
477 | heart + hoodie + brigg + gosta + omgomgomgomg + shafts + bighead + overton + miss + benji + shifty | 63 | 0.0074119 |
478 | eatlikeapro + heartbreaking + eyes + heart + alltogethernowstl + setmefree + love + song + 3 + lav | 184 | 0.0216474 |
479 | eyes + yannoe + eye + tae + 140s + converses + gastly + grammars + ispy + kloppout + leebaans + nannie + skeeters + spou + t’leeds + trendss + tske + unaffected + unseeing + vf + watchful | 168 | 0.0197650 |
48 | ltid + coyb + fab + xx + stadium + leicestershire + lcfc + king + power + ltidlcfc | 72 | 0.0084707 |
480 | goodnight + sweetdreamsandwetones + love + xxx + thankss + twitterverse + lovelies + youu + angel + babe | 138 | 0.0162355 |
481 | love + yourii + heart + selfievirgin + babe + baby + bro + beautiful + follow + promise | 451 | 0.0530596 |
482 | love + xx + babyg + heartbreakingly + leapy + suni + moree + yaa + lots + xxx | 54 | 0.0063530 |
483 | love + xx + madly + gorge + pix + miss + leanne + plughits + sax + zee | 65 | 0.0076472 |
484 | vardy + mahrez + ball + goal + 0 + epl + shot + 1 + keeper + goals | 137 | 0.0161179 |
485 | heart + pogboom + cannonball + dris + farewall + fluxys + grettle + matt_lecointe + ravenstone + rhymegame | 51 | 0.0060001 |
486 | love + beautiful + heart + bro + proud + stunning + baby + rip + girl + hearts | 955 | 0.1123545 |
487 | supportandshare + kindly + committee’s + vital + uf + wowowow + disasters + exercise + mozambique + malawi | 122 | 0.0143531 |
488 | kingdom + united + 4ward + priz + poundland + comps + babysrus + fencers + toysrus + coaches | 51 | 0.0060001 |
489 | spurs + liverpool + pitch + league + incoming + 14.01 + 150games + dianna + greenie + lb3 + lcb5 + leaguetottenham + mediadarlings + nedd + newvmon + numbering + putthepressurwon + rcb4 + sating | 92 | 0.0108237 |
49 | awesome + prize + treat + won + super + chance + crayfish + foodwaste + avocado + unitedkingdom | 388 | 0.0456477 |
490 | kingdom + united + pausemedia + vintagebollywood + rhiannamanani + mua + photography + nims + boutique + model | 52 | 0.0061177 |
491 | cutie + count + prize + xx + luck + wow + oooh + yummy + thankyou + xxx | 308 | 0.0362358 |
492 | 104.9fm + commentary + lyrical + femaleempowerment + jhasikirani + kanganaranaut + manikarnikathequeenofjhansi + manikarnika + thousand + dab | 79 | 0.0092942 |
493 | wagons + pose + shit + honkhonk + stuff + roll + perfect + canceledt + corton + fblock + hegotknockedthefuckout + lawrences | 92 | 0.0108237 |
494 | derrick + sharon + gabe + javeed + garin + judith + beutiful + moxey + revoir + tino | 60 | 0.0070589 |
495 | mornin + hows + thepond + ticket + tickets + stealth + watchin + babe + xx + brinsworth + crinklow + gynaegang + hearbyright + interveiw + macky + mackygee + peecekeeper + pppn + tjay | 61 | 0.0071766 |
496 | wren + teamuhl + forward + sweetie + wait + pleasure + lovely + aww + amusez + at’cha + bellas + cherrington + eastmidlandsengine + hmos + k9 + kward + ladiesinred + my2faves + nixie + raakhee + smili + sofiane + twab + vsphere | 296 | 0.0348240 |
497 | conniexnewlook + autie + copaselfieking + goodo + catalog + etches + photobomb + chirpy + pinny + cozzie | 82 | 0.0096472 |
498 | f1 + groby + reminds + 36mcg + adanoids + brome + caffeined + ferven + grommets + lasker + microfibre + polygamist + revitalising + sandwichstation + sureshot + wolff | 57 | 0.0067060 |
499 | aw + amazing + congratulations + pleasure + appreciated + judith + girly + lovely + aww + miss | 289 | 0.0340005 |
5 | earlycrew + competition + mornin + agreed + yawn + foodwaste + preach + unitedkingdom + sandwich + cringe | 165 | 0.0194120 |
50 | bud + ekadashi + centralfirestation + firestation + leicestershirefireandrescue + petition + weekend + discoverleicester + lovely + rt | 88 | 0.0103531 |
500 | r’n’r + anytime + raio + refilling + aw + midges + nivea + vks + glue + ideal | 73 | 0.0085884 |
501 | copuos + intern + earphones + 2inarow + accounta + adder + amazons + becomi + brookvale + burnings + citisenship + complexions + dicke + fall’s + holida + itali + notnum + pakistansig + prouk + recoll + repositor + seq + tria | 63 | 0.0074119 |
502 | sweetie + healty + icant + instergram + joeys + normani + terrol + wishidhaveadayofrompsychoanalysis + seduce + worsening | 74 | 0.0087060 |
503 | zaha + 12g + 9g + advan + allerdice + artifici + mubepa + semunhu + stimmos + vakapinda + zvinotobuda | 77 | 0.0090590 |
504 | agree + people + eu + brexit + labour + understand + yeah + wh + vote + opinion | 11526 | 1.3560191 |
505 | tories + coutinho + european + corbyn + blarite + dishonour + entryists + glamouring + gloryfying + hooklineandsinker + justed + radio4 + reggaetonlento + solas + usp + wmgeneration | 97 | 0.0114119 |
506 | thevenueleicester + thevenue + fit + mendhiparty + dogsofinstagram + mendhi + henna + hiring + england + repost | 66 | 0.0077648 |
507 | ahem + yep + ha + gobble + honk + demarai + cowboy + nice + im + ht | 340 | 0.0400006 |
508 | lambo + thinking + boyfriend + braces + theresa + bestfriend + grenfell + carrot + apparently + theapprentice | 237 | 0.0278827 |
509 | nowspinning + onvinyl + shadows + kudos + liquid + shades + hawley + supermodel + porn + marlon | 67 | 0.0078825 |
51 | current + mood + sumeer + di + pa + attempt + cool | 92 | 0.0108237 |
510 | congratulations + luck + forward + wait + hope + brilliant + amazing + xx + congrats + haha | 4383 | 0.5156543 |
511 | awesome + sounds + fab + picture + handdrawings + impresive + primadonnas + stonkingly + overqualified + brilliant | 110 | 0.0129414 |
512 | congratulations + congrats + buzz + rob + birthday + deserved + happy + erector + kellyrae + mexicocity | 66 | 0.0077648 |
513 | xx + xxx + count + babe + awesome + congratulations + earlycrew + chance + thankyou + happy | 412 | 0.0484713 |
514 | explain + question + fancy + proof + surely + tickets + uk + talking + mate + erm | 1524 | 0.1792966 |
515 | tout + mange + fouled + ha + mata + moo + bark + bite + accessillibilliclub + bestow + bunton + distill + fukof + goforit + hale’s + humping + lancing + legacies + nopityfromanyone + spentmuchtimebettering + toot’n | 155 | 0.0182356 |
516 | race + comment + um + shameful + 2042 + a’d + comity + concerving + corgy’s + demerit + friendlyclub + galeazzi + ghiblis + giggleswick + handfuls + kuzanyiwa + lodaniel + maniacs + morpeth + phallic + predicitve + rages + sexmum + snowf + thewho + unmemorable + vertically + whateves + zagging + zombieliker | 248 | 0.0291769 |
517 | sleep + tired + sleeping + hours + knackered + uni + pattern + crappy + nights + naps | 124 | 0.0145884 |
518 | awesome + competition + 33a + hubbell + lifegoal + lubbell + practicemakesperfect + tweetheart + wondergul + wynonna + yolanyard | 120 | 0.0141178 |
519 | forward + appreciated + cheers + pleasure + hope + enjoyed + enjoy + greatly + safe + pleased | 250 | 0.0294122 |
52 | prize + ek + treat + chance + super + amazing + commented + won + losange + content | 124 | 0.0145884 |
520 | agree + mate + true + yeah + bot + sadly + read + cheers + wrong + beef | 2525 | 0.2970630 |
521 | ton + birthday + nic + happy + follower + hump + wishing + ateam + delectable + doneily + headingupwards + lateast + liveforever + missya + reshaping + ugnaughts + up.will | 173 | 0.0203532 |
522 | love + xxx + lov + cammy + shortstorycollectionbytinaabrebestseller + xoxx + alka’s + norty + moe + catered + wich | 53 | 0.0062354 |
523 | luck + congratulations + today.go + odi + congrats + chas + deanna + sardarji + satsriakal + shakila | 123 | 0.0144708 |
524 | congratulations + becareful + boysh + husqvarna + justinsherwood + leefrost + luckykhera + tez + coys + toptipping + trog | 81 | 0.0095295 |
525 | laughing + loud + madders + 2facedpiers + badpand + breastisbest + concencus + hesslewood + jintro + kinowoke + lookersec4ben + mert + pigeonoutsider + skintoskinlove + squalid + suckingup + yasen | 68 | 0.0080001 |
526 | folabi + godhelphisflock + laudrup + neoconservatives + racsts + smoo + sparkplugtour + cosplayer + endpjparalysis + intomes + novella + rubin | 52 | 0.0061177 |
527 | mate + yeah + laughing + crapfactor + agree + cunt + fuck + loud + true + shite | 4960 | 0.5835376 |
528 | hundredths + hundred + sixty + fifty + ninety + thousand + million + billion + forty + eighty | 211 | 0.0248239 |
529 | hundred + billion + sixty + million + thousand + forty + call + thirty + ninety + goose | 118 | 0.0138825 |
53 | brilliant + bollocks + loquated + relationshipskey + onlyconnect + partnerships + carole + tactical + clarity + perfection | 86 | 0.0101178 |
530 | otd + thousand + hundred + nineteen + twenty + jingly + seventy + eighteen + eighty + sixty | 318 | 0.0374123 |
531 | thousand + nineteen + hundred + eighteen + hundredths + 3qe + eighty + twenty + sixty + seventy | 80 | 0.0094119 |
532 | fuck + cmon + fucked + fair + brill + play + bout + bro + botoxed + cag + cronkite + fyckin + gengey + kerty + stayawayfromme + suasage | 134 | 0.0157649 |
533 | thousand + hundredths + jingly + hundred + nineteen + fifty + census + otd + ep + ninety | 79 | 0.0092942 |
534 | thousand + hundred + eighteen + seventy + thirty + nineteen + eighty + forty + ninety + tenths | 97 | 0.0114119 |
535 | thousand + hundred + nineteen + eighteen + twenty + ninety + thirty + seventy + forty + hundredths | 1541 | 0.1812967 |
536 | thousand + hundred + eighteen + ninety + nineteen + seventy + eighty + heatwave + sixty + thirteen | 75 | 0.0088237 |
537 | thousand + hundred + nineteen + eighteen + hundredths + twenty + ninety + thirty + eighty + seventy | 262 | 0.0308240 |
538 | thousand + hundred + kameena + nineteen + eighteen + twenty + fifty + forty + days + july | 64 | 0.0075295 |
539 | overs + wicket + wickets + aussies + ashes2019 + india + bowling + bowlers + runs + england | 55 | 0.0064707 |
54 | mytwitteranniversary + joined + remember + twitter + graham + brill + 20yearsinleicestershire + adecadeoftweets + eventnurse + idont + innerpeace + mytwitteranniversary6 + nursesontwitter + tweetme | 238 | 0.0280004 |
540 | lcfc + liverpool + spurs + goal + league + penalty + players + player + arsenal + chelsea | 684 | 0.0804717 |
541 | lcfc + chelsea + league + vardy + fans + games + lfc + england’s + rashford + player | 199 | 0.0234121 |
542 | ayes + worldcup + uta + goal + lampard + finish + kasper + whoop + 20pts + 89pts + freehit + g2army + gurdiola + kuldeep + pissin + wingy + worldmatchplay | 93 | 0.0109413 |
543 | lcfc + league + players + goal + game + player + liverpool + season + win + fans | 23676 | 2.7854511 |
544 | gofishingforbandsandsongs + snowwhitessinisterdwarfs + omfg + god + 1bait2 + d:bream + flasher + peepeeing + scato + screechy + spools + trouthere | 70 | 0.0082354 |
545 | happy + paddy’s + christmas + merry + ho + grandparents + xmas + adrianx + halloween2014 + happyhalloween2018 + hidaya + holloween + lillystone + squigglers + styatesday + thekindnessofpeople + topsyandtango + wignall + worldratday | 53 | 0.0062354 |
546 | mubarak + eid + eidmubarak + diwali + celebrating + wishing + peace + happiness + al + fitr | 67 | 0.0078825 |
547 | merry + christmas + mother’s + happy + mubarak + father’s + eid + ramadan + mothers + allah | 435 | 0.0511772 |
548 | like4like + follow4follow + bambibains + boutique + nims + mua + goodvibes + goodnight + jewellery + copperjewellery + handmadejewelry + maharanichokersetfrom + weddingfairs + weddingvenues | 67 | 0.0078825 |
549 | love + fell + wine + nite + cumuli + mosby + nimbus + sunnyland + muchh + myhero | 89 | 0.0104707 |
55 | fab + goodz + xz + shading + steering + cx + melting + dancingonice + goodies + mugs | 133 | 0.0156473 |
550 | dm + ticket + question + hmu + selling + tickets + wireless + spare + dm’s + class1 + qwhat + readingtickets | 96 | 0.0112943 |
551 | fuck + pancake + nap + waking + ripping + bank + hundredths + 8am + akways + aleeping + caillou + freelancelife + invoices + ketumbit + mosn + notimpressed + pulak + sangat + smegma + stresshitsdifferent + teamnightshift | 101 | 0.0118825 |
552 | sleep + bed + follow + congratsx + weekdays + pls + jono + davey + hendo + muzzy + wtaf | 63 | 0.0074119 |
553 | hope + xx + xxx + love + recovery + feel + sorted + awh + glad + follow | 292 | 0.0343534 |
554 | newprofilepic + allcrossed + xxx + evenin + homeiswheretheartis + makotoshinkai + smile’s + weatheringwithyou + winbenandholly + youngs.tom | 66 | 0.0077648 |
555 | moment.strict + startsomethingpriceless + tories + engvrsa + immigration + majority + rwc2019 + liars + clein + government | 79 | 0.0092942 |
556 | 0 + 1 + 2 + 3 + thatlovingfeeling + nffc + tigers + coys + 5 + 4 | 245 | 0.0288239 |
557 | phwoar + nutshell + beautiful + fuck + game + whew + armeh + inat + rnrnf + emphasises + tje | 100 | 0.0117649 |
558 | shut + shutup + mouth + dear + deal + nonce + pipe + boiled + eater + whore | 104 | 0.0122355 |
559 | dm + love + prize + cure + bykergrove + dsi + frase + hunkyman + sophs + theturnawaygirls + yearoftheradley | 96 | 0.0112943 |
56 | updated + firm + justsponsored + gett + tagging + tenths + stick + leicestercity + fundraising + 6.30am | 98 | 0.0115296 |
560 | birthday + happy + inspirationnation + prachi + hope + classteachmeet2018 + appreciation + julie + day + congratulations | 247 | 0.0290592 |
561 | nhctownnearme + bullshit + trash + del + 84thleicesterlittlethorpescout + anybodygoingtolondontourfromleicester + bringingbasicback + flatpackempirehowdothetgetthesejobs + nhctownearme + yeah’at | 63 | 0.0074119 |
562 | congratulations + sarah + maroitoje + opa + petts + xx + nlcc + played + uve + willo | 69 | 0.0081178 |
563 | birthday + happy + 170yrs + englandsnumber9 + girlsmissing + happilyevermackie + ourlovestory + tweetyourtreat + xmaseve + zumbalove | 53 | 0.0062354 |
564 | birthday + xxx + hope + happy + beaut + xx + day + lovely + wonderful + hey | 213 | 0.0250592 |
565 | awat + tidoq + lagi + gregory + oki + accent + partly + tak + bb + abt | 51 | 0.0060001 |
566 | congratulations + safe + congrats + journey + trip + m’lady + flight + home + cleanoenergy + dermott + oky + welcometotheworld | 126 | 0.0148237 |
567 | xx + congratulations + enjoy + wishing + fab + congrats + hope + day + enjoyed + glad | 493 | 0.0580008 |
568 | happy + birthday + thanksgiving + friday + easter + prin’s + monday + furry + tuesday + november | 172 | 0.0202356 |
569 | birthday + happy + smashing + boo + b’day + day + belated + aliaarmy + congratulations + queen | 416 | 0.0489419 |
57 | fie + positively + itunes + productive + lies + bandcamp + click + grow + light + album | 52 | 0.0061177 |
570 | 3lb + sleep + aches + hours + awake + mums + asnaps + ineedcoffee + planenerd + reyt + spazzin | 65 | 0.0076472 |
571 | birthday + happy + hope + day + xx + wishing + fab + wonderful + awesome + returns | 213 | 0.0250592 |
572 | birthday + happy + hope + cake + cobbles + xxx + xx + day + bday + belated | 121 | 0.0142355 |
573 | birthday + happy + pele + day + coyb + blessed + dday75years + dispastico + girthday + letitshine + t’celebrations + thankyousir | 51 | 0.0060001 |
574 | birthday + happy + hope + xx + day + xxx + lots + boo + blessings + belated | 264 | 0.0310593 |
575 | yogabunny + marksandspencer + dark + merky + cheery + samosa + youu + bunny + yoga + trick | 102 | 0.0120002 |
576 | tayler + babelas + tock + gardens + engineering + castle + square + jubilee + aladwani + becauseican + breastcancerwarriors + chadeya + f’kry + fairstein + fantayze + ghnutrition + gopinkhair + haysi + hermanos + kristie + louchest + noapologies + precarityontrial + serivce + slithering + tailboard + tiill + whysoserious | 85 | 0.0100001 |
577 | ff + followfriday + posted + photo + practiceing + practice + tonight + eighth + derby + atm | 873 | 0.1027073 |
578 | thousand + nineteen + fm + lock + waves + tenths + eighteen + hundredths + youth + hitting | 79 | 0.0092942 |
579 | plotting + banger + cushions + tempting + cream + asdfghjkl + banksyofpoem + brunetteorblonde + candlelit + finesseforeva + glook + handwritten + hoots + markjones + natou’s + prada’s + rdr’s + relaxin + seavers + shamakhiara + shrieks + sidro + snuggs + twatsport + whitecat | 123 | 0.0144708 |
58 | earlycrew + shaniececarroll + mornin + gluten + foodwaste + unitedkingdom + avo + bread + pret + free | 58 | 0.0068236 |
580 | kanareunion + tweetiepie + sweetie + labyrinth + distinctly + reme + regretting + hectic + flooring + nt | 61 | 0.0071766 |
581 | love + xx + granada + xoxo + miss + babe + xxx + soz + amityville + bbygrl + choicescifitvactor + eben + farout + fertilise + gravitating + mullers + protostellar + theselyricschangedmylife + thesupoort + unharmed + worryign + xhzbxhxhd | 153 | 0.0180003 |
582 | inna + skating + amazingthank + bestfriendsday + getvoting + goofball + josza + lillahi + mbcca19 + mbcca2019 + stripeyhoney + tbchmakeschristmas + timesupacademia + tutland + weareuol | 51 | 0.0060001 |
583 | lunch + oops + brunch + alunacoconut + inthedeep + mcindians + nicu + warr + winitwednesday + matchday | 50 | 0.0058824 |
584 | butter + accuser + waddanimo + wanchain + whrn + wlv + vlog + amazonfire + bragged + charlotte’s + investigates + izombie + octopuses + provokes | 57 | 0.0067060 |
585 | prayers + support + jesy + helicopter + br + returns + tiger + direct + amazing + celebrating | 84 | 0.0098825 |
586 | grateful + pathway + vichai + completed + specifically + dreams + followers + alzheimers + countryroads + derick + dhani’s + grandm + piersy + prattling + pulpit + ripastori + september13 + sizz + ugliness + wonderous + zoglive | 78 | 0.0091766 |
587 | betterthansexin3words + awful + incredible + noel + accabuster + viversection + cureheartachein4words + dignityin5words + electrocuting + fulla | 50 | 0.0058824 |
588 | garlfrend + teach + idiya + chilwell + fuck + ben + excuse + absolutely + areno + enchanting + h.u.g.excuse + nees | 108 | 0.0127061 |
589 | twat + horny + wicked + hear + vile + kandeep + nincumpoops + cow + shortarse + stupid | 65 | 0.0076472 |
59 | 30daysofshadow + prompts + prompt + asktwice + _________________ + swipe + dreams + challenge + sweet + night | 123 | 0.0144708 |
590 | calm + uh + swear + signed + mate + chald + makeanoldsayingdirty + breddah + deafness + ushie | 81 | 0.0095295 |
591 | relatable + bemoregreig + cap + hof + wanny’d + fair + grow + chin + whatsoever + pattern | 216 | 0.0254121 |
592 | forward + xx + crimeandpunishment + hypersbdaybash + mondassian + psc + shivali + softtail + tuttisunset + unfolded + yazidi | 84 | 0.0098825 |
593 | meantime + catalan + disobeyed + extractor + godards + hailthesun + nissed + swmbd + tradgic + wolcru | 54 | 0.0063530 |
594 | vichaisrivaddhanaprabha + theboss + lcfc + wowowow + vichai + thankyou + ooh + footballfamily + gudhi + padwa | 64 | 0.0075295 |
595 | women’s + shopped + test + international + cannock + supported + internationalwomensday + nets + passed + grandson | 87 | 0.0102354 |
596 | srivaddhanaprabha + vichai + vichaisrivaddhanaprabha + test + cannock + internationalwomensday + wishing + christmas + nhs1000miles + passed | 80 | 0.0094119 |
597 | thurmaston + gt + laughterloft + painting + sneaky + settings + variety + 20one5 + amerikaz + athreefoldcordnoteasilybroken + channelislands + earthing + ehenrral + fabambassador + facebooks + flitting + funksplosion + gymbeast + hansumbasturts + japanexpothailand2020 + jerseyci + lbdc + lepus + leveret + lievre + lifewiththreekids + mctell + mixedmedia + ofr + preclude + presentbthe + rainbocorns + seascapes + tahlia + thelateishshow + timeforus + uolcvs + wildboy | 118 | 0.0138825 |
598 | vaillantgroup + johann + vaillant + goody + memori + dsylmmusicvideo + endlessly + bucs + demi + bags | 62 | 0.0072942 |
599 | masha’allah + mashaallah + airpods + aced + azadimubarak + breakfastexecutive + catlovers + dogsdaytoo + eatcontinental + finepeoplefromsierraleone + g66666666 + happymothersday2018 + hdbeauty + leger + loungemarriot + mahsallah + myheartismush + rbahia1991 + sieved + waynak | 119 | 0.0140002 |
6 | stick + win + sticky + love + guys + cx + turtletuesday + catches + matches + picked | 152 | 0.0178826 |
60 | posted + kingdom + united + photo + photographs + granite + driveway + qatar + photos + image | 333 | 0.0391770 |
600 | beautiful + babe + gorgeous + sweetie + cute + soo + god + love + sexy + wow | 1658 | 0.1950616 |
601 | schrolled + awilo + deleon + longomba + scrapp + ibrahimovic + fridaynightdinner + fernando + sunnah + thoo + tomlin | 59 | 0.0069413 |
602 | mornin + rain + ding + brolly + rainin + rattling + weathers + booked + wet + drip | 132 | 0.0155296 |
603 | funder + remorse + proposals + watc + agreeing + pros + passes + rumours + 4u + bombarde + incloud + leicestersquare + nakkash + rolandout | 53 | 0.0062354 |
604 | wah + cbb + comedian + 400th + blackiron + candy’s + carr’s + clugston + etive + gallic + itselioyefeso + jenson + lem + lundun + middled + orrin + ripniphussle + ron’s + satcheleaster + speedo’s + stressawarenessmonth + theoutlaws + wizz + yosserllyes | 76 | 0.0089413 |
605 | safe + sike + pls + cher + technocracy + zinfandel + stay + carm + signatories + gomes + messi’s | 93 | 0.0109413 |
606 | afsaanah + alahumabarik + buffness + farfromhome + funiest + hindrance + wayhay + twin + jake + csnt + defin + everlasting + leicestee + pallete + rheumatoid + ukhti | 77 | 0.0090590 |
607 | thas + ella + waters + eh + 4get2 + alexandra’s + arithafranklin + beegreendirectory + blancpain + daly’s + jyoti.chandhok + maxgeorge + sundaysex | 55 | 0.0064707 |
608 | ha + haq + sounds + batwatch + fantasic + multifacets + nwachukwu + warris + mundeles + love | 80 | 0.0094119 |
609 | adeola + corpses + devvy + thebloomalbum + zombs + bomfunk + engerland + swelled + callmebyyourname + chika + freestyler + torment | 83 | 0.0097648 |
61 | railway + lei + letsride + letsrideleicester + demontfortuniversity + station + dmuleicester + panoramic + leicestercity + demonfm | 118 | 0.0138825 |
610 | foodbank + channel + oadby + families + helped + breaking + label + dj + club + music | 76 | 0.0089413 |
611 | question + innit + ei + coronationstreet + dying + adam + hush + ya + song + unis | 516 | 0.0607067 |
612 | laughing + loud + haha + funny + mate + yeah + tears + nah + people + tweet | 1529 | 0.1798849 |
613 | ha + haha + blue + yeah + loud + laughing + beep + bet + game + greeny | 908 | 0.1068250 |
614 | funworksworlduk + forward + psn + lfo + tattooartist + instagram + platforms + social + media + snapchat | 70 | 0.0082354 |
615 | word + doo + words + phrase + called + fuckmice + knobbing + kill + nah + fuck | 1242 | 0.1461197 |
616 | someone’s + everyone’s + somebody’s + ha + destiny’s + daughter + man’s + nje + tryna + mcm | 855 | 0.1005897 |
617 | loveisland + georgia + wes + laura + megan + amber + hayley + adam + alex + ellie | 152 | 0.0178826 |
618 | superb + gadd + mendy + robbie + _mendy + bewaremadeiramarket + bibao + c.g.i + helmcken + midsummers + notknowihad + playbill | 75 | 0.0088237 |
619 | dedications + support + proud + amazing + kitamestimenang + team + congratulations + therealfullmonty + students + huge | 246 | 0.0289416 |
62 | england + threelions + coming + home + itscominghome + wales + scotland + worldcup2018 + george’s + lads | 778 | 0.0915307 |
620 | whaat + blogger + erm + german + ahaha + hungover + farage + accents + nigel + brexit | 159 | 0.0187061 |
621 | service + customer + disgusting + retweeting + 4k + zara + android + 2mora + airwo + concep + daum + enlarge + fancafe + ffa + fucktheaccountant + ouzels + samsungnote + schematics | 81 | 0.0095295 |
622 | merkel + pinkipa + yami + condescending + globalists + blanc + eu + bitch + jeremykyle + save | 123 | 0.0144708 |
623 | luffy + sick + sauce + stuart + christmaleftovers + cornmeal + cremeeggmayo + mossy + vaps + chilli | 76 | 0.0089413 |
624 | kingdom + blackcatsofinstagram + catsofinstagram + blackcats + united + nikond4 + tamronmacro90mm + cats + streetphotography + photographs | 79 | 0.0092942 |
625 | hungry + tea + eurovision + labs + characterising + mne + phizz + timemovesfast + messi + rumbling + svn + turchi + turchiconquest | 74 | 0.0087060 |
626 | brexit + ass + laughing + deal + kelsey + britain + eureka + igbo + vote + accent | 120 | 0.0141178 |
627 | awesome + bewitchingly + blair + stunningly + beautiful + weird + wow + wcw + final + eurovision | 1300 | 0.1529433 |
628 | congratulations + congrats + spudulike + deserved + 3sh + ahlamdulilah + coupple + engineer’s + escapologists + iks + shailesh + soubds | 90 | 0.0105884 |
629 | scroll + nuh + win + gon + doublepenaltyrule + infinitum + mondaymagic + vcgivesback + meme + dnk + randomactofkindnessday | 58 | 0.0068236 |
63 | spraycanart + sprayart + urbanart + graffporn + graffitiart + graffphoto + streetart + stronger + click + inplaywithray | 178 | 0.0209415 |
630 | boirders + brexit + priti + guts + betrayal + patel + mp + selling + call + wrightstuff | 54 | 0.0063530 |
631 | blessings + awkss + blathered + checkyourballs + cliffhangers + dianne’s + ladysings + lovetoread + monsterenergy + peariscope + testicularcancer | 50 | 0.0058824 |
632 | positioned + henrycatt + lpc2018 + patchouli + takeingtheboyoutofnottingham + بـ + ذكرني + dementor + howl’s + otrb + wannables | 83 | 0.0097648 |
633 | sweetie + lovely + happy + love + awesome + hope + amazing + congratulations + enjoy + xx | 5827 | 0.6855391 |
634 | askally + play + excuse + fancy + uk + buy + wanna + plz + pics + xx | 143 | 0.0168238 |
635 | homewrecker + applicable + jack’s + yeah + nana + ___ + ____ + donatella + educative + excitingly + izaiah + jarrow + model’s + naivete + nanananana + nsusernotification + robfans + rodrick + scabbing + shareable + theassassinationofgianniversace | 69 | 0.0081178 |
636 | grumps + goodman + paramedicine + worldly + yaass + truely + oap + technician + yass + priorities | 56 | 0.0065883 |
637 | laughing + loud + fuck + fives + gameofthrones + 1800th + djwkdnskskd + exchequer + hyun + isand + mainz + per’s + rasengan | 115 | 0.0135296 |
638 | satsumas + flown + dreading + 13.5mph + 22kph + bankholidaysunshine + bargained + dedicat + fackk + freedomtospeakup + plater + webster’s | 66 | 0.0077648 |
639 | madness + smart + yeah + init + chills + cold + dementiacarecrisis + reverent + smarty + badness + horniness + tightness + yaass | 57 | 0.0067060 |
64 | yikes + bodyconfidence + bodypositive + desperately + sleepy + theknickerfairy + click + cress + lost + yuck | 113 | 0.0132943 |
640 | thousand + 0 + nineteen + nots + do’s + beginners + eighteen + 6.3 + takeaways + diwali | 58 | 0.0068236 |
641 | rail + wages + arbitrary + deutzer + freiheit + futureequalityequalpayrespect + lecker + rgds + twatsontheroad + voteone | 51 | 0.0060001 |
642 | sad + died + poignant + hear + 12.7km + 48.6km + councillo + defuzzed + funn + spacewalk + visio + youbare | 50 | 0.0058824 |
643 | fuck + rees + mogg + questioning + fruckle + goyte + homers + nazak + nunos + cheat | 68 | 0.0080001 |
644 | theon + fuming + fuck + sparking + ffs + disrespected + galoob + haikyuu + downsides + loudness | 507 | 0.0596479 |
645 | brexit + time’s + palestine + justify + disgusting + corrasco + ottomans + paneka + phonebanked + saladin + vurb | 76 | 0.0089413 |
646 | gym + weighed + 2 + watched + surreal + felling + gallstones + unconvincing + refurbishment + drank | 248 | 0.0291769 |
647 | evening + fantastic + disappointment + congratulations + team + deserved + christmas + dm + hospitality + informative | 102 | 0.0120002 |
648 | sense + makes + strong + late + pls + lush + tipping + xl + appreciated + oxox + ओके | 95 | 0.0111766 |
649 | congrats + congratulations + carrie + guy’s + matey + 2736nm + 57nm + disorganisation + flyboy + hearteu + hyland + keyo + nis + seswimmimg + sneeky + trudi | 150 | 0.0176473 |
65 | yule + offline + click + view + break + christmas + days + rew + lock + calpe | 107 | 0.0125884 |
650 | sad + hear + inconvenience + loss + news + gutted + aged + nineteenth + hugs + closed | 103 | 0.0121178 |
651 | bored + notifications + 46yrs + aiko’s + alfiedeyes + andre’s + bieber’s + crüe’s + cuddlyfriends + engvbel + hildy + lavigne’s + maría + mohan + mötley + mumblogger + muse’s + pointlessblog + secretive + sinead’s + sprunger + star1 + tinkled + udhdjsis + undermyskintour + vila’s + wozz | 104 | 0.0122355 |
652 | verry + wray + henny + morty + krept + mf + gunna + doom + slaps + jd | 112 | 0.0131767 |
653 | anthem + national + fake + news + todays + da + bowie + aventador + benzo + bestamericanasong + bitchesz + carpoolkaraoke + clouzineinternationalmusicaward + deep’s + drillers + grennan’s + kermet + lilbaby + livee + mayle’s + niguh’s + proffesor + schwarzer + siwas + skepta’s + slaughterer’s + tkay’s + trappers + walkupandkissyou + wintermans | 79 | 0.0092942 |
654 | swim + briony’s + caadbawait + come.the + joystick + kinkys + littld + moterway + mygoalie + overacted + peeps.tigersfamily + shoppedout | 126 | 0.0148237 |
655 | ba + beefa + jejune + peno’s + playdough + righty + sldr + stormgareth + unponcey + painful | 76 | 0.0089413 |
656 | prayers + condolences + families + crash + helicopter + devastating + involved + sad + lcfc + tributes | 58 | 0.0068236 |
657 | masstechnology + mttnstore + trademark + tescoexpress + annajeebhq + eastereggs + adultwork + net + annajeeb + bodyshopathome | 99 | 0.0116472 |
658 | moneym + million + lcfc + city + utd + mahrez + united + maguire + 60m + southampton | 135 | 0.0158826 |
659 | love + exciting + pies + proud + delicious + cake + fine + xx + pricilla + tomorrow | 300 | 0.0352946 |
66 | tenyears + pride + leicesterpride + lgbt + parade + gay + beckons + dusk + march + leicestershire | 79 | 0.0092942 |
660 | penalty + weaker + thinner + penalties + blunter + complicates + coxonian + grumpier + hendersons + melbournederby + nigarg + thoushallnotgettooinvolved + tigris | 79 | 0.0092942 |
661 | correct + deep + wrong + uns + leeds + perfect + ado + astrothunder + decisiin + giggld + makeafilmmuchbigger + thith + thommo + whowho + yanstand | 156 | 0.0183532 |
662 | cold + snow + goodnight + hot + coldest + temperature + eyes + sun + burning + jon | 134 | 0.0157649 |
663 | trampy + agajsjvwiwosjshsh + expensivemonth + flatliners + gypsys + mymainsqueeze + pillage + rocovery + turtlebay + doddy + goode + leto + misdirection + tristram + unlikeable + wrestlingresurgence + yanoe | 100 | 0.0117649 |
664 | plan + sounds + ooh + asbo + guendozi + guffman + hairbands + leachy + motherbuka + realign + soundsike + swype + tume | 102 | 0.0120002 |
665 | nap + britney + dolly + icon + cagou + dolemite + frustra + krispies + mariya’s + recommende + relevan + sissorh + treas + whereisourchuffingsummer | 51 | 0.0060001 |
666 | twat + fool + hehe + stack + aurait + crininal + dreamboat + enciting + lenz + scurffy + trumper + ufc244 + youl | 91 | 0.0107060 |
667 | unfit + cunt + prick + loud + laughing + pulises + sharif’s + sharpened + bastards + borisjohnsonlies + kiddin + livpsg + rihad + riyadh | 51 | 0.0060001 |
668 | balloon + blimp + sadiq + badgers + affording + authorizes + desdamona + livestock + othello + rebooting + unshakeable | 74 | 0.0087060 |
669 | passed + faults + congratulations + minor + test + attempt + buddi + drive + couple + instructor | 80 | 0.0094119 |
67 | centralnews + itvcentral + switchon + christmaslights + itv + lights + christmas + sambailey + mkt + united | 62 | 0.0072942 |
670 | peace + rest + prayers + vichai + supporting + followers + informative + gemma + c2 + freakley + fwl + lastlaughinlasvegas + masterrace + mhs + ripp + springequinox + sundsy + this.another + weproudofdaya | 103 | 0.0121178 |
671 | costco + __________ + europe + retail + weddingparty + venueleicester + voluptuous + partytime + ____________ + _________ | 82 | 0.0096472 |
672 | 07894509206 + glitz + ents + decor + blinds + mandap + pizza + domino’s + contact + dj | 57 | 0.0067060 |
673 | specialoffers + le2 + le1 + fooddelivery + le5 + pizzas + road + fastfood + takeaways + le3 | 71 | 0.0083531 |
674 | dm + send + bedding + xx + deets + dealers + details + curtest + nudes + choones + drivin + madi + walaalo | 57 | 0.0067060 |
675 | dm + inbox + pls + follow + xxx + dms + 0n + ansser + bahamas’s + bbes + dollas + gtg + kps + mesel + retweete + rosh + stewming | 106 | 0.0124708 |
676 | immigrant + fbi + language + connor + claiming + aizen + ichigo + liluffy + loose.stopbrexit + machetes + prorougeing + sieg + wym | 76 | 0.0089413 |
677 | umbongo + phew + lozza + oge + ashame + nabby + spini + soo + bares + africans | 57 | 0.0067060 |
678 | winitwednesday + beautiful + yummy + freebiefriday + giveaway + forever + competition + sunday + horny + love | 595 | 0.0700010 |
679 | oddwaystomakeafriend + disgusting + addabeertoamovieorshow + addonewordtomakeafilmmorefun + legend + addabrandruinamovie + oddthingstocollect + ruinabandnamewithoneletter + rita + addtoystoaband + changeanyvowelsinamovie + filmsthatcanswim + makeahororfilmlescary + replaceawordinamovietitlewithfanny | 204 | 0.0240003 |
68 | supportindiefilm + actorslife + christmaslights + highcross + britvoteharrystyles + prettystreets + leicesterguildhall + follow + leicestercathedral + christmas | 50 | 0.0058824 |
680 | brit + temperature + saffron + activeleicester + dogrescuers + hmpleicester + prelim + rugby.such + westaystrong + earlybath + gromit + josep + sunil | 64 | 0.0075295 |
681 | jeremykyle + pranked + jezza + boris + cos + absouletly + bulldogs.jeremykyle + cheltenhamfestival2018 + flightless + hoffmeister + ipulate + lie.jeremykyle + mwahahhahahahhahaha + oxymoronic + remebered + strongbowdarked | 76 | 0.0089413 |
682 | xx + message + xxx + xoxo + babe + xox + chains + names + cba + pls | 190 | 0.0223533 |
683 | brexit + tories + labour + itvdebate + tory + marr + minority + stance + vote + againist + bexit + britrev + cupido + dither + elution + hbhb + howbigwillthelossbe + imaged + inbetweeten | 53 | 0.0062354 |
684 | foals + win + ynwa + liverpool + spurs + bets + arseholed + assenal + champag + thankyouarsene | 79 | 0.0092942 |
685 | alright + hun + horny + mate + babe + wanna + xxx + xx + pls + fancy | 459 | 0.0540008 |
686 | labour + vote + tories + tory + party + borrowing + democrats + brexit + democratic + remainers + ukip | 53 | 0.0062354 |
687 | brexit + tories + election + labour + leave + deal + tory + vote + eu + remainers | 464 | 0.0545890 |
688 | loveisland + impendi + politican + dumbasses + muslims + shack + island + establishment + corrupt + loveisiand + temporary | 54 | 0.0063530 |
689 | loveisland + loveisiand + corrupt + georgia + establishment + laura + alex + megan + immigration + dani | 578 | 0.0680010 |
69 | correct + emerson + electric + hiring + join + england + engineering + job + businessmgmt + team | 51 | 0.0060001 |
690 | congratulations + congrats + malawithewarmheartofafrica + bless + morning + highflyingbirds + love + aww + aw + wowowow | 466 | 0.0548243 |
691 | shambles + goal + hazard + saints + cartwheel + chrishughton + cougs + premierleaguedarts + poweryourunion + gameover + omnishambles + sherrock | 64 | 0.0075295 |
692 | imaceleb + anne + joinin247 + ffs + waiting + croatia + budap + decsnips + indiedisco + karankaout + moanirinho + thatstwowishes + zey | 179 | 0.0210591 |
693 | champ + fifa + mvp + spurs + lincoln + annasoubry + copeland + enim + forknife + tuber | 53 | 0.0062354 |
694 | bruh + nice + crunch + beautiful + newprofilepic + elizabeth + home + footballindex + h8ters + lotioning + nationalyorkshirepuddingday + needscenerynow + pamphle + popopoo + summervibes + weldone + wohoo + wordsmatter + xvideos | 91 | 0.0107060 |
695 | bbc.my + bigblackcock + dommes + desires + adverts + cum + people + fuck + assholes + hate | 187 | 0.0220003 |
696 | married + discriminate + unfollowed + dumb + elected + people + cousins + insidenumber10 + jaide + mokes + msd + shushed | 79 | 0.0092942 |
697 | synapses + pimples + bonsoirair + coursee + dancecomigo + diggory + itsasign + jp’s + lovemyclients + masterofscience + nomakeupgang + oldgirls2018 + pieceofme | 50 | 0.0058824 |
698 | goal + waw + faith + save + 14seconds + awhahahahaha + ballista + bft + dartboard + dees + kiko + lim’s | 102 | 0.0120002 |
699 | agenda2030 + unga + sdg + owed + combat + zoo + rates + pensions + akabusi + apauling + criminological + fansites + fotoshop + imoral + jihadis + mciroy + oceand + rebalance + redrow + repossessed + screengrab + snatche + sociological | 54 | 0.0063530 |
7 | pampersforpreemies + premature + nappy + donated + betrayal + tweeting + customs + foodwaste + unitedkingdom + hospital | 105 | 0.0123531 |
70 | lineofduty + ted + number’s + pure + mother + bent + copper + grateful + vindhya + joseph | 212 | 0.0249415 |
700 | 0to100 + avaliable + christine’s + eversograteful + grammy2019 + grammyawards2019 + internationaldogday + loveasnapchatfilter + mygorgeousgranddaughter + octavia + remus + shadeson + valantine | 75 | 0.0088237 |
701 | beckenha + dontmanupspeakup + fagulous + story.hope + thed + thistles + well.but + youngestmembersoftheaudience + bmd + funtime + oaklands + saturdaythoughts | 56 | 0.0065883 |
702 | iphone + huawei + yesyes + agree + yesyesyesyes + bicycles + nauseous + reverse + motorways + motorist | 153 | 0.0180003 |
703 | gotcha + love + piestories + relaz + wayze + gravestone + plez + satnav + matron + strongbow | 56 | 0.0065883 |
704 | yeah + halved + lidl + dictionary + charm + chill + helps + ouhh + rivetz + uhuh | 73 | 0.0085884 |
705 | xx + sexy + babe + nipples + gorgeous + nice + tempting + wow + darling + cheers | 282 | 0.0331769 |
706 | gorgeous + beautiful + awebsite + aww + catrin + ccant + chibaba + dibyesh + heelsoffuk + leye + rawan + suki | 98 | 0.0115296 |
707 | phone + ctrl + afford + traumatic + ikea + percent + mental + dbrand + dorna + everyword + feted + furnitureland + knacker + slowe + thisnperson + uncertaintimes + unsticking + watermarked + xmassongs | 102 | 0.0120002 |
708 | average + fiddled + memb + pay + spend + ability + migraine + intelligence + explained + believed | 106 | 0.0124708 |
709 | twat + fuckety + prick + bastards + putscotlandinafilmorsong + cowards + bugger + weapons + cheky + groundless + michail + tartans | 68 | 0.0080001 |
71 | winner + love + xxx + xx + worthy + wow + giveaway + ace + gin + win | 64 | 0.0075295 |
710 | yuk + apocalypse + zombie + kettle + avatars + brandambassador + doneouthere + dsharp + excitedandscared + grandcanaria + hobknobs + kangdaniel + lavalamp + madlad + nomo + sadnotsad + strangly + trolliewallie + waec + 강다니엘 | 106 | 0.0124708 |
711 | yummy + delicious + tasty + incoming + dilly + tryna + snooze + nice + evenin + bank | 319 | 0.0375299 |
712 | blah + dom + statistics + 0.0001 + arranges + bankruptcies + catholic’s + discrediting + fumour + heisenberg’s + kiwa + marb + transph | 51 | 0.0060001 |
713 | weather + winter + frost + morning + benjart + buging + fräulein + thawed + bucket + sunday | 65 | 0.0076472 |
714 | ass + laughing + hell + fucking + bloody + christmaslocally + wilin + jammiest + kodak’s + roasts | 79 | 0.0092942 |
715 | thurmaston + cte + stadium + king + power + augustintoseptember + britishlgbtawards + captaincorelli + fridayplay + happyjuly + justtheone + latesummerseve + littlefluffballs + mauveroselips + mondayisj + neededmuchley + newbuilding + pastlesontheeyes + tks | 51 | 0.0060001 |
716 | dms + dm + check + gardening + 8yearsofonedirection + link + send + 8yearsof1d + 8yearsonedirection + bedding | 323 | 0.0380005 |
717 | laughing + cometh + loud + neek + comedian + baddaz + irewal + sugababes + ass + francesca | 50 | 0.0058824 |
718 | bleach + drink + love + 50g + cantu + cheesegate + chewit + crowding + laterc + midras + mybrotherskeeper + spech | 119 | 0.0140002 |
719 | respects + 16yr + cousin’s + marathon + gofundme + lost + abdirahman + funeral + olds + aspiring | 146 | 0.0171767 |
72 | ando + bb + inshallah + videos + type + follow + awesome + lot + love | 66 | 0.0077648 |
720 | laughing + loud + ass + brilliant + hilarious + fucking + lool + init + cap + yeah | 504 | 0.0592950 |
721 | laughing + loud + screamed + flubbed + illbleed + muvver + oisin + orgasmed + propositioning + table1 + wyla | 52 | 0.0061177 |
722 | laughing + loud + ass + funny + crying + triggered + fam + honestly + mad + nah | 2593 | 0.3050631 |
723 | fortnite + madden + york + curse + 50v50 + justva + lifelines + percz + crossed + dsquared + fanciers + pushback | 55 | 0.0064707 |
724 | dollar + climate + strike + arses + socialism + animals + green + reduction + bolton + viral | 76 | 0.0089413 |
725 | gameofthrones + cosmicblue + gavinandstaceychristmasspecial + song + english + gavinandstacey + pavement + episode + hear + thrones | 100 | 0.0117649 |
726 | tea + chicken + milk + chocolate + cheese + juice + drink + water + coffee + chips | 2469 | 0.2904747 |
727 | mcdonald’s + baklava + tuesday + treat + dlamini + eggs + sundaybrunch + bath + iced + mcdonalds | 66 | 0.0077648 |
728 | xx + babe + darling + greeat + sanawich93 + wintery + manicure + anytime + greg’s + reposted + smithy | 54 | 0.0063530 |
729 | soupa + sleep + timetable + chunder + iciroc + ngicela + profanities + toungeouttuesday + woken + appletizer + lye | 75 | 0.0088237 |
73 | foodwaste + unitedkingdom + baguettes + free + pret + greve + sandwiches + cru + nespresso + ham | 104 | 0.0122355 |
730 | baby + mummy + bathroom + sweet + marry + dream + alehouse + argento’s + batterytechnology + choca + gadosh + niggalations + tagat + weekendatbernies | 169 | 0.0198826 |
731 | tryna + supposed + aite + babyface + finepeoplefromlondon + finepeoplefrommidlands + sabrinaonnetflix + settle + defini + whaat | 68 | 0.0080001 |
732 | game + fortnite + barnes + harvey + southgate + gareth + wwe + robertson + won + yeh | 178 | 0.0209415 |
733 | eat + askval + availble + cassavas + redkin + frieda + hbu + yams + starburst + plz | 71 | 0.0083531 |
734 | busy + fridays + healthy + jasleen + lasenza + plasmas + lemme + arianna + sal + ukht | 87 | 0.0102354 |
735 | blame + pod + debt + 2217 + boarder’s + chechnya + disreg + ev’s + factcheck + gvt + involvin + itsalies + lgbti + metalman + prolet + psycos + suppressing + unchal + understan + zerohour | 52 | 0.0061177 |
736 | deadass + exelent + cerelac + class + homygod + lolzx + penoo + craving + wingthh + yerp | 52 | 0.0061177 |
737 | dm + send + xx + message + txtin + rose + tree + factory + msg + details | 433 | 0.0509419 |
738 | code + percent + 2book + 10 + curating + sale + cuda + limite + store + 50 | 55 | 0.0064707 |
739 | heartache + cheatin + loosing + carla + carter + war + talentless + teary + lost + snowing | 78 | 0.0091766 |
74 | ousting + betterpoints + nimsboutique + lied + theresa + british + parliament + influential + hiring + hughes | 85 | 0.0100001 |
740 | xx + babe + horny + underwear + lippy + bum + nice + bra + lea_ldn + misho + nac’s | 75 | 0.0088237 |
741 | biography + soldered + unfrie + revoke + petition + repair + replaceable + 50 + ebay + february | 70 | 0.0082354 |
742 | xxx + babe + anais + dressedbyjess + giveaway + chen + signing + allcrossed + lena + xx | 56 | 0.0065883 |
743 | pathetic + king + leaderless + pusb + undeserving + lethargic + darts + diabolical + coventry + woeful | 99 | 0.0116472 |
744 | awesome + blub + cool + xxx + fastdad + gangly + ingame + latinas + makoya + myheroe + rayburn + rmalfc + rmaliv | 156 | 0.0183532 |
745 | banterawaydays + crispay + ralf + tooz + tree’s + wobbed + newshepard + synthwave + ferret + squid + su4 | 73 | 0.0085884 |
746 | christmas + sad + rip + news + peace + hear + family + prayers + passing + rest | 484 | 0.0569420 |
747 | commented + rg18 + thankss + cunts + bro + scumbag + yeah + heart + 21.48 + ancestral + chatrier’s + fuckk + hailtothekingbaby + lookfabinwhite + manspreader + moocs + petti + prerecording + ripharley + ripharleyrace + scottland + shxtting + teejayx + thickems + tunnelbhands + yaard | 390 | 0.0458830 |
748 | procession + awards + congratulations + vaisakhi + winning + sikh + krishna + ecb + award + mandir | 107 | 0.0125884 |
749 | mood + lipgloss + yhh + balancelife + beppy + bestpizza + fahad + fever.x + killah + lifebalance + lurggy + muwallad | 120 | 0.0141178 |
75 | prize + guys + fab + scenes + mcfluzza + fabulous + yummy + ace + awesome + epic | 76 | 0.0089413 |
750 | gea + franco + goal + lacazette + de + baresi + finish + courtois + ball + kick | 50 | 0.0058824 |
751 | cashslave + paypig + paypigs + findom + cashmaster + cashpig + cashfag + humanatm + cashcow + finsub | 112 | 0.0131767 |
752 | trump + government + tax + fisa + president + claims + eu + costofbrexit + fiasco.and + uk | 322 | 0.0378829 |
753 | paycheck + scumbag + mourinho + awhwe + callipers + cheila + dirty_knix + heiko + knicked + skinfold + sophy | 74 | 0.0087060 |
754 | govt + murder + guilty + court + law + mentioned + affairs + happened + accuses + iraq | 86 | 0.0101178 |
755 | venezuelan + affinit + usa + threat + patriotic + russia + eu + government + muslim + direct | 68 | 0.0080001 |
756 | awake + shift + hours + dozing + paradisegardens + lips + 1.8 + 8hrs + cantsleep + mousse | 57 | 0.0067060 |
757 | sharing + thankyou + sweetie + pleasure + aww + o’gold + rayaan + teambaxi + togo + comment | 93 | 0.0109413 |
758 | win + game + shirley + uno + henderson + india + worse + bollix + burghley + d.silva + danial + germanygp + gokhan + inler + legolas + ljunberg + reekz + strictlyblackpool | 109 | 0.0128237 |
759 | indianajones + french + bio + kindess + larousse + rickenbacker + rosegoldgang + webbelliscup + stunts + faves | 124 | 0.0145884 |
76 | foodwaste + unitedkingdom + free + irseven + flatbread + baguette + avocado + falafel + gluten + chipotle | 259 | 0.0304710 |
760 | pain + cripple + lapha + rearranged + proposes + ha + regarded + yeyi + apologising + arrangements | 65 | 0.0076472 |
761 | lilia + taila + teampixie + xx + beginnings + gent + sweetest + fiona + glenn + david | 50 | 0.0058824 |
762 | guji + inclement + larkai + mcmoon + moony + needanotherholiday + pocketmags + tayyab’s + wentz + masi + nisha | 76 | 0.0089413 |
763 | sad + hair + ell + blackpool + gt + aleyna + beaneath + bombaybadboy + callice + chucklechucklevision + combo’s + cryy + dnce + evenmotherwasscared + flairy + fuckin’ell + giris + globalwarming + kyliessecretnight + likesthat + peakest + rentboy + tilkis + tinydeskconcerts + transfusions + youstupidgreatlumpolive | 190 | 0.0223533 |
764 | jumps + areoplane + dahlin + enjoyitall + evears + goethe + hepicopter + hermano + jokanovicin + palla + sugared + superclásico | 119 | 0.0140002 |
765 | sleep + tired + feel + wanna + laughing + hate + bed + cold + loud + imagine | 12819 | 1.5081389 |
766 | findomme + baby + imaginary + screw + header + pls + akwaababall + buhh + cuckys + famgang + fireworksnight + headassery + jibby + judgiinngg + kiyoko + nationallottory + puelball + rind + summerville + supermarketsweep + talktome + tonioli + wburs | 217 | 0.0255298 |
767 | wait + dinner + absolutefavrestaurant + alotclosertohome + arsholes + babbas + bustling + cannes2019 + foxtonlocks + greas + hellospring + snowfall | 92 | 0.0108237 |
768 | fuk + alan + andthewinneris + ballpits + bribery’you + chokoraas + coursework’ll + inje + leavehimalone + reminderespeciallyformyself + snowfl + wanasemanga + youknowwhoyouare | 83 | 0.0097648 |
769 | disturbia + hhp + sheroes + whitlows + youstillturnmeon + bepicolombo + thunderbolt + yorke + hoods + yvonne | 52 | 0.0061177 |
77 | image + day + john + soulages + jean + pierre + james + abdelkhader + adeney + adolph + alda + aleen + aleksandr + alenza + anatsui + anedd + ansingh + archipenko + arge + arshile + auguste + barriball + basquiat + bassous + beahkov + billmark + boghossian + bonheur + bracht + britton + brofett + brzesk + bunce + chakrabhand + coppin + cotman + danielsen + deyneka + dunkley + effat + ephrem + eugen + eugenio + fischl + fontana + gaudier + gayane + gensou + girtin + goodloe + gorky + greavette + hadjisoteriou + hammershoi + heungsou + hoang + houamel + hye + ikeda + j.m.w + jakob + katz + khachaturian + kitaj + laidlay + latilla + llia + lorgio + lucio + luostarinen + mammen + mantegna + mantz + masuo + menzel + menzio + monamy + mousseau + nagy + nashashibi + nerio + okuda + onditi + osborn + permeke + posayakrit + r.b + raemaekers + rankle + raveel + rawsthorne + rego + rubens + skunder + sok + soldon + stael + stannard + steuart + tapies + tich + ugolilo + uhlig + venny + vilhelm + wishart + wyndham + xanthos + yacouba + zumian | 119 | 0.0140002 |
770 | wemberley + god + freak + 000192 + 180718 + chitting + ermal + haha.what + mine.xx + refrence | 62 | 0.0072942 |
771 | leriq + flirt + wait + 21days + actin + changemanagement + cheekysmile + choicestyleicon + dadjoke + derbydays + everylittlehelpsright + hdbsjbsjana + hotcakes + lusciouslips + mummas + perries + porsha’s + superduper + teguise + thatsanotherdaygone | 154 | 0.0181179 |
772 | freakiest + aiko + daps + dexta + wait + jhene + graceful + anniversary + glissade + jamietld + jovovich + lomacampbell + milla + mushed + rollonibiza + specialmoments | 104 | 0.0122355 |
773 | makeyourowncorbynsmear + corbyn + erg + jeremy + meek + circle’s + imnotsorry + kxipvkkr + marathi + rastafarian’s + rednapp + touchs + whyijoinedtwitter | 64 | 0.0075295 |
774 | anabel + blanchard + lawrence + commentator + jeremykyle + cah + 270s + albee + chiwali + cissam + cunton + enought20 + fourtick + ginsberg + jamescorden + killary + lecure + moxon + nascar + quickscopes + revo + soccernans + trubel | 53 | 0.0062354 |
775 | beautiful + stunning + xx + babe + pic + awesome + gorgeous + xxx + ha + congratulations | 381 | 0.0448242 |
776 | actress + 16.12.2018 + biancaandreescu + fankoo + fluffballs + hibaag + jackanddani + renesmae’s + shethenorth + shorthair + teyanaandiman + theconjuring + usopenfinals + yussuf + zane | 64 | 0.0075295 |
777 | sonali.ig + eya + falcoreislanduk + ongwana + zstnc + 10k + xx + follow + lezza + pigmented | 56 | 0.0065883 |
778 | gtworld + gift + rays + clouds + activecampaign + bashy + crashied + definelty + fluffier + g’up + kyalami + mondos + nyonya + soons + whatthefluffchallenge + whenyouwakeupand | 111 | 0.0130590 |
779 | cute + beautiful + smile + sexy + love + m’a + baby + cutie + boy + god | 2269 | 0.2669449 |
78 | 8️⃣ + luckiest + inspirationnation + hoping + babe + favourite + advent + day + adv + cola | 72 | 0.0084707 |
780 | 50pus6753 + 5a + basketcase + cherrygoodnight + dangerdanger + genoristy + gsadventday13 + icefesto + kwayet + kxipvsrh + mougthly + neighbourhoodplan + reimbursement + upperedenvalley + whychangeofheart | 58 | 0.0068236 |
781 | pic + picture + photo + pics + xx + snap + beautiful + _visauk + everso + notbthat + novelway + puttingthe + visauk | 69 | 0.0081178 |
782 | share + fantastic + cancerhasnocolours + ludens + xx + jake + manupmywardrobe + busker + discolouration + luckier + wd | 62 | 0.0072942 |
783 | pic + xx + nice + cum + cheape + lovelyvxx + xcxx + carlings + babe + um | 51 | 0.0060001 |
784 | xx + ace + spiritridingfreetoys + shared + retweeted + jo3official + babe + pls + xxx + photographer | 197 | 0.0231768 |
785 | xxx + babe + xoxo + comp + xx + id + steamin + shirt + shared + edinburgh | 249 | 0.0292945 |
786 | giftbetter + eat + amounts + bills + brianna + couplers + déjeuner + fathersons + gudday + guzzle + milkshaking + mybackpackisfullof + voteonthursday | 79 | 0.0092942 |
787 | grecian + norwichporridge + speccie + thelavenderhillmob + zap + luckoftheirish + stormtrooper + dm + clare’s + clover + mac’s + pvc + urn | 80 | 0.0094119 |
788 | sleep + snore + awake + exams + finish + loveislandlates + onlyfourhourssleep + shoveling + thorpepark + turnpike + worsts | 63 | 0.0074119 |
789 | awake + sleep + daffodils + wardrobe + wide + glittery + hours + tomo + 5am + sleeping | 100 | 0.0117649 |
79 | 12pm + indo + tawa + hire + grill + 4pm + menu + restaurant + venue + chinese | 126 | 0.0148237 |
790 | peaceful + amazingaldichristmas + hope + max + afternoon + day + wishing + morning + happy + inspirationnation | 72 | 0.0084707 |
791 | sausage + stressed + pains + feels + attit + bonnke + clien + headachy + notchristmasfilms + rasher + reinhard + timetabling + walk1000miles | 57 | 0.0067060 |
792 | disgusting + animals + slapping + girls + sick + act + cah + fuck + 94.26 + alanis + btsxlotte + crac + diferent + gorimapa + kecah + maddie’s + mindfullness + morissette’s + narsstty + nimeosha + survivalist + unislamic + vyombo + wispies | 110 | 0.0129414 |
793 | jamaica + armitage + jenners + kardashians + laws + zimbabwean + florence + unpopular + listening + apology | 74 | 0.0087060 |
794 | chelsea + 0 + 1 + lcfc + liverpool + performance + lfc + season + 2 + avfc | 77 | 0.0090590 |
795 | ॐ + outdated + car + brake + realise + pad + cars + cards + urge + 21december + 70.61 + 90x40cm + advisories + baes + bhagavadgita + daltrey + elena + ffstechconf + gotthatfridayfeeling + kayak + kayaks + kwikfit + letsjustcrackonnowalready + nelis + papped | 97 | 0.0114119 |
796 | insta + dcdatgdshtde + groupchats + hmwk + primeday + wastemans + invader + mohawk + puzzled + ugly | 53 | 0.0062354 |
797 | varda + watched + agnes + film + rhapsody + bohemian + batman + screw + films + netflix + score | 138 | 0.0162355 |
798 | weather + cold + snow + middle + rain + wind + o’clock + snowing + england + hot | 791 | 0.0930601 |
799 | gea + lloris + goal + de + header + lukaku + eurovision2019 + hibshearts + tottenham + argnga + arsnew + beepbeep + veron | 51 | 0.0060001 |
8 | win + love + hm + pizza + xx + favourite + guys | 57 | 0.0067060 |
80 | weekend + wonderful + glory + hope + xx + lovely + femmes + conformity + femininity + brill | 243 | 0.0285886 |
800 | pubs + ukpubs + reign + dovercastle + helsinkinightclub + rainbowanddove + blackhorse + ireign + wereign + pubsmatter | 81 | 0.0095295 |
801 | picoftheday + wall + wallpaper + mural + bespoke + art + style + photo + video + chainesdancecompany | 113 | 0.0132943 |
802 | liverpool + league + lcfc + goal + arsenal + game + spurs + player + win + season | 7603 | 0.8944832 |
803 | god + careful + m’lady + reunion + 1gs + beirut + biscuitchat + cosmonaughties + fuckijg + hellinacell2 + lcfcu18s + mada + northbank + paddycam | 178 | 0.0209415 |
804 | depends + yep + plan + doubt + careful + choose + sounds + bye + lord + suppose | 192 | 0.0225886 |
805 | jeremykyle + scum + bastard + twat + puel + breathing + footy + fixthisshit + game7 + joewicksthebodycoach + johnsnow + malfeasance + papoos’s + papooses + plinkey + poaching + robporter + roughedd + tigercubs + unseat + yoghurty | 110 | 0.0129414 |
806 | agree + suits + charege + dhhdhsjs + electi + magique + makehimgoaway + oxjin + s0ns + selasi + tweethandle + verire | 143 | 0.0168238 |
807 | uni + lectures + stalking + exams + fifteen + 21sts + aslevel + badstockphotoofmyjob + boated + cram + foreverababy + irlensyndrome + isaw2018 + mias + rfid + ringlight + sidling + smad + spinis + studentblogger + thrumming + tonght + undergraduat | 104 | 0.0122355 |
808 | mine + speak + marry + fab + vibes + borek + crackham + deff + dissodone + hemorrhoids + myrdoch + quotidian + simpal + tgem | 179 | 0.0210591 |
809 | waterfall + brit + 352 + anthisan + dews + hamletbbctwo + jwp + mafalda + mcclaren’s + mindbending + mrissed + reattached + rigg + righr + russellhowardwho | 91 | 0.0107060 |
81 | foodwaste + unitedkingdom + silverarcade + classic + superclub + pret + ouch + restoration + arcade + free | 116 | 0.0136473 |
810 | forthethrone + klitschko + folds + lukaku + baller + fucking + channelling + barlow + game + alonso | 225 | 0.0264710 |
811 | grm + daily + video + music + m1llionz + headbanger + headie + mods + 50shadesoftiger + aj4y7 + anilbria + baynes + clacey + david_sachdev + doingwhatwedobest + doj + dolores + ekk + emilio + gabriela + georgeezra + gruenwald + hasselblad + hotsummerdays + imstillremembering + internetfriends + internetfriendsmeeting + linh + lippy’s + luzern + medellin + mmtakeover + muotd + neilsmithcreati + newcombe + nguygen + rabbitrabbit + sbtv + simrunbadh + snookerloopy + sunmer + twoyearold + xpan | 79 | 0.0092942 |
812 | freshener + hybrid + dyinghg + elbe + fodmap + loil + woos + woza + yeshobby + medicate + treads | 75 | 0.0088237 |
813 | sins + delete + beautiful + alchohol + bohill + daiy + eyelure + mountclothes + olbus + 2p’s + misquoted + newhaven + prude + sativex + serafina | 120 | 0.0141178 |
814 | cham + abhorrent + despise + opinion + sexton + withnail + emery + everton + napoli + goat | 150 | 0.0176473 |
815 | answer + heaven + god + lot + boys + familiar + bad + blocked + ffs + sounds | 175 | 0.0205885 |
816 | lending + proved + barbecuing + boycot + copyrights + fashi + fucku + guaidó + leeson + opprobrium + ugl + venomous | 50 | 0.0058824 |
817 | freelance + printing + internet + possibly + anothergasleakinleicester + girlsincarcerated + madeit + misunderstandin + scavenging + personal | 66 | 0.0077648 |
818 | fever + eat + snm + stock + producing + hay + popcorn + drink + vegetarian + aftershaves + ag5 + bady + blondebombshell + br3 + crêped + dogo + errday + schlapp + sobersally + strawpedo + thatsmademyday | 149 | 0.0175297 |
819 | friday + bday + sleep + sunday’s + o’clock + 7.45 + friìiday + growingupfinally + mortgagewankers + thatdepressionfeel | 77 | 0.0090590 |
82 | 20mm + lense + preach + nikon + ass + 22 + fireworks + badly + london + 10 | 65 | 0.0076472 |
820 | green + chickenness + familyouting + getgremlytograduation + harjap + when’t + admires + funnel + sud + thistopia + trilby | 52 | 0.0061177 |
821 | shoes + broke + coats + shopping + marrying + flick + porridge + twenty + goose + bankncard + clerking + doublefigures + geniusbar + notcoveryourfinances + regift + tapsaff + theartofbouncingback + whenfinancedoes + wqwtvh | 100 | 0.0117649 |
822 | rink + cctv + meghan + amberwindows + ashole + bhikhu + concer + hellmann’s + kuda’s + kumlien’s + luncg + medicinecalling + multiplex + ng12 + parekh + prem’s + shawall + sheik’s + triviathursday + ukippy + workaholic | 55 | 0.0064707 |
823 | arafuckingbella + jacare + liol + nioolas + sandbach + todayb + yamcha + lip + else’s + hercule + jepson + jovani’s + royalbaby3 | 54 | 0.0063530 |
824 | puffs + creampuffs + mutual + avidly + buyingahouse + cpp + enobong + fortni + hammer’s + helptobuy + specialff + ufgently + unfettered + waitingtimes | 58 | 0.0068236 |
825 | rip + sunshine + 08.01.19 + ayebody + bruntingthorpe.even + cataracts + haxan + iproc + moistmonday + on.tigers + sextalk + wnjoyed | 86 | 0.0101178 |
826 | pillow + inshallah + qik + sabelo + tanqueray + polish + garnishes + wicklow + boe + penoosa | 81 | 0.0095295 |
827 | patches + stoned + bedding + candle + fam + inshallah + pair + adian + aroyalteamtalk + dilit + inspiringwords + ndole + pleasee + remmeber | 203 | 0.0238827 |
828 | stoned + heaven + advocategeneralwatch + balkans + barf + belling + nippiest + philli + rafio + rugbyam | 102 | 0.0120002 |
829 | trust + unbelievable + hokage + kagame + schone + undetectable + unsurprised + 72milli + foresee + gap | 96 | 0.0112943 |
83 | links + count + adoption + protests + chance + included + forced + aiden + click + vie | 121 | 0.0142355 |
830 | stink + sleep + nap + rice + fuckery + kinda + 10.40am + bihh + bobcat + bodywarmer + fluoride + maray + muskets + noseyseason | 113 | 0.0132943 |
831 | pay + buy + expensive + afford + spend + sleep + awake + spent + paid + cash | 1844 | 0.2169442 |
832 | imagine + duran + male + kmt + white + dinage + gissing + ground.the + hmrcrefundscam + inaint + jinna + jmu’s + kinlg + metroland + professing + sex.i + tearworks + whatabitch | 94 | 0.0110590 |
833 | isapp + mande + nasilemak69 + notifies + nown + sledgo + steadyareyouready + surgest + ww84 + bounceback + elevensies + groupchat + unr | 69 | 0.0081178 |
834 | tongue + pissing + mouth + ffs + fuck + shaku + faint + someone’s + cursed + phone | 227 | 0.0267063 |
835 | fuck + laughing + loud + happened + hell + wrong + tf + whats + people + actual | 4057 | 0.4773009 |
836 | portman + films + morons + natalie + dinnerladies + hnd + equality + criminal + fuentes + lehmann + liers + monologues | 70 | 0.0082354 |
837 | horny + 19 + sleepy + alcholohic + bdodarts + bigday + butmustkeepgojng + ketosis + loggins + mind’s + mohamoud + tinkers | 99 | 0.0116472 |
838 | betterbrew + cavalli + espadrilles + stirs + toreador + yorkshiretea + youngman + ha + nocturne + pyrex + refinitive + sweated | 58 | 0.0068236 |
839 | askally + any1 + bo4 + hey + xx + kwiff + ps4 + 2k20 + play + legends | 174 | 0.0204709 |
84 | weekend + lovely + brill + hope + goodluck + daire + rob + simon + wonderful + craig | 91 | 0.0107060 |
840 | sad + business + gutted + cgl + getchu + mind + 49ers + octagonal + forget + duct | 103 | 0.0121178 |
841 | pink + colours + rf + calmed + agree + gifs + rebecca + answercto + autoco + barbrawl + batti + britainslostmasterpieces + burin + crumby + drakefell + goust + hallers + ihearttattyteddy + kuffar + meninist + mosli + novelist’s + rembrandt + spamforbrains + tweetit + whishaw | 269 | 0.0316475 |
842 | pounds + fantasies + cancer + connie + warmth + weigh + damaged + lacking + sad + tough | 61 | 0.0071766 |
843 | luck + news + pinkmagazine + ruti + xx + thankyou + 60m + cinamoncat + woohoo + johnny | 328 | 0.0385888 |
844 | distrust + fenty + priv + 700k + behooves + bratty + breitbart + contradictive + execs + gradients + grg + imprinted + mcdreamy + proportionality + stoatandbiscuit + thotfapman + work.hate | 59 | 0.0069413 |
845 | allium + roof + vanish + middle + england + 1.01 + 11yr + consu + contect + culldungsroman + fab2019 + futurejobs + pantone + polytechnic + snapcha + swebsite + upt + yourholidayisover | 116 | 0.0136473 |
846 | ghostarchipelago + joll + bronwen + oregano + hicks + olympian + zand + beaker + misspelled + woojin | 62 | 0.0072942 |
847 | poptart + blue + horny + read + controversy + nets + badrhino + btwx + filtresàselfiecanadiens + fuckedontherocks + fums + happyfinaltransferday + kind.x + lokso + makeasongdrunk + megapixel + orangeade + shitall + somelovelyquotes + teamedward + tolateraled + trademarked + unbanned + witt | 269 | 0.0316475 |
848 | devorced + insensitivo + pahaahhahaha + auidence + florists + menopausalwomen + impresses + spurs + orwell + tint | 61 | 0.0071766 |
849 | fooker + timothy + timmy + loud + loses + lads + lee + laughing + average + kante | 93 | 0.0109413 |
85 | nite + toastie + mustard + foodwaste + unitedkingdom + ham + cheese + free + tuckered + toasties | 83 | 0.0097648 |
850 | brexit + betrayal + inflict + tory + marr + 251thisyear + b’n’n + cliffedge + everybodyelseiswrong + onviously + orgeza + p.r + trogan | 57 | 0.0067060 |
851 | newfoundland + avi + header + eve + descendent + dungul + eecomelbodo + joelycettsgotyourback + neenaws + pushingmyluck + silme + suys + unassailabletalent | 80 | 0.0094119 |
852 | cabbages + lawofattraction + sainsbury’s + loa + 12july + ballaghaderreen + chopra’s + disinflation + dobbies + dynamo’s + fcukregev + gammon’s + kitsune + marblehead + middx + middxleics + milbrook + mygirlbandiscalled + naan’s + noele + powerwall + regevoffcampus + shopworkers + signwriters + solicitor’s + soundproof + submits + sumi + thecommuter + thewarriors + tomschwarz + tysonfurytomschwarz + ukhospitality + unsa + urbanutility + zaka | 86 | 0.0101178 |
853 | courier + le2 + bev’s + bitdegree + datacentre + destructions + euparliament + gsme + kamall + kt2 + mccains + movingon + ng21 + pshychiatry + steemit + stromness + syed + syedkamall + ultrafast + visu + xlwb + you’scunext + zuckerberghearing | 50 | 0.0058824 |
854 | skylink + 02.08.2018 + animates + chesterfeild + eastmidlandtrains + fbloggers + garnier’s + penci + ust + wrestli | 63 | 0.0074119 |
855 | blue + wootton + fams + godennis + greenmanalishi + kkrvcsk + ole20 + skillset + talismans + poo | 91 | 0.0107060 |
856 | announce + deffo + hushhush + bants + stop + yeah + gary + kremmos + bottom + fuck | 1808 | 0.2127089 |
857 | harsh + pathetic + awkward + yeah + prick + madness + treat + 90minutes + cavalcade + coked + darky + kickracismoutoffootball + movings + reeal + showracismtheredcard + wadaha + weasil + weried + winstons | 167 | 0.0196473 |
858 | anxiety + liquor + affairs + ileugl + realblackpool + suicide.againstantidepressants + znfnfbfnjd + xoxo + edans + neave + unfashionable | 69 | 0.0081178 |
859 | drug + clout + nyt + wear + brie + coloured + bentner + dbi + inhibitors + loyl + trainer’s | 64 | 0.0075295 |
86 | morning + a2z + atz + tz + hey + 7books + read + lot + nomination + kpop | 258 | 0.0303534 |
860 | novelist + shoes + ima + accentchallenge + desd + gutho + haemostasis + oddaa + oluwa + scosmr + sunlit + thatwhitefriend | 129 | 0.0151767 |
861 | trousers + biffers + deniys + fifalife + krokodil + portaloos + ryanaircyberweek + slappers + harvesting + strains | 78 | 0.0091766 |
862 | bhoy + congratulations + superstars + proud + congrats + deserved + achievement + infirmary + batleyandspen + bryers + gishmeme + lydo + muchas | 75 | 0.0088237 |
863 | mascriding + islam + charlatans + illiterate + prisoners + 80 + rooted + loveisland + monty + europe | 52 | 0.0061177 |
864 | luck + booyaka + dadgoals + fundads + giveakidthebestlife + greenings + shr + tgtconf18 + tinguk + valueeducation + voteeducation + youreonlyyoungonce | 57 | 0.0067060 |
865 | sceptre + healthpsychology + msc + toda + leicestershire + acapellas + audisq7 + beavertown + blockley + bovver + cdj + curdling + dailycalm + edibl + eqpmnt + fisher’s + iamrare + kulwinder + mindmatters + norrie + numtraining + occupationaltherapy + onepintlighter + otstudent + phdsupervisorlife + pretender + revalidation + wellnesswednesday + yearofcalm + zootropolis | 61 | 0.0071766 |
866 | reasons + watched + thirteen + swati + unbreakable + police + binged + episodes + translate + african | 126 | 0.0148237 |
867 | brexit + voted + labour + eu + leave + vote + rudd + tories + 17.4m + extension | 83 | 0.0097648 |
868 | election + brexit + voters + referendum + vote + voted + pigs + eu + dickdicks + easyer + mayoutnow + uinon + whatsthepoint | 58 | 0.0068236 |
869 | laughing + true + sounds + loud + waiting + bit + yah + ass + damn + wee | 2795 | 0.3288282 |
87 | precisely + painting + contact + loadofballs + confusion + aha + coys + gary + kmt + bro | 52 | 0.0061177 |
870 | slave + pain + amoeba + amoebas + bharata + catthorpe + disfuctional + free’d + lintels + natyam + psychotical + spellbound | 80 | 0.0094119 |
871 | asksrk + designers + gon + injuries + infirmary + 4thvisit + febreze + habon + my1stquestioninheaven + rerferemdum + rhetoricalquestion + winwin | 58 | 0.0068236 |
872 | confortable + logos + universal + 1954 + 2ltr + analysise + anusface + banchees + bestsellers + brummies + burr + cindere + denbies + devinya + doctored + gahh + hardcore.the + neworleans + soiuxsie + sphincter + stanhope | 54 | 0.0063530 |
873 | kev + enjoy + 3thousand + onbut + pikapika + see.sound + summerxs + unmute + yourll + admins + busybusy + furman + tinks + tryanuary + tuffers + walnutgate | 72 | 0.0084707 |
874 | reasons + thirteen + tam + netflix + amsterdam + 15million + bbcimpartiality + disseration + goodnotes + illumination + imbasicallyanticipatingabasicallykkaxonbasically + ittchy + msisrubbish + netflixs + notability + nt’s + thatinsulttho | 69 | 0.0081178 |
875 | dat + tonsills + birth + dis + asthma + fave + birdingloveit + feartwd + realsupport + xxc | 70 | 0.0082354 |
876 | photo + budd + pic + roxy + marathon + pictures + film + gary + brilliant + aqp + bettina + cozzy + damaris + diction’s + ess + fakery + freshersflu + isthisthereallife + kadar + larksintransit + mâché + mosthaunted + panzers + patrickwolf’s + saheb + unhurt + willie’s + winsbury + wow.gorgeous | 177 | 0.0208238 |
877 | tunnel + george’s + ir + enjoyed + walk + gig + mile + busy + inspiration + gb | 122 | 0.0143531 |
878 | cooked + goddess + chrome + declined + aliens + breakfast + narrative + sell + alibis + asalamualaikum + domme + horizont + kubernetes + malp + recogniti + riseyourwallet + sayimg + shitstor + surpost + telli + truecaller + umthakathi + waktu | 81 | 0.0095295 |
879 | 0to100xmas + tickets + wizards + hallway + wizardswonderland + boutique + madfriday + wonderland + motivation + thecurryshow | 87 | 0.0102354 |
88 | stevie + tribute + reminder + rt + quick + friday + night + ch + chee + che | 70 | 0.0082354 |
880 | timepm + boxing + activities + association + unity + spinalgraps + round + bringing + earlybird + tickets | 62 | 0.0072942 |
881 | fake + fuels + fossil + justsaying + greedier + infantilism + kust + nosuprise + nuf + peculiarly + redistribution + replapsed + sorry.i + that.he | 52 | 0.0061177 |
882 | nestle + crushed + factory + hundreds + jordanova + ludmilla + quirks + prof + engines + chocolat | 122 | 0.0143531 |
883 | ayston + le3 + 7b + 0to100xmas + 2ga + giffardliqueurs + boutique + shooter + 15.5cm + aystonroadbarbers | 160 | 0.0188238 |
884 | geekycocktails + giffardliqueurs + nims + boutique + shooter + cocktail + cocktails + leicestercocktails + bluecuracao + decor | 365 | 0.0429418 |
885 | awesome + yuh + 3grams + bootie + emblazoned + lickeble + marsexit + minipip + shawty’s + stearing | 119 | 0.0140002 |
886 | panoramic + influences + soulful + rating + flavours + enterprise + arthroscopy + bhaktirasamrta + colby_richardson + excusethesliders + idm2019 + invitee + meniscustear + nathanie + nrhbcf18 + prayerful + premere + samiya + team.they + topa + wonderdog | 51 | 0.0060001 |
887 | luck + wellocksadvent + congratulations + wherehistorybegins + congrats + proud + xx + bb + beth + baith + dontleavepls + glocalization + jack_mrengland + keanan + nitesh + scottishteacheroftheyear + sharethehobbylove + syuhrah’s + winnersanyway | 108 | 0.0127061 |
888 | luck + cinnamoncat + yay + aww + johnny + proud + xx + team + xxx + congratulations | 277 | 0.0325887 |
889 | luck + yay + deacy + harries + thegrinch + guys + pinkmagazine + cheers + aw + awesome | 220 | 0.0258827 |
89 | version + fireworks + imma + start | 78 | 0.0091766 |
890 | eos + canon + sigma + mki + 5d + morningside + 50mm + mercure + 1.7 + 50iso + nine0 + rhul | 64 | 0.0075295 |
891 | hyst + janet + developed + madonna + adl + heartbr + northside + sadowitz + situates + unabashedly | 57 | 0.0067060 |
892 | gutterball + kirkwood + pi’s + shjt + smooch + sugarmums + charleston + shittin + stupidquestionsfortheschoolnurse + tassimo | 56 | 0.0065883 |
893 | chelshit + pum + classic + dickhead + sack + continue + 3wordweather + 43yr + celled + davounii + smoocher + thebiglearnersrally | 79 | 0.0092942 |
894 | xxx + bravi + dingy’s + l.o.l + ragazzi + spreed + donel + sweeties + ya + sammie + tomasz | 77 | 0.0090590 |
895 | netflix + heinz + loved + 03.45 + anerican + cyberverse + doerr + likevthe + mayitlastforever + mfl + najeeb’s + roadtorecovery + sjp + tardigrade + tawny | 99 | 0.0116472 |
896 | krypton + syfy + watched + luther + bulimia + carbonation + endofthefxingworld + jefferies + qnd + thearchitec | 53 | 0.0062354 |
897 | prav + understatement + bib + 22st + ascension + lifeofastudent + swilling + cocksucka + islamaphobes + labourpains + sixnationsrugby | 97 | 0.0114119 |
898 | shoes + wears + hope + wear + understand + pants + socks + shirt + jeans + hair | 445 | 0.0523537 |
899 | yah + 22g + dullness + every.single.year + rosd + shellz + spina + vechile + clammy + kneading + overdosed + pager | 55 | 0.0064707 |
9 | leicestershire + manger + highcross + roundhill + adult + nixon + learning + bees + knees + court | 98 | 0.0115296 |
90 | honestly + truthfully + portsmouth + eats + sucks + uber + bin + hun + honest | 51 | 0.0060001 |
900 | login + account + dm + darran + le39qb + so’d + mercury + avios + deta + diddnt + perce + timotei | 50 | 0.0058824 |
901 | gangs + cats + operating + ayite + gridlock + groml + polistick + unconventionaldarkness + behave + washy + wishy | 72 | 0.0084707 |
902 | cutie + afresh + fuck + booties + cancel + hope + 100 + beginnings + mm + sauce | 195 | 0.0229415 |
903 | laughing + loud + huh + reo + speedwagon + tobacconist + cudnt + franz + lfcvcity + whats | 87 | 0.0102354 |
904 | potato + tastes + beetroot + strawberry + badtimesattheelroyale + bide + esomeprazole + feldman + freche + marigoldhotel + northbankclockendhighbury + restarau + rmb + spatz + summermia + v4 | 89 | 0.0104707 |
905 | jamaican + tl + fuck + jesus + ahistorical + anthropomorphic + chandock + cheeran + inouarashi + jilo + nek + propanganda + swordsman + tyson’s + waja + zoo’s | 50 | 0.0058824 |
906 | question + fuck + happened + surely + people + whats + hey + tickets + hell + laughing | 26885 | 3.1629858 |
907 | algebra + kleeneze + barbies + gt + ticket + webcam + replacement + bands + restrictions + scotland | 155 | 0.0182356 |
908 | broken + relatable + banger + annoying + sexiest + hardest + crap + worst + accurate + trash | 235 | 0.0276474 |
909 | brexit + corrupt + eu + tory + centrist + poorer + democracy + tories + negative + conflict | 74 | 0.0087060 |
91 | cheers + capes + losange + wear + hero’s + foodwaste + heroes + baked + unitedkingdom + stone | 267 | 0.0314122 |
910 | mathswwc + coq10 + edema + macular + rvo + sweepstake + fireleicester + numeracy + algorithms + department | 95 | 0.0111766 |
911 | naqshonline + store + dresses + womenswear + colours + dress + nims + boutique + glitter + online | 1863 | 0.2191796 |
912 | sdgs + spate + year11 + year8 + presttitut + today’s + mumbai + improving + abortio + accoutrements + aspley + book’s + deputising + eastmidlandsgateway + facu + firebug’s + hhpapp + indianapolis + ioan + juntendo + kinmonth + lesley’s + longlister + machynlleth + marfan + n.robinson + ng_supereagles + plou + pwei + radiolink + selfmanagement + sustainabledevelopment + wmcna + worksmart + ypf | 81 | 0.0095295 |
913 | agree + totally + smoke + lecturer + 18mnths + brawling + gaswork + sensatori + styrene + surre | 63 | 0.0074119 |
914 | fly + bro + ayamm + junkets + mashreport + teaam + yungers + administer + derisory + idiosyncratic + midline | 94 | 0.0110590 |
915 | watch + gotchu + gamble + forgotten + cockrock + dooleys + hhm + mashaka + smack’s + vax | 86 | 0.0101178 |
916 | singaporeans + meghan + articles + hole + news + harry + police + prince + cyclist + street | 149 | 0.0175297 |
917 | teemo + lord + rush + alertness + balne + blessedness + calcio + ewok + freud’s + hatoofficers + niv + strobes + tweetdeck + unacknowledged + visiblemaths | 53 | 0.0062354 |
918 | lynda + comm + eaton + cllr + sunday’s + 1963 + 260st + althusser + brigden’s + cambria’s + disadvantages + freego + gen2 + gene1 + hallvard + jmasouri + kalamazoo + onlyonepxg + oscarprincemusic + otmoor + pilotlife + segamastersystem + sidebottom + steffens + sundaygolf + unheavenly + usernamelondon + wined + wmn + wotsapp | 78 | 0.0091766 |
919 | donald + mornin + song + december + game + trump + ft + boom + michael + mavado | 241 | 0.0283533 |
92 | wonderfully + ff + artists + talented + dedicatedly + ks2 + talents + sixty + genuinely + count | 53 | 0.0062354 |
920 | citg + kuvunyelwe + sheals + prayers + notifs + recipient + transsexual + feedbacks + freespeech + lantern + moaner | 63 | 0.0074119 |
921 | digestives + rewatched + yum + bagainsciously + bbvalentines + dubh + foundobjectpuppetry + laidley + longneededbreak + panc + saúde + toolstuesday + venom2 + vinho + zeo | 107 | 0.0125884 |
922 | duff + pancakes + cheers + cheese + coker + derrygirls + gangrel + its_happening.gif + macandcheese + macdonald’s + oneshow + ørsted + spall + tetleys + wankered | 95 | 0.0111766 |
923 | delete + lemme + tommyrobinson + learn + everyday + lame + plank + dry + header + draupadi + gaggle + gofgi + grc + hemorrhoid + impersonat + moshpitting + origintes + ormrod + perhapps + publicty + sanbizzle3333333 + skieoner + smugmarcel + wew | 232 | 0.0272945 |
924 | americans + somalians + rah + africans + grooming + rafa + nob + pokemon + altooki + carribbeans + delusia + fantasist + inbreeding + kebbell + lacasadelasflores + northernness + romanians + shur + tase + yoplait | 81 | 0.0095295 |
925 | rap + mumble + music + song + rappers + assurance + katy + genre + album + anthem | 83 | 0.0097648 |
926 | spell + products + bundle + weird + anstrad + attslamdunk + bankruptcybands + dafs + ddp + fuckjng + hellbound + hitmarkers + idiotbaby + kellys + majotiry + muellerreport + naughtymuj + netanshit + newambassador + rainbowism + stringent | 200 | 0.0235297 |
927 | reload + pussy + brave + accurate + suck + banz + cbbnatalie + demn + diverter + gorgues + groins + makeliteraturesexy + murph + outbreaktour + preconception + rightlg + sexymenuitems + truthing | 174 | 0.0204709 |
928 | cool + beautiful + harrison + afsgw18 + alanchambers + engvirl + ippo + massive.thanks + yes.yes + brudda’s + embodiment + hajime | 69 | 0.0081178 |
929 | whale + thanksgiving + bruno + proud + amitji + beasties + bloodborne + bodie’s + dawdling + flightschool + flightskillstest + pfco + ringchromosome6 + timetotalkday2018 | 65 | 0.0076472 |
93 | sigh + sighs + bcc + aigh + sighh + phdchat + urgh + mufc + af + crap | 57 | 0.0067060 |
930 | agree + concur + icecream + pree + blocked + vic + helmet + naturally + 44mm + 47mm + apogise + awnser + conceit + deafen + dsq + hacienda + hallucination + listicle + rmbr + slapper + tbrvqh | 226 | 0.0265886 |
931 | pray + account + leave + delete + tbf + agree + praying + tut + zimbabwe + heyy | 294 | 0.0345887 |
932 | snow + cheese + spaghetti + peri + lettuce + doom + watched + beautiful + songs + assigment + chancery + chaplin’s + crumbly + dredging + gripp + gudrun + horror’s + husk + kabob + psyllium + rehaul + s3 + slowcookerstuff + themummy + thicko’s + timefor + tomcruise | 131 | 0.0154120 |
933 | didlo + yoghurt + cheers + tasted + donotsuffer + feelers + gesture.well + halloweenkills + paypacket + pengo + smockington | 89 | 0.0104707 |
934 | inject + chop + town + impeachmenthearings + obsessional + suckling + teet + onel + winslet + hazza | 56 | 0.0065883 |
935 | stress + dead + miguna + cigs + edging + cannabis + ahaha + bra + ima + 48min + boggled + conultant + delts + dissociation + frienships + glawsfamily + glawstowin + iwilltrytorememberallofyoulittlepeople + liveeverydayasifitisyourlast + metronomy + mincer + petitioning + sub8ten + sukali + suppin + urrm + whenthereisnochanceofsex | 222 | 0.0261180 |
936 | 0 + u12s + final + finalists + cup + won + finals + bogeys + congratulations + win | 84 | 0.0098825 |
937 | montfort + university + de + dmu + djing + kingdom + united + djrupz + iphonegraphy + thevenueleicester | 200 | 0.0235297 |
938 | sis + energy + collect + abam + attactive + boastfully + consults + manis + meins + numismatists + rollover + shano + testittuesday + turmbun + uncircumcised | 113 | 0.0132943 |
939 | goat + trippier + muscle + thug + 30rain + 8️⃣0️⃣th + ampesi + ariza + chards + deadlocs + deathtoyoghurtmonsters + engarg + justiceleague + kingsto + pyb10 + spearing + superbowl2019 + waam | 102 | 0.0120002 |
94 | chunni + newdupattas + dupatta + foodwaste + pastries + unitedkingdom + crayfish + floraldupatta + mix + online | 67 | 0.0078825 |
940 | plated + scooters + sources + whilst + 21.04.2018 + atlant + attacted + bbcmotd + bejeezus + brollies + escor + findalan + fookin’bastid + holohoax + huhuhuh + kitorang + mortgageprisoners + nopressure + outposts + phills + poundlandbandit + radia + sciencecommunication + thankslet + untainted + weloveir7 + wingmaned + zuckberg | 102 | 0.0120002 |
941 | investment + findom + offering + nt + people + failing + app + frds + read + cashmaster | 980 | 0.1152957 |
942 | intercourse + downloading + theo + acceptability + arsacm + bulging + cluehq + deities + dol + immigrantsongs + ls1277 + mismanagement + morphology + piloted + rf2 + ridiculouskeeper + shrugging + sinatras + statisti + superhuman + weeknigh + wheelbarrows | 91 | 0.0107060 |
943 | doggy + focka + setlement + suspence + sxc + sledges + yard + tiddies + sprain + altered + blouses + ghosting | 55 | 0.0064707 |
944 | swollen + fromaggi + hambledon + quattro + zaflora + drunk + kilos + horny + asbestos + kgs + martinis + vibepayfriday + zoflora | 61 | 0.0071766 |
945 | durnig + 1.4 + allnighter + extricate + quails + tommorrow + coke + tomorrow + policy + noose | 51 | 0.0060001 |
946 | luck + hugs + tomorrow + taping + download + xmas + wait + scotland + hang + sharing | 188 | 0.0221180 |
947 | funniest + ttt + doubling + lovethedarts + nigeria + fav + tunisian + shite + robert + daudia | 176 | 0.0207062 |
948 | couldnt + champion + johnson + boris + control + spot + 5so + doidge + paprika’s + sigala + spiceupmusic + theemmys | 58 | 0.0068236 |
949 | outcome + 8c + braverman + estée + freako + gainsbourg + o’reilly + pharoah + poyser + selector + sisu + winx | 75 | 0.0088237 |
95 | getgarytosingwithemma + relightmyfire + gbsolo2018 + foodwaste + unitedkingdom + desire + baguette + 32ff + faketits + flatbreads | 72 | 0.0084707 |
950 | nyc + annualcamp2019 + cumwhitton + itshersnow + missher + omnes + samme + summerlivesonitv + summersolstice + unem + wtestlecon | 56 | 0.0065883 |
951 | service + 20ft + hundred + phone + brands + hundredths + ladders + micro + hey + sheffield | 112 | 0.0131767 |
952 | statesidesix + submitted + maythe4thbewithyou + starwarsday + entry + enter + steamin + brockshill + crownedbyemiliehair + grwm + irishracing7 | 190 | 0.0223533 |
953 | brexit + voters + generalelectionnow + remainparty + eu + brexitparty + doo + tories + voted + electbhupen | 168 | 0.0197650 |
954 | wicker + wrestlemania + bicentenary + biggardenbirdwatch + blingy + chertseypanto + cocoaworld + daresay + eccleshall + hl + instragammable + shoreham + ttm + tumbet + wolfrun2018 | 82 | 0.0096472 |
955 | song + 70 + rap + muslim + rihanna + listening + portuguese + america + 32yrs + bangerss + cacuasians + colman’s + dontcare + faught + flemish + hongkongers + jhad + memorized + pamela’s + pokemonthepowerofus + seenwhat + tyndall + wringing + you.the | 83 | 0.0097648 |
956 | song + mv + gameofthrones + island + listening + rap + jamming + listened + history + language | 110 | 0.0129414 |
957 | massage + glasses + eaten + 9am + inches + weather + 13p + batchelors + disappointingly + mrsa + sorento + umbria | 78 | 0.0091766 |
958 | muslim + 1950 + fascism + globalist + eu + album + hip + song + sculpture + johns | 89 | 0.0104707 |
959 | lasvegas + sportsman + playground + wrestlemania + vote + 1.25 + bebrilliant + bumbaclause + for610 + granddaughter’s + moni + thepaway + waterbridge | 66 | 0.0077648 |
96 | taas + knots + prize + gbp + spotted + location + speed + fab + heading + hotels | 181 | 0.0212944 |
960 | 11.35pm + ayeartaughtme + beyondlimits + burfield + doaba + hartnell + powertothepeople + spiceless + timeslip + tooting + turnandrun | 58 | 0.0068236 |
961 | imagine + oasis + imsorry + ndabananiyeland + cóques + 28m + burmese + macaulay + ms19 + relies + xg | 53 | 0.0062354 |
962 | netflix + film + raped + riverdale + episode + 0130 + 0230 + edginess + escapetoathena + ishmael + kenya’s + leftenant + lootenant + mashin + me.r.o + migingo + montesquieus + mumbo + photocopied + rogermoore + slr’s + statement.have + storks + tgsalearningisfun + treks + uganda’s + way.this + win.they | 130 | 0.0152943 |
963 | bang + overrated + 18c + crazeh + evver + foodsecurity + ikara + maccaodyssey + madu + moshpit + tremble | 59 | 0.0069413 |
964 | stressed + nervous + cba + followingourdream + movingtowhitby + skimpy + sleighgiveaway + ultram + wotlessness + 3,4 + aaand + gatts + omdz + sores | 120 | 0.0141178 |
965 | frizzy + suturing + puel + 60 + defecto + drucker + kaptuska + oppositions + rowdiness + thouhts | 51 | 0.0060001 |
966 | raheem + stormzy + albrighton + harsha + lothbrok + medicals + skandalous + walshie + gareth + bosch + feltz + sjoberg + uppa | 83 | 0.0097648 |
967 | evil + effigies + filipino + issa + accent + jennifer + catchy + asf + showman + live | 81 | 0.0095295 |
968 | english + spanish + forntite + galicia + galician + guys.he + lonliest + mainlander + methodological + ned’s + song.happy | 72 | 0.0084707 |
969 | again.yes + allbeauty + chockful + crete.might + everytimeitrainsi + favre + happen.ashes2019 + julien + rastafarians + swooner + trafficker | 57 | 0.0067060 |
97 | xx + adverse + experiences + papers + childhood + morning + ace + international + conference + xxx | 113 | 0.0132943 |
970 | songs + racist + nukes + trash + northern + pulls + music + atmospherics + critisism + feminazis + mandatary + mansions + marority + nationalsmileday + nezu + pulip + reclaiming + rockson + saxobeat + vcountry | 132 | 0.0155296 |
971 | actual + brothers + gameofthrones + anywh + freat + glennout + sevond + trickles + whitechicks + thearchers | 91 | 0.0107060 |
972 | country + religion + music + listening + islam + song + tommyrobinson + traitors + british + sighted | 239 | 0.0281180 |
973 | gto + howl’s + anpr + gcses2018 + radio + testify + sabras + 4.30pm + ferrari + increases | 99 | 0.0116472 |
974 | guy + hey + norm + surprises + deliciousness + drugg + kiss’n’tell + lifekeepsmoving + makemusicmanly + dating | 100 | 0.0117649 |
975 | rtc + lane + traffic + causing + junction + tailbacks + road + nearside + blocking + inbound | 187 | 0.0220003 |
976 | rasprclub + dialysis + pd + infants + dhikr + membrane + vans + fire + mortality + overcoming + statutory | 86 | 0.0101178 |
977 | hassle + caused + pain + emotional + bravest + feel + destination + sand + psalms + san | 118 | 0.0138825 |
978 | proud + supported + team + fantastic + congratulations + attended + graduation + amazing + winning + huge | 91 | 0.0107060 |
979 | proud + fantastic + aminatakamara + day1mate + hote + oldhow + saymashaallah + u14s + bonbons + welcomi + yourselve | 53 | 0.0062354 |
98 | har + tweeter + dearest + weekend + mahadev + lovely + india + surprise + shree + wonderful | 73 | 0.0085884 |
980 | laughing + loud + appeased + barma + greenbelt + hott + out’s + tinderbox + cladding + suckin | 66 | 0.0077648 |
981 | canavese + hornseyroad + m’colleague + mate.this + raf.but + rosso + sexyfying + suports + thankyou.i + wadvreallybloved | 59 | 0.0069413 |
982 | kabhi + juicy + aang + bryllcreem + coords + galz + gham + khushi + mastrepieces + tesoro | 53 | 0.0062354 |
983 | congratulations + xxx + proud + congrats + xx + digitalchallenge + rhinoceroses + chuffed + beautif + celia + coley + lils + sportforall | 80 | 0.0094119 |
984 | hope + xx + congratulations + luck + forward + glad + mate + lovely + xxx + enjoy | 6863 | 0.8074232 |
985 | dal + kev + luck + snow + chips + enjoy + rain + awesome + onepiece + brilliant | 391 | 0.0460006 |
986 | proud + demonlove + gostarsgo + improvlove + lborograd2018 + mariya + shandy’s + stocky + zombiemusic + bullseye + crystalball + enforcer + gotoams + ingrid | 85 | 0.0100001 |
987 | pent + bhetke + definitel + detangle + devasted + extraverted + lydon + meonce + winaldjum + buying | 57 | 0.0067060 |
988 | boris + adulterer + ashes.engaus + balvin + belcher + chibu + crus + gangstas + heathcliffe + mortez + privilage + titoff + wynonnaearp | 73 | 0.0085884 |
989 | sylvaniansleigh + hear + eliot + steven + 31.03.18 + bluesy + dakar + dua’s + fuckknifes + proudmummoment + sheenie’s + sluggy + sundaybloodysunday + trishalive + vogueitalia + worldcup2018maths | 90 | 0.0105884 |
99 | cool + jacks + quran + foodwaste + verse + focaccia + toasting + unitedkingdom + nominated + tl | 84 | 0.0098825 |
990 | wait + sleeps + adaduk19 + bcmepencilsforrobaloumeracy + gatprimaryathletics + liveshows + mackems + manship + oneofthoseweeks + schofe + thankyouander + unbelievablejeff | 74 | 0.0087060 |
991 | scarefest + gals + hayley + dawkes + evolution:man + hozier + kenan + mzungu + owlandpussycat + sewnn + teambecky + wrestlemania35 + ymas | 67 | 0.0078825 |
992 | totally + software + 22minutes + agree.never + dedirable + detori + downsized + ebikers + ecclesial + flawlessly + henryhoover + mael + mefuckinow + motocross + nguru + nitpick + obl + paper’s + prevaricating + reichsparteitagsgelände + rti + shiko + suzhou + that.s + wagers | 81 | 0.0095295 |
993 | chitty + mh + mis + junction + les + 180cals + adapts + contin’d + dilute + doomsdayclock + enhanc + fom19 + form.a + fragmenting + img2 + joo + lectu + lucis + mba’s + menstruation + monoxid + nehitv + parliam + plantbasedmag + rejoined + valentinoremz + viewi + walvaus + weshallnotsurrender + xamarin | 78 | 0.0091766 |
994 | coronary + dldk + fourpm + frit + klf + labrynthitis + lookig + nettleship + nonethe + 2ds + boswell + gappy + inverary + kis + loosies + slinky | 60 | 0.0070589 |
995 | tickets + batch + grab + behindcloseddoors + leicesterracecourse + cop + carvery + moneypp + sold + stalls | 78 | 0.0091766 |
996 | song + banger + bop + repeat + songs + album + 1x + tune + albums + track | 75 | 0.0088237 |
997 | beardage + fergoose + preciate + teammall + ucustrikeback + yayuh + callister + disneyemoji + luck + disneybloggerschat + ffed | 63 | 0.0074119 |
998 | giggy + soups + wiggy + news + mrsbs + forward + buffy + dill + shetland + lunch | 207 | 0.0243533 |
999 | auchinleck + bcce + blackbur + consert + grammable + icce + linn + loth + outground + saturdayfootball + venetia | 74 | 0.0087060 |
trans_clusters_and_replies <-
tweet_classifications %>%
mutate(
cluter_or_not = if_else(
trans_umap_hdbscan == "-1", "Not cluster", "Cluster"
),
reply_or_not = if_else(
is.na(tweet_in_reply_to_url), "Not reply", "Reply"
)
)
trans_clusters_and_replies %>%
count(cluter_or_not, reply_or_not) %>%
left_join(
trans_clusters_and_replies %>%
count(cluter_or_not) %>%
rename(tot = n)
) %>%
mutate(
prop = (n / tot) * 100
)
## Joining, by = "cluter_or_not"
## # A tibble: 4 × 5
## cluter_or_not reply_or_not n tot prop
## <chr> <chr> <int> <int> <dbl>
## 1 Cluster Not reply 265141 491557 53.9
## 2 Cluster Reply 226416 491557 46.1
## 3 Not cluster Not reply 217602 358431 60.7
## 4 Not cluster Reply 140829 358431 39.3
trans_clusters_and_replies %>%
filter(trans_umap_hdbscan == "1016") %>%
count(trans_umap_hdbscan, reply_or_not) %>%
left_join(
trans_clusters_and_replies %>%
filter(trans_umap_hdbscan == "1016") %>%
count(trans_umap_hdbscan) %>%
rename(tot = n)
) %>%
mutate(
prop = (n / tot) * 100
)
## Joining, by = "trans_umap_hdbscan"
## # A tibble: 2 × 5
## trans_umap_hdbscan reply_or_not n tot prop
## <chr> <chr> <int> <int> <dbl>
## 1 1016 Not reply 30401 61392 49.5
## 2 1016 Reply 30991 61392 50.5
tweet_classifications %>%
filter(
!is.na(tweet_geo_long) &
!is.na(tweet_geo_lat)
) %>%
select(
tweet_sentimentr_class, tweet_flair_sentiment_class,
btm200bg_topic_sum_b, trans_umap_hdbscan,
tweet_flair_e6c11m2_top_emotion, tweet_flair_c6c12m1_top_context
) %>%
pivot_longer(
cols = everything(),
names_to = "classification",
values_to = "class"
) %>%
count(classification, class, sort = TRUE) %>%
group_by(classification) %>%
slice_max(order_by = n, n = 20)
## # A tibble: 64 × 3
## # Groups: classification [6]
## classification class n
## <chr> <chr> <int>
## 1 btm200bg_topic_sum_b 188 3648
## 2 btm200bg_topic_sum_b 170 2217
## 3 btm200bg_topic_sum_b 146 1533
## 4 btm200bg_topic_sum_b 52 1468
## 5 btm200bg_topic_sum_b 96 1141
## 6 btm200bg_topic_sum_b 165 1013
## 7 btm200bg_topic_sum_b 95 1003
## 8 btm200bg_topic_sum_b 79 988
## 9 btm200bg_topic_sum_b 55 939
## 10 btm200bg_topic_sum_b 129 923
## # … with 54 more rows
tweet_classifications %>%
filter(btm200bg_topic_sum_b == "-1") %>%
count()
## # A tibble: 1 × 1
## n
## <int>
## 1 32481
tweet_classifications %>%
filter(trans_umap_hdbscan == "-1") %>%
count()
## # A tibble: 1 × 1
## n
## <int>
## 1 358431
tweet_classifications %>%
filter(btm200bg_topic_sum_b == "-1" & trans_umap_hdbscan == "-1") %>%
count()
## # A tibble: 1 × 1
## n
## <int>
## 1 9832
trans_clusters_and_replies %>%
filter(btm200bg_topic_sum_b == "-1" & trans_umap_hdbscan == "-1") %>%
count(cluter_or_not, reply_or_not) %>%
left_join(
trans_clusters_and_replies %>%
filter(btm200bg_topic_sum_b == "-1" & trans_umap_hdbscan == "-1") %>%
count(cluter_or_not) %>%
rename(tot = n)
) %>%
mutate(
prop = (n / tot) * 100
)
## Joining, by = "cluter_or_not"
## # A tibble: 2 × 5
## cluter_or_not reply_or_not n tot prop
## <chr> <chr> <int> <int> <dbl>
## 1 Not cluster Not reply 3374 9832 34.3
## 2 Not cluster Reply 6458 9832 65.7
tweet_classifications %>%
filter(btm200bg_topic_sum_b == "-1" & trans_umap_hdbscan == "-1") %>%
count() %>%
pull(n) %>%
`/`(
tweet_classifications %>%
count() %>%
pull(n)
) %>%
`*`(100)
## [1] 1.156722