forked from roasticle/minqlx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
funnysounds.py
2543 lines (2483 loc) · 180 KB
/
funnysounds.py
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
# coding: utf8
# minqlx - A Quake Live server administrator bot.
# Copyright (C) 2015 Mino <mino@minomino.org>
# This file is part of minqlx.
# minqlx is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# minqlx is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with minqlx. If not, see <http://www.gnu.org/licenses/>.
import minqlx
import random
import time
import re
import datetime
import os
LENGTH_REGEX = re.compile(r"(?P<number>[0-9]+) (?P<scale>seconds?|minutes?|hours?|days?|weeks?|months?|years?)")
TIME_FORMAT = "%Y-%m-%d %H:%M:%S"
SOUNDBAN_FILE = "soundbans.txt"
SOUND_SPAM_LIMIT = 3
SOUND_SPAM_TIMEFRAME = 20
SOUND_BAN_DURATION = "300 seconds"
from minqlx.database import Redis
_re_ = {}
def add_sound(key, regex, path):
_re_[key] = [re.compile(regex, flags=re.IGNORECASE), path]
add_sound("hahaha yeah", r"^haha(?:ha)?,? yeah?\W?$", "sound/player/lucy/taunt.wav")
add_sound("haha yeah haha", r"^haha(?:ha)?,? yeah?,? haha\W?$", "sound/player/biker/taunt.wav")
add_sound("yeah hahaha", r"^yeah?,? haha(?:ha)\W?$", "sound/player/razor/taunt.wav")
add_sound("duahaha", r"^duahaha(?:ha)?\W?$", "sound/player/keel/taunt.wav")
add_sound("hahaha", r"^hahaha\W?$", "sound/player/santa/taunt.wav")
add_sound("glhf", r"^(?:gl ?hf\W?)|(?:hf\W?)|(?:gl hf\W?)", "sound/vo/crash_new/39_01.wav")
add_sound("f3", r"^(?:(?:press )?f3)|ready(?: up)?\W?", "sound/vo/crash_new/36_04.wav")
add_sound("welcome", r"^welcome to (?:ql|quake live)\W?$", "sound/vo_evil/welcome")
add_sound("go", r"^go\W?$", "sound/vo/go")
add_sound("you win", r"^you win\W?$", "sound/vo_female/you_win.wav")
add_sound("you lose", r"^you lose\W?$", "sound/vo/you_lose.wav")
add_sound("beep boop", r"^beep boop\W?$", "sound/player/tankjr/taunt.wav")
add_sound("denied", r"^denied\W?$", "sound/vo/denied")
add_sound("balls out", r"^ball'?s out\W?$", "sound/vo_female/balls_out")
add_sound("one", r"^one\W?$", "sound/vo_female/one")
add_sound("two", r"^two\W?$", "sound/vo_female/two")
add_sound("three", r"^three\W?$", "sound/vo_female/three")
add_sound("fight", r"^fight\W?$", "sound/vo_evil/fight")
add_sound("gauntlet", r"^gauntlet\W?$", "sound/vo_evil/gauntlet")
add_sound("humiliation", r"^humiliation\W?$", "sound/vo_evil/humiliation1")
add_sound("perfect", r"^perfect\W?$", "sound/vo_evil/perfect")
add_sound("wah wah wah wah", r"^wa+h wa+h wa+h wa+h\W?$", "sound/misc/yousuck")
add_sound("ah ah ah", r"^a+h a+h a+h\W?$", "sound/player/slash/taunt.wav")
add_sound("oink", r"^oink\W?$", "sound/player/sorlag/pain50_1.wav")
add_sound("argh", r"^a+rgh\W?$", "sound/player/doom/taunt.wav")
add_sound("hah haha", r"^hah haha\W?$", "sound/player/hunter/taunt.wav")
add_sound("woohoo", r"^woo+hoo+\W?$", "sound/player/janet/taunt.wav")
add_sound("quakelive | ql", r"^(?:ql|quake live)\W?$", "sound/vo_female/quake_live")
add_sound("$ | € | £", "(?:\$|€|£)\d+", "sound/misc/chaching")
add_sound("uh ah", r"^uh ah$", "sound/player/mynx/taunt.wav")
add_sound("oohwee", r"^ooh+wee\W?$", "sound/player/anarki/taunt.wav")
add_sound("erah", r"^erah\W?$", "sound/player/bitterman/taunt.wav")
add_sound("yeahhh", r"^yeahhh\W?$", "sound/player/major/taunt.wav")
add_sound("scream", r"^scream\W?$", "sound/player/bones/taunt.wav")
add_sound("salute", r"^salute\W?$", "sound/player/sarge/taunt.wav")
add_sound("squish", r"^squish\W?$", "sound/player/orb/taunt.wav")
add_sound("oh god", r"^oh god\W?$", "sound/player/ranger/taunt.wav")
add_sound("snarl", r"^snarl\W?$", "sound/player/sorlag/taunt.wav")
add_sound("holy shit", r"^holy shit\W?$", "sound/vo_female/holy_shit")
add_sound("impressive2", r"^impressive2\W?$", "sound/vo_female/impressive1.wav")
add_sound("excellent", r"^excellent\W?$", "sound/vo_evil/excellent1.wav")
add_sound("abba", r"^abba\W?$", "sounds/homermix13/abba1.ogg")
add_sound("abba2", r"^abba2\W?$", "sounds/homermix13/abba2.ogg")
add_sound("abba3", r"^abba3\W?$", "sounds/homermix13/abba3.ogg")
add_sound("agathodaimon", r"^agathodaimon\W?$", "sounds/homermix13/agathodaimon.ogg")
add_sound("amour amour", r"^amour amour\W?$", "sounds/homermix13/amouramour.ogg")
add_sound("and justice for all", r"^and justice for all\W?$", "sounds/homermix13/andjusticeforall.ogg")
add_sound("and justice for all2", r"^and justice for all2\W?$", "sounds/homermix13/andjusticeforall2.ogg")
add_sound("awaken", r"^awaken\W?$", "sounds/homermix13/awaken.ogg")
add_sound("bathory", r"^bathory\W?$", "sounds/homermix13/bathory.ogg")
add_sound("behemoth", r"^behemoth\W?$", "sounds/homermix13/behemoth1.ogg")
add_sound("behemoth2", r"^behemoth2\W?$", "sounds/homermix13/behemoth2.ogg")
add_sound("blackmetal", r"^blackmetal\W?$", "sounds/homermix13/blackmetal.ogg")
add_sound("breathe", r"^breathe\W?$", "sounds/homermix13/breathe.ogg")
add_sound("breathe2", r"^breathe2\W?$", "sounds/homermix13/breathe2.ogg")
add_sound("by the devil", r"^by the devil\W?$", "sounds/homermix13/bythedevil.ogg")
add_sound("call me", r"^call me\W?$", "sounds/homermix13/callme1.ogg")
add_sound("call me2", r"^call me2\W?$", "sounds/homermix13/callme2.ogg")
add_sound("call me3", r"^call me3\W?$", "sounds/homermix13/callme3.ogg")
add_sound("cara mia", r"^cara mia\W?$", "sounds/homermix13/caramia.ogg")
add_sound("catamenia", r"^catamenia\W?$", "sounds/homermix13/catamenia.ogg")
add_sound("catamenia2", r"^catamenia2\W?$", "sounds/homermix13/catamenia2.ogg")
add_sound("chop", r"^chop\W?$", "sounds/homermix13/chopsuey.ogg")
add_sound("chop2", r"^chop2\W?$", "sounds/homermix13/chopsuey2.ogg")
add_sound("COF", r"^COF\W?$", "sounds/homermix13/cof.ogg")
add_sound("COF2", r"^COF2\W?$", "sounds/homermix13/cof2.ogg")
add_sound("COF3", r"^COF3\W?$", "sounds/homermix13/cof3.ogg")
add_sound("COF4", r"^COF4\W?$", "sounds/homermix13/cof4.ogg")
add_sound("cold", r"^cold\W?$", "sounds/homermix13/cold.ogg")
add_sound("cold2", r"^cold2\W?$", "sounds/homermix13/cold2.ogg")
add_sound("cold3", r"^cold3\W?$", "sounds/homermix13/cold3.ogg")
add_sound("crematory", r"^crematory\W?$", "sounds/homermix13/crematory.ogg")
add_sound("danzig", r"^danzig\W?$", "sounds/homermix13/danzig.ogg")
add_sound("deicide", r"^deicide\W?$", "sounds/homermix13/deicide.ogg")
add_sound("sturm", r"^sturm\W?$", "sounds/homermix13/dersturm.ogg")
add_sound("sturm2", r"^sturm2\W?$", "sounds/homermix13/dersturm2.ogg")
add_sound("sturm3", r"^sturm3\W?$", "sounds/homermix13/dersturm3.ogg")
add_sound("dethklok", r"^dethklok\W?$", "sounds/homermix13/dethklok.ogg")
add_sound("dethroned", r"^dethroned\W?$", "sounds/homermix13/dethroned.ogg")
add_sound("disturbed", r"^disturbed\W?$", "sounds/homermix13/disturbed.ogg")
add_sound("equilibrium", r"^equilibrium\W?$", "sounds/homermix13/equilibrium.ogg")
add_sound("equilibrium2", r"^equilibrium2\W?$", "sounds/homermix13/equilibrium2.ogg")
add_sound("equilibrium3", r"^equilibrium3\W?$", "sounds/homermix13/equilibrium3.ogg")
add_sound("equilibrium4", r"^equilibrium4\W?$", "sounds/homermix13/equilibrium4.ogg")
add_sound("felicita", r"^felicita\W?$", "sounds/homermix13/felicita.ogg")
add_sound("felicita2", r"^felicita2\W?$", "sounds/homermix13/felicita2.ogg")
add_sound("firestarter", r"^firestarter\W?$", "sounds/homermix13/firestarter.ogg")
add_sound("firestarter2", r"^firestarter2\W?$", "sounds/homermix13/firestarter2.ogg")
add_sound("funkyshit", r"^funkyshit\W?$", "sounds/homermix13/funkyshit.ogg")
add_sound("gimme", r"^gimme\W?$", "sounds/homermix13/gimme.ogg")
add_sound("gimme2", r"^gimme2\W?$", "sounds/homermix13/gimme2.ogg")
add_sound("gimme fuel", r"^gimme fuel\W?$", "sounds/homermix13/gimmefuel.ogg")
add_sound("hafanana", r"^hafanana\W?$", "sounds/homermix13/hafanana.ogg")
add_sound("hafanana2", r"^hafanana2\W?$", "sounds/homermix13/hafanana2.ogg")
add_sound("holy diver", r"^holy diver\W?$", "sounds/homermix13/holydiver.ogg")
add_sound("holy diver2", r"^holy diver2\W?$", "sounds/homermix13/holydiver2.ogg")
add_sound("ichwill", r"^ichwill\W?$", "sounds/homermix13/ichwill.ogg")
add_sound("ichwill2", r"^ichwill2\W?$", "sounds/homermix13/ichwill2.ogg")
add_sound("ichwill3", r"^ichwill3\W?$", "sounds/homermix13/ichwill3.ogg")
add_sound("i just called to say i love you", r"^i just called to say i love you\W?$", "sounds/homermix13/ijustcalledtosayiloveyou.ogg")
add_sound("immortal", r"^immortal\W?$", "sounds/homermix13/immortal1.ogg")
add_sound("immortal2", r"^immortal2\W?$", "sounds/homermix13/immortal2.ogg")
add_sound("itsMyLife", r"^itsMyLife\W?$", "sounds/homermix13/itsmylife2.ogg")
add_sound("Jailbreak", r"^Jailbreak\W?$", "sounds/homermix13/jailbreak.ogg")
add_sound("Justice For All", r"^Justice For All\W?$", "sounds/homermix13/justiceforall.ogg")
add_sound("korn", r"^korn\W?$", "sounds/homermix13/korn.ogg")
add_sound("korn2", r"^korn2\W?$", "sounds/homermix13/korn2.ogg")
add_sound("korn3", r"^korn3\W?$", "sounds/homermix13/korn3.ogg")
add_sound("mana", r"^mana\W?$", "sounds/homermix13/mana.ogg")
add_sound("mana10", r"^mana10\W?$", "sounds/homermix13/mana10.ogg")
add_sound("mana2", r"^mana2\W?$", "sounds/homermix13/mana2.ogg")
add_sound("mana3", r"^mana3\W?$", "sounds/homermix13/mana3.ogg")
add_sound("mana4", r"^mana4\W?$", "sounds/homermix13/mana4.ogg")
add_sound("mana5", r"^mana5\W?$", "sounds/homermix13/mana5.ogg")
add_sound("mana6", r"^mana6\W?$", "sounds/homermix13/mana6.ogg")
add_sound("mana7", r"^mana7\W?$", "sounds/homermix13/mana7.ogg")
add_sound("mana8", r"^mana8\W?$", "sounds/homermix13/mana8.ogg")
add_sound("mana9", r"^mana9\W?$", "sounds/homermix13/mana9.ogg")
add_sound("Master of Puppets", r"^Master of Puppets\W?$", "sounds/homermix13/masterofpuppets.ogg")
add_sound("mourning", r"^mourning\W?$", "sounds/homermix13/mourning.ogg")
add_sound("mourning2", r"^mourning2\W?$", "sounds/homermix13/mourning2.ogg")
add_sound("mourning3", r"^mourning3\W?$", "sounds/homermix13/mourning3.ogg")
add_sound("mourning4", r"^mourning4\W?$", "sounds/homermix13/mourning4.ogg")
add_sound("murmaider", r"^murmaider\W?$", "sounds/homermix13/murmaider.ogg")
add_sound("no good", r"^no good\W?$", "sounds/homermix13/nogood.ogg")
add_sound("no remorse", r"^no remorse\W?$", "sounds/homermix13/noremorse.ogg")
add_sound("no remorse2", r"^no remorse2\W?$", "sounds/homermix13/noremorse2.ogg")
add_sound("one way ticket", r"^one way ticket\W?$", "sounds/homermix13/onewayticket.ogg")
add_sound("party", r"^party\W?$", "sounds/homermix13/partyingaroundtheworld.ogg")
add_sound("poison", r"^poison\W?$", "sounds/homermix13/poison1.ogg")
add_sound("poison2", r"^poison2\W?$", "sounds/homermix13/poison2.ogg")
add_sound("pretty fly", r"^pretty fly\W?$", "sounds/homermix13/prettyfly.ogg")
add_sound("promises", r"^promises\W?$", "sounds/homermix13/promises.ogg")
add_sound("puppets", r"^puppets\W?$", "sounds/homermix13/puppets.ogg")
add_sound("puritania", r"^puritania\W?$", "sounds/homermix13/puritania.ogg")
add_sound("ramaia", r"^ramaia\W?$", "sounds/homermix13/ramaia.ogg")
add_sound("ramaia2", r"^ramaia2\W?$", "sounds/homermix13/ramaia2.ogg")
add_sound("ramaia3", r"^ramaia3\W?$", "sounds/homermix13/ramaia3.ogg")
add_sound("ramaia4", r"^ramaia4\W?$", "sounds/homermix13/ramaia4.ogg")
add_sound("ramaia5", r"^ramaia5\W?$", "sounds/homermix13/ramaia5.ogg")
add_sound("ramaia6", r"^ramaia6\W?$", "sounds/homermix13/ramaia6.ogg")
add_sound("smack my bitch up", r"^smack my bitch up\W?$", "sounds/homermix13/smackmybitchup.ogg")
add_sound("something takes a part of me", r"^something takes a part of me\W?$", "sounds/homermix13/somethingtakesapartofme.ogg")
add_sound("spellbound", r"^spellbound\W?$", "sounds/homermix13/spellbound.ogg")
add_sound("spellbound2", r"^spellbound2\W?$", "sounds/homermix13/spellbound2.ogg")
add_sound("start the dance", r"^start the dance\W?$", "sounds/homermix13/startthedance.ogg")
add_sound("tears of time", r"^tears of time\W?$", "sounds/homermix13/tearsoftime.ogg")
add_sound("the chair", r"^the chair\W?$", "sounds/homermix13/thechair.ogg")
add_sound("the prodigy", r"^the prodigy\W?$", "sounds/homermix13/theprodigy.ogg")
add_sound("therion", r"^therion\W?$", "sounds/homermix13/therion.ogg")
add_sound("TNT", r"^TNT\W?$", "sounds/homermix13/tnt.ogg")
add_sound("tous les enfants", r"^tous les enfants\W?$", "sounds/homermix13/touslesenfants.ogg")
add_sound("voodoo", r"^voodoo\W?$", "sounds/homermix13/voodoo.ogg")
add_sound("voyage", r"^voyage\W?$", "sounds/homermix13/voyage.ogg")
add_sound("why cant you stay", r"^why cant you stay\W?$", "sounds/homermix13/whycantyoustay.ogg")
add_sound("words", r"^words\W?$", "sounds/homermix13/words.ogg")
add_sound("you and me", r"^you and me\W?$", "sounds/homermix13/youandme.ogg")
add_sound("7", r"^7\W?$", "sounds/homermix13/007.ogg")
add_sound("adamsfamily", r"^adamsfamily\W?$", "sounds/homermix13/adamsfamily.ogg")
add_sound("allahuakbar", r"^allahuakbar\W?$", "sounds/homermix13/allahuakbar.ogg")
add_sound("all skeet skeet", r"^all skeet skeet\W?$", "sounds/homermix13/allskeetskeet.ogg")
add_sound("allstar", r"^allstar\W?$", "sounds/homermix13/allstar.ogg")
add_sound("all the things", r"^all the things\W?$", "sounds/homermix13/allthethings.ogg")
add_sound("amazing", r"^amazing\W?$", "sounds/homermix13/amazing.ogg")
add_sound("ameno", r"^ameno\W?$", "sounds/homermix13/ameno.ogg")
add_sound("america", r"^america\W?$", "sounds/homermix13/america.ogg")
add_sound("amerika", r"^amerika\W?$", "sounds/homermix13/amerika.ogg")
add_sound("and nothing else", r"^and nothing else\W?$", "sounds/homermix13/andnothingelse.ogg")
add_sound("animals", r"^animals\W?$", "sounds/homermix13/animals.ogg")
add_sound("just a scratch", r"^just a scratch\W?$", "sounds/homermix13/ascratch.ogg")
add_sound("asskicking", r"^asskicking\W?$", "sounds/homermix13/asskicking.ogg")
add_sound("ave", r"^ave\W?$", "sounds/homermix13/ave.ogg")
add_sound("baby baby", r"^baby baby\W?$", "sounds/homermix13/babybaby.ogg")
add_sound("baby evil", r"^baby evil\W?$", "sounds/homermix13/babyevillaugh.ogg")
add_sound("babylaughing", r"^babylaughing\W?$", "sounds/homermix13/babylaughing.ogg")
add_sound("bad boys", r"^bad boys\W?$", "sounds/homermix13/badboys.ogg")
add_sound("banana boat song", r"^banana boat song\W?$", "sounds/homermix13/bananaboatsong.ogg")
add_sound("ill be back", r"^I'?ll be back\W?$", "sounds/homermix13/beback.ogg")
add_sound("benny hill", r"^benny hill\W?$", "sounds/homermix13/bennyhill.ogg")
add_sound("benzin", r"^benzin\W?$", "sounds/homermix13/benzin.ogg")
add_sound("blue wins", r"^blue wins\W?$", "sounds/homermix13/bluewins.ogg")
add_sound("bonkers", r"^bonkers\W?$", "sounds/homermix13/bonkers.ogg")
add_sound("boom headshot", r"^boom headshot\W?$", "sounds/homermix13/boomheadshot.ogg")
add_sound("booo", r"^booo\W?$", "sounds/homermix13/booo.ogg")
add_sound("boring", r"^boring\W?$", "sounds/homermix13/boring.ogg")
add_sound("boze", r"^boze\W?$", "sounds/homermix13/boze.ogg")
add_sound("brightsideoflife", r"^brightsideoflife\W?$", "sounds/homermix13/brightsideoflife.ogg")
add_sound("buckdich", r"^buckdich\W?$", "sounds/homermix13/buckdich.ogg")
add_sound("bullshitter", r"^bullshitter\W?$", "sounds/homermix13/bullshitter.ogg")
add_sound("burns burns", r"^burns burns\W?$", "sounds/homermix13/burnsburns.ogg")
add_sound("camel toe", r"^camel toe\W?$", "sounds/homermix13/cameltoe.ogg")
add_sound("cant touch this", r"^can'?t touch this\W?$", "sounds/homermix13/canttouchthis.ogg")
add_sound("champions", r"^champions\W?$", "sounds/homermix13/champions.ogg")
add_sound("chicken", r"^chicken\W?$", "sounds/homermix13/chicken.ogg")
add_sound("chocolate rain", r"^chocolate rain\W?$", "sounds/homermix13/chocolaterain.ogg")
add_sound("coin", r"^coin\W?$", "sounds/homermix13/coin.ogg")
add_sound("come", r"^come\W?$", "sounds/homermix13/come.ogg")
add_sound("come with me now", r"^come with me now\W?$", "sounds/homermix13/comewithmenow.ogg")
add_sound("countdown", r"^countdown\W?$", "sounds/homermix13/countdown.ogg")
add_sound("cowards", r"^cowards\W?$", "sounds/homermix13/cowards.ogg")
add_sound("crazy", r"^crazy\W?$", "sounds/homermix13/crazy.ogg")
add_sound("you are a cunt", r"^you are a cunt\W?$", "sounds/homermix13/cunt.ogg")
add_sound("damnit", r"^damnit\W?$", "sounds/homermix13/damnit.ogg")
add_sound("danger zone", r"^danger zone\W?$", "sounds/homermix13/dangerzone.ogg")
add_sound("deadsoon", r"^deadsoon\W?$", "sounds/homermix13/deadsoon.ogg")
add_sound("defeated", r"^defeated\W?$", "sounds/homermix13/defeated.ogg")
add_sound("devil", r"^devil\W?$", "sounds/homermix13/devil.ogg")
add_sound("doesnt love you", r"^doesn'?t love you\W?$", "sounds/homermix13/doesntloveyou.ogg")
add_sound("du bist", r"^du bist\W?$", "sounds/homermix13/dubist.ogg")
add_sound("du hast", r"^du hast\W?$", "sounds/homermix13/duhast.ogg")
add_sound("dumb ways", r"^dumb ways\W?$", "sounds/homermix13/dumbways.ogg")
add_sound("eat pussy", r"^eat pussy\W?$", "sounds/homermix13/eatpussy.ogg")
add_sound("education", r"^education\W?$", "sounds/homermix13/education.ogg")
add_sound("einschrei", r"^einschrei\W?$", "sounds/homermix13/einschrei.ogg")
add_sound("eins zwei", r"^eins zwei\W?$", "sounds/homermix13/einszwei.ogg")
add_sound("electro", r"^electro\W?$", "sounds/homermix13/electro.ogg")
add_sound("elementary", r"^elementary\W?$", "sounds/homermix13/elementary.ogg")
add_sound("engel", r"^engel\W?$", "sounds/homermix13/engel.ogg")
add_sound("erstwenn", r"^erstwenn\W?$", "sounds/homermix13/erstwenn.ogg")
add_sound("exitlight", r"^exitlight\W?$", "sounds/homermix13/exitlight.ogg")
add_sound("faint", r"^faint\W?$", "sounds/homermix13/faint.ogg")
add_sound("fatality", r"^fatality\W?$", "sounds/homermix13/fatality.ogg")
add_sound("feel good", r"^feel good\W?$", "sounds/homermix13/feelgood.ogg")
add_sound("flesh wound", r"^flesh wound\W?$", "sounds/homermix13/fleshwound.ogg")
add_sound("for you", r"^for you\W?$", "sounds/homermix13/foryou.ogg")
add_sound("freestyler", r"^freestyler\W?$", "sounds/homermix13/freestyler.ogg")
add_sound("fuckfuck", r"^fuckfuck\W?$", "sounds/homermix13/fuckfuck.ogg")
add_sound("fucking burger", r"^fucking burger\W?$", "sounds/homermix13/fuckingburger.ogg")
add_sound("fucking kids", r"^fucking kids\W?$", "sounds/homermix13/fuckingkids.ogg")
add_sound("gangnam", r"^gangnam\W?$", "sounds/homermix13/gangnam.ogg")
add_sound("ganjaman", r"^ganjaman\W?$", "sounds/homermix13/ganjaman.ogg")
add_sound("gay", r"^gay\W?$", "sounds/homermix13/gay.ogg")
add_sound("get crowbar", r"^get crowbar\W?$", "sounds/homermix13/getcrowbar.ogg")
add_sound("get out the way", r"^get out the way\W?$", "sounds/homermix13/getouttheway.ogg")
add_sound("ghostbusters", r"^ghostbusters\W?$", "sounds/homermix13/ghostbusters.ogg")
add_sound("girl look", r"^girl look\W?$", "sounds/homermix13/girllook.ogg")
add_sound("girly", r"^girly\W?$", "sounds/homermix13/girly.ogg")
add_sound("gnr guitar", r"^gnr guitar\W?$", "sounds/homermix13/gnrguitar.ogg")
add_sound("goddamn right", r"^goddamn right\W?$", "sounds/homermix13/goddamnright.ogg")
add_sound("goodby eandrea", r"^goodbye andrea\W?$", "sounds/homermix13/goodbyeandrea.ogg")
add_sound("goodbye sarah", r"^goodbye sarah\W?$", "sounds/homermix13/goodbyesarah.ogg")
add_sound("gotcha", r"^gotcha\W?$", "sounds/homermix13/gotcha.ogg")
add_sound("hakunamatata", r"^hakunamatata\W?$", "sounds/homermix13/hakunamatata.ogg")
add_sound("hammertime", r"^hammertime\W?$", "sounds/homermix13/hammertime.ogg")
add_sound("hello darkness", r"^hello darkness\W?$", "sounds/homermix13/hello.ogg")
add_sound("hellstestern", r"^hellstestern\W?$", "sounds/homermix13/hellstestern.ogg")
add_sound("holy", r"^holy\W?$", "sounds/homermix13/holy.ogg")
add_sound("hoppereiter", r"^hoppereiter\W?$", "sounds/homermix13/hoppereiter.ogg")
add_sound("how are you", r"^how are you\W?$", "sounds/homermix13/howareyou.ogg")
add_sound("hush", r"^hush\W?$", "sounds/homermix13/hush.ogg")
add_sound("ibet", r"^ibet\W?$", "sounds/homermix13/ibet.ogg")
add_sound("i cant believe", r"^i can'?t believe\W?$", "sounds/homermix13/icantbelieve.ogg")
add_sound("ichtuedieweh", r"^ichtuedieweh\W?$", "sounds/homermix13/ichtuedieweh.ogg")
add_sound("i do parkour", r"^i do parkour\W?$", "sounds/homermix13/idoparkour.ogg")
add_sound("i hate all", r"^i hate all\W?$", "sounds/homermix13/ihateall.ogg")
add_sound("imperial", r"^imperial\W?$", "sounds/homermix13/imperial.ogg")
add_sound("imsexy", r"^imsexy\W?$", "sounds/homermix13/imsexy.ogg")
add_sound("im your father", r"^i'?m your father\W?$", "sounds/homermix13/imyourfather.ogg")
add_sound("incoming", r"^incoming\W?$", "sounds/homermix13/incoming.ogg")
add_sound("indiana jones", r"^indiana jones\W?$", "sounds/homermix13/indianajones.ogg")
add_sound("in your head zombie", r"^in your head zombie\W?$", "sounds/homermix13/inyourheadzombie.ogg")
add_sound("i see assholes", r"^i see assholes\W?$", "sounds/homermix13/iseeassholes.ogg")
add_sound("i see dead people", r"^i see dead people\W?$", "sounds/homermix13/iseedeadpeople.ogg")
add_sound("its my life", r"^it'?s my life\W?$", "sounds/homermix13/itsmylife.ogg")
add_sound("its not", r"^it'?s not\W?$", "sounds/homermix13/itsnot.ogg")
add_sound("jump motherfucker", r"^jump motherfucker\W?$", "sounds/homermix13/jackpot.ogg")
add_sound("jesus", r"^jesus\W?$", "sounds/homermix13/jesus.ogg")
add_sound("jesus oh", r"^jesus oh\W?$", "sounds/homermix13/jesusoh.ogg")
add_sound("johncena", r"^johncena\W?$", "sounds/homermix13/johncena.ogg")
add_sound("jump motherfucker", r"^jump motherfucker\W?$", "sounds/homermix13/jumpmotherfucker.ogg")
add_sound("just do it", r"^just do it\W?$", "sounds/homermix13/justdoit.ogg")
add_sound("kamehameha", r"^kamehameha\W?$", "sounds/homermix13/kamehameha.ogg")
add_sound("keep on fighting", r"^keep on fighting\W?$", "sounds/homermix13/keeponfighting.ogg")
add_sound("keep your shirt on", r"^keep your shirt on\W?$", "sounds/homermix13/keepyourshirton.ogg")
add_sound("knocked down", r"^knocked down\W?$", "sounds/homermix13/knockeddown.ogg")
add_sound("kommtdiesonne", r"^kommtdiesonne\W?$", "sounds/homermix13/kommtdiesonne.ogg")
add_sound("kungfu", r"^kungfu\W?$", "sounds/homermix13/kungfu.ogg")
add_sound("lately", r"^lately\W?$", "sounds/homermix13/lately.ogg")
add_sound("legitness", r"^legitness\W?$", "sounds/homermix13/legitness.ogg")
add_sound("lets get ready", r"^lets get ready\W?$", "sounds/homermix13/letsgetready.ogg")
add_sound("lets put a smile", r"^lets put a smile\W?$", "sounds/homermix13/letsputasmile.ogg")
add_sound("lights out", r"^lights out\W?$", "sounds/homermix13/lightsout.ogg")
add_sound("lion king", r"^lion king\W?$", "sounds/homermix13/lionking.ogg")
add_sound("live to win", r"^live to win\W?$", "sounds/homermix13/livetowin.ogg")
add_sound("losing my religion", r"^losing my religion\W?$", "sounds/homermix13/losingmyreligion.ogg")
add_sound("loveme", r"^loveme\W?$", "sounds/homermix13/loveme.ogg")
add_sound("low", r"^low\W?$", "sounds/homermix13/low.ogg")
add_sound("luck", r"^luck\W?$", "sounds/homermix13/luck.ogg")
add_sound("lust", r"^lust\W?$", "sounds/homermix13/lust.ogg")
add_sound("mahnamahna", r"^mahnamahna\W?$", "sounds/homermix13/mahnamahna.ogg")
add_sound("mario", r"^mario\W?$", "sounds/homermix13/mario.ogg")
add_sound("me", r"^me\W?$", "sounds/homermix13/me.ogg")
add_sound("meinland", r"^meinland\W?$", "sounds/homermix13/meinland.ogg")
add_sound("message", r"^message\W?$", "sounds/homermix13/message.ogg")
add_sound("mimimi", r"^mimimi\W?$", "sounds/homermix13/mimimi.ogg")
add_sound("mission", r"^mission\W?$", "sounds/homermix13/mission.ogg")
add_sound("moan", r"^moan\W?$", "sounds/homermix13/moan.ogg")
add_sound("mortal kombat", r"^mortal kombat\W?$", "sounds/homermix13/mortalkombat.ogg")
add_sound("move ass", r"^move ass\W?$", "sounds/homermix13/moveass.ogg")
add_sound("muppet opening", r"^muppet opening\W?$", "sounds/homermix13/muppetopening.ogg")
add_sound("my little pony", r"^my little pony\W?$", "sounds/homermix13/mylittlepony.ogg")
add_sound("my name", r"^my name\W?$", "sounds/homermix13/myname.ogg")
add_sound("never seen", r"^never seen\W?$", "sounds/homermix13/neverseen.ogg")
add_sound("nightmare", r"^nightmare\W?$", "sounds/homermix13/nightmare.ogg")
add_sound("nobody likes you", r"^nobody likes you\W?$", "sounds/homermix13/nobodylikesyou.ogg")
add_sound("nonie", r"^nonie\W?$", "sounds/homermix13/nonie.ogg")
add_sound("nooo", r"^nooo\W?$", "sounds/homermix13/nooo.ogg")
add_sound("no time for loosers", r"^no time for loosers\W?$", "sounds/homermix13/notimeforloosers.ogg")
add_sound("numanuma", r"^numanuma\W?$", "sounds/homermix13/numanuma.ogg")
add_sound("nyancat", r"^nyancat\W?$", "sounds/homermix13/nyancat.ogg")
add_sound("o fuck", r"^o fuck\W?$", "sounds/homermix13/ofuck.ogg")
add_sound("oh my god", r"^oh my god\W?$", "sounds/homermix13/ohmygod.ogg")
add_sound("oh my gosh", r"^oh my gosh\W?$", "sounds/homermix13/ohmygosh.ogg")
add_sound("ohnedich", r"^ohnedich\W?$", "sounds/homermix13/ohnedich.ogg")
add_sound("oh no", r"^oh no\W?$", "sounds/homermix13/ohno.ogg")
add_sound("oh noe", r"^oh noe\W?$", "sounds/homermix13/ohnoe.ogg")
add_sound("pacman", r"^pacman\W?$", "sounds/homermix13/pacman.ogg")
add_sound("pick me up", r"^pick me up\W?$", "sounds/homermix13/pickmeup.ogg")
add_sound("pikachu", r"^pikachu\W?$", "sounds/homermix13/pikachu.ogg")
add_sound("pinkiepie", r"^pinkiepie\W?$", "sounds/homermix13/pinkiepie.ogg")
add_sound("pink panther", r"^pink panther\W?$", "sounds/homermix13/pinkpanther.ogg")
add_sound("pipe", r"^pipe\W?$", "sounds/homermix13/pipe.ogg")
add_sound("piss me off", r"^piss me off\W?$", "sounds/homermix13/pissmeoff.ogg")
add_sound("play a game", r"^play a game\W?$", "sounds/homermix13/playagame.ogg")
add_sound("pooping", r"^pooping\W?$", "sounds/homermix13/pooping.ogg")
add_sound("powerpuff", r"^powerpuff\W?$", "sounds/homermix13/powerpuff.ogg")
add_sound("radioactive", r"^radioactive\W?$", "sounds/homermix13/radioactive.ogg")
add_sound("rammsteinriff", r"^rammsteinriff\W?$", "sounds/homermix13/rammsteinriff.ogg")
add_sound("redwins", r"^redwins\W?$", "sounds/homermix13/redwins.ogg")
add_sound("renegade", r"^renegade\W?$", "sounds/homermix13/renegade.ogg")
add_sound("retard", r"^retard\W?$", "sounds/homermix13/retard.ogg")
add_sound("rocky", r"^rocky\W?$", "sounds/homermix13/rocky.ogg")
add_sound("rockyouguitar", r"^rockyouguitar\W?$", "sounds/homermix13/rockyouguitar.ogg")
add_sound("sail", r"^sail\W?$", "sounds/homermix13/sail.ogg")
add_sound("salil", r"^salil\W?$", "sounds/homermix13/salil.ogg")
add_sound("samba", r"^samba\W?$", "sounds/homermix13/samba.ogg")
add_sound("sandstorm", r"^sandstorm\W?$", "sounds/homermix13/sandstorm.ogg")
add_sound("saymyname", r"^saymyname\W?$", "sounds/homermix13/saymyname.ogg")
add_sound("scatman", r"^scatman\W?$", "sounds/homermix13/scatman.ogg")
add_sound("sellyouall", r"^sellyouall\W?$", "sounds/homermix13/sellyouall.ogg")
add_sound("senseofhumor", r"^senseofhumor\W?$", "sounds/homermix13/senseofhumor.ogg")
add_sound("shakesenora", r"^shakesenora\W?$", "sounds/homermix13/shakesenora.ogg")
add_sound("shut the fuckup", r"^shut the fuck up\W?$", "sounds/homermix13/shutthefuckup.ogg")
add_sound("shut your fucking mouth", r"^shut your fucking mouth\W?$", "sounds/homermix13/shutyourfuckingmouth.ogg")
add_sound("silence", r"^silence\W?$", "sounds/homermix13/silence.ogg")
add_sound("smooth criminal", r"^smooth criminal\W?$", "sounds/homermix13/smoothcriminal.ogg")
add_sound("socobatevira", r"^socobatevira\W?$", "sounds/homermix13/socobatevira.ogg")
add_sound("ssocobatevira end", r"^socobatevira end\W?$", "sounds/homermix13/socobateviraend.ogg")
add_sound("socobatevira fast", r"^socobatevira fast\W?$", "sounds/homermix13/socobatevirafast.ogg")
add_sound("socobatevira slow", r"^socobatevira slow\W?$", "sounds/homermix13/socobateviraslow.ogg")
add_sound("sogivemereason", r"^sogivemereason\W?$", "sounds/homermix13/sogivemereason.ogg")
add_sound("so stupid", r"^so stupid\W?$", "sounds/homermix13/sostupid.ogg")
add_sound("space jam", r"^space jam\W?$", "sounds/homermix13/spacejam.ogg")
add_sound("space unicorn", r"^space unicorn\W?$", "sounds/homermix13/spaceunicorn.ogg")
add_sound("spierdalaj", r"^spierdalaj\W?$", "sounds/homermix13/spierdalaj.ogg")
add_sound("stamp on", r"^stamp on\W?$", "sounds/homermix13/stampon.ogg")
add_sound("star wars", r"^star wars\W?$", "sounds/homermix13/starwars.ogg")
add_sound("stayin alive", r"^stayin alive\W?$", "sounds/homermix13/stayinalive.ogg")
add_sound("stoning", r"^stoning\W?$", "sounds/homermix13/stoning.ogg")
add_sound("stop", r"^stop\W?$", "sounds/homermix13/stop.ogg")
add_sound("story", r"^story\W?$", "sounds/homermix13/story.ogg")
add_sound("surprise", r"^surprise\W?$", "sounds/homermix13/surprise.ogg")
add_sound("swedish chef", r"^swedish chef\W?$", "sounds/homermix13/swedishchef.ogg")
add_sound("sweet dreams", r"^sweet dreams\W?$", "sounds/homermix13/sweetdreams.ogg")
add_sound("take me down", r"^take me down\W?$", "sounds/homermix13/takemedown.ogg")
add_sound("talk scotish", r"^talk scotish\W?$", "sounds/homermix13/talkscotish.ogg")
add_sound("teamwork", r"^teamwork\W?$", "sounds/homermix13/teamwork.ogg")
add_sound("technology", r"^technology\W?$", "sounds/homermix13/technology.ogg")
add_sound("this is sparta", r"^this is sparta\W?$", "sounds/homermix13/thisissparta.ogg")
add_sound("thunderstruck", r"^thunderstruck\W?$", "sounds/homermix13/thunderstruck.ogg")
add_sound("to church", r"^to church\W?$", "sounds/homermix13/tochurch.ogg")
add_sound("tsunami", r"^tsunami\W?$", "sounds/homermix13/tsunami.ogg")
add_sound("tuturu", r"^tuturu\W?$", "sounds/homermix13/tuturu.ogg")
add_sound("tututu", r"^tututu\W?$", "sounds/homermix13/tututu.ogg")
add_sound("unbelievable", r"^unbelievable\W?$", "sounds/homermix13/unbelievable.ogg")
add_sound("undderhaifisch", r"^undderhaifisch\W?$", "sounds/homermix13/undderhaifisch.ogg")
add_sound("up town girl", r"^up town girl\W?$", "sounds/homermix13/uptowngirl.ogg")
add_sound("valkyries", r"^valkyries\W?$", "sounds/homermix13/valkyries.ogg")
add_sound("wahwahwah", r"^wahwahwah\W?$", "sounds/homermix13/wahwahwah.ogg")
add_sound("want you", r"^want you\W?$", "sounds/homermix13/wantyou.ogg")
add_sound("wazzup", r"^wazzup\W?$", "sounds/homermix13/wazzup.ogg")
add_sound("wehmirohweh", r"^wehmirohweh\W?$", "sounds/homermix13/wehmirohweh.ogg")
add_sound("what is love", r"^what is love\W?$", "sounds/homermix13/whatislove.ogg")
add_sound("when angels", r"^when angels\W?$", "sounds/homermix13/whenangels.ogg")
add_sound("where are you", r"^where are you\W?$", "sounds/homermix13/whereareyou.ogg")
add_sound("whistle", r"^whistle\W?$", "sounds/homermix13/whistle.ogg")
add_sound("will be singing", r"^will be singing\W?$", "sounds/homermix13/willbesinging.ogg")
add_sound("wimbaway", r"^wimbaway\W?$", "sounds/homermix13/wimbaway.ogg")
add_sound("windows", r"^windows\W?$", "sounds/homermix13/windows.ogg")
add_sound("would you like", r"^would you like\W?$", "sounds/homermix13/wouldyoulike.ogg")
add_sound("wtf", r"^wtf\W?$", "sounds/homermix13/wtf.ogg")
add_sound("yeee", r"^yeee\W?$", "sounds/homermix13/yeee.ogg")
add_sound("yes master", r"^yes master\W?$", "sounds/homermix13/yesmaster.ogg")
add_sound("yhehehe", r"^yhehehe\W?$", "sounds/homermix13/yhehehe.ogg")
add_sound("ymca", r"^ymca\W?$", "sounds/homermix13/ymca.ogg")
add_sound("you", r"^you\W?$", "sounds/homermix13/you.ogg")
add_sound("you fucked mywife", r"^you fucked mywife\W?$", "sounds/homermix13/youfuckedmywife.ogg")
add_sound("you realise", r"^you realise\W?$", "sounds/homermix13/yourealise.ogg")
add_sound("cheat", r"^cheat\W?$", "sounds/homermix13/cheat.ogg")
add_sound("homer", r"^homer\W?$", "sounds/homermix13/homer.ogg")
add_sound("homer1", r"^homer1\W?$", "sounds/homermix13/homer1.ogg")
add_sound("homer10", r"^homer10\W?$", "sounds/homermix13/homer10.ogg")
add_sound("homer11", r"^homer11\W?$", "sounds/homermix13/homer11.ogg")
add_sound("homer12", r"^homer12\W?$", "sounds/homermix13/homer12.ogg")
add_sound("homer13", r"^homer13\W?$", "sounds/homermix13/homer13.ogg")
add_sound("homer14", r"^homer14\W?$", "sounds/homermix13/homer14.ogg")
add_sound("homer15", r"^homer15\W?$", "sounds/homermix13/homer15.ogg")
add_sound("homer16", r"^homer16\W?$", "sounds/homermix13/homer16.ogg")
add_sound("homer17", r"^homer17\W?$", "sounds/homermix13/homer17.ogg")
add_sound("homer18", r"^homer18\W?$", "sounds/homermix13/homer18.ogg")
add_sound("homer19", r"^homer19\W?$", "sounds/homermix13/homer19.ogg")
add_sound("homer2", r"^homer2\W?$", "sounds/homermix13/homer2.ogg")
add_sound("homer20", r"^homer20\W?$", "sounds/homermix13/homer20.ogg")
add_sound("homer21", r"^homer21\W?$", "sounds/homermix13/homer21.ogg")
add_sound("homer22", r"^homer22\W?$", "sounds/homermix13/homer22.ogg")
add_sound("homer23", r"^homer23\W?$", "sounds/homermix13/homer23.ogg")
add_sound("homer24", r"^homer24\W?$", "sounds/homermix13/homer24.ogg")
add_sound("homer25", r"^homer25\W?$", "sounds/homermix13/homer25.ogg")
add_sound("homer26", r"^homer26\W?$", "sounds/homermix13/homer26.ogg")
add_sound("homer27", r"^homer27\W?$", "sounds/homermix13/homer27.ogg")
add_sound("homer28", r"^homer28\W?$", "sounds/homermix13/homer28.ogg")
add_sound("homer29", r"^homer29\W?$", "sounds/homermix13/homer29.ogg")
add_sound("homer3", r"^homer3\W?$", "sounds/homermix13/homer3.ogg")
add_sound("homer30", r"^homer30\W?$", "sounds/homermix13/homer30.ogg")
add_sound("homer31", r"^homer31\W?$", "sounds/homermix13/homer31.ogg")
add_sound("homer4", r"^homer4\W?$", "sounds/homermix13/homer4.ogg")
add_sound("homer5", r"^homer5\W?$", "sounds/homermix13/homer5.ogg")
add_sound("homer6", r"^homer6\W?$", "sounds/homermix13/homer6.ogg")
add_sound("homer7", r"^homer7\W?$", "sounds/homermix13/homer7.ogg")
add_sound("homer8", r"^homer8\W?$", "sounds/homermix13/homer8.ogg")
add_sound("homer9", r"^homer9\W?$", "sounds/homermix13/homer9.ogg")
add_sound("alrighty", r"^alrighty\W?$", "sounds/homermix13/alrighty.ogg")
add_sound("amphetamines", r"^amphetamines\W?$", "sounds/homermix13/amphetamines.ogg")
add_sound("anothergo", r"^anothergo\W?$", "sounds/homermix13/anothergo.ogg")
add_sound("argh2", r"^argh2\W?$", "sounds/homermix13/argh2.ogg")
add_sound("asshole", r"^asshole\W?$", "sounds/homermix13/asshole.ogg")
add_sound("assholes", r"^assholes\W?$", "sounds/homermix13/assholes.ogg")
add_sound("badtime", r"^badtime\W?$", "sounds/homermix13/badtime.ogg")
add_sound("banana", r"^banana\W?$", "sounds/homermix13/banana.ogg")
add_sound("becool", r"^becool\W?$", "sounds/homermix13/becool.ogg")
add_sound("beer2", r"^beer2\W?$", "sounds/homermix13/beer2.ogg")
add_sound("betterthaneveryone", r"^betterthaneveryone\W?$", "sounds/homermix13/betterthaneveryone.ogg")
add_sound("bigus", r"^bigus\W?$", "sounds/homermix13/bigus.ogg")
add_sound("bitelegs", r"^bitelegs\W?$", "sounds/homermix13/bitelegs.ogg")
add_sound("blindsee", r"^blindsee\W?$", "sounds/homermix13/blindsee.ogg")
add_sound("boomstick", r"^boomstick\W?$", "sounds/homermix13/boomstick.ogg")
add_sound("boylovers", r"^boylovers\W?$", "sounds/homermix13/boylovers.ogg")
add_sound("british", r"^british\W?$", "sounds/homermix13/british.ogg")
add_sound("bubblegum", r"^bubblegum\W?$", "sounds/homermix13/bubblegum.ogg")
add_sound("bullshit", r"^bullshit\W?$", "sounds/homermix13/bullshit.ogg")
add_sound("byebye", r"^byebye\W?$", "sounds/homermix13/byebye.ogg")
add_sound("cocky", r"^cocky\W?$", "sounds/homermix13/cocky.ogg")
add_sound("comedian", r"^comedian\W?$", "sounds/homermix13/comedian.ogg")
add_sound("concentration", r"^concentration\W?$", "sounds/homermix13/concentration.ogg")
add_sound("dickheads", r"^dickheads\W?$", "sounds/homermix13/dickheads.ogg")
add_sound("didnotknow", r"^didnotknow\W?$", "sounds/homermix13/didnotknow.ogg")
add_sound("dignity", r"^dignity\W?$", "sounds/homermix13/dignity.ogg")
add_sound("dirtbag", r"^dirtbag\W?$", "sounds/homermix13/dirtbag.ogg")
add_sound("donotlikeyou", r"^donotlikeyou\W?$", "sounds/homermix13/donotlikeyou.ogg")
add_sound("donttalk", r"^donttalk\W?$", "sounds/homermix13/donttalk.ogg")
add_sound("douchebag", r"^douchebag\W?$", "sounds/homermix13/douchebag.ogg")
add_sound("emergency", r"^emergency\W?$", "sounds/homermix13/emergency.ogg")
add_sound("entertained", r"^entertained\W?$", "sounds/homermix13/entertained.ogg")
add_sound("espresso", r"^espresso\W?$", "sounds/homermix13/espresso.ogg")
add_sound("explain", r"^explain\W?$", "sounds/homermix13/explain.ogg")
add_sound("extremely", r"^extremely\W?$", "sounds/homermix13/extremely.ogg")
add_sound("fancypants", r"^fancypants\W?$", "sounds/homermix13/fancypants.ogg")
add_sound("fart", r"^fart\W?$", "sounds/homermix13/fart.ogg")
add_sound("findfish", r"^findfish\W?$", "sounds/homermix13/findfish.ogg")
add_sound("frenchbastard", r"^frenchbastard\W?$", "sounds/homermix13/frenchbastard.ogg")
add_sound("fuckbag", r"^fuckbag\W?$", "sounds/homermix13/fuckbag.ogg")
add_sound("fuckyouup", r"^fuckyouup\W?$", "sounds/homermix13/fuckyouup.ogg")
add_sound("gameover", r"^gameover\W?$", "sounds/homermix13/gameover.ogg")
add_sound("getfucked", r"^getfucked\W?$", "sounds/homermix13/getfucked.ogg")
add_sound("glory2", r"^glory2\W?$", "sounds/homermix13/glory2.ogg")
add_sound("goaway", r"^goaway\W?$", "sounds/homermix13/goaway.ogg")
add_sound("gonnadie", r"^gonnadie\W?$", "sounds/homermix13/gonnadie.ogg")
add_sound("goodasitgets", r"^goodasitgets\W?$", "sounds/homermix13/goodasitgets.ogg")
add_sound("gottaleave", r"^gottaleave\W?$", "sounds/homermix13/gottaleave.ogg")
add_sound("grenadelauncher", r"^grenadelauncher\W?$", "sounds/homermix13/grenadelauncher.ogg")
add_sound("grenades", r"^grenades\W?$", "sounds/homermix13/grenades.ogg")
add_sound("groovy", r"^groovy\W?$", "sounds/homermix13/groovy.ogg")
add_sound("hamster", r"^hamster\W?$", "sounds/homermix13/hamster.ogg")
add_sound("hearthis", r"^hearthis\W?$", "sounds/homermix13/hearthis.ogg")
add_sound("hell", r"^hell\W?$", "sounds/homermix13/hell.ogg")
add_sound("holyjesus", r"^holyjesus\W?$", "sounds/homermix13/holyjesus.ogg")
add_sound("how", r"^how\W?$", "sounds/homermix13/how.ogg")
add_sound("imgood2", r"^imgood2\W?$", "sounds/homermix13/imgood2.ogg")
add_sound("italianbastards", r"^italianbastards\W?$", "sounds/homermix13/italianbastards.ogg")
add_sound("jackass", r"^jackass\W?$", "sounds/homermix13/jackass.ogg")
add_sound("jesuschrist", r"^jesuschrist\W?$", "sounds/homermix13/jesuschrist.ogg")
add_sound("keepfiring", r"^keepfiring\W?$", "sounds/homermix13/keepfiring.ogg")
add_sound("killedme", r"^killedme\W?$", "sounds/homermix13/killedme.ogg")
add_sound("killemall", r"^killemall\W?$", "sounds/homermix13/killemall.ogg")
add_sound("knight", r"^knight\W?$", "sounds/homermix13/knight.ogg")
add_sound("littlefriend", r"^littlefriend\W?$", "sounds/homermix13/littlefriend.ogg")
add_sound("looney", r"^looney\W?$", "sounds/homermix13/looney.ogg")
add_sound("Loser", r"^Loser\W?$", "sounds/homermix13/Loser.ogg")
add_sound("lucky", r"^lucky\W?$", "sounds/homermix13/lucky.ogg")
add_sound("maggot", r"^maggot\W?$", "sounds/homermix13/maggot.ogg")
add_sound("mushroom", r"^mushroom\W?$", "sounds/homermix13/mushroom.ogg")
add_sound("neversaw", r"^neversaw\W?$", "sounds/homermix13/neversaw.ogg")
add_sound("nicely", r"^nicely\W?$", "sounds/homermix13/nicely.ogg")
add_sound("nonepass", r"^nonepass\W?$", "sounds/homermix13/nonepass.ogg")
add_sound("notdead", r"^notdead\W?$", "sounds/homermix13/notdead.ogg")
add_sound("numnuts", r"^numnuts\W?$", "sounds/homermix13/numnuts.ogg")
add_sound("oops", r"^oops\W?$", "sounds/homermix13/oops.ogg")
add_sound("pissoff", r"^pissoff\W?$", "sounds/homermix13/pissoff.ogg")
add_sound("plan", r"^plan\W?$", "sounds/homermix13/plan.ogg")
add_sound("preparetodie", r"^preparetodie\W?$", "sounds/homermix13/preparetodie.ogg")
add_sound("pussywithagun", r"^pussywithagun\W?$", "sounds/homermix13/pussywithagun.ogg")
add_sound("readyforwar", r"^readyforwar\W?$", "sounds/homermix13/readyforwar.ogg")
add_sound("rocketlauncher", r"^rocketlauncher\W?$", "sounds/homermix13/rocketlauncher.ogg")
add_sound("runaway", r"^runaway\W?$", "sounds/homermix13/runaway.ogg")
add_sound("scared", r"^scared\W?$", "sounds/homermix13/scared.ogg")
add_sound("scum", r"^scum\W?$", "sounds/homermix13/scum.ogg")
add_sound("scumbag", r"^scumbag\W?$", "sounds/homermix13/scumbag.ogg")
add_sound("shameful", r"^shameful\W?$", "sounds/homermix13/shameful.ogg")
add_sound("shebitch", r"^shebitch\W?$", "sounds/homermix13/shebitch.ogg")
add_sound("sheeit", r"^sheeit\W?$", "sounds/homermix13/sheeit.ogg")
add_sound("sheeit2", r"^sheeit2\W?$", "sounds/homermix13/sheeit2.ogg")
add_sound("shhh", r"^shhh\W?$", "sounds/homermix13/shhh.ogg")
add_sound("shitter", r"^shitter\W?$", "sounds/homermix13/shitter.ogg")
add_sound("shotsomebody", r"^shotsomebody\W?$", "sounds/homermix13/shotsomebody.ogg")
add_sound("shotyou", r"^shotyou\W?$", "sounds/homermix13/shotyou.ogg")
add_sound("shouldbedead", r"^shouldbedead\W?$", "sounds/homermix13/shouldbedead.ogg")
add_sound("soonbedead", r"^soonbedead\W?$", "sounds/homermix13/soonbedead.ogg")
add_sound("stillhere", r"^stillhere\W?$", "sounds/homermix13/stillhere.ogg")
add_sound("stupid", r"^stupid\W?$", "sounds/homermix13/stupid.ogg")
add_sound("suckdicks", r"^suckdicks\W?$", "sounds/homermix13/suckdicks.ogg")
add_sound("sunrise", r"^sunrise\W?$", "sounds/homermix13/sunrise.ogg")
add_sound("surely", r"^surely\W?$", "sounds/homermix13/surely.ogg")
add_sound("swallow", r"^swallow\W?$", "sounds/homermix13/swallow.ogg")
add_sound("taunt", r"^taunt\W?$", "sounds/homermix13/taunt.ogg")
add_sound("unleash", r"^unleash\W?$", "sounds/homermix13/unleash.ogg")
add_sound("wannashoot", r"^wannashoot\W?$", "sounds/homermix13/wannashoot.ogg")
add_sound("waste", r"^waste\W?$", "sounds/homermix13/waste.ogg")
add_sound("weirdo", r"^weirdo\W?$", "sounds/homermix13/weirdo.ogg")
add_sound("whostheman", r"^whostheman\W?$", "sounds/homermix13/whostheman.ogg")
add_sound("winds", r"^winds\W?$", "sounds/homermix13/winds.ogg")
add_sound("woger", r"^woger\W?$", "sounds/homermix13/woger.ogg")
add_sound("woman", r"^woman\W?$", "sounds/homermix13/woman.ogg")
add_sound("women", r"^women\W?$", "sounds/homermix13/women.ogg")
add_sound("youbastard", r"^youbastard\W?$", "sounds/homermix13/youbastard.ogg")
add_sound("youdie", r"^youdie\W?$", "sounds/homermix13/youdie.ogg")
add_sound("0", r"^0\W?$", "sounds/homermix13/0.ogg")
add_sound("1", r"^1\W?$", "sounds/homermix13/1.ogg")
add_sound("12344321", r"^12344321\W?$", "sounds/homermix13/12344321.ogg")
add_sound("2", r"^2\W?$", "sounds/homermix13/2.ogg")
add_sound("2big", r"^2big\W?$", "sounds/homermix13/2big.ogg")
add_sound("2easy", r"^2easy\W?$", "sounds/homermix13/2easy.ogg")
add_sound("2silence", r"^2silence\W?$", "sounds/homermix13/2silence.ogg")
add_sound("3", r"^3\W?$", "sounds/homermix13/3.ogg")
add_sound("4", r"^4\W?$", "sounds/homermix13/4.ogg")
add_sound("5", r"^5\W?$", "sounds/homermix13/5.ogg")
add_sound("adrenaline", r"^adrenaline\W?$", "sounds/homermix13/adrenaline.ogg")
add_sound("advisory", r"^advisory\W?$", "sounds/homermix13/advisory.ogg")
add_sound("afewdollarsmore", r"^afewdollarsmore\W?$", "sounds/homermix13/afewdollarsmore.ogg")
add_sound("ahha", r"^ahha\W?$", "sounds/homermix13/ahha.ogg")
add_sound("airhorn", r"^airhorn\W?$", "sounds/homermix13/airhorn.ogg")
add_sound("alf", r"^alf\W?$", "sounds/homermix13/alf.ogg")
add_sound("alive", r"^alive\W?$", "sounds/homermix13/alive.ogg")
add_sound("all2easy", r"^all2easy\W?$", "sounds/homermix13/all2easy.ogg")
add_sound("alphorn", r"^alphorn\W?$", "sounds/homermix13/alphorn.ogg")
add_sound("americanbison", r"^americanbison\W?$", "sounds/homermix13/americanbison.ogg")
add_sound("amonkey", r"^amonkey\W?$", "sounds/homermix13/amonkey.ogg")
add_sound("anf", r"^anf\W?$", "sounds/homermix13/anf.ogg")
add_sound("apetor", r"^apetor\W?$", "sounds/homermix13/apetor.ogg")
add_sound("apollo", r"^apollo\W?$", "sounds/homermix13/apollo.ogg")
add_sound("Armor", r"^Armor\W?$", "sounds/homermix13/Armor.ogg")
add_sound("around", r"^around\W?$", "sounds/homermix13/around.ogg")
add_sound("auto", r"^auto\W?$", "sounds/homermix13/auto.ogg")
add_sound("AUTUMN", r"^AUTUMN\W?$", "sounds/homermix13/AUTUMN.ogg")
add_sound("auuu", r"^auuu\W?$", "sounds/homermix13/auuu.ogg")
add_sound("baa", r"^baa\W?$", "sounds/homermix13/baa.ogg")
add_sound("bagpipe", r"^bagpipe\W?$", "sounds/homermix13/bagpipe.ogg")
add_sound("bambina", r"^bambina\W?$", "sounds/homermix13/bambina.ogg")
add_sound("banana1", r"^banana1\W?$", "sounds/homermix13/banana1.ogg")
add_sound("banana2", r"^banana2\W?$", "sounds/homermix13/banana2.ogg")
add_sound("banana3", r"^banana3\W?$", "sounds/homermix13/banana3.ogg")
add_sound("bark", r"^bark\W?$", "sounds/homermix13/bark.ogg")
add_sound("batman", r"^batman\W?$", "sounds/homermix13/batman.ogg")
add_sound("beam", r"^beam\W?$", "sounds/homermix13/beam.ogg")
add_sound("bear", r"^bear\W?$", "sounds/homermix13/bear.ogg")
add_sound("beast", r"^beast\W?$", "sounds/homermix13/beast.ogg")
add_sound("beer", r"^beer\W?$", "sounds/homermix13/beer.ogg")
add_sound("beerbaron", r"^beerbaron\W?$", "sounds/homermix13/beerbaron.ogg")
add_sound("bellaciao", r"^bellaciao\W?$", "sounds/homermix13/bellaciao.ogg")
add_sound("bells", r"^bells\W?$", "sounds/homermix13/bells.ogg")
add_sound("bfg", r"^bfg\W?$", "sounds/homermix13/bfg.ogg")
add_sound("bidding", r"^bidding\W?$", "sounds/homermix13/bidding.ogg")
add_sound("bikini", r"^bikini\W?$", "sounds/homermix13/bikini.ogg")
add_sound("boldlygo", r"^boldlygo\W?$", "sounds/homermix13/boldlygo.ogg")
add_sound("bonanza", r"^bonanza\W?$", "sounds/homermix13/bonanza.ogg")
add_sound("boopboop", r"^boopboop\W?$", "sounds/homermix13/boopboop.ogg")
add_sound("breathing", r"^breathing\W?$", "sounds/homermix13/breathing.ogg")
add_sound("bta1", r"^bta1\W?$", "sounds/homermix13/bta1.ogg")
add_sound("bta2", r"^bta2\W?$", "sounds/homermix13/bta2.ogg")
add_sound("bud", r"^bud\W?$", "sounds/homermix13/bud.ogg")
add_sound("bvv3000", r"^bvv3000\W?$", "sounds/homermix13/bvv3000.ogg")
add_sound("cain", r"^cain\W?$", "sounds/homermix13/cain.ogg")
add_sound("cantare", r"^cantare\W?$", "sounds/homermix13/cantare.ogg")
add_sound("cantina", r"^cantina\W?$", "sounds/homermix13/cantina.ogg")
add_sound("captainplanet", r"^captainplanet\W?$", "sounds/homermix13/captainplanet.ogg")
add_sound("carmacksteam", r"^carmacksteam\W?$", "sounds/homermix13/carmacksteam.ogg")
add_sound("chains", r"^chains\W?$", "sounds/homermix13/chains.ogg")
add_sound("cheekibreeki", r"^cheekibreeki\W?$", "sounds/homermix13/cheekibreeki.ogg")
add_sound("cheto", r"^cheto\W?$", "sounds/homermix13/cheto.ogg")
add_sound("chewie1", r"^chewie1\W?$", "sounds/homermix13/chewie1.ogg")
add_sound("chewie2", r"^chewie2\W?$", "sounds/homermix13/chewie2.ogg")
add_sound("chewie4", r"^chewie4\W?$", "sounds/homermix13/chewie4.ogg")
add_sound("chewie5", r"^chewie5\W?$", "sounds/homermix13/chewie5.ogg")
add_sound("chewie6", r"^chewie6\W?$", "sounds/homermix13/chewie6.ogg")
add_sound("chewieisthatyou", r"^chewieisthatyou\W?$", "sounds/homermix13/chewieisthatyou.ogg")
add_sound("chewieroar", r"^chewieroar\W?$", "sounds/homermix13/chewieroar.ogg")
add_sound("chimpanzee", r"^chimpanzee\W?$", "sounds/homermix13/chimpanzee.ogg")
add_sound("ciaosiciliano", r"^ciaosiciliano\W?$", "sounds/homermix13/ciaosiciliano.ogg")
add_sound("coffee", r"^coffee\W?$", "sounds/homermix13/coffee.ogg")
add_sound("coke", r"^coke\W?$", "sounds/homermix13/coke.ogg")
add_sound("colpadichi", r"^colpadichi\W?$", "sounds/homermix13/colpadichi.ogg")
add_sound("cool", r"^cool\W?$", "sounds/homermix13/cool.ogg")
add_sound("corpo", r"^corpo\W?$", "sounds/homermix13/corpo.ogg")
add_sound("corrida", r"^corrida\W?$", "sounds/homermix13/corrida.ogg")
add_sound("cow", r"^cow\W?$", "sounds/homermix13/cow.ogg")
add_sound("coyote", r"^coyote\W?$", "sounds/homermix13/coyote.ogg")
add_sound("cranberry", r"^cranberry\W?$", "sounds/homermix13/cranberry.ogg")
add_sound("cult", r"^cult\W?$", "sounds/homermix13/cult.ogg")
add_sound("curaro", r"^curaro\W?$", "sounds/homermix13/curaro.ogg")
add_sound("de", r"^de\W?$", "sounds/homermix13/de.ogg")
add_sound("dead", r"^dead\W?$", "sounds/homermix13/dead.ogg")
add_sound("deftones", r"^deftones\W?$", "sounds/homermix13/deftones.ogg")
add_sound("delay", r"^delay\W?$", "sounds/homermix13/delay.ogg")
add_sound("depression", r"^depression\W?$", "sounds/homermix13/depression.ogg")
add_sound("devils", r"^devils\W?$", "sounds/homermix13/devils.ogg")
add_sound("didgeridoo", r"^didgeridoo\W?$", "sounds/homermix13/didgeridoo.ogg")
add_sound("dildos", r"^dildos\W?$", "sounds/homermix13/dildos.ogg")
add_sound("dimmu", r"^dimmu\W?$", "sounds/homermix13/dimmu.ogg")
add_sound("djembe", r"^djembe\W?$", "sounds/homermix13/djembe.ogg")
add_sound("doilookgay", r"^doilookgay\W?$", "sounds/homermix13/doilookgay.ogg")
add_sound("dollar", r"^dollar\W?$", "sounds/homermix13/dollar.ogg")
add_sound("dollars", r"^dollars\W?$", "sounds/homermix13/dollars.ogg")
add_sound("donthaveto", r"^donthaveto\W?$", "sounds/homermix13/donthaveto.ogg")
add_sound("doot", r"^doot\W?$", "sounds/homermix13/doot.ogg")
add_sound("dorothee", r"^dorothee\W?$", "sounds/homermix13/dorothee.ogg")
add_sound("dreamon", r"^dreamon\W?$", "sounds/homermix13/dreamon.ogg")
add_sound("drwilits", r"^drwilits\W?$", "sounds/homermix13/drwilits.ogg")
add_sound("dzialac", r"^dzialac\W?$", "sounds/homermix13/dzialac.ogg")
add_sound("eagle", r"^eagle\W?$", "sounds/homermix13/eagle.ogg")
add_sound("earth", r"^earth\W?$", "sounds/homermix13/earth.ogg")
add_sound("ef", r"^ef\W?$", "sounds/homermix13/ef.ogg")
add_sound("eknm", r"^eknm\W?$", "sounds/homermix13/eknm.ogg")
add_sound("elea", r"^elea\W?$", "sounds/homermix13/elea.ogg")
add_sound("elwehn", r"^elwehn\W?$", "sounds/homermix13/elwehn.ogg")
add_sound("enterthesithlord", r"^enterthesithlord\W?$", "sounds/homermix13/enterthesithlord.ogg")
add_sound("esel", r"^esel\W?$", "sounds/homermix13/esel.ogg")
add_sound("espagne", r"^espagne\W?$", "sounds/homermix13/espagne.ogg")
add_sound("euclidean", r"^euclidean\W?$", "sounds/homermix13/euclidean.ogg")
add_sound("everybodybecool", r"^everybodybecool\W?$", "sounds/homermix13/everybodybecool.ogg")
add_sound("everything", r"^everything\W?$", "sounds/homermix13/everything.ogg")
add_sound("excauseme", r"^excauseme\W?$", "sounds/homermix13/excauseme.ogg")
add_sound("excellent2", r"^excellent2\W?$", "sounds/homermix13/excellent.ogg")
add_sound("expecting", r"^expecting\W?$", "sounds/homermix13/expecting.ogg")
add_sound("expresso", r"^expresso\W?$", "sounds/homermix13/expresso.ogg")
add_sound("ezekiel", r"^ezekiel\W?$", "sounds/homermix13/ezekiel.ogg")
add_sound("facedemon", r"^facedemon\W?$", "sounds/homermix13/facedemon.ogg")
add_sound("falcon", r"^falcon\W?$", "sounds/homermix13/falcon.ogg")
add_sound("february", r"^february\W?$", "sounds/homermix13/february.ogg")
add_sound("feel", r"^feel\W?$", "sounds/homermix13/feel.ogg")
add_sound("feuerwehr", r"^feuerwehr\W?$", "sounds/homermix13/feuerwehr.ogg")
add_sound("ffs", r"^ffs\W?$", "sounds/homermix13/ffs.ogg")
add_sound("fichtl", r"^fichtl\W?$", "sounds/homermix13/fichtl.ogg")
add_sound("finalfrontier", r"^finalfrontier\W?$", "sounds/homermix13/finalfrontier.ogg")
add_sound("fireflies", r"^fireflies\W?$", "sounds/homermix13/fireflies.ogg")
add_sound("five", r"^five\W?$", "sounds/homermix13/five.ogg")
add_sound("fledermaus", r"^fledermaus\W?$", "sounds/homermix13/fledermaus.ogg")
add_sound("fly", r"^fly\W?$", "sounds/homermix13/fly.ogg")
add_sound("force", r"^force\W?$", "sounds/homermix13/force.ogg")
add_sound("forgonedestruction", r"^forgonedestruction\W?$", "sounds/homermix13/forgonedestruction.ogg")
add_sound("four", r"^four\W?$", "sounds/homermix13/four.ogg")
add_sound("fred", r"^fred\W?$", "sounds/homermix13/fred.ogg")
add_sound("frog", r"^frog\W?$", "sounds/homermix13/frog.ogg")
add_sound("fromsomewhere", r"^fromsomewhere\W?$", "sounds/homermix13/fromsomewhere.ogg")
add_sound("fuego", r"^fuego\W?$", "sounds/homermix13/fuego.ogg")
add_sound("funkusmunkus", r"^funkusmunkus\W?$", "sounds/homermix13/funkusmunkus.ogg")
add_sound("g", r"^g\W?$", "sounds/homermix13/g.ogg")
add_sound("garlander", r"^garlander\W?$", "sounds/homermix13/garlander.ogg")
add_sound("gayluigi", r"^gayluigi\W?$", "sounds/homermix13/gayluigi.ogg")
add_sound("gdmt", r"^gdmt\W?$", "sounds/homermix13/gdmt.ogg")
add_sound("gelg", r"^gelg\W?$", "sounds/homermix13/gelg.ogg")
add_sound("gendarmerie", r"^gendarmerie\W?$", "sounds/homermix13/gendarmerie.ogg")
add_sound("germanjoke", r"^germanjoke\W?$", "sounds/homermix13/germanjoke.ogg")
add_sound("getoff", r"^getoff\W?$", "sounds/homermix13/getoff.ogg")
add_sound("gigi", r"^gigi\W?$", "sounds/homermix13/gigi.ogg")
add_sound("gijoe", r"^gijoe\W?$", "sounds/homermix13/gijoe.ogg")
add_sound("girlwoman", r"^girlwoman\W?$", "sounds/homermix13/girlwoman.ogg")
add_sound("glory", r"^glory\W?$", "sounds/homermix13/glory.ogg")
add_sound("godfather", r"^godfather\W?$", "sounds/homermix13/godfather.ogg")
add_sound("godnatt", r"^godnatt\W?$", "sounds/homermix13/godnatt.ogg")
add_sound("gong", r"^gong\W?$", "sounds/homermix13/gong.ogg")
add_sound("goodbye", r"^goodbye\W?$", "sounds/homermix13/goodbye.ogg")
add_sound("goodday", r"^goodday\W?$", "sounds/homermix13/goodday.ogg")
add_sound("goodeveningoficer", r"^goodeveningoficer\W?$", "sounds/homermix13/goodeveningoficer.ogg")
add_sound("goodluckhavefun", r"^goodluckhavefun\W?$", "sounds/homermix13/goodluckhavefun.ogg")
add_sound("goodmyning1", r"^goodmyning1\W?$", "sounds/homermix13/goodmyning1.ogg")
add_sound("goon", r"^goon\W?$", "sounds/homermix13/goon.ogg")
add_sound("greetings", r"^greetings\W?$", "sounds/homermix13/greetings.ogg")
add_sound("gtag", r"^gtag\W?$", "sounds/homermix13/gtag.ogg")
add_sound("guerrilla", r"^guerrilla\W?$", "sounds/homermix13/guerrilla.ogg")
add_sound("gypsyguitar", r"^gypsyguitar\W?$", "sounds/homermix13/gypsyguitar.ogg")
add_sound("hakunamatata2", r"^hakunamatata2\W?$", "sounds/homermix13/hakunamatata2.ogg")
add_sound("hansolo", r"^hansolo\W?$", "sounds/homermix13/hansolo.ogg")
add_sound("hanswurscht", r"^hanswurscht\W?$", "sounds/homermix13/hanswurscht.ogg")
add_sound("haslanded", r"^haslanded\W?$", "sounds/homermix13/haslanded.ogg")
add_sound("hbells", r"^hbells\W?$", "sounds/homermix13/hbells.ogg")
add_sound("headwind", r"^headwind\W?$", "sounds/homermix13/headwind.ogg")
add_sound("heaven", r"^heaven\W?$", "sounds/homermix13/heaven.ogg")
add_sound("heey", r"^heey\W?$", "sounds/homermix13/heey.ogg")
add_sound("heh", r"^heh\W?$", "sounds/homermix13/heh.ogg")
add_sound("hehe", r"^hehe\W?$", "sounds/homermix13/hehe.ogg")
add_sound("heideroosjes", r"^heideroosjes\W?$", "sounds/homermix13/heideroosjes.ogg")
add_sound("hello", r"^hello\W?$", "sounds/homermix13/hello3.ogg")
add_sound("Helloadele", r"^Helloadele\W?$", "sounds/homermix13/Helloadele.ogg")
add_sound("hellobritain", r"^hellobritain\W?$", "sounds/homermix13/hellobritain.ogg")
add_sound("hellosamantha", r"^hellosamantha\W?$", "sounds/homermix13/hellosamantha.ogg")
add_sound("hellosamantha2", r"^hellosamantha2\W?$", "sounds/homermix13/hellosamantha2.ogg")
add_sound("hells", r"^hells\W?$", "sounds/homermix13/hells.ogg")
add_sound("helpme", r"^helpme\W?$", "sounds/homermix13/helpme.ogg")
add_sound("herzlichwilkomen", r"^herzlichwilkomen\W?$", "sounds/homermix13/herzlichwilkomen.ogg")
add_sound("hey", r"^hey\W?$", "sounds/homermix13/hey.ogg")
add_sound("heykid", r"^heykid\W?$", "sounds/homermix13/heykid.ogg")
add_sound("heyo", r"^heyo\W?$", "sounds/homermix13/heyo.ogg")
add_sound("hits", r"^hits\W?$", "sounds/homermix13/hits.ogg")
add_sound("hog", r"^hog\W?$", "sounds/homermix13/hog.ogg")
add_sound("holdon", r"^holdon\W?$", "sounds/homermix13/holdon.ogg")
add_sound("holynight", r"^holynight\W?$", "sounds/homermix13/holynight.ogg")
add_sound("home", r"^home\W?$", "sounds/homermix13/home.ogg")
add_sound("horadricstaff", r"^horadricstaff\W?$", "sounds/homermix13/horadricstaff.ogg")
add_sound("horn", r"^horn\W?$", "sounds/homermix13/horn.ogg")
add_sound("Horseneigh", r"^Horseneigh\W?$", "sounds/homermix13/Horseneigh.ogg")
add_sound("horus", r"^horus\W?$", "sounds/homermix13/horus.ogg")
add_sound("houra", r"^houra\W?$", "sounds/homermix13/houra.ogg")
add_sound("huh", r"^huh\W?$", "sounds/homermix13/huh.ogg")
add_sound("human", r"^human\W?$", "sounds/homermix13/human.ogg")
add_sound("humpback", r"^humpback\W?$", "sounds/homermix13/humpback.ogg")
add_sound("hurensohn", r"^hurensohn\W?$", "sounds/homermix13/hurensohn.ogg")
add_sound("hurricane", r"^hurricane\W?$", "sounds/homermix13/hurricane.ogg")
add_sound("husqvarna", r"^husqvarna\W?$", "sounds/homermix13/husqvarna.ogg")
add_sound("icq", r"^icq\W?$", "sounds/homermix13/icq.ogg")
add_sound("identify", r"^identify\W?$", "sounds/homermix13/identify.ogg")
add_sound("ifiloveyou", r"^ifiloveyou\W?$", "sounds/homermix13/ifiloveyou.ogg")
add_sound("imgay", r"^imgay\W?$", "sounds/homermix13/imgay.ogg")
add_sound("imgood", r"^imgood\W?$", "sounds/homermix13/imgood.ogg")
add_sound("indroducing", r"^indroducing\W?$", "sounds/homermix13/indroducing.ogg")
add_sound("instructions", r"^instructions\W?$", "sounds/homermix13/instructions.ogg")
add_sound("intron", r"^intron\W?$", "sounds/homermix13/intron.ogg")
add_sound("irish", r"^irish\W?$", "sounds/homermix13/irish.ogg")
add_sound("italia", r"^italia\W?$", "sounds/homermix13/italia.ogg")
add_sound("itsmesam", r"^itsmesam\W?$", "sounds/homermix13/itsmesam.ogg")
add_sound("jabba", r"^jabba\W?$", "sounds/homermix13/jabba.ogg")
add_sound("jagger", r"^jagger\W?$", "sounds/homermix13/jagger.ogg")
add_sound("jambo", r"^jambo\W?$", "sounds/homermix13/jambo.ogg")
add_sound("jeder", r"^jeder\W?$", "sounds/homermix13/jeder.ogg")
add_sound("jerry", r"^jerry\W?$", "sounds/homermix13/jerry.ogg")
add_sound("jet", r"^jet\W?$", "sounds/homermix13/jet.ogg")
add_sound("jetrunner", r"^jetrunner\W?$", "sounds/homermix13/jetrunner.ogg")
add_sound("jinkies", r"^jinkies\W?$", "sounds/homermix13/jinkies.ogg")
add_sound("jump", r"^jump\W?$", "sounds/homermix13/jump.ogg")
add_sound("jumparound", r"^jumparound\W?$", "sounds/homermix13/jumparound.ogg")
add_sound("jyo", r"^jyo\W?$", "sounds/homermix13/jyo.ogg")
add_sound("karamba", r"^karamba\W?$", "sounds/homermix13/karamba.ogg")
add_sound("kebab", r"^kebab\W?$", "sounds/homermix13/kebab.ogg")
add_sound("keldsmom", r"^keldsmom\W?$", "sounds/homermix13/keldsmom.ogg")
add_sound("klitchko", r"^klitchko\W?$", "sounds/homermix13/klitchko.ogg")
add_sound("krombacher", r"^krombacher\W?$", "sounds/homermix13/krombacher.ogg")
add_sound("labatalion", r"^labatalion\W?$", "sounds/homermix13/labatalion.ogg")
add_sound("laferrari", r"^laferrari\W?$", "sounds/homermix13/laferrari.ogg")
add_sound("lalalala", r"^lalalala\W?$", "sounds/homermix13/lalalala.ogg")
add_sound("laughoutloud", r"^laughoutloud\W?$", "sounds/homermix13/laughoutloud.ogg")
add_sound("lbriff", r"^lbriff\W?$", "sounds/homermix13/lbriff.ogg")
add_sound("letter", r"^letter\W?$", "sounds/homermix13/letter.ogg")
add_sound("libbys", r"^libbys\W?$", "sounds/homermix13/libbys.ogg")
add_sound("lightsaberon", r"^lightsaberon\W?$", "sounds/homermix13/lightsaberon.ogg")
add_sound("likeanalien", r"^likeanalien\W?$", "sounds/homermix13/likeanalien.ogg")
add_sound("lion", r"^lion\W?$", "sounds/homermix13/lion.ogg")
add_sound("liszthu", r"^liszthu\W?$", "sounds/homermix13/liszthu.ogg")
add_sound("littletank", r"^littletank\W?$", "sounds/homermix13/littletank.ogg")
add_sound("loco", r"^loco\W?$", "sounds/homermix13/loco.ogg")
add_sound("looking4", r"^looking4\W?$", "sounds/homermix13/looking4.ogg")
add_sound("lotsa", r"^lotsa\W?$", "sounds/homermix13/lotsa.ogg")
add_sound("mannelig", r"^mannelig\W?$", "sounds/homermix13/mannelig.ogg")
add_sound("marseliese", r"^marseliese\W?$", "sounds/homermix13/marseliese.ogg")
add_sound("mcmelle", r"^mcmelle\W?$", "sounds/homermix13/mcmelle.ogg")
add_sound("meepmeep", r"^meepmeep\W?$", "sounds/homermix13/meepmeep.ogg")
add_sound("meow", r"^meow\W?$", "sounds/homermix13/meow.ogg")
add_sound("meow2you", r"^meow2you\W?$", "sounds/homermix13/meow2you.ogg")
add_sound("meowmeow", r"^meowmeow\W?$", "sounds/homermix13/meowmeow.ogg")
add_sound("mercedes-benz", r"^mercedes-benz\W?$", "sounds/homermix13/mercedes-benz.ogg")
add_sound("merlins", r"^merlins\W?$", "sounds/homermix13/merlins.ogg")
add_sound("miami", r"^miami\W?$", "sounds/homermix13/miami.ogg")
add_sound("migente", r"^migente\W?$", "sounds/homermix13/migente.ogg")
add_sound("milenium", r"^milenium\W?$", "sounds/homermix13/milenium.ogg")
add_sound("mind", r"^mind\W?$", "sounds/homermix13/mind.ogg")
add_sound("mirbistduschoen", r"^mirbistduschoen\W?$", "sounds/homermix13/mirbistduschoen.ogg")
add_sound("mjolk", r"^mjolk\W?$", "sounds/homermix13/mjolk.ogg")
add_sound("monkey", r"^monkey\W?$", "sounds/homermix13/monkey.ogg")
add_sound("monkeymagic", r"^monkeymagic\W?$", "sounds/homermix13/monkeymagic.ogg")
add_sound("monkeys", r"^monkeys\W?$", "sounds/homermix13/monkeys.ogg")
add_sound("moo", r"^moo\W?$", "sounds/homermix13/moo.ogg")
add_sound("moshchnyy", r"^moshchnyy\W?$", "sounds/homermix13/moshchnyy.ogg")
add_sound("moustachedeux", r"^moustachedeux\W?$", "sounds/homermix13/moustachedeux.ogg")
add_sound("moustacheune", r"^moustacheune\W?$", "sounds/homermix13/moustacheune.ogg")
add_sound("mralfons", r"^mralfons\W?$", "sounds/homermix13/mralfons.ogg")
add_sound("munsters", r"^munsters\W?$", "sounds/homermix13/munsters.ogg")
add_sound("muttley", r"^muttley\W?$", "sounds/homermix13/muttley.ogg")
add_sound("muttleyy", r"^muttleyy\W?$", "sounds/homermix13/muttleyy.ogg")
add_sound("muttleyyy", r"^muttleyyy\W?$", "sounds/homermix13/muttleyyy.ogg")
add_sound("ncc1701", r"^ncc1701\W?$", "sounds/homermix13/ncc1701.ogg")
add_sound("ncc74656", r"^ncc74656\W?$", "sounds/homermix13/ncc74656.ogg")
add_sound("nephie", r"^nephie\W?$", "sounds/homermix13/nephie.ogg")
add_sound("nespresso", r"^nespresso\W?$", "sounds/homermix13/nespresso.ogg")
add_sound("newhope", r"^newhope\W?$", "sounds/homermix13/newhope.ogg")
add_sound("newyear", r"^newyear\W?$", "sounds/homermix13/newyear.ogg")
add_sound("neynanana", r"^neynanana\W?$", "sounds/homermix13/neynanana.ogg")
add_sound("nga", r"^nga\W?$", "sounds/homermix13/nga.ogg")
add_sound("nookie", r"^nookie\W?$", "sounds/homermix13/nookie.ogg")
add_sound("nookiecomeon", r"^nookiecomeon\W?$", "sounds/homermix13/nookiecomeon.ogg")
add_sound("notchopin", r"^notchopin\W?$", "sounds/homermix13/notchopin.ogg")
add_sound("office", r"^office\W?$", "sounds/homermix13/office.ogg")
add_sound("ohcanada", r"^ohcanada\W?$", "sounds/homermix13/ohcanada.ogg")
add_sound("orbit", r"^orbit\W?$", "sounds/homermix13/orbit.ogg")
add_sound("orion", r"^orion\W?$", "sounds/homermix13/orion.ogg")
add_sound("osolemio", r"^osolemio\W?$", "sounds/homermix13/osolemio.ogg")
add_sound("owow", r"^owow\W?$", "sounds/homermix13/owow.ogg")
add_sound("paranoid", r"^paranoid\W?$", "sounds/homermix13/paranoid.ogg")
add_sound("passenger", r"^passenger\W?$", "sounds/homermix13/passenger.ogg")
add_sound("pava", r"^pava\W?$", "sounds/homermix13/pava.ogg")
add_sound("peace", r"^peace\W?$", "sounds/homermix13/peace.ogg")
add_sound("pewpewpew", r"^pewpewpew\W?$", "sounds/homermix13/pewpewpew.ogg")
add_sound("phew", r"^phew\W?$", "sounds/homermix13/phew.ogg")
add_sound("pic", r"^pic\W?$", "sounds/homermix13/pic.ogg")
add_sound("pig", r"^pig\W?$", "sounds/homermix13/pig.ogg")
add_sound("pink", r"^pink\W?$", "sounds/homermix13/pink.ogg")
add_sound("pinki", r"^pinki\W?$", "sounds/homermix13/pinki.ogg")
add_sound("pinkyring", r"^pinkyring\W?$", "sounds/homermix13/pinkyring.ogg")
add_sound("planet", r"^planet\W?$", "sounds/homermix13/planet.ogg")
add_sound("polska", r"^polska\W?$", "sounds/homermix13/polska.ogg")
add_sound("pork", r"^pork\W?$", "sounds/homermix13/pork.ogg")
add_sound("porsche", r"^porsche\W?$", "sounds/homermix13/porsche.ogg")
add_sound("prankster", r"^prankster\W?$", "sounds/homermix13/prankster.ogg")
add_sound("problem", r"^problem\W?$", "sounds/homermix13/problem.ogg")
add_sound("proceed", r"^proceed\W?$", "sounds/homermix13/proceed.ogg")
add_sound("proste", r"^proste\W?$", "sounds/homermix13/proste.ogg")
add_sound("protecttheenviroment", r"^protecttheenviroment\W?$", "sounds/homermix13/protecttheenviroment.ogg")
add_sound("proximus", r"^proximus\W?$", "sounds/homermix13/proximus.ogg")
add_sound("Ptite", r"^Ptite\W?$", "sounds/homermix13/Ptite.ogg")
add_sound("pumuckel", r"^pumuckel\W?$", "sounds/homermix13/pumuckel.ogg")
add_sound("pussylovers", r"^pussylovers\W?$", "sounds/homermix13/pussylovers.ogg")
add_sound("r2d2", r"^r2d2\W?$", "sounds/homermix13/r2d2.ogg")
add_sound("rarotonga", r"^rarotonga\W?$", "sounds/homermix13/rarotonga.ogg")
add_sound("rastaman", r"^rastaman\W?$", "sounds/homermix13/rastaman.ogg")
add_sound("razorback", r"^razorback\W?$", "sounds/homermix13/razorback.ogg")
add_sound("redalert", r"^redalert\W?$", "sounds/homermix13/redalert.ogg")
add_sound("rifle", r"^rifle\W?$", "sounds/homermix13/rifle.ogg")
add_sound("rises", r"^rises\W?$", "sounds/homermix13/rises.ogg")
add_sound("roadrunner", r"^roadrunner\W?$", "sounds/homermix13/roadrunner.ogg")
add_sound("roger", r"^roger\W?$", "sounds/homermix13/roger.ogg")
add_sound("sardine1", r"^sardine1\W?$", "sounds/homermix13/sardine1.ogg")
add_sound("sardine2", r"^sardine2\W?$", "sounds/homermix13/sardine2.ogg")
add_sound("sardine3", r"^sardine3\W?$", "sounds/homermix13/sardine3.ogg")
add_sound("scratch", r"^scratch\W?$", "sounds/homermix13/scratch.ogg")
add_sound("screw", r"^screw\W?$", "sounds/homermix13/screw.ogg")
add_sound("seafire", r"^seafire\W?$", "sounds/homermix13/seafire.ogg")
add_sound("shalom", r"^shalom\W?$", "sounds/homermix13/shalom.ogg")
add_sound("silentnight", r"^silentnight\W?$", "sounds/homermix13/silentnight.ogg")
add_sound("sing", r"^sing\W?$", "sounds/homermix13/sing.ogg")
add_sound("sinisterplan", r"^sinisterplan\W?$", "sounds/homermix13/sinisterplan.ogg")
add_sound("sir", r"^sir\W?$", "sounds/homermix13/sir.ogg")
add_sound("sithlord", r"^sithlord\W?$", "sounds/homermix13/sithlord.ogg")
add_sound("skippi", r"^skippi\W?$", "sounds/homermix13/skippi.ogg")
add_sound("slayer", r"^slayer\W?$", "sounds/homermix13/slayer.ogg")
add_sound("slenchy", r"^slenchy\W?$", "sounds/homermix13/slenchy.ogg")
add_sound("sonnentanz", r"^sonnentanz\W?$", "sounds/homermix13/sonnentanz.ogg")
add_sound("soul", r"^soul\W?$", "sounds/homermix13/soul.ogg")
add_sound("soulfly", r"^soulfly\W?$", "sounds/homermix13/soulfly.ogg")
add_sound("space", r"^space\W?$", "sounds/homermix13/space.ogg")
add_sound("spacespace", r"^spacespace\W?$", "sounds/homermix13/spacespace.ogg")
add_sound("spaghetti", r"^spaghetti\W?$", "sounds/homermix13/spaghetti.ogg")
add_sound("sparkle", r"^sparkle\W?$", "sounds/homermix13/sparkle.ogg")
add_sound("spice", r"^spice\W?$", "sounds/homermix13/spice.ogg")
add_sound("spiderman", r"^spiderman\W?$", "sounds/homermix13/spiderman.ogg")
add_sound("spring", r"^spring\W?$", "sounds/homermix13/spring.ogg")
add_sound("stojc", r"^stojc\W?$", "sounds/homermix13/stojc.ogg")
add_sound("Story2", r"^Story2\W?$", "sounds/homermix13/Story2.ogg")
add_sound("strocks", r"^strocks\W?$", "sounds/homermix13/strocks.ogg")
add_sound("summer", r"^summer\W?$", "sounds/homermix13/summer.ogg")
add_sound("summerjam", r"^summerjam\W?$", "sounds/homermix13/summerjam.ogg")
add_sound("superhuman", r"^superhuman\W?$", "sounds/homermix13/superhuman.ogg")
add_sound("supernullardo", r"^supernullardo\W?$", "sounds/homermix13/supernullardo.ogg")
add_sound("taughtuwell", r"^taughtuwell\W?$", "sounds/homermix13/taughtuwell.ogg")
add_sound("tdf", r"^tdf\W?$", "sounds/homermix13/tdf.ogg")
add_sound("teachings", r"^teachings\W?$", "sounds/homermix13/teachings.ogg")
add_sound("thecanada", r"^thecanada\W?$", "sounds/homermix13/thecanada.ogg")
add_sound("throttle", r"^throttle\W?$", "sounds/homermix13/throttle.ogg")
add_sound("thx", r"^thx\W?$", "sounds/homermix13/thx.ogg")
add_sound("tiger", r"^tiger\W?$", "sounds/homermix13/tiger.ogg")
add_sound("toearth", r"^toearth\W?$", "sounds/homermix13/toearth.ogg")
add_sound("tournament", r"^tournament\W?$", "sounds/homermix13/tournament.ogg")
add_sound("treasure", r"^treasure\W?$", "sounds/homermix13/treasure.ogg")
add_sound("trek", r"^trek\W?$", "sounds/homermix13/trek.ogg")
add_sound("tribe", r"^tribe\W?$", "sounds/homermix13/tribe.ogg")
add_sound("trinken", r"^trinken\W?$", "sounds/homermix13/trinken.ogg")
add_sound("truchampion", r"^truchampion\W?$", "sounds/homermix13/truchampion.ogg")
add_sound("trumpel", r"^trumpel\W?$", "sounds/homermix13/trumpel.ogg")
add_sound("turbonegro", r"^turbonegro\W?$", "sounds/homermix13/turbonegro.ogg")
add_sound("tyranie", r"^tyranie\W?$", "sounds/homermix13/tyranie.ogg")
add_sound("ud", r"^ud\W?$", "sounds/homermix13/ud.ogg")
add_sound("uefa", r"^uefa\W?$", "sounds/homermix13/uefa.ogg")
add_sound("ufo", r"^ufo\W?$", "sounds/homermix13/ufo.ogg")
add_sound("ugav", r"^ugav\W?$", "sounds/homermix13/ugav.ogg")
add_sound("ughm", r"^ughm\W?$", "sounds/homermix13/ughm.ogg")
add_sound("ukok", r"^ukok\W?$", "sounds/homermix13/ukok.ogg")
add_sound("ukulele", r"^ukulele\W?$", "sounds/homermix13/ukulele.ogg")
add_sound("une", r"^une\W?$", "sounds/homermix13/une.ogg")
add_sound("unforgiven", r"^unforgiven\W?$", "sounds/homermix13/unforgiven.ogg")
add_sound("unpipe", r"^unpipe\W?$", "sounds/homermix13/unpipe.ogg")
add_sound("usa", r"^usa\W?$", "sounds/homermix13/usa.ogg")
add_sound("uwish", r"^uwish\W?$", "sounds/homermix13/uwish.ogg")
add_sound("valhalla", r"^valhalla\W?$", "sounds/homermix13/valhalla.ogg")
add_sound("vdn", r"^vdn\W?$", "sounds/homermix13/vdn.ogg")
add_sound("venitlek", r"^venitlek\W?$", "sounds/homermix13/venitlek.ogg")
add_sound("vochomurko", r"^vochomurko\W?$", "sounds/homermix13/vochomurko.ogg")
add_sound("vogel", r"^vogel\W?$", "sounds/homermix13/vogel.ogg")
add_sound("volvo", r"^volvo\W?$", "sounds/homermix13/volvo.ogg")
add_sound("volvomanden", r"^volvomanden\W?$", "sounds/homermix13/volvomanden.ogg")
add_sound("voyages", r"^voyages\W?$", "sounds/homermix13/voyages.ogg")
add_sound("weired", r"^weired\W?$", "sounds/homermix13/weired.ogg")
add_sound("whatwesaw", r"^whatwesaw\W?$", "sounds/homermix13/whatwesaw.ogg")
add_sound("whip", r"^whip\W?$", "sounds/homermix13/whip.ogg")
add_sound("whipmaster", r"^whipmaster\W?$", "sounds/homermix13/whipmaster.ogg")
add_sound("wilits", r"^wilits\W?$", "sounds/homermix13/wilits.ogg")
add_sound("winter", r"^winter\W?$", "sounds/homermix13/winter.ogg")
add_sound("winterday", r"^winterday\W?$", "sounds/homermix13/winterday.ogg")
add_sound("wisent", r"^wisent\W?$", "sounds/homermix13/wisent.ogg")
add_sound("woahmama", r"^woahmama\W?$", "sounds/homermix13/woahmama.ogg")
add_sound("wuerm", r"^wuerm\W?$", "sounds/homermix13/wuerm.ogg")
add_sound("wutang", r"^wutang\W?$", "sounds/homermix13/wutang.ogg")
add_sound("x", r"^x\W?$", "sounds/homermix13/x.ogg")
add_sound("yes", r"^yes\W?$", "sounds/homermix13/yes.ogg")
add_sound("yeyeyeah", r"^yeyeyeah\W?$", "sounds/homermix13/yeyeyeah.ogg")
add_sound("yo", r"^yo\W?$", "sounds/homermix13/yo.ogg")
add_sound("yodel", r"^yodel\W?$", "sounds/homermix13/yodel.ogg")
add_sound("yogi", r"^yogi\W?$", "sounds/homermix13/yogi.ogg")
add_sound("youneedto", r"^youneedto\W?$", "sounds/homermix13/youneedto.ogg")
add_sound("zoiks", r"^zoiks\W?$", "sounds/homermix13/zoiks.ogg")
add_sound("zoo", r"^zoo\W?$", "sounds/homermix13/zoo.ogg")
add_sound("zuendapp", r"^zuendapp\W?$", "sounds/homermix13/zuendapp.ogg")
add_sound("zwo", r"^zwo\W?$", "sounds/homermix13/zwo.ogg")
add_sound("you suck", r"^you suck\W?$", "sounds/homermix13/yousuck.ogg")
add_sound("denied", r"^denied\W?$", "sounds/homermix13/denied.ogg")