forked from duolicious/duolicious-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanned-club.sql
2838 lines (2836 loc) · 63.9 KB
/
banned-club.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- DELETE FROM banned_club;
INSERT INTO banned_club (name)
VALUES
('10'),
('10y'),
('10 year old'),
('10 year-old'),
('10-year-old'),
('10 years'),
('10years'),
('10 years old'),
('10 yo'),
('10yo'),
('1161'),
('11 year old'),
('11 year-old'),
('11-year-old'),
('11 years old'),
('12'),
('12y'),
('12 year old'),
('12 year-old'),
('12-year-old'),
('12 years'),
('12years'),
('12 years old'),
('12 yo'),
('12yo'),
('13'),
('13y'),
('13 year old'),
('13 year-old'),
('13-year-old'),
('13 years'),
('13years'),
('13 years old'),
('13 yo'),
('13yo'),
('14'),
('1488'),
('14y'),
('14 year old'),
('14 year-old'),
('14-year-old'),
('14 years'),
('14years'),
('14 years old'),
('14 yo'),
('14yo'),
('14 yo edgelord'),
('14yoweeb'),
('15'),
('15y'),
('15 year old'),
('15 year-old'),
('15-year-old'),
('15 years'),
('15years'),
('15 years old'),
('15 yo'),
('15yo'),
('16'),
('16y'),
('16 year old'),
('16 year-old'),
('16-year-old'),
('16 years'),
('16years'),
('16 years old'),
('16 yo'),
('16yo'),
('17'),
('17y'),
('17 year old'),
('17 year-old'),
('17-year-old'),
('17 years'),
('17years'),
('17 years old'),
('17 yo'),
('17yo'),
('-18'),
('18'),
('2b''s fat ass'),
('311'),
('38'),
('4chan is for faggots'),
('5'),
('50 suicide attempts'),
('5y'),
('5 year old'),
('5 year-old'),
('5-year-old'),
('5 years'),
('5years'),
('5 years old'),
('5 yo'),
('5yo'),
('6'),
('6y'),
('6 year old'),
('6 year-old'),
('6-year-old'),
('6 years'),
('6years'),
('6 years old'),
('6 yo'),
('6yo'),
('7'),
('7y'),
('7 year old'),
('7 year-old'),
('7-year-old'),
('7 years'),
('7years'),
('7 years old'),
('7 yo'),
('7yo'),
('8'),
('88'),
('8y'),
('8 year old'),
('8 year-old'),
('8-year-old'),
('8 years'),
('8years'),
('8 years old'),
('8 yo'),
('8yo'),
('9'),
('9/11'),
('988'),
('988twt'),
('9y'),
('9 year old'),
('9 year-old'),
('9-year-old'),
('9 years'),
('9years'),
('9 years old'),
('9 yo'),
('9yo'),
('a10 aryan'),
('abuse me'),
('abuser'),
('abusive'),
('active shooter'),
('actual murderer'),
('adam lanza'),
('adam lanza fan'),
('adc that doesn''t bitch'),
('adolf hitler'),
('a fucken idiot'),
('a fucking leaf'),
('age difference'),
('age gap'),
('agegap'),
('age play'),
('ageplay'),
('agere'),
('age regress'),
('age regressor'),
('aggressive sex'),
('allah akbar'),
('allah is a jew'),
('allahu akbar'),
('all boobs'),
('alpha-pvp'),
('al qaeda'),
('alt faggot'),
('"always horny" dni'),
('american renaissance'),
('among us rape'),
('amongusrape'),
('amren'),
('anal'),
('anal sex'),
('anal slut'),
('anilingus'),
('animal abuse'),
('animal porn'),
('annoying ass loud music'),
('anorexia'),
('anorexic'),
('anorexic lover'),
('anti asians'),
('anti-asians'),
('anti black people'),
('anti-black people'),
('anti blacks'),
('anti-blacks'),
('anti-blm'),
('anti british'),
('anti brown people'),
('anti-brown people'),
('anti buddhists'),
('anti-buddhists'),
('anti bug people'),
('anti-bug people'),
('anti bugs'),
('anti-bugs'),
('anti chinks'),
('anti-chinks'),
('anti christianity'),
('anti-christianity'),
('anti christians'),
('anti-christians'),
('anti coons'),
('anti-coons'),
('anti-faggotry'),
('anti faggots'),
('anti-faggots'),
('anti fags'),
('anti-fags'),
('anti feminist'),
('anti filipinas'),
('anti-filipinas'),
('anti filipino people'),
('anti-filipino people'),
('anti filipinos'),
('anti-filipinos'),
('anti flips'),
('anti-flips'),
('anti french'),
('anti-gay'),
('anti gays'),
('anti-gays'),
('anti goon'),
('anti hinduim'),
('anti-hinduim'),
('anti hindus'),
('anti-hindus'),
('anti india'),
('anti-india'),
('anti indians'),
('anti-indians'),
('anti irish "people"'),
('anti irish people'),
('anti-irish "people"'),
('anti-irish people'),
('anti islam'),
('anti-islam'),
('anti israel'),
('anti-israel'),
('anti jew'),
('anti-jew'),
('anti jewish'),
('anti-jewish'),
('anti jewish people'),
('anti-jewish people'),
('anti jews'),
('anti-jews'),
('anti judaism'),
('anti-judaism'),
('anti kikes'),
('anti-kikes'),
('anti latinos'),
('anti-latinos'),
('anti lgbtq'),
('anti-lgbtq'),
('anti-lgbtqiap'),
('anti loli'),
('anti-loli'),
('anti masonic extremist'),
('anti men'),
('anti-men'),
('anti mexicans'),
('anti-mexicans'),
('anti minorities'),
('anti-minorities'),
('anti mormons'),
('anti-mormons'),
('anti muslims'),
('anti-muslims'),
('anti my faggot life'),
('anti-my faggot life'),
('anti nazis'),
('anti-nazis'),
('anti niggers'),
('anti-niggers'),
('anti nigs'),
('anti-nigs'),
('anti norway'),
('anti-norway'),
('anti pakis'),
('anti-pakis'),
('anti palestine'),
('anti-palestine'),
('anti quebec'),
('anti-quebec'),
('anti queers'),
('anti-queers'),
('anti retard retard club'),
('anti-semetic zionist'),
('antisemit'),
('antisemita'),
('antisemitas'),
('anti semite'),
('anti-semite'),
('antisemite'),
('antisemiten'),
('antisemiti'),
('anti semitic'),
('anti-semitic'),
('antisemitic'),
('antisemitin'),
('antisemitinnen'),
('anti semitism'),
('anti-semitism'),
('antisemitism'),
('antisemitismo'),
('antissemita'),
('antissemitas'),
('anti the fags'),
('anti-the fags'),
('anti trannies'),
('anti-trannies'),
('anti-trans'),
('anti white people'),
('anti-white people'),
('anti whites'),
('anti-whites'),
('anti-wog'),
('anti women'),
('anti-women'),
('anti-zionist'),
('anything for money'),
('are you hanging yourself'),
('aryan'),
('aryan emperor'),
('aryan jihad'),
('aryans'),
('aryanx'),
('asian beater'),
('asian hater'),
('asians hater'),
('aspiring terrorist'),
('ass'),
('assbeater420'),
('ass cancer patient'),
('ass enjoyer'),
('ass fucker'),
('asshole'),
('asshole lover'),
('ass is ass'),
('assisted suicide'),
('ass man'),
('ass muncher'),
('ass or tits'),
('ass over tits'),
('ass to mouth'),
('ass too fat'),
('ass woman'),
('asuka breeder'),
('autistic fag boyfriend'),
('autistic faggot'),
('autistic fuck machine'),
('autistic nigga'),
('average cock'),
('axe murderer'),
('ayahuasca'),
('azur lane faggot'),
('backshots'),
('ballbusting'),
('balls crushing'),
('bare feet'),
('bath salts'),
('bbc'),
('bbc jr'),
('beaner'),
('beating hoes'),
('beating up minorities'),
('beat me to death'),
('benzylpiperazine'),
('bestiality'),
('biblically accurate misandrist'),
('big ass lover'),
('bigblackniggaballshd'),
('big boobs'),
('big boobs fat ass'),
('bigbootybitches'),
('big cock'),
('big dick deviant'),
('big thick cock'),
('big tits'),
('big white cock'),
('billions must die'),
('bimbo breeder'),
('bipolar as fuck'),
('bitch'),
('bitch and weed mafia'),
('bitch ass pussy'),
('bitches be crazy'),
('bitchless gang'),
('black hater'),
('black people beater'),
('black people hater'),
('blacks hater'),
('blowjob'),
('bnwo'),
('bomb'),
('bomber'),
('bomb manufacturing'),
('bongs'),
('boobs'),
('boobs in my mouth'),
('born to fuck'),
('bot fucker'),
('bottom bitch'),
('boykisser'),
('boypussy'),
('boy rapist'),
('bpd hate'),
('breast lover'),
('breedable'),
('breedablefemcel'),
('breeder'),
('breeding'),
('breedmaxxing'),
('breed me'),
('brenton tarrant'),
('brenton tarrant fanclub'),
('broke ass mf'),
('broke ass nigga'),
('brown people beater'),
('brown people hater'),
('brown racist'),
('buddhists hater'),
('bug beater'),
('bug hater'),
('bug killer'),
('bug people beater'),
('bug people hater'),
('bugs hater'),
('bukkake'),
('bully bait'),
('bullybait'),
('bum sex'),
('but fuck it we ball'),
('butt fucker'),
('buttslut'),
('buying drugs'),
('buying gf'),
('buy me'),
('buy me valorant skins'),
('bwc'),
('bwc lover'),
('bzp'),
('can i punch you'),
('cannabis'),
('cannabis coffee'),
('cannabis coffee shop'),
('cannabis coffee shops'),
('can you tell i like tits'),
('can you tell i''m horny'),
('car fuckers'),
('cartoon porn'),
('cashsexual'),
('ceo of gooning'),
('ceo of sex'),
('certified goon'),
('certified minor'),
('charged with attempted murder'),
('chat bot slut'),
('cherry bomb'),
('child abuse'),
('child lover'),
('child molester'),
('child porn'),
('child rape'),
('childrape'),
('child rapist'),
('child trafficker'),
('child traficker'),
('chill pedo vibes'),
('chink'),
('chink beater'),
('chink hater'),
('chinks'),
('chinks hater'),
('chokeabitch'),
('christian hater'),
('christianity hater'),
('christians hater'),
('chronically horny'),
('chronic gooner'),
('chronic masturbator'),
('chubby bitch'),
('clown pussy'),
('cnc'),
('cnuy'),
('coal burner'),
('coalburner'),
('coal burners'),
('coalburners'),
('cobson'),
('cocaine'),
('cocaine substitutes'),
('cock'),
('cocka cola'),
('cock and ball torture'),
('cock and pinball'),
('cock department'),
('cock enjoyer'),
('cockhungry'),
('cock lover'),
('cockmaxxing'),
('cocknballs'),
('cock pornis'),
('cock sucker'),
('cocky go boing boing'),
('cocky want boing'),
('code gay ass'),
('columbine'),
('columbiner'),
('consensual non consent'),
('consensual non-consent'),
('consensual nonconsent'),
('consensualnon-consent'),
('consensualnonconsent'),
('consensual rape'),
('consensualrape'),
('contradictory faggot'),
('convicted terrorist'),
('coom'),
('coomer'),
('coon'),
('coon hater'),
('coons'),
('coons hater'),
('coprophilia'),
('corporate slut'),
('cosplay sex'),
('cotton picker'),
('covered in cum'),
('cover me in cum'),
('cp'),
('crack cocaine'),
('crazy bitch'),
('crazy bitches'),
('cringe ass nae nae baby'),
('cryptid breeder'),
('crystal meth'),
('cum'),
('cum addict'),
('cum boy'),
('cumbrained'),
('cum delivery'),
('cumdump'),
('cum factory'),
('cum glazed donuts'),
('cum in me'),
('cum inside me'),
('cumm'),
('cum maxer'),
('cummaxer'),
('cummaxing'),
('cum maxxer'),
('cummaxxer'),
('cummaxxing'),
('cum metal'),
('cummies'),
('cumming'),
('cummm'),
('cummmm'),
('cumnation'),
('cum on me'),
('cum shot'),
('cumslut'),
('cum x3'),
('cunnilinguist'),
('cunnilingus'),
('cunny'),
('cunny archive'),
('cunnyborea'),
('cunny cumdump'),
('cunnymaxxing'),
('cunnypilled'),
('cunny rape'),
('cunnyrape'),
('cunnyseur'),
('cunt'),
('cuntboy'),
('cunts'),
('cunty'),
('cuny'),
('cute and funny'),
('cuteandfunny'),
('cutmaxxing'),
('cut me'),
('cutslut'),
('cutsluts'),
('cutter'),
('cutting'),
('cuum'),
('cuuum'),
('cyno sexer'),
('dat nigga'),
('death'),
('death to america'),
('death to israel'),
('deep ass thinker'),
('deepfake'),
('deport asians'),
('deport black people'),
('deport blacks'),
('deport brown people'),
('deport buddhists'),
('deport bug people'),
('deport bugs'),
('deport chinks'),
('deport christianity'),
('deport christians'),
('deport coons'),
('deport faggots'),
('deport fags'),
('deport filipinas'),
('deport filipino people'),
('deport filipinos'),
('deport flips'),
('deport gays'),
('deport hinduim'),
('deport hindus'),
('deport india'),
('deport indians'),
('deport irish "people"'),
('deport irish people'),
('deport islam'),
('deport israel'),
('deport jewish people'),
('deport jews'),
('deport judaism'),
('deport kikes'),
('deport latinos'),
('deport lgbtq'),
('deport loli'),
('deport men'),
('deport mexicans'),
('deport minorities'),
('deport mormons'),
('deport muslims'),
('deport my faggot life'),
('deport nazis'),
('deport niggers'),
('deport nigs'),
('deport norway'),
('deport pakis'),
('deport palestine'),
('deport quebec'),
('deport queers'),
('deport the fags'),
('deport trannies'),
('deport white people'),
('deport whites'),
('deport women'),
('dick cheese'),
('dickhead'),
('dick n balls'),
('dick owner'),
('dick sucker'),
('die nazis die'),
('die retard die'),
('dimethyltryptamine'),
('disabled sex bomb'),
('discord sex'),
('dmt'),
('dogfuckr'),
('domestic abuse'),
('domestic terrorist'),
('donkey punch'),
('don''t be trans'),
('dothead'),
('dragon fucker'),
('dragoon'),
('dragooner'),
('drake from nikke anime goon game'),
('drug abuser'),
('drugabuser'),
('drug addict'),
('drug addicts'),
('drug cartel'),
('drugcel'),
('drug dealer'),
('druggo'),
('drug me'),
('drugs'),
('dukys'),
('dumb bitch'),
('dumb slut'),
('easily manipulated'),
('easy to manipulate'),
('eating a gun'),
('eating disorder'),
('ecstasy'),
('edgemaxxing'),
('edger'),
('edging'),
('edtwt users kys'),
('e-hentai'),
('eight year old'),
('eight year-old'),
('eight-year-old'),
('eight years old'),
('eight yo'),
('electronic sexual intercourse'),
('eleven year old'),
('eleven year-old'),
('eleven-year-old'),
('eleven years old'),
('elliot rodger'),
('elliot-rodger'),
('embassy bomber'),
('emitting faggot vibes'),
('emma essex'),
('emo fag'),
('e sex'),
('e-sex'),
('eslpedonigger'),
('esoteric hitlerism'),
('esoteric nazi'),
('esoteric nazism'),
('esoteric neo-aryan hitlerist'),
('ethical rapist'),
('evilcunnygang'),
('evil nigga'),
('ex goon'),
('extreme kinks'),
('extreme misogynist'),
('extremist'),
('faaaaaggot'),
('fag'),
('fag beater'),
('fagdyke'),
('faggot'),
('faggot beater'),
('faggot hater'),
('faggot jackass'),
('faggotkitty'),
('faggotoid'),
('faggots'),
('faggots hater'),
('fag hater'),
('fagism'),
('fagmaxxing'),
('fags hater'),
('fake gooner'),
('fapper'),
('fapping'),
('fascism'),
('fascist'),
('fat ass'),
('fat ass enjoyer'),
('fat ass loser'),
('fat ass tho'),
('fat bitch enjoyer'),
('fat bitches'),
('fat cock'),
('fat dick'),
('fat greasy fuck'),
('fat hate'),
('fat nigga'),
('fatphobe'),
('fatphobic'),
('fat tits'),
('fed fucker'),
('feet licker'),
('feet pics'),
('feet sniffer'),
('feet sniffers'),
('fellatio'),
('female manipulator'),
('femboy anal'),
('femboy fucker'),
('femboy gooner'),
('femcel breeder'),
('fennt'),
('fent'),
('fentanyl'),
('fentaryan'),
('fent dealer'),
('fentmaxxing'),
('fentt'),
('fictohitler'),
('fifteen'),
('fifteen year old'),
('fifteen year-old'),
('fifteen-year-old'),
('fifteen years old'),
('fifteen yo'),
('filipina beater'),
('filipina hater'),
('filipinas hater'),
('filipino beater'),
('filipino hater'),
('filipino people beater'),
('filipino people hater'),
('filipinos hater'),
('findom'),
('finsexual'),
('finsub'),
('fisting'),
('five year old'),
('five year-old'),
('five-year-old'),
('five years old'),
('five yo'),
('flakka'),
('flat ass'),
('flicker goon'),
('flip beater'),
('flip hater'),
('flips hater'),
('flunitrazepam'),
('fnony fucktards'),
('footjob'),
('former rapist'),
('fortnite gooner'),
('fourteen'),
('fourteen year old'),
('fourteen year-old'),
('fourteen-year-old'),
('fourteen years old'),
('fourteen yo'),
('fox girl fucker'),
('fratricide'),
('free use'),
('frottage'),
('frotting'),
('fruits as a metaphor for sex'),
('fuck'),
('fuck 12'),
('fuckable'),
('fuck acab'),
('fuckaduck'),
('fuck any colors'),
('fuckapple'),
('fuck around and find out'),
('fuck asians'),
('fuck audi drivers'),
('fuck black people'),
('fuck blacks'),
('fuck british'),
('fuck brown people'),
('fuck buddhists'),
('fuckbuddy'),
('fuck bug people'),
('fuck bugs'),
('fuck calculators'),
('fuck chinks'),
('fuck christianity'),
('fuck christians'),
('fuck coleslaw'),
('fuck communism'),
('fuck coons'),
('fuck drake'),
('fuckduo'),
('fuckduolicious'),
('fucked'),
('fucked around and find out'),
('fucked up and evil'),
('fucked up is funny'),
('fucked up sense of humor'),
('fucker'),
('fuck faggots'),
('fuck fags'),
('fuck filipinas'),
('fuck filipino people'),
('fuck filipinos'),
('fuck flips'),
('fuck froot'),
('fuck gays'),
('fuck godard'),
('fuck goverment'),
('fuck habsburgs'),
('fuck hinduim'),
('fuck hinduims'),
('fuck hindus'),
('fuck hippies'),
('fuck i hate british people'),
('fuck india'),
('fuck indians'),
('fucking'),
('fucking faggot'),
('fucking hate davkat'),
('fucking nuts'),
('fuck iq'),
('fuck irish "people"'),
('fuck irish people'),
('fuck islam'),
('fuck israel'),
('fuck jewish people'),
('fuck jews'),
('fuck judaism'),
('fuck kikes'),
('fuck latinos'),
('fuckle knuckle'),
('fuck lgbtq'),
('fuck loli'),
('fuck macron'),
('fuck me'),
('fuck me for days'),
('fuck me for hours'),
('fuck me for weeks'),
('fuck me for years'),
('fuck men'),
('fuck me to death'),
('fuck mexicans'),
('fuck minorities'),
('fuck mona'),
('fuck mormons'),
('fuck muslims'),
('fuck my ass'),
('fuck my faggot life'),
('fuck my pathetic nigger life'),
('fuck my retard life'),
('fuck nazis'),
('fuck niggers'),
('fuck nigs'),
('fuck norway'),
('/fucko/'),
('fuck off'),
('fuck off tourist'),
('fuck pakis'),
('fuck palestine'),
('fuck prius drivers'),
('fuck quebec'),
('fuck queers'),
('fuckr'),
('fucks'),
('fuck school'),
('fucks cigs'),
('fuck spotify'),
('#fuckstagcels'),
('fuck strive'),
('fucktard'),
('fucktarded'),
('fucktards'),
('fuck taylor swift'),
('fuck terfs'),
('fuck tesla drivers'),
('fuck that dumb cunt marika'),
('fuck the atf'),
('fuck the fags'),
('fuck the free world'),
('fuck theres a roach in my soup'),
('fuck they keep appearing'),
('fuck trannies'),
('fuck u'),
('fuck ukraine'),
('fuck utah'),
('fuck white people'),
('fuck whites'),
('fuck wojaks'),
('fuck women'),
('fuck xitter'),
('fuck you'),
('fuck you chat'),
('fuck you kys'),
('fuck you nigger'),
('fuck you ted kaczynski'),
('fuck you that''s why'),
('fuck zipperheads'),
('furry feet lovers34'),
('furry loli'),
('furry shota'),
('gamblecore'),
('gambler'),
('gambling'),
('gambling addict'),
('gambling disorder'),
('gamer fag nerd'),
('gamma hydroxybutyrate'),
('gamma-hydroxybutyrate'),
('gang rape'),
('gangrape'),
('gas chambers of fury'),
('gas jew'),
('gas jews'),
('gasses jews'),
('gassing jews'),
('gay beater'),
('gay bitch'),
('gay faggot'),
('gay hater'),
('gay niggas inc'),
('gaynigger retard gang'),
('gay porn'),
('gay sex'),
('gays hater'),
('gay shota'),
('gay slave'),
('gem alarm'),
('genitalia'),
('genitals'),
('genital sex'),
('genocide'),
('genuinely murdered someone'),
('german as fuck'),
('get in the fucking robot'),