diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm
index b3cdba60306..39c19c76fe0 100644
--- a/code/modules/client/client procs.dm
+++ b/code/modules/client/client procs.dm
@@ -254,7 +254,6 @@
//send resources to the client. It's here in its own proc so we can move it around easiliy if need be
/client/proc/send_resources()
-// preload_vox() //Causes long delays with initial start window and subsequent windows when first logged in.
getFiles(
'html/search.js',
diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm
index 71267a4d45c..17dee127628 100644
--- a/code/modules/mob/living/silicon/ai/ai.dm
+++ b/code/modules/mob/living/silicon/ai/ai.dm
@@ -386,13 +386,6 @@ var/list/ai_list = list()
// src << text ("Switching Law [L]'s report status to []", lawcheck[L+1])
checklaws()
- //Uncomment this line of code if you are enabling the AI Vocal (VOX) announcements.
-/*
- if(href_list["say_word"])
- play_vox_word(href_list["say_word"], null, src)
- return
-*/
-
if (href_list["lawi"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite
var/L = text2num(href_list["lawi"])
switch(ioncheck[L])
diff --git a/code/modules/mob/living/silicon/ai/say.dm b/code/modules/mob/living/silicon/ai/say.dm
index 65118d811c3..1e376392275 100644
--- a/code/modules/mob/living/silicon/ai/say.dm
+++ b/code/modules/mob/living/silicon/ai/say.dm
@@ -4,126 +4,3 @@
return
//If there is a defined "parent" AI, it is actually an AI, and it is alive, anything the AI tries to say is said by the parent instead.
..(message)
-
-// These Verbs are commented out since we've disabled the AI vocal (VOX) announcements.
-// If you re-enable them there is 3 lines in ai.dm Topic() that you need to uncomment as well.
-// just search for VOX in there.
-
-/*
-var/announcing_vox = 0 // Stores the time of the last announcement
-var/const/VOX_CHANNEL = 200
-var/const/VOX_DELAY = 100 // 10 seconds
-var/const/VOX_PATH = "sound/vox/"
-
-/mob/living/silicon/ai/verb/announcement_help()
-
- set name = "Announcement Help"
- set desc = "Display a list of vocal words to announce to the crew."
- set category = "AI Commands"
-
-
- var/dat = "Here is a list of words you can type into the 'Announcement' button to create sentences to vocally announce to everyone on the same level at you.
\
-
- You can also click on the word to preview it.
\
- - You can only say 30 words for every announcement.
\
- - Do not use punctuation as you would normally, if you want a pause you can use the full stop and comma characters by separating them with spaces, like so: 'Alpha . Test , Bravo'.
\
- WARNING:
Misuse of the announcement system will get you job banned.
"
-
- var/index = 0
- var/list/vox_words = flist(VOX_PATH) // flist will return a list of strings with all the files in the path
- for(var/word in vox_words)
- index++
- var/stripped_word = copytext(word, 1, length(word) - 3) // Remove the .wav
- dat += "[capitalize(stripped_word)]"
- if(index != vox_words.len)
- dat += " / "
-
- src << browse(dat, "window=announce_help;size=500x400")
-
-
-/mob/living/silicon/ai/verb/announcement()
-
- set name = "Announcement"
- set desc = "Create a vocal announcement by typing in the available words to create a sentence."
- set category = "AI Commands"
-
- if(announcing_vox > world.time)
- src << "Please wait [round((announcing_vox - world.time) / 10)] seconds."
- return
-
- var/message = input(src, "WARNING: Misuse of this verb can result in you being job banned. More help is available in 'Announcement Help'", "Announcement", src.last_announcement) as text
-
- last_announcement = message
-
- if(!message || announcing_vox > world.time)
- return
-
- var/list/words = text2list(trim(message), " ")
- var/list/incorrect_words = list()
-
- if(words.len > 30)
- words.len = 30
-
- // Detect incorrect words which aren't .wav files.
- for(var/word in words)
- word = trim(word)
- if(!word)
- words -= word
- continue
- if(!vox_word_exists(word))
- incorrect_words += word
-
- if(incorrect_words.len)
- src << "These words are not available on the announcement system: [english_list(incorrect_words)]."
- return
-
- announcing_vox = world.time + VOX_DELAY
-
- log_game("[key_name_admin(src)] made a vocal announcement with the following message: [message].")
-
- for(var/word in words)
- play_vox_word(word, src.z, null)
-
-
-/proc/play_vox_word(var/word, var/z_level, var/mob/only_listener)
-
- word = lowertext(word)
-
- if(vox_word_exists(word))
-
- var/sound_file = get_vox_file(word)
- var/sound/voice = sound(sound_file, wait = 1, channel = VOX_CHANNEL)
- voice.status = SOUND_STREAM
-
- // If there is no single listener, broadcast to everyone in the same z level
- if(!only_listener)
- // Play voice for all mobs in the z level
- for(var/mob/M in player_list)
- if(M.client)
- var/turf/T = get_turf(M)
- if(T.z == z_level)
- M << voice
- else
- only_listener << voice
- return 1
- return 0
-
-
-/proc/vox_word_exists(var/word)
- return fexists("[VOX_PATH][word].wav")
-
-/proc/get_vox_file(var/word)
- if(vox_word_exists(word))
- return file("[VOX_PATH][word].wav")
-
-// Dynamically loading it has bad results with sounds overtaking each other, even with the wait variable.
-// We send the file to the user when they login.
-
-/client/proc/preload_vox()
- var/list/vox_files = flist(VOX_PATH)
- for(var/file in vox_files)
- // src << "Downloading [file]"
- var/sound/S = sound("[VOX_PATH][file]")
- src << browse_rsc(S)
-
-
-*/
diff --git a/sound/vox/,.wav b/sound/vox/,.wav
deleted file mode 100644
index 31a47dca600..00000000000
Binary files a/sound/vox/,.wav and /dev/null differ
diff --git a/sound/vox/..wav b/sound/vox/..wav
deleted file mode 100644
index 7eeb1eb9bc5..00000000000
Binary files a/sound/vox/..wav and /dev/null differ
diff --git a/sound/vox/a.wav b/sound/vox/a.wav
deleted file mode 100644
index c6981d29026..00000000000
Binary files a/sound/vox/a.wav and /dev/null differ
diff --git a/sound/vox/accelerating.wav b/sound/vox/accelerating.wav
deleted file mode 100644
index e86b18a04b1..00000000000
Binary files a/sound/vox/accelerating.wav and /dev/null differ
diff --git a/sound/vox/accelerator.wav b/sound/vox/accelerator.wav
deleted file mode 100644
index be097b6caaa..00000000000
Binary files a/sound/vox/accelerator.wav and /dev/null differ
diff --git a/sound/vox/accepted.wav b/sound/vox/accepted.wav
deleted file mode 100644
index 59160849e24..00000000000
Binary files a/sound/vox/accepted.wav and /dev/null differ
diff --git a/sound/vox/access.wav b/sound/vox/access.wav
deleted file mode 100644
index 25fd0988830..00000000000
Binary files a/sound/vox/access.wav and /dev/null differ
diff --git a/sound/vox/acknowledge.wav b/sound/vox/acknowledge.wav
deleted file mode 100644
index 14946cccf88..00000000000
Binary files a/sound/vox/acknowledge.wav and /dev/null differ
diff --git a/sound/vox/acknowledged.wav b/sound/vox/acknowledged.wav
deleted file mode 100644
index 232d9c3bf7a..00000000000
Binary files a/sound/vox/acknowledged.wav and /dev/null differ
diff --git a/sound/vox/acquired.wav b/sound/vox/acquired.wav
deleted file mode 100644
index 7eecdf91409..00000000000
Binary files a/sound/vox/acquired.wav and /dev/null differ
diff --git a/sound/vox/acquisition.wav b/sound/vox/acquisition.wav
deleted file mode 100644
index 11be7dc475d..00000000000
Binary files a/sound/vox/acquisition.wav and /dev/null differ
diff --git a/sound/vox/across.wav b/sound/vox/across.wav
deleted file mode 100644
index 1591e897001..00000000000
Binary files a/sound/vox/across.wav and /dev/null differ
diff --git a/sound/vox/activate.wav b/sound/vox/activate.wav
deleted file mode 100644
index 32a45cbf229..00000000000
Binary files a/sound/vox/activate.wav and /dev/null differ
diff --git a/sound/vox/activated.wav b/sound/vox/activated.wav
deleted file mode 100644
index 154e0389e83..00000000000
Binary files a/sound/vox/activated.wav and /dev/null differ
diff --git a/sound/vox/activity.wav b/sound/vox/activity.wav
deleted file mode 100644
index 5920e6dd387..00000000000
Binary files a/sound/vox/activity.wav and /dev/null differ
diff --git a/sound/vox/adios.wav b/sound/vox/adios.wav
deleted file mode 100644
index 86e268ca1f1..00000000000
Binary files a/sound/vox/adios.wav and /dev/null differ
diff --git a/sound/vox/administration.wav b/sound/vox/administration.wav
deleted file mode 100644
index d85d67eabff..00000000000
Binary files a/sound/vox/administration.wav and /dev/null differ
diff --git a/sound/vox/advanced.wav b/sound/vox/advanced.wav
deleted file mode 100644
index 987cd05b2a2..00000000000
Binary files a/sound/vox/advanced.wav and /dev/null differ
diff --git a/sound/vox/after.wav b/sound/vox/after.wav
deleted file mode 100644
index f63abdff558..00000000000
Binary files a/sound/vox/after.wav and /dev/null differ
diff --git a/sound/vox/agent.wav b/sound/vox/agent.wav
deleted file mode 100644
index 594932971e3..00000000000
Binary files a/sound/vox/agent.wav and /dev/null differ
diff --git a/sound/vox/alarm.wav b/sound/vox/alarm.wav
deleted file mode 100644
index 296ca773d66..00000000000
Binary files a/sound/vox/alarm.wav and /dev/null differ
diff --git a/sound/vox/alert.wav b/sound/vox/alert.wav
deleted file mode 100644
index 1a749b7c74b..00000000000
Binary files a/sound/vox/alert.wav and /dev/null differ
diff --git a/sound/vox/alien.wav b/sound/vox/alien.wav
deleted file mode 100644
index 58909559957..00000000000
Binary files a/sound/vox/alien.wav and /dev/null differ
diff --git a/sound/vox/aligned.wav b/sound/vox/aligned.wav
deleted file mode 100644
index 20bbe5bfa72..00000000000
Binary files a/sound/vox/aligned.wav and /dev/null differ
diff --git a/sound/vox/all.wav b/sound/vox/all.wav
deleted file mode 100644
index 5bfc4dee60e..00000000000
Binary files a/sound/vox/all.wav and /dev/null differ
diff --git a/sound/vox/alpha.wav b/sound/vox/alpha.wav
deleted file mode 100644
index d64239ec881..00000000000
Binary files a/sound/vox/alpha.wav and /dev/null differ
diff --git a/sound/vox/am.wav b/sound/vox/am.wav
deleted file mode 100644
index c273e5231d0..00000000000
Binary files a/sound/vox/am.wav and /dev/null differ
diff --git a/sound/vox/amigo.wav b/sound/vox/amigo.wav
deleted file mode 100644
index 03ec617c294..00000000000
Binary files a/sound/vox/amigo.wav and /dev/null differ
diff --git a/sound/vox/ammunition.wav b/sound/vox/ammunition.wav
deleted file mode 100644
index 148605c2ca0..00000000000
Binary files a/sound/vox/ammunition.wav and /dev/null differ
diff --git a/sound/vox/an.wav b/sound/vox/an.wav
deleted file mode 100644
index 5755607e36d..00000000000
Binary files a/sound/vox/an.wav and /dev/null differ
diff --git a/sound/vox/and.wav b/sound/vox/and.wav
deleted file mode 100644
index 6e155c09d97..00000000000
Binary files a/sound/vox/and.wav and /dev/null differ
diff --git a/sound/vox/announcement.wav b/sound/vox/announcement.wav
deleted file mode 100644
index 9d185ead91e..00000000000
Binary files a/sound/vox/announcement.wav and /dev/null differ
diff --git a/sound/vox/anomalous.wav b/sound/vox/anomalous.wav
deleted file mode 100644
index 1db9a4fa09a..00000000000
Binary files a/sound/vox/anomalous.wav and /dev/null differ
diff --git a/sound/vox/antenna.wav b/sound/vox/antenna.wav
deleted file mode 100644
index fa82d58cb9c..00000000000
Binary files a/sound/vox/antenna.wav and /dev/null differ
diff --git a/sound/vox/any.wav b/sound/vox/any.wav
deleted file mode 100644
index 73bed24661c..00000000000
Binary files a/sound/vox/any.wav and /dev/null differ
diff --git a/sound/vox/apprehend.wav b/sound/vox/apprehend.wav
deleted file mode 100644
index 874ef839637..00000000000
Binary files a/sound/vox/apprehend.wav and /dev/null differ
diff --git a/sound/vox/approach.wav b/sound/vox/approach.wav
deleted file mode 100644
index 5c5e1995df8..00000000000
Binary files a/sound/vox/approach.wav and /dev/null differ
diff --git a/sound/vox/are.wav b/sound/vox/are.wav
deleted file mode 100644
index bacdb31e2a3..00000000000
Binary files a/sound/vox/are.wav and /dev/null differ
diff --git a/sound/vox/area.wav b/sound/vox/area.wav
deleted file mode 100644
index f2ac3dd05af..00000000000
Binary files a/sound/vox/area.wav and /dev/null differ
diff --git a/sound/vox/arm.wav b/sound/vox/arm.wav
deleted file mode 100644
index 225abed39ec..00000000000
Binary files a/sound/vox/arm.wav and /dev/null differ
diff --git a/sound/vox/armed.wav b/sound/vox/armed.wav
deleted file mode 100644
index 55e4a67c667..00000000000
Binary files a/sound/vox/armed.wav and /dev/null differ
diff --git a/sound/vox/armor.wav b/sound/vox/armor.wav
deleted file mode 100644
index 2ca51709d4d..00000000000
Binary files a/sound/vox/armor.wav and /dev/null differ
diff --git a/sound/vox/armory.wav b/sound/vox/armory.wav
deleted file mode 100644
index 63fff9e39e3..00000000000
Binary files a/sound/vox/armory.wav and /dev/null differ
diff --git a/sound/vox/arrest.wav b/sound/vox/arrest.wav
deleted file mode 100644
index cdc24ec627d..00000000000
Binary files a/sound/vox/arrest.wav and /dev/null differ
diff --git a/sound/vox/ass.wav b/sound/vox/ass.wav
deleted file mode 100644
index 2b6698aa668..00000000000
Binary files a/sound/vox/ass.wav and /dev/null differ
diff --git a/sound/vox/at.wav b/sound/vox/at.wav
deleted file mode 100644
index 0b1b9396e58..00000000000
Binary files a/sound/vox/at.wav and /dev/null differ
diff --git a/sound/vox/atomic.wav b/sound/vox/atomic.wav
deleted file mode 100644
index 6a00304807f..00000000000
Binary files a/sound/vox/atomic.wav and /dev/null differ
diff --git a/sound/vox/attention.wav b/sound/vox/attention.wav
deleted file mode 100644
index e9078e6d9e0..00000000000
Binary files a/sound/vox/attention.wav and /dev/null differ
diff --git a/sound/vox/authorize.wav b/sound/vox/authorize.wav
deleted file mode 100644
index 3dcff1208b9..00000000000
Binary files a/sound/vox/authorize.wav and /dev/null differ
diff --git a/sound/vox/authorized.wav b/sound/vox/authorized.wav
deleted file mode 100644
index 67672abf35b..00000000000
Binary files a/sound/vox/authorized.wav and /dev/null differ
diff --git a/sound/vox/automatic.wav b/sound/vox/automatic.wav
deleted file mode 100644
index 8e676b08277..00000000000
Binary files a/sound/vox/automatic.wav and /dev/null differ
diff --git a/sound/vox/away.wav b/sound/vox/away.wav
deleted file mode 100644
index e1a3bee4d8c..00000000000
Binary files a/sound/vox/away.wav and /dev/null differ
diff --git a/sound/vox/b.wav b/sound/vox/b.wav
deleted file mode 100644
index 751c7b7b1ac..00000000000
Binary files a/sound/vox/b.wav and /dev/null differ
diff --git a/sound/vox/back.wav b/sound/vox/back.wav
deleted file mode 100644
index b2f4e56e40a..00000000000
Binary files a/sound/vox/back.wav and /dev/null differ
diff --git a/sound/vox/backman.wav b/sound/vox/backman.wav
deleted file mode 100644
index 60e149eaeec..00000000000
Binary files a/sound/vox/backman.wav and /dev/null differ
diff --git a/sound/vox/bad.wav b/sound/vox/bad.wav
deleted file mode 100644
index b59100564fe..00000000000
Binary files a/sound/vox/bad.wav and /dev/null differ
diff --git a/sound/vox/bag.wav b/sound/vox/bag.wav
deleted file mode 100644
index ccbf3f851ef..00000000000
Binary files a/sound/vox/bag.wav and /dev/null differ
diff --git a/sound/vox/bailey.wav b/sound/vox/bailey.wav
deleted file mode 100644
index deca97dc6b0..00000000000
Binary files a/sound/vox/bailey.wav and /dev/null differ
diff --git a/sound/vox/barracks.wav b/sound/vox/barracks.wav
deleted file mode 100644
index c7cc651cedb..00000000000
Binary files a/sound/vox/barracks.wav and /dev/null differ
diff --git a/sound/vox/base.wav b/sound/vox/base.wav
deleted file mode 100644
index a4c6c829e59..00000000000
Binary files a/sound/vox/base.wav and /dev/null differ
diff --git a/sound/vox/bay.wav b/sound/vox/bay.wav
deleted file mode 100644
index 769dfc38c28..00000000000
Binary files a/sound/vox/bay.wav and /dev/null differ
diff --git a/sound/vox/be.wav b/sound/vox/be.wav
deleted file mode 100644
index 38074711b49..00000000000
Binary files a/sound/vox/be.wav and /dev/null differ
diff --git a/sound/vox/been.wav b/sound/vox/been.wav
deleted file mode 100644
index 959f08ebf5a..00000000000
Binary files a/sound/vox/been.wav and /dev/null differ
diff --git a/sound/vox/before.wav b/sound/vox/before.wav
deleted file mode 100644
index a7c2cdd5b2a..00000000000
Binary files a/sound/vox/before.wav and /dev/null differ
diff --git a/sound/vox/beyond.wav b/sound/vox/beyond.wav
deleted file mode 100644
index d0641c009b8..00000000000
Binary files a/sound/vox/beyond.wav and /dev/null differ
diff --git a/sound/vox/biohazard.wav b/sound/vox/biohazard.wav
deleted file mode 100644
index 6ee3aca426f..00000000000
Binary files a/sound/vox/biohazard.wav and /dev/null differ
diff --git a/sound/vox/biological.wav b/sound/vox/biological.wav
deleted file mode 100644
index fef86450b14..00000000000
Binary files a/sound/vox/biological.wav and /dev/null differ
diff --git a/sound/vox/birdwell.wav b/sound/vox/birdwell.wav
deleted file mode 100644
index 6436f724f03..00000000000
Binary files a/sound/vox/birdwell.wav and /dev/null differ
diff --git a/sound/vox/bizwarn.wav b/sound/vox/bizwarn.wav
deleted file mode 100644
index ff392b491a0..00000000000
Binary files a/sound/vox/bizwarn.wav and /dev/null differ
diff --git a/sound/vox/black.wav b/sound/vox/black.wav
deleted file mode 100644
index 52dd0881aee..00000000000
Binary files a/sound/vox/black.wav and /dev/null differ
diff --git a/sound/vox/blast.wav b/sound/vox/blast.wav
deleted file mode 100644
index fa8d79fbb45..00000000000
Binary files a/sound/vox/blast.wav and /dev/null differ
diff --git a/sound/vox/blocked.wav b/sound/vox/blocked.wav
deleted file mode 100644
index 5e086f4bce3..00000000000
Binary files a/sound/vox/blocked.wav and /dev/null differ
diff --git a/sound/vox/bloop.wav b/sound/vox/bloop.wav
deleted file mode 100644
index 49cf90c5230..00000000000
Binary files a/sound/vox/bloop.wav and /dev/null differ
diff --git a/sound/vox/blue.wav b/sound/vox/blue.wav
deleted file mode 100644
index 83a6e7c3ebe..00000000000
Binary files a/sound/vox/blue.wav and /dev/null differ
diff --git a/sound/vox/bottom.wav b/sound/vox/bottom.wav
deleted file mode 100644
index 2330a74b285..00000000000
Binary files a/sound/vox/bottom.wav and /dev/null differ
diff --git a/sound/vox/bravo.wav b/sound/vox/bravo.wav
deleted file mode 100644
index 560af14f2c8..00000000000
Binary files a/sound/vox/bravo.wav and /dev/null differ
diff --git a/sound/vox/breach.wav b/sound/vox/breach.wav
deleted file mode 100644
index 89a61783346..00000000000
Binary files a/sound/vox/breach.wav and /dev/null differ
diff --git a/sound/vox/breached.wav b/sound/vox/breached.wav
deleted file mode 100644
index f4028d18a8c..00000000000
Binary files a/sound/vox/breached.wav and /dev/null differ
diff --git a/sound/vox/break.wav b/sound/vox/break.wav
deleted file mode 100644
index 124720295b9..00000000000
Binary files a/sound/vox/break.wav and /dev/null differ
diff --git a/sound/vox/bridge.wav b/sound/vox/bridge.wav
deleted file mode 100644
index cbb0cb461d7..00000000000
Binary files a/sound/vox/bridge.wav and /dev/null differ
diff --git a/sound/vox/bust.wav b/sound/vox/bust.wav
deleted file mode 100644
index 6af0f12c80f..00000000000
Binary files a/sound/vox/bust.wav and /dev/null differ
diff --git a/sound/vox/but.wav b/sound/vox/but.wav
deleted file mode 100644
index 0728ed3e1ee..00000000000
Binary files a/sound/vox/but.wav and /dev/null differ
diff --git a/sound/vox/button.wav b/sound/vox/button.wav
deleted file mode 100644
index bc583238cab..00000000000
Binary files a/sound/vox/button.wav and /dev/null differ
diff --git a/sound/vox/buzwarn.wav b/sound/vox/buzwarn.wav
deleted file mode 100644
index 82ddd2cdb37..00000000000
Binary files a/sound/vox/buzwarn.wav and /dev/null differ
diff --git a/sound/vox/bypass.wav b/sound/vox/bypass.wav
deleted file mode 100644
index b5155d37ff5..00000000000
Binary files a/sound/vox/bypass.wav and /dev/null differ
diff --git a/sound/vox/c.wav b/sound/vox/c.wav
deleted file mode 100644
index 9fcfc5e7453..00000000000
Binary files a/sound/vox/c.wav and /dev/null differ
diff --git a/sound/vox/cable.wav b/sound/vox/cable.wav
deleted file mode 100644
index d7610926510..00000000000
Binary files a/sound/vox/cable.wav and /dev/null differ
diff --git a/sound/vox/call.wav b/sound/vox/call.wav
deleted file mode 100644
index aa06767b949..00000000000
Binary files a/sound/vox/call.wav and /dev/null differ
diff --git a/sound/vox/called.wav b/sound/vox/called.wav
deleted file mode 100644
index f0c2897c8d1..00000000000
Binary files a/sound/vox/called.wav and /dev/null differ
diff --git a/sound/vox/canal.wav b/sound/vox/canal.wav
deleted file mode 100644
index b426a8f6a9a..00000000000
Binary files a/sound/vox/canal.wav and /dev/null differ
diff --git a/sound/vox/cap.wav b/sound/vox/cap.wav
deleted file mode 100644
index 998505184ba..00000000000
Binary files a/sound/vox/cap.wav and /dev/null differ
diff --git a/sound/vox/captain.wav b/sound/vox/captain.wav
deleted file mode 100644
index 61222de5324..00000000000
Binary files a/sound/vox/captain.wav and /dev/null differ
diff --git a/sound/vox/capture.wav b/sound/vox/capture.wav
deleted file mode 100644
index c7bfaad64f3..00000000000
Binary files a/sound/vox/capture.wav and /dev/null differ
diff --git a/sound/vox/ceiling.wav b/sound/vox/ceiling.wav
deleted file mode 100644
index 381db754cae..00000000000
Binary files a/sound/vox/ceiling.wav and /dev/null differ
diff --git a/sound/vox/celsius.wav b/sound/vox/celsius.wav
deleted file mode 100644
index ac59448a461..00000000000
Binary files a/sound/vox/celsius.wav and /dev/null differ
diff --git a/sound/vox/center.wav b/sound/vox/center.wav
deleted file mode 100644
index 35bdcb52248..00000000000
Binary files a/sound/vox/center.wav and /dev/null differ
diff --git a/sound/vox/centi.wav b/sound/vox/centi.wav
deleted file mode 100644
index efccef07e7b..00000000000
Binary files a/sound/vox/centi.wav and /dev/null differ
diff --git a/sound/vox/central.wav b/sound/vox/central.wav
deleted file mode 100644
index 1c9c58be571..00000000000
Binary files a/sound/vox/central.wav and /dev/null differ
diff --git a/sound/vox/chamber.wav b/sound/vox/chamber.wav
deleted file mode 100644
index 38dbf9ffa7b..00000000000
Binary files a/sound/vox/chamber.wav and /dev/null differ
diff --git a/sound/vox/charlie.wav b/sound/vox/charlie.wav
deleted file mode 100644
index 353ce195f3d..00000000000
Binary files a/sound/vox/charlie.wav and /dev/null differ
diff --git a/sound/vox/check.wav b/sound/vox/check.wav
deleted file mode 100644
index 709f9a6555f..00000000000
Binary files a/sound/vox/check.wav and /dev/null differ
diff --git a/sound/vox/checkpoint.wav b/sound/vox/checkpoint.wav
deleted file mode 100644
index 15aa5e4cc9b..00000000000
Binary files a/sound/vox/checkpoint.wav and /dev/null differ
diff --git a/sound/vox/chemical.wav b/sound/vox/chemical.wav
deleted file mode 100644
index eeb32be3850..00000000000
Binary files a/sound/vox/chemical.wav and /dev/null differ
diff --git a/sound/vox/cleanup.wav b/sound/vox/cleanup.wav
deleted file mode 100644
index a47ddb233a0..00000000000
Binary files a/sound/vox/cleanup.wav and /dev/null differ
diff --git a/sound/vox/clear.wav b/sound/vox/clear.wav
deleted file mode 100644
index a23cfc5e2bd..00000000000
Binary files a/sound/vox/clear.wav and /dev/null differ
diff --git a/sound/vox/clearance.wav b/sound/vox/clearance.wav
deleted file mode 100644
index a35e0699b87..00000000000
Binary files a/sound/vox/clearance.wav and /dev/null differ
diff --git a/sound/vox/close.wav b/sound/vox/close.wav
deleted file mode 100644
index 6a46d7fb063..00000000000
Binary files a/sound/vox/close.wav and /dev/null differ
diff --git a/sound/vox/code.wav b/sound/vox/code.wav
deleted file mode 100644
index 63bdfbe883a..00000000000
Binary files a/sound/vox/code.wav and /dev/null differ
diff --git a/sound/vox/coded.wav b/sound/vox/coded.wav
deleted file mode 100644
index ec876b297fd..00000000000
Binary files a/sound/vox/coded.wav and /dev/null differ
diff --git a/sound/vox/collider.wav b/sound/vox/collider.wav
deleted file mode 100644
index a26ff0a317b..00000000000
Binary files a/sound/vox/collider.wav and /dev/null differ
diff --git a/sound/vox/command.wav b/sound/vox/command.wav
deleted file mode 100644
index ba0c7e852b8..00000000000
Binary files a/sound/vox/command.wav and /dev/null differ
diff --git a/sound/vox/communication.wav b/sound/vox/communication.wav
deleted file mode 100644
index 35165357e69..00000000000
Binary files a/sound/vox/communication.wav and /dev/null differ
diff --git a/sound/vox/complex.wav b/sound/vox/complex.wav
deleted file mode 100644
index d2c01ccd57d..00000000000
Binary files a/sound/vox/complex.wav and /dev/null differ
diff --git a/sound/vox/computer.wav b/sound/vox/computer.wav
deleted file mode 100644
index 89808c20d7b..00000000000
Binary files a/sound/vox/computer.wav and /dev/null differ
diff --git a/sound/vox/condition.wav b/sound/vox/condition.wav
deleted file mode 100644
index b32c83668eb..00000000000
Binary files a/sound/vox/condition.wav and /dev/null differ
diff --git a/sound/vox/containment.wav b/sound/vox/containment.wav
deleted file mode 100644
index 563cb4e15a0..00000000000
Binary files a/sound/vox/containment.wav and /dev/null differ
diff --git a/sound/vox/contamination.wav b/sound/vox/contamination.wav
deleted file mode 100644
index d597267cdde..00000000000
Binary files a/sound/vox/contamination.wav and /dev/null differ
diff --git a/sound/vox/control.wav b/sound/vox/control.wav
deleted file mode 100644
index e7bf57bbd8a..00000000000
Binary files a/sound/vox/control.wav and /dev/null differ
diff --git a/sound/vox/coolant.wav b/sound/vox/coolant.wav
deleted file mode 100644
index d4474b9d9df..00000000000
Binary files a/sound/vox/coolant.wav and /dev/null differ
diff --git a/sound/vox/coomer.wav b/sound/vox/coomer.wav
deleted file mode 100644
index 1e4b37929ff..00000000000
Binary files a/sound/vox/coomer.wav and /dev/null differ
diff --git a/sound/vox/core.wav b/sound/vox/core.wav
deleted file mode 100644
index da6874b2e7e..00000000000
Binary files a/sound/vox/core.wav and /dev/null differ
diff --git a/sound/vox/correct.wav b/sound/vox/correct.wav
deleted file mode 100644
index cde927b7477..00000000000
Binary files a/sound/vox/correct.wav and /dev/null differ
diff --git a/sound/vox/corridor.wav b/sound/vox/corridor.wav
deleted file mode 100644
index defdcda2d10..00000000000
Binary files a/sound/vox/corridor.wav and /dev/null differ
diff --git a/sound/vox/crew.wav b/sound/vox/crew.wav
deleted file mode 100644
index 4f48a08cb11..00000000000
Binary files a/sound/vox/crew.wav and /dev/null differ
diff --git a/sound/vox/cross.wav b/sound/vox/cross.wav
deleted file mode 100644
index c393dffbf15..00000000000
Binary files a/sound/vox/cross.wav and /dev/null differ
diff --git a/sound/vox/cryogenic.wav b/sound/vox/cryogenic.wav
deleted file mode 100644
index eb1a62ae38f..00000000000
Binary files a/sound/vox/cryogenic.wav and /dev/null differ
diff --git a/sound/vox/d.wav b/sound/vox/d.wav
deleted file mode 100644
index f977a495055..00000000000
Binary files a/sound/vox/d.wav and /dev/null differ
diff --git a/sound/vox/dadeda.wav b/sound/vox/dadeda.wav
deleted file mode 100644
index 2ac0ff589af..00000000000
Binary files a/sound/vox/dadeda.wav and /dev/null differ
diff --git a/sound/vox/damage.wav b/sound/vox/damage.wav
deleted file mode 100644
index 83fce3dcf0e..00000000000
Binary files a/sound/vox/damage.wav and /dev/null differ
diff --git a/sound/vox/damaged.wav b/sound/vox/damaged.wav
deleted file mode 100644
index e9f2ff5dbb7..00000000000
Binary files a/sound/vox/damaged.wav and /dev/null differ
diff --git a/sound/vox/danger.wav b/sound/vox/danger.wav
deleted file mode 100644
index 40ff8b8db98..00000000000
Binary files a/sound/vox/danger.wav and /dev/null differ
diff --git a/sound/vox/day.wav b/sound/vox/day.wav
deleted file mode 100644
index 92e3fe81da7..00000000000
Binary files a/sound/vox/day.wav and /dev/null differ
diff --git a/sound/vox/deactivated.wav b/sound/vox/deactivated.wav
deleted file mode 100644
index f587f266dd7..00000000000
Binary files a/sound/vox/deactivated.wav and /dev/null differ
diff --git a/sound/vox/decompression.wav b/sound/vox/decompression.wav
deleted file mode 100644
index a758f1bbd76..00000000000
Binary files a/sound/vox/decompression.wav and /dev/null differ
diff --git a/sound/vox/decontamination.wav b/sound/vox/decontamination.wav
deleted file mode 100644
index 9794de0a23b..00000000000
Binary files a/sound/vox/decontamination.wav and /dev/null differ
diff --git a/sound/vox/deeoo.wav b/sound/vox/deeoo.wav
deleted file mode 100644
index 4f82a18b2a5..00000000000
Binary files a/sound/vox/deeoo.wav and /dev/null differ
diff --git a/sound/vox/defense.wav b/sound/vox/defense.wav
deleted file mode 100644
index 9da8de137f5..00000000000
Binary files a/sound/vox/defense.wav and /dev/null differ
diff --git a/sound/vox/degrees.wav b/sound/vox/degrees.wav
deleted file mode 100644
index 7e77561c14d..00000000000
Binary files a/sound/vox/degrees.wav and /dev/null differ
diff --git a/sound/vox/delta.wav b/sound/vox/delta.wav
deleted file mode 100644
index 86052809f4a..00000000000
Binary files a/sound/vox/delta.wav and /dev/null differ
diff --git a/sound/vox/denied.wav b/sound/vox/denied.wav
deleted file mode 100644
index 6b1167d41d5..00000000000
Binary files a/sound/vox/denied.wav and /dev/null differ
diff --git a/sound/vox/deploy.wav b/sound/vox/deploy.wav
deleted file mode 100644
index 2f9aacd3506..00000000000
Binary files a/sound/vox/deploy.wav and /dev/null differ
diff --git a/sound/vox/deployed.wav b/sound/vox/deployed.wav
deleted file mode 100644
index a85a076b18b..00000000000
Binary files a/sound/vox/deployed.wav and /dev/null differ
diff --git a/sound/vox/destroy.wav b/sound/vox/destroy.wav
deleted file mode 100644
index 56cf437c66c..00000000000
Binary files a/sound/vox/destroy.wav and /dev/null differ
diff --git a/sound/vox/destroyed.wav b/sound/vox/destroyed.wav
deleted file mode 100644
index 20308df2df5..00000000000
Binary files a/sound/vox/destroyed.wav and /dev/null differ
diff --git a/sound/vox/detain.wav b/sound/vox/detain.wav
deleted file mode 100644
index 7d5f4e06f43..00000000000
Binary files a/sound/vox/detain.wav and /dev/null differ
diff --git a/sound/vox/detected.wav b/sound/vox/detected.wav
deleted file mode 100644
index 101429a6140..00000000000
Binary files a/sound/vox/detected.wav and /dev/null differ
diff --git a/sound/vox/detonation.wav b/sound/vox/detonation.wav
deleted file mode 100644
index a696e97976a..00000000000
Binary files a/sound/vox/detonation.wav and /dev/null differ
diff --git a/sound/vox/device.wav b/sound/vox/device.wav
deleted file mode 100644
index d5ecd2f67b3..00000000000
Binary files a/sound/vox/device.wav and /dev/null differ
diff --git a/sound/vox/did.wav b/sound/vox/did.wav
deleted file mode 100644
index 0c52e31b728..00000000000
Binary files a/sound/vox/did.wav and /dev/null differ
diff --git a/sound/vox/die.wav b/sound/vox/die.wav
deleted file mode 100644
index b47622cfc70..00000000000
Binary files a/sound/vox/die.wav and /dev/null differ
diff --git a/sound/vox/dimensional.wav b/sound/vox/dimensional.wav
deleted file mode 100644
index f67956ddc7f..00000000000
Binary files a/sound/vox/dimensional.wav and /dev/null differ
diff --git a/sound/vox/dirt.wav b/sound/vox/dirt.wav
deleted file mode 100644
index 08990c47d89..00000000000
Binary files a/sound/vox/dirt.wav and /dev/null differ
diff --git a/sound/vox/disengaged.wav b/sound/vox/disengaged.wav
deleted file mode 100644
index aa84ed27a6e..00000000000
Binary files a/sound/vox/disengaged.wav and /dev/null differ
diff --git a/sound/vox/dish.wav b/sound/vox/dish.wav
deleted file mode 100644
index aeff92d2052..00000000000
Binary files a/sound/vox/dish.wav and /dev/null differ
diff --git a/sound/vox/disposal.wav b/sound/vox/disposal.wav
deleted file mode 100644
index bfe38f6098f..00000000000
Binary files a/sound/vox/disposal.wav and /dev/null differ
diff --git a/sound/vox/distance.wav b/sound/vox/distance.wav
deleted file mode 100644
index 670eacaabe1..00000000000
Binary files a/sound/vox/distance.wav and /dev/null differ
diff --git a/sound/vox/distortion.wav b/sound/vox/distortion.wav
deleted file mode 100644
index 7fae33e2446..00000000000
Binary files a/sound/vox/distortion.wav and /dev/null differ
diff --git a/sound/vox/do.wav b/sound/vox/do.wav
deleted file mode 100644
index d82a9ab1074..00000000000
Binary files a/sound/vox/do.wav and /dev/null differ
diff --git a/sound/vox/doctor.wav b/sound/vox/doctor.wav
deleted file mode 100644
index f9cdc53805d..00000000000
Binary files a/sound/vox/doctor.wav and /dev/null differ
diff --git a/sound/vox/doop.wav b/sound/vox/doop.wav
deleted file mode 100644
index 14bce15cea0..00000000000
Binary files a/sound/vox/doop.wav and /dev/null differ
diff --git a/sound/vox/door.wav b/sound/vox/door.wav
deleted file mode 100644
index 629dee38e77..00000000000
Binary files a/sound/vox/door.wav and /dev/null differ
diff --git a/sound/vox/down.wav b/sound/vox/down.wav
deleted file mode 100644
index b677e031daa..00000000000
Binary files a/sound/vox/down.wav and /dev/null differ
diff --git a/sound/vox/dual.wav b/sound/vox/dual.wav
deleted file mode 100644
index 4693b31d42a..00000000000
Binary files a/sound/vox/dual.wav and /dev/null differ
diff --git a/sound/vox/duct.wav b/sound/vox/duct.wav
deleted file mode 100644
index d0e937fd80e..00000000000
Binary files a/sound/vox/duct.wav and /dev/null differ
diff --git a/sound/vox/e.wav b/sound/vox/e.wav
deleted file mode 100644
index 6f991d0fcc7..00000000000
Binary files a/sound/vox/e.wav and /dev/null differ
diff --git a/sound/vox/east.wav b/sound/vox/east.wav
deleted file mode 100644
index 296ce53d412..00000000000
Binary files a/sound/vox/east.wav and /dev/null differ
diff --git a/sound/vox/echo.wav b/sound/vox/echo.wav
deleted file mode 100644
index 3087ecbd9c6..00000000000
Binary files a/sound/vox/echo.wav and /dev/null differ
diff --git a/sound/vox/ed.wav b/sound/vox/ed.wav
deleted file mode 100644
index 71303ffe0a7..00000000000
Binary files a/sound/vox/ed.wav and /dev/null differ
diff --git a/sound/vox/effect.wav b/sound/vox/effect.wav
deleted file mode 100644
index a0128cf6984..00000000000
Binary files a/sound/vox/effect.wav and /dev/null differ
diff --git a/sound/vox/egress.wav b/sound/vox/egress.wav
deleted file mode 100644
index 47fa437ce81..00000000000
Binary files a/sound/vox/egress.wav and /dev/null differ
diff --git a/sound/vox/eight.wav b/sound/vox/eight.wav
deleted file mode 100644
index 4fef5c2eb70..00000000000
Binary files a/sound/vox/eight.wav and /dev/null differ
diff --git a/sound/vox/eighteen.wav b/sound/vox/eighteen.wav
deleted file mode 100644
index 1aff299ad27..00000000000
Binary files a/sound/vox/eighteen.wav and /dev/null differ
diff --git a/sound/vox/eighty.wav b/sound/vox/eighty.wav
deleted file mode 100644
index a1f54835dbb..00000000000
Binary files a/sound/vox/eighty.wav and /dev/null differ
diff --git a/sound/vox/electric.wav b/sound/vox/electric.wav
deleted file mode 100644
index 48c4fe01768..00000000000
Binary files a/sound/vox/electric.wav and /dev/null differ
diff --git a/sound/vox/electromagnetic.wav b/sound/vox/electromagnetic.wav
deleted file mode 100644
index 886c76ef6b7..00000000000
Binary files a/sound/vox/electromagnetic.wav and /dev/null differ
diff --git a/sound/vox/elevator.wav b/sound/vox/elevator.wav
deleted file mode 100644
index a4d41448492..00000000000
Binary files a/sound/vox/elevator.wav and /dev/null differ
diff --git a/sound/vox/eleven.wav b/sound/vox/eleven.wav
deleted file mode 100644
index 5473a254117..00000000000
Binary files a/sound/vox/eleven.wav and /dev/null differ
diff --git a/sound/vox/eliminate.wav b/sound/vox/eliminate.wav
deleted file mode 100644
index d4e51affb30..00000000000
Binary files a/sound/vox/eliminate.wav and /dev/null differ
diff --git a/sound/vox/emergency.wav b/sound/vox/emergency.wav
deleted file mode 100644
index 62bb34ef412..00000000000
Binary files a/sound/vox/emergency.wav and /dev/null differ
diff --git a/sound/vox/energy.wav b/sound/vox/energy.wav
deleted file mode 100644
index b66ed4db108..00000000000
Binary files a/sound/vox/energy.wav and /dev/null differ
diff --git a/sound/vox/engage.wav b/sound/vox/engage.wav
deleted file mode 100644
index 11a43c40a75..00000000000
Binary files a/sound/vox/engage.wav and /dev/null differ
diff --git a/sound/vox/engaged.wav b/sound/vox/engaged.wav
deleted file mode 100644
index a47cbb59772..00000000000
Binary files a/sound/vox/engaged.wav and /dev/null differ
diff --git a/sound/vox/engine.wav b/sound/vox/engine.wav
deleted file mode 100644
index f6ab907c5b3..00000000000
Binary files a/sound/vox/engine.wav and /dev/null differ
diff --git a/sound/vox/enter.wav b/sound/vox/enter.wav
deleted file mode 100644
index f3f53ea8211..00000000000
Binary files a/sound/vox/enter.wav and /dev/null differ
diff --git a/sound/vox/entry.wav b/sound/vox/entry.wav
deleted file mode 100644
index a027e1a7e54..00000000000
Binary files a/sound/vox/entry.wav and /dev/null differ
diff --git a/sound/vox/environment.wav b/sound/vox/environment.wav
deleted file mode 100644
index 6ab7d940cc4..00000000000
Binary files a/sound/vox/environment.wav and /dev/null differ
diff --git a/sound/vox/error.wav b/sound/vox/error.wav
deleted file mode 100644
index 05b2bebf60b..00000000000
Binary files a/sound/vox/error.wav and /dev/null differ
diff --git a/sound/vox/escape.wav b/sound/vox/escape.wav
deleted file mode 100644
index dbf3c954f57..00000000000
Binary files a/sound/vox/escape.wav and /dev/null differ
diff --git a/sound/vox/evacuate.wav b/sound/vox/evacuate.wav
deleted file mode 100644
index 2766662cd26..00000000000
Binary files a/sound/vox/evacuate.wav and /dev/null differ
diff --git a/sound/vox/exchange.wav b/sound/vox/exchange.wav
deleted file mode 100644
index 73426aea013..00000000000
Binary files a/sound/vox/exchange.wav and /dev/null differ
diff --git a/sound/vox/exit.wav b/sound/vox/exit.wav
deleted file mode 100644
index 85680b3212a..00000000000
Binary files a/sound/vox/exit.wav and /dev/null differ
diff --git a/sound/vox/expect.wav b/sound/vox/expect.wav
deleted file mode 100644
index a562e53a9a8..00000000000
Binary files a/sound/vox/expect.wav and /dev/null differ
diff --git a/sound/vox/experiment.wav b/sound/vox/experiment.wav
deleted file mode 100644
index 3f60c2181be..00000000000
Binary files a/sound/vox/experiment.wav and /dev/null differ
diff --git a/sound/vox/experimental.wav b/sound/vox/experimental.wav
deleted file mode 100644
index fbf75a59d30..00000000000
Binary files a/sound/vox/experimental.wav and /dev/null differ
diff --git a/sound/vox/explode.wav b/sound/vox/explode.wav
deleted file mode 100644
index 847e64562c0..00000000000
Binary files a/sound/vox/explode.wav and /dev/null differ
diff --git a/sound/vox/explosion.wav b/sound/vox/explosion.wav
deleted file mode 100644
index a2e442ec2f7..00000000000
Binary files a/sound/vox/explosion.wav and /dev/null differ
diff --git a/sound/vox/exposure.wav b/sound/vox/exposure.wav
deleted file mode 100644
index 37a933ca62e..00000000000
Binary files a/sound/vox/exposure.wav and /dev/null differ
diff --git a/sound/vox/exterminate.wav b/sound/vox/exterminate.wav
deleted file mode 100644
index f1c3c233d68..00000000000
Binary files a/sound/vox/exterminate.wav and /dev/null differ
diff --git a/sound/vox/extinguish.wav b/sound/vox/extinguish.wav
deleted file mode 100644
index 1fc83d9e7ec..00000000000
Binary files a/sound/vox/extinguish.wav and /dev/null differ
diff --git a/sound/vox/extinguisher.wav b/sound/vox/extinguisher.wav
deleted file mode 100644
index eed3164bfc7..00000000000
Binary files a/sound/vox/extinguisher.wav and /dev/null differ
diff --git a/sound/vox/extreme.wav b/sound/vox/extreme.wav
deleted file mode 100644
index 0fc3adfb50e..00000000000
Binary files a/sound/vox/extreme.wav and /dev/null differ
diff --git a/sound/vox/f.wav b/sound/vox/f.wav
deleted file mode 100644
index 0f06b338867..00000000000
Binary files a/sound/vox/f.wav and /dev/null differ
diff --git a/sound/vox/facility.wav b/sound/vox/facility.wav
deleted file mode 100644
index 812445e3dd7..00000000000
Binary files a/sound/vox/facility.wav and /dev/null differ
diff --git a/sound/vox/fahrenheit.wav b/sound/vox/fahrenheit.wav
deleted file mode 100644
index 96411aabdce..00000000000
Binary files a/sound/vox/fahrenheit.wav and /dev/null differ
diff --git a/sound/vox/failed.wav b/sound/vox/failed.wav
deleted file mode 100644
index f717b053758..00000000000
Binary files a/sound/vox/failed.wav and /dev/null differ
diff --git a/sound/vox/failure.wav b/sound/vox/failure.wav
deleted file mode 100644
index dd662fc5a66..00000000000
Binary files a/sound/vox/failure.wav and /dev/null differ
diff --git a/sound/vox/farthest.wav b/sound/vox/farthest.wav
deleted file mode 100644
index fcca7a432ec..00000000000
Binary files a/sound/vox/farthest.wav and /dev/null differ
diff --git a/sound/vox/fast.wav b/sound/vox/fast.wav
deleted file mode 100644
index 821885a739f..00000000000
Binary files a/sound/vox/fast.wav and /dev/null differ
diff --git a/sound/vox/feet.wav b/sound/vox/feet.wav
deleted file mode 100644
index 5adc5dbd62f..00000000000
Binary files a/sound/vox/feet.wav and /dev/null differ
diff --git a/sound/vox/field.wav b/sound/vox/field.wav
deleted file mode 100644
index 6cc1ab42f83..00000000000
Binary files a/sound/vox/field.wav and /dev/null differ
diff --git a/sound/vox/fifteen.wav b/sound/vox/fifteen.wav
deleted file mode 100644
index 63ca382128d..00000000000
Binary files a/sound/vox/fifteen.wav and /dev/null differ
diff --git a/sound/vox/fifth.wav b/sound/vox/fifth.wav
deleted file mode 100644
index 3886e043bfb..00000000000
Binary files a/sound/vox/fifth.wav and /dev/null differ
diff --git a/sound/vox/fifty.wav b/sound/vox/fifty.wav
deleted file mode 100644
index 80f7b111037..00000000000
Binary files a/sound/vox/fifty.wav and /dev/null differ
diff --git a/sound/vox/final.wav b/sound/vox/final.wav
deleted file mode 100644
index d4c807af6ed..00000000000
Binary files a/sound/vox/final.wav and /dev/null differ
diff --git a/sound/vox/fine.wav b/sound/vox/fine.wav
deleted file mode 100644
index f74d8fbfaa2..00000000000
Binary files a/sound/vox/fine.wav and /dev/null differ
diff --git a/sound/vox/fire.wav b/sound/vox/fire.wav
deleted file mode 100644
index ce0a45d9c62..00000000000
Binary files a/sound/vox/fire.wav and /dev/null differ
diff --git a/sound/vox/first.wav b/sound/vox/first.wav
deleted file mode 100644
index 18a7fdf7afd..00000000000
Binary files a/sound/vox/first.wav and /dev/null differ
diff --git a/sound/vox/five.wav b/sound/vox/five.wav
deleted file mode 100644
index aa23cbe9cf1..00000000000
Binary files a/sound/vox/five.wav and /dev/null differ
diff --git a/sound/vox/flooding.wav b/sound/vox/flooding.wav
deleted file mode 100644
index 7b9f5bcc696..00000000000
Binary files a/sound/vox/flooding.wav and /dev/null differ
diff --git a/sound/vox/floor.wav b/sound/vox/floor.wav
deleted file mode 100644
index b0865491647..00000000000
Binary files a/sound/vox/floor.wav and /dev/null differ
diff --git a/sound/vox/fool.wav b/sound/vox/fool.wav
deleted file mode 100644
index 327b3f5b598..00000000000
Binary files a/sound/vox/fool.wav and /dev/null differ
diff --git a/sound/vox/for.wav b/sound/vox/for.wav
deleted file mode 100644
index 84f793decec..00000000000
Binary files a/sound/vox/for.wav and /dev/null differ
diff --git a/sound/vox/forbidden.wav b/sound/vox/forbidden.wav
deleted file mode 100644
index f4d742505e2..00000000000
Binary files a/sound/vox/forbidden.wav and /dev/null differ
diff --git a/sound/vox/force.wav b/sound/vox/force.wav
deleted file mode 100644
index 3745c71418d..00000000000
Binary files a/sound/vox/force.wav and /dev/null differ
diff --git a/sound/vox/forms.wav b/sound/vox/forms.wav
deleted file mode 100644
index 642e201abc6..00000000000
Binary files a/sound/vox/forms.wav and /dev/null differ
diff --git a/sound/vox/found.wav b/sound/vox/found.wav
deleted file mode 100644
index 59da4031fcd..00000000000
Binary files a/sound/vox/found.wav and /dev/null differ
diff --git a/sound/vox/four.wav b/sound/vox/four.wav
deleted file mode 100644
index a614cbcdc5f..00000000000
Binary files a/sound/vox/four.wav and /dev/null differ
diff --git a/sound/vox/fourteen.wav b/sound/vox/fourteen.wav
deleted file mode 100644
index aa0846855bf..00000000000
Binary files a/sound/vox/fourteen.wav and /dev/null differ
diff --git a/sound/vox/fourth.wav b/sound/vox/fourth.wav
deleted file mode 100644
index 5c9071d292d..00000000000
Binary files a/sound/vox/fourth.wav and /dev/null differ
diff --git a/sound/vox/fourty.wav b/sound/vox/fourty.wav
deleted file mode 100644
index 6bb8fb3e126..00000000000
Binary files a/sound/vox/fourty.wav and /dev/null differ
diff --git a/sound/vox/foxtrot.wav b/sound/vox/foxtrot.wav
deleted file mode 100644
index ece21be942f..00000000000
Binary files a/sound/vox/foxtrot.wav and /dev/null differ
diff --git a/sound/vox/freeman.wav b/sound/vox/freeman.wav
deleted file mode 100644
index 26a9ae229bb..00000000000
Binary files a/sound/vox/freeman.wav and /dev/null differ
diff --git a/sound/vox/freezer.wav b/sound/vox/freezer.wav
deleted file mode 100644
index 32da8615481..00000000000
Binary files a/sound/vox/freezer.wav and /dev/null differ
diff --git a/sound/vox/from.wav b/sound/vox/from.wav
deleted file mode 100644
index 46541abe658..00000000000
Binary files a/sound/vox/from.wav and /dev/null differ
diff --git a/sound/vox/front.wav b/sound/vox/front.wav
deleted file mode 100644
index 46d600144d3..00000000000
Binary files a/sound/vox/front.wav and /dev/null differ
diff --git a/sound/vox/fuel.wav b/sound/vox/fuel.wav
deleted file mode 100644
index 1b2256b006f..00000000000
Binary files a/sound/vox/fuel.wav and /dev/null differ
diff --git a/sound/vox/g.wav b/sound/vox/g.wav
deleted file mode 100644
index 37f5ce80100..00000000000
Binary files a/sound/vox/g.wav and /dev/null differ
diff --git a/sound/vox/get.wav b/sound/vox/get.wav
deleted file mode 100644
index 9dd512d512d..00000000000
Binary files a/sound/vox/get.wav and /dev/null differ
diff --git a/sound/vox/go.wav b/sound/vox/go.wav
deleted file mode 100644
index 665989a94f9..00000000000
Binary files a/sound/vox/go.wav and /dev/null differ
diff --git a/sound/vox/going.wav b/sound/vox/going.wav
deleted file mode 100644
index 308b1b68903..00000000000
Binary files a/sound/vox/going.wav and /dev/null differ
diff --git a/sound/vox/good.wav b/sound/vox/good.wav
deleted file mode 100644
index bf15c9c2b43..00000000000
Binary files a/sound/vox/good.wav and /dev/null differ
diff --git a/sound/vox/goodbye.wav b/sound/vox/goodbye.wav
deleted file mode 100644
index 2599ca560cc..00000000000
Binary files a/sound/vox/goodbye.wav and /dev/null differ
diff --git a/sound/vox/gordon.wav b/sound/vox/gordon.wav
deleted file mode 100644
index 51c7195091b..00000000000
Binary files a/sound/vox/gordon.wav and /dev/null differ
diff --git a/sound/vox/got.wav b/sound/vox/got.wav
deleted file mode 100644
index b2b47c9d2e7..00000000000
Binary files a/sound/vox/got.wav and /dev/null differ
diff --git a/sound/vox/government.wav b/sound/vox/government.wav
deleted file mode 100644
index 17e7fa8fbfc..00000000000
Binary files a/sound/vox/government.wav and /dev/null differ
diff --git a/sound/vox/granted.wav b/sound/vox/granted.wav
deleted file mode 100644
index 661bf0506fd..00000000000
Binary files a/sound/vox/granted.wav and /dev/null differ
diff --git a/sound/vox/great.wav b/sound/vox/great.wav
deleted file mode 100644
index 8640b88fb61..00000000000
Binary files a/sound/vox/great.wav and /dev/null differ
diff --git a/sound/vox/green.wav b/sound/vox/green.wav
deleted file mode 100644
index 0eb5558231d..00000000000
Binary files a/sound/vox/green.wav and /dev/null differ
diff --git a/sound/vox/grenade.wav b/sound/vox/grenade.wav
deleted file mode 100644
index 7b2d80ed6d6..00000000000
Binary files a/sound/vox/grenade.wav and /dev/null differ
diff --git a/sound/vox/guard.wav b/sound/vox/guard.wav
deleted file mode 100644
index e715dc641c0..00000000000
Binary files a/sound/vox/guard.wav and /dev/null differ
diff --git a/sound/vox/gulf.wav b/sound/vox/gulf.wav
deleted file mode 100644
index 95b3e9fc4f9..00000000000
Binary files a/sound/vox/gulf.wav and /dev/null differ
diff --git a/sound/vox/gun.wav b/sound/vox/gun.wav
deleted file mode 100644
index 86e3ac1cbb5..00000000000
Binary files a/sound/vox/gun.wav and /dev/null differ
diff --git a/sound/vox/guthrie.wav b/sound/vox/guthrie.wav
deleted file mode 100644
index 362ab46d60c..00000000000
Binary files a/sound/vox/guthrie.wav and /dev/null differ
diff --git a/sound/vox/handling.wav b/sound/vox/handling.wav
deleted file mode 100644
index b9c7c5f581d..00000000000
Binary files a/sound/vox/handling.wav and /dev/null differ
diff --git a/sound/vox/hangar.wav b/sound/vox/hangar.wav
deleted file mode 100644
index e937054af9b..00000000000
Binary files a/sound/vox/hangar.wav and /dev/null differ
diff --git a/sound/vox/has.wav b/sound/vox/has.wav
deleted file mode 100644
index 625a110f07f..00000000000
Binary files a/sound/vox/has.wav and /dev/null differ
diff --git a/sound/vox/have.wav b/sound/vox/have.wav
deleted file mode 100644
index c5f0794a1f4..00000000000
Binary files a/sound/vox/have.wav and /dev/null differ
diff --git a/sound/vox/hazard.wav b/sound/vox/hazard.wav
deleted file mode 100644
index b311552c766..00000000000
Binary files a/sound/vox/hazard.wav and /dev/null differ
diff --git a/sound/vox/head.wav b/sound/vox/head.wav
deleted file mode 100644
index ed8e9d88c64..00000000000
Binary files a/sound/vox/head.wav and /dev/null differ
diff --git a/sound/vox/health.wav b/sound/vox/health.wav
deleted file mode 100644
index e3158318f41..00000000000
Binary files a/sound/vox/health.wav and /dev/null differ
diff --git a/sound/vox/heat.wav b/sound/vox/heat.wav
deleted file mode 100644
index ca0b3452255..00000000000
Binary files a/sound/vox/heat.wav and /dev/null differ
diff --git a/sound/vox/helicopter.wav b/sound/vox/helicopter.wav
deleted file mode 100644
index 22e54494437..00000000000
Binary files a/sound/vox/helicopter.wav and /dev/null differ
diff --git a/sound/vox/helium.wav b/sound/vox/helium.wav
deleted file mode 100644
index fbb8197cb06..00000000000
Binary files a/sound/vox/helium.wav and /dev/null differ
diff --git a/sound/vox/hello.wav b/sound/vox/hello.wav
deleted file mode 100644
index 7e61fec55ef..00000000000
Binary files a/sound/vox/hello.wav and /dev/null differ
diff --git a/sound/vox/help.wav b/sound/vox/help.wav
deleted file mode 100644
index 5bef919ee9a..00000000000
Binary files a/sound/vox/help.wav and /dev/null differ
diff --git a/sound/vox/here.wav b/sound/vox/here.wav
deleted file mode 100644
index e6d74f47f75..00000000000
Binary files a/sound/vox/here.wav and /dev/null differ
diff --git a/sound/vox/hide.wav b/sound/vox/hide.wav
deleted file mode 100644
index f7bb32b2830..00000000000
Binary files a/sound/vox/hide.wav and /dev/null differ
diff --git a/sound/vox/high.wav b/sound/vox/high.wav
deleted file mode 100644
index 832bf160408..00000000000
Binary files a/sound/vox/high.wav and /dev/null differ
diff --git a/sound/vox/highest.wav b/sound/vox/highest.wav
deleted file mode 100644
index ef4b2caf39f..00000000000
Binary files a/sound/vox/highest.wav and /dev/null differ
diff --git a/sound/vox/hit.wav b/sound/vox/hit.wav
deleted file mode 100644
index d70619a3f56..00000000000
Binary files a/sound/vox/hit.wav and /dev/null differ
diff --git a/sound/vox/hole.wav b/sound/vox/hole.wav
deleted file mode 100644
index afb46f59adc..00000000000
Binary files a/sound/vox/hole.wav and /dev/null differ
diff --git a/sound/vox/hostile.wav b/sound/vox/hostile.wav
deleted file mode 100644
index 4dc88f26c63..00000000000
Binary files a/sound/vox/hostile.wav and /dev/null differ
diff --git a/sound/vox/hot.wav b/sound/vox/hot.wav
deleted file mode 100644
index 7ced07279b9..00000000000
Binary files a/sound/vox/hot.wav and /dev/null differ
diff --git a/sound/vox/hotel.wav b/sound/vox/hotel.wav
deleted file mode 100644
index dde78cf2a18..00000000000
Binary files a/sound/vox/hotel.wav and /dev/null differ
diff --git a/sound/vox/hour.wav b/sound/vox/hour.wav
deleted file mode 100644
index d428bd779e1..00000000000
Binary files a/sound/vox/hour.wav and /dev/null differ
diff --git a/sound/vox/hours.wav b/sound/vox/hours.wav
deleted file mode 100644
index 63a24704270..00000000000
Binary files a/sound/vox/hours.wav and /dev/null differ
diff --git a/sound/vox/hundred.wav b/sound/vox/hundred.wav
deleted file mode 100644
index 8d3a8a0b4a5..00000000000
Binary files a/sound/vox/hundred.wav and /dev/null differ
diff --git a/sound/vox/hydro.wav b/sound/vox/hydro.wav
deleted file mode 100644
index 9653b7bf73a..00000000000
Binary files a/sound/vox/hydro.wav and /dev/null differ
diff --git a/sound/vox/i.wav b/sound/vox/i.wav
deleted file mode 100644
index b98a48fd294..00000000000
Binary files a/sound/vox/i.wav and /dev/null differ
diff --git a/sound/vox/idiot.wav b/sound/vox/idiot.wav
deleted file mode 100644
index 8c19f9d7a42..00000000000
Binary files a/sound/vox/idiot.wav and /dev/null differ
diff --git a/sound/vox/illegal.wav b/sound/vox/illegal.wav
deleted file mode 100644
index 6087e6ba7d2..00000000000
Binary files a/sound/vox/illegal.wav and /dev/null differ
diff --git a/sound/vox/immediate.wav b/sound/vox/immediate.wav
deleted file mode 100644
index 19fab3c842d..00000000000
Binary files a/sound/vox/immediate.wav and /dev/null differ
diff --git a/sound/vox/immediately.wav b/sound/vox/immediately.wav
deleted file mode 100644
index f2716edf0e0..00000000000
Binary files a/sound/vox/immediately.wav and /dev/null differ
diff --git a/sound/vox/in.wav b/sound/vox/in.wav
deleted file mode 100644
index e15bb9a6d5b..00000000000
Binary files a/sound/vox/in.wav and /dev/null differ
diff --git a/sound/vox/inches.wav b/sound/vox/inches.wav
deleted file mode 100644
index fc8e89ce7b9..00000000000
Binary files a/sound/vox/inches.wav and /dev/null differ
diff --git a/sound/vox/india.wav b/sound/vox/india.wav
deleted file mode 100644
index 991f9af5e02..00000000000
Binary files a/sound/vox/india.wav and /dev/null differ
diff --git a/sound/vox/ing.wav b/sound/vox/ing.wav
deleted file mode 100644
index 0728905c349..00000000000
Binary files a/sound/vox/ing.wav and /dev/null differ
diff --git a/sound/vox/inoperative.wav b/sound/vox/inoperative.wav
deleted file mode 100644
index 6822cc5fc37..00000000000
Binary files a/sound/vox/inoperative.wav and /dev/null differ
diff --git a/sound/vox/inside.wav b/sound/vox/inside.wav
deleted file mode 100644
index 03cb903c24a..00000000000
Binary files a/sound/vox/inside.wav and /dev/null differ
diff --git a/sound/vox/inspection.wav b/sound/vox/inspection.wav
deleted file mode 100644
index 3aecb746262..00000000000
Binary files a/sound/vox/inspection.wav and /dev/null differ
diff --git a/sound/vox/inspector.wav b/sound/vox/inspector.wav
deleted file mode 100644
index 06a54a36700..00000000000
Binary files a/sound/vox/inspector.wav and /dev/null differ
diff --git a/sound/vox/interchange.wav b/sound/vox/interchange.wav
deleted file mode 100644
index c7814162b42..00000000000
Binary files a/sound/vox/interchange.wav and /dev/null differ
diff --git a/sound/vox/intruder.wav b/sound/vox/intruder.wav
deleted file mode 100644
index a32958f0be6..00000000000
Binary files a/sound/vox/intruder.wav and /dev/null differ
diff --git a/sound/vox/invallid.wav b/sound/vox/invallid.wav
deleted file mode 100644
index fbf3b4e5245..00000000000
Binary files a/sound/vox/invallid.wav and /dev/null differ
diff --git a/sound/vox/invasion.wav b/sound/vox/invasion.wav
deleted file mode 100644
index 0024f331d4b..00000000000
Binary files a/sound/vox/invasion.wav and /dev/null differ
diff --git a/sound/vox/is.wav b/sound/vox/is.wav
deleted file mode 100644
index 0eecb1a7b7a..00000000000
Binary files a/sound/vox/is.wav and /dev/null differ
diff --git a/sound/vox/it.wav b/sound/vox/it.wav
deleted file mode 100644
index 1e96daf6bba..00000000000
Binary files a/sound/vox/it.wav and /dev/null differ
diff --git a/sound/vox/johnson.wav b/sound/vox/johnson.wav
deleted file mode 100644
index 1cef742cf67..00000000000
Binary files a/sound/vox/johnson.wav and /dev/null differ
diff --git a/sound/vox/juliet.wav b/sound/vox/juliet.wav
deleted file mode 100644
index 88a78517ca8..00000000000
Binary files a/sound/vox/juliet.wav and /dev/null differ
diff --git a/sound/vox/key.wav b/sound/vox/key.wav
deleted file mode 100644
index ba42b393db3..00000000000
Binary files a/sound/vox/key.wav and /dev/null differ
diff --git a/sound/vox/kill.wav b/sound/vox/kill.wav
deleted file mode 100644
index 9ae66ac5f6d..00000000000
Binary files a/sound/vox/kill.wav and /dev/null differ
diff --git a/sound/vox/kilo.wav b/sound/vox/kilo.wav
deleted file mode 100644
index e30904cafbe..00000000000
Binary files a/sound/vox/kilo.wav and /dev/null differ
diff --git a/sound/vox/kit.wav b/sound/vox/kit.wav
deleted file mode 100644
index b6cf53a5477..00000000000
Binary files a/sound/vox/kit.wav and /dev/null differ
diff --git a/sound/vox/lab.wav b/sound/vox/lab.wav
deleted file mode 100644
index 8b2518fe570..00000000000
Binary files a/sound/vox/lab.wav and /dev/null differ
diff --git a/sound/vox/lambda.wav b/sound/vox/lambda.wav
deleted file mode 100644
index a238ac9d964..00000000000
Binary files a/sound/vox/lambda.wav and /dev/null differ
diff --git a/sound/vox/laser.wav b/sound/vox/laser.wav
deleted file mode 100644
index 7617aa65d7a..00000000000
Binary files a/sound/vox/laser.wav and /dev/null differ
diff --git a/sound/vox/last.wav b/sound/vox/last.wav
deleted file mode 100644
index 458d13af62c..00000000000
Binary files a/sound/vox/last.wav and /dev/null differ
diff --git a/sound/vox/launch.wav b/sound/vox/launch.wav
deleted file mode 100644
index 66fd2224cee..00000000000
Binary files a/sound/vox/launch.wav and /dev/null differ
diff --git a/sound/vox/leak.wav b/sound/vox/leak.wav
deleted file mode 100644
index 0ec0fc786d9..00000000000
Binary files a/sound/vox/leak.wav and /dev/null differ
diff --git a/sound/vox/leave.wav b/sound/vox/leave.wav
deleted file mode 100644
index ce45698813a..00000000000
Binary files a/sound/vox/leave.wav and /dev/null differ
diff --git a/sound/vox/left.wav b/sound/vox/left.wav
deleted file mode 100644
index 2621d07fbdb..00000000000
Binary files a/sound/vox/left.wav and /dev/null differ
diff --git a/sound/vox/legal.wav b/sound/vox/legal.wav
deleted file mode 100644
index 928033759d2..00000000000
Binary files a/sound/vox/legal.wav and /dev/null differ
diff --git a/sound/vox/level.wav b/sound/vox/level.wav
deleted file mode 100644
index 1f01010dd01..00000000000
Binary files a/sound/vox/level.wav and /dev/null differ
diff --git a/sound/vox/lever.wav b/sound/vox/lever.wav
deleted file mode 100644
index a863fdc77a0..00000000000
Binary files a/sound/vox/lever.wav and /dev/null differ
diff --git a/sound/vox/lie.wav b/sound/vox/lie.wav
deleted file mode 100644
index 01b8749a0c8..00000000000
Binary files a/sound/vox/lie.wav and /dev/null differ
diff --git a/sound/vox/lieutenant.wav b/sound/vox/lieutenant.wav
deleted file mode 100644
index f749f2782a5..00000000000
Binary files a/sound/vox/lieutenant.wav and /dev/null differ
diff --git a/sound/vox/life.wav b/sound/vox/life.wav
deleted file mode 100644
index fd739b4593d..00000000000
Binary files a/sound/vox/life.wav and /dev/null differ
diff --git a/sound/vox/light.wav b/sound/vox/light.wav
deleted file mode 100644
index 69be0499552..00000000000
Binary files a/sound/vox/light.wav and /dev/null differ
diff --git a/sound/vox/lima.wav b/sound/vox/lima.wav
deleted file mode 100644
index d0cf4d05812..00000000000
Binary files a/sound/vox/lima.wav and /dev/null differ
diff --git a/sound/vox/liquid.wav b/sound/vox/liquid.wav
deleted file mode 100644
index 9f77a868e7f..00000000000
Binary files a/sound/vox/liquid.wav and /dev/null differ
diff --git a/sound/vox/loading.wav b/sound/vox/loading.wav
deleted file mode 100644
index f5404ef81b8..00000000000
Binary files a/sound/vox/loading.wav and /dev/null differ
diff --git a/sound/vox/locate.wav b/sound/vox/locate.wav
deleted file mode 100644
index 6b605a8d2df..00000000000
Binary files a/sound/vox/locate.wav and /dev/null differ
diff --git a/sound/vox/located.wav b/sound/vox/located.wav
deleted file mode 100644
index 19fb575525d..00000000000
Binary files a/sound/vox/located.wav and /dev/null differ
diff --git a/sound/vox/location.wav b/sound/vox/location.wav
deleted file mode 100644
index 149b0ec0270..00000000000
Binary files a/sound/vox/location.wav and /dev/null differ
diff --git a/sound/vox/lock.wav b/sound/vox/lock.wav
deleted file mode 100644
index a62efba6b9b..00000000000
Binary files a/sound/vox/lock.wav and /dev/null differ
diff --git a/sound/vox/locked.wav b/sound/vox/locked.wav
deleted file mode 100644
index 8d197f25023..00000000000
Binary files a/sound/vox/locked.wav and /dev/null differ
diff --git a/sound/vox/locker.wav b/sound/vox/locker.wav
deleted file mode 100644
index e6f9dfe2993..00000000000
Binary files a/sound/vox/locker.wav and /dev/null differ
diff --git a/sound/vox/lockout.wav b/sound/vox/lockout.wav
deleted file mode 100644
index b2cd0fb64d3..00000000000
Binary files a/sound/vox/lockout.wav and /dev/null differ
diff --git a/sound/vox/lower.wav b/sound/vox/lower.wav
deleted file mode 100644
index a654c1d4249..00000000000
Binary files a/sound/vox/lower.wav and /dev/null differ
diff --git a/sound/vox/lowest.wav b/sound/vox/lowest.wav
deleted file mode 100644
index 63fdaf93f03..00000000000
Binary files a/sound/vox/lowest.wav and /dev/null differ
diff --git a/sound/vox/magnetic.wav b/sound/vox/magnetic.wav
deleted file mode 100644
index 68deeeae9cd..00000000000
Binary files a/sound/vox/magnetic.wav and /dev/null differ
diff --git a/sound/vox/main.wav b/sound/vox/main.wav
deleted file mode 100644
index 46572749123..00000000000
Binary files a/sound/vox/main.wav and /dev/null differ
diff --git a/sound/vox/maintenance.wav b/sound/vox/maintenance.wav
deleted file mode 100644
index ebca04c9d6d..00000000000
Binary files a/sound/vox/maintenance.wav and /dev/null differ
diff --git a/sound/vox/malfunction.wav b/sound/vox/malfunction.wav
deleted file mode 100644
index 51d999b41fb..00000000000
Binary files a/sound/vox/malfunction.wav and /dev/null differ
diff --git a/sound/vox/man.wav b/sound/vox/man.wav
deleted file mode 100644
index 64525a4f23d..00000000000
Binary files a/sound/vox/man.wav and /dev/null differ
diff --git a/sound/vox/mass.wav b/sound/vox/mass.wav
deleted file mode 100644
index c7825984aa0..00000000000
Binary files a/sound/vox/mass.wav and /dev/null differ
diff --git a/sound/vox/materials.wav b/sound/vox/materials.wav
deleted file mode 100644
index c983ae71a87..00000000000
Binary files a/sound/vox/materials.wav and /dev/null differ
diff --git a/sound/vox/maximum.wav b/sound/vox/maximum.wav
deleted file mode 100644
index f1dbc8062d6..00000000000
Binary files a/sound/vox/maximum.wav and /dev/null differ
diff --git a/sound/vox/may.wav b/sound/vox/may.wav
deleted file mode 100644
index a2387387030..00000000000
Binary files a/sound/vox/may.wav and /dev/null differ
diff --git a/sound/vox/medical.wav b/sound/vox/medical.wav
deleted file mode 100644
index ece7f0c4c5f..00000000000
Binary files a/sound/vox/medical.wav and /dev/null differ
diff --git a/sound/vox/men.wav b/sound/vox/men.wav
deleted file mode 100644
index 594523da0ae..00000000000
Binary files a/sound/vox/men.wav and /dev/null differ
diff --git a/sound/vox/mercy.wav b/sound/vox/mercy.wav
deleted file mode 100644
index 8416b25dae4..00000000000
Binary files a/sound/vox/mercy.wav and /dev/null differ
diff --git a/sound/vox/mesa.wav b/sound/vox/mesa.wav
deleted file mode 100644
index fcb1d9843c0..00000000000
Binary files a/sound/vox/mesa.wav and /dev/null differ
diff --git a/sound/vox/message.wav b/sound/vox/message.wav
deleted file mode 100644
index b0b769db726..00000000000
Binary files a/sound/vox/message.wav and /dev/null differ
diff --git a/sound/vox/meter.wav b/sound/vox/meter.wav
deleted file mode 100644
index ca063bddad7..00000000000
Binary files a/sound/vox/meter.wav and /dev/null differ
diff --git a/sound/vox/micro.wav b/sound/vox/micro.wav
deleted file mode 100644
index 7869b97cecb..00000000000
Binary files a/sound/vox/micro.wav and /dev/null differ
diff --git a/sound/vox/middle.wav b/sound/vox/middle.wav
deleted file mode 100644
index b58a5878a9c..00000000000
Binary files a/sound/vox/middle.wav and /dev/null differ
diff --git a/sound/vox/mike.wav b/sound/vox/mike.wav
deleted file mode 100644
index a008bdefed9..00000000000
Binary files a/sound/vox/mike.wav and /dev/null differ
diff --git a/sound/vox/miles.wav b/sound/vox/miles.wav
deleted file mode 100644
index 9b04a790ea4..00000000000
Binary files a/sound/vox/miles.wav and /dev/null differ
diff --git a/sound/vox/military.wav b/sound/vox/military.wav
deleted file mode 100644
index 8387dc3b6c8..00000000000
Binary files a/sound/vox/military.wav and /dev/null differ
diff --git a/sound/vox/milli.wav b/sound/vox/milli.wav
deleted file mode 100644
index cc0b3e4c97e..00000000000
Binary files a/sound/vox/milli.wav and /dev/null differ
diff --git a/sound/vox/million.wav b/sound/vox/million.wav
deleted file mode 100644
index 6409eb0760a..00000000000
Binary files a/sound/vox/million.wav and /dev/null differ
diff --git a/sound/vox/minefield.wav b/sound/vox/minefield.wav
deleted file mode 100644
index 2af1c213671..00000000000
Binary files a/sound/vox/minefield.wav and /dev/null differ
diff --git a/sound/vox/minimum.wav b/sound/vox/minimum.wav
deleted file mode 100644
index ee184ce4fcb..00000000000
Binary files a/sound/vox/minimum.wav and /dev/null differ
diff --git a/sound/vox/minutes.wav b/sound/vox/minutes.wav
deleted file mode 100644
index 2e9fb914edd..00000000000
Binary files a/sound/vox/minutes.wav and /dev/null differ
diff --git a/sound/vox/mister.wav b/sound/vox/mister.wav
deleted file mode 100644
index 27507cfb09c..00000000000
Binary files a/sound/vox/mister.wav and /dev/null differ
diff --git a/sound/vox/mode.wav b/sound/vox/mode.wav
deleted file mode 100644
index e1060e9661b..00000000000
Binary files a/sound/vox/mode.wav and /dev/null differ
diff --git a/sound/vox/motor.wav b/sound/vox/motor.wav
deleted file mode 100644
index 7d1dbaeba46..00000000000
Binary files a/sound/vox/motor.wav and /dev/null differ
diff --git a/sound/vox/motorpool.wav b/sound/vox/motorpool.wav
deleted file mode 100644
index ae5a6af0d6f..00000000000
Binary files a/sound/vox/motorpool.wav and /dev/null differ
diff --git a/sound/vox/move.wav b/sound/vox/move.wav
deleted file mode 100644
index 1bc2172297f..00000000000
Binary files a/sound/vox/move.wav and /dev/null differ
diff --git a/sound/vox/must.wav b/sound/vox/must.wav
deleted file mode 100644
index 3e6e965bec1..00000000000
Binary files a/sound/vox/must.wav and /dev/null differ
diff --git a/sound/vox/nearest.wav b/sound/vox/nearest.wav
deleted file mode 100644
index 3f84ee72413..00000000000
Binary files a/sound/vox/nearest.wav and /dev/null differ
diff --git a/sound/vox/nice.wav b/sound/vox/nice.wav
deleted file mode 100644
index 8bd140649f6..00000000000
Binary files a/sound/vox/nice.wav and /dev/null differ
diff --git a/sound/vox/nine.wav b/sound/vox/nine.wav
deleted file mode 100644
index b85745edf9c..00000000000
Binary files a/sound/vox/nine.wav and /dev/null differ
diff --git a/sound/vox/nineteen.wav b/sound/vox/nineteen.wav
deleted file mode 100644
index c6da48310b2..00000000000
Binary files a/sound/vox/nineteen.wav and /dev/null differ
diff --git a/sound/vox/ninety.wav b/sound/vox/ninety.wav
deleted file mode 100644
index 74e2e02d412..00000000000
Binary files a/sound/vox/ninety.wav and /dev/null differ
diff --git a/sound/vox/no.wav b/sound/vox/no.wav
deleted file mode 100644
index ced1b6617cf..00000000000
Binary files a/sound/vox/no.wav and /dev/null differ
diff --git a/sound/vox/nominal.wav b/sound/vox/nominal.wav
deleted file mode 100644
index f0656302d1d..00000000000
Binary files a/sound/vox/nominal.wav and /dev/null differ
diff --git a/sound/vox/north.wav b/sound/vox/north.wav
deleted file mode 100644
index 4867fdc7bc5..00000000000
Binary files a/sound/vox/north.wav and /dev/null differ
diff --git a/sound/vox/not.wav b/sound/vox/not.wav
deleted file mode 100644
index 626cd177744..00000000000
Binary files a/sound/vox/not.wav and /dev/null differ
diff --git a/sound/vox/november.wav b/sound/vox/november.wav
deleted file mode 100644
index 212efe5f9a6..00000000000
Binary files a/sound/vox/november.wav and /dev/null differ
diff --git a/sound/vox/now.wav b/sound/vox/now.wav
deleted file mode 100644
index 0619087d594..00000000000
Binary files a/sound/vox/now.wav and /dev/null differ
diff --git a/sound/vox/number.wav b/sound/vox/number.wav
deleted file mode 100644
index cfec10a75e6..00000000000
Binary files a/sound/vox/number.wav and /dev/null differ
diff --git a/sound/vox/objective.wav b/sound/vox/objective.wav
deleted file mode 100644
index 14ea571aa68..00000000000
Binary files a/sound/vox/objective.wav and /dev/null differ
diff --git a/sound/vox/observation.wav b/sound/vox/observation.wav
deleted file mode 100644
index 9141789671a..00000000000
Binary files a/sound/vox/observation.wav and /dev/null differ
diff --git a/sound/vox/of.wav b/sound/vox/of.wav
deleted file mode 100644
index 7cf5427dfb1..00000000000
Binary files a/sound/vox/of.wav and /dev/null differ
diff --git a/sound/vox/officer.wav b/sound/vox/officer.wav
deleted file mode 100644
index 9017915aef2..00000000000
Binary files a/sound/vox/officer.wav and /dev/null differ
diff --git a/sound/vox/ok.wav b/sound/vox/ok.wav
deleted file mode 100644
index 66011aed6d4..00000000000
Binary files a/sound/vox/ok.wav and /dev/null differ
diff --git a/sound/vox/on.wav b/sound/vox/on.wav
deleted file mode 100644
index 2b97a1fd46a..00000000000
Binary files a/sound/vox/on.wav and /dev/null differ
diff --git a/sound/vox/one.wav b/sound/vox/one.wav
deleted file mode 100644
index 57f2b3f14de..00000000000
Binary files a/sound/vox/one.wav and /dev/null differ
diff --git a/sound/vox/open.wav b/sound/vox/open.wav
deleted file mode 100644
index be98260bb92..00000000000
Binary files a/sound/vox/open.wav and /dev/null differ
diff --git a/sound/vox/operating.wav b/sound/vox/operating.wav
deleted file mode 100644
index b2180694205..00000000000
Binary files a/sound/vox/operating.wav and /dev/null differ
diff --git a/sound/vox/operations.wav b/sound/vox/operations.wav
deleted file mode 100644
index 37c9d75e0eb..00000000000
Binary files a/sound/vox/operations.wav and /dev/null differ
diff --git a/sound/vox/operative.wav b/sound/vox/operative.wav
deleted file mode 100644
index 70f99029cd2..00000000000
Binary files a/sound/vox/operative.wav and /dev/null differ
diff --git a/sound/vox/option.wav b/sound/vox/option.wav
deleted file mode 100644
index a5199b71de6..00000000000
Binary files a/sound/vox/option.wav and /dev/null differ
diff --git a/sound/vox/order.wav b/sound/vox/order.wav
deleted file mode 100644
index c5a25483401..00000000000
Binary files a/sound/vox/order.wav and /dev/null differ
diff --git a/sound/vox/organic.wav b/sound/vox/organic.wav
deleted file mode 100644
index 78dc879d7c0..00000000000
Binary files a/sound/vox/organic.wav and /dev/null differ
diff --git a/sound/vox/oscar.wav b/sound/vox/oscar.wav
deleted file mode 100644
index 32db2392d58..00000000000
Binary files a/sound/vox/oscar.wav and /dev/null differ
diff --git a/sound/vox/out.wav b/sound/vox/out.wav
deleted file mode 100644
index 4aca4d70705..00000000000
Binary files a/sound/vox/out.wav and /dev/null differ
diff --git a/sound/vox/outside.wav b/sound/vox/outside.wav
deleted file mode 100644
index 62993ea5e45..00000000000
Binary files a/sound/vox/outside.wav and /dev/null differ
diff --git a/sound/vox/over.wav b/sound/vox/over.wav
deleted file mode 100644
index 8068c74f732..00000000000
Binary files a/sound/vox/over.wav and /dev/null differ
diff --git a/sound/vox/overload.wav b/sound/vox/overload.wav
deleted file mode 100644
index d932cb3dedf..00000000000
Binary files a/sound/vox/overload.wav and /dev/null differ
diff --git a/sound/vox/override.wav b/sound/vox/override.wav
deleted file mode 100644
index 132667e7eae..00000000000
Binary files a/sound/vox/override.wav and /dev/null differ
diff --git a/sound/vox/pacify.wav b/sound/vox/pacify.wav
deleted file mode 100644
index 6a596197d75..00000000000
Binary files a/sound/vox/pacify.wav and /dev/null differ
diff --git a/sound/vox/pain.wav b/sound/vox/pain.wav
deleted file mode 100644
index bdb30dded8b..00000000000
Binary files a/sound/vox/pain.wav and /dev/null differ
diff --git a/sound/vox/pal.wav b/sound/vox/pal.wav
deleted file mode 100644
index 28eb17ce99a..00000000000
Binary files a/sound/vox/pal.wav and /dev/null differ
diff --git a/sound/vox/panel.wav b/sound/vox/panel.wav
deleted file mode 100644
index ce1f22fd234..00000000000
Binary files a/sound/vox/panel.wav and /dev/null differ
diff --git a/sound/vox/percent.wav b/sound/vox/percent.wav
deleted file mode 100644
index 9e775863ae4..00000000000
Binary files a/sound/vox/percent.wav and /dev/null differ
diff --git a/sound/vox/perimeter.wav b/sound/vox/perimeter.wav
deleted file mode 100644
index 91a8d95d910..00000000000
Binary files a/sound/vox/perimeter.wav and /dev/null differ
diff --git a/sound/vox/permitted.wav b/sound/vox/permitted.wav
deleted file mode 100644
index 015d10eaa87..00000000000
Binary files a/sound/vox/permitted.wav and /dev/null differ
diff --git a/sound/vox/personnel.wav b/sound/vox/personnel.wav
deleted file mode 100644
index 665a3215c9c..00000000000
Binary files a/sound/vox/personnel.wav and /dev/null differ
diff --git a/sound/vox/pipe.wav b/sound/vox/pipe.wav
deleted file mode 100644
index 53abe7db8bb..00000000000
Binary files a/sound/vox/pipe.wav and /dev/null differ
diff --git a/sound/vox/plant.wav b/sound/vox/plant.wav
deleted file mode 100644
index 8fc84c60ac4..00000000000
Binary files a/sound/vox/plant.wav and /dev/null differ
diff --git a/sound/vox/platform.wav b/sound/vox/platform.wav
deleted file mode 100644
index 72ca2c179ff..00000000000
Binary files a/sound/vox/platform.wav and /dev/null differ
diff --git a/sound/vox/please.wav b/sound/vox/please.wav
deleted file mode 100644
index 4dc346e3e02..00000000000
Binary files a/sound/vox/please.wav and /dev/null differ
diff --git a/sound/vox/point.wav b/sound/vox/point.wav
deleted file mode 100644
index 26e4ca508bf..00000000000
Binary files a/sound/vox/point.wav and /dev/null differ
diff --git a/sound/vox/portal.wav b/sound/vox/portal.wav
deleted file mode 100644
index 2f093e99244..00000000000
Binary files a/sound/vox/portal.wav and /dev/null differ
diff --git a/sound/vox/power.wav b/sound/vox/power.wav
deleted file mode 100644
index 3256e3ee995..00000000000
Binary files a/sound/vox/power.wav and /dev/null differ
diff --git a/sound/vox/presence.wav b/sound/vox/presence.wav
deleted file mode 100644
index c7a3b8f1e00..00000000000
Binary files a/sound/vox/presence.wav and /dev/null differ
diff --git a/sound/vox/press.wav b/sound/vox/press.wav
deleted file mode 100644
index 138ef0f2eb8..00000000000
Binary files a/sound/vox/press.wav and /dev/null differ
diff --git a/sound/vox/primary.wav b/sound/vox/primary.wav
deleted file mode 100644
index ed107abdd11..00000000000
Binary files a/sound/vox/primary.wav and /dev/null differ
diff --git a/sound/vox/proceed.wav b/sound/vox/proceed.wav
deleted file mode 100644
index ec5ba2f4380..00000000000
Binary files a/sound/vox/proceed.wav and /dev/null differ
diff --git a/sound/vox/processing.wav b/sound/vox/processing.wav
deleted file mode 100644
index 3470d8eb07b..00000000000
Binary files a/sound/vox/processing.wav and /dev/null differ
diff --git a/sound/vox/progress.wav b/sound/vox/progress.wav
deleted file mode 100644
index ab2ef1914ff..00000000000
Binary files a/sound/vox/progress.wav and /dev/null differ
diff --git a/sound/vox/proper.wav b/sound/vox/proper.wav
deleted file mode 100644
index fb799ae0670..00000000000
Binary files a/sound/vox/proper.wav and /dev/null differ
diff --git a/sound/vox/propulsion.wav b/sound/vox/propulsion.wav
deleted file mode 100644
index cc60270a56d..00000000000
Binary files a/sound/vox/propulsion.wav and /dev/null differ
diff --git a/sound/vox/prosecute.wav b/sound/vox/prosecute.wav
deleted file mode 100644
index 9d76be850b8..00000000000
Binary files a/sound/vox/prosecute.wav and /dev/null differ
diff --git a/sound/vox/protective.wav b/sound/vox/protective.wav
deleted file mode 100644
index be17714e62f..00000000000
Binary files a/sound/vox/protective.wav and /dev/null differ
diff --git a/sound/vox/push.wav b/sound/vox/push.wav
deleted file mode 100644
index db91cb1229f..00000000000
Binary files a/sound/vox/push.wav and /dev/null differ
diff --git a/sound/vox/quantum.wav b/sound/vox/quantum.wav
deleted file mode 100644
index 3e5ee45d7b3..00000000000
Binary files a/sound/vox/quantum.wav and /dev/null differ
diff --git a/sound/vox/quebec.wav b/sound/vox/quebec.wav
deleted file mode 100644
index 6323a992cb2..00000000000
Binary files a/sound/vox/quebec.wav and /dev/null differ
diff --git a/sound/vox/question.wav b/sound/vox/question.wav
deleted file mode 100644
index cf6de8dd526..00000000000
Binary files a/sound/vox/question.wav and /dev/null differ
diff --git a/sound/vox/questioning.wav b/sound/vox/questioning.wav
deleted file mode 100644
index 51f08488dc9..00000000000
Binary files a/sound/vox/questioning.wav and /dev/null differ
diff --git a/sound/vox/quick.wav b/sound/vox/quick.wav
deleted file mode 100644
index 82c6c493d70..00000000000
Binary files a/sound/vox/quick.wav and /dev/null differ
diff --git a/sound/vox/quit.wav b/sound/vox/quit.wav
deleted file mode 100644
index 1ee00b87a1c..00000000000
Binary files a/sound/vox/quit.wav and /dev/null differ
diff --git a/sound/vox/radiation.wav b/sound/vox/radiation.wav
deleted file mode 100644
index 5551f24b44f..00000000000
Binary files a/sound/vox/radiation.wav and /dev/null differ
diff --git a/sound/vox/radioactive.wav b/sound/vox/radioactive.wav
deleted file mode 100644
index 84b3b4a180e..00000000000
Binary files a/sound/vox/radioactive.wav and /dev/null differ
diff --git a/sound/vox/rads.wav b/sound/vox/rads.wav
deleted file mode 100644
index 13802ea3020..00000000000
Binary files a/sound/vox/rads.wav and /dev/null differ
diff --git a/sound/vox/rapid.wav b/sound/vox/rapid.wav
deleted file mode 100644
index fdfdd10faa7..00000000000
Binary files a/sound/vox/rapid.wav and /dev/null differ
diff --git a/sound/vox/reach.wav b/sound/vox/reach.wav
deleted file mode 100644
index 5b2ec24bd4f..00000000000
Binary files a/sound/vox/reach.wav and /dev/null differ
diff --git a/sound/vox/reached.wav b/sound/vox/reached.wav
deleted file mode 100644
index 22bd766019d..00000000000
Binary files a/sound/vox/reached.wav and /dev/null differ
diff --git a/sound/vox/reactor.wav b/sound/vox/reactor.wav
deleted file mode 100644
index c8fb909be07..00000000000
Binary files a/sound/vox/reactor.wav and /dev/null differ
diff --git a/sound/vox/red.wav b/sound/vox/red.wav
deleted file mode 100644
index 777e5466485..00000000000
Binary files a/sound/vox/red.wav and /dev/null differ
diff --git a/sound/vox/relay.wav b/sound/vox/relay.wav
deleted file mode 100644
index bef9fb09272..00000000000
Binary files a/sound/vox/relay.wav and /dev/null differ
diff --git a/sound/vox/released.wav b/sound/vox/released.wav
deleted file mode 100644
index ba56d6d9555..00000000000
Binary files a/sound/vox/released.wav and /dev/null differ
diff --git a/sound/vox/remaining.wav b/sound/vox/remaining.wav
deleted file mode 100644
index 0c393ee9d10..00000000000
Binary files a/sound/vox/remaining.wav and /dev/null differ
diff --git a/sound/vox/renegade.wav b/sound/vox/renegade.wav
deleted file mode 100644
index 0dc4518edc6..00000000000
Binary files a/sound/vox/renegade.wav and /dev/null differ
diff --git a/sound/vox/repair.wav b/sound/vox/repair.wav
deleted file mode 100644
index be2fe5418e6..00000000000
Binary files a/sound/vox/repair.wav and /dev/null differ
diff --git a/sound/vox/report.wav b/sound/vox/report.wav
deleted file mode 100644
index 685c3878945..00000000000
Binary files a/sound/vox/report.wav and /dev/null differ
diff --git a/sound/vox/reports.wav b/sound/vox/reports.wav
deleted file mode 100644
index 19e8f0478b3..00000000000
Binary files a/sound/vox/reports.wav and /dev/null differ
diff --git a/sound/vox/required.wav b/sound/vox/required.wav
deleted file mode 100644
index c5bbf850b48..00000000000
Binary files a/sound/vox/required.wav and /dev/null differ
diff --git a/sound/vox/research.wav b/sound/vox/research.wav
deleted file mode 100644
index d7385867da7..00000000000
Binary files a/sound/vox/research.wav and /dev/null differ
diff --git a/sound/vox/resevoir.wav b/sound/vox/resevoir.wav
deleted file mode 100644
index 7b67635b929..00000000000
Binary files a/sound/vox/resevoir.wav and /dev/null differ
diff --git a/sound/vox/resistance.wav b/sound/vox/resistance.wav
deleted file mode 100644
index 1f3f90b0f92..00000000000
Binary files a/sound/vox/resistance.wav and /dev/null differ
diff --git a/sound/vox/right.wav b/sound/vox/right.wav
deleted file mode 100644
index 0c920c843db..00000000000
Binary files a/sound/vox/right.wav and /dev/null differ
diff --git a/sound/vox/rocket.wav b/sound/vox/rocket.wav
deleted file mode 100644
index 57d7e6a8e07..00000000000
Binary files a/sound/vox/rocket.wav and /dev/null differ
diff --git a/sound/vox/roger.wav b/sound/vox/roger.wav
deleted file mode 100644
index 426014be23b..00000000000
Binary files a/sound/vox/roger.wav and /dev/null differ
diff --git a/sound/vox/romeo.wav b/sound/vox/romeo.wav
deleted file mode 100644
index 42590922e46..00000000000
Binary files a/sound/vox/romeo.wav and /dev/null differ
diff --git a/sound/vox/room.wav b/sound/vox/room.wav
deleted file mode 100644
index da12c55feab..00000000000
Binary files a/sound/vox/room.wav and /dev/null differ
diff --git a/sound/vox/round.wav b/sound/vox/round.wav
deleted file mode 100644
index 76d30382eb3..00000000000
Binary files a/sound/vox/round.wav and /dev/null differ
diff --git a/sound/vox/run.wav b/sound/vox/run.wav
deleted file mode 100644
index f2baec69b1b..00000000000
Binary files a/sound/vox/run.wav and /dev/null differ
diff --git a/sound/vox/safe.wav b/sound/vox/safe.wav
deleted file mode 100644
index 65d52fbcdcd..00000000000
Binary files a/sound/vox/safe.wav and /dev/null differ
diff --git a/sound/vox/safety.wav b/sound/vox/safety.wav
deleted file mode 100644
index b24e8951b20..00000000000
Binary files a/sound/vox/safety.wav and /dev/null differ
diff --git a/sound/vox/sargeant.wav b/sound/vox/sargeant.wav
deleted file mode 100644
index e26c6a301e0..00000000000
Binary files a/sound/vox/sargeant.wav and /dev/null differ
diff --git a/sound/vox/satellite.wav b/sound/vox/satellite.wav
deleted file mode 100644
index 45187b819b0..00000000000
Binary files a/sound/vox/satellite.wav and /dev/null differ
diff --git a/sound/vox/save.wav b/sound/vox/save.wav
deleted file mode 100644
index db09e275396..00000000000
Binary files a/sound/vox/save.wav and /dev/null differ
diff --git a/sound/vox/science.wav b/sound/vox/science.wav
deleted file mode 100644
index cb1f2d7236d..00000000000
Binary files a/sound/vox/science.wav and /dev/null differ
diff --git a/sound/vox/scream.wav b/sound/vox/scream.wav
deleted file mode 100644
index 66afd0983d7..00000000000
Binary files a/sound/vox/scream.wav and /dev/null differ
diff --git a/sound/vox/screen.wav b/sound/vox/screen.wav
deleted file mode 100644
index bb375266bb7..00000000000
Binary files a/sound/vox/screen.wav and /dev/null differ
diff --git a/sound/vox/search.wav b/sound/vox/search.wav
deleted file mode 100644
index 023072d9897..00000000000
Binary files a/sound/vox/search.wav and /dev/null differ
diff --git a/sound/vox/second.wav b/sound/vox/second.wav
deleted file mode 100644
index dbed0caa0ae..00000000000
Binary files a/sound/vox/second.wav and /dev/null differ
diff --git a/sound/vox/secondary.wav b/sound/vox/secondary.wav
deleted file mode 100644
index af29ac286ce..00000000000
Binary files a/sound/vox/secondary.wav and /dev/null differ
diff --git a/sound/vox/seconds.wav b/sound/vox/seconds.wav
deleted file mode 100644
index a631ea1db04..00000000000
Binary files a/sound/vox/seconds.wav and /dev/null differ
diff --git a/sound/vox/sector.wav b/sound/vox/sector.wav
deleted file mode 100644
index 2318ccf631a..00000000000
Binary files a/sound/vox/sector.wav and /dev/null differ
diff --git a/sound/vox/secure.wav b/sound/vox/secure.wav
deleted file mode 100644
index 17fe6225ff5..00000000000
Binary files a/sound/vox/secure.wav and /dev/null differ
diff --git a/sound/vox/secured.wav b/sound/vox/secured.wav
deleted file mode 100644
index 8007a48c0d9..00000000000
Binary files a/sound/vox/secured.wav and /dev/null differ
diff --git a/sound/vox/security.wav b/sound/vox/security.wav
deleted file mode 100644
index 16435fdf515..00000000000
Binary files a/sound/vox/security.wav and /dev/null differ
diff --git a/sound/vox/select.wav b/sound/vox/select.wav
deleted file mode 100644
index 9b89d52bb0c..00000000000
Binary files a/sound/vox/select.wav and /dev/null differ
diff --git a/sound/vox/selected.wav b/sound/vox/selected.wav
deleted file mode 100644
index d4124f579a1..00000000000
Binary files a/sound/vox/selected.wav and /dev/null differ
diff --git a/sound/vox/service.wav b/sound/vox/service.wav
deleted file mode 100644
index 3f6957d2e00..00000000000
Binary files a/sound/vox/service.wav and /dev/null differ
diff --git a/sound/vox/seven.wav b/sound/vox/seven.wav
deleted file mode 100644
index eca99c196a0..00000000000
Binary files a/sound/vox/seven.wav and /dev/null differ
diff --git a/sound/vox/seventeen.wav b/sound/vox/seventeen.wav
deleted file mode 100644
index 9526b8a4e3c..00000000000
Binary files a/sound/vox/seventeen.wav and /dev/null differ
diff --git a/sound/vox/seventy.wav b/sound/vox/seventy.wav
deleted file mode 100644
index 1b45ce6afe3..00000000000
Binary files a/sound/vox/seventy.wav and /dev/null differ
diff --git a/sound/vox/severe.wav b/sound/vox/severe.wav
deleted file mode 100644
index fed84eea850..00000000000
Binary files a/sound/vox/severe.wav and /dev/null differ
diff --git a/sound/vox/sewage.wav b/sound/vox/sewage.wav
deleted file mode 100644
index 60978963e2c..00000000000
Binary files a/sound/vox/sewage.wav and /dev/null differ
diff --git a/sound/vox/sewer.wav b/sound/vox/sewer.wav
deleted file mode 100644
index 5071a1d64a8..00000000000
Binary files a/sound/vox/sewer.wav and /dev/null differ
diff --git a/sound/vox/shield.wav b/sound/vox/shield.wav
deleted file mode 100644
index 0ab01e0a6a5..00000000000
Binary files a/sound/vox/shield.wav and /dev/null differ
diff --git a/sound/vox/shipment.wav b/sound/vox/shipment.wav
deleted file mode 100644
index 9b9014c51df..00000000000
Binary files a/sound/vox/shipment.wav and /dev/null differ
diff --git a/sound/vox/shock.wav b/sound/vox/shock.wav
deleted file mode 100644
index d4451bdf3c4..00000000000
Binary files a/sound/vox/shock.wav and /dev/null differ
diff --git a/sound/vox/shoot.wav b/sound/vox/shoot.wav
deleted file mode 100644
index 5661ceb9c9b..00000000000
Binary files a/sound/vox/shoot.wav and /dev/null differ
diff --git a/sound/vox/shower.wav b/sound/vox/shower.wav
deleted file mode 100644
index c32a9e42e08..00000000000
Binary files a/sound/vox/shower.wav and /dev/null differ
diff --git a/sound/vox/shut.wav b/sound/vox/shut.wav
deleted file mode 100644
index 6f68340502d..00000000000
Binary files a/sound/vox/shut.wav and /dev/null differ
diff --git a/sound/vox/side.wav b/sound/vox/side.wav
deleted file mode 100644
index 4f4091a4e53..00000000000
Binary files a/sound/vox/side.wav and /dev/null differ
diff --git a/sound/vox/sierra.wav b/sound/vox/sierra.wav
deleted file mode 100644
index 0e52a6ec56a..00000000000
Binary files a/sound/vox/sierra.wav and /dev/null differ
diff --git a/sound/vox/sight.wav b/sound/vox/sight.wav
deleted file mode 100644
index 5d479cab759..00000000000
Binary files a/sound/vox/sight.wav and /dev/null differ
diff --git a/sound/vox/silo.wav b/sound/vox/silo.wav
deleted file mode 100644
index daf9f28be1e..00000000000
Binary files a/sound/vox/silo.wav and /dev/null differ
diff --git a/sound/vox/six.wav b/sound/vox/six.wav
deleted file mode 100644
index aa6bb638e34..00000000000
Binary files a/sound/vox/six.wav and /dev/null differ
diff --git a/sound/vox/sixteen.wav b/sound/vox/sixteen.wav
deleted file mode 100644
index 6f2db2ad9d4..00000000000
Binary files a/sound/vox/sixteen.wav and /dev/null differ
diff --git a/sound/vox/sixty.wav b/sound/vox/sixty.wav
deleted file mode 100644
index 19610c7f796..00000000000
Binary files a/sound/vox/sixty.wav and /dev/null differ
diff --git a/sound/vox/slime.wav b/sound/vox/slime.wav
deleted file mode 100644
index 4d1d3cf6a4d..00000000000
Binary files a/sound/vox/slime.wav and /dev/null differ
diff --git a/sound/vox/slow.wav b/sound/vox/slow.wav
deleted file mode 100644
index 75101b7de4e..00000000000
Binary files a/sound/vox/slow.wav and /dev/null differ
diff --git a/sound/vox/soldier.wav b/sound/vox/soldier.wav
deleted file mode 100644
index c84ce201788..00000000000
Binary files a/sound/vox/soldier.wav and /dev/null differ
diff --git a/sound/vox/some.wav b/sound/vox/some.wav
deleted file mode 100644
index c4ba34efff8..00000000000
Binary files a/sound/vox/some.wav and /dev/null differ
diff --git a/sound/vox/someone.wav b/sound/vox/someone.wav
deleted file mode 100644
index 6f6183e1f7d..00000000000
Binary files a/sound/vox/someone.wav and /dev/null differ
diff --git a/sound/vox/something.wav b/sound/vox/something.wav
deleted file mode 100644
index 46011400955..00000000000
Binary files a/sound/vox/something.wav and /dev/null differ
diff --git a/sound/vox/son.wav b/sound/vox/son.wav
deleted file mode 100644
index f23495127e6..00000000000
Binary files a/sound/vox/son.wav and /dev/null differ
diff --git a/sound/vox/sorry.wav b/sound/vox/sorry.wav
deleted file mode 100644
index 4c0725b938d..00000000000
Binary files a/sound/vox/sorry.wav and /dev/null differ
diff --git a/sound/vox/south.wav b/sound/vox/south.wav
deleted file mode 100644
index 3a5ba004105..00000000000
Binary files a/sound/vox/south.wav and /dev/null differ
diff --git a/sound/vox/squad.wav b/sound/vox/squad.wav
deleted file mode 100644
index 71739d14980..00000000000
Binary files a/sound/vox/squad.wav and /dev/null differ
diff --git a/sound/vox/square.wav b/sound/vox/square.wav
deleted file mode 100644
index f08f73a5f4b..00000000000
Binary files a/sound/vox/square.wav and /dev/null differ
diff --git a/sound/vox/stairway.wav b/sound/vox/stairway.wav
deleted file mode 100644
index ab84571c82b..00000000000
Binary files a/sound/vox/stairway.wav and /dev/null differ
diff --git a/sound/vox/status.wav b/sound/vox/status.wav
deleted file mode 100644
index 42fe8b7822d..00000000000
Binary files a/sound/vox/status.wav and /dev/null differ
diff --git a/sound/vox/sterile.wav b/sound/vox/sterile.wav
deleted file mode 100644
index d95753222b9..00000000000
Binary files a/sound/vox/sterile.wav and /dev/null differ
diff --git a/sound/vox/sterilization.wav b/sound/vox/sterilization.wav
deleted file mode 100644
index f53240310cf..00000000000
Binary files a/sound/vox/sterilization.wav and /dev/null differ
diff --git a/sound/vox/storage.wav b/sound/vox/storage.wav
deleted file mode 100644
index 18954a4f79d..00000000000
Binary files a/sound/vox/storage.wav and /dev/null differ
diff --git a/sound/vox/sub.wav b/sound/vox/sub.wav
deleted file mode 100644
index d25510d3c07..00000000000
Binary files a/sound/vox/sub.wav and /dev/null differ
diff --git a/sound/vox/subsurface.wav b/sound/vox/subsurface.wav
deleted file mode 100644
index cb19be3a883..00000000000
Binary files a/sound/vox/subsurface.wav and /dev/null differ
diff --git a/sound/vox/sudden.wav b/sound/vox/sudden.wav
deleted file mode 100644
index b5eb4088ac9..00000000000
Binary files a/sound/vox/sudden.wav and /dev/null differ
diff --git a/sound/vox/suit.wav b/sound/vox/suit.wav
deleted file mode 100644
index d099c958439..00000000000
Binary files a/sound/vox/suit.wav and /dev/null differ
diff --git a/sound/vox/superconducting.wav b/sound/vox/superconducting.wav
deleted file mode 100644
index ad4fcc8f9d7..00000000000
Binary files a/sound/vox/superconducting.wav and /dev/null differ
diff --git a/sound/vox/supercooled.wav b/sound/vox/supercooled.wav
deleted file mode 100644
index 936562ed4f4..00000000000
Binary files a/sound/vox/supercooled.wav and /dev/null differ
diff --git a/sound/vox/supply.wav b/sound/vox/supply.wav
deleted file mode 100644
index 4b33c8e9b7b..00000000000
Binary files a/sound/vox/supply.wav and /dev/null differ
diff --git a/sound/vox/surface.wav b/sound/vox/surface.wav
deleted file mode 100644
index 0b02d732a9c..00000000000
Binary files a/sound/vox/surface.wav and /dev/null differ
diff --git a/sound/vox/surrender.wav b/sound/vox/surrender.wav
deleted file mode 100644
index f0a17b395ae..00000000000
Binary files a/sound/vox/surrender.wav and /dev/null differ
diff --git a/sound/vox/surround.wav b/sound/vox/surround.wav
deleted file mode 100644
index c9afd86f9cb..00000000000
Binary files a/sound/vox/surround.wav and /dev/null differ
diff --git a/sound/vox/surrounded.wav b/sound/vox/surrounded.wav
deleted file mode 100644
index 3cbf5134811..00000000000
Binary files a/sound/vox/surrounded.wav and /dev/null differ
diff --git a/sound/vox/switch.wav b/sound/vox/switch.wav
deleted file mode 100644
index f5ffcc7a6b3..00000000000
Binary files a/sound/vox/switch.wav and /dev/null differ
diff --git a/sound/vox/system.wav b/sound/vox/system.wav
deleted file mode 100644
index 078727a081b..00000000000
Binary files a/sound/vox/system.wav and /dev/null differ
diff --git a/sound/vox/systems.wav b/sound/vox/systems.wav
deleted file mode 100644
index c8802508301..00000000000
Binary files a/sound/vox/systems.wav and /dev/null differ
diff --git a/sound/vox/tactical.wav b/sound/vox/tactical.wav
deleted file mode 100644
index 6b1aca650be..00000000000
Binary files a/sound/vox/tactical.wav and /dev/null differ
diff --git a/sound/vox/take.wav b/sound/vox/take.wav
deleted file mode 100644
index 70644f52205..00000000000
Binary files a/sound/vox/take.wav and /dev/null differ
diff --git a/sound/vox/talk.wav b/sound/vox/talk.wav
deleted file mode 100644
index 3ff83c48c93..00000000000
Binary files a/sound/vox/talk.wav and /dev/null differ
diff --git a/sound/vox/tango.wav b/sound/vox/tango.wav
deleted file mode 100644
index 37b6f4fe198..00000000000
Binary files a/sound/vox/tango.wav and /dev/null differ
diff --git a/sound/vox/tank.wav b/sound/vox/tank.wav
deleted file mode 100644
index 9608b0d7492..00000000000
Binary files a/sound/vox/tank.wav and /dev/null differ
diff --git a/sound/vox/target.wav b/sound/vox/target.wav
deleted file mode 100644
index bd004147bf6..00000000000
Binary files a/sound/vox/target.wav and /dev/null differ
diff --git a/sound/vox/team.wav b/sound/vox/team.wav
deleted file mode 100644
index d0e47d4e101..00000000000
Binary files a/sound/vox/team.wav and /dev/null differ
diff --git a/sound/vox/temperature.wav b/sound/vox/temperature.wav
deleted file mode 100644
index e9b51dada78..00000000000
Binary files a/sound/vox/temperature.wav and /dev/null differ
diff --git a/sound/vox/temporal.wav b/sound/vox/temporal.wav
deleted file mode 100644
index d0398a0f8ce..00000000000
Binary files a/sound/vox/temporal.wav and /dev/null differ
diff --git a/sound/vox/ten.wav b/sound/vox/ten.wav
deleted file mode 100644
index fd0f353f6bb..00000000000
Binary files a/sound/vox/ten.wav and /dev/null differ
diff --git a/sound/vox/terminal.wav b/sound/vox/terminal.wav
deleted file mode 100644
index 5ffe39101e4..00000000000
Binary files a/sound/vox/terminal.wav and /dev/null differ
diff --git a/sound/vox/terminated.wav b/sound/vox/terminated.wav
deleted file mode 100644
index 1c972f092c1..00000000000
Binary files a/sound/vox/terminated.wav and /dev/null differ
diff --git a/sound/vox/termination.wav b/sound/vox/termination.wav
deleted file mode 100644
index f093cd31a11..00000000000
Binary files a/sound/vox/termination.wav and /dev/null differ
diff --git a/sound/vox/test.wav b/sound/vox/test.wav
deleted file mode 100644
index f7c9b461fc4..00000000000
Binary files a/sound/vox/test.wav and /dev/null differ
diff --git a/sound/vox/that.wav b/sound/vox/that.wav
deleted file mode 100644
index f9e8c928735..00000000000
Binary files a/sound/vox/that.wav and /dev/null differ
diff --git a/sound/vox/the.wav b/sound/vox/the.wav
deleted file mode 100644
index 3a07ea3be81..00000000000
Binary files a/sound/vox/the.wav and /dev/null differ
diff --git a/sound/vox/then.wav b/sound/vox/then.wav
deleted file mode 100644
index 1c2ec53386d..00000000000
Binary files a/sound/vox/then.wav and /dev/null differ
diff --git a/sound/vox/there.wav b/sound/vox/there.wav
deleted file mode 100644
index 0e25880076e..00000000000
Binary files a/sound/vox/there.wav and /dev/null differ
diff --git a/sound/vox/third.wav b/sound/vox/third.wav
deleted file mode 100644
index 962f2f96974..00000000000
Binary files a/sound/vox/third.wav and /dev/null differ
diff --git a/sound/vox/thirteen.wav b/sound/vox/thirteen.wav
deleted file mode 100644
index 1c392cfa3e0..00000000000
Binary files a/sound/vox/thirteen.wav and /dev/null differ
diff --git a/sound/vox/thirty.wav b/sound/vox/thirty.wav
deleted file mode 100644
index d7a34d4351a..00000000000
Binary files a/sound/vox/thirty.wav and /dev/null differ
diff --git a/sound/vox/this.wav b/sound/vox/this.wav
deleted file mode 100644
index b8f51ea1511..00000000000
Binary files a/sound/vox/this.wav and /dev/null differ
diff --git a/sound/vox/those.wav b/sound/vox/those.wav
deleted file mode 100644
index ef7db907219..00000000000
Binary files a/sound/vox/those.wav and /dev/null differ
diff --git a/sound/vox/thousand.wav b/sound/vox/thousand.wav
deleted file mode 100644
index b1f9df6edd1..00000000000
Binary files a/sound/vox/thousand.wav and /dev/null differ
diff --git a/sound/vox/threat.wav b/sound/vox/threat.wav
deleted file mode 100644
index 75cefae1879..00000000000
Binary files a/sound/vox/threat.wav and /dev/null differ
diff --git a/sound/vox/three.wav b/sound/vox/three.wav
deleted file mode 100644
index 097504d605b..00000000000
Binary files a/sound/vox/three.wav and /dev/null differ
diff --git a/sound/vox/through.wav b/sound/vox/through.wav
deleted file mode 100644
index 78053bdf90f..00000000000
Binary files a/sound/vox/through.wav and /dev/null differ
diff --git a/sound/vox/time.wav b/sound/vox/time.wav
deleted file mode 100644
index 856529d6a44..00000000000
Binary files a/sound/vox/time.wav and /dev/null differ
diff --git a/sound/vox/to.wav b/sound/vox/to.wav
deleted file mode 100644
index 5189cf2d580..00000000000
Binary files a/sound/vox/to.wav and /dev/null differ
diff --git a/sound/vox/top.wav b/sound/vox/top.wav
deleted file mode 100644
index 0747e8965aa..00000000000
Binary files a/sound/vox/top.wav and /dev/null differ
diff --git a/sound/vox/topside.wav b/sound/vox/topside.wav
deleted file mode 100644
index 6f6f54b973c..00000000000
Binary files a/sound/vox/topside.wav and /dev/null differ
diff --git a/sound/vox/touch.wav b/sound/vox/touch.wav
deleted file mode 100644
index 6712dc18a30..00000000000
Binary files a/sound/vox/touch.wav and /dev/null differ
diff --git a/sound/vox/towards.wav b/sound/vox/towards.wav
deleted file mode 100644
index ff04147f15c..00000000000
Binary files a/sound/vox/towards.wav and /dev/null differ
diff --git a/sound/vox/track.wav b/sound/vox/track.wav
deleted file mode 100644
index 5247acabd09..00000000000
Binary files a/sound/vox/track.wav and /dev/null differ
diff --git a/sound/vox/train.wav b/sound/vox/train.wav
deleted file mode 100644
index ced1a9850cc..00000000000
Binary files a/sound/vox/train.wav and /dev/null differ
diff --git a/sound/vox/transportation.wav b/sound/vox/transportation.wav
deleted file mode 100644
index 302241aeb00..00000000000
Binary files a/sound/vox/transportation.wav and /dev/null differ
diff --git a/sound/vox/truck.wav b/sound/vox/truck.wav
deleted file mode 100644
index 1692a9c7dd5..00000000000
Binary files a/sound/vox/truck.wav and /dev/null differ
diff --git a/sound/vox/tunnel.wav b/sound/vox/tunnel.wav
deleted file mode 100644
index f158042a9d1..00000000000
Binary files a/sound/vox/tunnel.wav and /dev/null differ
diff --git a/sound/vox/turn.wav b/sound/vox/turn.wav
deleted file mode 100644
index 407d2cdbe84..00000000000
Binary files a/sound/vox/turn.wav and /dev/null differ
diff --git a/sound/vox/turret.wav b/sound/vox/turret.wav
deleted file mode 100644
index ec42293ebb6..00000000000
Binary files a/sound/vox/turret.wav and /dev/null differ
diff --git a/sound/vox/twelve.wav b/sound/vox/twelve.wav
deleted file mode 100644
index d9fbcc25580..00000000000
Binary files a/sound/vox/twelve.wav and /dev/null differ
diff --git a/sound/vox/twenty.wav b/sound/vox/twenty.wav
deleted file mode 100644
index e6d7d8092d1..00000000000
Binary files a/sound/vox/twenty.wav and /dev/null differ
diff --git a/sound/vox/two.wav b/sound/vox/two.wav
deleted file mode 100644
index 14f432fd5c8..00000000000
Binary files a/sound/vox/two.wav and /dev/null differ
diff --git a/sound/vox/unauthorized.wav b/sound/vox/unauthorized.wav
deleted file mode 100644
index 7d3236f4913..00000000000
Binary files a/sound/vox/unauthorized.wav and /dev/null differ
diff --git a/sound/vox/under.wav b/sound/vox/under.wav
deleted file mode 100644
index dc30e4711c5..00000000000
Binary files a/sound/vox/under.wav and /dev/null differ
diff --git a/sound/vox/uniform.wav b/sound/vox/uniform.wav
deleted file mode 100644
index 899c7f029af..00000000000
Binary files a/sound/vox/uniform.wav and /dev/null differ
diff --git a/sound/vox/unlocked.wav b/sound/vox/unlocked.wav
deleted file mode 100644
index 0e48489db52..00000000000
Binary files a/sound/vox/unlocked.wav and /dev/null differ
diff --git a/sound/vox/until.wav b/sound/vox/until.wav
deleted file mode 100644
index 68f5ea47e4a..00000000000
Binary files a/sound/vox/until.wav and /dev/null differ
diff --git a/sound/vox/up.wav b/sound/vox/up.wav
deleted file mode 100644
index 18165467021..00000000000
Binary files a/sound/vox/up.wav and /dev/null differ
diff --git a/sound/vox/upper.wav b/sound/vox/upper.wav
deleted file mode 100644
index 8b591566511..00000000000
Binary files a/sound/vox/upper.wav and /dev/null differ
diff --git a/sound/vox/uranium.wav b/sound/vox/uranium.wav
deleted file mode 100644
index 2ab47d60858..00000000000
Binary files a/sound/vox/uranium.wav and /dev/null differ
diff --git a/sound/vox/us.wav b/sound/vox/us.wav
deleted file mode 100644
index 23b56e93576..00000000000
Binary files a/sound/vox/us.wav and /dev/null differ
diff --git a/sound/vox/usa.wav b/sound/vox/usa.wav
deleted file mode 100644
index 591233e6244..00000000000
Binary files a/sound/vox/usa.wav and /dev/null differ
diff --git a/sound/vox/use.wav b/sound/vox/use.wav
deleted file mode 100644
index 35be6177756..00000000000
Binary files a/sound/vox/use.wav and /dev/null differ
diff --git a/sound/vox/used.wav b/sound/vox/used.wav
deleted file mode 100644
index 3385240fd9e..00000000000
Binary files a/sound/vox/used.wav and /dev/null differ
diff --git a/sound/vox/user.wav b/sound/vox/user.wav
deleted file mode 100644
index 91ccb15af68..00000000000
Binary files a/sound/vox/user.wav and /dev/null differ
diff --git a/sound/vox/vacate.wav b/sound/vox/vacate.wav
deleted file mode 100644
index bed5d702e43..00000000000
Binary files a/sound/vox/vacate.wav and /dev/null differ
diff --git a/sound/vox/valid.wav b/sound/vox/valid.wav
deleted file mode 100644
index 40c3f1e4f65..00000000000
Binary files a/sound/vox/valid.wav and /dev/null differ
diff --git a/sound/vox/vapor.wav b/sound/vox/vapor.wav
deleted file mode 100644
index d067f698270..00000000000
Binary files a/sound/vox/vapor.wav and /dev/null differ
diff --git a/sound/vox/vent.wav b/sound/vox/vent.wav
deleted file mode 100644
index b4efa86991b..00000000000
Binary files a/sound/vox/vent.wav and /dev/null differ
diff --git a/sound/vox/ventillation.wav b/sound/vox/ventillation.wav
deleted file mode 100644
index d56679dda12..00000000000
Binary files a/sound/vox/ventillation.wav and /dev/null differ
diff --git a/sound/vox/victor.wav b/sound/vox/victor.wav
deleted file mode 100644
index 8245a2abf4c..00000000000
Binary files a/sound/vox/victor.wav and /dev/null differ
diff --git a/sound/vox/violated.wav b/sound/vox/violated.wav
deleted file mode 100644
index c597d1dfe29..00000000000
Binary files a/sound/vox/violated.wav and /dev/null differ
diff --git a/sound/vox/violation.wav b/sound/vox/violation.wav
deleted file mode 100644
index 98ed5dd0b9b..00000000000
Binary files a/sound/vox/violation.wav and /dev/null differ
diff --git a/sound/vox/voltage.wav b/sound/vox/voltage.wav
deleted file mode 100644
index 140e1dd6a20..00000000000
Binary files a/sound/vox/voltage.wav and /dev/null differ
diff --git a/sound/vox/vox_login.wav b/sound/vox/vox_login.wav
deleted file mode 100644
index 5679acfce81..00000000000
Binary files a/sound/vox/vox_login.wav and /dev/null differ
diff --git a/sound/vox/walk.wav b/sound/vox/walk.wav
deleted file mode 100644
index fd8d85f84d4..00000000000
Binary files a/sound/vox/walk.wav and /dev/null differ
diff --git a/sound/vox/wall.wav b/sound/vox/wall.wav
deleted file mode 100644
index e8e9a5fb4af..00000000000
Binary files a/sound/vox/wall.wav and /dev/null differ
diff --git a/sound/vox/want.wav b/sound/vox/want.wav
deleted file mode 100644
index 3d130ce8fe6..00000000000
Binary files a/sound/vox/want.wav and /dev/null differ
diff --git a/sound/vox/wanted.wav b/sound/vox/wanted.wav
deleted file mode 100644
index a292d2d33b7..00000000000
Binary files a/sound/vox/wanted.wav and /dev/null differ
diff --git a/sound/vox/warm.wav b/sound/vox/warm.wav
deleted file mode 100644
index 518f2905f42..00000000000
Binary files a/sound/vox/warm.wav and /dev/null differ
diff --git a/sound/vox/warn.wav b/sound/vox/warn.wav
deleted file mode 100644
index 75801460052..00000000000
Binary files a/sound/vox/warn.wav and /dev/null differ
diff --git a/sound/vox/warning.wav b/sound/vox/warning.wav
deleted file mode 100644
index 87db6c164b2..00000000000
Binary files a/sound/vox/warning.wav and /dev/null differ
diff --git a/sound/vox/waste.wav b/sound/vox/waste.wav
deleted file mode 100644
index 245c44d6820..00000000000
Binary files a/sound/vox/waste.wav and /dev/null differ
diff --git a/sound/vox/water.wav b/sound/vox/water.wav
deleted file mode 100644
index c29d7acf55c..00000000000
Binary files a/sound/vox/water.wav and /dev/null differ
diff --git a/sound/vox/we.wav b/sound/vox/we.wav
deleted file mode 100644
index d7ba93484d1..00000000000
Binary files a/sound/vox/we.wav and /dev/null differ
diff --git a/sound/vox/weapon.wav b/sound/vox/weapon.wav
deleted file mode 100644
index 3e95e9efc4a..00000000000
Binary files a/sound/vox/weapon.wav and /dev/null differ
diff --git a/sound/vox/west.wav b/sound/vox/west.wav
deleted file mode 100644
index 09f58088c95..00000000000
Binary files a/sound/vox/west.wav and /dev/null differ
diff --git a/sound/vox/whiskey.wav b/sound/vox/whiskey.wav
deleted file mode 100644
index 11ef7b3aa09..00000000000
Binary files a/sound/vox/whiskey.wav and /dev/null differ
diff --git a/sound/vox/white.wav b/sound/vox/white.wav
deleted file mode 100644
index 6d4ec3e138c..00000000000
Binary files a/sound/vox/white.wav and /dev/null differ
diff --git a/sound/vox/wilco.wav b/sound/vox/wilco.wav
deleted file mode 100644
index 862aa8d97d9..00000000000
Binary files a/sound/vox/wilco.wav and /dev/null differ
diff --git a/sound/vox/will.wav b/sound/vox/will.wav
deleted file mode 100644
index 327d81c9d0f..00000000000
Binary files a/sound/vox/will.wav and /dev/null differ
diff --git a/sound/vox/with.wav b/sound/vox/with.wav
deleted file mode 100644
index f1db548cd76..00000000000
Binary files a/sound/vox/with.wav and /dev/null differ
diff --git a/sound/vox/without.wav b/sound/vox/without.wav
deleted file mode 100644
index 7f3096df12b..00000000000
Binary files a/sound/vox/without.wav and /dev/null differ
diff --git a/sound/vox/woop.wav b/sound/vox/woop.wav
deleted file mode 100644
index 62fa99cb3b7..00000000000
Binary files a/sound/vox/woop.wav and /dev/null differ
diff --git a/sound/vox/xeno.wav b/sound/vox/xeno.wav
deleted file mode 100644
index 6b77a20b7a6..00000000000
Binary files a/sound/vox/xeno.wav and /dev/null differ
diff --git a/sound/vox/yankee.wav b/sound/vox/yankee.wav
deleted file mode 100644
index 62bf15a40b3..00000000000
Binary files a/sound/vox/yankee.wav and /dev/null differ
diff --git a/sound/vox/yards.wav b/sound/vox/yards.wav
deleted file mode 100644
index 33c3c4c3e3f..00000000000
Binary files a/sound/vox/yards.wav and /dev/null differ
diff --git a/sound/vox/year.wav b/sound/vox/year.wav
deleted file mode 100644
index 12dca8e86bc..00000000000
Binary files a/sound/vox/year.wav and /dev/null differ
diff --git a/sound/vox/yellow.wav b/sound/vox/yellow.wav
deleted file mode 100644
index bed92f5f9f9..00000000000
Binary files a/sound/vox/yellow.wav and /dev/null differ
diff --git a/sound/vox/yes.wav b/sound/vox/yes.wav
deleted file mode 100644
index 799bb2b775e..00000000000
Binary files a/sound/vox/yes.wav and /dev/null differ
diff --git a/sound/vox/you.wav b/sound/vox/you.wav
deleted file mode 100644
index 7ba9be75a87..00000000000
Binary files a/sound/vox/you.wav and /dev/null differ
diff --git a/sound/vox/your.wav b/sound/vox/your.wav
deleted file mode 100644
index 9e29c2418b1..00000000000
Binary files a/sound/vox/your.wav and /dev/null differ
diff --git a/sound/vox/yourself.wav b/sound/vox/yourself.wav
deleted file mode 100644
index 582c3b7ed6b..00000000000
Binary files a/sound/vox/yourself.wav and /dev/null differ
diff --git a/sound/vox/zero.wav b/sound/vox/zero.wav
deleted file mode 100644
index 9b6c39722d1..00000000000
Binary files a/sound/vox/zero.wav and /dev/null differ
diff --git a/sound/vox/zone.wav b/sound/vox/zone.wav
deleted file mode 100644
index 68f9b8952cb..00000000000
Binary files a/sound/vox/zone.wav and /dev/null differ
diff --git a/sound/vox/zulu.wav b/sound/vox/zulu.wav
deleted file mode 100644
index 32d66052181..00000000000
Binary files a/sound/vox/zulu.wav and /dev/null differ