diff --git a/code/_onclick/hud/ai.dm b/code/_onclick/hud/ai.dm
index 5f8b10fd31..0f392a47da 100644
--- a/code/_onclick/hud/ai.dm
+++ b/code/_onclick/hud/ai.dm
@@ -84,7 +84,7 @@
if(..())
return
var/mob/living/silicon/ai/AI = usr
- AI.announcement()
+ AI.ai_announcement()
/atom/movable/screen/ai/call_shuttle
name = "Call Emergency Shuttle"
diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm
index fd2d98b67f..580ea8f2ee 100644
--- a/code/modules/client/client_procs.dm
+++ b/code/modules/client/client_procs.dm
@@ -979,10 +979,11 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
addtimer(CALLBACK(SSassets.transport, TYPE_PROC_REF(/datum/asset_transport, send_assets_slow), src, SSassets.transport.preload), 5 SECONDS)
#if (PRELOAD_RSC == 0)
- for (var/name in GLOB.vox_sounds)
- var/file = GLOB.vox_sounds[name]
- Export("##action=load_rsc", file)
- stoplag()
+ for (var/type in GLOB.vox_types)
+ for(var/word in GLOB.vox_types[type])
+ var/file = GLOB.vox_types[type][word]
+ Export("##action=load_rsc", file)
+ stoplag()
#endif
diff --git a/code/modules/integrated_electronics/subtypes/output.dm b/code/modules/integrated_electronics/subtypes/output.dm
index 512b4f3dd2..98137ee76c 100644
--- a/code/modules/integrated_electronics/subtypes/output.dm
+++ b/code/modules/integrated_electronics/subtypes/output.dm
@@ -226,15 +226,28 @@
spawn_flags = IC_SPAWN_RESEARCH
/obj/item/integrated_circuit/output/sound/vox
- name = "ai vox sound circuit"
+ name = "Female ai vox sound circuit"
desc = "Takes a sound name as an input, and will play said sound when pulsed. This circuit is often found in AI announcement systems."
spawn_flags = IC_SPAWN_RESEARCH
+ var/voice_type = "Female"
/obj/item/integrated_circuit/output/sound/vox/Initialize(mapload)
- .= ..()
- sounds = GLOB.vox_sounds
+ sounds = GLOB.vox_types[voice_type]
+ . = ..()
extended_desc = "The first input pin determines which sound is used. It uses the AI Vox Broadcast word list. So either experiment to find words that work, or ask the AI to help in figuring them out. The second pin determines the volume of sound that is played, and the third determines if the frequency of the sound will vary with each activation."
+/obj/item/integrated_circuit/output/sound/vox/male
+ name = "Male ai vox sound circuit"
+ desc = "Takes a sound name as an input, and will play said sound when pulsed. This circuit is often found in AI announcement systems."
+ spawn_flags = IC_SPAWN_RESEARCH
+ voice_type = "Male"
+
+/obj/item/integrated_circuit/output/sound/vox/military
+ name = "Military ai vox sound circuit"
+ desc = "Takes a sound name as an input, and will play said sound when pulsed. This circuit is often found in AI announcement systems."
+ spawn_flags = IC_SPAWN_RESEARCH
+ voice_type = "Military"
+
/obj/item/integrated_circuit/output/text_to_speech
name = "text-to-speech circuit"
desc = "Takes any string as an input and will make the device say the string when pulsed."
diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm
index 45a49e01b4..96fdbb0ffb 100644
--- a/code/modules/mob/living/silicon/ai/ai.dm
+++ b/code/modules/mob/living/silicon/ai/ai.dm
@@ -104,6 +104,10 @@
// TODO: Currently unused, needs port from TG.
/// Station alert datum for showing alerts UI
var/datum/station_alert/alert_control
+ /// Announcement UI
+ var/datum/ai_announcement/ai_announcement
+ /// Lists possible spoken words for announcements
+ var/datum/announcement_help/announcement_help
///remember AI's last location
var/atom/lastloc
interaction_range = INFINITY
@@ -204,6 +208,8 @@
QDEL_NULL(doomsday_device)
QDEL_NULL(robot_control)
// QDEL_NULL(alert_control)
+ QDEL_NULL(ai_announcement)
+ QDEL_NULL(announcement_help)
QDEL_NULL(aiMulti)
QDEL_NULL(aiPDA)
malfhack = null
diff --git a/code/modules/mob/living/silicon/ai/ai_announcement.dm b/code/modules/mob/living/silicon/ai/ai_announcement.dm
new file mode 100644
index 0000000000..4165dec6bd
--- /dev/null
+++ b/code/modules/mob/living/silicon/ai/ai_announcement.dm
@@ -0,0 +1,59 @@
+#ifdef AI_VOX
+/mob/living/silicon/ai/verb/ai_announcement()
+ set name = "Vox Announcement"
+ set desc = "Make an audible announcement!"
+ set category = "AI Commands"
+
+ if(incapacitated())
+ return
+
+ if(!ai_announcement)
+ ai_announcement = new(src)
+
+ ai_announcement.ui_interact(src)
+
+/datum/ai_announcement
+ var/mob/living/silicon/ai/owner
+
+/datum/ai_announcement/New(mob/living/silicon/ai/new_owner)
+ if(!istype(new_owner))
+ qdel(src)
+ owner = new_owner
+
+/datum/ai_announcement/ui_status(mob/living/silicon/ai/user)
+ if(owner == user && !owner.incapacitated())
+ return ..()
+ return UI_CLOSE
+
+/datum/ai_announcement/ui_state(mob/user)
+ return GLOB.always_state
+
+/datum/ai_announcement/ui_interact(mob/user, datum/tgui/ui)
+ ui = SStgui.try_update_ui(user, src, ui)
+ if(!ui)
+ ui = new(user, src, "AIAnnouncement")
+ ui.open()
+
+/datum/ai_announcement/ui_data(mob/user)
+ var/list/data = ..()
+ data["last_announcement"] = owner.last_announcement
+ return data
+
+/datum/ai_announcement/ui_static_data(mob/user)
+ var/list/data = ..()
+ data["vox_types"] = GLOB.vox_types
+ return data
+
+/datum/ai_announcement/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ switch(action)
+ if("announce")
+ var/vox_type = params["vox_type"]
+ if(!vox_type)
+ return
+ var/to_speak = params["to_speak"]
+ if(!to_speak)
+ return
+ owner.announcement(vox_type, to_speak)
+ ui.close()
+#endif
diff --git a/code/modules/mob/living/silicon/ai/announcement_help.dm b/code/modules/mob/living/silicon/ai/announcement_help.dm
new file mode 100644
index 0000000000..f22b3ce4cb
--- /dev/null
+++ b/code/modules/mob/living/silicon/ai/announcement_help.dm
@@ -0,0 +1,54 @@
+#ifdef AI_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"
+
+ if(incapacitated())
+ return
+
+ if(!announcement_help)
+ announcement_help = new(src)
+
+ announcement_help.ui_interact(src)
+
+/datum/announcement_help
+ var/mob/living/silicon/ai/owner
+
+/datum/announcement_help/New(mob/living/silicon/ai/new_owner)
+ if(!istype(new_owner))
+ qdel(src)
+ owner = new_owner
+
+/datum/announcement_help/ui_status(mob/living/silicon/ai/user)
+ if(owner == user && !owner.incapacitated())
+ return ..()
+ return UI_CLOSE
+
+/datum/announcement_help/ui_state(mob/user)
+ return GLOB.always_state
+
+/datum/announcement_help/ui_interact(mob/user, datum/tgui/ui)
+ ui = SStgui.try_update_ui(user, src, ui)
+ if(!ui)
+ ui = new(user, src, "AnnouncementHelp")
+ ui.open()
+
+/datum/announcement_help/ui_static_data(mob/user)
+ var/list/data = ..()
+ data["vox_types"] = GLOB.vox_types
+ return data
+
+/datum/announcement_help/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ switch(action)
+ if("say_word")
+ var/vox_type = params["vox_type"]
+ if(!vox_type)
+ return
+ var/to_speak = params["to_speak"]
+ if(!to_speak)
+ return
+ play_vox_word(to_speak, null, owner, vox_type)
+#endif
diff --git a/code/modules/mob/living/silicon/ai/say.dm b/code/modules/mob/living/silicon/ai/say.dm
index 364fbbadf7..2a05266587 100644
--- a/code/modules/mob/living/silicon/ai/say.dm
+++ b/code/modules/mob/living/silicon/ai/say.dm
@@ -79,59 +79,23 @@
// Make sure that the code compiles with AI_VOX undefined
#ifdef AI_VOX
-#define VOX_DELAY 600
-/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"
-
- if(incapacitated())
- return
-
- var/dat = {"
- WARNING: Misuse of the announcement system will get you job banned.
- 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'.
- Numbers are in word format, e.g. eight, sixty, etc
- Sound effects begin with an 's' before the actual word, e.g. scensor
- Use Ctrl+F to see if a word exists in the list.
- "}
-
- var/index = 0
- for(var/word in GLOB.vox_sounds)
- index++
- dat += "[capitalize(word)] "
- if(index != GLOB.vox_sounds.len)
- dat += " / "
-
- var/datum/browser/popup = new(src, "announce_help", "Announcement Help", 500, 400)
- popup.set_content(dat)
- popup.open()
-
-
-/mob/living/silicon/ai/proc/announcement()
+#define VOX_DELAY 1 MINUTES
+/mob/living/silicon/ai/proc/announcement(voxType = "Female", message)
var/static/announcing_vox = 0 // Stores the time of the last announcement
if(announcing_vox > world.time)
- to_chat(src, "Please wait [DisplayTimeText(announcing_vox - world.time)]. ")
+ to_chat(src, span_notice("Please wait [DisplayTimeText(announcing_vox - world.time)]."))
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
- var/voxType = input(src, "Which VOX to use?", "VOX-type") in list("male", "female", "military")
-
- if(!message || announcing_vox > world.time)
+ if(!message || !GLOB.vox_types[voxType])
return
if(incapacitated())
return
if(control_disabled)
- to_chat(src, "Wireless interface disabled, unable to interact with announcement PA. ")
+ to_chat(src, span_warning("Wireless interface disabled, unable to interact with announcement PA."))
return
var/list/words = splittext(trim(message), " ")
@@ -145,15 +109,11 @@
if(!word)
words -= word
continue
- if(!GLOB.vox_sounds[word] && voxType == "female")
- incorrect_words += word
- if(!GLOB.vox_sounds_male[word] && voxType == "male")
- incorrect_words += word
- if(!GLOB.vox_sounds_military[word] && voxType == "military")
+ if(!GLOB.vox_types[voxType][word])
incorrect_words += word
if(incorrect_words.len)
- to_chat(src, "These words are not available on the announcement system: [english_list(incorrect_words)]. ")
+ to_chat(src, span_notice("These words are not available on the announcement system: [english_list(incorrect_words)]."))
return
announcing_vox = world.time + VOX_DELAY
@@ -164,20 +124,12 @@
play_vox_word(word, src.z, null, voxType)
-/proc/play_vox_word(word, z_level, mob/only_listener, voxType = "female")
+/proc/play_vox_word(word, z_level, mob/only_listener, voxType = "Female")
word = lowertext(word)
- if( (GLOB.vox_sounds[word] && voxType == "female") || (GLOB.vox_sounds_male[word] && voxType == "male") || (GLOB.vox_sounds_military[word] && voxType == "military"))
-
- var/sound_file
-
- if(voxType == "female")
- sound_file = GLOB.vox_sounds[word]
- else if (voxType == "military")
- sound_file = GLOB.vox_sounds_military[word]
- else
- sound_file = GLOB.vox_sounds_male[word]
+ var/sound_file = LAZYACCESSASSOC(GLOB.vox_types, voxType, word)
+ if(sound_file)
var/sound/voice = sound(sound_file, wait = 1, channel = CHANNEL_VOX)
voice.status = SOUND_STREAM
diff --git a/code/modules/mob/living/silicon/ai/vox_sounds.dm b/code/modules/mob/living/silicon/ai/vox_sounds.dm
index 057561562b..31b4f2e1d8 100644
--- a/code/modules/mob/living/silicon/ai/vox_sounds.dm
+++ b/code/modules/mob/living/silicon/ai/vox_sounds.dm
@@ -5,1605 +5,1908 @@
// Regex for collecting a list of ogg files
// (([a-zA-Z,.]+)\.ogg)
-// For vim
-// :%s/\(\(.*\)\.ogg\)/"\2" = 'sound\/vox_fem\/\1',/g
-GLOBAL_LIST_INIT(vox_sounds, list("abduction" = 'sound/vox_fem/abduction.ogg',
-"abortions" = 'sound/vox_fem/abortions.ogg',
-"above" = 'sound/vox_fem/above.ogg',
-"abstain" = 'sound/vox_fem/abstain.ogg',
-"accelerating" = 'sound/vox_fem/accelerating.ogg',
-"accelerator" = 'sound/vox_fem/accelerator.ogg',
-"accepted" = 'sound/vox_fem/accepted.ogg',
-"access" = 'sound/vox_fem/access.ogg',
-"acknowledged" = 'sound/vox_fem/acknowledged.ogg',
-"acknowledge" = 'sound/vox_fem/acknowledge.ogg',
-"acquired" = 'sound/vox_fem/acquired.ogg',
-"acquisition" = 'sound/vox_fem/acquisition.ogg',
-"across" = 'sound/vox_fem/across.ogg',
-"activated" = 'sound/vox_fem/activated.ogg',
-"activate" = 'sound/vox_fem/activate.ogg',
-"activity" = 'sound/vox_fem/activity.ogg',
-"adios" = 'sound/vox_fem/adios.ogg',
-"administration" = 'sound/vox_fem/administration.ogg',
-"advanced" = 'sound/vox_fem/advanced.ogg',
-"advised" = 'sound/vox_fem/advised.ogg',
-"after" = 'sound/vox_fem/after.ogg',
-"aft" = 'sound/vox_fem/aft.ogg',
-"agent" = 'sound/vox_fem/agent.ogg',
-"ai" = 'sound/vox_fem/ai.ogg',
-"airlock" = 'sound/vox_fem/airlock.ogg',
-"air" = 'sound/vox_fem/air.ogg',
-"alarm" = 'sound/vox_fem/alarm.ogg',
-"alert" = 'sound/vox_fem/alert.ogg',
-"alien" = 'sound/vox_fem/alien.ogg',
-"aligned" = 'sound/vox_fem/aligned.ogg',
-"all" = 'sound/vox_fem/all.ogg',
-"alpha" = 'sound/vox_fem/alpha.ogg',
-"also" = 'sound/vox_fem/also.ogg',
-"amigo" = 'sound/vox_fem/amigo.ogg',
-"ammunition" = 'sound/vox_fem/ammunition.ogg',
-"am" = 'sound/vox_fem/am.ogg',
-"and" = 'sound/vox_fem/and.ogg',
-"animal" = 'sound/vox_fem/animal.ogg',
-"announcement" = 'sound/vox_fem/announcement.ogg',
-"an" = 'sound/vox_fem/an.ogg',
-"anomalous" = 'sound/vox_fem/anomalous.ogg',
-"answer" = 'sound/vox_fem/answer.ogg',
-"antenna" = 'sound/vox_fem/antenna.ogg',
-"any" = 'sound/vox_fem/any.ogg',
-"a" = 'sound/vox_fem/a.ogg',
-"apc" = 'sound/vox_fem/apc.ogg',
-"apprehend" = 'sound/vox_fem/apprehend.ogg',
-"approach" = 'sound/vox_fem/approach.ogg',
-"area" = 'sound/vox_fem/area.ogg',
-"are" = 'sound/vox_fem/are.ogg',
-"armed" = 'sound/vox_fem/armed.ogg',
-"arm" = 'sound/vox_fem/arm.ogg',
-"armor" = 'sound/vox_fem/armor.ogg',
-"armory" = 'sound/vox_fem/armory.ogg',
-"array" = 'sound/vox_fem/array.ogg',
-"arrest" = 'sound/vox_fem/arrest.ogg',
-"asimov" = 'sound/vox_fem/asimov.ogg',
-"asshole" = 'sound/vox_fem/asshole.ogg',
-"assholes" = 'sound/vox_fem/assholes.ogg',
-"assistance" = 'sound/vox_fem/assistance.ogg',
-"assistant" = 'sound/vox_fem/assistant.ogg',
-"ass" = 'sound/vox_fem/ass.ogg',
-"atmosphere" = 'sound/vox_fem/atmosphere.ogg',
-"atmospheric" = 'sound/vox_fem/atmospheric.ogg',
-"atmospherics" = 'sound/vox_fem/atmospherics.ogg',
-"at" = 'sound/vox_fem/at.ogg',
-"atomic" = 'sound/vox_fem/atomic.ogg',
-"attention" = 'sound/vox_fem/attention.ogg',
-"authentication" = 'sound/vox_fem/authentication.ogg',
-"authorized" = 'sound/vox_fem/authorized.ogg',
-"authorize" = 'sound/vox_fem/authorize.ogg',
-"automatic" = 'sound/vox_fem/automatic.ogg',
-"away" = 'sound/vox_fem/away.ogg',
-"awful" = 'sound/vox_fem/awful.ogg',
-"backman" = 'sound/vox_fem/backman.ogg',
-"back" = 'sound/vox_fem/back.ogg',
-"bad" = 'sound/vox_fem/bad.ogg',
-"bag" = 'sound/vox_fem/bag.ogg',
-"bailey" = 'sound/vox_fem/bailey.ogg',
-"bar" = 'sound/vox_fem/bar.ogg',
-"barracks" = 'sound/vox_fem/barracks.ogg',
-"bartender" = 'sound/vox_fem/bartender.ogg',
-"base" = 'sound/vox_fem/base.ogg',
-"bay" = 'sound/vox_fem/bay.ogg',
-"beam" = 'sound/vox_fem/beam.ogg',
-"been" = 'sound/vox_fem/been.ogg',
-"beep" = 'sound/vox_fem/beep.ogg',
-"before" = 'sound/vox_fem/before.ogg',
-"below" = 'sound/vox_fem/below.ogg',
-"be" = 'sound/vox_fem/be.ogg',
-"beside" = 'sound/vox_fem/beside.ogg',
-"beware" = 'sound/vox_fem/beware.ogg',
-"beyond" = 'sound/vox_fem/beyond.ogg',
-"biohazard" = 'sound/vox_fem/biohazard.ogg',
-"biological" = 'sound/vox_fem/biological.ogg',
-"birdwell" = 'sound/vox_fem/birdwell.ogg',
-"bitches" = 'sound/vox_fem/bitches.ogg',
-"bitch" = 'sound/vox_fem/bitch.ogg',
-"bitcoin" = 'sound/vox_fem/bitcoin.ogg',
-"black" = 'sound/vox_fem/black.ogg',
-"blast" = 'sound/vox_fem/blast.ogg',
-"bleed" = 'sound/vox_fem/bleed.ogg',
-"blob" = 'sound/vox_fem/blob.ogg',
-"blocked" = 'sound/vox_fem/blocked.ogg',
-"blood" = 'sound/vox_fem/blood.ogg',
-"bloop" = 'sound/vox_fem/bloop.ogg',
-"blue" = 'sound/vox_fem/blue.ogg',
-"b" = 'sound/vox_fem/b.ogg',
-"bomb" = 'sound/vox_fem/bomb.ogg',
-"bone" = 'sound/vox_fem/bone.ogg',
-"botanist" = 'sound/vox_fem/botanist.ogg',
-"botany" = 'sound/vox_fem/botany.ogg',
-"bottom" = 'sound/vox_fem/bottom.ogg',
-"bravo" = 'sound/vox_fem/bravo.ogg',
-"breached" = 'sound/vox_fem/breached.ogg',
-"breach" = 'sound/vox_fem/breach.ogg',
-"break" = 'sound/vox_fem/break.ogg',
-"bridge" = 'sound/vox_fem/bridge.ogg',
-"brig" = 'sound/vox_fem/brig.ogg',
-"bust" = 'sound/vox_fem/bust.ogg',
-"but" = 'sound/vox_fem/but.ogg',
-"button" = 'sound/vox_fem/button.ogg',
-"bypass" = 'sound/vox_fem/bypass.ogg',
-"cable" = 'sound/vox_fem/cable.ogg',
-"called" = 'sound/vox_fem/called.ogg',
-"call" = 'sound/vox_fem/call.ogg',
-"canal" = 'sound/vox_fem/canal.ogg',
-"canister" = 'sound/vox_fem/canister.ogg',
-"cap" = 'sound/vox_fem/cap.ogg',
-"captain" = 'sound/vox_fem/captain.ogg',
-"capture" = 'sound/vox_fem/capture.ogg',
-"carbon" = 'sound/vox_fem/carbon.ogg',
-"cargo" = 'sound/vox_fem/cargo.ogg',
-"cat" = 'sound/vox_fem/cat.ogg',
-"cease" = 'sound/vox_fem/cease.ogg',
-"ceiling" = 'sound/vox_fem/ceiling.ogg',
-"celsius" = 'sound/vox_fem/celsius.ogg',
-"centcom" = 'sound/vox_fem/centcom.ogg',
-"center" = 'sound/vox_fem/center.ogg',
-"centi" = 'sound/vox_fem/centi.ogg',
-"central" = 'sound/vox_fem/central.ogg',
-"ce" = 'sound/vox_fem/ce.ogg',
-"challenge" = 'sound/vox_fem/challenge.ogg',
-"chamber" = 'sound/vox_fem/chamber.ogg',
-"changed" = 'sound/vox_fem/changed.ogg',
-"changeling" = 'sound/vox_fem/changeling.ogg',
-"change" = 'sound/vox_fem/change.ogg',
-"chapel" = 'sound/vox_fem/chapel.ogg',
-"chaplain" = 'sound/vox_fem/chaplain.ogg',
-"charlie" = 'sound/vox_fem/charlie.ogg',
-"check" = 'sound/vox_fem/check.ogg',
-"checkpoint" = 'sound/vox_fem/checkpoint.ogg',
-"chemical" = 'sound/vox_fem/chemical.ogg',
-"chemist" = 'sound/vox_fem/chemist.ogg',
-"chief" = 'sound/vox_fem/chief.ogg',
-"christ" = 'sound/vox_fem/christ.ogg',
-"chuckle" = 'sound/vox_fem/chuckle.ogg',
-"circuit" = 'sound/vox_fem/circuit.ogg',
-"cleanup" = 'sound/vox_fem/cleanup.ogg',
-"clearance" = 'sound/vox_fem/clearance.ogg',
-"clear" = 'sound/vox_fem/clear.ogg',
-"clockwork" = 'sound/vox_fem/clockwork.ogg',
-"close" = 'sound/vox_fem/close.ogg',
-"clowning" = 'sound/vox_fem/clowning.ogg',
-"clown" = 'sound/vox_fem/clown.ogg',
-"cmo" = 'sound/vox_fem/cmo.ogg',
-"coded" = 'sound/vox_fem/coded.ogg',
-"code" = 'sound/vox_fem/code.ogg',
-"c" = 'sound/vox_fem/c.ogg',
-"cold" = 'sound/vox_fem/cold.ogg',
-"collider" = 'sound/vox_fem/collider.ogg',
-"come" = 'sound/vox_fem/come.ogg',
-"command" = 'sound/vox_fem/command.ogg',
-"communication" = 'sound/vox_fem/communication.ogg',
-"complex" = 'sound/vox_fem/complex.ogg',
-"comply" = 'sound/vox_fem/comply.ogg',
-"computer" = 'sound/vox_fem/computer.ogg',
-"condition" = 'sound/vox_fem/condition.ogg',
-"condom" = 'sound/vox_fem/condom.ogg',
-"confirmed" = 'sound/vox_fem/confirmed.ogg',
-"connor" = 'sound/vox_fem/connor.ogg',
-"console2" = 'sound/vox_fem/console2.ogg',
-"console" = 'sound/vox_fem/console.ogg',
-"construct" = 'sound/vox_fem/construct.ogg',
-"containment" = 'sound/vox_fem/containment.ogg',
-"contamination" = 'sound/vox_fem/contamination.ogg',
-"contraband" = 'sound/vox_fem/contraband.ogg',
-"control" = 'sound/vox_fem/control.ogg',
-"cook" = 'sound/vox_fem/cook.ogg',
-"coolant" = 'sound/vox_fem/coolant.ogg',
-"coomer" = 'sound/vox_fem/coomer.ogg',
-"core" = 'sound/vox_fem/core.ogg',
-"corgi" = 'sound/vox_fem/corgi.ogg',
-"corporation" = 'sound/vox_fem/corporation.ogg',
-"correct" = 'sound/vox_fem/correct.ogg',
-"corridor" = 'sound/vox_fem/corridor.ogg',
-"corridors" = 'sound/vox_fem/corridors.ogg',
-"coward" = 'sound/vox_fem/coward.ogg',
-"cowards" = 'sound/vox_fem/cowards.ogg',
-"crate" = 'sound/vox_fem/crate.ogg',
-"created" = 'sound/vox_fem/created.ogg',
-"creature" = 'sound/vox_fem/creature.ogg',
-"crew" = 'sound/vox_fem/crew.ogg',
-"critical" = 'sound/vox_fem/critical.ogg',
-"cross" = 'sound/vox_fem/cross.ogg',
-"cryogenic" = 'sound/vox_fem/cryogenic.ogg',
-"crystal" = 'sound/vox_fem/crystal.ogg',
-"cultist" = 'sound/vox_fem/cultist.ogg',
-"cult" = 'sound/vox_fem/cult.ogg',
-"cunt" = 'sound/vox_fem/cunt.ogg',
-"curator" = 'sound/vox_fem/curator.ogg',
-"cyborg" = 'sound/vox_fem/cyborg.ogg',
-"cyborgs" = 'sound/vox_fem/cyborgs.ogg',
-"damaged" = 'sound/vox_fem/damaged.ogg',
-"damage" = 'sound/vox_fem/damage.ogg',
-"danger" = 'sound/vox_fem/danger.ogg',
-"dangerous" = 'sound/vox_fem/dangerous.ogg',
-"day" = 'sound/vox_fem/day.ogg',
-"deactivated" = 'sound/vox_fem/deactivated.ogg',
-"dead" = 'sound/vox_fem/dead.ogg',
-"death" = 'sound/vox_fem/death.ogg',
-"decompression" = 'sound/vox_fem/decompression.ogg',
-"decontamination" = 'sound/vox_fem/decontamination.ogg',
-"deeoo" = 'sound/vox_fem/deeoo.ogg',
-"defense" = 'sound/vox_fem/defense.ogg',
-"degrees" = 'sound/vox_fem/degrees.ogg',
-"delta" = 'sound/vox_fem/delta.ogg',
-"demon" = 'sound/vox_fem/demon.ogg',
-"denied" = 'sound/vox_fem/denied.ogg',
-"departures" = 'sound/vox_fem/departures.ogg',
-"deployed" = 'sound/vox_fem/deployed.ogg',
-"deploy" = 'sound/vox_fem/deploy.ogg',
-"desire" = 'sound/vox_fem/desire.ogg',
-"desist" = 'sound/vox_fem/desist.ogg',
-"destroyed" = 'sound/vox_fem/destroyed.ogg',
-"destroy" = 'sound/vox_fem/destroy.ogg',
-"destruction" = 'sound/vox_fem/destruction.ogg',
-"detain" = 'sound/vox_fem/detain.ogg',
-"detected" = 'sound/vox_fem/detected.ogg',
-"detective" = 'sound/vox_fem/detective.ogg',
-"detonation" = 'sound/vox_fem/detonation.ogg',
-"device" = 'sound/vox_fem/device.ogg',
-"devil" = 'sound/vox_fem/devil.ogg',
-"did" = 'sound/vox_fem/did.ogg',
-"die" = 'sound/vox_fem/die.ogg',
-"dimensional" = 'sound/vox_fem/dimensional.ogg',
-"dioxide" = 'sound/vox_fem/dioxide.ogg',
-"director" = 'sound/vox_fem/director.ogg',
-"dirt" = 'sound/vox_fem/dirt.ogg',
-"disabled" = 'sound/vox_fem/disabled.ogg',
-"disease" = 'sound/vox_fem/disease.ogg',
-"disengaged" = 'sound/vox_fem/disengaged.ogg',
-"dish" = 'sound/vox_fem/dish.ogg',
-"disk" = 'sound/vox_fem/disk.ogg',
-"disposal" = 'sound/vox_fem/disposal.ogg',
-"distance" = 'sound/vox_fem/distance.ogg',
-"distortion" = 'sound/vox_fem/distortion.ogg',
-"doctor" = 'sound/vox_fem/doctor.ogg',
-"d" = 'sound/vox_fem/d.ogg',
-"dog" = 'sound/vox_fem/dog.ogg',
-"do" = 'sound/vox_fem/do.ogg',
-"doomsday" = 'sound/vox_fem/doomsday.ogg',
-"doop" = 'sound/vox_fem/doop.ogg',
-"door" = 'sound/vox_fem/door.ogg',
-"dormitory" = 'sound/vox_fem/dormitory.ogg',
-"dot" = 'sound/vox_fem/dot.ogg',
-"down" = 'sound/vox_fem/down.ogg',
-"drone" = 'sound/vox_fem/drone.ogg',
-"dual" = 'sound/vox_fem/dual.ogg',
-"duct" = 'sound/vox_fem/duct.ogg',
-"east" = 'sound/vox_fem/east.ogg',
-"echo" = 'sound/vox_fem/echo.ogg',
-"ed" = 'sound/vox_fem/ed.ogg',
-"effect" = 'sound/vox_fem/effect.ogg',
-"egress" = 'sound/vox_fem/egress.ogg',
-"eighteen" = 'sound/vox_fem/eighteen.ogg',
-"eight" = 'sound/vox_fem/eight.ogg',
-"eighty" = 'sound/vox_fem/eighty.ogg',
-"electric" = 'sound/vox_fem/electric.ogg',
-"electromagnetic" = 'sound/vox_fem/electromagnetic.ogg',
-"elevator" = 'sound/vox_fem/elevator.ogg',
-"eleven" = 'sound/vox_fem/eleven.ogg',
-"eliminate" = 'sound/vox_fem/eliminate.ogg',
-"emergency" = 'sound/vox_fem/emergency.ogg',
-"enabled" = 'sound/vox_fem/enabled.ogg',
-"energy" = 'sound/vox_fem/energy.ogg',
-"engaged" = 'sound/vox_fem/engaged.ogg',
-"engage" = 'sound/vox_fem/engage.ogg',
-"engineering" = 'sound/vox_fem/engineering.ogg',
-"engineer" = 'sound/vox_fem/engineer.ogg',
-"engine" = 'sound/vox_fem/engine.ogg',
-"enter" = 'sound/vox_fem/enter.ogg',
-"entity" = 'sound/vox_fem/entity.ogg',
-"entry" = 'sound/vox_fem/entry.ogg',
-"environment" = 'sound/vox_fem/environment.ogg',
-"e" = 'sound/vox_fem/e.ogg',
-"epic" = 'sound/vox_fem/epic.ogg',
-"equipment" = 'sound/vox_fem/equipment.ogg',
-"error" = 'sound/vox_fem/error.ogg',
-"escape" = 'sound/vox_fem/escape.ogg',
-"evacuate" = 'sound/vox_fem/evacuate.ogg',
-"eva" = 'sound/vox_fem/eva.ogg',
-"exchange" = 'sound/vox_fem/exchange.ogg',
-"exit" = 'sound/vox_fem/exit.ogg',
-"expect" = 'sound/vox_fem/expect.ogg',
-"experimental" = 'sound/vox_fem/experimental.ogg',
-"experiment" = 'sound/vox_fem/experiment.ogg',
-"explode" = 'sound/vox_fem/explode.ogg',
-"explosion" = 'sound/vox_fem/explosion.ogg',
-"explosive" = 'sound/vox_fem/explosive.ogg',
-"exposure" = 'sound/vox_fem/exposure.ogg',
-"exterminate" = 'sound/vox_fem/exterminate.ogg',
-"extinguisher" = 'sound/vox_fem/extinguisher.ogg',
-"extinguish" = 'sound/vox_fem/extinguish.ogg',
-"extreme" = 'sound/vox_fem/extreme.ogg',
-"facility" = 'sound/vox_fem/facility.ogg',
-"factory" = 'sound/vox_fem/factory.ogg',
-"fahrenheit" = 'sound/vox_fem/fahrenheit.ogg',
-"failed" = 'sound/vox_fem/failed.ogg',
-"failure" = 'sound/vox_fem/failure.ogg',
-"false" = 'sound/vox_fem/false.ogg',
-"farthest" = 'sound/vox_fem/farthest.ogg',
-"fast" = 'sound/vox_fem/fast.ogg',
-"fauna" = 'sound/vox_fem/fauna.ogg',
-"feet" = 'sound/vox_fem/feet.ogg',
-"field" = 'sound/vox_fem/field.ogg',
-"fifteen" = 'sound/vox_fem/fifteen.ogg',
-"fifth" = 'sound/vox_fem/fifth.ogg',
-"fifty" = 'sound/vox_fem/fifty.ogg',
-"final" = 'sound/vox_fem/final.ogg',
-"fine" = 'sound/vox_fem/fine.ogg',
-"fire" = 'sound/vox_fem/fire.ogg',
-"first" = 'sound/vox_fem/first.ogg',
-"five" = 'sound/vox_fem/five.ogg',
-"fix" = 'sound/vox_fem/fix.ogg',
-"flooding" = 'sound/vox_fem/flooding.ogg',
-"floor" = 'sound/vox_fem/floor.ogg',
-"flyman" = 'sound/vox_fem/flyman.ogg',
-"f" = 'sound/vox_fem/f.ogg',
-"fool" = 'sound/vox_fem/fool.ogg',
-"forbidden" = 'sound/vox_fem/forbidden.ogg',
-"force" = 'sound/vox_fem/force.ogg',
-"fore" = 'sound/vox_fem/fore.ogg',
-"formed" = 'sound/vox_fem/formed.ogg',
-"form" = 'sound/vox_fem/form.ogg',
-"forms" = 'sound/vox_fem/forms.ogg',
-"for" = 'sound/vox_fem/for.ogg',
-"found" = 'sound/vox_fem/found.ogg',
-"four" = 'sound/vox_fem/four.ogg',
-"fourteen" = 'sound/vox_fem/fourteen.ogg',
-"fourth" = 'sound/vox_fem/fourth.ogg',
-"fourty" = 'sound/vox_fem/fourty.ogg',
-"foxtrot" = 'sound/vox_fem/foxtrot.ogg',
-"freeman" = 'sound/vox_fem/freeman.ogg',
-"free" = 'sound/vox_fem/free.ogg',
-"freezer" = 'sound/vox_fem/freezer.ogg',
-"freezing" = 'sound/vox_fem/freezing.ogg',
-"from" = 'sound/vox_fem/from.ogg',
-"front" = 'sound/vox_fem/front.ogg',
-"fucking" = 'sound/vox_fem/fucking.ogg',
-"fuck" = 'sound/vox_fem/fuck.ogg',
-"fucks" = 'sound/vox_fem/fucks.ogg',
-"fuel" = 'sound/vox_fem/fuel.ogg',
-"gas" = 'sound/vox_fem/gas.ogg',
-"generator" = 'sound/vox_fem/generator.ogg',
-"geneticist" = 'sound/vox_fem/geneticist.ogg',
-"get" = 'sound/vox_fem/get.ogg',
-"glory" = 'sound/vox_fem/glory.ogg',
-"god" = 'sound/vox_fem/god.ogg',
-"g" = 'sound/vox_fem/g.ogg',
-"going" = 'sound/vox_fem/going.ogg',
-"golem" = 'sound/vox_fem/golem.ogg',
-"goodbye" = 'sound/vox_fem/goodbye.ogg',
-"good" = 'sound/vox_fem/good.ogg',
-"go" = 'sound/vox_fem/go.ogg',
-"gordon" = 'sound/vox_fem/gordon.ogg',
-"got" = 'sound/vox_fem/got.ogg',
-"government" = 'sound/vox_fem/government.ogg',
-"granted" = 'sound/vox_fem/granted.ogg',
-"gravity" = 'sound/vox_fem/gravity.ogg',
-"gray" = 'sound/vox_fem/gray.ogg',
-"great" = 'sound/vox_fem/great.ogg',
-"green" = 'sound/vox_fem/green.ogg',
-"grenade" = 'sound/vox_fem/grenade.ogg',
-"guard" = 'sound/vox_fem/guard.ogg',
-"gulf" = 'sound/vox_fem/gulf.ogg',
-"gun" = 'sound/vox_fem/gun.ogg',
-"guthrie" = 'sound/vox_fem/guthrie.ogg',
-"hacker" = 'sound/vox_fem/hacker.ogg',
-"hackers" = 'sound/vox_fem/hackers.ogg',
-"hall" = 'sound/vox_fem/hall.ogg',
-"hallway" = 'sound/vox_fem/hallway.ogg',
-"handling" = 'sound/vox_fem/handling.ogg',
-"hangar" = 'sound/vox_fem/hangar.ogg',
-"harmful" = 'sound/vox_fem/harmful.ogg',
-"harm" = 'sound/vox_fem/harm.ogg',
-"has" = 'sound/vox_fem/has.ogg',
-"have" = 'sound/vox_fem/have.ogg',
-"hazard" = 'sound/vox_fem/hazard.ogg',
-"head" = 'sound/vox_fem/head.ogg',
-"health" = 'sound/vox_fem/health.ogg',
-"heat" = 'sound/vox_fem/heat.ogg',
-"helicopter" = 'sound/vox_fem/helicopter.ogg',
-"helium" = 'sound/vox_fem/helium.ogg',
-"hello" = 'sound/vox_fem/hello.ogg',
-"help" = 'sound/vox_fem/help.ogg',
-"he" = 'sound/vox_fem/he.ogg',
-"here" = 'sound/vox_fem/here.ogg',
-"hide" = 'sound/vox_fem/hide.ogg',
-"highest" = 'sound/vox_fem/highest.ogg',
-"high" = 'sound/vox_fem/high.ogg',
-"hit" = 'sound/vox_fem/hit.ogg',
-"h" = 'sound/vox_fem/h.ogg',
-"hole" = 'sound/vox_fem/hole.ogg',
-"honk" = 'sound/vox_fem/honk.ogg',
-"hop" = 'sound/vox_fem/hop.ogg',
-"hos" = 'sound/vox_fem/hos.ogg',
-"hostile" = 'sound/vox_fem/hostile.ogg',
-"hotel" = 'sound/vox_fem/hotel.ogg',
-"hot" = 'sound/vox_fem/hot.ogg',
-"hour" = 'sound/vox_fem/hour.ogg',
-"hours" = 'sound/vox_fem/hours.ogg',
-"how" = 'sound/vox_fem/how.ogg',
-"human" = 'sound/vox_fem/human.ogg',
-"humanoid" = 'sound/vox_fem/humanoid.ogg',
-"humans" = 'sound/vox_fem/humans.ogg',
-"hundred" = 'sound/vox_fem/hundred.ogg',
-"hunger" = 'sound/vox_fem/hunger.ogg',
-"hurt" = 'sound/vox_fem/hurt.ogg',
-"hydro" = 'sound/vox_fem/hydro.ogg',
-"hydroponics" = 'sound/vox_fem/hydroponics.ogg',
-"ian" = 'sound/vox_fem/ian.ogg',
-"idiot" = 'sound/vox_fem/idiot.ogg',
-"if2" = 'sound/vox_fem/if2.ogg',
-"if" = 'sound/vox_fem/if.ogg',
-"illegal" = 'sound/vox_fem/illegal.ogg',
-"immediately" = 'sound/vox_fem/immediately.ogg',
-"immediate" = 'sound/vox_fem/immediate.ogg',
-"immortal" = 'sound/vox_fem/immortal.ogg',
-"impossible" = 'sound/vox_fem/impossible.ogg',
-"inches" = 'sound/vox_fem/inches.ogg',
-"india" = 'sound/vox_fem/india.ogg',
-"ing" = 'sound/vox_fem/ing.ogg',
-"in" = 'sound/vox_fem/in.ogg',
-"inoperative" = 'sound/vox_fem/inoperative.ogg',
-"inside" = 'sound/vox_fem/inside.ogg',
-"inspection" = 'sound/vox_fem/inspection.ogg',
-"inspector" = 'sound/vox_fem/inspector.ogg',
-"interchange" = 'sound/vox_fem/interchange.ogg',
-"internals" = 'sound/vox_fem/internals.ogg',
-"intruder" = 'sound/vox_fem/intruder.ogg',
-"invalid" = 'sound/vox_fem/invalid.ogg',
-"invasion" = 'sound/vox_fem/invasion.ogg',
-"i" = 'sound/vox_fem/i.ogg',
-"is" = 'sound/vox_fem/is.ogg',
-"it" = 'sound/vox_fem/it.ogg',
-"janitor" = 'sound/vox_fem/janitor.ogg',
-"jesus" = 'sound/vox_fem/jesus.ogg',
-"j" = 'sound/vox_fem/j.ogg',
-"johnson" = 'sound/vox_fem/johnson.ogg',
-"juliet" = 'sound/vox_fem/juliet.ogg',
-"key" = 'sound/vox_fem/key.ogg',
-"kidnapped" = 'sound/vox_fem/kidnapped.ogg',
-"kidnapping" = 'sound/vox_fem/kidnapping.ogg',
-"killed" = 'sound/vox_fem/killed.ogg',
-"kill" = 'sound/vox_fem/kill.ogg',
-"kilo" = 'sound/vox_fem/kilo.ogg',
-"kitchen" = 'sound/vox_fem/kitchen.ogg',
-"kit" = 'sound/vox_fem/kit.ogg',
-"k" = 'sound/vox_fem/k.ogg',
-"lab" = 'sound/vox_fem/lab.ogg',
-"lambda" = 'sound/vox_fem/lambda.ogg',
-"laser" = 'sound/vox_fem/laser.ogg',
-"last" = 'sound/vox_fem/last.ogg',
-"launch" = 'sound/vox_fem/launch.ogg',
-"lavaland" = 'sound/vox_fem/lavaland.ogg',
-"law" = 'sound/vox_fem/law.ogg',
-"laws" = 'sound/vox_fem/laws.ogg',
-"lawyer" = 'sound/vox_fem/lawyer.ogg',
-"leak" = 'sound/vox_fem/leak.ogg',
-"leave" = 'sound/vox_fem/leave.ogg',
-"left" = 'sound/vox_fem/left.ogg',
-"legal" = 'sound/vox_fem/legal.ogg',
-"level" = 'sound/vox_fem/level.ogg',
-"lever" = 'sound/vox_fem/lever.ogg',
-"library" = 'sound/vox_fem/library.ogg',
-"lie" = 'sound/vox_fem/lie.ogg',
-"lieutenant" = 'sound/vox_fem/lieutenant.ogg',
-"lifeform" = 'sound/vox_fem/lifeform.ogg',
-"life" = 'sound/vox_fem/life.ogg',
-"light" = 'sound/vox_fem/light.ogg',
-"lima" = 'sound/vox_fem/lima.ogg',
-"liquid" = 'sound/vox_fem/liquid.ogg',
-"live2" = 'sound/vox_fem/live2.ogg',
-"live" = 'sound/vox_fem/live.ogg',
-"lizard" = 'sound/vox_fem/lizard.ogg',
-"loading" = 'sound/vox_fem/loading.ogg',
-"located" = 'sound/vox_fem/located.ogg',
-"locate" = 'sound/vox_fem/locate.ogg',
-"location" = 'sound/vox_fem/location.ogg',
-"locked" = 'sound/vox_fem/locked.ogg',
-"locker" = 'sound/vox_fem/locker.ogg',
-"lock" = 'sound/vox_fem/lock.ogg',
-"lockout" = 'sound/vox_fem/lockout.ogg',
-"l" = 'sound/vox_fem/l.ogg',
-"long" = 'sound/vox_fem/long.ogg',
-"look" = 'sound/vox_fem/look.ogg',
-"loop" = 'sound/vox_fem/loop.ogg',
-"loose" = 'sound/vox_fem/loose.ogg',
-"lot" = 'sound/vox_fem/lot.ogg',
-"lower" = 'sound/vox_fem/lower.ogg',
-"lowest" = 'sound/vox_fem/lowest.ogg',
-"lusty" = 'sound/vox_fem/lusty.ogg',
-"machine" = 'sound/vox_fem/machine.ogg',
-"magic" = 'sound/vox_fem/magic.ogg',
-"magnetic" = 'sound/vox_fem/magnetic.ogg',
-"main" = 'sound/vox_fem/main.ogg',
-"maintenance" = 'sound/vox_fem/maintenance.ogg',
-"malfunction" = 'sound/vox_fem/malfunction.ogg',
-"man" = 'sound/vox_fem/man.ogg',
-"many" = 'sound/vox_fem/many.ogg',
-"mass" = 'sound/vox_fem/mass.ogg',
-"materials" = 'sound/vox_fem/materials.ogg',
-"maximum" = 'sound/vox_fem/maximum.ogg',
-"may" = 'sound/vox_fem/may.ogg',
-"meat" = 'sound/vox_fem/meat.ogg',
-"medbay" = 'sound/vox_fem/medbay.ogg',
-"medical" = 'sound/vox_fem/medical.ogg',
-"megafauna" = 'sound/vox_fem/megafauna.ogg',
-"men" = 'sound/vox_fem/men.ogg',
-"me" = 'sound/vox_fem/me.ogg',
-"mercy" = 'sound/vox_fem/mercy.ogg',
-"mesa" = 'sound/vox_fem/mesa.ogg',
-"message" = 'sound/vox_fem/message.ogg',
-"meter" = 'sound/vox_fem/meter.ogg',
-"micro" = 'sound/vox_fem/micro.ogg',
-"middle" = 'sound/vox_fem/middle.ogg',
-"mike" = 'sound/vox_fem/mike.ogg',
-"miles" = 'sound/vox_fem/miles.ogg',
-"military" = 'sound/vox_fem/military.ogg',
-"milli" = 'sound/vox_fem/milli.ogg',
-"million" = 'sound/vox_fem/million.ogg',
-"mime" = 'sound/vox_fem/mime.ogg',
-"minefield" = 'sound/vox_fem/minefield.ogg',
-"miner" = 'sound/vox_fem/miner.ogg',
-"minimum" = 'sound/vox_fem/minimum.ogg',
-"minutes" = 'sound/vox_fem/minutes.ogg',
-"mister" = 'sound/vox_fem/mister.ogg',
-"mode" = 'sound/vox_fem/mode.ogg',
-"modification" = 'sound/vox_fem/modification.ogg',
-"m" = 'sound/vox_fem/m.ogg',
-"money" = 'sound/vox_fem/money.ogg',
-"monkey" = 'sound/vox_fem/monkey.ogg',
-"moth" = 'sound/vox_fem/moth.ogg',
-"motor" = 'sound/vox_fem/motor.ogg',
-"motorpool" = 'sound/vox_fem/motorpool.ogg',
-"move" = 'sound/vox_fem/move.ogg',
-"multitude" = 'sound/vox_fem/multitude.ogg',
-"murder" = 'sound/vox_fem/murder.ogg',
-"must" = 'sound/vox_fem/must.ogg',
-"my" = 'sound/vox_fem/my.ogg',
-"mythic" = 'sound/vox_fem/mythic.ogg',
-"nanotrasen" = 'sound/vox_fem/nanotrasen.ogg',
-"nearest" = 'sound/vox_fem/nearest.ogg',
-"need" = 'sound/vox_fem/need.ogg',
-"nice" = 'sound/vox_fem/nice.ogg',
-"nine" = 'sound/vox_fem/nine.ogg',
-"nineteen" = 'sound/vox_fem/nineteen.ogg',
-"ninety" = 'sound/vox_fem/ninety.ogg',
-"nitrogen" = 'sound/vox_fem/nitrogen.ogg',
-"n" = 'sound/vox_fem/n.ogg',
-"nominal" = 'sound/vox_fem/nominal.ogg',
-"no" = 'sound/vox_fem/no.ogg',
-"north" = 'sound/vox_fem/north.ogg',
-"not" = 'sound/vox_fem/not.ogg',
-"november" = 'sound/vox_fem/november.ogg',
-"now" = 'sound/vox_fem/now.ogg',
-"nuclear" = 'sound/vox_fem/nuclear.ogg',
-"nuke" = 'sound/vox_fem/nuke.ogg',
-"number" = 'sound/vox_fem/number.ogg',
-"objective" = 'sound/vox_fem/objective.ogg',
-"observation" = 'sound/vox_fem/observation.ogg',
-"obtain" = 'sound/vox_fem/obtain.ogg',
-"office" = 'sound/vox_fem/office.ogg',
-"officer" = 'sound/vox_fem/officer.ogg',
-"off" = 'sound/vox_fem/off.ogg',
-"of" = 'sound/vox_fem/of.ogg',
-"," = 'sound/vox_fem/,.ogg',
-"." = 'sound/vox_fem/..ogg',
-"oh" = 'sound/vox_fem/oh.ogg',
-"ok" = 'sound/vox_fem/ok.ogg',
-"one" = 'sound/vox_fem/one.ogg',
-"on" = 'sound/vox_fem/on.ogg',
-"oof" = 'sound/vox_fem/oof.ogg',
-"o" = 'sound/vox_fem/o.ogg',
-"open" = 'sound/vox_fem/open.ogg',
-"operating" = 'sound/vox_fem/operating.ogg',
-"operations" = 'sound/vox_fem/operations.ogg',
-"operative" = 'sound/vox_fem/operative.ogg',
-"option" = 'sound/vox_fem/option.ogg',
-"order" = 'sound/vox_fem/order.ogg',
-"organic" = 'sound/vox_fem/organic.ogg',
-"or" = 'sound/vox_fem/or.ogg',
-"oscar" = 'sound/vox_fem/oscar.ogg',
-"out" = 'sound/vox_fem/out.ogg',
-"outside" = 'sound/vox_fem/outside.ogg',
-"overload" = 'sound/vox_fem/overload.ogg',
-"over" = 'sound/vox_fem/over.ogg',
-"override" = 'sound/vox_fem/override.ogg',
-"oxygen" = 'sound/vox_fem/oxygen.ogg',
-"pacification" = 'sound/vox_fem/pacification.ogg',
-"pacify" = 'sound/vox_fem/pacify.ogg',
-"pain" = 'sound/vox_fem/pain.ogg',
-"pal" = 'sound/vox_fem/pal.ogg',
-"panel" = 'sound/vox_fem/panel.ogg',
-"panting" = 'sound/vox_fem/panting.ogg',
-"pathetic" = 'sound/vox_fem/pathetic.ogg',
-"percent" = 'sound/vox_fem/percent.ogg',
-"perfect" = 'sound/vox_fem/perfect.ogg',
-"perimeter" = 'sound/vox_fem/perimeter.ogg',
-"permitted" = 'sound/vox_fem/permitted.ogg',
-"personal" = 'sound/vox_fem/personal.ogg',
-"personnel" = 'sound/vox_fem/personnel.ogg',
-"pipe" = 'sound/vox_fem/pipe.ogg',
-"piping" = 'sound/vox_fem/piping.ogg',
-"piss" = 'sound/vox_fem/piss.ogg',
-"plant" = 'sound/vox_fem/plant.ogg',
-"plasmaman" = 'sound/vox_fem/plasmaman.ogg',
-"plasma" = 'sound/vox_fem/plasma.ogg',
-"platform" = 'sound/vox_fem/platform.ogg',
-"plausible" = 'sound/vox_fem/plausible.ogg',
-"please" = 'sound/vox_fem/please.ogg',
-"p" = 'sound/vox_fem/p.ogg',
-"point" = 'sound/vox_fem/point.ogg',
-"portal" = 'sound/vox_fem/portal.ogg',
-"port" = 'sound/vox_fem/port.ogg',
-"possible" = 'sound/vox_fem/possible.ogg',
-"power" = 'sound/vox_fem/power.ogg',
-"presence" = 'sound/vox_fem/presence.ogg',
-"press" = 'sound/vox_fem/press.ogg',
-"pressure" = 'sound/vox_fem/pressure.ogg',
-"primary" = 'sound/vox_fem/primary.ogg',
-"prisoner" = 'sound/vox_fem/prisoner.ogg',
-"prison" = 'sound/vox_fem/prison.ogg',
-"proceed" = 'sound/vox_fem/proceed.ogg',
-"processing" = 'sound/vox_fem/processing.ogg',
-"progress" = 'sound/vox_fem/progress.ogg',
-"proper" = 'sound/vox_fem/proper.ogg',
-"propulsion" = 'sound/vox_fem/propulsion.ogg',
-"prosecute" = 'sound/vox_fem/prosecute.ogg',
-"protective" = 'sound/vox_fem/protective.ogg',
-"push" = 'sound/vox_fem/push.ogg',
-"put" = 'sound/vox_fem/put.ogg',
-"q" = 'sound/vox_fem/q.ogg',
-"quantum" = 'sound/vox_fem/quantum.ogg',
-"quarantine" = 'sound/vox_fem/quarantine.ogg',
-"quartermaster" = 'sound/vox_fem/quartermaster.ogg',
-"quebec" = 'sound/vox_fem/quebec.ogg',
-"queen" = 'sound/vox_fem/queen.ogg',
-"questionable" = 'sound/vox_fem/questionable.ogg',
-"questioning" = 'sound/vox_fem/questioning.ogg',
-"question" = 'sound/vox_fem/question.ogg',
-"quick" = 'sound/vox_fem/quick.ogg',
-"quit" = 'sound/vox_fem/quit.ogg',
-"radiation" = 'sound/vox_fem/radiation.ogg',
-"radioactive" = 'sound/vox_fem/radioactive.ogg',
-"rads" = 'sound/vox_fem/rads.ogg',
-"raider" = 'sound/vox_fem/raider.ogg',
-"raiders" = 'sound/vox_fem/raiders.ogg',
-"rapid" = 'sound/vox_fem/rapid.ogg',
-"reached" = 'sound/vox_fem/reached.ogg',
-"reach" = 'sound/vox_fem/reach.ogg',
-"reactor" = 'sound/vox_fem/reactor.ogg',
-"red" = 'sound/vox_fem/red.ogg',
-"relay" = 'sound/vox_fem/relay.ogg',
-"released" = 'sound/vox_fem/released.ogg',
-"remaining" = 'sound/vox_fem/remaining.ogg',
-"removal" = 'sound/vox_fem/removal.ogg',
-"renegade" = 'sound/vox_fem/renegade.ogg',
-"repair" = 'sound/vox_fem/repair.ogg',
-"report" = 'sound/vox_fem/report.ogg',
-"reports" = 'sound/vox_fem/reports.ogg',
-"required" = 'sound/vox_fem/required.ogg',
-"require" = 'sound/vox_fem/require.ogg',
-"research" = 'sound/vox_fem/research.ogg',
-"resevoir" = 'sound/vox_fem/resevoir.ogg',
-"resistance" = 'sound/vox_fem/resistance.ogg',
-"rest" = 'sound/vox_fem/rest.ogg',
-"restoration" = 'sound/vox_fem/restoration.ogg',
-"revolutionary" = 'sound/vox_fem/revolutionary.ogg',
-"revolution" = 'sound/vox_fem/revolution.ogg',
-"right" = 'sound/vox_fem/right.ogg',
-"riot" = 'sound/vox_fem/riot.ogg',
-"roboticist" = 'sound/vox_fem/roboticist.ogg',
-"rocket" = 'sound/vox_fem/rocket.ogg',
-"roger" = 'sound/vox_fem/roger.ogg',
-"r" = 'sound/vox_fem/r.ogg',
-"rogue" = 'sound/vox_fem/rogue.ogg',
-"romeo" = 'sound/vox_fem/romeo.ogg',
-"room" = 'sound/vox_fem/room.ogg',
-"round" = 'sound/vox_fem/round.ogg',
-"rune" = 'sound/vox_fem/rune.ogg',
-"run" = 'sound/vox_fem/run.ogg',
-"runtime" = 'sound/vox_fem/runtime.ogg',
-"sabotage" = 'sound/vox_fem/sabotage.ogg',
-"safe" = 'sound/vox_fem/safe.ogg',
-"safety" = 'sound/vox_fem/safety.ogg',
-"sairhorn" = 'sound/vox_fem/sairhorn.ogg',
-"sarah" = 'sound/vox_fem/sarah.ogg',
-"sargeant" = 'sound/vox_fem/sargeant.ogg',
-"satellite" = 'sound/vox_fem/satellite.ogg',
-"save" = 'sound/vox_fem/save.ogg',
-"scensor" = 'sound/vox_fem/scensor.ogg',
-"science" = 'sound/vox_fem/science.ogg',
-"scientist" = 'sound/vox_fem/scientist.ogg',
-"scream" = 'sound/vox_fem/scream.ogg',
-"screen" = 'sound/vox_fem/screen.ogg',
-"search" = 'sound/vox_fem/search.ogg',
-"secondary" = 'sound/vox_fem/secondary.ogg',
-"second" = 'sound/vox_fem/second.ogg',
-"seconds" = 'sound/vox_fem/seconds.ogg',
-"section" = 'sound/vox_fem/section.ogg',
-"sector" = 'sound/vox_fem/sector.ogg',
-"secured" = 'sound/vox_fem/secured.ogg',
-"secure" = 'sound/vox_fem/secure.ogg',
-"security" = 'sound/vox_fem/security.ogg',
-"selected" = 'sound/vox_fem/selected.ogg',
-"select" = 'sound/vox_fem/select.ogg',
-"self" = 'sound/vox_fem/self.ogg',
-"sensors" = 'sound/vox_fem/sensors.ogg',
-"server" = 'sound/vox_fem/server.ogg',
-"service" = 'sound/vox_fem/service.ogg',
-"seven" = 'sound/vox_fem/seven.ogg',
-"seventeen" = 'sound/vox_fem/seventeen.ogg',
-"seventy" = 'sound/vox_fem/seventy.ogg',
-"severe" = 'sound/vox_fem/severe.ogg',
-"sewage" = 'sound/vox_fem/sewage.ogg',
-"sewer" = 'sound/vox_fem/sewer.ogg',
-"shaft" = 'sound/vox_fem/shaft.ogg',
-"she" = 'sound/vox_fem/she.ogg',
-"shield" = 'sound/vox_fem/shield.ogg',
-"shipment" = 'sound/vox_fem/shipment.ogg',
-"shirt" = 'sound/vox_fem/shirt.ogg',
-"shitlord" = 'sound/vox_fem/shitlord.ogg',
-"shit" = 'sound/vox_fem/shit.ogg',
-"shits" = 'sound/vox_fem/shits.ogg',
-"shitting" = 'sound/vox_fem/shitting.ogg',
-"shock" = 'sound/vox_fem/shock.ogg',
-"shonk" = 'sound/vox_fem/shonk.ogg',
-"shoot" = 'sound/vox_fem/shoot.ogg',
-"shower" = 'sound/vox_fem/shower.ogg',
-"shut" = 'sound/vox_fem/shut.ogg',
-"shuttle" = 'sound/vox_fem/shuttle.ogg',
-"sick" = 'sound/vox_fem/sick.ogg',
-"side" = 'sound/vox_fem/side.ogg',
-"sierra" = 'sound/vox_fem/sierra.ogg',
-"sight" = 'sound/vox_fem/sight.ogg',
-"silicon" = 'sound/vox_fem/silicon.ogg',
-"silo" = 'sound/vox_fem/silo.ogg',
-"singularity" = 'sound/vox_fem/singularity.ogg',
-"six" = 'sound/vox_fem/six.ogg',
-"sixteen" = 'sound/vox_fem/sixteen.ogg',
-"sixty" = 'sound/vox_fem/sixty.ogg',
-"skeleton" = 'sound/vox_fem/skeleton.ogg',
-"slaughter" = 'sound/vox_fem/slaughter.ogg',
-"slime" = 'sound/vox_fem/slime.ogg',
-"slip" = 'sound/vox_fem/slip.ogg',
-"slippery" = 'sound/vox_fem/slippery.ogg',
-"slow" = 'sound/vox_fem/slow.ogg',
-"sm" = 'sound/vox_fem/sm.ogg',
-"s" = 'sound/vox_fem/s.ogg',
-"solar" = 'sound/vox_fem/solar.ogg',
-"solars" = 'sound/vox_fem/solars.ogg',
-"soldier" = 'sound/vox_fem/soldier.ogg',
-"some" = 'sound/vox_fem/some.ogg',
-"someone" = 'sound/vox_fem/someone.ogg',
-"something" = 'sound/vox_fem/something.ogg',
-"son" = 'sound/vox_fem/son.ogg',
-"sorry" = 'sound/vox_fem/sorry.ogg',
-"south" = 'sound/vox_fem/south.ogg',
-"space" = 'sound/vox_fem/space.ogg',
-"squad" = 'sound/vox_fem/squad.ogg',
-"square" = 'sound/vox_fem/square.ogg',
-"ss13" = 'sound/vox_fem/ss13.ogg',
-"stairway" = 'sound/vox_fem/stairway.ogg',
-"starboard" = 'sound/vox_fem/starboard.ogg',
-"station" = 'sound/vox_fem/station.ogg',
-"status" = 'sound/vox_fem/status.ogg',
-"stay" = 'sound/vox_fem/stay.ogg',
-"sterile" = 'sound/vox_fem/sterile.ogg',
-"sterilization" = 'sound/vox_fem/sterilization.ogg',
-"stop" = 'sound/vox_fem/stop.ogg',
-"storage" = 'sound/vox_fem/storage.ogg',
-"strong" = 'sound/vox_fem/strong.ogg',
-"stuck" = 'sound/vox_fem/stuck.ogg',
-"sub" = 'sound/vox_fem/sub.ogg',
-"subsurface" = 'sound/vox_fem/subsurface.ogg',
-"sudden" = 'sound/vox_fem/sudden.ogg',
-"suffer" = 'sound/vox_fem/suffer.ogg',
-"suit" = 'sound/vox_fem/suit.ogg',
-"superconducting" = 'sound/vox_fem/superconducting.ogg',
-"supercooled" = 'sound/vox_fem/supercooled.ogg',
-"supermatter" = 'sound/vox_fem/supermatter.ogg',
-"supply" = 'sound/vox_fem/supply.ogg',
-"surface" = 'sound/vox_fem/surface.ogg',
-"surrender" = 'sound/vox_fem/surrender.ogg',
-"surrounded" = 'sound/vox_fem/surrounded.ogg',
-"surround" = 'sound/vox_fem/surround.ogg',
-"sweating" = 'sound/vox_fem/sweating.ogg',
-"swhitenoise" = 'sound/vox_fem/swhitenoise.ogg',
-"switch" = 'sound/vox_fem/switch.ogg',
-"syndicate" = 'sound/vox_fem/syndicate.ogg',
-"system" = 'sound/vox_fem/system.ogg',
-"systems" = 'sound/vox_fem/systems.ogg',
-"table" = 'sound/vox_fem/table.ogg',
-"tactical" = 'sound/vox_fem/tactical.ogg',
-"take" = 'sound/vox_fem/take.ogg',
-"talk" = 'sound/vox_fem/talk.ogg',
-"tampered" = 'sound/vox_fem/tampered.ogg',
-"tango" = 'sound/vox_fem/tango.ogg',
-"tank" = 'sound/vox_fem/tank.ogg',
-"target" = 'sound/vox_fem/target.ogg',
-"team" = 'sound/vox_fem/team.ogg',
-"technician" = 'sound/vox_fem/technician.ogg',
-"technology" = 'sound/vox_fem/technology.ogg',
-"tech" = 'sound/vox_fem/tech.ogg',
-"temperature" = 'sound/vox_fem/temperature.ogg',
-"temporal" = 'sound/vox_fem/temporal.ogg',
-"ten" = 'sound/vox_fem/ten.ogg',
-"terminal" = 'sound/vox_fem/terminal.ogg',
-"terminated" = 'sound/vox_fem/terminated.ogg',
-"termination" = 'sound/vox_fem/termination.ogg',
-"test" = 'sound/vox_fem/test.ogg',
-"text" = 'sound/vox_fem/text.ogg',
-"that" = 'sound/vox_fem/that.ogg',
-"theater" = 'sound/vox_fem/theater.ogg',
-"them" = 'sound/vox_fem/them.ogg',
-"then" = 'sound/vox_fem/then.ogg',
-"the" = 'sound/vox_fem/the.ogg',
-"there" = 'sound/vox_fem/there.ogg',
-"they" = 'sound/vox_fem/they.ogg',
-"third" = 'sound/vox_fem/third.ogg',
-"thirteen" = 'sound/vox_fem/thirteen.ogg',
-"thirty" = 'sound/vox_fem/thirty.ogg',
-"this" = 'sound/vox_fem/this.ogg',
-"those" = 'sound/vox_fem/those.ogg',
-"thousand" = 'sound/vox_fem/thousand.ogg',
-"threat" = 'sound/vox_fem/threat.ogg',
-"three" = 'sound/vox_fem/three.ogg',
-"through" = 'sound/vox_fem/through.ogg',
-"tide" = 'sound/vox_fem/tide.ogg',
-"time" = 'sound/vox_fem/time.ogg',
-"t" = 'sound/vox_fem/t.ogg',
-"to" = 'sound/vox_fem/to.ogg',
-"top" = 'sound/vox_fem/top.ogg',
-"topside" = 'sound/vox_fem/topside.ogg',
-"touch" = 'sound/vox_fem/touch.ogg',
-"towards" = 'sound/vox_fem/towards.ogg',
-"toxins" = 'sound/vox_fem/toxins.ogg',
-"track" = 'sound/vox_fem/track.ogg',
-"train" = 'sound/vox_fem/train.ogg',
-"traitor" = 'sound/vox_fem/traitor.ogg',
-"transportation" = 'sound/vox_fem/transportation.ogg',
-"truck" = 'sound/vox_fem/truck.ogg',
-"true" = 'sound/vox_fem/true.ogg',
-"tunnel" = 'sound/vox_fem/tunnel.ogg',
-"turn" = 'sound/vox_fem/turn.ogg',
-"turret" = 'sound/vox_fem/turret.ogg',
-"twelve" = 'sound/vox_fem/twelve.ogg',
-"twenty" = 'sound/vox_fem/twenty.ogg',
-"two" = 'sound/vox_fem/two.ogg',
-"ughh" = 'sound/vox_fem/ughh.ogg',
-"ugh" = 'sound/vox_fem/ugh.ogg',
-"unable" = 'sound/vox_fem/unable.ogg',
-"unauthorized" = 'sound/vox_fem/unauthorized.ogg',
-"under" = 'sound/vox_fem/under.ogg',
-"uniform" = 'sound/vox_fem/uniform.ogg',
-"unknown" = 'sound/vox_fem/unknown.ogg',
-"unlocked" = 'sound/vox_fem/unlocked.ogg',
-"unsafe" = 'sound/vox_fem/unsafe.ogg',
-"until" = 'sound/vox_fem/until.ogg',
-"u" = 'sound/vox_fem/u.ogg',
-"updated" = 'sound/vox_fem/updated.ogg',
-"update" = 'sound/vox_fem/update.ogg',
-"updating" = 'sound/vox_fem/updating.ogg',
-"upload" = 'sound/vox_fem/upload.ogg',
-"up" = 'sound/vox_fem/up.ogg',
-"upper" = 'sound/vox_fem/upper.ogg',
-"uranium" = 'sound/vox_fem/uranium.ogg',
-"usa" = 'sound/vox_fem/usa.ogg',
-"used" = 'sound/vox_fem/used.ogg',
-"use" = 'sound/vox_fem/use.ogg',
-"user" = 'sound/vox_fem/user.ogg',
-"us" = 'sound/vox_fem/us.ogg',
-"vacate" = 'sound/vox_fem/vacate.ogg',
-"vacuum" = 'sound/vox_fem/vacuum.ogg',
-"valid" = 'sound/vox_fem/valid.ogg',
-"vapor" = 'sound/vox_fem/vapor.ogg',
-"vendor" = 'sound/vox_fem/vendor.ogg',
-"ventilation" = 'sound/vox_fem/ventilation.ogg',
-"vent" = 'sound/vox_fem/vent.ogg',
-"very" = 'sound/vox_fem/very.ogg',
-"victor" = 'sound/vox_fem/victor.ogg',
-"violated" = 'sound/vox_fem/violated.ogg',
-"violation" = 'sound/vox_fem/violation.ogg',
-"virologist" = 'sound/vox_fem/virologist.ogg',
-"virology" = 'sound/vox_fem/virology.ogg',
-"virus" = 'sound/vox_fem/virus.ogg',
-"vitals" = 'sound/vox_fem/vitals.ogg',
-"v" = 'sound/vox_fem/v.ogg',
-"voltage" = 'sound/vox_fem/voltage.ogg',
-"vox_login" = 'sound/vox_fem/vox_login.ogg',
-"vox" = 'sound/vox_fem/vox.ogg',
-"voxtest" = 'sound/vox_fem/voxtest.ogg',
-"walk" = 'sound/vox_fem/walk.ogg',
-"wall" = 'sound/vox_fem/wall.ogg',
-"wanker" = 'sound/vox_fem/wanker.ogg',
-"wanted" = 'sound/vox_fem/wanted.ogg',
-"want" = 'sound/vox_fem/want.ogg',
-"warden" = 'sound/vox_fem/warden.ogg',
-"warm" = 'sound/vox_fem/warm.ogg',
-"warning" = 'sound/vox_fem/warning.ogg',
-"warn" = 'sound/vox_fem/warn.ogg',
-"waste" = 'sound/vox_fem/waste.ogg',
-"water" = 'sound/vox_fem/water.ogg',
-"weak" = 'sound/vox_fem/weak.ogg',
-"weapon" = 'sound/vox_fem/weapon.ogg',
-"welcome" = 'sound/vox_fem/welcome.ogg',
-"we" = 'sound/vox_fem/we.ogg',
-"west" = 'sound/vox_fem/west.ogg',
-"wew" = 'sound/vox_fem/wew.ogg',
-"what" = 'sound/vox_fem/what.ogg',
-"when" = 'sound/vox_fem/when.ogg',
-"where" = 'sound/vox_fem/where.ogg',
-"whiskey" = 'sound/vox_fem/whiskey.ogg',
-"white" = 'sound/vox_fem/white.ogg',
-"why" = 'sound/vox_fem/why.ogg',
-"wilco" = 'sound/vox_fem/wilco.ogg',
-"will" = 'sound/vox_fem/will.ogg',
-"wing" = 'sound/vox_fem/wing.ogg',
-"wire" = 'sound/vox_fem/wire.ogg',
-"with" = 'sound/vox_fem/with.ogg',
-"without" = 'sound/vox_fem/without.ogg',
-"wizard" = 'sound/vox_fem/wizard.ogg',
-"w" = 'sound/vox_fem/w.ogg',
-"wood" = 'sound/vox_fem/wood.ogg',
-"woody" = 'sound/vox_fem/woody.ogg',
-"woop" = 'sound/vox_fem/woop.ogg',
-"wow" = 'sound/vox_fem/wow.ogg',
-"xenobiology" = 'sound/vox_fem/xenobiology.ogg',
-"xenomorph" = 'sound/vox_fem/xenomorph.ogg',
-"xenomorphs" = 'sound/vox_fem/xenomorphs.ogg',
-"xeno" = 'sound/vox_fem/xeno.ogg',
-"x" = 'sound/vox_fem/x.ogg',
-"yankee" = 'sound/vox_fem/yankee.ogg',
-"yards" = 'sound/vox_fem/yards.ogg',
-"year" = 'sound/vox_fem/year.ogg',
-"yellow" = 'sound/vox_fem/yellow.ogg',
-"yes" = 'sound/vox_fem/yes.ogg',
-"y" = 'sound/vox_fem/y.ogg',
-"you" = 'sound/vox_fem/you.ogg',
-"your" = 'sound/vox_fem/your.ogg',
-"yourself" = 'sound/vox_fem/yourself.ogg',
-"zero" = 'sound/vox_fem/zero.ogg',
-"z" = 'sound/vox_fem/z.ogg',
-"zombie" = 'sound/vox_fem/zombie.ogg',
-"zone" = 'sound/vox_fem/zone.ogg',
-"zulu" = 'sound/vox_fem/zulu.ogg'))
+GLOBAL_LIST_INIT(vox_types, init_vox_list())
-//for vim
-// :%s/\(\(.*\)\.ogg\)/"\2" = 'sound\/vox\/\1',/g
-GLOBAL_LIST_INIT(vox_sounds_male, list("," = 'sound/vox/_comma.ogg',
-"." = 'sound/vox/_period.ogg',
-"a" = 'sound/vox/a.ogg',
-"accelerating" = 'sound/vox/accelerating.ogg',
-"accelerator" = 'sound/vox/accelerator.ogg',
-"accepted" = 'sound/vox/accepted.ogg',
-"access" = 'sound/vox/access.ogg',
-"acknowledge" = 'sound/vox/acknowledge.ogg',
-"acknowledged" = 'sound/vox/acknowledged.ogg',
-"acquired" = 'sound/vox/acquired.ogg',
-"acquisition" = 'sound/vox/acquisition.ogg',
-"across" = 'sound/vox/across.ogg',
-"activate" = 'sound/vox/activate.ogg',
-"activated" = 'sound/vox/activated.ogg',
-"activity" = 'sound/vox/activity.ogg',
-"adios" = 'sound/vox/adios.ogg',
-"administration" = 'sound/vox/administration.ogg',
-"advanced" = 'sound/vox/advanced.ogg',
-"after" = 'sound/vox/after.ogg',
-"agent" = 'sound/vox/agent.ogg',
-"alarm" = 'sound/vox/alarm.ogg',
-"alert" = 'sound/vox/alert.ogg',
-"alien" = 'sound/vox/alien.ogg',
-"aligned" = 'sound/vox/aligned.ogg',
-"all" = 'sound/vox/all.ogg',
-"alpha" = 'sound/vox/alpha.ogg',
-"am" = 'sound/vox/am.ogg',
-"amigo" = 'sound/vox/amigo.ogg',
-"ammunition" = 'sound/vox/ammunition.ogg',
-"an" = 'sound/vox/an.ogg',
-"and" = 'sound/vox/and.ogg',
-"announcement" = 'sound/vox/announcement.ogg',
-"anomalous" = 'sound/vox/anomalous.ogg',
-"antenna" = 'sound/vox/antenna.ogg',
-"any" = 'sound/vox/any.ogg',
-"apprehend" = 'sound/vox/apprehend.ogg',
-"approach" = 'sound/vox/approach.ogg',
-"are" = 'sound/vox/are.ogg',
-"area" = 'sound/vox/area.ogg',
-"arm" = 'sound/vox/arm.ogg',
-"armed" = 'sound/vox/armed.ogg',
-"armor" = 'sound/vox/armor.ogg',
-"armory" = 'sound/vox/armory.ogg',
-"arrest" = 'sound/vox/arrest.ogg',
-"ass" = 'sound/vox/ass.ogg',
-"at" = 'sound/vox/at.ogg',
-"atomic" = 'sound/vox/atomic.ogg',
-"attention" = 'sound/vox/attention.ogg',
-"authorize" = 'sound/vox/authorize.ogg',
-"authorized" = 'sound/vox/authorized.ogg',
-"automatic" = 'sound/vox/automatic.ogg',
-"away" = 'sound/vox/away.ogg',
-"b" = 'sound/vox/b.ogg',
-"back" = 'sound/vox/back.ogg',
-"backman" = 'sound/vox/backman.ogg',
-"bad" = 'sound/vox/bad.ogg',
-"bag" = 'sound/vox/bag.ogg',
-"bailey" = 'sound/vox/bailey.ogg',
-"barracks" = 'sound/vox/barracks.ogg',
-"base" = 'sound/vox/base.ogg',
-"bay" = 'sound/vox/bay.ogg',
-"be" = 'sound/vox/be.ogg',
-"been" = 'sound/vox/been.ogg',
-"before" = 'sound/vox/before.ogg',
-"beyond" = 'sound/vox/beyond.ogg',
-"biohazard" = 'sound/vox/biohazard.ogg',
-"biological" = 'sound/vox/biological.ogg',
-"birdwell" = 'sound/vox/birdwell.ogg',
-"bizwarn" = 'sound/vox/bizwarn.ogg',
-"black" = 'sound/vox/black.ogg',
-"blast" = 'sound/vox/blast.ogg',
-"blocked" = 'sound/vox/blocked.ogg',
-"bloop" = 'sound/vox/bloop.ogg',
-"blue" = 'sound/vox/blue.ogg',
-"bottom" = 'sound/vox/bottom.ogg',
-"bravo" = 'sound/vox/bravo.ogg',
-"breach" = 'sound/vox/breach.ogg',
-"breached" = 'sound/vox/breached.ogg',
-"break" = 'sound/vox/break.ogg',
-"bridge" = 'sound/vox/bridge.ogg',
-"bust" = 'sound/vox/bust.ogg',
-"but" = 'sound/vox/but.ogg',
-"button" = 'sound/vox/button.ogg',
-"buzwarn" = 'sound/vox/buzwarn.ogg',
-"bypass" = 'sound/vox/bypass.ogg',
-"c" = 'sound/vox/c.ogg',
-"cable" = 'sound/vox/cable.ogg',
-"call" = 'sound/vox/call.ogg',
-"called" = 'sound/vox/called.ogg',
-"canal" = 'sound/vox/canal.ogg',
-"cap" = 'sound/vox/cap.ogg',
-"captain" = 'sound/vox/captain.ogg',
-"capture" = 'sound/vox/capture.ogg',
-"captured" = 'sound/vox/captured.ogg',
-"ceiling" = 'sound/vox/ceiling.ogg',
-"celsius" = 'sound/vox/celsius.ogg',
-"center" = 'sound/vox/center.ogg',
-"centi" = 'sound/vox/centi.ogg',
-"central" = 'sound/vox/central.ogg',
-"chamber" = 'sound/vox/chamber.ogg',
-"charlie" = 'sound/vox/charlie.ogg',
-"check" = 'sound/vox/check.ogg',
-"checkpoint" = 'sound/vox/checkpoint.ogg',
-"chemical" = 'sound/vox/chemical.ogg',
-"cleanup" = 'sound/vox/cleanup.ogg',
-"clear" = 'sound/vox/clear.ogg',
-"clearance" = 'sound/vox/clearance.ogg',
-"close" = 'sound/vox/close.ogg',
-"clown" = 'sound/vox/clown.ogg',
-"code" = 'sound/vox/code.ogg',
-"coded" = 'sound/vox/coded.ogg',
-"collider" = 'sound/vox/collider.ogg',
-"command" = 'sound/vox/command.ogg',
-"communication" = 'sound/vox/communication.ogg',
-"complex" = 'sound/vox/complex.ogg',
-"computer" = 'sound/vox/computer.ogg',
-"condition" = 'sound/vox/condition.ogg',
-"containment" = 'sound/vox/containment.ogg',
-"contamination" = 'sound/vox/contamination.ogg',
-"control" = 'sound/vox/control.ogg',
-"coolant" = 'sound/vox/coolant.ogg',
-"coomer" = 'sound/vox/coomer.ogg',
-"core" = 'sound/vox/core.ogg',
-"correct" = 'sound/vox/correct.ogg',
-"corridor" = 'sound/vox/corridor.ogg',
-"crew" = 'sound/vox/crew.ogg',
-"cross" = 'sound/vox/cross.ogg',
-"cryogenic" = 'sound/vox/cryogenic.ogg',
-"d" = 'sound/vox/d.ogg',
-"dadeda" = 'sound/vox/dadeda.ogg',
-"damage" = 'sound/vox/damage.ogg',
-"damaged" = 'sound/vox/damaged.ogg',
-"danger" = 'sound/vox/danger.ogg',
-"day" = 'sound/vox/day.ogg',
-"deactivated" = 'sound/vox/deactivated.ogg',
-"decompression" = 'sound/vox/decompression.ogg',
-"decontamination" = 'sound/vox/decontamination.ogg',
-"deeoo" = 'sound/vox/deeoo.ogg',
-"defense" = 'sound/vox/defense.ogg',
-"degrees" = 'sound/vox/degrees.ogg',
-"delta" = 'sound/vox/delta.ogg',
-"denied" = 'sound/vox/denied.ogg',
-"deploy" = 'sound/vox/deploy.ogg',
-"deployed" = 'sound/vox/deployed.ogg',
-"destroy" = 'sound/vox/destroy.ogg',
-"destroyed" = 'sound/vox/destroyed.ogg',
-"detain" = 'sound/vox/detain.ogg',
-"detected" = 'sound/vox/detected.ogg',
-"detonation" = 'sound/vox/detonation.ogg',
-"device" = 'sound/vox/device.ogg',
-"did" = 'sound/vox/did.ogg',
-"die" = 'sound/vox/die.ogg',
-"dimensional" = 'sound/vox/dimensional.ogg',
-"dirt" = 'sound/vox/dirt.ogg',
-"disengaged" = 'sound/vox/disengaged.ogg',
-"dish" = 'sound/vox/dish.ogg',
-"disposal" = 'sound/vox/disposal.ogg',
-"distance" = 'sound/vox/distance.ogg',
-"distortion" = 'sound/vox/distortion.ogg',
-"do" = 'sound/vox/do.ogg',
-"doctor" = 'sound/vox/doctor.ogg',
-"doop" = 'sound/vox/doop.ogg',
-"door" = 'sound/vox/door.ogg',
-"down" = 'sound/vox/down.ogg',
-"dual" = 'sound/vox/dual.ogg',
-"duct" = 'sound/vox/duct.ogg',
-"e" = 'sound/vox/e.ogg',
-"east" = 'sound/vox/east.ogg',
-"echo" = 'sound/vox/echo.ogg',
-"ed" = 'sound/vox/ed.ogg',
-"effect" = 'sound/vox/effect.ogg',
-"egress" = 'sound/vox/egress.ogg',
-"eight" = 'sound/vox/eight.ogg',
-"eighteen" = 'sound/vox/eighteen.ogg',
-"eighty" = 'sound/vox/eighty.ogg',
-"electric" = 'sound/vox/electric.ogg',
-"electromagnetic" = 'sound/vox/electromagnetic.ogg',
-"elevator" = 'sound/vox/elevator.ogg',
-"eleven" = 'sound/vox/eleven.ogg',
-"eliminate" = 'sound/vox/eliminate.ogg',
-"emergency" = 'sound/vox/emergency.ogg',
-"enemy" = 'sound/vox/enemy.ogg',
-"energy" = 'sound/vox/energy.ogg',
-"engage" = 'sound/vox/engage.ogg',
-"engaged" = 'sound/vox/engaged.ogg',
-"engine" = 'sound/vox/engine.ogg',
-"enter" = 'sound/vox/enter.ogg',
-"entry" = 'sound/vox/entry.ogg',
-"environment" = 'sound/vox/environment.ogg',
-"error" = 'sound/vox/error.ogg',
-"escape" = 'sound/vox/escape.ogg',
-"evacuate" = 'sound/vox/evacuate.ogg',
-"exchange" = 'sound/vox/exchange.ogg',
-"exit" = 'sound/vox/exit.ogg',
-"expect" = 'sound/vox/expect.ogg',
-"experiment" = 'sound/vox/experiment.ogg',
-"experimental" = 'sound/vox/experimental.ogg',
-"explode" = 'sound/vox/explode.ogg',
-"explosion" = 'sound/vox/explosion.ogg',
-"exposure" = 'sound/vox/exposure.ogg',
-"exterminate" = 'sound/vox/exterminate.ogg',
-"extinguish" = 'sound/vox/extinguish.ogg',
-"extinguisher" = 'sound/vox/extinguisher.ogg',
-"extreme" = 'sound/vox/extreme.ogg',
-"f" = 'sound/vox/f.ogg',
-"face" = 'sound/vox/face.ogg',
-"facility" = 'sound/vox/facility.ogg',
-"fahrenheit" = 'sound/vox/fahrenheit.ogg',
-"failed" = 'sound/vox/failed.ogg',
-"failure" = 'sound/vox/failure.ogg',
-"farthest" = 'sound/vox/farthest.ogg',
-"fast" = 'sound/vox/fast.ogg',
-"feet" = 'sound/vox/feet.ogg',
-"field" = 'sound/vox/field.ogg',
-"fifteen" = 'sound/vox/fifteen.ogg',
-"fifth" = 'sound/vox/fifth.ogg',
-"fifty" = 'sound/vox/fifty.ogg',
-"final" = 'sound/vox/final.ogg',
-"fine" = 'sound/vox/fine.ogg',
-"fire" = 'sound/vox/fire.ogg',
-"first" = 'sound/vox/first.ogg',
-"five" = 'sound/vox/five.ogg',
-"flag" = 'sound/vox/flag.ogg',
-"flooding" = 'sound/vox/flooding.ogg',
-"floor" = 'sound/vox/floor.ogg',
-"fool" = 'sound/vox/fool.ogg',
-"for" = 'sound/vox/for.ogg',
-"forbidden" = 'sound/vox/forbidden.ogg',
-"force" = 'sound/vox/force.ogg',
-"forms" = 'sound/vox/forms.ogg',
-"found" = 'sound/vox/found.ogg',
-"four" = 'sound/vox/four.ogg',
-"fourteen" = 'sound/vox/fourteen.ogg',
-"fourth" = 'sound/vox/fourth.ogg',
-"fourty" = 'sound/vox/fourty.ogg',
-"foxtrot" = 'sound/vox/foxtrot.ogg',
-"freeman" = 'sound/vox/freeman.ogg',
-"freezer" = 'sound/vox/freezer.ogg',
-"from" = 'sound/vox/from.ogg',
-"front" = 'sound/vox/front.ogg',
-"fuel" = 'sound/vox/fuel.ogg',
-"g" = 'sound/vox/g.ogg',
-"gay" = 'sound/vox/gay.ogg',
-"get" = 'sound/vox/get.ogg',
-"go" = 'sound/vox/go.ogg',
-"going" = 'sound/vox/going.ogg',
-"good" = 'sound/vox/good.ogg',
-"goodbye" = 'sound/vox/goodbye.ogg',
-"gordon" = 'sound/vox/gordon.ogg',
-"got" = 'sound/vox/got.ogg',
-"government" = 'sound/vox/government.ogg',
-"granted" = 'sound/vox/granted.ogg',
-"great" = 'sound/vox/great.ogg',
-"green" = 'sound/vox/green.ogg',
-"grenade" = 'sound/vox/grenade.ogg',
-"guard" = 'sound/vox/guard.ogg',
-"gulf" = 'sound/vox/gulf.ogg',
-"gun" = 'sound/vox/gun.ogg',
-"guthrie" = 'sound/vox/guthrie.ogg',
-"handling" = 'sound/vox/handling.ogg',
-"hangar" = 'sound/vox/hangar.ogg',
-"has" = 'sound/vox/has.ogg',
-"have" = 'sound/vox/have.ogg',
-"hazard" = 'sound/vox/hazard.ogg',
-"head" = 'sound/vox/head.ogg',
-"health" = 'sound/vox/health.ogg',
-"heat" = 'sound/vox/heat.ogg',
-"helicopter" = 'sound/vox/helicopter.ogg',
-"helium" = 'sound/vox/helium.ogg',
-"hello" = 'sound/vox/hello.ogg',
-"help" = 'sound/vox/help.ogg',
-"here" = 'sound/vox/here.ogg',
-"hide" = 'sound/vox/hide.ogg',
-"high" = 'sound/vox/high.ogg',
-"highest" = 'sound/vox/highest.ogg',
-"hit" = 'sound/vox/hit.ogg',
-"holds" = 'sound/vox/holds.ogg',
-"hole" = 'sound/vox/hole.ogg',
-"hostile" = 'sound/vox/hostile.ogg',
-"hot" = 'sound/vox/hot.ogg',
-"hotel" = 'sound/vox/hotel.ogg',
-"hour" = 'sound/vox/hour.ogg',
-"hours" = 'sound/vox/hours.ogg',
-"hundred" = 'sound/vox/hundred.ogg',
-"hydro" = 'sound/vox/hydro.ogg',
-"i" = 'sound/vox/i.ogg',
-"idiot" = 'sound/vox/idiot.ogg',
-"illegal" = 'sound/vox/illegal.ogg',
-"immediate" = 'sound/vox/immediate.ogg',
-"immediately" = 'sound/vox/immediately.ogg',
-"in" = 'sound/vox/in.ogg',
-"inches" = 'sound/vox/inches.ogg',
-"india" = 'sound/vox/india.ogg',
-"ing" = 'sound/vox/ing.ogg',
-"inoperative" = 'sound/vox/inoperative.ogg',
-"inside" = 'sound/vox/inside.ogg',
-"inspection" = 'sound/vox/inspection.ogg',
-"inspector" = 'sound/vox/inspector.ogg',
-"interchange" = 'sound/vox/interchange.ogg',
-"intruder" = 'sound/vox/intruder.ogg',
-"invallid" = 'sound/vox/invallid.ogg',
-"invasion" = 'sound/vox/invasion.ogg',
-"is" = 'sound/vox/is.ogg',
-"it" = 'sound/vox/it.ogg',
-"johnson" = 'sound/vox/johnson.ogg',
-"juliet" = 'sound/vox/juliet.ogg',
-"key" = 'sound/vox/key.ogg',
-"kill" = 'sound/vox/kill.ogg',
-"kilo" = 'sound/vox/kilo.ogg',
-"kit" = 'sound/vox/kit.ogg',
-"lab" = 'sound/vox/lab.ogg',
-"lambda" = 'sound/vox/lambda.ogg',
-"laser" = 'sound/vox/laser.ogg',
-"last" = 'sound/vox/last.ogg',
-"launch" = 'sound/vox/launch.ogg',
-"leak" = 'sound/vox/leak.ogg',
-"leave" = 'sound/vox/leave.ogg',
-"left" = 'sound/vox/left.ogg',
-"legal" = 'sound/vox/legal.ogg',
-"level" = 'sound/vox/level.ogg',
-"lever" = 'sound/vox/lever.ogg',
-"lie" = 'sound/vox/lie.ogg',
-"lieutenant" = 'sound/vox/lieutenant.ogg',
-"life" = 'sound/vox/life.ogg',
-"light" = 'sound/vox/light.ogg',
-"lima" = 'sound/vox/lima.ogg',
-"liquid" = 'sound/vox/liquid.ogg',
-"loading" = 'sound/vox/loading.ogg',
-"locate" = 'sound/vox/locate.ogg',
-"located" = 'sound/vox/located.ogg',
-"location" = 'sound/vox/location.ogg',
-"lock" = 'sound/vox/lock.ogg',
-"locked" = 'sound/vox/locked.ogg',
-"locker" = 'sound/vox/locker.ogg',
-"lockout" = 'sound/vox/lockout.ogg',
-"lower" = 'sound/vox/lower.ogg',
-"lowest" = 'sound/vox/lowest.ogg',
-"magnetic" = 'sound/vox/magnetic.ogg',
-"main" = 'sound/vox/main.ogg',
-"maintenance" = 'sound/vox/maintenance.ogg',
-"malfunction" = 'sound/vox/malfunction.ogg',
-"man" = 'sound/vox/man.ogg',
-"mass" = 'sound/vox/mass.ogg',
-"materials" = 'sound/vox/materials.ogg',
-"maximum" = 'sound/vox/maximum.ogg',
-"may" = 'sound/vox/may.ogg',
-"med" = 'sound/vox/med.ogg',
-"medical" = 'sound/vox/medical.ogg',
-"men" = 'sound/vox/men.ogg',
-"mercy" = 'sound/vox/mercy.ogg',
-"mesa" = 'sound/vox/mesa.ogg',
-"message" = 'sound/vox/message.ogg',
-"meter" = 'sound/vox/meter.ogg',
-"micro" = 'sound/vox/micro.ogg',
-"middle" = 'sound/vox/middle.ogg',
-"mike" = 'sound/vox/mike.ogg',
-"miles" = 'sound/vox/miles.ogg',
-"military" = 'sound/vox/military.ogg',
-"milli" = 'sound/vox/milli.ogg',
-"million" = 'sound/vox/million.ogg',
-"minefield" = 'sound/vox/minefield.ogg',
-"minimum" = 'sound/vox/minimum.ogg',
-"minutes" = 'sound/vox/minutes.ogg',
-"mister" = 'sound/vox/mister.ogg',
-"mode" = 'sound/vox/mode.ogg',
-"motor" = 'sound/vox/motor.ogg',
-"motorpool" = 'sound/vox/motorpool.ogg',
-"move" = 'sound/vox/move.ogg',
-"must" = 'sound/vox/must.ogg',
-"nearest" = 'sound/vox/nearest.ogg',
-"nice" = 'sound/vox/nice.ogg',
-"nine" = 'sound/vox/nine.ogg',
-"nineteen" = 'sound/vox/nineteen.ogg',
-"ninety" = 'sound/vox/ninety.ogg',
-"no" = 'sound/vox/no.ogg',
-"nominal" = 'sound/vox/nominal.ogg',
-"north" = 'sound/vox/north.ogg',
-"not" = 'sound/vox/not.ogg',
-"november" = 'sound/vox/november.ogg',
-"now" = 'sound/vox/now.ogg',
-"number" = 'sound/vox/number.ogg',
-"objective" = 'sound/vox/objective.ogg',
-"observation" = 'sound/vox/observation.ogg',
-"of" = 'sound/vox/of.ogg',
-"officer" = 'sound/vox/officer.ogg',
-"ok" = 'sound/vox/ok.ogg',
-"on" = 'sound/vox/on.ogg',
-"one" = 'sound/vox/one.ogg',
-"open" = 'sound/vox/open.ogg',
-"operating" = 'sound/vox/operating.ogg',
-"operations" = 'sound/vox/operations.ogg',
-"operative" = 'sound/vox/operative.ogg',
-"option" = 'sound/vox/option.ogg',
-"order" = 'sound/vox/order.ogg',
-"organic" = 'sound/vox/organic.ogg',
-"oscar" = 'sound/vox/oscar.ogg',
-"out" = 'sound/vox/out.ogg',
-"outside" = 'sound/vox/outside.ogg',
-"over" = 'sound/vox/over.ogg',
-"overload" = 'sound/vox/overload.ogg',
-"override" = 'sound/vox/override.ogg',
-"pacify" = 'sound/vox/pacify.ogg',
-"pain" = 'sound/vox/pain.ogg',
-"pal" = 'sound/vox/pal.ogg',
-"panel" = 'sound/vox/panel.ogg',
-"percent" = 'sound/vox/percent.ogg',
-"perimeter" = 'sound/vox/perimeter.ogg',
-"permitted" = 'sound/vox/permitted.ogg',
-"personnel" = 'sound/vox/personnel.ogg',
-"pipe" = 'sound/vox/pipe.ogg',
-"plant" = 'sound/vox/plant.ogg',
-"platform" = 'sound/vox/platform.ogg',
-"please" = 'sound/vox/please.ogg',
-"point" = 'sound/vox/point.ogg',
-"portal" = 'sound/vox/portal.ogg',
-"power" = 'sound/vox/power.ogg',
-"presence" = 'sound/vox/presence.ogg',
-"press" = 'sound/vox/press.ogg',
-"primary" = 'sound/vox/primary.ogg',
-"proceed" = 'sound/vox/proceed.ogg',
-"processing" = 'sound/vox/processing.ogg',
-"progress" = 'sound/vox/progress.ogg',
-"proper" = 'sound/vox/proper.ogg',
-"propulsion" = 'sound/vox/propulsion.ogg',
-"prosecute" = 'sound/vox/prosecute.ogg',
-"protective" = 'sound/vox/protective.ogg',
-"push" = 'sound/vox/push.ogg',
-"quantum" = 'sound/vox/quantum.ogg',
-"quebec" = 'sound/vox/quebec.ogg',
-"question" = 'sound/vox/question.ogg',
-"questioning" = 'sound/vox/questioning.ogg',
-"quick" = 'sound/vox/quick.ogg',
-"quit" = 'sound/vox/quit.ogg',
-"radiation" = 'sound/vox/radiation.ogg',
-"radioactive" = 'sound/vox/radioactive.ogg',
-"rads" = 'sound/vox/rads.ogg',
-"rapid" = 'sound/vox/rapid.ogg',
-"reach" = 'sound/vox/reach.ogg',
-"reached" = 'sound/vox/reached.ogg',
-"reactor" = 'sound/vox/reactor.ogg',
-"red" = 'sound/vox/red.ogg',
-"relay" = 'sound/vox/relay.ogg',
-"released" = 'sound/vox/released.ogg',
-"remaining" = 'sound/vox/remaining.ogg',
-"renegade" = 'sound/vox/renegade.ogg',
-"repair" = 'sound/vox/repair.ogg',
-"report" = 'sound/vox/report.ogg',
-"reports" = 'sound/vox/reports.ogg',
-"required" = 'sound/vox/required.ogg',
-"research" = 'sound/vox/research.ogg',
-"reset" = 'sound/vox/reset.ogg',
-"resevoir" = 'sound/vox/resevoir.ogg',
-"resistance" = 'sound/vox/resistance.ogg',
-"returned" = 'sound/vox/returned.ogg',
-"right" = 'sound/vox/right.ogg',
-"rocket" = 'sound/vox/rocket.ogg',
-"roger" = 'sound/vox/roger.ogg',
-"romeo" = 'sound/vox/romeo.ogg',
-"room" = 'sound/vox/room.ogg',
-"round" = 'sound/vox/round.ogg',
-"run" = 'sound/vox/run.ogg',
-"safe" = 'sound/vox/safe.ogg',
-"safety" = 'sound/vox/safety.ogg',
-"sargeant" = 'sound/vox/sargeant.ogg',
-"satellite" = 'sound/vox/satellite.ogg',
-"save" = 'sound/vox/save.ogg',
-"science" = 'sound/vox/science.ogg',
-"scores" = 'sound/vox/scores.ogg',
-"scream" = 'sound/vox/scream.ogg',
-"screen" = 'sound/vox/screen.ogg',
-"search" = 'sound/vox/search.ogg',
-"second" = 'sound/vox/second.ogg',
-"secondary" = 'sound/vox/secondary.ogg',
-"seconds" = 'sound/vox/seconds.ogg',
-"sector" = 'sound/vox/sector.ogg',
-"secure" = 'sound/vox/secure.ogg',
-"secured" = 'sound/vox/secured.ogg',
-"security" = 'sound/vox/security.ogg',
-"select" = 'sound/vox/select.ogg',
-"selected" = 'sound/vox/selected.ogg',
-"service" = 'sound/vox/service.ogg',
-"seven" = 'sound/vox/seven.ogg',
-"seventeen" = 'sound/vox/seventeen.ogg',
-"seventy" = 'sound/vox/seventy.ogg',
-"severe" = 'sound/vox/severe.ogg',
-"sewage" = 'sound/vox/sewage.ogg',
-"sewer" = 'sound/vox/sewer.ogg',
-"shield" = 'sound/vox/shield.ogg',
-"shipment" = 'sound/vox/shipment.ogg',
-"shock" = 'sound/vox/shock.ogg',
-"shoot" = 'sound/vox/shoot.ogg',
-"shower" = 'sound/vox/shower.ogg',
-"shut" = 'sound/vox/shut.ogg',
-"side" = 'sound/vox/side.ogg',
-"sierra" = 'sound/vox/sierra.ogg',
-"sight" = 'sound/vox/sight.ogg',
-"silo" = 'sound/vox/silo.ogg',
-"six" = 'sound/vox/six.ogg',
-"sixteen" = 'sound/vox/sixteen.ogg',
-"sixty" = 'sound/vox/sixty.ogg',
-"slime" = 'sound/vox/slime.ogg',
-"slow" = 'sound/vox/slow.ogg',
-"soldier" = 'sound/vox/soldier.ogg',
-"some" = 'sound/vox/some.ogg',
-"someone" = 'sound/vox/someone.ogg',
-"something" = 'sound/vox/something.ogg',
-"son" = 'sound/vox/son.ogg',
-"sorry" = 'sound/vox/sorry.ogg',
-"south" = 'sound/vox/south.ogg',
-"squad" = 'sound/vox/squad.ogg',
-"square" = 'sound/vox/square.ogg',
-"stairway" = 'sound/vox/stairway.ogg',
-"status" = 'sound/vox/status.ogg',
-"sterile" = 'sound/vox/sterile.ogg',
-"sterilization" = 'sound/vox/sterilization.ogg',
-"stolen" = 'sound/vox/stolen.ogg',
-"storage" = 'sound/vox/storage.ogg',
-"sub" = 'sound/vox/sub.ogg',
-"subsurface" = 'sound/vox/subsurface.ogg',
-"sudden" = 'sound/vox/sudden.ogg',
-"suit" = 'sound/vox/suit.ogg',
-"superconducting" = 'sound/vox/superconducting.ogg',
-"supercooled" = 'sound/vox/supercooled.ogg',
-"supply" = 'sound/vox/supply.ogg',
-"surface" = 'sound/vox/surface.ogg',
-"surrender" = 'sound/vox/surrender.ogg',
-"surround" = 'sound/vox/surround.ogg',
-"surrounded" = 'sound/vox/surrounded.ogg',
-"switch" = 'sound/vox/switch.ogg',
-"system" = 'sound/vox/system.ogg',
-"systems" = 'sound/vox/systems.ogg',
-"tactical" = 'sound/vox/tactical.ogg',
-"take" = 'sound/vox/take.ogg',
-"talk" = 'sound/vox/talk.ogg',
-"tango" = 'sound/vox/tango.ogg',
-"tank" = 'sound/vox/tank.ogg',
-"target" = 'sound/vox/target.ogg',
-"team" = 'sound/vox/team.ogg',
-"temperature" = 'sound/vox/temperature.ogg',
-"temporal" = 'sound/vox/temporal.ogg',
-"ten" = 'sound/vox/ten.ogg',
-"terminal" = 'sound/vox/terminal.ogg',
-"terminated" = 'sound/vox/terminated.ogg',
-"termination" = 'sound/vox/termination.ogg',
-"test" = 'sound/vox/test.ogg',
-"that" = 'sound/vox/that.ogg',
-"the" = 'sound/vox/the.ogg',
-"then" = 'sound/vox/then.ogg',
-"there" = 'sound/vox/there.ogg',
-"third" = 'sound/vox/third.ogg',
-"thirteen" = 'sound/vox/thirteen.ogg',
-"thirty" = 'sound/vox/thirty.ogg',
-"this" = 'sound/vox/this.ogg',
-"those" = 'sound/vox/those.ogg',
-"thousand" = 'sound/vox/thousand.ogg',
-"threat" = 'sound/vox/threat.ogg',
-"three" = 'sound/vox/three.ogg',
-"through" = 'sound/vox/through.ogg',
-"time" = 'sound/vox/time.ogg',
-"to" = 'sound/vox/to.ogg',
-"top" = 'sound/vox/top.ogg',
-"topside" = 'sound/vox/topside.ogg',
-"touch" = 'sound/vox/touch.ogg',
-"towards" = 'sound/vox/towards.ogg',
-"track" = 'sound/vox/track.ogg',
-"train" = 'sound/vox/train.ogg',
-"transportation" = 'sound/vox/transportation.ogg',
-"truck" = 'sound/vox/truck.ogg',
-"tunnel" = 'sound/vox/tunnel.ogg',
-"turn" = 'sound/vox/turn.ogg',
-"turret" = 'sound/vox/turret.ogg',
-"twelve" = 'sound/vox/twelve.ogg',
-"twenty" = 'sound/vox/twenty.ogg',
-"two" = 'sound/vox/two.ogg',
-"unauthorized" = 'sound/vox/unauthorized.ogg',
-"under" = 'sound/vox/under.ogg',
-"uniform" = 'sound/vox/uniform.ogg',
-"unlocked" = 'sound/vox/unlocked.ogg',
-"until" = 'sound/vox/until.ogg',
-"up" = 'sound/vox/up.ogg',
-"upper" = 'sound/vox/upper.ogg',
-"uranium" = 'sound/vox/uranium.ogg',
-"us" = 'sound/vox/us.ogg',
-"usa" = 'sound/vox/usa.ogg',
-"use" = 'sound/vox/use.ogg',
-"used" = 'sound/vox/used.ogg',
-"user" = 'sound/vox/user.ogg',
-"vacate" = 'sound/vox/vacate.ogg',
-"valid" = 'sound/vox/valid.ogg',
-"vapor" = 'sound/vox/vapor.ogg',
-"vent" = 'sound/vox/vent.ogg',
-"ventillation" = 'sound/vox/ventillation.ogg',
-"victor" = 'sound/vox/victor.ogg',
-"violated" = 'sound/vox/violated.ogg',
-"violation" = 'sound/vox/violation.ogg',
-"voltage" = 'sound/vox/voltage.ogg',
-"vox_login" = 'sound/vox/vox_login.ogg',
-"walk" = 'sound/vox/walk.ogg',
-"wall" = 'sound/vox/wall.ogg',
-"want" = 'sound/vox/want.ogg',
-"wanted" = 'sound/vox/wanted.ogg',
-"warm" = 'sound/vox/warm.ogg',
-"warn" = 'sound/vox/warn.ogg',
-"warning" = 'sound/vox/warning.ogg',
-"waste" = 'sound/vox/waste.ogg',
-"water" = 'sound/vox/water.ogg',
-"we" = 'sound/vox/we.ogg',
-"weapon" = 'sound/vox/weapon.ogg',
-"west" = 'sound/vox/west.ogg',
-"whiskey" = 'sound/vox/whiskey.ogg',
-"white" = 'sound/vox/white.ogg',
-"wilco" = 'sound/vox/wilco.ogg',
-"will" = 'sound/vox/will.ogg',
-"with" = 'sound/vox/with.ogg',
-"without" = 'sound/vox/without.ogg',
-"woop" = 'sound/vox/woop.ogg',
-"xeno" = 'sound/vox/xeno.ogg',
-"yankee" = 'sound/vox/yankee.ogg',
-"yards" = 'sound/vox/yards.ogg',
-"year" = 'sound/vox/year.ogg',
-"yellow" = 'sound/vox/yellow.ogg',
-"yes" = 'sound/vox/yes.ogg',
-"you" = 'sound/vox/you.ogg',
-"your" = 'sound/vox/your.ogg',
-"yourself" = 'sound/vox/yourself.ogg',
-"zero" = 'sound/vox/zero.ogg',
-"zone" = 'sound/vox/zone.ogg',
-"zulu" = 'sound/vox/zulu.ogg',))
+
+/proc/init_vox_list()
+ return list(
+ // For vim
+ // :%s/\(\(.*\)\.ogg\)/"\2" = 'sound\/vox_fem\/\1',/g
+ "Female" = list(
+ "abduction" = 'sound/vox_fem/abduction.ogg',
+ "abortions" = 'sound/vox_fem/abortions.ogg',
+ "above" = 'sound/vox_fem/above.ogg',
+ "abstain" = 'sound/vox_fem/abstain.ogg',
+ "accelerating" = 'sound/vox_fem/accelerating.ogg',
+ "accelerator" = 'sound/vox_fem/accelerator.ogg',
+ "accepted" = 'sound/vox_fem/accepted.ogg',
+ "access" = 'sound/vox_fem/access.ogg',
+ "acknowledged" = 'sound/vox_fem/acknowledged.ogg',
+ "acknowledge" = 'sound/vox_fem/acknowledge.ogg',
+ "acquired" = 'sound/vox_fem/acquired.ogg',
+ "acquisition" = 'sound/vox_fem/acquisition.ogg',
+ "across" = 'sound/vox_fem/across.ogg',
+ "activated" = 'sound/vox_fem/activated.ogg',
+ "activate" = 'sound/vox_fem/activate.ogg',
+ "activity" = 'sound/vox_fem/activity.ogg',
+ "adios" = 'sound/vox_fem/adios.ogg',
+ "administration" = 'sound/vox_fem/administration.ogg',
+ "advanced" = 'sound/vox_fem/advanced.ogg',
+ "advised" = 'sound/vox_fem/advised.ogg',
+ "after" = 'sound/vox_fem/after.ogg',
+ "aft" = 'sound/vox_fem/aft.ogg',
+ "agent" = 'sound/vox_fem/agent.ogg',
+ "ai" = 'sound/vox_fem/ai.ogg',
+ "airlock" = 'sound/vox_fem/airlock.ogg',
+ "air" = 'sound/vox_fem/air.ogg',
+ "alarm" = 'sound/vox_fem/alarm.ogg',
+ "alert" = 'sound/vox_fem/alert.ogg',
+ "alien" = 'sound/vox_fem/alien.ogg',
+ "aligned" = 'sound/vox_fem/aligned.ogg',
+ "all" = 'sound/vox_fem/all.ogg',
+ "alpha" = 'sound/vox_fem/alpha.ogg',
+ "also" = 'sound/vox_fem/also.ogg',
+ "amigo" = 'sound/vox_fem/amigo.ogg',
+ "ammunition" = 'sound/vox_fem/ammunition.ogg',
+ "am" = 'sound/vox_fem/am.ogg',
+ "and" = 'sound/vox_fem/and.ogg',
+ "animal" = 'sound/vox_fem/animal.ogg',
+ "announcement" = 'sound/vox_fem/announcement.ogg',
+ "an" = 'sound/vox_fem/an.ogg',
+ "anomalous" = 'sound/vox_fem/anomalous.ogg',
+ "answer" = 'sound/vox_fem/answer.ogg',
+ "antenna" = 'sound/vox_fem/antenna.ogg',
+ "any" = 'sound/vox_fem/any.ogg',
+ "a" = 'sound/vox_fem/a.ogg',
+ "apc" = 'sound/vox_fem/apc.ogg',
+ "apprehend" = 'sound/vox_fem/apprehend.ogg',
+ "approach" = 'sound/vox_fem/approach.ogg',
+ "area" = 'sound/vox_fem/area.ogg',
+ "are" = 'sound/vox_fem/are.ogg',
+ "armed" = 'sound/vox_fem/armed.ogg',
+ "arm" = 'sound/vox_fem/arm.ogg',
+ "armor" = 'sound/vox_fem/armor.ogg',
+ "armory" = 'sound/vox_fem/armory.ogg',
+ "array" = 'sound/vox_fem/array.ogg',
+ "arrest" = 'sound/vox_fem/arrest.ogg',
+ "asimov" = 'sound/vox_fem/asimov.ogg',
+ "asshole" = 'sound/vox_fem/asshole.ogg',
+ "assholes" = 'sound/vox_fem/assholes.ogg',
+ "assistance" = 'sound/vox_fem/assistance.ogg',
+ "assistant" = 'sound/vox_fem/assistant.ogg',
+ "ass" = 'sound/vox_fem/ass.ogg',
+ "atmosphere" = 'sound/vox_fem/atmosphere.ogg',
+ "atmospheric" = 'sound/vox_fem/atmospheric.ogg',
+ "atmospherics" = 'sound/vox_fem/atmospherics.ogg',
+ "at" = 'sound/vox_fem/at.ogg',
+ "atomic" = 'sound/vox_fem/atomic.ogg',
+ "attention" = 'sound/vox_fem/attention.ogg',
+ "authentication" = 'sound/vox_fem/authentication.ogg',
+ "authorized" = 'sound/vox_fem/authorized.ogg',
+ "authorize" = 'sound/vox_fem/authorize.ogg',
+ "automatic" = 'sound/vox_fem/automatic.ogg',
+ "away" = 'sound/vox_fem/away.ogg',
+ "awful" = 'sound/vox_fem/awful.ogg',
+ "backman" = 'sound/vox_fem/backman.ogg',
+ "back" = 'sound/vox_fem/back.ogg',
+ "bad" = 'sound/vox_fem/bad.ogg',
+ "bag" = 'sound/vox_fem/bag.ogg',
+ "bailey" = 'sound/vox_fem/bailey.ogg',
+ "bar" = 'sound/vox_fem/bar.ogg',
+ "barracks" = 'sound/vox_fem/barracks.ogg',
+ "bartender" = 'sound/vox_fem/bartender.ogg',
+ "base" = 'sound/vox_fem/base.ogg',
+ "bay" = 'sound/vox_fem/bay.ogg',
+ "beam" = 'sound/vox_fem/beam.ogg',
+ "been" = 'sound/vox_fem/been.ogg',
+ "beep" = 'sound/vox_fem/beep.ogg',
+ "before" = 'sound/vox_fem/before.ogg',
+ "below" = 'sound/vox_fem/below.ogg',
+ "be" = 'sound/vox_fem/be.ogg',
+ "beside" = 'sound/vox_fem/beside.ogg',
+ "beware" = 'sound/vox_fem/beware.ogg',
+ "beyond" = 'sound/vox_fem/beyond.ogg',
+ "biohazard" = 'sound/vox_fem/biohazard.ogg',
+ "biological" = 'sound/vox_fem/biological.ogg',
+ "birdwell" = 'sound/vox_fem/birdwell.ogg',
+ "bitches" = 'sound/vox_fem/bitches.ogg',
+ "bitch" = 'sound/vox_fem/bitch.ogg',
+ "bitcoin" = 'sound/vox_fem/bitcoin.ogg',
+ "black" = 'sound/vox_fem/black.ogg',
+ "blast" = 'sound/vox_fem/blast.ogg',
+ "bleed" = 'sound/vox_fem/bleed.ogg',
+ "blob" = 'sound/vox_fem/blob.ogg',
+ "blocked" = 'sound/vox_fem/blocked.ogg',
+ "blood" = 'sound/vox_fem/blood.ogg',
+ "bloop" = 'sound/vox_fem/bloop.ogg',
+ "blue" = 'sound/vox_fem/blue.ogg',
+ "b" = 'sound/vox_fem/b.ogg',
+ "bomb" = 'sound/vox_fem/bomb.ogg',
+ "bone" = 'sound/vox_fem/bone.ogg',
+ "botanist" = 'sound/vox_fem/botanist.ogg',
+ "botany" = 'sound/vox_fem/botany.ogg',
+ "bottom" = 'sound/vox_fem/bottom.ogg',
+ "bravo" = 'sound/vox_fem/bravo.ogg',
+ "breached" = 'sound/vox_fem/breached.ogg',
+ "breach" = 'sound/vox_fem/breach.ogg',
+ "break" = 'sound/vox_fem/break.ogg',
+ "bridge" = 'sound/vox_fem/bridge.ogg',
+ "brig" = 'sound/vox_fem/brig.ogg',
+ "bust" = 'sound/vox_fem/bust.ogg',
+ "but" = 'sound/vox_fem/but.ogg',
+ "button" = 'sound/vox_fem/button.ogg',
+ "bypass" = 'sound/vox_fem/bypass.ogg',
+ "cable" = 'sound/vox_fem/cable.ogg',
+ "called" = 'sound/vox_fem/called.ogg',
+ "call" = 'sound/vox_fem/call.ogg',
+ "canal" = 'sound/vox_fem/canal.ogg',
+ "canister" = 'sound/vox_fem/canister.ogg',
+ "cap" = 'sound/vox_fem/cap.ogg',
+ "captain" = 'sound/vox_fem/captain.ogg',
+ "capture" = 'sound/vox_fem/capture.ogg',
+ "carbon" = 'sound/vox_fem/carbon.ogg',
+ "cargo" = 'sound/vox_fem/cargo.ogg',
+ "cat" = 'sound/vox_fem/cat.ogg',
+ "cease" = 'sound/vox_fem/cease.ogg',
+ "ceiling" = 'sound/vox_fem/ceiling.ogg',
+ "celsius" = 'sound/vox_fem/celsius.ogg',
+ "centcom" = 'sound/vox_fem/centcom.ogg',
+ "center" = 'sound/vox_fem/center.ogg',
+ "centi" = 'sound/vox_fem/centi.ogg',
+ "central" = 'sound/vox_fem/central.ogg',
+ "ce" = 'sound/vox_fem/ce.ogg',
+ "challenge" = 'sound/vox_fem/challenge.ogg',
+ "chamber" = 'sound/vox_fem/chamber.ogg',
+ "changed" = 'sound/vox_fem/changed.ogg',
+ "changeling" = 'sound/vox_fem/changeling.ogg',
+ "change" = 'sound/vox_fem/change.ogg',
+ "chapel" = 'sound/vox_fem/chapel.ogg',
+ "chaplain" = 'sound/vox_fem/chaplain.ogg',
+ "charlie" = 'sound/vox_fem/charlie.ogg',
+ "check" = 'sound/vox_fem/check.ogg',
+ "checkpoint" = 'sound/vox_fem/checkpoint.ogg',
+ "chemical" = 'sound/vox_fem/chemical.ogg',
+ "chemist" = 'sound/vox_fem/chemist.ogg',
+ "chief" = 'sound/vox_fem/chief.ogg',
+ "christ" = 'sound/vox_fem/christ.ogg',
+ "chuckle" = 'sound/vox_fem/chuckle.ogg',
+ "circuit" = 'sound/vox_fem/circuit.ogg',
+ "cleanup" = 'sound/vox_fem/cleanup.ogg',
+ "clearance" = 'sound/vox_fem/clearance.ogg',
+ "clear" = 'sound/vox_fem/clear.ogg',
+ "clockwork" = 'sound/vox_fem/clockwork.ogg',
+ "close" = 'sound/vox_fem/close.ogg',
+ "clowning" = 'sound/vox_fem/clowning.ogg',
+ "clown" = 'sound/vox_fem/clown.ogg',
+ "cmo" = 'sound/vox_fem/cmo.ogg',
+ "coded" = 'sound/vox_fem/coded.ogg',
+ "code" = 'sound/vox_fem/code.ogg',
+ "c" = 'sound/vox_fem/c.ogg',
+ "cold" = 'sound/vox_fem/cold.ogg',
+ "collider" = 'sound/vox_fem/collider.ogg',
+ "come" = 'sound/vox_fem/come.ogg',
+ "command" = 'sound/vox_fem/command.ogg',
+ "communication" = 'sound/vox_fem/communication.ogg',
+ "complex" = 'sound/vox_fem/complex.ogg',
+ "comply" = 'sound/vox_fem/comply.ogg',
+ "computer" = 'sound/vox_fem/computer.ogg',
+ "condition" = 'sound/vox_fem/condition.ogg',
+ "condom" = 'sound/vox_fem/condom.ogg',
+ "confirmed" = 'sound/vox_fem/confirmed.ogg',
+ "connor" = 'sound/vox_fem/connor.ogg',
+ "console2" = 'sound/vox_fem/console2.ogg',
+ "console" = 'sound/vox_fem/console.ogg',
+ "construct" = 'sound/vox_fem/construct.ogg',
+ "containment" = 'sound/vox_fem/containment.ogg',
+ "contamination" = 'sound/vox_fem/contamination.ogg',
+ "contraband" = 'sound/vox_fem/contraband.ogg',
+ "control" = 'sound/vox_fem/control.ogg',
+ "cook" = 'sound/vox_fem/cook.ogg',
+ "coolant" = 'sound/vox_fem/coolant.ogg',
+ "coomer" = 'sound/vox_fem/coomer.ogg',
+ "core" = 'sound/vox_fem/core.ogg',
+ "corgi" = 'sound/vox_fem/corgi.ogg',
+ "corporation" = 'sound/vox_fem/corporation.ogg',
+ "correct" = 'sound/vox_fem/correct.ogg',
+ "corridor" = 'sound/vox_fem/corridor.ogg',
+ "corridors" = 'sound/vox_fem/corridors.ogg',
+ "coward" = 'sound/vox_fem/coward.ogg',
+ "cowards" = 'sound/vox_fem/cowards.ogg',
+ "crate" = 'sound/vox_fem/crate.ogg',
+ "created" = 'sound/vox_fem/created.ogg',
+ "creature" = 'sound/vox_fem/creature.ogg',
+ "crew" = 'sound/vox_fem/crew.ogg',
+ "critical" = 'sound/vox_fem/critical.ogg',
+ "cross" = 'sound/vox_fem/cross.ogg',
+ "cryogenic" = 'sound/vox_fem/cryogenic.ogg',
+ "crystal" = 'sound/vox_fem/crystal.ogg',
+ "cultist" = 'sound/vox_fem/cultist.ogg',
+ "cult" = 'sound/vox_fem/cult.ogg',
+ "cunt" = 'sound/vox_fem/cunt.ogg',
+ "curator" = 'sound/vox_fem/curator.ogg',
+ "cyborg" = 'sound/vox_fem/cyborg.ogg',
+ "cyborgs" = 'sound/vox_fem/cyborgs.ogg',
+ "damaged" = 'sound/vox_fem/damaged.ogg',
+ "damage" = 'sound/vox_fem/damage.ogg',
+ "danger" = 'sound/vox_fem/danger.ogg',
+ "dangerous" = 'sound/vox_fem/dangerous.ogg',
+ "day" = 'sound/vox_fem/day.ogg',
+ "deactivated" = 'sound/vox_fem/deactivated.ogg',
+ "dead" = 'sound/vox_fem/dead.ogg',
+ "death" = 'sound/vox_fem/death.ogg',
+ "decompression" = 'sound/vox_fem/decompression.ogg',
+ "decontamination" = 'sound/vox_fem/decontamination.ogg',
+ "deeoo" = 'sound/vox_fem/deeoo.ogg',
+ "defense" = 'sound/vox_fem/defense.ogg',
+ "degrees" = 'sound/vox_fem/degrees.ogg',
+ "delta" = 'sound/vox_fem/delta.ogg',
+ "demon" = 'sound/vox_fem/demon.ogg',
+ "denied" = 'sound/vox_fem/denied.ogg',
+ "departures" = 'sound/vox_fem/departures.ogg',
+ "deployed" = 'sound/vox_fem/deployed.ogg',
+ "deploy" = 'sound/vox_fem/deploy.ogg',
+ "desire" = 'sound/vox_fem/desire.ogg',
+ "desist" = 'sound/vox_fem/desist.ogg',
+ "destroyed" = 'sound/vox_fem/destroyed.ogg',
+ "destroy" = 'sound/vox_fem/destroy.ogg',
+ "destruction" = 'sound/vox_fem/destruction.ogg',
+ "detain" = 'sound/vox_fem/detain.ogg',
+ "detected" = 'sound/vox_fem/detected.ogg',
+ "detective" = 'sound/vox_fem/detective.ogg',
+ "detonation" = 'sound/vox_fem/detonation.ogg',
+ "device" = 'sound/vox_fem/device.ogg',
+ "devil" = 'sound/vox_fem/devil.ogg',
+ "did" = 'sound/vox_fem/did.ogg',
+ "die" = 'sound/vox_fem/die.ogg',
+ "dimensional" = 'sound/vox_fem/dimensional.ogg',
+ "dioxide" = 'sound/vox_fem/dioxide.ogg',
+ "director" = 'sound/vox_fem/director.ogg',
+ "dirt" = 'sound/vox_fem/dirt.ogg',
+ "disabled" = 'sound/vox_fem/disabled.ogg',
+ "disease" = 'sound/vox_fem/disease.ogg',
+ "disengaged" = 'sound/vox_fem/disengaged.ogg',
+ "dish" = 'sound/vox_fem/dish.ogg',
+ "disk" = 'sound/vox_fem/disk.ogg',
+ "disposal" = 'sound/vox_fem/disposal.ogg',
+ "distance" = 'sound/vox_fem/distance.ogg',
+ "distortion" = 'sound/vox_fem/distortion.ogg',
+ "doctor" = 'sound/vox_fem/doctor.ogg',
+ "d" = 'sound/vox_fem/d.ogg',
+ "dog" = 'sound/vox_fem/dog.ogg',
+ "do" = 'sound/vox_fem/do.ogg',
+ "doomsday" = 'sound/vox_fem/doomsday.ogg',
+ "doop" = 'sound/vox_fem/doop.ogg',
+ "door" = 'sound/vox_fem/door.ogg',
+ "dormitory" = 'sound/vox_fem/dormitory.ogg',
+ "dot" = 'sound/vox_fem/dot.ogg',
+ "down" = 'sound/vox_fem/down.ogg',
+ "drone" = 'sound/vox_fem/drone.ogg',
+ "dual" = 'sound/vox_fem/dual.ogg',
+ "duct" = 'sound/vox_fem/duct.ogg',
+ "east" = 'sound/vox_fem/east.ogg',
+ "echo" = 'sound/vox_fem/echo.ogg',
+ "ed" = 'sound/vox_fem/ed.ogg',
+ "effect" = 'sound/vox_fem/effect.ogg',
+ "egress" = 'sound/vox_fem/egress.ogg',
+ "eighteen" = 'sound/vox_fem/eighteen.ogg',
+ "eight" = 'sound/vox_fem/eight.ogg',
+ "eighty" = 'sound/vox_fem/eighty.ogg',
+ "electric" = 'sound/vox_fem/electric.ogg',
+ "electromagnetic" = 'sound/vox_fem/electromagnetic.ogg',
+ "elevator" = 'sound/vox_fem/elevator.ogg',
+ "eleven" = 'sound/vox_fem/eleven.ogg',
+ "eliminate" = 'sound/vox_fem/eliminate.ogg',
+ "emergency" = 'sound/vox_fem/emergency.ogg',
+ "enabled" = 'sound/vox_fem/enabled.ogg',
+ "energy" = 'sound/vox_fem/energy.ogg',
+ "engaged" = 'sound/vox_fem/engaged.ogg',
+ "engage" = 'sound/vox_fem/engage.ogg',
+ "engineering" = 'sound/vox_fem/engineering.ogg',
+ "engineer" = 'sound/vox_fem/engineer.ogg',
+ "engine" = 'sound/vox_fem/engine.ogg',
+ "enter" = 'sound/vox_fem/enter.ogg',
+ "entity" = 'sound/vox_fem/entity.ogg',
+ "entry" = 'sound/vox_fem/entry.ogg',
+ "environment" = 'sound/vox_fem/environment.ogg',
+ "e" = 'sound/vox_fem/e.ogg',
+ "epic" = 'sound/vox_fem/epic.ogg',
+ "equipment" = 'sound/vox_fem/equipment.ogg',
+ "error" = 'sound/vox_fem/error.ogg',
+ "escape" = 'sound/vox_fem/escape.ogg',
+ "evacuate" = 'sound/vox_fem/evacuate.ogg',
+ "eva" = 'sound/vox_fem/eva.ogg',
+ "exchange" = 'sound/vox_fem/exchange.ogg',
+ "exit" = 'sound/vox_fem/exit.ogg',
+ "expect" = 'sound/vox_fem/expect.ogg',
+ "experimental" = 'sound/vox_fem/experimental.ogg',
+ "experiment" = 'sound/vox_fem/experiment.ogg',
+ "explode" = 'sound/vox_fem/explode.ogg',
+ "explosion" = 'sound/vox_fem/explosion.ogg',
+ "explosive" = 'sound/vox_fem/explosive.ogg',
+ "exposure" = 'sound/vox_fem/exposure.ogg',
+ "exterminate" = 'sound/vox_fem/exterminate.ogg',
+ "extinguisher" = 'sound/vox_fem/extinguisher.ogg',
+ "extinguish" = 'sound/vox_fem/extinguish.ogg',
+ "extreme" = 'sound/vox_fem/extreme.ogg',
+ "facility" = 'sound/vox_fem/facility.ogg',
+ "factory" = 'sound/vox_fem/factory.ogg',
+ "fahrenheit" = 'sound/vox_fem/fahrenheit.ogg',
+ "failed" = 'sound/vox_fem/failed.ogg',
+ "failure" = 'sound/vox_fem/failure.ogg',
+ "false" = 'sound/vox_fem/false.ogg',
+ "farthest" = 'sound/vox_fem/farthest.ogg',
+ "fast" = 'sound/vox_fem/fast.ogg',
+ "fauna" = 'sound/vox_fem/fauna.ogg',
+ "feet" = 'sound/vox_fem/feet.ogg',
+ "field" = 'sound/vox_fem/field.ogg',
+ "fifteen" = 'sound/vox_fem/fifteen.ogg',
+ "fifth" = 'sound/vox_fem/fifth.ogg',
+ "fifty" = 'sound/vox_fem/fifty.ogg',
+ "final" = 'sound/vox_fem/final.ogg',
+ "fine" = 'sound/vox_fem/fine.ogg',
+ "fire" = 'sound/vox_fem/fire.ogg',
+ "first" = 'sound/vox_fem/first.ogg',
+ "five" = 'sound/vox_fem/five.ogg',
+ "fix" = 'sound/vox_fem/fix.ogg',
+ "flooding" = 'sound/vox_fem/flooding.ogg',
+ "floor" = 'sound/vox_fem/floor.ogg',
+ "flyman" = 'sound/vox_fem/flyman.ogg',
+ "f" = 'sound/vox_fem/f.ogg',
+ "fool" = 'sound/vox_fem/fool.ogg',
+ "forbidden" = 'sound/vox_fem/forbidden.ogg',
+ "force" = 'sound/vox_fem/force.ogg',
+ "fore" = 'sound/vox_fem/fore.ogg',
+ "formed" = 'sound/vox_fem/formed.ogg',
+ "form" = 'sound/vox_fem/form.ogg',
+ "forms" = 'sound/vox_fem/forms.ogg',
+ "for" = 'sound/vox_fem/for.ogg',
+ "found" = 'sound/vox_fem/found.ogg',
+ "four" = 'sound/vox_fem/four.ogg',
+ "fourteen" = 'sound/vox_fem/fourteen.ogg',
+ "fourth" = 'sound/vox_fem/fourth.ogg',
+ "fourty" = 'sound/vox_fem/fourty.ogg',
+ "foxtrot" = 'sound/vox_fem/foxtrot.ogg',
+ "freeman" = 'sound/vox_fem/freeman.ogg',
+ "free" = 'sound/vox_fem/free.ogg',
+ "freezer" = 'sound/vox_fem/freezer.ogg',
+ "freezing" = 'sound/vox_fem/freezing.ogg',
+ "from" = 'sound/vox_fem/from.ogg',
+ "front" = 'sound/vox_fem/front.ogg',
+ "fucking" = 'sound/vox_fem/fucking.ogg',
+ "fuck" = 'sound/vox_fem/fuck.ogg',
+ "fucks" = 'sound/vox_fem/fucks.ogg',
+ "fuel" = 'sound/vox_fem/fuel.ogg',
+ "gas" = 'sound/vox_fem/gas.ogg',
+ "generator" = 'sound/vox_fem/generator.ogg',
+ "geneticist" = 'sound/vox_fem/geneticist.ogg',
+ "get" = 'sound/vox_fem/get.ogg',
+ "glory" = 'sound/vox_fem/glory.ogg',
+ "god" = 'sound/vox_fem/god.ogg',
+ "g" = 'sound/vox_fem/g.ogg',
+ "going" = 'sound/vox_fem/going.ogg',
+ "golem" = 'sound/vox_fem/golem.ogg',
+ "goodbye" = 'sound/vox_fem/goodbye.ogg',
+ "good" = 'sound/vox_fem/good.ogg',
+ "go" = 'sound/vox_fem/go.ogg',
+ "gordon" = 'sound/vox_fem/gordon.ogg',
+ "got" = 'sound/vox_fem/got.ogg',
+ "government" = 'sound/vox_fem/government.ogg',
+ "granted" = 'sound/vox_fem/granted.ogg',
+ "gravity" = 'sound/vox_fem/gravity.ogg',
+ "gray" = 'sound/vox_fem/gray.ogg',
+ "great" = 'sound/vox_fem/great.ogg',
+ "green" = 'sound/vox_fem/green.ogg',
+ "grenade" = 'sound/vox_fem/grenade.ogg',
+ "guard" = 'sound/vox_fem/guard.ogg',
+ "gulf" = 'sound/vox_fem/gulf.ogg',
+ "gun" = 'sound/vox_fem/gun.ogg',
+ "guthrie" = 'sound/vox_fem/guthrie.ogg',
+ "hacker" = 'sound/vox_fem/hacker.ogg',
+ "hackers" = 'sound/vox_fem/hackers.ogg',
+ "hall" = 'sound/vox_fem/hall.ogg',
+ "hallway" = 'sound/vox_fem/hallway.ogg',
+ "handling" = 'sound/vox_fem/handling.ogg',
+ "hangar" = 'sound/vox_fem/hangar.ogg',
+ "harmful" = 'sound/vox_fem/harmful.ogg',
+ "harm" = 'sound/vox_fem/harm.ogg',
+ "has" = 'sound/vox_fem/has.ogg',
+ "have" = 'sound/vox_fem/have.ogg',
+ "hazard" = 'sound/vox_fem/hazard.ogg',
+ "head" = 'sound/vox_fem/head.ogg',
+ "health" = 'sound/vox_fem/health.ogg',
+ "heat" = 'sound/vox_fem/heat.ogg',
+ "helicopter" = 'sound/vox_fem/helicopter.ogg',
+ "helium" = 'sound/vox_fem/helium.ogg',
+ "hello" = 'sound/vox_fem/hello.ogg',
+ "help" = 'sound/vox_fem/help.ogg',
+ "he" = 'sound/vox_fem/he.ogg',
+ "here" = 'sound/vox_fem/here.ogg',
+ "hide" = 'sound/vox_fem/hide.ogg',
+ "highest" = 'sound/vox_fem/highest.ogg',
+ "high" = 'sound/vox_fem/high.ogg',
+ "hit" = 'sound/vox_fem/hit.ogg',
+ "h" = 'sound/vox_fem/h.ogg',
+ "hole" = 'sound/vox_fem/hole.ogg',
+ "honk" = 'sound/vox_fem/honk.ogg',
+ "hop" = 'sound/vox_fem/hop.ogg',
+ "hos" = 'sound/vox_fem/hos.ogg',
+ "hostile" = 'sound/vox_fem/hostile.ogg',
+ "hotel" = 'sound/vox_fem/hotel.ogg',
+ "hot" = 'sound/vox_fem/hot.ogg',
+ "hour" = 'sound/vox_fem/hour.ogg',
+ "hours" = 'sound/vox_fem/hours.ogg',
+ "how" = 'sound/vox_fem/how.ogg',
+ "human" = 'sound/vox_fem/human.ogg',
+ "humanoid" = 'sound/vox_fem/humanoid.ogg',
+ "humans" = 'sound/vox_fem/humans.ogg',
+ "hundred" = 'sound/vox_fem/hundred.ogg',
+ "hunger" = 'sound/vox_fem/hunger.ogg',
+ "hurt" = 'sound/vox_fem/hurt.ogg',
+ "hydro" = 'sound/vox_fem/hydro.ogg',
+ "hydroponics" = 'sound/vox_fem/hydroponics.ogg',
+ "ian" = 'sound/vox_fem/ian.ogg',
+ "idiot" = 'sound/vox_fem/idiot.ogg',
+ "if2" = 'sound/vox_fem/if2.ogg',
+ "if" = 'sound/vox_fem/if.ogg',
+ "illegal" = 'sound/vox_fem/illegal.ogg',
+ "immediately" = 'sound/vox_fem/immediately.ogg',
+ "immediate" = 'sound/vox_fem/immediate.ogg',
+ "immortal" = 'sound/vox_fem/immortal.ogg',
+ "impossible" = 'sound/vox_fem/impossible.ogg',
+ "inches" = 'sound/vox_fem/inches.ogg',
+ "india" = 'sound/vox_fem/india.ogg',
+ "ing" = 'sound/vox_fem/ing.ogg',
+ "in" = 'sound/vox_fem/in.ogg',
+ "inoperative" = 'sound/vox_fem/inoperative.ogg',
+ "inside" = 'sound/vox_fem/inside.ogg',
+ "inspection" = 'sound/vox_fem/inspection.ogg',
+ "inspector" = 'sound/vox_fem/inspector.ogg',
+ "interchange" = 'sound/vox_fem/interchange.ogg',
+ "internals" = 'sound/vox_fem/internals.ogg',
+ "intruder" = 'sound/vox_fem/intruder.ogg',
+ "invalid" = 'sound/vox_fem/invalid.ogg',
+ "invasion" = 'sound/vox_fem/invasion.ogg',
+ "i" = 'sound/vox_fem/i.ogg',
+ "is" = 'sound/vox_fem/is.ogg',
+ "it" = 'sound/vox_fem/it.ogg',
+ "janitor" = 'sound/vox_fem/janitor.ogg',
+ "jesus" = 'sound/vox_fem/jesus.ogg',
+ "j" = 'sound/vox_fem/j.ogg',
+ "johnson" = 'sound/vox_fem/johnson.ogg',
+ "juliet" = 'sound/vox_fem/juliet.ogg',
+ "key" = 'sound/vox_fem/key.ogg',
+ "kidnapped" = 'sound/vox_fem/kidnapped.ogg',
+ "kidnapping" = 'sound/vox_fem/kidnapping.ogg',
+ "killed" = 'sound/vox_fem/killed.ogg',
+ "kill" = 'sound/vox_fem/kill.ogg',
+ "kilo" = 'sound/vox_fem/kilo.ogg',
+ "kitchen" = 'sound/vox_fem/kitchen.ogg',
+ "kit" = 'sound/vox_fem/kit.ogg',
+ "k" = 'sound/vox_fem/k.ogg',
+ "lab" = 'sound/vox_fem/lab.ogg',
+ "lambda" = 'sound/vox_fem/lambda.ogg',
+ "laser" = 'sound/vox_fem/laser.ogg',
+ "last" = 'sound/vox_fem/last.ogg',
+ "launch" = 'sound/vox_fem/launch.ogg',
+ "lavaland" = 'sound/vox_fem/lavaland.ogg',
+ "law" = 'sound/vox_fem/law.ogg',
+ "laws" = 'sound/vox_fem/laws.ogg',
+ "lawyer" = 'sound/vox_fem/lawyer.ogg',
+ "leak" = 'sound/vox_fem/leak.ogg',
+ "leave" = 'sound/vox_fem/leave.ogg',
+ "left" = 'sound/vox_fem/left.ogg',
+ "legal" = 'sound/vox_fem/legal.ogg',
+ "level" = 'sound/vox_fem/level.ogg',
+ "lever" = 'sound/vox_fem/lever.ogg',
+ "library" = 'sound/vox_fem/library.ogg',
+ "lie" = 'sound/vox_fem/lie.ogg',
+ "lieutenant" = 'sound/vox_fem/lieutenant.ogg',
+ "lifeform" = 'sound/vox_fem/lifeform.ogg',
+ "life" = 'sound/vox_fem/life.ogg',
+ "light" = 'sound/vox_fem/light.ogg',
+ "lima" = 'sound/vox_fem/lima.ogg',
+ "liquid" = 'sound/vox_fem/liquid.ogg',
+ "live2" = 'sound/vox_fem/live2.ogg',
+ "live" = 'sound/vox_fem/live.ogg',
+ "lizard" = 'sound/vox_fem/lizard.ogg',
+ "loading" = 'sound/vox_fem/loading.ogg',
+ "located" = 'sound/vox_fem/located.ogg',
+ "locate" = 'sound/vox_fem/locate.ogg',
+ "location" = 'sound/vox_fem/location.ogg',
+ "locked" = 'sound/vox_fem/locked.ogg',
+ "locker" = 'sound/vox_fem/locker.ogg',
+ "lock" = 'sound/vox_fem/lock.ogg',
+ "lockout" = 'sound/vox_fem/lockout.ogg',
+ "l" = 'sound/vox_fem/l.ogg',
+ "long" = 'sound/vox_fem/long.ogg',
+ "look" = 'sound/vox_fem/look.ogg',
+ "loop" = 'sound/vox_fem/loop.ogg',
+ "loose" = 'sound/vox_fem/loose.ogg',
+ "lot" = 'sound/vox_fem/lot.ogg',
+ "lower" = 'sound/vox_fem/lower.ogg',
+ "lowest" = 'sound/vox_fem/lowest.ogg',
+ "lusty" = 'sound/vox_fem/lusty.ogg',
+ "machine" = 'sound/vox_fem/machine.ogg',
+ "magic" = 'sound/vox_fem/magic.ogg',
+ "magnetic" = 'sound/vox_fem/magnetic.ogg',
+ "main" = 'sound/vox_fem/main.ogg',
+ "maintenance" = 'sound/vox_fem/maintenance.ogg',
+ "malfunction" = 'sound/vox_fem/malfunction.ogg',
+ "man" = 'sound/vox_fem/man.ogg',
+ "many" = 'sound/vox_fem/many.ogg',
+ "mass" = 'sound/vox_fem/mass.ogg',
+ "materials" = 'sound/vox_fem/materials.ogg',
+ "maximum" = 'sound/vox_fem/maximum.ogg',
+ "may" = 'sound/vox_fem/may.ogg',
+ "meat" = 'sound/vox_fem/meat.ogg',
+ "medbay" = 'sound/vox_fem/medbay.ogg',
+ "medical" = 'sound/vox_fem/medical.ogg',
+ "megafauna" = 'sound/vox_fem/megafauna.ogg',
+ "men" = 'sound/vox_fem/men.ogg',
+ "me" = 'sound/vox_fem/me.ogg',
+ "mercy" = 'sound/vox_fem/mercy.ogg',
+ "mesa" = 'sound/vox_fem/mesa.ogg',
+ "message" = 'sound/vox_fem/message.ogg',
+ "meter" = 'sound/vox_fem/meter.ogg',
+ "micro" = 'sound/vox_fem/micro.ogg',
+ "middle" = 'sound/vox_fem/middle.ogg',
+ "mike" = 'sound/vox_fem/mike.ogg',
+ "miles" = 'sound/vox_fem/miles.ogg',
+ "military" = 'sound/vox_fem/military.ogg',
+ "milli" = 'sound/vox_fem/milli.ogg',
+ "million" = 'sound/vox_fem/million.ogg',
+ "mime" = 'sound/vox_fem/mime.ogg',
+ "minefield" = 'sound/vox_fem/minefield.ogg',
+ "miner" = 'sound/vox_fem/miner.ogg',
+ "minimum" = 'sound/vox_fem/minimum.ogg',
+ "minutes" = 'sound/vox_fem/minutes.ogg',
+ "mister" = 'sound/vox_fem/mister.ogg',
+ "mode" = 'sound/vox_fem/mode.ogg',
+ "modification" = 'sound/vox_fem/modification.ogg',
+ "m" = 'sound/vox_fem/m.ogg',
+ "money" = 'sound/vox_fem/money.ogg',
+ "monkey" = 'sound/vox_fem/monkey.ogg',
+ "moth" = 'sound/vox_fem/moth.ogg',
+ "motor" = 'sound/vox_fem/motor.ogg',
+ "motorpool" = 'sound/vox_fem/motorpool.ogg',
+ "move" = 'sound/vox_fem/move.ogg',
+ "multitude" = 'sound/vox_fem/multitude.ogg',
+ "murder" = 'sound/vox_fem/murder.ogg',
+ "must" = 'sound/vox_fem/must.ogg',
+ "my" = 'sound/vox_fem/my.ogg',
+ "mythic" = 'sound/vox_fem/mythic.ogg',
+ "nanotrasen" = 'sound/vox_fem/nanotrasen.ogg',
+ "nearest" = 'sound/vox_fem/nearest.ogg',
+ "need" = 'sound/vox_fem/need.ogg',
+ "nice" = 'sound/vox_fem/nice.ogg',
+ "nine" = 'sound/vox_fem/nine.ogg',
+ "nineteen" = 'sound/vox_fem/nineteen.ogg',
+ "ninety" = 'sound/vox_fem/ninety.ogg',
+ "nitrogen" = 'sound/vox_fem/nitrogen.ogg',
+ "n" = 'sound/vox_fem/n.ogg',
+ "nominal" = 'sound/vox_fem/nominal.ogg',
+ "no" = 'sound/vox_fem/no.ogg',
+ "north" = 'sound/vox_fem/north.ogg',
+ "not" = 'sound/vox_fem/not.ogg',
+ "november" = 'sound/vox_fem/november.ogg',
+ "now" = 'sound/vox_fem/now.ogg',
+ "nuclear" = 'sound/vox_fem/nuclear.ogg',
+ "nuke" = 'sound/vox_fem/nuke.ogg',
+ "number" = 'sound/vox_fem/number.ogg',
+ "objective" = 'sound/vox_fem/objective.ogg',
+ "observation" = 'sound/vox_fem/observation.ogg',
+ "obtain" = 'sound/vox_fem/obtain.ogg',
+ "office" = 'sound/vox_fem/office.ogg',
+ "officer" = 'sound/vox_fem/officer.ogg',
+ "off" = 'sound/vox_fem/off.ogg',
+ "of" = 'sound/vox_fem/of.ogg',
+ "," = 'sound/vox_fem/,.ogg',
+ "." = 'sound/vox_fem/..ogg',
+ "oh" = 'sound/vox_fem/oh.ogg',
+ "ok" = 'sound/vox_fem/ok.ogg',
+ "one" = 'sound/vox_fem/one.ogg',
+ "on" = 'sound/vox_fem/on.ogg',
+ "oof" = 'sound/vox_fem/oof.ogg',
+ "o" = 'sound/vox_fem/o.ogg',
+ "open" = 'sound/vox_fem/open.ogg',
+ "operating" = 'sound/vox_fem/operating.ogg',
+ "operations" = 'sound/vox_fem/operations.ogg',
+ "operative" = 'sound/vox_fem/operative.ogg',
+ "option" = 'sound/vox_fem/option.ogg',
+ "order" = 'sound/vox_fem/order.ogg',
+ "organic" = 'sound/vox_fem/organic.ogg',
+ "or" = 'sound/vox_fem/or.ogg',
+ "oscar" = 'sound/vox_fem/oscar.ogg',
+ "out" = 'sound/vox_fem/out.ogg',
+ "outside" = 'sound/vox_fem/outside.ogg',
+ "overload" = 'sound/vox_fem/overload.ogg',
+ "over" = 'sound/vox_fem/over.ogg',
+ "override" = 'sound/vox_fem/override.ogg',
+ "oxygen" = 'sound/vox_fem/oxygen.ogg',
+ "pacification" = 'sound/vox_fem/pacification.ogg',
+ "pacify" = 'sound/vox_fem/pacify.ogg',
+ "pain" = 'sound/vox_fem/pain.ogg',
+ "pal" = 'sound/vox_fem/pal.ogg',
+ "panel" = 'sound/vox_fem/panel.ogg',
+ "panting" = 'sound/vox_fem/panting.ogg',
+ "pathetic" = 'sound/vox_fem/pathetic.ogg',
+ "percent" = 'sound/vox_fem/percent.ogg',
+ "perfect" = 'sound/vox_fem/perfect.ogg',
+ "perimeter" = 'sound/vox_fem/perimeter.ogg',
+ "permitted" = 'sound/vox_fem/permitted.ogg',
+ "personal" = 'sound/vox_fem/personal.ogg',
+ "personnel" = 'sound/vox_fem/personnel.ogg',
+ "pipe" = 'sound/vox_fem/pipe.ogg',
+ "piping" = 'sound/vox_fem/piping.ogg',
+ "piss" = 'sound/vox_fem/piss.ogg',
+ "plant" = 'sound/vox_fem/plant.ogg',
+ "plasmaman" = 'sound/vox_fem/plasmaman.ogg',
+ "plasma" = 'sound/vox_fem/plasma.ogg',
+ "platform" = 'sound/vox_fem/platform.ogg',
+ "plausible" = 'sound/vox_fem/plausible.ogg',
+ "please" = 'sound/vox_fem/please.ogg',
+ "p" = 'sound/vox_fem/p.ogg',
+ "point" = 'sound/vox_fem/point.ogg',
+ "portal" = 'sound/vox_fem/portal.ogg',
+ "port" = 'sound/vox_fem/port.ogg',
+ "possible" = 'sound/vox_fem/possible.ogg',
+ "power" = 'sound/vox_fem/power.ogg',
+ "presence" = 'sound/vox_fem/presence.ogg',
+ "press" = 'sound/vox_fem/press.ogg',
+ "pressure" = 'sound/vox_fem/pressure.ogg',
+ "primary" = 'sound/vox_fem/primary.ogg',
+ "prisoner" = 'sound/vox_fem/prisoner.ogg',
+ "prison" = 'sound/vox_fem/prison.ogg',
+ "proceed" = 'sound/vox_fem/proceed.ogg',
+ "processing" = 'sound/vox_fem/processing.ogg',
+ "progress" = 'sound/vox_fem/progress.ogg',
+ "proper" = 'sound/vox_fem/proper.ogg',
+ "propulsion" = 'sound/vox_fem/propulsion.ogg',
+ "prosecute" = 'sound/vox_fem/prosecute.ogg',
+ "protective" = 'sound/vox_fem/protective.ogg',
+ "push" = 'sound/vox_fem/push.ogg',
+ "put" = 'sound/vox_fem/put.ogg',
+ "q" = 'sound/vox_fem/q.ogg',
+ "quantum" = 'sound/vox_fem/quantum.ogg',
+ "quarantine" = 'sound/vox_fem/quarantine.ogg',
+ "quartermaster" = 'sound/vox_fem/quartermaster.ogg',
+ "quebec" = 'sound/vox_fem/quebec.ogg',
+ "queen" = 'sound/vox_fem/queen.ogg',
+ "questionable" = 'sound/vox_fem/questionable.ogg',
+ "questioning" = 'sound/vox_fem/questioning.ogg',
+ "question" = 'sound/vox_fem/question.ogg',
+ "quick" = 'sound/vox_fem/quick.ogg',
+ "quit" = 'sound/vox_fem/quit.ogg',
+ "radiation" = 'sound/vox_fem/radiation.ogg',
+ "radioactive" = 'sound/vox_fem/radioactive.ogg',
+ "rads" = 'sound/vox_fem/rads.ogg',
+ "raider" = 'sound/vox_fem/raider.ogg',
+ "raiders" = 'sound/vox_fem/raiders.ogg',
+ "rapid" = 'sound/vox_fem/rapid.ogg',
+ "reached" = 'sound/vox_fem/reached.ogg',
+ "reach" = 'sound/vox_fem/reach.ogg',
+ "reactor" = 'sound/vox_fem/reactor.ogg',
+ "red" = 'sound/vox_fem/red.ogg',
+ "relay" = 'sound/vox_fem/relay.ogg',
+ "released" = 'sound/vox_fem/released.ogg',
+ "remaining" = 'sound/vox_fem/remaining.ogg',
+ "removal" = 'sound/vox_fem/removal.ogg',
+ "renegade" = 'sound/vox_fem/renegade.ogg',
+ "repair" = 'sound/vox_fem/repair.ogg',
+ "report" = 'sound/vox_fem/report.ogg',
+ "reports" = 'sound/vox_fem/reports.ogg',
+ "required" = 'sound/vox_fem/required.ogg',
+ "require" = 'sound/vox_fem/require.ogg',
+ "research" = 'sound/vox_fem/research.ogg',
+ "resevoir" = 'sound/vox_fem/resevoir.ogg',
+ "resistance" = 'sound/vox_fem/resistance.ogg',
+ "rest" = 'sound/vox_fem/rest.ogg',
+ "restoration" = 'sound/vox_fem/restoration.ogg',
+ "revolutionary" = 'sound/vox_fem/revolutionary.ogg',
+ "revolution" = 'sound/vox_fem/revolution.ogg',
+ "right" = 'sound/vox_fem/right.ogg',
+ "riot" = 'sound/vox_fem/riot.ogg',
+ "roboticist" = 'sound/vox_fem/roboticist.ogg',
+ "rocket" = 'sound/vox_fem/rocket.ogg',
+ "roger" = 'sound/vox_fem/roger.ogg',
+ "r" = 'sound/vox_fem/r.ogg',
+ "rogue" = 'sound/vox_fem/rogue.ogg',
+ "romeo" = 'sound/vox_fem/romeo.ogg',
+ "room" = 'sound/vox_fem/room.ogg',
+ "round" = 'sound/vox_fem/round.ogg',
+ "rune" = 'sound/vox_fem/rune.ogg',
+ "run" = 'sound/vox_fem/run.ogg',
+ "runtime" = 'sound/vox_fem/runtime.ogg',
+ "sabotage" = 'sound/vox_fem/sabotage.ogg',
+ "safe" = 'sound/vox_fem/safe.ogg',
+ "safety" = 'sound/vox_fem/safety.ogg',
+ "sairhorn" = 'sound/vox_fem/sairhorn.ogg',
+ "sarah" = 'sound/vox_fem/sarah.ogg',
+ "sargeant" = 'sound/vox_fem/sargeant.ogg',
+ "satellite" = 'sound/vox_fem/satellite.ogg',
+ "save" = 'sound/vox_fem/save.ogg',
+ "scensor" = 'sound/vox_fem/scensor.ogg',
+ "science" = 'sound/vox_fem/science.ogg',
+ "scientist" = 'sound/vox_fem/scientist.ogg',
+ "scream" = 'sound/vox_fem/scream.ogg',
+ "screen" = 'sound/vox_fem/screen.ogg',
+ "search" = 'sound/vox_fem/search.ogg',
+ "secondary" = 'sound/vox_fem/secondary.ogg',
+ "second" = 'sound/vox_fem/second.ogg',
+ "seconds" = 'sound/vox_fem/seconds.ogg',
+ "section" = 'sound/vox_fem/section.ogg',
+ "sector" = 'sound/vox_fem/sector.ogg',
+ "secured" = 'sound/vox_fem/secured.ogg',
+ "secure" = 'sound/vox_fem/secure.ogg',
+ "security" = 'sound/vox_fem/security.ogg',
+ "selected" = 'sound/vox_fem/selected.ogg',
+ "select" = 'sound/vox_fem/select.ogg',
+ "self" = 'sound/vox_fem/self.ogg',
+ "sensors" = 'sound/vox_fem/sensors.ogg',
+ "server" = 'sound/vox_fem/server.ogg',
+ "service" = 'sound/vox_fem/service.ogg',
+ "seven" = 'sound/vox_fem/seven.ogg',
+ "seventeen" = 'sound/vox_fem/seventeen.ogg',
+ "seventy" = 'sound/vox_fem/seventy.ogg',
+ "severe" = 'sound/vox_fem/severe.ogg',
+ "sewage" = 'sound/vox_fem/sewage.ogg',
+ "sewer" = 'sound/vox_fem/sewer.ogg',
+ "shaft" = 'sound/vox_fem/shaft.ogg',
+ "she" = 'sound/vox_fem/she.ogg',
+ "shield" = 'sound/vox_fem/shield.ogg',
+ "shipment" = 'sound/vox_fem/shipment.ogg',
+ "shirt" = 'sound/vox_fem/shirt.ogg',
+ "shitlord" = 'sound/vox_fem/shitlord.ogg',
+ "shit" = 'sound/vox_fem/shit.ogg',
+ "shits" = 'sound/vox_fem/shits.ogg',
+ "shitting" = 'sound/vox_fem/shitting.ogg',
+ "shock" = 'sound/vox_fem/shock.ogg',
+ "shonk" = 'sound/vox_fem/shonk.ogg',
+ "shoot" = 'sound/vox_fem/shoot.ogg',
+ "shower" = 'sound/vox_fem/shower.ogg',
+ "shut" = 'sound/vox_fem/shut.ogg',
+ "shuttle" = 'sound/vox_fem/shuttle.ogg',
+ "sick" = 'sound/vox_fem/sick.ogg',
+ "side" = 'sound/vox_fem/side.ogg',
+ "sierra" = 'sound/vox_fem/sierra.ogg',
+ "sight" = 'sound/vox_fem/sight.ogg',
+ "silicon" = 'sound/vox_fem/silicon.ogg',
+ "silo" = 'sound/vox_fem/silo.ogg',
+ "singularity" = 'sound/vox_fem/singularity.ogg',
+ "six" = 'sound/vox_fem/six.ogg',
+ "sixteen" = 'sound/vox_fem/sixteen.ogg',
+ "sixty" = 'sound/vox_fem/sixty.ogg',
+ "skeleton" = 'sound/vox_fem/skeleton.ogg',
+ "slaughter" = 'sound/vox_fem/slaughter.ogg',
+ "slime" = 'sound/vox_fem/slime.ogg',
+ "slip" = 'sound/vox_fem/slip.ogg',
+ "slippery" = 'sound/vox_fem/slippery.ogg',
+ "slow" = 'sound/vox_fem/slow.ogg',
+ "sm" = 'sound/vox_fem/sm.ogg',
+ "s" = 'sound/vox_fem/s.ogg',
+ "solar" = 'sound/vox_fem/solar.ogg',
+ "solars" = 'sound/vox_fem/solars.ogg',
+ "soldier" = 'sound/vox_fem/soldier.ogg',
+ "some" = 'sound/vox_fem/some.ogg',
+ "someone" = 'sound/vox_fem/someone.ogg',
+ "something" = 'sound/vox_fem/something.ogg',
+ "son" = 'sound/vox_fem/son.ogg',
+ "sorry" = 'sound/vox_fem/sorry.ogg',
+ "south" = 'sound/vox_fem/south.ogg',
+ "space" = 'sound/vox_fem/space.ogg',
+ "squad" = 'sound/vox_fem/squad.ogg',
+ "square" = 'sound/vox_fem/square.ogg',
+ "ss13" = 'sound/vox_fem/ss13.ogg',
+ "stairway" = 'sound/vox_fem/stairway.ogg',
+ "starboard" = 'sound/vox_fem/starboard.ogg',
+ "station" = 'sound/vox_fem/station.ogg',
+ "status" = 'sound/vox_fem/status.ogg',
+ "stay" = 'sound/vox_fem/stay.ogg',
+ "sterile" = 'sound/vox_fem/sterile.ogg',
+ "sterilization" = 'sound/vox_fem/sterilization.ogg',
+ "stop" = 'sound/vox_fem/stop.ogg',
+ "storage" = 'sound/vox_fem/storage.ogg',
+ "strong" = 'sound/vox_fem/strong.ogg',
+ "stuck" = 'sound/vox_fem/stuck.ogg',
+ "sub" = 'sound/vox_fem/sub.ogg',
+ "subsurface" = 'sound/vox_fem/subsurface.ogg',
+ "sudden" = 'sound/vox_fem/sudden.ogg',
+ "suffer" = 'sound/vox_fem/suffer.ogg',
+ "suit" = 'sound/vox_fem/suit.ogg',
+ "superconducting" = 'sound/vox_fem/superconducting.ogg',
+ "supercooled" = 'sound/vox_fem/supercooled.ogg',
+ "supermatter" = 'sound/vox_fem/supermatter.ogg',
+ "supply" = 'sound/vox_fem/supply.ogg',
+ "surface" = 'sound/vox_fem/surface.ogg',
+ "surrender" = 'sound/vox_fem/surrender.ogg',
+ "surrounded" = 'sound/vox_fem/surrounded.ogg',
+ "surround" = 'sound/vox_fem/surround.ogg',
+ "sweating" = 'sound/vox_fem/sweating.ogg',
+ "swhitenoise" = 'sound/vox_fem/swhitenoise.ogg',
+ "switch" = 'sound/vox_fem/switch.ogg',
+ "syndicate" = 'sound/vox_fem/syndicate.ogg',
+ "system" = 'sound/vox_fem/system.ogg',
+ "systems" = 'sound/vox_fem/systems.ogg',
+ "table" = 'sound/vox_fem/table.ogg',
+ "tactical" = 'sound/vox_fem/tactical.ogg',
+ "take" = 'sound/vox_fem/take.ogg',
+ "talk" = 'sound/vox_fem/talk.ogg',
+ "tampered" = 'sound/vox_fem/tampered.ogg',
+ "tango" = 'sound/vox_fem/tango.ogg',
+ "tank" = 'sound/vox_fem/tank.ogg',
+ "target" = 'sound/vox_fem/target.ogg',
+ "team" = 'sound/vox_fem/team.ogg',
+ "technician" = 'sound/vox_fem/technician.ogg',
+ "technology" = 'sound/vox_fem/technology.ogg',
+ "tech" = 'sound/vox_fem/tech.ogg',
+ "temperature" = 'sound/vox_fem/temperature.ogg',
+ "temporal" = 'sound/vox_fem/temporal.ogg',
+ "ten" = 'sound/vox_fem/ten.ogg',
+ "terminal" = 'sound/vox_fem/terminal.ogg',
+ "terminated" = 'sound/vox_fem/terminated.ogg',
+ "termination" = 'sound/vox_fem/termination.ogg',
+ "test" = 'sound/vox_fem/test.ogg',
+ "text" = 'sound/vox_fem/text.ogg',
+ "that" = 'sound/vox_fem/that.ogg',
+ "theater" = 'sound/vox_fem/theater.ogg',
+ "them" = 'sound/vox_fem/them.ogg',
+ "then" = 'sound/vox_fem/then.ogg',
+ "the" = 'sound/vox_fem/the.ogg',
+ "there" = 'sound/vox_fem/there.ogg',
+ "they" = 'sound/vox_fem/they.ogg',
+ "third" = 'sound/vox_fem/third.ogg',
+ "thirteen" = 'sound/vox_fem/thirteen.ogg',
+ "thirty" = 'sound/vox_fem/thirty.ogg',
+ "this" = 'sound/vox_fem/this.ogg',
+ "those" = 'sound/vox_fem/those.ogg',
+ "thousand" = 'sound/vox_fem/thousand.ogg',
+ "threat" = 'sound/vox_fem/threat.ogg',
+ "three" = 'sound/vox_fem/three.ogg',
+ "through" = 'sound/vox_fem/through.ogg',
+ "tide" = 'sound/vox_fem/tide.ogg',
+ "time" = 'sound/vox_fem/time.ogg',
+ "t" = 'sound/vox_fem/t.ogg',
+ "to" = 'sound/vox_fem/to.ogg',
+ "top" = 'sound/vox_fem/top.ogg',
+ "topside" = 'sound/vox_fem/topside.ogg',
+ "touch" = 'sound/vox_fem/touch.ogg',
+ "towards" = 'sound/vox_fem/towards.ogg',
+ "toxins" = 'sound/vox_fem/toxins.ogg',
+ "track" = 'sound/vox_fem/track.ogg',
+ "train" = 'sound/vox_fem/train.ogg',
+ "traitor" = 'sound/vox_fem/traitor.ogg',
+ "transportation" = 'sound/vox_fem/transportation.ogg',
+ "truck" = 'sound/vox_fem/truck.ogg',
+ "true" = 'sound/vox_fem/true.ogg',
+ "tunnel" = 'sound/vox_fem/tunnel.ogg',
+ "turn" = 'sound/vox_fem/turn.ogg',
+ "turret" = 'sound/vox_fem/turret.ogg',
+ "twelve" = 'sound/vox_fem/twelve.ogg',
+ "twenty" = 'sound/vox_fem/twenty.ogg',
+ "two" = 'sound/vox_fem/two.ogg',
+ "ughh" = 'sound/vox_fem/ughh.ogg',
+ "ugh" = 'sound/vox_fem/ugh.ogg',
+ "unable" = 'sound/vox_fem/unable.ogg',
+ "unauthorized" = 'sound/vox_fem/unauthorized.ogg',
+ "under" = 'sound/vox_fem/under.ogg',
+ "uniform" = 'sound/vox_fem/uniform.ogg',
+ "unknown" = 'sound/vox_fem/unknown.ogg',
+ "unlocked" = 'sound/vox_fem/unlocked.ogg',
+ "unsafe" = 'sound/vox_fem/unsafe.ogg',
+ "until" = 'sound/vox_fem/until.ogg',
+ "u" = 'sound/vox_fem/u.ogg',
+ "updated" = 'sound/vox_fem/updated.ogg',
+ "update" = 'sound/vox_fem/update.ogg',
+ "updating" = 'sound/vox_fem/updating.ogg',
+ "upload" = 'sound/vox_fem/upload.ogg',
+ "up" = 'sound/vox_fem/up.ogg',
+ "upper" = 'sound/vox_fem/upper.ogg',
+ "uranium" = 'sound/vox_fem/uranium.ogg',
+ "usa" = 'sound/vox_fem/usa.ogg',
+ "used" = 'sound/vox_fem/used.ogg',
+ "use" = 'sound/vox_fem/use.ogg',
+ "user" = 'sound/vox_fem/user.ogg',
+ "us" = 'sound/vox_fem/us.ogg',
+ "vacate" = 'sound/vox_fem/vacate.ogg',
+ "vacuum" = 'sound/vox_fem/vacuum.ogg',
+ "valid" = 'sound/vox_fem/valid.ogg',
+ "vapor" = 'sound/vox_fem/vapor.ogg',
+ "vendor" = 'sound/vox_fem/vendor.ogg',
+ "ventilation" = 'sound/vox_fem/ventilation.ogg',
+ "vent" = 'sound/vox_fem/vent.ogg',
+ "very" = 'sound/vox_fem/very.ogg',
+ "victor" = 'sound/vox_fem/victor.ogg',
+ "violated" = 'sound/vox_fem/violated.ogg',
+ "violation" = 'sound/vox_fem/violation.ogg',
+ "virologist" = 'sound/vox_fem/virologist.ogg',
+ "virology" = 'sound/vox_fem/virology.ogg',
+ "virus" = 'sound/vox_fem/virus.ogg',
+ "vitals" = 'sound/vox_fem/vitals.ogg',
+ "v" = 'sound/vox_fem/v.ogg',
+ "voltage" = 'sound/vox_fem/voltage.ogg',
+ "vox_login" = 'sound/vox_fem/vox_login.ogg',
+ "vox" = 'sound/vox_fem/vox.ogg',
+ "voxtest" = 'sound/vox_fem/voxtest.ogg',
+ "walk" = 'sound/vox_fem/walk.ogg',
+ "wall" = 'sound/vox_fem/wall.ogg',
+ "wanker" = 'sound/vox_fem/wanker.ogg',
+ "wanted" = 'sound/vox_fem/wanted.ogg',
+ "want" = 'sound/vox_fem/want.ogg',
+ "warden" = 'sound/vox_fem/warden.ogg',
+ "warm" = 'sound/vox_fem/warm.ogg',
+ "warning" = 'sound/vox_fem/warning.ogg',
+ "warn" = 'sound/vox_fem/warn.ogg',
+ "waste" = 'sound/vox_fem/waste.ogg',
+ "water" = 'sound/vox_fem/water.ogg',
+ "weak" = 'sound/vox_fem/weak.ogg',
+ "weapon" = 'sound/vox_fem/weapon.ogg',
+ "welcome" = 'sound/vox_fem/welcome.ogg',
+ "we" = 'sound/vox_fem/we.ogg',
+ "west" = 'sound/vox_fem/west.ogg',
+ "wew" = 'sound/vox_fem/wew.ogg',
+ "what" = 'sound/vox_fem/what.ogg',
+ "when" = 'sound/vox_fem/when.ogg',
+ "where" = 'sound/vox_fem/where.ogg',
+ "whiskey" = 'sound/vox_fem/whiskey.ogg',
+ "white" = 'sound/vox_fem/white.ogg',
+ "why" = 'sound/vox_fem/why.ogg',
+ "wilco" = 'sound/vox_fem/wilco.ogg',
+ "will" = 'sound/vox_fem/will.ogg',
+ "wing" = 'sound/vox_fem/wing.ogg',
+ "wire" = 'sound/vox_fem/wire.ogg',
+ "with" = 'sound/vox_fem/with.ogg',
+ "without" = 'sound/vox_fem/without.ogg',
+ "wizard" = 'sound/vox_fem/wizard.ogg',
+ "w" = 'sound/vox_fem/w.ogg',
+ "wood" = 'sound/vox_fem/wood.ogg',
+ "woody" = 'sound/vox_fem/woody.ogg',
+ "woop" = 'sound/vox_fem/woop.ogg',
+ "wow" = 'sound/vox_fem/wow.ogg',
+ "xenobiology" = 'sound/vox_fem/xenobiology.ogg',
+ "xenomorph" = 'sound/vox_fem/xenomorph.ogg',
+ "xenomorphs" = 'sound/vox_fem/xenomorphs.ogg',
+ "xeno" = 'sound/vox_fem/xeno.ogg',
+ "x" = 'sound/vox_fem/x.ogg',
+ "yankee" = 'sound/vox_fem/yankee.ogg',
+ "yards" = 'sound/vox_fem/yards.ogg',
+ "year" = 'sound/vox_fem/year.ogg',
+ "yellow" = 'sound/vox_fem/yellow.ogg',
+ "yes" = 'sound/vox_fem/yes.ogg',
+ "y" = 'sound/vox_fem/y.ogg',
+ "you" = 'sound/vox_fem/you.ogg',
+ "your" = 'sound/vox_fem/your.ogg',
+ "yourself" = 'sound/vox_fem/yourself.ogg',
+ "zero" = 'sound/vox_fem/zero.ogg',
+ "z" = 'sound/vox_fem/z.ogg',
+ "zombie" = 'sound/vox_fem/zombie.ogg',
+ "zone" = 'sound/vox_fem/zone.ogg',
+ "zulu" = 'sound/vox_fem/zulu.ogg'
+ ),
+ //for vim
+ // :%s/\(\(.*\)\.ogg\)/"\2" = 'sound\/vox\/\1',/g
+ "Male" = list(
+ "," = 'sound/vox/_comma.ogg',
+ "." = 'sound/vox/_period.ogg',
+ "a" = 'sound/vox/a.ogg',
+ "accelerating" = 'sound/vox/accelerating.ogg',
+ "accelerator" = 'sound/vox/accelerator.ogg',
+ "accepted" = 'sound/vox/accepted.ogg',
+ "access" = 'sound/vox/access.ogg',
+ "acknowledge" = 'sound/vox/acknowledge.ogg',
+ "acknowledged" = 'sound/vox/acknowledged.ogg',
+ "acquired" = 'sound/vox/acquired.ogg',
+ "acquisition" = 'sound/vox/acquisition.ogg',
+ "across" = 'sound/vox/across.ogg',
+ "activate" = 'sound/vox/activate.ogg',
+ "activated" = 'sound/vox/activated.ogg',
+ "activity" = 'sound/vox/activity.ogg',
+ "adios" = 'sound/vox/adios.ogg',
+ "administration" = 'sound/vox/administration.ogg',
+ "advanced" = 'sound/vox/advanced.ogg',
+ "after" = 'sound/vox/after.ogg',
+ "agent" = 'sound/vox/agent.ogg',
+ "alarm" = 'sound/vox/alarm.ogg',
+ "alert" = 'sound/vox/alert.ogg',
+ "alien" = 'sound/vox/alien.ogg',
+ "aligned" = 'sound/vox/aligned.ogg',
+ "all" = 'sound/vox/all.ogg',
+ "alpha" = 'sound/vox/alpha.ogg',
+ "am" = 'sound/vox/am.ogg',
+ "amigo" = 'sound/vox/amigo.ogg',
+ "ammunition" = 'sound/vox/ammunition.ogg',
+ "an" = 'sound/vox/an.ogg',
+ "and" = 'sound/vox/and.ogg',
+ "announcement" = 'sound/vox/announcement.ogg',
+ "anomalous" = 'sound/vox/anomalous.ogg',
+ "antenna" = 'sound/vox/antenna.ogg',
+ "any" = 'sound/vox/any.ogg',
+ "apprehend" = 'sound/vox/apprehend.ogg',
+ "approach" = 'sound/vox/approach.ogg',
+ "are" = 'sound/vox/are.ogg',
+ "area" = 'sound/vox/area.ogg',
+ "arm" = 'sound/vox/arm.ogg',
+ "armed" = 'sound/vox/armed.ogg',
+ "armor" = 'sound/vox/armor.ogg',
+ "armory" = 'sound/vox/armory.ogg',
+ "arrest" = 'sound/vox/arrest.ogg',
+ "ass" = 'sound/vox/ass.ogg',
+ "at" = 'sound/vox/at.ogg',
+ "atomic" = 'sound/vox/atomic.ogg',
+ "attention" = 'sound/vox/attention.ogg',
+ "authorize" = 'sound/vox/authorize.ogg',
+ "authorized" = 'sound/vox/authorized.ogg',
+ "automatic" = 'sound/vox/automatic.ogg',
+ "away" = 'sound/vox/away.ogg',
+ "b" = 'sound/vox/b.ogg',
+ "back" = 'sound/vox/back.ogg',
+ "backman" = 'sound/vox/backman.ogg',
+ "bad" = 'sound/vox/bad.ogg',
+ "bag" = 'sound/vox/bag.ogg',
+ "bailey" = 'sound/vox/bailey.ogg',
+ "barracks" = 'sound/vox/barracks.ogg',
+ "base" = 'sound/vox/base.ogg',
+ "bay" = 'sound/vox/bay.ogg',
+ "be" = 'sound/vox/be.ogg',
+ "been" = 'sound/vox/been.ogg',
+ "before" = 'sound/vox/before.ogg',
+ "beyond" = 'sound/vox/beyond.ogg',
+ "biohazard" = 'sound/vox/biohazard.ogg',
+ "biological" = 'sound/vox/biological.ogg',
+ "birdwell" = 'sound/vox/birdwell.ogg',
+ "bizwarn" = 'sound/vox/bizwarn.ogg',
+ "black" = 'sound/vox/black.ogg',
+ "blast" = 'sound/vox/blast.ogg',
+ "blocked" = 'sound/vox/blocked.ogg',
+ "bloop" = 'sound/vox/bloop.ogg',
+ "blue" = 'sound/vox/blue.ogg',
+ "bottom" = 'sound/vox/bottom.ogg',
+ "bravo" = 'sound/vox/bravo.ogg',
+ "breach" = 'sound/vox/breach.ogg',
+ "breached" = 'sound/vox/breached.ogg',
+ "break" = 'sound/vox/break.ogg',
+ "bridge" = 'sound/vox/bridge.ogg',
+ "bust" = 'sound/vox/bust.ogg',
+ "but" = 'sound/vox/but.ogg',
+ "button" = 'sound/vox/button.ogg',
+ "buzwarn" = 'sound/vox/buzwarn.ogg',
+ "bypass" = 'sound/vox/bypass.ogg',
+ "c" = 'sound/vox/c.ogg',
+ "cable" = 'sound/vox/cable.ogg',
+ "call" = 'sound/vox/call.ogg',
+ "called" = 'sound/vox/called.ogg',
+ "canal" = 'sound/vox/canal.ogg',
+ "cap" = 'sound/vox/cap.ogg',
+ "captain" = 'sound/vox/captain.ogg',
+ "capture" = 'sound/vox/capture.ogg',
+ "captured" = 'sound/vox/captured.ogg',
+ "ceiling" = 'sound/vox/ceiling.ogg',
+ "celsius" = 'sound/vox/celsius.ogg',
+ "center" = 'sound/vox/center.ogg',
+ "centi" = 'sound/vox/centi.ogg',
+ "central" = 'sound/vox/central.ogg',
+ "chamber" = 'sound/vox/chamber.ogg',
+ "charlie" = 'sound/vox/charlie.ogg',
+ "check" = 'sound/vox/check.ogg',
+ "checkpoint" = 'sound/vox/checkpoint.ogg',
+ "chemical" = 'sound/vox/chemical.ogg',
+ "cleanup" = 'sound/vox/cleanup.ogg',
+ "clear" = 'sound/vox/clear.ogg',
+ "clearance" = 'sound/vox/clearance.ogg',
+ "close" = 'sound/vox/close.ogg',
+ "clown" = 'sound/vox/clown.ogg',
+ "code" = 'sound/vox/code.ogg',
+ "coded" = 'sound/vox/coded.ogg',
+ "collider" = 'sound/vox/collider.ogg',
+ "command" = 'sound/vox/command.ogg',
+ "communication" = 'sound/vox/communication.ogg',
+ "complex" = 'sound/vox/complex.ogg',
+ "computer" = 'sound/vox/computer.ogg',
+ "condition" = 'sound/vox/condition.ogg',
+ "containment" = 'sound/vox/containment.ogg',
+ "contamination" = 'sound/vox/contamination.ogg',
+ "control" = 'sound/vox/control.ogg',
+ "coolant" = 'sound/vox/coolant.ogg',
+ "coomer" = 'sound/vox/coomer.ogg',
+ "core" = 'sound/vox/core.ogg',
+ "correct" = 'sound/vox/correct.ogg',
+ "corridor" = 'sound/vox/corridor.ogg',
+ "crew" = 'sound/vox/crew.ogg',
+ "cross" = 'sound/vox/cross.ogg',
+ "cryogenic" = 'sound/vox/cryogenic.ogg',
+ "d" = 'sound/vox/d.ogg',
+ "dadeda" = 'sound/vox/dadeda.ogg',
+ "damage" = 'sound/vox/damage.ogg',
+ "damaged" = 'sound/vox/damaged.ogg',
+ "danger" = 'sound/vox/danger.ogg',
+ "day" = 'sound/vox/day.ogg',
+ "deactivated" = 'sound/vox/deactivated.ogg',
+ "decompression" = 'sound/vox/decompression.ogg',
+ "decontamination" = 'sound/vox/decontamination.ogg',
+ "deeoo" = 'sound/vox/deeoo.ogg',
+ "defense" = 'sound/vox/defense.ogg',
+ "degrees" = 'sound/vox/degrees.ogg',
+ "delta" = 'sound/vox/delta.ogg',
+ "denied" = 'sound/vox/denied.ogg',
+ "deploy" = 'sound/vox/deploy.ogg',
+ "deployed" = 'sound/vox/deployed.ogg',
+ "destroy" = 'sound/vox/destroy.ogg',
+ "destroyed" = 'sound/vox/destroyed.ogg',
+ "detain" = 'sound/vox/detain.ogg',
+ "detected" = 'sound/vox/detected.ogg',
+ "detonation" = 'sound/vox/detonation.ogg',
+ "device" = 'sound/vox/device.ogg',
+ "did" = 'sound/vox/did.ogg',
+ "die" = 'sound/vox/die.ogg',
+ "dimensional" = 'sound/vox/dimensional.ogg',
+ "dirt" = 'sound/vox/dirt.ogg',
+ "disengaged" = 'sound/vox/disengaged.ogg',
+ "dish" = 'sound/vox/dish.ogg',
+ "disposal" = 'sound/vox/disposal.ogg',
+ "distance" = 'sound/vox/distance.ogg',
+ "distortion" = 'sound/vox/distortion.ogg',
+ "do" = 'sound/vox/do.ogg',
+ "doctor" = 'sound/vox/doctor.ogg',
+ "doop" = 'sound/vox/doop.ogg',
+ "door" = 'sound/vox/door.ogg',
+ "down" = 'sound/vox/down.ogg',
+ "dual" = 'sound/vox/dual.ogg',
+ "duct" = 'sound/vox/duct.ogg',
+ "e" = 'sound/vox/e.ogg',
+ "east" = 'sound/vox/east.ogg',
+ "echo" = 'sound/vox/echo.ogg',
+ "ed" = 'sound/vox/ed.ogg',
+ "effect" = 'sound/vox/effect.ogg',
+ "egress" = 'sound/vox/egress.ogg',
+ "eight" = 'sound/vox/eight.ogg',
+ "eighteen" = 'sound/vox/eighteen.ogg',
+ "eighty" = 'sound/vox/eighty.ogg',
+ "electric" = 'sound/vox/electric.ogg',
+ "electromagnetic" = 'sound/vox/electromagnetic.ogg',
+ "elevator" = 'sound/vox/elevator.ogg',
+ "eleven" = 'sound/vox/eleven.ogg',
+ "eliminate" = 'sound/vox/eliminate.ogg',
+ "emergency" = 'sound/vox/emergency.ogg',
+ "enemy" = 'sound/vox/enemy.ogg',
+ "energy" = 'sound/vox/energy.ogg',
+ "engage" = 'sound/vox/engage.ogg',
+ "engaged" = 'sound/vox/engaged.ogg',
+ "engine" = 'sound/vox/engine.ogg',
+ "enter" = 'sound/vox/enter.ogg',
+ "entry" = 'sound/vox/entry.ogg',
+ "environment" = 'sound/vox/environment.ogg',
+ "error" = 'sound/vox/error.ogg',
+ "escape" = 'sound/vox/escape.ogg',
+ "evacuate" = 'sound/vox/evacuate.ogg',
+ "exchange" = 'sound/vox/exchange.ogg',
+ "exit" = 'sound/vox/exit.ogg',
+ "expect" = 'sound/vox/expect.ogg',
+ "experiment" = 'sound/vox/experiment.ogg',
+ "experimental" = 'sound/vox/experimental.ogg',
+ "explode" = 'sound/vox/explode.ogg',
+ "explosion" = 'sound/vox/explosion.ogg',
+ "exposure" = 'sound/vox/exposure.ogg',
+ "exterminate" = 'sound/vox/exterminate.ogg',
+ "extinguish" = 'sound/vox/extinguish.ogg',
+ "extinguisher" = 'sound/vox/extinguisher.ogg',
+ "extreme" = 'sound/vox/extreme.ogg',
+ "f" = 'sound/vox/f.ogg',
+ "face" = 'sound/vox/face.ogg',
+ "facility" = 'sound/vox/facility.ogg',
+ "fahrenheit" = 'sound/vox/fahrenheit.ogg',
+ "failed" = 'sound/vox/failed.ogg',
+ "failure" = 'sound/vox/failure.ogg',
+ "farthest" = 'sound/vox/farthest.ogg',
+ "fast" = 'sound/vox/fast.ogg',
+ "feet" = 'sound/vox/feet.ogg',
+ "field" = 'sound/vox/field.ogg',
+ "fifteen" = 'sound/vox/fifteen.ogg',
+ "fifth" = 'sound/vox/fifth.ogg',
+ "fifty" = 'sound/vox/fifty.ogg',
+ "final" = 'sound/vox/final.ogg',
+ "fine" = 'sound/vox/fine.ogg',
+ "fire" = 'sound/vox/fire.ogg',
+ "first" = 'sound/vox/first.ogg',
+ "five" = 'sound/vox/five.ogg',
+ "flag" = 'sound/vox/flag.ogg',
+ "flooding" = 'sound/vox/flooding.ogg',
+ "floor" = 'sound/vox/floor.ogg',
+ "fool" = 'sound/vox/fool.ogg',
+ "for" = 'sound/vox/for.ogg',
+ "forbidden" = 'sound/vox/forbidden.ogg',
+ "force" = 'sound/vox/force.ogg',
+ "forms" = 'sound/vox/forms.ogg',
+ "found" = 'sound/vox/found.ogg',
+ "four" = 'sound/vox/four.ogg',
+ "fourteen" = 'sound/vox/fourteen.ogg',
+ "fourth" = 'sound/vox/fourth.ogg',
+ "fourty" = 'sound/vox/fourty.ogg',
+ "foxtrot" = 'sound/vox/foxtrot.ogg',
+ "freeman" = 'sound/vox/freeman.ogg',
+ "freezer" = 'sound/vox/freezer.ogg',
+ "from" = 'sound/vox/from.ogg',
+ "front" = 'sound/vox/front.ogg',
+ "fuel" = 'sound/vox/fuel.ogg',
+ "g" = 'sound/vox/g.ogg',
+ "gay" = 'sound/vox/gay.ogg',
+ "get" = 'sound/vox/get.ogg',
+ "go" = 'sound/vox/go.ogg',
+ "going" = 'sound/vox/going.ogg',
+ "good" = 'sound/vox/good.ogg',
+ "goodbye" = 'sound/vox/goodbye.ogg',
+ "gordon" = 'sound/vox/gordon.ogg',
+ "got" = 'sound/vox/got.ogg',
+ "government" = 'sound/vox/government.ogg',
+ "granted" = 'sound/vox/granted.ogg',
+ "great" = 'sound/vox/great.ogg',
+ "green" = 'sound/vox/green.ogg',
+ "grenade" = 'sound/vox/grenade.ogg',
+ "guard" = 'sound/vox/guard.ogg',
+ "gulf" = 'sound/vox/gulf.ogg',
+ "gun" = 'sound/vox/gun.ogg',
+ "guthrie" = 'sound/vox/guthrie.ogg',
+ "handling" = 'sound/vox/handling.ogg',
+ "hangar" = 'sound/vox/hangar.ogg',
+ "has" = 'sound/vox/has.ogg',
+ "have" = 'sound/vox/have.ogg',
+ "hazard" = 'sound/vox/hazard.ogg',
+ "head" = 'sound/vox/head.ogg',
+ "health" = 'sound/vox/health.ogg',
+ "heat" = 'sound/vox/heat.ogg',
+ "helicopter" = 'sound/vox/helicopter.ogg',
+ "helium" = 'sound/vox/helium.ogg',
+ "hello" = 'sound/vox/hello.ogg',
+ "help" = 'sound/vox/help.ogg',
+ "here" = 'sound/vox/here.ogg',
+ "hide" = 'sound/vox/hide.ogg',
+ "high" = 'sound/vox/high.ogg',
+ "highest" = 'sound/vox/highest.ogg',
+ "hit" = 'sound/vox/hit.ogg',
+ "holds" = 'sound/vox/holds.ogg',
+ "hole" = 'sound/vox/hole.ogg',
+ "hostile" = 'sound/vox/hostile.ogg',
+ "hot" = 'sound/vox/hot.ogg',
+ "hotel" = 'sound/vox/hotel.ogg',
+ "hour" = 'sound/vox/hour.ogg',
+ "hours" = 'sound/vox/hours.ogg',
+ "hundred" = 'sound/vox/hundred.ogg',
+ "hydro" = 'sound/vox/hydro.ogg',
+ "i" = 'sound/vox/i.ogg',
+ "idiot" = 'sound/vox/idiot.ogg',
+ "illegal" = 'sound/vox/illegal.ogg',
+ "immediate" = 'sound/vox/immediate.ogg',
+ "immediately" = 'sound/vox/immediately.ogg',
+ "in" = 'sound/vox/in.ogg',
+ "inches" = 'sound/vox/inches.ogg',
+ "india" = 'sound/vox/india.ogg',
+ "ing" = 'sound/vox/ing.ogg',
+ "inoperative" = 'sound/vox/inoperative.ogg',
+ "inside" = 'sound/vox/inside.ogg',
+ "inspection" = 'sound/vox/inspection.ogg',
+ "inspector" = 'sound/vox/inspector.ogg',
+ "interchange" = 'sound/vox/interchange.ogg',
+ "intruder" = 'sound/vox/intruder.ogg',
+ "invallid" = 'sound/vox/invallid.ogg',
+ "invasion" = 'sound/vox/invasion.ogg',
+ "is" = 'sound/vox/is.ogg',
+ "it" = 'sound/vox/it.ogg',
+ "johnson" = 'sound/vox/johnson.ogg',
+ "juliet" = 'sound/vox/juliet.ogg',
+ "key" = 'sound/vox/key.ogg',
+ "kill" = 'sound/vox/kill.ogg',
+ "kilo" = 'sound/vox/kilo.ogg',
+ "kit" = 'sound/vox/kit.ogg',
+ "lab" = 'sound/vox/lab.ogg',
+ "lambda" = 'sound/vox/lambda.ogg',
+ "laser" = 'sound/vox/laser.ogg',
+ "last" = 'sound/vox/last.ogg',
+ "launch" = 'sound/vox/launch.ogg',
+ "leak" = 'sound/vox/leak.ogg',
+ "leave" = 'sound/vox/leave.ogg',
+ "left" = 'sound/vox/left.ogg',
+ "legal" = 'sound/vox/legal.ogg',
+ "level" = 'sound/vox/level.ogg',
+ "lever" = 'sound/vox/lever.ogg',
+ "lie" = 'sound/vox/lie.ogg',
+ "lieutenant" = 'sound/vox/lieutenant.ogg',
+ "life" = 'sound/vox/life.ogg',
+ "light" = 'sound/vox/light.ogg',
+ "lima" = 'sound/vox/lima.ogg',
+ "liquid" = 'sound/vox/liquid.ogg',
+ "loading" = 'sound/vox/loading.ogg',
+ "locate" = 'sound/vox/locate.ogg',
+ "located" = 'sound/vox/located.ogg',
+ "location" = 'sound/vox/location.ogg',
+ "lock" = 'sound/vox/lock.ogg',
+ "locked" = 'sound/vox/locked.ogg',
+ "locker" = 'sound/vox/locker.ogg',
+ "lockout" = 'sound/vox/lockout.ogg',
+ "lower" = 'sound/vox/lower.ogg',
+ "lowest" = 'sound/vox/lowest.ogg',
+ "magnetic" = 'sound/vox/magnetic.ogg',
+ "main" = 'sound/vox/main.ogg',
+ "maintenance" = 'sound/vox/maintenance.ogg',
+ "malfunction" = 'sound/vox/malfunction.ogg',
+ "man" = 'sound/vox/man.ogg',
+ "mass" = 'sound/vox/mass.ogg',
+ "materials" = 'sound/vox/materials.ogg',
+ "maximum" = 'sound/vox/maximum.ogg',
+ "may" = 'sound/vox/may.ogg',
+ "med" = 'sound/vox/med.ogg',
+ "medical" = 'sound/vox/medical.ogg',
+ "men" = 'sound/vox/men.ogg',
+ "mercy" = 'sound/vox/mercy.ogg',
+ "mesa" = 'sound/vox/mesa.ogg',
+ "message" = 'sound/vox/message.ogg',
+ "meter" = 'sound/vox/meter.ogg',
+ "micro" = 'sound/vox/micro.ogg',
+ "middle" = 'sound/vox/middle.ogg',
+ "mike" = 'sound/vox/mike.ogg',
+ "miles" = 'sound/vox/miles.ogg',
+ "military" = 'sound/vox/military.ogg',
+ "milli" = 'sound/vox/milli.ogg',
+ "million" = 'sound/vox/million.ogg',
+ "minefield" = 'sound/vox/minefield.ogg',
+ "minimum" = 'sound/vox/minimum.ogg',
+ "minutes" = 'sound/vox/minutes.ogg',
+ "mister" = 'sound/vox/mister.ogg',
+ "mode" = 'sound/vox/mode.ogg',
+ "motor" = 'sound/vox/motor.ogg',
+ "motorpool" = 'sound/vox/motorpool.ogg',
+ "move" = 'sound/vox/move.ogg',
+ "must" = 'sound/vox/must.ogg',
+ "nearest" = 'sound/vox/nearest.ogg',
+ "nice" = 'sound/vox/nice.ogg',
+ "nine" = 'sound/vox/nine.ogg',
+ "nineteen" = 'sound/vox/nineteen.ogg',
+ "ninety" = 'sound/vox/ninety.ogg',
+ "no" = 'sound/vox/no.ogg',
+ "nominal" = 'sound/vox/nominal.ogg',
+ "north" = 'sound/vox/north.ogg',
+ "not" = 'sound/vox/not.ogg',
+ "november" = 'sound/vox/november.ogg',
+ "now" = 'sound/vox/now.ogg',
+ "number" = 'sound/vox/number.ogg',
+ "objective" = 'sound/vox/objective.ogg',
+ "observation" = 'sound/vox/observation.ogg',
+ "of" = 'sound/vox/of.ogg',
+ "officer" = 'sound/vox/officer.ogg',
+ "ok" = 'sound/vox/ok.ogg',
+ "on" = 'sound/vox/on.ogg',
+ "one" = 'sound/vox/one.ogg',
+ "open" = 'sound/vox/open.ogg',
+ "operating" = 'sound/vox/operating.ogg',
+ "operations" = 'sound/vox/operations.ogg',
+ "operative" = 'sound/vox/operative.ogg',
+ "option" = 'sound/vox/option.ogg',
+ "order" = 'sound/vox/order.ogg',
+ "organic" = 'sound/vox/organic.ogg',
+ "oscar" = 'sound/vox/oscar.ogg',
+ "out" = 'sound/vox/out.ogg',
+ "outside" = 'sound/vox/outside.ogg',
+ "over" = 'sound/vox/over.ogg',
+ "overload" = 'sound/vox/overload.ogg',
+ "override" = 'sound/vox/override.ogg',
+ "pacify" = 'sound/vox/pacify.ogg',
+ "pain" = 'sound/vox/pain.ogg',
+ "pal" = 'sound/vox/pal.ogg',
+ "panel" = 'sound/vox/panel.ogg',
+ "percent" = 'sound/vox/percent.ogg',
+ "perimeter" = 'sound/vox/perimeter.ogg',
+ "permitted" = 'sound/vox/permitted.ogg',
+ "personnel" = 'sound/vox/personnel.ogg',
+ "pipe" = 'sound/vox/pipe.ogg',
+ "plant" = 'sound/vox/plant.ogg',
+ "platform" = 'sound/vox/platform.ogg',
+ "please" = 'sound/vox/please.ogg',
+ "point" = 'sound/vox/point.ogg',
+ "portal" = 'sound/vox/portal.ogg',
+ "power" = 'sound/vox/power.ogg',
+ "presence" = 'sound/vox/presence.ogg',
+ "press" = 'sound/vox/press.ogg',
+ "primary" = 'sound/vox/primary.ogg',
+ "proceed" = 'sound/vox/proceed.ogg',
+ "processing" = 'sound/vox/processing.ogg',
+ "progress" = 'sound/vox/progress.ogg',
+ "proper" = 'sound/vox/proper.ogg',
+ "propulsion" = 'sound/vox/propulsion.ogg',
+ "prosecute" = 'sound/vox/prosecute.ogg',
+ "protective" = 'sound/vox/protective.ogg',
+ "push" = 'sound/vox/push.ogg',
+ "quantum" = 'sound/vox/quantum.ogg',
+ "quebec" = 'sound/vox/quebec.ogg',
+ "question" = 'sound/vox/question.ogg',
+ "questioning" = 'sound/vox/questioning.ogg',
+ "quick" = 'sound/vox/quick.ogg',
+ "quit" = 'sound/vox/quit.ogg',
+ "radiation" = 'sound/vox/radiation.ogg',
+ "radioactive" = 'sound/vox/radioactive.ogg',
+ "rads" = 'sound/vox/rads.ogg',
+ "rapid" = 'sound/vox/rapid.ogg',
+ "reach" = 'sound/vox/reach.ogg',
+ "reached" = 'sound/vox/reached.ogg',
+ "reactor" = 'sound/vox/reactor.ogg',
+ "red" = 'sound/vox/red.ogg',
+ "relay" = 'sound/vox/relay.ogg',
+ "released" = 'sound/vox/released.ogg',
+ "remaining" = 'sound/vox/remaining.ogg',
+ "renegade" = 'sound/vox/renegade.ogg',
+ "repair" = 'sound/vox/repair.ogg',
+ "report" = 'sound/vox/report.ogg',
+ "reports" = 'sound/vox/reports.ogg',
+ "required" = 'sound/vox/required.ogg',
+ "research" = 'sound/vox/research.ogg',
+ "reset" = 'sound/vox/reset.ogg',
+ "resevoir" = 'sound/vox/resevoir.ogg',
+ "resistance" = 'sound/vox/resistance.ogg',
+ "returned" = 'sound/vox/returned.ogg',
+ "right" = 'sound/vox/right.ogg',
+ "rocket" = 'sound/vox/rocket.ogg',
+ "roger" = 'sound/vox/roger.ogg',
+ "romeo" = 'sound/vox/romeo.ogg',
+ "room" = 'sound/vox/room.ogg',
+ "round" = 'sound/vox/round.ogg',
+ "run" = 'sound/vox/run.ogg',
+ "safe" = 'sound/vox/safe.ogg',
+ "safety" = 'sound/vox/safety.ogg',
+ "sargeant" = 'sound/vox/sargeant.ogg',
+ "satellite" = 'sound/vox/satellite.ogg',
+ "save" = 'sound/vox/save.ogg',
+ "science" = 'sound/vox/science.ogg',
+ "scores" = 'sound/vox/scores.ogg',
+ "scream" = 'sound/vox/scream.ogg',
+ "screen" = 'sound/vox/screen.ogg',
+ "search" = 'sound/vox/search.ogg',
+ "second" = 'sound/vox/second.ogg',
+ "secondary" = 'sound/vox/secondary.ogg',
+ "seconds" = 'sound/vox/seconds.ogg',
+ "sector" = 'sound/vox/sector.ogg',
+ "secure" = 'sound/vox/secure.ogg',
+ "secured" = 'sound/vox/secured.ogg',
+ "security" = 'sound/vox/security.ogg',
+ "select" = 'sound/vox/select.ogg',
+ "selected" = 'sound/vox/selected.ogg',
+ "service" = 'sound/vox/service.ogg',
+ "seven" = 'sound/vox/seven.ogg',
+ "seventeen" = 'sound/vox/seventeen.ogg',
+ "seventy" = 'sound/vox/seventy.ogg',
+ "severe" = 'sound/vox/severe.ogg',
+ "sewage" = 'sound/vox/sewage.ogg',
+ "sewer" = 'sound/vox/sewer.ogg',
+ "shield" = 'sound/vox/shield.ogg',
+ "shipment" = 'sound/vox/shipment.ogg',
+ "shock" = 'sound/vox/shock.ogg',
+ "shoot" = 'sound/vox/shoot.ogg',
+ "shower" = 'sound/vox/shower.ogg',
+ "shut" = 'sound/vox/shut.ogg',
+ "side" = 'sound/vox/side.ogg',
+ "sierra" = 'sound/vox/sierra.ogg',
+ "sight" = 'sound/vox/sight.ogg',
+ "silo" = 'sound/vox/silo.ogg',
+ "six" = 'sound/vox/six.ogg',
+ "sixteen" = 'sound/vox/sixteen.ogg',
+ "sixty" = 'sound/vox/sixty.ogg',
+ "slime" = 'sound/vox/slime.ogg',
+ "slow" = 'sound/vox/slow.ogg',
+ "soldier" = 'sound/vox/soldier.ogg',
+ "some" = 'sound/vox/some.ogg',
+ "someone" = 'sound/vox/someone.ogg',
+ "something" = 'sound/vox/something.ogg',
+ "son" = 'sound/vox/son.ogg',
+ "sorry" = 'sound/vox/sorry.ogg',
+ "south" = 'sound/vox/south.ogg',
+ "squad" = 'sound/vox/squad.ogg',
+ "square" = 'sound/vox/square.ogg',
+ "stairway" = 'sound/vox/stairway.ogg',
+ "status" = 'sound/vox/status.ogg',
+ "sterile" = 'sound/vox/sterile.ogg',
+ "sterilization" = 'sound/vox/sterilization.ogg',
+ "stolen" = 'sound/vox/stolen.ogg',
+ "storage" = 'sound/vox/storage.ogg',
+ "sub" = 'sound/vox/sub.ogg',
+ "subsurface" = 'sound/vox/subsurface.ogg',
+ "sudden" = 'sound/vox/sudden.ogg',
+ "suit" = 'sound/vox/suit.ogg',
+ "superconducting" = 'sound/vox/superconducting.ogg',
+ "supercooled" = 'sound/vox/supercooled.ogg',
+ "supply" = 'sound/vox/supply.ogg',
+ "surface" = 'sound/vox/surface.ogg',
+ "surrender" = 'sound/vox/surrender.ogg',
+ "surround" = 'sound/vox/surround.ogg',
+ "surrounded" = 'sound/vox/surrounded.ogg',
+ "switch" = 'sound/vox/switch.ogg',
+ "system" = 'sound/vox/system.ogg',
+ "systems" = 'sound/vox/systems.ogg',
+ "tactical" = 'sound/vox/tactical.ogg',
+ "take" = 'sound/vox/take.ogg',
+ "talk" = 'sound/vox/talk.ogg',
+ "tango" = 'sound/vox/tango.ogg',
+ "tank" = 'sound/vox/tank.ogg',
+ "target" = 'sound/vox/target.ogg',
+ "team" = 'sound/vox/team.ogg',
+ "temperature" = 'sound/vox/temperature.ogg',
+ "temporal" = 'sound/vox/temporal.ogg',
+ "ten" = 'sound/vox/ten.ogg',
+ "terminal" = 'sound/vox/terminal.ogg',
+ "terminated" = 'sound/vox/terminated.ogg',
+ "termination" = 'sound/vox/termination.ogg',
+ "test" = 'sound/vox/test.ogg',
+ "that" = 'sound/vox/that.ogg',
+ "the" = 'sound/vox/the.ogg',
+ "then" = 'sound/vox/then.ogg',
+ "there" = 'sound/vox/there.ogg',
+ "third" = 'sound/vox/third.ogg',
+ "thirteen" = 'sound/vox/thirteen.ogg',
+ "thirty" = 'sound/vox/thirty.ogg',
+ "this" = 'sound/vox/this.ogg',
+ "those" = 'sound/vox/those.ogg',
+ "thousand" = 'sound/vox/thousand.ogg',
+ "threat" = 'sound/vox/threat.ogg',
+ "three" = 'sound/vox/three.ogg',
+ "through" = 'sound/vox/through.ogg',
+ "time" = 'sound/vox/time.ogg',
+ "to" = 'sound/vox/to.ogg',
+ "top" = 'sound/vox/top.ogg',
+ "topside" = 'sound/vox/topside.ogg',
+ "touch" = 'sound/vox/touch.ogg',
+ "towards" = 'sound/vox/towards.ogg',
+ "track" = 'sound/vox/track.ogg',
+ "train" = 'sound/vox/train.ogg',
+ "transportation" = 'sound/vox/transportation.ogg',
+ "truck" = 'sound/vox/truck.ogg',
+ "tunnel" = 'sound/vox/tunnel.ogg',
+ "turn" = 'sound/vox/turn.ogg',
+ "turret" = 'sound/vox/turret.ogg',
+ "twelve" = 'sound/vox/twelve.ogg',
+ "twenty" = 'sound/vox/twenty.ogg',
+ "two" = 'sound/vox/two.ogg',
+ "unauthorized" = 'sound/vox/unauthorized.ogg',
+ "under" = 'sound/vox/under.ogg',
+ "uniform" = 'sound/vox/uniform.ogg',
+ "unlocked" = 'sound/vox/unlocked.ogg',
+ "until" = 'sound/vox/until.ogg',
+ "up" = 'sound/vox/up.ogg',
+ "upper" = 'sound/vox/upper.ogg',
+ "uranium" = 'sound/vox/uranium.ogg',
+ "us" = 'sound/vox/us.ogg',
+ "usa" = 'sound/vox/usa.ogg',
+ "use" = 'sound/vox/use.ogg',
+ "used" = 'sound/vox/used.ogg',
+ "user" = 'sound/vox/user.ogg',
+ "vacate" = 'sound/vox/vacate.ogg',
+ "valid" = 'sound/vox/valid.ogg',
+ "vapor" = 'sound/vox/vapor.ogg',
+ "vent" = 'sound/vox/vent.ogg',
+ "ventillation" = 'sound/vox/ventillation.ogg',
+ "victor" = 'sound/vox/victor.ogg',
+ "violated" = 'sound/vox/violated.ogg',
+ "violation" = 'sound/vox/violation.ogg',
+ "voltage" = 'sound/vox/voltage.ogg',
+ "vox_login" = 'sound/vox/vox_login.ogg',
+ "walk" = 'sound/vox/walk.ogg',
+ "wall" = 'sound/vox/wall.ogg',
+ "want" = 'sound/vox/want.ogg',
+ "wanted" = 'sound/vox/wanted.ogg',
+ "warm" = 'sound/vox/warm.ogg',
+ "warn" = 'sound/vox/warn.ogg',
+ "warning" = 'sound/vox/warning.ogg',
+ "waste" = 'sound/vox/waste.ogg',
+ "water" = 'sound/vox/water.ogg',
+ "we" = 'sound/vox/we.ogg',
+ "weapon" = 'sound/vox/weapon.ogg',
+ "west" = 'sound/vox/west.ogg',
+ "whiskey" = 'sound/vox/whiskey.ogg',
+ "white" = 'sound/vox/white.ogg',
+ "wilco" = 'sound/vox/wilco.ogg',
+ "will" = 'sound/vox/will.ogg',
+ "with" = 'sound/vox/with.ogg',
+ "without" = 'sound/vox/without.ogg',
+ "woop" = 'sound/vox/woop.ogg',
+ "xeno" = 'sound/vox/xeno.ogg',
+ "yankee" = 'sound/vox/yankee.ogg',
+ "yards" = 'sound/vox/yards.ogg',
+ "year" = 'sound/vox/year.ogg',
+ "yellow" = 'sound/vox/yellow.ogg',
+ "yes" = 'sound/vox/yes.ogg',
+ "you" = 'sound/vox/you.ogg',
+ "your" = 'sound/vox/your.ogg',
+ "yourself" = 'sound/vox/yourself.ogg',
+ "zero" = 'sound/vox/zero.ogg',
+ "zone" = 'sound/vox/zone.ogg',
+ "zulu" = 'sound/vox/zulu.ogg'
+ ),
+ //for vim
+ // :%s/\(\(.*\)\.ogg\)/"\2" = 'modular_sand\/sound\/vox_military\/\1',/g
+ "Military" = list(
+ "access" = 'modular_sand/sound/vox_military/access.ogg',
+ "acknowledged" = 'modular_sand/sound/vox_military/acknowledged.ogg',
+ "activate" = 'modular_sand/sound/vox_military/activate.ogg',
+ "activated" = 'modular_sand/sound/vox_military/activated.ogg',
+ "activity" = 'modular_sand/sound/vox_military/activity.ogg',
+ "advanced" = 'modular_sand/sound/vox_military/advanced.ogg',
+ "alert" = 'modular_sand/sound/vox_military/alert.ogg',
+ "alien" = 'modular_sand/sound/vox_military/alien.ogg',
+ "all" = 'modular_sand/sound/vox_military/all.ogg',
+ "alpha" = 'modular_sand/sound/vox_military/alpha.ogg',
+ "an" = 'modular_sand/sound/vox_military/an.ogg',
+ "and" = 'modular_sand/sound/vox_military/and.ogg',
+ "announcement" = 'modular_sand/sound/vox_military/announcement.ogg',
+ "antenna" = 'modular_sand/sound/vox_military/antenna.ogg',
+ "any" = 'modular_sand/sound/vox_military/any.ogg',
+ "approach" = 'modular_sand/sound/vox_military/approach.ogg',
+ "are" = 'modular_sand/sound/vox_military/are.ogg',
+ "area" = 'modular_sand/sound/vox_military/area.ogg',
+ "armed" = 'modular_sand/sound/vox_military/armed.ogg',
+ "armory" = 'modular_sand/sound/vox_military/armory.ogg',
+ "atomic" = 'modular_sand/sound/vox_military/atomic.ogg',
+ "attention" = 'modular_sand/sound/vox_military/attention.ogg',
+ "authorized" = 'modular_sand/sound/vox_military/authorized.ogg',
+ "automatic" = 'modular_sand/sound/vox_military/automatic.ogg',
+ "away" = 'modular_sand/sound/vox_military/away.ogg',
+ "b" = 'modular_sand/sound/vox_military/b.ogg',
+ "back" = 'modular_sand/sound/vox_military/back.ogg',
+ "base" = 'modular_sand/sound/vox_military/base.ogg',
+ "biohazard" = 'modular_sand/sound/vox_military/biohazard.ogg',
+ "biological" = 'modular_sand/sound/vox_military/biological.ogg',
+ "black" = 'modular_sand/sound/vox_military/black.ogg',
+ "blast" = 'modular_sand/sound/vox_military/blast.ogg',
+ "blue" = 'modular_sand/sound/vox_military/blue.ogg',
+ "bravo" = 'modular_sand/sound/vox_military/bravo.ogg',
+ "breach" = 'modular_sand/sound/vox_military/breach.ogg',
+ "bypass" = 'modular_sand/sound/vox_military/bypass.ogg',
+ "cable" = 'modular_sand/sound/vox_military/cable.ogg',
+ "center" = 'modular_sand/sound/vox_military/center.ogg',
+ "central" = 'modular_sand/sound/vox_military/central.ogg',
+ "chamber" = 'modular_sand/sound/vox_military/chamber.ogg',
+ "check" = 'modular_sand/sound/vox_military/check.ogg',
+ "checkpoint" = 'modular_sand/sound/vox_military/checkpoint.ogg',
+ "chemical" = 'modular_sand/sound/vox_military/chemical.ogg',
+ "clear" = 'modular_sand/sound/vox_military/clear.ogg',
+ "code" = 'modular_sand/sound/vox_military/code.ogg',
+ "command" = 'modular_sand/sound/vox_military/command.ogg',
+ "communications" = 'modular_sand/sound/vox_military/communications.ogg',
+ "complex" = 'modular_sand/sound/vox_military/complex.ogg',
+ "containment" = 'modular_sand/sound/vox_military/containment.ogg',
+ "contamination" = 'modular_sand/sound/vox_military/contamination.ogg',
+ "control" = 'modular_sand/sound/vox_military/control.ogg',
+ "coolant" = 'modular_sand/sound/vox_military/coolant.ogg',
+ "core" = 'modular_sand/sound/vox_military/core.ogg',
+ "crew" = 'modular_sand/sound/vox_military/crew.ogg',
+ "cross" = 'modular_sand/sound/vox_military/cross.ogg',
+ "d" = 'modular_sand/sound/vox_military/d.ogg',
+ "damage" = 'modular_sand/sound/vox_military/damage.ogg',
+ "danger" = 'modular_sand/sound/vox_military/danger.ogg',
+ "day" = 'modular_sand/sound/vox_military/day.ogg',
+ "deactivated" = 'modular_sand/sound/vox_military/deactivated.ogg',
+ "defense" = 'modular_sand/sound/vox_military/defense.ogg',
+ "delta" = 'modular_sand/sound/vox_military/delta.ogg',
+ "denied" = 'modular_sand/sound/vox_military/denied.ogg',
+ "destroy" = 'modular_sand/sound/vox_military/destroy.ogg',
+ "detected" = 'modular_sand/sound/vox_military/detected.ogg',
+ "detonation" = 'modular_sand/sound/vox_military/detonation.ogg',
+ "device" = 'modular_sand/sound/vox_military/device.ogg',
+ "dimensional" = 'modular_sand/sound/vox_military/dimensional.ogg',
+ "disengaged" = 'modular_sand/sound/vox_military/disengaged.ogg',
+ "do" = 'modular_sand/sound/vox_military/do.ogg',
+ "door" = 'modular_sand/sound/vox_military/door.ogg',
+ "down" = 'modular_sand/sound/vox_military/down.ogg',
+ "e" = 'modular_sand/sound/vox_military/e.ogg',
+ "echo" = 'modular_sand/sound/vox_military/echo.ogg',
+ "eight" = 'modular_sand/sound/vox_military/eight.ogg',
+ "eighteen" = 'modular_sand/sound/vox_military/eighteen.ogg',
+ "eighty" = 'modular_sand/sound/vox_military/eighty.ogg',
+ "electric" = 'modular_sand/sound/vox_military/electric.ogg',
+ "eleven" = 'modular_sand/sound/vox_military/eleven.ogg',
+ "eliminate" = 'modular_sand/sound/vox_military/eliminate.ogg',
+ "emergency" = 'modular_sand/sound/vox_military/emergency.ogg',
+ "energy" = 'modular_sand/sound/vox_military/energy.ogg',
+ "engage" = 'modular_sand/sound/vox_military/engage.ogg',
+ "engaged" = 'modular_sand/sound/vox_military/engaged.ogg',
+ "enter" = 'modular_sand/sound/vox_military/enter.ogg',
+ "entry" = 'modular_sand/sound/vox_military/entry.ogg',
+ "escape" = 'modular_sand/sound/vox_military/escape.ogg',
+ "evacuate" = 'modular_sand/sound/vox_military/evacuate.ogg',
+ "exchange" = 'modular_sand/sound/vox_military/exchange.ogg',
+ "experimental" = 'modular_sand/sound/vox_military/experimental.ogg',
+ "extreme" = 'modular_sand/sound/vox_military/extreme.ogg',
+ "facility" = 'modular_sand/sound/vox_military/facility.ogg',
+ "failed" = 'modular_sand/sound/vox_military/failed.ogg',
+ "failure" = 'modular_sand/sound/vox_military/failure.ogg',
+ "field" = 'modular_sand/sound/vox_military/field.ogg',
+ "fifteen" = 'modular_sand/sound/vox_military/fifteen.ogg',
+ "fifty" = 'modular_sand/sound/vox_military/fifty.ogg',
+ "fire" = 'modular_sand/sound/vox_military/fire.ogg',
+ "five" = 'modular_sand/sound/vox_military/five.ogg',
+ "forbidden" = 'modular_sand/sound/vox_military/forbidden.ogg',
+ "force" = 'modular_sand/sound/vox_military/force.ogg',
+ "forms" = 'modular_sand/sound/vox_military/forms.ogg',
+ "forty" = 'modular_sand/sound/vox_military/forty.ogg',
+ "four" = 'modular_sand/sound/vox_military/four.ogg',
+ "fourteen" = 'modular_sand/sound/vox_military/fourteen.ogg',
+ "freeman" = 'modular_sand/sound/vox_military/freeman.ogg',
+ "from" = 'modular_sand/sound/vox_military/from.ogg',
+ "fuel" = 'modular_sand/sound/vox_military/fuel.ogg',
+ "fx_bloop" = 'modular_sand/sound/vox_military/fx_bloop.ogg',
+ "fx_buzwarn" = 'modular_sand/sound/vox_military/fx_buzwarn.ogg',
+ "fx_dadeda" = 'modular_sand/sound/vox_military/fx_dadeda.ogg',
+ "fx_deeoo" = 'modular_sand/sound/vox_military/fx_deeoo.ogg',
+ "fx_doop" = 'modular_sand/sound/vox_military/fx_doop.ogg',
+ "fx_error_beep" = 'modular_sand/sound/vox_military/fx_error_beep.ogg',
+ "fx_signon_beep" = 'modular_sand/sound/vox_military/fx_signon_beep.ogg',
+ "get" = 'modular_sand/sound/vox_military/get.ogg',
+ "go" = 'modular_sand/sound/vox_military/go.ogg',
+ "gordon" = 'modular_sand/sound/vox_military/gordon.ogg',
+ "granted" = 'modular_sand/sound/vox_military/granted.ogg',
+ "green" = 'modular_sand/sound/vox_military/green.ogg',
+ "handling" = 'modular_sand/sound/vox_military/handling.ogg',
+ "hanger" = 'modular_sand/sound/vox_military/hanger.ogg',
+ "have" = 'modular_sand/sound/vox_military/have.ogg',
+ "hazard" = 'modular_sand/sound/vox_military/hazard.ogg',
+ "health" = 'modular_sand/sound/vox_military/health.ogg',
+ "heat" = 'modular_sand/sound/vox_military/heat.ogg',
+ "helecopter" = 'modular_sand/sound/vox_military/helecopter.ogg',
+ "helium" = 'modular_sand/sound/vox_military/helium.ogg',
+ "high" = 'modular_sand/sound/vox_military/high.ogg',
+ "hostal" = 'modular_sand/sound/vox_military/hostal.ogg',
+ "hostile" = 'modular_sand/sound/vox_military/hostile.ogg',
+ "hotel" = 'modular_sand/sound/vox_military/hotel.ogg',
+ "hundred" = 'modular_sand/sound/vox_military/hundred.ogg',
+ "hydro" = 'modular_sand/sound/vox_military/hydro.ogg',
+ "illegal" = 'modular_sand/sound/vox_military/illegal.ogg',
+ "immediate" = 'modular_sand/sound/vox_military/immediate.ogg',
+ "immediately" = 'modular_sand/sound/vox_military/immediately.ogg',
+ "in" = 'modular_sand/sound/vox_military/in.ogg',
+ "india" = 'modular_sand/sound/vox_military/india.ogg',
+ "inoperative" = 'modular_sand/sound/vox_military/inoperative.ogg',
+ "inside" = 'modular_sand/sound/vox_military/inside.ogg',
+ "inspection" = 'modular_sand/sound/vox_military/inspection.ogg',
+ "is" = 'modular_sand/sound/vox_military/is.ogg',
+ "kilo01" = 'modular_sand/sound/vox_military/kilo01.ogg',
+ "kilo02" = 'modular_sand/sound/vox_military/kilo02.ogg',
+ "lambda" = 'modular_sand/sound/vox_military/lambda.ogg',
+ "laser" = 'modular_sand/sound/vox_military/laser.ogg',
+ "launch" = 'modular_sand/sound/vox_military/launch.ogg',
+ "leak" = 'modular_sand/sound/vox_military/leak.ogg',
+ "level" = 'modular_sand/sound/vox_military/level.ogg',
+ "lima" = 'modular_sand/sound/vox_military/lima.ogg',
+ "lima_alt" = 'modular_sand/sound/vox_military/lima_alt.ogg',
+ "liquid" = 'modular_sand/sound/vox_military/liquid.ogg',
+ "lock" = 'modular_sand/sound/vox_military/lock.ogg',
+ "locked" = 'modular_sand/sound/vox_military/locked.ogg',
+ "lockout" = 'modular_sand/sound/vox_military/lockout.ogg',
+ "lower" = 'modular_sand/sound/vox_military/lower.ogg',
+ "main" = 'modular_sand/sound/vox_military/main.ogg',
+ "maintenance" = 'modular_sand/sound/vox_military/maintenance.ogg',
+ "malfunction" = 'modular_sand/sound/vox_military/malfunction.ogg',
+ "materials" = 'modular_sand/sound/vox_military/materials.ogg',
+ "may" = 'modular_sand/sound/vox_military/may.ogg',
+ "medical" = 'modular_sand/sound/vox_military/medical.ogg',
+ "men" = 'modular_sand/sound/vox_military/men.ogg',
+ "mesa" = 'modular_sand/sound/vox_military/mesa.ogg',
+ "message" = 'modular_sand/sound/vox_military/message.ogg',
+ "mic_mike" = 'modular_sand/sound/vox_military/mic_mike.ogg',
+ "mike" = 'modular_sand/sound/vox_military/mike.ogg',
+ "military" = 'modular_sand/sound/vox_military/military.ogg',
+ "motorpool" = 'modular_sand/sound/vox_military/motorpool.ogg',
+ "move" = 'modular_sand/sound/vox_military/move.ogg',
+ "must" = 'modular_sand/sound/vox_military/must.ogg',
+ "nearest" = 'modular_sand/sound/vox_military/nearest.ogg',
+ "nine" = 'modular_sand/sound/vox_military/nine.ogg',
+ "nineteen" = 'modular_sand/sound/vox_military/nineteen.ogg',
+ "ninety" = 'modular_sand/sound/vox_military/ninety.ogg',
+ "no" = 'modular_sand/sound/vox_military/no.ogg',
+ "noe" = 'modular_sand/sound/vox_military/noe.ogg',
+ "not" = 'modular_sand/sound/vox_military/not.ogg',
+ "now" = 'modular_sand/sound/vox_military/now.ogg',
+ "objective" = 'modular_sand/sound/vox_military/objective.ogg',
+ "of" = 'modular_sand/sound/vox_military/of.ogg',
+ "on" = 'modular_sand/sound/vox_military/on.ogg',
+ "one" = 'modular_sand/sound/vox_military/one.ogg',
+ "open" = 'modular_sand/sound/vox_military/open.ogg',
+ "operating" = 'modular_sand/sound/vox_military/operating.ogg',
+ "option" = 'modular_sand/sound/vox_military/option.ogg',
+ "out" = 'modular_sand/sound/vox_military/out.ogg',
+ "override" = 'modular_sand/sound/vox_military/override.ogg',
+ "percent" = 'modular_sand/sound/vox_military/percent.ogg',
+ "perimeter" = 'modular_sand/sound/vox_military/perimeter.ogg',
+ "permitted" = 'modular_sand/sound/vox_military/permitted.ogg',
+ "perpulsion" = 'modular_sand/sound/vox_military/perpulsion.ogg',
+ "personnel" = 'modular_sand/sound/vox_military/personnel.ogg',
+ "plant" = 'modular_sand/sound/vox_military/plant.ogg',
+ "please" = 'modular_sand/sound/vox_military/please.ogg',
+ "portal" = 'modular_sand/sound/vox_military/portal.ogg',
+ "power" = 'modular_sand/sound/vox_military/power.ogg',
+ "primary" = 'modular_sand/sound/vox_military/primary.ogg',
+ "prosecute" = 'modular_sand/sound/vox_military/prosecute.ogg',
+ "questioning" = 'modular_sand/sound/vox_military/questioning.ogg',
+ "radiation" = 'modular_sand/sound/vox_military/radiation.ogg',
+ "radioactive" = 'modular_sand/sound/vox_military/radioactive.ogg',
+ "reach" = 'modular_sand/sound/vox_military/reach.ogg',
+ "reactor" = 'modular_sand/sound/vox_military/reactor.ogg',
+ "relay" = 'modular_sand/sound/vox_military/relay.ogg',
+ "released" = 'modular_sand/sound/vox_military/released.ogg',
+ "remaining" = 'modular_sand/sound/vox_military/remaining.ogg',
+ "renegade" = 'modular_sand/sound/vox_military/renegade.ogg',
+ "repair" = 'modular_sand/sound/vox_military/repair.ogg',
+ "report" = 'modular_sand/sound/vox_military/report.ogg',
+ "reports" = 'modular_sand/sound/vox_military/reports.ogg',
+ "required" = 'modular_sand/sound/vox_military/required.ogg',
+ "research" = 'modular_sand/sound/vox_military/research.ogg',
+ "resistance" = 'modular_sand/sound/vox_military/resistance.ogg',
+ "rocket" = 'modular_sand/sound/vox_military/rocket.ogg',
+ "safety" = 'modular_sand/sound/vox_military/safety.ogg',
+ "satellite" = 'modular_sand/sound/vox_military/satellite.ogg',
+ "science" = 'modular_sand/sound/vox_military/science.ogg',
+ "search" = 'modular_sand/sound/vox_military/search.ogg',
+ "second" = 'modular_sand/sound/vox_military/second.ogg',
+ "secondary" = 'modular_sand/sound/vox_military/secondary.ogg',
+ "seconds" = 'modular_sand/sound/vox_military/seconds.ogg',
+ "sector" = 'modular_sand/sound/vox_military/sector.ogg',
+ "secure" = 'modular_sand/sound/vox_military/secure.ogg',
+ "secured" = 'modular_sand/sound/vox_military/secured.ogg',
+ "security" = 'modular_sand/sound/vox_military/security.ogg',
+ "service" = 'modular_sand/sound/vox_military/service.ogg',
+ "seven" = 'modular_sand/sound/vox_military/seven.ogg',
+ "seventeen" = 'modular_sand/sound/vox_military/seventeen.ogg',
+ "seventy" = 'modular_sand/sound/vox_military/seventy.ogg',
+ "severe" = 'modular_sand/sound/vox_military/severe.ogg',
+ "shield" = 'modular_sand/sound/vox_military/shield.ogg',
+ "shoot" = 'modular_sand/sound/vox_military/shoot.ogg',
+ "sierra" = 'modular_sand/sound/vox_military/sierra.ogg',
+ "sight" = 'modular_sand/sound/vox_military/sight.ogg',
+ "silo" = 'modular_sand/sound/vox_military/silo.ogg',
+ "six" = 'modular_sand/sound/vox_military/six.ogg',
+ "sixteen" = 'modular_sand/sound/vox_military/sixteen.ogg',
+ "sixty" = 'modular_sand/sound/vox_military/sixty.ogg',
+ "sorry" = 'modular_sand/sound/vox_military/sorry.ogg',
+ "sqaud" = 'modular_sand/sound/vox_military/sqaud.ogg',
+ "status" = 'modular_sand/sound/vox_military/status.ogg',
+ "sterilization" = 'modular_sand/sound/vox_military/sterilization.ogg',
+ "storage" = 'modular_sand/sound/vox_military/storage.ogg',
+ "supercooled" = 'modular_sand/sound/vox_military/supercooled.ogg',
+ "surrender" = 'modular_sand/sound/vox_military/surrender.ogg',
+ "system" = 'modular_sand/sound/vox_military/system.ogg',
+ "systems" = 'modular_sand/sound/vox_military/systems.ogg',
+ "target" = 'modular_sand/sound/vox_military/target.ogg',
+ "team" = 'modular_sand/sound/vox_military/team.ogg',
+ "ten" = 'modular_sand/sound/vox_military/ten.ogg',
+ "terminated" = 'modular_sand/sound/vox_military/terminated.ogg',
+ "test" = 'modular_sand/sound/vox_military/test.ogg',
+ "the" = 'modular_sand/sound/vox_military/the.ogg',
+ "thirtteen" = 'modular_sand/sound/vox_military/thirtteen.ogg',
+ "thirty" = 'modular_sand/sound/vox_military/thirty.ogg',
+ "this" = 'modular_sand/sound/vox_military/this.ogg',
+ "three" = 'modular_sand/sound/vox_military/three.ogg',
+ "time" = 'modular_sand/sound/vox_military/time.ogg',
+ "to" = 'modular_sand/sound/vox_military/to.ogg',
+ "topside" = 'modular_sand/sound/vox_military/topside.ogg',
+ "track" = 'modular_sand/sound/vox_military/track.ogg',
+ "train" = 'modular_sand/sound/vox_military/train.ogg',
+ "turret" = 'modular_sand/sound/vox_military/turret.ogg',
+ "twelve" = 'modular_sand/sound/vox_military/twelve.ogg',
+ "twenty" = 'modular_sand/sound/vox_military/twenty.ogg',
+ "two" = 'modular_sand/sound/vox_military/two.ogg',
+ "unauthorized" = 'modular_sand/sound/vox_military/unauthorized.ogg',
+ "under" = 'modular_sand/sound/vox_military/under.ogg',
+ "units" = 'modular_sand/sound/vox_military/units.ogg',
+ "until" = 'modular_sand/sound/vox_military/until.ogg',
+ "up" = 'modular_sand/sound/vox_military/up.ogg',
+ "uranium" = 'modular_sand/sound/vox_military/uranium.ogg',
+ "use" = 'modular_sand/sound/vox_military/use.ogg',
+ "violation" = 'modular_sand/sound/vox_military/violation.ogg',
+ "voltage" = 'modular_sand/sound/vox_military/voltage.ogg',
+ "wanted" = 'modular_sand/sound/vox_military/wanted.ogg',
+ "warning" = 'modular_sand/sound/vox_military/warning.ogg',
+ "we" = 'modular_sand/sound/vox_military/we.ogg',
+ "weapon" = 'modular_sand/sound/vox_military/weapon.ogg',
+ "will" = 'modular_sand/sound/vox_military/will.ogg',
+ "with" = 'modular_sand/sound/vox_military/with.ogg',
+ "yellow" = 'modular_sand/sound/vox_military/yellow.ogg',
+ "you" = 'modular_sand/sound/vox_military/you.ogg',
+ "your" = 'modular_sand/sound/vox_military/your.ogg',
+ "zero" = 'modular_sand/sound/vox_military/zero.ogg',
+ "zone" = 'modular_sand/sound/vox_military/zone.ogg',
+ "," = 'modular_sand/sound/vox_military/_comma.ogg',
+ "." = 'modular_sand/sound/vox_military/_period.ogg'
+ )
+)
#endif
diff --git a/modular_sand/code/modules/mob/living/silicon/ai/vox_sounds.dm b/modular_sand/code/modules/mob/living/silicon/ai/vox_sounds.dm
deleted file mode 100644
index eaf0635b44..0000000000
--- a/modular_sand/code/modules/mob/living/silicon/ai/vox_sounds.dm
+++ /dev/null
@@ -1,293 +0,0 @@
-#ifdef AI_VOX
-GLOBAL_LIST_INIT(vox_sounds_military, list("access" = 'modular_sand/sound/vox_military/access.ogg',
-"acknowledged" = 'modular_sand/sound/vox_military/acknowledged.ogg',
-"activate" = 'modular_sand/sound/vox_military/activate.ogg',
-"activated" = 'modular_sand/sound/vox_military/activated.ogg',
-"activity" = 'modular_sand/sound/vox_military/activity.ogg',
-"advanced" = 'modular_sand/sound/vox_military/advanced.ogg',
-"alert" = 'modular_sand/sound/vox_military/alert.ogg',
-"alien" = 'modular_sand/sound/vox_military/alien.ogg',
-"all" = 'modular_sand/sound/vox_military/all.ogg',
-"alpha" = 'modular_sand/sound/vox_military/alpha.ogg',
-"an" = 'modular_sand/sound/vox_military/an.ogg',
-"and" = 'modular_sand/sound/vox_military/and.ogg',
-"announcement" = 'modular_sand/sound/vox_military/announcement.ogg',
-"antenna" = 'modular_sand/sound/vox_military/antenna.ogg',
-"any" = 'modular_sand/sound/vox_military/any.ogg',
-"approach" = 'modular_sand/sound/vox_military/approach.ogg',
-"are" = 'modular_sand/sound/vox_military/are.ogg',
-"area" = 'modular_sand/sound/vox_military/area.ogg',
-"armed" = 'modular_sand/sound/vox_military/armed.ogg',
-"armory" = 'modular_sand/sound/vox_military/armory.ogg',
-"atomic" = 'modular_sand/sound/vox_military/atomic.ogg',
-"attention" = 'modular_sand/sound/vox_military/attention.ogg',
-"authorized" = 'modular_sand/sound/vox_military/authorized.ogg',
-"automatic" = 'modular_sand/sound/vox_military/automatic.ogg',
-"away" = 'modular_sand/sound/vox_military/away.ogg',
-"b" = 'modular_sand/sound/vox_military/b.ogg',
-"back" = 'modular_sand/sound/vox_military/back.ogg',
-"base" = 'modular_sand/sound/vox_military/base.ogg',
-"biohazard" = 'modular_sand/sound/vox_military/biohazard.ogg',
-"biological" = 'modular_sand/sound/vox_military/biological.ogg',
-"black" = 'modular_sand/sound/vox_military/black.ogg',
-"blast" = 'modular_sand/sound/vox_military/blast.ogg',
-"blue" = 'modular_sand/sound/vox_military/blue.ogg',
-"bravo" = 'modular_sand/sound/vox_military/bravo.ogg',
-"breach" = 'modular_sand/sound/vox_military/breach.ogg',
-"bypass" = 'modular_sand/sound/vox_military/bypass.ogg',
-"cable" = 'modular_sand/sound/vox_military/cable.ogg',
-"center" = 'modular_sand/sound/vox_military/center.ogg',
-"central" = 'modular_sand/sound/vox_military/central.ogg',
-"chamber" = 'modular_sand/sound/vox_military/chamber.ogg',
-"check" = 'modular_sand/sound/vox_military/check.ogg',
-"checkpoint" = 'modular_sand/sound/vox_military/checkpoint.ogg',
-"chemical" = 'modular_sand/sound/vox_military/chemical.ogg',
-"clear" = 'modular_sand/sound/vox_military/clear.ogg',
-"code" = 'modular_sand/sound/vox_military/code.ogg',
-"command" = 'modular_sand/sound/vox_military/command.ogg',
-"communications" = 'modular_sand/sound/vox_military/communications.ogg',
-"complex" = 'modular_sand/sound/vox_military/complex.ogg',
-"containment" = 'modular_sand/sound/vox_military/containment.ogg',
-"contamination" = 'modular_sand/sound/vox_military/contamination.ogg',
-"control" = 'modular_sand/sound/vox_military/control.ogg',
-"coolant" = 'modular_sand/sound/vox_military/coolant.ogg',
-"core" = 'modular_sand/sound/vox_military/core.ogg',
-"crew" = 'modular_sand/sound/vox_military/crew.ogg',
-"cross" = 'modular_sand/sound/vox_military/cross.ogg',
-"d" = 'modular_sand/sound/vox_military/d.ogg',
-"damage" = 'modular_sand/sound/vox_military/damage.ogg',
-"danger" = 'modular_sand/sound/vox_military/danger.ogg',
-"day" = 'modular_sand/sound/vox_military/day.ogg',
-"deactivated" = 'modular_sand/sound/vox_military/deactivated.ogg',
-"defense" = 'modular_sand/sound/vox_military/defense.ogg',
-"delta" = 'modular_sand/sound/vox_military/delta.ogg',
-"denied" = 'modular_sand/sound/vox_military/denied.ogg',
-"destroy" = 'modular_sand/sound/vox_military/destroy.ogg',
-"detected" = 'modular_sand/sound/vox_military/detected.ogg',
-"detonation" = 'modular_sand/sound/vox_military/detonation.ogg',
-"device" = 'modular_sand/sound/vox_military/device.ogg',
-"dimensional" = 'modular_sand/sound/vox_military/dimensional.ogg',
-"disengaged" = 'modular_sand/sound/vox_military/disengaged.ogg',
-"do" = 'modular_sand/sound/vox_military/do.ogg',
-"door" = 'modular_sand/sound/vox_military/door.ogg',
-"down" = 'modular_sand/sound/vox_military/down.ogg',
-"e" = 'modular_sand/sound/vox_military/e.ogg',
-"echo" = 'modular_sand/sound/vox_military/echo.ogg',
-"eight" = 'modular_sand/sound/vox_military/eight.ogg',
-"eighteen" = 'modular_sand/sound/vox_military/eighteen.ogg',
-"eighty" = 'modular_sand/sound/vox_military/eighty.ogg',
-"electric" = 'modular_sand/sound/vox_military/electric.ogg',
-"eleven" = 'modular_sand/sound/vox_military/eleven.ogg',
-"eliminate" = 'modular_sand/sound/vox_military/eliminate.ogg',
-"emergency" = 'modular_sand/sound/vox_military/emergency.ogg',
-"energy" = 'modular_sand/sound/vox_military/energy.ogg',
-"engage" = 'modular_sand/sound/vox_military/engage.ogg',
-"engaged" = 'modular_sand/sound/vox_military/engaged.ogg',
-"enter" = 'modular_sand/sound/vox_military/enter.ogg',
-"entry" = 'modular_sand/sound/vox_military/entry.ogg',
-"escape" = 'modular_sand/sound/vox_military/escape.ogg',
-"evacuate" = 'modular_sand/sound/vox_military/evacuate.ogg',
-"exchange" = 'modular_sand/sound/vox_military/exchange.ogg',
-"experimental" = 'modular_sand/sound/vox_military/experimental.ogg',
-"extreme" = 'modular_sand/sound/vox_military/extreme.ogg',
-"facility" = 'modular_sand/sound/vox_military/facility.ogg',
-"failed" = 'modular_sand/sound/vox_military/failed.ogg',
-"failure" = 'modular_sand/sound/vox_military/failure.ogg',
-"field" = 'modular_sand/sound/vox_military/field.ogg',
-"fifteen" = 'modular_sand/sound/vox_military/fifteen.ogg',
-"fifty" = 'modular_sand/sound/vox_military/fifty.ogg',
-"fire" = 'modular_sand/sound/vox_military/fire.ogg',
-"five" = 'modular_sand/sound/vox_military/five.ogg',
-"forbidden" = 'modular_sand/sound/vox_military/forbidden.ogg',
-"force" = 'modular_sand/sound/vox_military/force.ogg',
-"forms" = 'modular_sand/sound/vox_military/forms.ogg',
-"forty" = 'modular_sand/sound/vox_military/forty.ogg',
-"four" = 'modular_sand/sound/vox_military/four.ogg',
-"fourteen " = 'modular_sand/sound/vox_military/fourteen .ogg',
-"freeman" = 'modular_sand/sound/vox_military/freeman.ogg',
-"from" = 'modular_sand/sound/vox_military/from.ogg',
-"fuel" = 'modular_sand/sound/vox_military/fuel.ogg',
-"fx_bloop" = 'modular_sand/sound/vox_military/fx_bloop.ogg',
-"fx_buzwarn" = 'modular_sand/sound/vox_military/fx_buzwarn.ogg',
-"fx_dadeda" = 'modular_sand/sound/vox_military/fx_dadeda.ogg',
-"fx_deeoo" = 'modular_sand/sound/vox_military/fx_deeoo.ogg',
-"fx_doop" = 'modular_sand/sound/vox_military/fx_doop.ogg',
-"fx_error_beep" = 'modular_sand/sound/vox_military/fx_error_beep.ogg',
-"fx_signon_beep" = 'modular_sand/sound/vox_military/fx_signon_beep.ogg',
-"get" = 'modular_sand/sound/vox_military/get.ogg',
-"go" = 'modular_sand/sound/vox_military/go.ogg',
-"gordon" = 'modular_sand/sound/vox_military/gordon.ogg',
-"granted" = 'modular_sand/sound/vox_military/granted.ogg',
-"green" = 'modular_sand/sound/vox_military/green.ogg',
-"handling" = 'modular_sand/sound/vox_military/handling.ogg',
-"hanger" = 'modular_sand/sound/vox_military/hanger.ogg',
-"have" = 'modular_sand/sound/vox_military/have.ogg',
-"hazard" = 'modular_sand/sound/vox_military/hazard.ogg',
-"health" = 'modular_sand/sound/vox_military/health.ogg',
-"heat" = 'modular_sand/sound/vox_military/heat.ogg',
-"helecopter" = 'modular_sand/sound/vox_military/helecopter.ogg',
-"helium" = 'modular_sand/sound/vox_military/helium.ogg',
-"high" = 'modular_sand/sound/vox_military/high.ogg',
-"hostal" = 'modular_sand/sound/vox_military/hostal.ogg',
-"hostile" = 'modular_sand/sound/vox_military/hostile.ogg',
-"hotel" = 'modular_sand/sound/vox_military/hotel.ogg',
-"hundred" = 'modular_sand/sound/vox_military/hundred.ogg',
-"hydro" = 'modular_sand/sound/vox_military/hydro.ogg',
-"illegal" = 'modular_sand/sound/vox_military/illegal.ogg',
-"immediate" = 'modular_sand/sound/vox_military/immediate.ogg',
-"immediately" = 'modular_sand/sound/vox_military/immediately.ogg',
-"in" = 'modular_sand/sound/vox_military/in.ogg',
-"india" = 'modular_sand/sound/vox_military/india.ogg',
-"inoperative" = 'modular_sand/sound/vox_military/inoperative.ogg',
-"inside" = 'modular_sand/sound/vox_military/inside.ogg',
-"inspection" = 'modular_sand/sound/vox_military/inspection.ogg',
-"is" = 'modular_sand/sound/vox_military/is.ogg',
-"kilo01" = 'modular_sand/sound/vox_military/kilo01.ogg',
-"kilo02" = 'modular_sand/sound/vox_military/kilo02.ogg',
-"lambda" = 'modular_sand/sound/vox_military/lambda.ogg',
-"laser" = 'modular_sand/sound/vox_military/laser.ogg',
-"launch" = 'modular_sand/sound/vox_military/launch.ogg',
-"leak" = 'modular_sand/sound/vox_military/leak.ogg',
-"level" = 'modular_sand/sound/vox_military/level.ogg',
-"lima" = 'modular_sand/sound/vox_military/lima.ogg',
-"lima_alt" = 'modular_sand/sound/vox_military/lima_alt.ogg',
-"liquid" = 'modular_sand/sound/vox_military/liquid.ogg',
-"lock" = 'modular_sand/sound/vox_military/lock.ogg',
-"locked" = 'modular_sand/sound/vox_military/locked.ogg',
-"lockout" = 'modular_sand/sound/vox_military/lockout.ogg',
-"lower" = 'modular_sand/sound/vox_military/lower.ogg',
-"main" = 'modular_sand/sound/vox_military/main.ogg',
-"maintenance" = 'modular_sand/sound/vox_military/maintenance.ogg',
-"malfunction" = 'modular_sand/sound/vox_military/malfunction.ogg',
-"materials" = 'modular_sand/sound/vox_military/materials.ogg',
-"may" = 'modular_sand/sound/vox_military/may.ogg',
-"medical" = 'modular_sand/sound/vox_military/medical.ogg',
-"men" = 'modular_sand/sound/vox_military/men.ogg',
-"mesa" = 'modular_sand/sound/vox_military/mesa.ogg',
-"message" = 'modular_sand/sound/vox_military/message.ogg',
-"mic_mike" = 'modular_sand/sound/vox_military/mic_mike.ogg',
-"mike" = 'modular_sand/sound/vox_military/mike.ogg',
-"military" = 'modular_sand/sound/vox_military/military.ogg',
-"motorpool" = 'modular_sand/sound/vox_military/motorpool.ogg',
-"move" = 'modular_sand/sound/vox_military/move.ogg',
-"must" = 'modular_sand/sound/vox_military/must.ogg',
-"nearest" = 'modular_sand/sound/vox_military/nearest.ogg',
-"nine" = 'modular_sand/sound/vox_military/nine.ogg',
-"nineteen" = 'modular_sand/sound/vox_military/nineteen.ogg',
-"ninety" = 'modular_sand/sound/vox_military/ninety.ogg',
-"no" = 'modular_sand/sound/vox_military/no.ogg',
-"noe" = 'modular_sand/sound/vox_military/noe.ogg',
-"not" = 'modular_sand/sound/vox_military/not.ogg',
-"now" = 'modular_sand/sound/vox_military/now.ogg',
-"objective" = 'modular_sand/sound/vox_military/objective.ogg',
-"of" = 'modular_sand/sound/vox_military/of.ogg',
-"on" = 'modular_sand/sound/vox_military/on.ogg',
-"one" = 'modular_sand/sound/vox_military/one.ogg',
-"open" = 'modular_sand/sound/vox_military/open.ogg',
-"operating" = 'modular_sand/sound/vox_military/operating.ogg',
-"option" = 'modular_sand/sound/vox_military/option.ogg',
-"out" = 'modular_sand/sound/vox_military/out.ogg',
-"override" = 'modular_sand/sound/vox_military/override.ogg',
-"percent" = 'modular_sand/sound/vox_military/percent.ogg',
-"perimeter" = 'modular_sand/sound/vox_military/perimeter.ogg',
-"permitted" = 'modular_sand/sound/vox_military/permitted.ogg',
-"perpulsion" = 'modular_sand/sound/vox_military/perpulsion.ogg',
-"personnel" = 'modular_sand/sound/vox_military/personnel.ogg',
-"plant" = 'modular_sand/sound/vox_military/plant.ogg',
-"please" = 'modular_sand/sound/vox_military/please.ogg',
-"portal" = 'modular_sand/sound/vox_military/portal.ogg',
-"power" = 'modular_sand/sound/vox_military/power.ogg',
-"primary" = 'modular_sand/sound/vox_military/primary.ogg',
-"prosecute" = 'modular_sand/sound/vox_military/prosecute.ogg',
-"questioning" = 'modular_sand/sound/vox_military/questioning.ogg',
-"radiation" = 'modular_sand/sound/vox_military/radiation.ogg',
-"radioactive" = 'modular_sand/sound/vox_military/radioactive.ogg',
-"reach" = 'modular_sand/sound/vox_military/reach.ogg',
-"reactor" = 'modular_sand/sound/vox_military/reactor.ogg',
-"relay" = 'modular_sand/sound/vox_military/relay.ogg',
-"released" = 'modular_sand/sound/vox_military/released.ogg',
-"remaining" = 'modular_sand/sound/vox_military/remaining.ogg',
-"renegade" = 'modular_sand/sound/vox_military/renegade.ogg',
-"repair" = 'modular_sand/sound/vox_military/repair.ogg',
-"report" = 'modular_sand/sound/vox_military/report.ogg',
-"reports" = 'modular_sand/sound/vox_military/reports.ogg',
-"required" = 'modular_sand/sound/vox_military/required.ogg',
-"research" = 'modular_sand/sound/vox_military/research.ogg',
-"resistance" = 'modular_sand/sound/vox_military/resistance.ogg',
-"rocket" = 'modular_sand/sound/vox_military/rocket.ogg',
-"safety" = 'modular_sand/sound/vox_military/safety.ogg',
-"satellite" = 'modular_sand/sound/vox_military/satellite.ogg',
-"science" = 'modular_sand/sound/vox_military/science.ogg',
-"search" = 'modular_sand/sound/vox_military/search.ogg',
-"second" = 'modular_sand/sound/vox_military/second.ogg',
-"secondary" = 'modular_sand/sound/vox_military/secondary.ogg',
-"seconds" = 'modular_sand/sound/vox_military/seconds.ogg',
-"sector" = 'modular_sand/sound/vox_military/sector.ogg',
-"secure" = 'modular_sand/sound/vox_military/secure.ogg',
-"secured" = 'modular_sand/sound/vox_military/secured.ogg',
-"security" = 'modular_sand/sound/vox_military/security.ogg',
-"service" = 'modular_sand/sound/vox_military/service.ogg',
-"seven" = 'modular_sand/sound/vox_military/seven.ogg',
-"seventeen" = 'modular_sand/sound/vox_military/seventeen.ogg',
-"seventy" = 'modular_sand/sound/vox_military/seventy.ogg',
-"severe" = 'modular_sand/sound/vox_military/severe.ogg',
-"sheild" = 'modular_sand/sound/vox_military/sheild.ogg',
-"shoot" = 'modular_sand/sound/vox_military/shoot.ogg',
-"sierra" = 'modular_sand/sound/vox_military/sierra.ogg',
-"sight" = 'modular_sand/sound/vox_military/sight.ogg',
-"silo" = 'modular_sand/sound/vox_military/silo.ogg',
-"six" = 'modular_sand/sound/vox_military/six.ogg',
-"sixteen" = 'modular_sand/sound/vox_military/sixteen.ogg',
-"sixty" = 'modular_sand/sound/vox_military/sixty.ogg',
-"sorry" = 'modular_sand/sound/vox_military/sorry.ogg',
-"sqaud" = 'modular_sand/sound/vox_military/sqaud.ogg',
-"status" = 'modular_sand/sound/vox_military/status.ogg',
-"sterilization" = 'modular_sand/sound/vox_military/sterilization.ogg',
-"storage" = 'modular_sand/sound/vox_military/storage.ogg',
-"supercooled" = 'modular_sand/sound/vox_military/supercooled.ogg',
-"surrender" = 'modular_sand/sound/vox_military/surrender.ogg',
-"system" = 'modular_sand/sound/vox_military/system.ogg',
-"systems" = 'modular_sand/sound/vox_military/systems.ogg',
-"target" = 'modular_sand/sound/vox_military/target.ogg',
-"team" = 'modular_sand/sound/vox_military/team.ogg',
-"ten" = 'modular_sand/sound/vox_military/ten.ogg',
-"terminated" = 'modular_sand/sound/vox_military/terminated.ogg',
-"test" = 'modular_sand/sound/vox_military/test.ogg',
-"the" = 'modular_sand/sound/vox_military/the.ogg',
-"thirtteen" = 'modular_sand/sound/vox_military/thirtteen.ogg',
-"thirty" = 'modular_sand/sound/vox_military/thirty.ogg',
-"this" = 'modular_sand/sound/vox_military/this.ogg',
-"three" = 'modular_sand/sound/vox_military/three.ogg',
-"time" = 'modular_sand/sound/vox_military/time.ogg',
-"to" = 'modular_sand/sound/vox_military/to.ogg',
-"topside" = 'modular_sand/sound/vox_military/topside.ogg',
-"track" = 'modular_sand/sound/vox_military/track.ogg',
-"train" = 'modular_sand/sound/vox_military/train.ogg',
-"turret" = 'modular_sand/sound/vox_military/turret.ogg',
-"twelve" = 'modular_sand/sound/vox_military/twelve.ogg',
-"twenty" = 'modular_sand/sound/vox_military/twenty.ogg',
-"two" = 'modular_sand/sound/vox_military/two.ogg',
-"unauthorized" = 'modular_sand/sound/vox_military/unauthorized.ogg',
-"under" = 'modular_sand/sound/vox_military/under.ogg',
-"units" = 'modular_sand/sound/vox_military/units.ogg',
-"until" = 'modular_sand/sound/vox_military/until.ogg',
-"up" = 'modular_sand/sound/vox_military/up.ogg',
-"uranium" = 'modular_sand/sound/vox_military/uranium.ogg',
-"use" = 'modular_sand/sound/vox_military/use.ogg',
-"violation" = 'modular_sand/sound/vox_military/violation.ogg',
-"voltage" = 'modular_sand/sound/vox_military/voltage.ogg',
-"wanted" = 'modular_sand/sound/vox_military/wanted.ogg',
-"warning" = 'modular_sand/sound/vox_military/warning.ogg',
-"we" = 'modular_sand/sound/vox_military/we.ogg',
-"weapon" = 'modular_sand/sound/vox_military/weapon.ogg',
-"will" = 'modular_sand/sound/vox_military/will.ogg',
-"with" = 'modular_sand/sound/vox_military/with.ogg',
-"yellow" = 'modular_sand/sound/vox_military/yellow.ogg',
-"you" = 'modular_sand/sound/vox_military/you.ogg',
-"your" = 'modular_sand/sound/vox_military/your.ogg',
-"zero" = 'modular_sand/sound/vox_military/zero.ogg',
-"zone" = 'modular_sand/sound/vox_military/zone.ogg',
-"," = 'modular_sand/sound/vox_military/_comma.ogg',
-"." = 'modular_sand/sound/vox_military/_period.ogg',
-))
-#endif
diff --git a/modular_sand/sound/vox_military/fourteen .ogg b/modular_sand/sound/vox_military/fourteen.ogg
similarity index 100%
rename from modular_sand/sound/vox_military/fourteen .ogg
rename to modular_sand/sound/vox_military/fourteen.ogg
diff --git a/modular_sand/sound/vox_military/sheild.ogg b/modular_sand/sound/vox_military/shield.ogg
similarity index 100%
rename from modular_sand/sound/vox_military/sheild.ogg
rename to modular_sand/sound/vox_military/shield.ogg
diff --git a/tgstation.dme b/tgstation.dme
index 3b0578a6dc..82b0d324bd 100644
--- a/tgstation.dme
+++ b/tgstation.dme
@@ -2855,8 +2855,10 @@
#include "code\modules\mob\living\silicon\silicon_defense.dm"
#include "code\modules\mob\living\silicon\silicon_movement.dm"
#include "code\modules\mob\living\silicon\ai\ai.dm"
+#include "code\modules\mob\living\silicon\ai\ai_announcement.dm"
#include "code\modules\mob\living\silicon\ai\ai_defense.dm"
#include "code\modules\mob\living\silicon\ai\ai_portrait_picker.dm"
+#include "code\modules\mob\living\silicon\ai\announcement_help.dm"
#include "code\modules\mob\living\silicon\ai\death.dm"
#include "code\modules\mob\living\silicon\ai\emote.dm"
#include "code\modules\mob\living\silicon\ai\examine.dm"
@@ -4263,7 +4265,6 @@
#include "modular_sand\code\modules\mob\living\carbon\human\species_types\synthliz.dm"
#include "modular_sand\code\modules\mob\living\silicon\silicon.dm"
#include "modular_sand\code\modules\mob\living\silicon\ai\ai.dm"
-#include "modular_sand\code\modules\mob\living\silicon\ai\vox_sounds.dm"
#include "modular_sand\code\modules\mob\living\silicon\robot\robot.dm"
#include "modular_sand\code\modules\mob\living\silicon\robot\robot_modules.dm"
#include "modular_sand\code\modules\mob\living\simple_animal\bot\hugbot.dm"
diff --git a/tgui/packages/tgui/interfaces/AIAnnouncement.js b/tgui/packages/tgui/interfaces/AIAnnouncement.js
new file mode 100644
index 0000000000..9545a677d1
--- /dev/null
+++ b/tgui/packages/tgui/interfaces/AIAnnouncement.js
@@ -0,0 +1,88 @@
+import { filter } from 'common/collections';
+import { useBackend } from '../backend';
+import { Button, Icon, Input, Section, Stack, Tabs } from '../components';
+import { useLocalState } from '../backend';
+import { Window } from '../layouts';
+
+export const AIAnnouncement = (props, context) => {
+ const { act, data } = useBackend(context);
+ const {
+ last_announcement,
+ vox_types = {},
+ } = data;
+
+ const [
+ current_page,
+ set_page,
+ ] = useLocalState(context, 'current_page', 0);
+
+ const [
+ announcement_input,
+ set_announcement_input,
+ ] = useLocalState(context, 'announcement_input', last_announcement);
+
+ // I love `Object`s!!
+ const words_filtered = Object.keys(vox_types[Object.keys(vox_types)[current_page]]);
+
+ const search_split = announcement_input.split(" ").filter(element => element);
+
+ const missing_words = search_split.map(element => words_filtered.includes(element) ? null : element).filter(element => element);
+
+ return (
+
+
+
+
+
+ );
+};
diff --git a/tgui/packages/tgui/interfaces/AnnouncementHelp.js b/tgui/packages/tgui/interfaces/AnnouncementHelp.js
new file mode 100644
index 0000000000..1869a21eab
--- /dev/null
+++ b/tgui/packages/tgui/interfaces/AnnouncementHelp.js
@@ -0,0 +1,100 @@
+import { filter } from 'common/collections';
+import { flow } from 'common/fp';
+import { createSearch } from 'common/string';
+import { useBackend } from '../backend';
+import { Button, Collapsible, Icon, Input, Section, Stack, Tabs } from '../components';
+import { useLocalState } from '../backend';
+import { Window } from '../layouts';
+
+export const AnnouncementHelp = (props, context) => {
+ const { act, data } = useBackend(context);
+ const { vox_types = {} } = data;
+
+ const [
+ current_page,
+ set_page,
+ ] = useLocalState(context, 'current_page', 0);
+
+ const [
+ search_text,
+ set_search_text,
+ ] = useLocalState(context, 'search_text', '');
+
+ // I love `Object`s!!
+ const words_filtered = prepare_search(Object.keys(vox_types[Object.keys(vox_types)[current_page]]), search_text);
+
+ return (
+
+
+
+
+
+
+ WARNING: Misuse of the announcement system will get you job banned.
+ 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'.
+ Numbers are in word format, e.g. eight, sixty, etc
+ Sound effects begin with an 's' before the actual word, e.g. scensor
+
+
+
+
+
+ {
+ Object.keys(vox_types).map((vox_type, index) => (
+ set_page(index)}
+ selected={current_page === index}>
+ {vox_type}
+
+ ))
+ }
+
+
+
+
+
+
+
+
+ set_search_text(value)}
+ />
+
+
+
+
+ {words_filtered.map(nestedKey => (
+ act("say_word", {
+ "vox_type": Object.keys(vox_types)[current_page],
+ "to_speak": nestedKey,
+ })} >
+ {nestedKey}
+
+ ))}
+
+
+
+
+
+ );
+};
+
+export const prepare_search = (words_filtered, search_text = '') => {
+ const search = createSearch(search_text,
+ word_soup => word_soup);
+ return flow([
+ search_text && filter(search),
+ ])(words_filtered);
+};