From ed180d797ab25b48cc2dda68310683b709b14b31 Mon Sep 17 00:00:00 2001 From: Doubleumc Date: Thu, 18 Jul 2024 00:30:47 -0400 Subject: [PATCH 1/5] initial --- code/__DEFINES/sounds.dm | 9 + code/_globalvars/lists/sounds.dm | 2423 +++++++++++++++++++++++++++ code/controllers/subsystem/sound.dm | 53 +- code/datums/soundOutput.dm | 103 +- code/game/sound.dm | 433 ++--- code/modules/admin/admin_verbs.dm | 2 + colonialmarines.dme | 1 + 7 files changed, 2722 insertions(+), 302 deletions(-) create mode 100644 code/_globalvars/lists/sounds.dm diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index 13a4468427..2e7f608ff4 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -64,6 +64,15 @@ #define SOUND_ECHO_REVERB_ON list(0, 0, 0, 0, 0, 0.0, 0, 0.25, 1.5, 1.0, 0, 1.0, 0, 0.0, 0.0, 0.0, 1.0, 0) #define SOUND_ECHO_REVERB_OFF list(0, 0, -10000, -10000, 0, 0.0, 0, 0.25, 1.5, 1.0, 0, 1.0, 0, 0.0, 0.0, 0.0, 1.0, 0) //-10000 to Room & RoomHF makes enviromental reverb effectively inaudible +/// Enviromental sounds are effected by environmental reverb +#define SOUND_ENVIRONMENTAL (1<<4) +/// Sound can be muted by mob deafness +#define SOUND_CAN_DEAFEN (1<<5) +/// Spatial sounds set the sound position relative to the source +#define SOUND_SPATIAL (1<<6) +/// Sound is tracked by soundOutput for updating position, volume, etc +#define SOUND_TRACKED (1<<7) + #define AMBIENCE_SHIP 'sound/ambience/shipambience.ogg' #define AMBIENCE_JUNGLE 'sound/ambience/ambienceLV624.ogg' #define AMBIENCE_RIVER 'sound/ambience/ambienceriver.ogg' diff --git a/code/_globalvars/lists/sounds.dm b/code/_globalvars/lists/sounds.dm new file mode 100644 index 0000000000..ae619a1f06 --- /dev/null +++ b/code/_globalvars/lists/sounds.dm @@ -0,0 +1,2423 @@ +/// Assoc list of of all sounds in the codebase, in the form "sound/path" = length in seconds +GLOBAL_LIST_INIT(sound_lengths, __get_sound_lengths()) + +//list generated 07-17-2024 +//it really doesn't like parsing 1.5k+ lists, so I had to break it up +/proc/__get_sound_lengths() + var/list/sounds_1000 = list( + @"sound/AI/ares_online.ogg" = 5.768, + @"sound/AI/bioscan.ogg" = 2.282, + @"sound/AI/code_blue_elevated.ogg" = 7.318, + @"sound/AI/code_blue_lowered.ogg" = 7.08, + @"sound/AI/code_green.ogg" = 5.176, + @"sound/AI/code_red_elevated.ogg" = 6.775, + @"sound/AI/code_red_lowered.ogg" = 6.891, + @"sound/AI/commandreport.ogg" = 3.667, + @"sound/AI/distressbeacon.ogg" = 2.86, + @"sound/AI/distressreceived.ogg" = 2.816, + @"sound/AI/dropship_emergency.ogg" = 5.954, + @"sound/AI/evacuate.ogg" = 9.129, + @"sound/AI/evacuate_cancelled.ogg" = 2.407, + @"sound/AI/evacuation_complete.ogg" = 2.433, + @"sound/AI/evacuation_confirmed.ogg" = 5.208, + @"sound/AI/hijack.ogg" = 8.97, + @"sound/AI/intercept.ogg" = 6.912, + @"sound/AI/ionstorm.ogg" = 8.546, + @"sound/AI/poweroff.ogg" = 9.588, + @"sound/AI/poweron.ogg" = 4.835, + @"sound/AI/radiation.ogg" = 11.675, + @"sound/AI/selfdestruct.ogg" = 21.929, + @"sound/AI/selfdestruct_10m.ogg" = 599.026, + @"sound/AI/selfdestruct_5m.ogg" = 298.604, + @"sound/AI/selfdestruct_deactivated.ogg" = 4.07, + @"sound/AI/selfdestruct_short.ogg" = 6.653, + @"sound/AI/shuttlecalled.ogg" = 3.789, + @"sound/AI/shuttlerecalled.ogg" = 4.064, + @"sound/AI/unidentified_lifesigns.ogg" = 10.624, + @"sound/ambience/alarm4.ogg" = 1.728, + @"sound/ambience/almayerambience.ogg" = 30.444, + @"sound/ambience/ambiatm1.ogg" = 14.329, + @"sound/ambience/ambicha1.ogg" = 22.688, + @"sound/ambience/ambicha2.ogg" = 10.753, + @"sound/ambience/ambicha3.ogg" = 11.868, + @"sound/ambience/ambicha4.ogg" = 17.859, + @"sound/ambience/ambienceLV624.ogg" = 31.766, + @"sound/ambience/ambienceNV.ogg" = 31.766, + @"sound/ambience/ambienceriver.ogg" = 23.852, + @"sound/ambience/ambigen1.ogg" = 14.886, + @"sound/ambience/ambigen10.ogg" = 20.041, + @"sound/ambience/ambigen11.ogg" = 42.193, + @"sound/ambience/ambigen12.ogg" = 43.261, + @"sound/ambience/ambigen13.ogg" = 15.937, + @"sound/ambience/ambigen14.ogg" = 7.195, + @"sound/ambience/ambigen2.ogg" = 14.886, + @"sound/ambience/ambigen3.ogg" = 14.933, + @"sound/ambience/ambigen4.ogg" = 14.794, + @"sound/ambience/ambigen5.ogg" = 15.397, + @"sound/ambience/ambigen6.ogg" = 33.277, + @"sound/ambience/ambigen7.ogg" = 14.561, + @"sound/ambience/ambigen8.ogg" = 10.289, + @"sound/ambience/ambigen9.ogg" = 9.406, + @"sound/ambience/ambimalf.ogg" = 17.832, + @"sound/ambience/ambimine.ogg" = 76.824, + @"sound/ambience/ambimo1.ogg" = 60.189, + @"sound/ambience/ambimo2.ogg" = 22.781, + @"sound/ambience/ambisin1.ogg" = 15.329, + @"sound/ambience/ambisin2.ogg" = 12.129, + @"sound/ambience/ambisin3.ogg" = 12.129, + @"sound/ambience/ambisin4.ogg" = 15.35, + @"sound/ambience/ambispace.ogg" = 175.555, + @"sound/ambience/desert.ogg" = 34.551, + @"sound/ambience/dropship_ambience_loop.ogg" = 3.599, + @"sound/ambience/generator_power_off.ogg" = 18.51, + @"sound/ambience/jungle_amb1.ogg" = 26.676, + @"sound/ambience/rainforest.ogg" = 33.178, + @"sound/ambience/seag1.ogg" = 2.074, + @"sound/ambience/seag2.ogg" = 1.93, + @"sound/ambience/seag3.ogg" = 0.58, + @"sound/ambience/shipambience.ogg" = 200.441, + @"sound/ambience/shipambience1.ogg" = 61.927, + @"sound/ambience/shore.ogg" = 30.084, + @"sound/ambience/shuttle_fly_loop.ogg" = 3.146, + @"sound/ambience/shuttle_idle_loop.ogg" = 28.261, + @"sound/ambience/signal.ogg" = 11.158, + @"sound/ambience/snowstorm.ogg" = 84.411, + @"sound/ambience/varadero_storm.ogg" = 51.97, + @"sound/ambience/vehicle_interior1.ogg" = 2.977, + @"sound/ambience/yautja_ship.ogg" = 50.433, + @"sound/bullets/acid_impact1.ogg" = 4.998, + @"sound/bullets/bullet_armor1.ogg" = 0.549, + @"sound/bullets/bullet_armor2.ogg" = 1.594, + @"sound/bullets/bullet_armor3.ogg" = 0.574, + @"sound/bullets/bullet_armor4.ogg" = 0.523, + @"sound/bullets/bullet_impact1.ogg" = 0.799, + @"sound/bullets/bullet_impact2.ogg" = 1.413, + @"sound/bullets/bullet_impact3.ogg" = 1.904, + @"sound/bullets/bullet_miss1.ogg" = 0.274, + @"sound/bullets/bullet_miss2.ogg" = 0.398, + @"sound/bullets/bullet_miss3.ogg" = 0.39, + @"sound/bullets/bullet_miss4.ogg" = 0.414, + @"sound/bullets/bullet_ricochet1.ogg" = 0.899, + @"sound/bullets/bullet_ricochet2.ogg" = 0.871, + @"sound/bullets/bullet_ricochet3.ogg" = 0.501, + @"sound/bullets/bullet_ricochet4.ogg" = 0.732, + @"sound/bullets/bullet_ricochet5.ogg" = 0.477, + @"sound/bullets/bullet_ricochet6.ogg" = 0.907, + @"sound/bullets/bullet_ricochet7.ogg" = 0.718, + @"sound/bullets/bullet_ricochet8.ogg" = 0.761, + @"sound/bullets/bullet_vulture_impact.ogg" = 1.007, + @"sound/bullets/energy_impact1.ogg" = 0.911, + @"sound/bullets/energy_miss1.ogg" = 0.679, + @"sound/bullets/energy_ricochet1.ogg" = 0.732, + @"sound/bullets/impact_flesh_1.ogg" = 0.544, + @"sound/bullets/impact_flesh_2.ogg" = 0.489, + @"sound/bullets/impact_flesh_3.ogg" = 0.555, + @"sound/bullets/impact_flesh_4.ogg" = 0.518, + @"sound/bullets/rocket_ricochet1.ogg" = 1.701, + @"sound/bullets/rocket_ricochet2.ogg" = 2.234, + @"sound/bullets/rocket_ricochet3.ogg" = 2.192, + @"sound/bullets/shield_break_c1.ogg" = 1.978, + @"sound/bullets/shield_impact_c1.ogg" = 0.688, + @"sound/bullets/shield_impact_c2.ogg" = 0.688, + @"sound/bullets/shield_impact_c3.ogg" = 0.688, + @"sound/bullets/shield_impact_c4.ogg" = 0.646, + @"sound/bullets/spear_armor1.ogg" = 0.41, + @"sound/bullets/spear_impact1.ogg" = 1.776, + @"sound/bullets/spear_ricochet1.ogg" = 2.522, + @"sound/bullets/spear_ricochet2.ogg" = 2.042, + @"sound/effects/acidpool.ogg" = 4.982, + @"sound/effects/acid_sizzle1.ogg" = 2.75, + @"sound/effects/acid_sizzle2.ogg" = 2.538, + @"sound/effects/acid_sizzle3.ogg" = 2.578, + @"sound/effects/acid_sizzle4.ogg" = 2.3, + @"sound/effects/adminhelp-error.ogg" = 0.413, + @"sound/effects/adminhelp-reply.ogg" = 1.516, + @"sound/effects/adminhelp_new.ogg" = 1.603, + @"sound/effects/alert.ogg" = 2.385, + @"sound/effects/alien_doorpry1.ogg" = 4.448, + @"sound/effects/alien_doorpry2.ogg" = 4.453, + @"sound/effects/alien_dragsound_large.ogg" = 0.627, + @"sound/effects/alien_egg_burst.ogg" = 2.014, + @"sound/effects/alien_egg_move.ogg" = 1.387, + @"sound/effects/alien_footstep_charge1.ogg" = 0.765, + @"sound/effects/alien_footstep_charge2.ogg" = 0.765, + @"sound/effects/alien_footstep_charge3.ogg" = 0.765, + @"sound/effects/alien_footstep_large1.ogg" = 0.917, + @"sound/effects/alien_footstep_large2.ogg" = 0.876, + @"sound/effects/alien_footstep_large3.ogg" = 0.716, + @"sound/effects/alien_footstep_medium1.ogg" = 1.22, + @"sound/effects/alien_footstep_medium2.ogg" = 1.385, + @"sound/effects/alien_footstep_medium3.ogg" = 1.519, + @"sound/effects/alien_resin_break1.ogg" = 0.878, + @"sound/effects/alien_resin_break2.ogg" = 0.686, + @"sound/effects/alien_resin_break3.ogg" = 0.613, + @"sound/effects/alien_resin_build1.ogg" = 1.398, + @"sound/effects/alien_resin_build2.ogg" = 1.52, + @"sound/effects/alien_resin_build3.ogg" = 1.754, + @"sound/effects/alien_resin_move1.ogg" = 1.114, + @"sound/effects/alien_resin_move2.ogg" = 1.607, + @"sound/effects/alien_tail_swipe1.ogg" = 0.61, + @"sound/effects/alien_tail_swipe2.ogg" = 0.476, + @"sound/effects/alien_tail_swipe3.ogg" = 0.463, + @"sound/effects/alien_ventcrawl1.ogg" = 1.034, + @"sound/effects/alien_ventcrawl2.ogg" = 1.475, + @"sound/effects/alien_ventpass1.ogg" = 2.077, + @"sound/effects/alien_ventpass2.ogg" = 1.628, + @"sound/effects/antiair_explosions.ogg" = 6.859, + @"sound/effects/attackblob.ogg" = 1.192, + @"sound/effects/bamf.ogg" = 2.221, + @"sound/effects/bang.ogg" = 0.51, + @"sound/effects/barbed_wire_movement.ogg" = 0.767, + @"sound/effects/basscannon.ogg" = 0.895, + @"sound/effects/bigboom1.ogg" = 7.042, + @"sound/effects/bigboom2.ogg" = 2.503, + @"sound/effects/bigboom3.ogg" = 7.736, + @"sound/effects/bigboom4.ogg" = 3.542, + @"sound/effects/binoctarget.ogg" = 0.886, + @"sound/effects/biohazard.ogg" = 6.788, + @"sound/effects/bladeinsert.ogg" = 1.013, + @"sound/effects/blobattack.ogg" = 0.716, + @"sound/effects/bomb_fall.ogg" = 4.964, + @"sound/effects/bone_break1.ogg" = 0.534, + @"sound/effects/bone_break2.ogg" = 0.165, + @"sound/effects/bone_break3.ogg" = 0.207, + @"sound/effects/bone_break4.ogg" = 0.183, + @"sound/effects/bone_break5.ogg" = 0.173, + @"sound/effects/bone_break6.ogg" = 0.235, + @"sound/effects/bone_break7.ogg" = 0.297, + @"sound/effects/bubbles.ogg" = 1.677, + @"sound/effects/bubbles2.ogg" = 7.044, + @"sound/effects/buckle.ogg" = 0.392, + @"sound/effects/burrowing_b.ogg" = 0.867, + @"sound/effects/burrowoff.ogg" = 1.16, + @"sound/effects/canopen.ogg" = 0.51, + @"sound/effects/ceramic_shatter.ogg" = 2.128, + @"sound/effects/clang.ogg" = 1.596, + @"sound/effects/cloak_scout_off.ogg" = 0.929, + @"sound/effects/cloak_scout_on.ogg" = 0.929, + @"sound/effects/clownstep1.ogg" = 0.271, + @"sound/effects/clownstep2.ogg" = 0.288, + @"sound/effects/comical_bonk.ogg" = 0.996, + @"sound/effects/corsat_teleporter.ogg" = 7.43, + @"sound/effects/creak1.ogg" = 5.835, + @"sound/effects/creak2.ogg" = 6.355, + @"sound/effects/creak3.ogg" = 5.104, + @"sound/effects/data-transmission.ogg" = 4.709, + @"sound/effects/dingding.ogg" = 3.575, + @"sound/effects/doorcreaky.ogg" = 3.777, + @"sound/effects/double_klaxon.ogg" = 4.72, + @"sound/effects/drill.ogg" = 2.012, + @"sound/effects/dropship_crash.ogg" = 18.802, + @"sound/effects/dropship_incoming.ogg" = 7.684, + @"sound/effects/drums.ogg" = 9.891, + @"sound/effects/EMPulse.ogg" = 1.02, + @"sound/effects/engine_cargoshuttle_landing.ogg" = 9.911, + @"sound/effects/engine_cargoshuttle_startup.ogg" = 9.999, + @"sound/effects/engine_landing.ogg" = 20.392, + @"sound/effects/engine_startup.ogg" = 14.934, + @"sound/effects/escape_pod_launch.ogg" = 1.493, + @"sound/effects/escape_pod_warmup.ogg" = 8.801, + @"sound/effects/explosion1.ogg" = 2.692, + @"sound/effects/explosion2.ogg" = 3.507, + @"sound/effects/explosion3.ogg" = 3.62, + @"sound/effects/explosion4.ogg" = 3.201, + @"sound/effects/explosion5.ogg" = 3.938, + @"sound/effects/explosionfar.ogg" = 7.595, + @"sound/effects/extinguish.ogg" = 1.629, + @"sound/effects/fire_crackle.ogg" = 2.193, + @"sound/effects/gau.ogg" = 4.597, + @"sound/effects/gauimpact.ogg" = 1.28, + @"sound/effects/gau_incockpit.ogg" = 3.395, + @"sound/effects/generalquartersalarm.ogg" = 15.072, + @"sound/effects/ghost.ogg" = 8.417, + @"sound/effects/ghost2.ogg" = 2.301, + @"sound/effects/gibbed.ogg" = 0.764, + @"sound/effects/glassbash.ogg" = 0.26, + @"sound/effects/Glassbr1.ogg" = 1.988, + @"sound/effects/Glassbr2.ogg" = 1.883, + @"sound/effects/Glassbr3.ogg" = 2.374, + @"sound/effects/glassbreak1.ogg" = 0.973, + @"sound/effects/glassbreak2.ogg" = 0.982, + @"sound/effects/glassbreak3.ogg" = 1.298, + @"sound/effects/glassbreak4.ogg" = 1.31, + @"sound/effects/Glasshit.ogg" = 0.982, + @"sound/effects/Glasshit_old.ogg" = 0.529, + @"sound/effects/glassknock.ogg" = 0.634, + @"sound/effects/glass_step.ogg" = 0.628, + @"sound/effects/GQfullcall.ogg" = 17.95, + @"sound/effects/grillehit.ogg" = 2.139, + @"sound/effects/gunrustle1.ogg" = 0.426, + @"sound/effects/gunrustle2.ogg" = 0.644, + @"sound/effects/gunrustle3.ogg" = 0.567, + @"sound/effects/Heart Beat.ogg" = 1.064, + @"sound/effects/heart_beat_short.ogg" = 5.908, + @"sound/effects/helmet_noise.ogg" = 0.65, + @"sound/effects/hit_on_shattered_glass.ogg" = 1.049, + @"sound/effects/incoming-fax.ogg" = 5.909, + @"sound/effects/IncomingRocket.ogg" = 2.507, + @"sound/effects/klaxon1.ogg" = 2.694, + @"sound/effects/knockout.ogg" = 1.23, + @"sound/effects/laser_point_defence_success.ogg" = 4, + @"sound/effects/lighter1.ogg" = 2.089, + @"sound/effects/lighter2.ogg" = 1.137, + @"sound/effects/lighter3.ogg" = 2.914, + @"sound/effects/match.ogg" = 2.481, + @"sound/effects/metalhit.ogg" = 0.857, + @"sound/effects/metal_close.ogg" = 0.392, + @"sound/effects/metal_crash.ogg" = 3.469, + @"sound/effects/metal_creaking.ogg" = 4.619, + @"sound/effects/metal_shatter.ogg" = 2.128, + @"sound/effects/meteorimpact.ogg" = 1.007, + @"sound/effects/mhelp.ogg" = 1.172, + @"sound/effects/missile_warning.ogg" = 3.074, + @"sound/effects/mousesqueek.ogg" = 0.41, + @"sound/effects/nightvision.ogg" = 1.957, + @"sound/effects/ob_alert.ogg" = 1.716, + @"sound/effects/oppressor_tail.ogg" = 0.715, + @"sound/effects/pageturn1.ogg" = 1.139, + @"sound/effects/pageturn2.ogg" = 1.339, + @"sound/effects/pageturn3.ogg" = 1.098, + @"sound/effects/phasein.ogg" = 1.406, + @"sound/effects/pillbottle.ogg" = 0.195, + @"sound/effects/pipe_hissing.ogg" = 4.999, + @"sound/effects/pop.ogg" = 0.049, + @"sound/effects/powerloss.ogg" = 13.39, + @"sound/effects/pred_cloakoff.ogg" = 2.02, + @"sound/effects/pred_cloakon.ogg" = 2.472, + @"sound/effects/pred_countdown.ogg" = 8.399, + @"sound/effects/pred_vision.ogg" = 1.034, + @"sound/effects/pry1.ogg" = 2.494, + @"sound/effects/pry2.ogg" = 4.349, + @"sound/effects/pry3.ogg" = 5.844, + @"sound/effects/pry4.ogg" = 4.244, + @"sound/effects/radiostatic.ogg" = 0.599, + @"sound/effects/railgunhit.ogg" = 4.499, + @"sound/effects/railgun_miss.ogg" = 0.414, + @"sound/effects/readysetgo.ogg" = 4.474, + @"sound/effects/refill.ogg" = 1.287, + @"sound/effects/rip1.ogg" = 0.321, + @"sound/effects/rip2.ogg" = 0.43, + @"sound/effects/rocketpod_fire.ogg" = 4.31, + @"sound/effects/runedsanddoor.ogg" = 4.216, + @"sound/effects/runner_charging_1.ogg" = 2.002, + @"sound/effects/runner_charging_2.ogg" = 2.002, + @"sound/effects/rustle1.ogg" = 2.696, + @"sound/effects/rustle2.ogg" = 1.361, + @"sound/effects/rustle3.ogg" = 1.372, + @"sound/effects/rustle4.ogg" = 1.349, + @"sound/effects/rustle5.ogg" = 1.372, + @"sound/effects/screech.ogg" = 1.129, + @"sound/effects/screech2.ogg" = 3.661, + @"sound/effects/shieldbash.ogg" = 1.908, + @"sound/effects/sinkrunning.ogg" = 8.743, + @"sound/effects/siren.ogg" = 18.226, + @"sound/effects/slam1.ogg" = 0.819, + @"sound/effects/slam2.ogg" = 1.24, + @"sound/effects/slam3.ogg" = 1.565, + @"sound/effects/slam_rare_1.ogg" = 2.627, + @"sound/effects/slosh.ogg" = 2.514, + @"sound/effects/smoke.ogg" = 3.586, + @"sound/effects/snap.ogg" = 0.573, + @"sound/effects/sos-morse-code.ogg" = 2.279, + @"sound/effects/sparks1.ogg" = 0.774, + @"sound/effects/sparks2.ogg" = 0.827, + @"sound/effects/sparks3.ogg" = 1.094, + @"sound/effects/sparks4.ogg" = 1.181, + @"sound/effects/spike_hit.ogg" = 0.339, + @"sound/effects/spike_spray.ogg" = 0.679, + @"sound/effects/spin.ogg" = 0.226, + @"sound/effects/splat.ogg" = 1.309, + @"sound/effects/spray.ogg" = 1.494, + @"sound/effects/spray2.ogg" = 2.233, + @"sound/effects/spray3.ogg" = 2.247, + @"sound/effects/squelch1.ogg" = 0.846, + @"sound/effects/stealthoff.ogg" = 0.326, + @"sound/effects/stonedoor_openclose.ogg" = 1.229, + @"sound/effects/supercapacitors_charging.ogg" = 3.128, + @"sound/effects/tankhiss1.ogg" = 3.411, + @"sound/effects/tankhiss2.ogg" = 3.42, + @"sound/effects/tankhiss3.ogg" = 3.408, + @"sound/effects/tankhiss4.ogg" = 3.414, + @"sound/effects/tech_notification.ogg" = 5.335, + @"sound/effects/thud.ogg" = 0.244, + @"sound/effects/thud1.ogg" = 1.179, + @"sound/effects/thud2.ogg" = 1.4, + @"sound/effects/thud3.ogg" = 1.304, + @"sound/effects/toilet_flush_new.ogg" = 4.047, + @"sound/effects/toolbox.ogg" = 0.886, + @"sound/effects/tunnel_collapse.ogg" = 3.552, + @"sound/effects/vegetation_hit.ogg" = 0.356, + @"sound/effects/vegetation_walk_0.ogg" = 2.036, + @"sound/effects/vegetation_walk_1.ogg" = 1.5, + @"sound/effects/vegetation_walk_2.ogg" = 1.56, + @"sound/effects/weather_warning.ogg" = 27.789, + @"sound/effects/weather_warning_varadero.ogg" = 13.517, + @"sound/effects/window_shatter1.ogg" = 1.652, + @"sound/effects/window_shatter2.ogg" = 1.757, + @"sound/effects/window_shatter3.ogg" = 1.562, + @"sound/effects/woodhit.ogg" = 0.696, + @"sound/effects/xeno_evolveready.ogg" = 3.442, + @"sound/effects/xeno_newlarva.ogg" = 5.288, + @"sound/effects/xylophone1.ogg" = 5.346, + @"sound/effects/xylophone2.ogg" = 5.619, + @"sound/effects/xylophone3.ogg" = 6.101, + @"sound/effects/zippo_close.ogg" = 0.731, + @"sound/effects/zippo_open.ogg" = 1.114, + @"sound/effects/zzzt.ogg" = 0.124, + @"sound/hallucinations/behind_you1.ogg" = 3.963, + @"sound/hallucinations/behind_you2.ogg" = 4.77, + @"sound/hallucinations/far_noise.ogg" = 4.169, + @"sound/hallucinations/growl1.ogg" = 2.34, + @"sound/hallucinations/growl2.ogg" = 2.398, + @"sound/hallucinations/growl3.ogg" = 2.497, + @"sound/hallucinations/im_here1.ogg" = 4.448, + @"sound/hallucinations/im_here2.ogg" = 3.661, + @"sound/hallucinations/i_see_you1.ogg" = 5.818, + @"sound/hallucinations/i_see_you2.ogg" = 5.658, + @"sound/hallucinations/look_up1.ogg" = 2.953, + @"sound/hallucinations/look_up2.ogg" = 2.213, + @"sound/hallucinations/over_here1.ogg" = 3.658, + @"sound/hallucinations/over_here2.ogg" = 4.067, + @"sound/hallucinations/over_here3.ogg" = 3.24, + @"sound/hallucinations/turn_around1.ogg" = 3.467, + @"sound/hallucinations/turn_around2.ogg" = 3.356, + @"sound/hallucinations/veryfar_noise.ogg" = 4.355, + @"sound/hallucinations/wail.ogg" = 4.773, + @"sound/handling/ammobox_drop.ogg" = 0.318, + @"sound/handling/ammobox_pickup.ogg" = 0.319, + @"sound/handling/armorequip_1.ogg" = 0.57, + @"sound/handling/armorequip_2.ogg" = 0.602, + @"sound/handling/attachment_add.ogg" = 0.627, + @"sound/handling/attachment_remove.ogg" = 0.766, + @"sound/handling/bandage.ogg" = 1.683, + @"sound/handling/book_pickup.ogg" = 0.545, + @"sound/handling/cardboardbox_pickup.ogg" = 0.681, + @"sound/handling/click_2.ogg" = 0.628, + @"sound/handling/clothingrustle1.ogg" = 0.628, + @"sound/handling/clothingrustle2.ogg" = 0.628, + @"sound/handling/clothingrustle3.ogg" = 0.642, + @"sound/handling/clothingrustle4.ogg" = 0.628, + @"sound/handling/clothingrustle5.ogg" = 0.631, + @"sound/handling/clothing_off.ogg" = 0.917, + @"sound/handling/clothing_on.ogg" = 1.439, + @"sound/handling/combistick_close.ogg" = 0.359, + @"sound/handling/combistick_open.ogg" = 0.51, + @"sound/handling/crowbar_drop.ogg" = 0.356, + @"sound/handling/crowbar_pickup.ogg" = 0.5, + @"sound/handling/disk_pickup.ogg" = 0.265, + @"sound/handling/drinkglass_pickup.ogg" = 0.545, + @"sound/handling/flare_activate_1.ogg" = 4.748, + @"sound/handling/flare_activate_2.ogg" = 3.7, + @"sound/handling/gunequip1.ogg" = 0.483, + @"sound/handling/gunequip2.ogg" = 0.316, + @"sound/handling/gunequip3.ogg" = 0.282, + @"sound/handling/hinge_squeak1.ogg" = 1.525, + @"sound/handling/hinge_squeak2.ogg" = 0.952, + @"sound/handling/hud_off.ogg" = 1.122, + @"sound/handling/hud_on.ogg" = 2.3, + @"sound/handling/light_on_1.ogg" = 0.837, + @"sound/handling/lockerclose.ogg" = 0.77, + @"sound/handling/lockeropen.ogg" = 0.901, + @"sound/handling/multitool_drop.ogg" = 0.545, + @"sound/handling/multitool_pickup.ogg" = 0.621, + @"sound/handling/ointment_spreading.ogg" = 1.996, + @"sound/handling/paper_drop.ogg" = 0.75, + @"sound/handling/paper_pickup.ogg" = 0.543, + @"sound/handling/putting_on_armor1.ogg" = 2.89, + @"sound/handling/screwdriver_drop.ogg" = 0.545, + @"sound/handling/screwdriver_pickup.ogg" = 0.284, + @"sound/handling/smartgun_close.ogg" = 0.39, + @"sound/handling/smartgun_open.ogg" = 0.563, + @"sound/handling/splint1.ogg" = 1.845, + @"sound/handling/suitlight_off.ogg" = 0.222, + @"sound/handling/suitlight_on.ogg" = 0.927, + @"sound/handling/taperecorder_drop.ogg" = 0.224, + @"sound/handling/taperecorder_pickup.ogg" = 0.614, + @"sound/handling/tape_drop.ogg" = 0.324, + @"sound/handling/tape_pickup.ogg" = 0.343, + @"sound/handling/toggle_nv1.ogg" = 1.63, + @"sound/handling/toggle_nv2.ogg" = 1.255, + @"sound/handling/toolbelt_pickup.ogg" = 0.681, + @"sound/handling/toolbox_drop.ogg" = 0.75, + @"sound/handling/toolbox_pickup.ogg" = 0.613, + @"sound/handling/weldingtool_drop.ogg" = 0.818, + @"sound/handling/weldingtool_pickup.ogg" = 0.479, + @"sound/handling/wirecutter_drop.ogg" = 0.545, + @"sound/handling/wirecutter_pickup.ogg" = 0.545, + @"sound/handling/wrench_drop.ogg" = 0.545, + @"sound/handling/wrench_pickup.ogg" = 0.545, + @"sound/items/air_release.ogg" = 1.1, + @"sound/items/bikehorn.ogg" = 0.497, + @"sound/items/bubblewrap.ogg" = 2.325, + @"sound/items/cane_step_1.ogg" = 0.209, + @"sound/items/cane_step_2.ogg" = 0.209, + @"sound/items/cane_step_3.ogg" = 0.209, + @"sound/items/cane_step_4.ogg" = 0.209, + @"sound/items/cane_step_5.ogg" = 0.31, + @"sound/items/can_crush.ogg" = 0.952, + @"sound/items/component_pickup.ogg" = 0.398, + @"sound/items/countdown.ogg" = 3.651, + @"sound/items/Crowbar.ogg" = 1.338, + @"sound/items/Deconstruct.ogg" = 0.937, + @"sound/items/defib_charge.ogg" = 7.73, + @"sound/items/defib_failed.ogg" = 0.535, + @"sound/items/defib_ready.ogg" = 0.531, + @"sound/items/defib_release.ogg" = 2.495, + @"sound/items/defib_safetyOff.ogg" = 0.374, + @"sound/items/defib_safetyOn.ogg" = 0.374, + @"sound/items/defib_success.ogg" = 0.535, + @"sound/items/detector.ogg" = 0.889, + @"sound/items/detector_ping_1.ogg" = 0.489, + @"sound/items/detector_ping_2.ogg" = 1.108, + @"sound/items/detector_ping_3.ogg" = 0.689, + @"sound/items/detector_ping_4.ogg" = 1.14, + @"sound/items/detector_turn_off.ogg" = 0.889, + @"sound/items/detector_turn_on.ogg" = 1.65, + @"sound/items/drink.ogg" = 1.159, + @"sound/items/eatfood.ogg" = 2.053, + @"sound/items/fulton.ogg" = 0.97, + @"sound/items/healthanalyzer.ogg" = 0.759, + @"sound/items/hypospray.ogg" = 0.779, + @"sound/items/jetpack_beep.ogg" = 0.127, + @"sound/items/jetpack_sound.ogg" = 2, + @"sound/items/jingle_long.wav" = 2.989, + @"sound/items/jingle_short.wav" = 0.882, + @"sound/items/m56dauto_load.ogg" = 3.426, + @"sound/items/m56dauto_rotate.ogg" = 0.646, + @"sound/items/m56dauto_setup.ogg" = 3.083, + @"sound/items/paper_ripped.ogg" = 0.511, + @"sound/items/pen_click_off.ogg" = 0.198, + @"sound/items/pen_click_on.ogg" = 0.239, + @"sound/items/plush1.ogg" = 1.128, + @"sound/items/plush2.ogg" = 0.929, + @"sound/items/plush3.ogg" = 0.664, + @"sound/items/polaroid1.ogg" = 1.709, + @"sound/items/polaroid2.ogg" = 1.843, + @"sound/items/poster_being_created.ogg" = 3.877, + @"sound/items/poster_ripped.ogg" = 0.526, + @"sound/items/pred_bracer.ogg" = 0.617, + @"sound/items/rappel.ogg" = 0.682, + @"sound/items/Ratchet.ogg" = 1.448, + @"sound/items/rped.ogg" = 3.814, + @"sound/items/Screwdriver.ogg" = 1.912, + @"sound/items/Screwdriver2.ogg" = 0.13, + @"sound/items/splintbreaks.ogg" = 0.262, + @"sound/items/syringeproj.ogg" = 0.554, + @"sound/items/tick.ogg" = 0.64, + @"sound/items/trayhit1.ogg" = 0.677, + @"sound/items/trayhit2.ogg" = 2.012, + @"sound/items/Welder.ogg" = 2.269, + @"sound/items/Welder2.ogg" = 2.043, + @"sound/items/weldingtool_off.ogg" = 1.74, + @"sound/items/weldingtool_on.ogg" = 1.83, + @"sound/items/weldingtool_weld.ogg" = 5.323, + @"sound/items/whistle.ogg" = 2.037, + @"sound/items/Wirecutter.ogg" = 1.384, + @"sound/items/zip.ogg" = 1.031, + @"sound/machines/airalarm.ogg" = 8.057, + @"sound/machines/airlock.ogg" = 1.393, + @"sound/machines/Alarm.ogg" = 13.73, + @"sound/machines/asrs_lowering.ogg" = 13.075, + @"sound/machines/asrs_raising.ogg" = 17.518, + @"sound/machines/beepalert.ogg" = 1.007, + @"sound/machines/beepconfused.ogg" = 1.87, + @"sound/machines/beepsad.ogg" = 1.673, + @"sound/machines/blastdoor.ogg" = 2.018, + @"sound/machines/blender.ogg" = 5.275, + @"sound/machines/bonk.ogg" = 1.309, + @"sound/machines/buzz-sigh.ogg" = 0.312, + @"sound/machines/buzz-two.ogg" = 0.595, + @"sound/machines/centrifuge.ogg" = 5.772, + @"sound/machines/chime.ogg" = 0.413, + @"sound/machines/click.ogg" = 0.41, + @"sound/machines/computer_typing1.ogg" = 0.523, + @"sound/machines/computer_typing2.ogg" = 0.357, + @"sound/machines/computer_typing3.ogg" = 0.522, + @"sound/machines/computer_typing4.ogg" = 1.403, + @"sound/machines/computer_typing5.ogg" = 1.403, + @"sound/machines/computer_typing6.ogg" = 2.406, + @"sound/machines/ding.ogg" = 2.963, + @"sound/machines/disposalflush.ogg" = 3.102, + @"sound/machines/door_close.ogg" = 0.671, + @"sound/machines/door_locked.ogg" = 0.558, + @"sound/machines/door_open.ogg" = 0.799, + @"sound/machines/elevator_move.ogg" = 12.601, + @"sound/machines/elevator_openclose.ogg" = 1.522, + @"sound/machines/emergency_shutter.ogg" = 0.907, + @"sound/machines/fax.ogg" = 3.462, + @"sound/machines/firepit_ambience.ogg" = 5.604, + @"sound/machines/hiss.ogg" = 2.645, + @"sound/machines/hydraulics_1.ogg" = 1.264, + @"sound/machines/hydraulics_2.ogg" = 1.432, + @"sound/machines/hydraulics_3.ogg" = 1.497, + @"sound/machines/juicer.ogg" = 5.434, + @"sound/machines/keyboard1.ogg" = 1.049, + @"sound/machines/keyboard2.ogg" = 0.991, + @"sound/machines/keyboard3.ogg" = 0.927, + @"sound/machines/lawnmower.ogg" = 2.287, + @"sound/machines/lockdownalarm.ogg" = 7.013, + @"sound/machines/lockenable.ogg" = 6.415, + @"sound/machines/lockreset.ogg" = 6.415, + @"sound/machines/medevac_extend.ogg" = 3.797, + @"sound/machines/outputclick1.ogg" = 1.403, + @"sound/machines/outputclick2.ogg" = 1.403, + @"sound/machines/pda_button1.ogg" = 0.252, + @"sound/machines/pda_button2.ogg" = 0.201, + @"sound/machines/pda_ping.ogg" = 0.96, + @"sound/machines/ping.ogg" = 0.503, + @"sound/machines/pod_open.ogg" = 2.856, + @"sound/machines/print.ogg" = 2.144, + @"sound/machines/print_off.ogg" = 1.107, + @"sound/machines/scanning.ogg" = 1.648, + @"sound/machines/scanning_pod1.ogg" = 2.368, + @"sound/machines/screen_output1.ogg" = 2.92, + @"sound/machines/signal.ogg" = 11.164, + @"sound/machines/switch.ogg" = 0.518, + @"sound/machines/tcomms_on.ogg" = 10.193, + @"sound/machines/terminal_alert.ogg" = 1.782, + @"sound/machines/terminal_button01.ogg" = 0.219, + @"sound/machines/terminal_button02.ogg" = 0.302, + @"sound/machines/terminal_button03.ogg" = 0.231, + @"sound/machines/terminal_button04.ogg" = 0.209, + @"sound/machines/terminal_button05.ogg" = 0.177, + @"sound/machines/terminal_button06.ogg" = 0.201, + @"sound/machines/terminal_button07.ogg" = 0.322, + @"sound/machines/terminal_button08.ogg" = 0.261, + @"sound/machines/terminal_eject.ogg" = 0.605, + @"sound/machines/terminal_error.ogg" = 0.413, + @"sound/machines/terminal_insert_disc.ogg" = 1.089, + @"sound/machines/terminal_off.ogg" = 1.535, + @"sound/machines/terminal_on.ogg" = 0.93, + @"sound/machines/terminal_processing.ogg" = 1.754, + @"sound/machines/terminal_prompt.ogg" = 0.278, + @"sound/machines/terminal_prompt_confirm.ogg" = 0.152, + @"sound/machines/terminal_prompt_deny.ogg" = 0.173, + @"sound/machines/terminal_select.ogg" = 0.067, + @"sound/machines/terminal_shutdown.ogg" = 4.07, + @"sound/machines/terminal_success.ogg" = 0.721, + @"sound/machines/turbine_off.ogg" = 9.74, + @"sound/machines/turbine_on.ogg" = 9.74, + @"sound/machines/twobeep.ogg" = 0.296, + @"sound/machines/vending.ogg" = 1.549, + @"sound/machines/warning-buzzer.ogg" = 3.513, + @"sound/machines/windowdoor.ogg" = 1.843, + @"sound/mecha/critdestr.ogg" = 2.06, + @"sound/mecha/critdestrnano.ogg" = 2.392, + @"sound/mecha/critdestrsyndi.ogg" = 2.44, + @"sound/mecha/critnano.ogg" = 1.176, + @"sound/mecha/hydraulic.ogg" = 4.122, + @"sound/mecha/imag_enh.ogg" = 2.542, + @"sound/mecha/imag_enhnano.ogg" = 1.96, + @"sound/mecha/imag_enhsyndi.ogg" = 2.536, + @"sound/mecha/internaldmgalarm.ogg" = 1.301, + @"sound/mecha/LongNanoActivation.ogg" = 5.864, + @"sound/mecha/LongSyndiActivation.ogg" = 3.832, + @"sound/mecha/lowpower.ogg" = 0.875, + @"sound/mecha/lowpowernano.ogg" = 2.456, + @"sound/mecha/lowpowersyndi.ogg" = 2.6, + @"sound/mecha/mechambience.ogg" = 5.532, + @"sound/mecha/mechdrill.ogg" = 5.774, + @"sound/mecha/mechmove01.ogg" = 0.97, + @"sound/mecha/mechmove03.ogg" = 0.914, + @"sound/mecha/mechmove04.ogg" = 0.561, + @"sound/mecha/mechstep.ogg" = 0.52, + @"sound/mecha/mechturn.ogg" = 0.783, + @"sound/mecha/nominal.ogg" = 1.876, + @"sound/mecha/nominalnano.ogg" = 1.432, + @"sound/mecha/nominalsyndi.ogg" = 1.8, + @"sound/mecha/powerloader_attack.ogg" = 0.752, + @"sound/mecha/powerloader_buckle.ogg" = 2.819, + @"sound/mecha/powerloader_step.ogg" = 0.724, + @"sound/mecha/powerloader_step2.ogg" = 0.753, + @"sound/mecha/powerloader_turn.ogg" = 0.686, + @"sound/mecha/powerloader_turn2.ogg" = 0.729, + @"sound/mecha/powerloader_unbuckle.ogg" = 1.204, + @"sound/mecha/powerup.ogg" = 5.125, + @"sound/mecha/weapdestr.ogg" = 2.165, + @"sound/mecha/weapdestrnano.ogg" = 1.176, + @"sound/mecha/weapdestrsyndi.ogg" = 1.48, + @"sound/misc/apcdestroyed.ogg" = 2.943, + @"sound/misc/asay_ping.ogg" = 1.007, + @"sound/misc/asses_kicked.ogg" = 4.44, + @"sound/misc/bangindonk.ogg" = 1.56, + @"sound/misc/bell.ogg" = 6.98, + @"sound/misc/bell.wav" = 6.98, + @"sound/misc/burp_long.ogg" = 1.232, + @"sound/misc/burp_short.ogg" = 0.646, + @"sound/misc/clap.ogg" = 1.684, + @"sound/misc/desk_bell.ogg" = 2.694, + @"sound/misc/distressbeacon_Sunshine.ogg" = 4.392, + @"sound/misc/eventhorizon_shiplog.ogg" = 13.599, + @"sound/misc/facehugged_female.ogg" = 1.821, + @"sound/misc/facehugged_male.ogg" = 1.731, + @"sound/misc/fart_long.ogg" = 2.578, + @"sound/misc/fart_short.ogg" = 0.754, + @"sound/misc/Game_Over_Man.ogg" = 3.366, + @"sound/misc/golfclap.ogg" = 3.365, + @"sound/misc/gone_to_plaid.ogg" = 3.728, + @"sound/misc/good_is_dumb.ogg" = 6.401, + @"sound/misc/hardon.ogg" = 7.559, + @"sound/misc/heal_gun.ogg" = 9.088, + @"sound/misc/hell_march.ogg" = 28.016, + @"sound/misc/interference.ogg" = 1.089, + @"sound/misc/notice1.ogg" = 1.246, + @"sound/misc/notice2.ogg" = 1.008, + @"sound/misc/null.ogg" = 40.96, + @"sound/misc/nymphchirp.ogg" = 0.412, + @"sound/misc/outstanding_marines.ogg" = 11.521, + @"sound/misc/queen_alarm.ogg" = 8.192, + @"sound/misc/Rerun.ogg" = 7.669, + @"sound/misc/robotic scream.ogg" = 7.154, + @"sound/misc/sadtrombone.ogg" = 3.937, + @"sound/misc/salute.ogg" = 0.268, + @"sound/misc/slip.ogg" = 0.166, + @"sound/misc/sound_misc_boatswain.ogg" = 3.044, + @"sound/misc/surrounded_by_assholes.ogg" = 2.335, + @"sound/misc/wound_stabilize.ogg" = 0.548, + @"sound/scp/firstpersonsnap.ogg" = 2.011, + @"sound/scp/firstpersonsnap2.ogg" = 2.011, + @"sound/scp/firstpersonsnap3.ogg" = 2.847, + @"sound/scp/scare1.ogg" = 11.178, + @"sound/scp/scare2.ogg" = 5.939, + @"sound/scp/scare3.ogg" = 8.275, + @"sound/scp/scare4.ogg" = 7.174, + @"sound/soundscape/cicamb2.ogg" = 0.797, + @"sound/soundscape/cicamb3.ogg" = 1.032, + @"sound/soundscape/cicamb4.ogg" = 3.88, + @"sound/soundscape/cicamb5.ogg" = 6.466, + @"sound/soundscape/cicamb6.ogg" = 1.633, + @"sound/soundscape/drum1.ogg" = 10.951, + @"sound/soundscape/eerie1.ogg" = 40.579, + @"sound/soundscape/engamb1.ogg" = 4.285, + @"sound/soundscape/engamb2.ogg" = 2.056, + @"sound/soundscape/engamb3.ogg" = 2.869, + @"sound/soundscape/engamb4.ogg" = 3.635, + @"sound/soundscape/engamb5.ogg" = 3.054, + @"sound/soundscape/engamb6.ogg" = 3.287, + @"sound/soundscape/engamb7.ogg" = 2.915, + @"sound/soundscape/hangaramb1.ogg" = 2.845, + @"sound/soundscape/hangaramb10.ogg" = 5.725, + @"sound/soundscape/hangaramb2.ogg" = 3.101, + @"sound/soundscape/hangaramb3.ogg" = 2.712, + @"sound/soundscape/hangaramb4.ogg" = 6.561, + @"sound/soundscape/hangaramb5.ogg" = 4.21, + @"sound/soundscape/hangaramb6.ogg" = 2.512, + @"sound/soundscape/hangaramb7.ogg" = 2.552, + @"sound/soundscape/hangaramb8.ogg" = 2.613, + @"sound/soundscape/hangaramb9.ogg" = 11.576, + @"sound/soundscape/medbay1.ogg" = 39.381, + @"sound/soundscape/medbay2.ogg" = 39.822, + @"sound/soundscape/medbay3.ogg" = 33.345, + @"sound/soundscape/mother.ogg" = 7.622, + @"sound/soundscape/rocksfalling1.ogg" = 4.435, + @"sound/soundscape/rocksfalling2.ogg" = 4.435, + @"sound/soundscape/thunderclap1.ogg" = 9.636, + @"sound/soundscape/thunderclap2.ogg" = 15.092, + @"sound/soundscape/wind1.ogg" = 11.818, + @"sound/soundscape/wind2.ogg" = 17.67, + @"sound/surgery/cautery1.ogg" = 3.673, + @"sound/surgery/cautery2.ogg" = 1.235, + @"sound/surgery/hemostat1.ogg" = 1.1, + @"sound/surgery/organ1.ogg" = 2.408, + @"sound/surgery/organ2.ogg" = 2.408, + @"sound/surgery/retractor1.ogg" = 1, + @"sound/surgery/retractor2.ogg" = 0.754, + @"sound/surgery/saw.ogg" = 4.163, + @"sound/surgery/scalpel1.ogg" = 1.076, + @"sound/surgery/scalpel2.ogg" = 0.73, + @"sound/theme/lastmanstanding_clf.ogg" = 43.95, + @"sound/theme/lastmanstanding_upp.ogg" = 36.553, + @"sound/theme/lastmanstanding_wy.ogg" = 42.117, + @"sound/theme/neutral_hopeful1.ogg" = 12.482, + @"sound/theme/neutral_hopeful2.ogg" = 10.597, + @"sound/theme/neutral_melancholy1.ogg" = 13.384, + @"sound/theme/neutral_melancholy2.ogg" = 19.84, + @"sound/theme/nuclear_detonation1.ogg" = 13.822, + @"sound/theme/nuclear_detonation2.ogg" = 15.481, + @"sound/theme/sad_loss1.ogg" = 11.994, + @"sound/theme/sad_loss2.ogg" = 17.9, + @"sound/theme/winning_triumph1.ogg" = 16.348, + @"sound/theme/winning_triumph2.ogg" = 19.247, + @"sound/vehicles/honk_1_truck.ogg" = 1.33, + @"sound/vehicles/honk_2_truck.ogg" = 1.464, + @"sound/vehicles/honk_3_ambulence.ogg" = 2.1, + @"sound/vehicles/honk_4_light.ogg" = 1.468, + @"sound/vehicles/overdrive_activate.ogg" = 2.621, + @"sound/vehicles/tank_driving.ogg" = 2.662, + @"sound/voice/4_xeno_roars.ogg" = 5.019, + @"sound/voice/alien_cena.ogg" = 7.664, + @"sound/voice/alien_chestburst.ogg" = 2.177, + @"sound/voice/alien_chestburst2.ogg" = 2.019, + @"sound/voice/alien_death.ogg" = 4.556, + @"sound/voice/alien_death2.ogg" = 1.56, + @"sound/voice/alien_death_unused.ogg" = 3.608, + @"sound/voice/alien_distantroar_3.ogg" = 3.89, + @"sound/voice/alien_drool1.ogg" = 3, + @"sound/voice/alien_drool2.ogg" = 3.136, + @"sound/voice/alien_facehugger_dies.ogg" = 1.123, + @"sound/voice/alien_growl1.ogg" = 1.378, + @"sound/voice/alien_growl2.ogg" = 2.112, + @"sound/voice/alien_growl3.ogg" = 4.383, + @"sound/voice/alien_help1.ogg" = 1.441, + @"sound/voice/alien_help2.ogg" = 2.181, + @"sound/voice/alien_help3.ogg" = 1.731, + @"sound/voice/alien_hiss1.ogg" = 3.014, + @"sound/voice/alien_hiss2.ogg" = 3.002, + @"sound/voice/alien_hiss3.ogg" = 2.794, + @"sound/voice/alien_pounce.ogg" = 0.664, + @"sound/voice/alien_pounce2.ogg" = 0.211, + @"sound/voice/alien_queen_breath1.ogg" = 8.61, + @"sound/voice/alien_queen_breath2.ogg" = 7.616, + @"sound/voice/alien_queen_command.ogg" = 4.057, + @"sound/voice/alien_queen_command2.ogg" = 4.181, + @"sound/voice/alien_queen_command3.ogg" = 3.995, + @"sound/voice/alien_queen_died.ogg" = 3.049, + @"sound/voice/alien_queen_screech.ogg" = 4.998, + @"sound/voice/alien_queen_xmas.ogg" = 4.006, + @"sound/voice/alien_queen_xmas_2.ogg" = 5.763, + @"sound/voice/alien_roar1.ogg" = 1.497, + @"sound/voice/alien_roar2.ogg" = 1.729, + @"sound/voice/alien_roar3.ogg" = 1.566, + @"sound/voice/alien_roar4.ogg" = 1.404, + @"sound/voice/alien_roar5.ogg" = 1.625, + @"sound/voice/alien_roar6.ogg" = 1.625, + @"sound/voice/alien_roar_larva1.ogg" = 1.139, + @"sound/voice/alien_roar_larva2.ogg" = 0.73, + @"sound/voice/alien_roar_unused.ogg" = 1.232, + @"sound/voice/alien_spitacid.ogg" = 1.512, + @"sound/voice/alien_spitacid2.ogg" = 1.816, + @"sound/voice/alien_talk.ogg" = 1.33, + @"sound/voice/alien_talk2.ogg" = 1.92, + @"sound/voice/alien_talk3.ogg" = 1.383, + @"sound/voice/bcreep.ogg" = 1.568, + @"sound/voice/bcriminal.ogg" = 1.152, + @"sound/voice/bfreeze.ogg" = 1.056, + @"sound/voice/bgod.ogg" = 2.976, + @"sound/voice/biamthelaw.ogg" = 2.24, + @"sound/voice/binsult.ogg" = 14.144, + @"sound/voice/bjustice.ogg" = 0.96, + @"sound/voice/bradio.ogg" = 1.824, + @"sound/voice/bsecureday.ogg" = 1.248, + @"sound/voice/cat_meow_1.ogg" = 2.043, + @"sound/voice/cat_meow_2.ogg" = 3.088, + @"sound/voice/cat_meow_3.ogg" = 2.229, + @"sound/voice/cat_meow_4.ogg" = 3.157, + @"sound/voice/cat_meow_5.ogg" = 2.647, + @"sound/voice/cat_meow_6.ogg" = 3.436, + @"sound/voice/cat_meow_7.ogg" = 0.902, + @"sound/voice/corpsman.ogg" = 0.499, + @"sound/voice/corpsman_over_here.ogg" = 2.174, + @"sound/voice/corpsman_up.ogg" = 0.978, + @"sound/voice/ed209_20sec.ogg" = 2.433, + @"sound/voice/get_doc_up_here_im_hit.ogg" = 1.538, + @"sound/voice/halt.ogg" = 2.281, + @"sound/voice/hiss1.ogg" = 2.131, + @"sound/voice/hiss2.ogg" = 1.988, + @"sound/voice/hiss3.ogg" = 2.317, + @"sound/voice/hiss4.ogg" = 2.182, + @"sound/voice/hiss5.ogg" = 3.943, + @"sound/voice/hiss6.ogg" = 2.245, + @"sound/voice/holy_chorus.ogg" = 4.983, + @"sound/voice/human_ack_scream.ogg" = 0.388, + @"sound/voice/human_bobby_pain.ogg" = 0.73, + @"sound/voice/human_female_grenadethrow_1.ogg" = 0.984, + @"sound/voice/human_female_grenadethrow_2.ogg" = 0.805, + @"sound/voice/human_female_grenadethrow_3.ogg" = 1.073, + @"sound/voice/human_female_medic.ogg" = 0.666, + @"sound/voice/human_female_pain_1.ogg" = 0.819, + @"sound/voice/human_female_pain_2.ogg" = 0.649, + @"sound/voice/human_female_pain_3.ogg" = 0.632, + @"sound/voice/human_female_pain_4.ogg" = 0.645, + @"sound/voice/human_female_pain_5.ogg" = 0.798, + @"sound/voice/human_female_scream_1.ogg" = 1.085, + @"sound/voice/human_female_scream_2.ogg" = 1.108, + @"sound/voice/human_female_scream_3.ogg" = 0.866, + @"sound/voice/human_female_scream_4.ogg" = 0.468, + @"sound/voice/human_female_scream_5.ogg" = 1.181, + @"sound/voice/human_jackson_scream.ogg" = 0.65, + @"sound/voice/human_male_grenadethrow_1.ogg" = 1.291, + @"sound/voice/human_male_grenadethrow_2.ogg" = 1.16, + @"sound/voice/human_male_grenadethrow_3.ogg" = 1.299, + @"sound/voice/human_male_medic.ogg" = 0.77, + @"sound/voice/human_male_medic_rare_1.ogg" = 1.086, + @"sound/voice/human_male_medic_rare_2.ogg" = 0.67, + @"sound/voice/human_male_pain_1.ogg" = 1.012, + @"sound/voice/human_male_pain_2.ogg" = 0.839, + @"sound/voice/human_male_pain_3.ogg" = 0.441, + @"sound/voice/human_male_pain_4.ogg" = 1.086, + @"sound/voice/human_male_pain_rare_1.ogg" = 1.28, + @"sound/voice/human_male_scream_1.ogg" = 0.445, + @"sound/voice/human_male_scream_2.ogg" = 0.601, + @"sound/voice/human_male_scream_3.ogg" = 0.582, + @"sound/voice/human_male_scream_4.ogg" = 0.436, + @"sound/voice/human_male_scream_5.ogg" = 1.066, + @"sound/voice/human_male_scream_6.ogg" = 1.555, + @"sound/voice/human_tantrum_scream.ogg" = 0.592, + @"sound/voice/im_hit_get_doc_up_here.ogg" = 2.155, + @"sound/voice/i_cant_feel_my_legs_corpsman.ogg" = 2.544, + @"sound/voice/i_need_a_corpsman_1.ogg" = 1.454, + @"sound/voice/i_need_a_corpsman_2.ogg" = 1.242, + @"sound/voice/larva_talk1.ogg" = 0.645, + @"sound/voice/larva_talk2.ogg" = 0.519, + @"sound/voice/larva_talk3.ogg" = 0.756, + @"sound/voice/larva_talk4.ogg" = 0.858, + @"sound/voice/liveagain.ogg" = 2.993, + @"sound/voice/monkey_chimper1.ogg" = 0.943, + @"sound/voice/monkey_chimper2.ogg" = 1.84, + @"sound/voice/monkey_scream.ogg" = 1.667, + @"sound/voice/monkey_whimper.ogg" = 4.138, + @"sound/voice/predalien_click.ogg" = 1.744, + @"sound/voice/predalien_death.ogg" = 1.458, + @"sound/voice/predalien_growl.ogg" = 1.436, + @"sound/voice/predalien_hiss.ogg" = 1.76, + @"sound/voice/predalien_pounce.ogg" = 0.991, + @"sound/voice/predalien_roar.ogg" = 2.993, + @"sound/voice/pred_anytime.ogg" = 2.268, + @"sound/voice/pred_click1.ogg" = 2.461, + @"sound/voice/pred_click2.ogg" = 1.156, + @"sound/voice/pred_click3.ogg" = 5.737, + @"sound/voice/pred_click4.ogg" = 5.482, + @"sound/voice/pred_click5.ogg" = 12.288, + @"sound/voice/pred_come_on_out.ogg" = 3.459, + @"sound/voice/pred_deathlaugh.ogg" = 9.706, + @"sound/voice/pred_facehugged.ogg" = 1.236, + @"sound/voice/pred_helpme.ogg" = 1.307, + @"sound/voice/pred_itsatrap.ogg" = 3.693, + @"sound/voice/pred_laugh1.ogg" = 1.827, + @"sound/voice/pred_laugh2.ogg" = 4.212, + @"sound/voice/pred_laugh3.ogg" = 4.214, + @"sound/voice/pred_overhere.ogg" = 1.574, + @"sound/voice/pred_over_there.ogg" = 2.879, + @"sound/voice/pred_pain1.ogg" = 1.416, + @"sound/voice/pred_pain2.ogg" = 1.335, + @"sound/voice/pred_pain3.ogg" = 3.204, + @"sound/voice/pred_pain4.ogg" = 1.41, + @"sound/voice/pred_pain5.ogg" = 1.219, + @"sound/voice/pred_pain_rare1.ogg" = 3.587, + @"sound/voice/pred_roar1.ogg" = 3.226, + @"sound/voice/pred_roar2.ogg" = 3.641, + @"sound/voice/pred_roar3.ogg" = 2.995, + @"sound/voice/pred_roar4.ogg" = 6.08, + @"sound/voice/pred_roar5.ogg" = 4.117, + @"sound/voice/pred_turnaround.ogg" = 2.23, + @"sound/voice/pred_ugly_freak.ogg" = 4.945, + @"sound/voice/scream_horror1.ogg" = 7.154, + @"sound/voice/scream_horror2.ogg" = 1.827, + @"sound/voice/shriek1.ogg" = 1.83, + @"sound/voice/start_your_voting.ogg" = 3.655, + @"sound/voice/tomscream.ogg" = 2.618, + @"sound/voice/xenos_roaring.ogg" = 4.847, + @"sound/voice/xeno_praetorian_screech.ogg" = 2.813, + @"sound/weapons/alien_acidstrike1.ogg" = 5.054, + @"sound/weapons/alien_bite1.ogg" = 0.702, + @"sound/weapons/alien_bite2.ogg" = 1.483, + @"sound/weapons/alien_claw_block.ogg" = 0.355, + @"sound/weapons/alien_claw_flesh1.ogg" = 0.408, + @"sound/weapons/alien_claw_flesh2.ogg" = 0.33, + @"sound/weapons/alien_claw_flesh3.ogg" = 0.411, + @"sound/weapons/alien_claw_flesh4.ogg" = 0.608, + @"sound/weapons/alien_claw_flesh5.ogg" = 0.484, + @"sound/weapons/alien_claw_flesh6.ogg" = 0.41, + @"sound/weapons/alien_claw_metal1.ogg" = 0.176, + @"sound/weapons/alien_claw_metal2.ogg" = 0.212, + @"sound/weapons/alien_claw_metal3.ogg" = 0.19, + @"sound/weapons/alien_claw_swipe.ogg" = 0.092, + @"sound/weapons/alien_knockdown.ogg" = 0.285, + @"sound/weapons/alien_tail_attack.ogg" = 0.747, + @"sound/weapons/armbomb.ogg" = 1.986, + @"sound/weapons/baton.ogg" = 0.249, + @"sound/weapons/baton_slug_impact.ogg" = 1.761, + @"sound/weapons/bite.ogg" = 2.108, + @"sound/weapons/blade1.ogg" = 0.886, + @"sound/weapons/bladeslice.ogg" = 0.413, + @"sound/weapons/blaster.ogg" = 0.32, + @"sound/weapons/bulletcasing_bounce.ogg" = 1.34, + @"sound/weapons/bulletcasing_fall.ogg" = 0.505, + @"sound/weapons/bulletcasing_fall2.ogg" = 0.592, + @"sound/bullets/bulletcasing_shotgun_fall1.ogg" = 1.127, + @"sound/weapons/cablecuff.ogg" = 0.387, + @"sound/weapons/chain_whip.ogg" = 0.835, + @"sound/weapons/circsawhit.ogg" = 1.423, + @"sound/weapons/clan_sword_hit_1.ogg" = 1.209, + @"sound/weapons/clan_sword_hit_2.ogg" = 0.902, + @"sound/weapons/dropship_sonic_boom.ogg" = 13.572, + @"sound/weapons/Egloves.ogg" = 0.728, + @"sound/weapons/emitter.ogg" = 1.786, + @"sound/weapons/emitter2.ogg" = 3.481, + @"sound/weapons/flash.ogg" = 2.824, + @"sound/weapons/flipblade.ogg" = 1.348, + @"sound/weapons/Genhit.ogg" = 0.442, + @"sound/weapons/genhit1.ogg" = 0.584, + @"sound/weapons/genhit2.ogg" = 0.48, + @"sound/weapons/genhit3.ogg" = 0.55, + @"sound/weapons/grenade_insert.wav" = 0.809, + @"sound/weapons/Gunshot.ogg" = 0.724, + @"sound/weapons/gun_44mag.ogg" = 0.744, + @"sound/weapons/gun_44mag2.ogg" = 0.523, + @"sound/weapons/gun_44mag_close_chamber.wav" = 0.367, + @"sound/weapons/gun_44mag_open_chamber.wav" = 0.187, + @"sound/weapons/gun_44mag_speed_loader.wav" = 0.491, + @"sound/weapons/gun_44mag_v3.ogg" = 3.915, + @"sound/weapons/gun_44mag_v4.ogg" = 1.166, + @"sound/weapons/gun_88m4_reload.ogg" = 0.766, + @"sound/weapons/gun_88m4_unload.ogg" = 1.651, + @"sound/weapons/gun_88m4_v7.ogg" = 3.523, + @"sound/weapons/gun_ak47.ogg" = 0.622, + @"sound/weapons/gun_ar10.ogg" = 0.562, + @"sound/weapons/gun_boltaction.ogg" = 2.846, + @"sound/weapons/gun_boomslang_fire.ogg" = 1.205, + @"sound/weapons/gun_c99.ogg" = 0.605, + @"sound/weapons/gun_carbine.ogg" = 3.781, + @"sound/weapons/gun_chimp70.ogg" = 0.41, + @"sound/weapons/gun_cmb_1.ogg" = 1.429, + @"sound/weapons/gun_cmb_2.ogg" = 1.484, + @"sound/weapons/gun_cmb_bass.ogg" = 0.63, + @"sound/weapons/gun_cmb_rattle.ogg" = 1.394, + @"sound/weapons/gun_cocked2.ogg" = 0.642, + @"sound/weapons/gun_DE50.ogg" = 1.552, + @"sound/weapons/gun_DE50OLD.ogg" = 1.465, + @"sound/weapons/gun_empty.ogg" = 0.213, + @"sound/weapons/gun_es4.ogg" = 0.402, + @"sound/weapons/gun_flamethrower1.ogg" = 7.025, + @"sound/weapons/gun_flamethrower2.ogg" = 3.85, + @"sound/weapons/gun_flamethrower3.ogg" = 2.416, + @"sound/weapons/gun_flamethrower_empty.ogg" = 0.867, + @"sound/weapons/gun_flare.ogg" = 3, + @"sound/weapons/gun_flare_explode.ogg" = 1.461, + @"sound/weapons/gun_glock.ogg" = 0.817, + @"sound/weapons/gun_hpr.ogg" = 2.009, + @"sound/weapons/gun_kt42.ogg" = 2.335, + @"sound/weapons/gun_lever_action_fire.ogg" = 1.823, + @"sound/weapons/gun_m16.ogg" = 3.465, + @"sound/weapons/gun_m39.ogg" = 0.498, + @"sound/weapons/gun_m41ae2_old.ogg" = 3.81, + @"sound/weapons/gun_m41a_1.ogg" = 0.985, + @"sound/weapons/gun_m41a_2.ogg" = 0.645, + @"sound/weapons/gun_m41a_3.ogg" = 0.61, + @"sound/weapons/gun_m41a_4.ogg" = 0.48, + @"sound/weapons/gun_m41a_5.ogg" = 0.706, + @"sound/weapons/gun_m41a_6.ogg" = 0.846, + @"sound/weapons/gun_m43.ogg" = 2.3, + @"sound/weapons/gun_m4a3_1.ogg" = 0.809, + @"sound/weapons/gun_m4a3_2.ogg" = 0.9, + @"sound/weapons/gun_m4a3_3.ogg" = 0.913, + @"sound/weapons/gun_m4a3_4.ogg" = 0.913, + @"sound/weapons/gun_m4a3_5.ogg" = 0.905, + @"sound/weapons/gun_m4ra.ogg" = 0.642, + @"sound/weapons/gun_m56d_auto.ogg" = 1.117, + ) + var/list/sounds_2000 = list( + @"sound/weapons/gun_m60.ogg" = 1.992, + @"sound/weapons/gun_m60_cocked.ogg" = 1.095, + @"sound/weapons/gun_m92_attachable.ogg" = 0.999, + @"sound/weapons/gun_m92_cocked.ogg" = 0.338, + @"sound/weapons/gun_mac15.ogg" = 0.666, + @"sound/weapons/gun_mar40.ogg" = 3.795, + @"sound/weapons/gun_mateba.ogg" = 0.753, + @"sound/weapons/gun_mg.ogg" = 1.253, + @"sound/weapons/gun_minigun.ogg" = 0.4, + @"sound/weapons/gun_minigun_cocked.ogg" = 0.767, + @"sound/weapons/gun_mortar_fire.ogg" = 0.828, + @"sound/weapons/gun_mortar_reload.ogg" = 0.639, + @"sound/weapons/gun_mortar_travel.ogg" = 4.006, + @"sound/weapons/gun_mortar_unpack.ogg" = 1.467, + @"sound/weapons/gun_mou53.ogg" = 3.015, + @"sound/weapons/gun_nsg23_1.ogg" = 0.905, + @"sound/weapons/gun_nsg23_2.ogg" = 0.809, + @"sound/weapons/gun_orbital_travel.ogg" = 11.987, + @"sound/weapons/gun_p90.ogg" = 1.4, + @"sound/weapons/gun_pistol_cocked.ogg" = 0.378, + @"sound/weapons/gun_pistol_draw.ogg" = 0.509, + @"sound/weapons/gun_pistol_holdout.ogg" = 0.909, + @"sound/weapons/gun_pistol_large.ogg" = 1.519, + @"sound/weapons/gun_pistol_medium.ogg" = 1.403, + @"sound/weapons/gun_pistol_sheathe.ogg" = 0.747, + @"sound/weapons/gun_pkd_fire01.ogg" = 1.509, + @"sound/weapons/gun_pkd_fire01_rattle.ogg" = 1.172, + @"sound/weapons/gun_pkd_fire02.ogg" = 1.172, + @"sound/weapons/gun_pkd_fire03.ogg" = 1.01, + @"sound/weapons/gun_reload.ogg" = 1.069, + @"sound/weapons/gun_revolver_cocked.ogg" = 0.384, + @"sound/weapons/gun_revolver_load3.ogg" = 0.573, + @"sound/weapons/gun_revolver_spun.ogg" = 1.179, + @"sound/weapons/gun_revolver_unload.ogg" = 0.41, + @"sound/weapons/gun_rifle.ogg" = 1.522, + @"sound/weapons/gun_rifle_draw.ogg" = 0.518, + @"sound/weapons/gun_rifle_reload.ogg" = 0.32, + @"sound/weapons/gun_rocketlauncher.ogg" = 1.436, + @"sound/weapons/gun_sentry.ogg" = 1.482, + @"sound/weapons/gun_servicepistol.ogg" = 1.032, + @"sound/weapons/gun_shotgun.ogg" = 0.959, + @"sound/weapons/gun_shotgun_automatic.ogg" = 1.266, + @"sound/weapons/gun_shotgun_heavy.ogg" = 1.754, + @"sound/weapons/gun_shotgun_open2.ogg" = 0.306, + @"sound/weapons/gun_shotgun_pump.ogg" = 0.747, + @"sound/weapons/gun_shotgun_reload.ogg" = 0.445, + @"sound/weapons/gun_shotgun_riot.ogg" = 1.325, + @"sound/weapons/gun_shotgun_shell_insert.ogg" = 0.21, + @"sound/weapons/gun_shotgun_small.ogg" = 1.342, + @"sound/weapons/gun_shotgun_tactical_1.ogg" = 1.83, + @"sound/weapons/gun_shotgun_tactical_2.ogg" = 1.899, + @"sound/weapons/gun_shotgun_tactical_3.ogg" = 1.908, + @"sound/weapons/gun_shotgun_tactical_4.ogg" = 1.827, + @"sound/weapons/gun_shotgun_u7.ogg" = 5, + @"sound/weapons/gun_shotgun_xm51.ogg" = 2.059, + @"sound/weapons/gun_silenced_oldshot1.ogg" = 0.355, + @"sound/weapons/gun_silenced_oldshot2.ogg" = 0.233, + @"sound/weapons/gun_silenced_shot1.ogg" = 1.104, + @"sound/weapons/gun_silenced_shot2.ogg" = 1.128, + @"sound/weapons/gun_skorpion.ogg" = 0.496, + @"sound/weapons/gun_smartgun1.ogg" = 0.85, + @"sound/weapons/gun_smartgun1_rattle.ogg" = 0.85, + @"sound/weapons/gun_smartgun2.ogg" = 0.85, + @"sound/weapons/gun_smartgun2_rattle.ogg" = 0.85, + @"sound/weapons/gun_smartgun3.ogg" = 0.85, + @"sound/weapons/gun_smartgun3_rattle.ogg" = 0.85, + @"sound/weapons/gun_smartgun4.ogg" = 0.85, + @"sound/weapons/gun_smartgun4_rattle.ogg" = 0.85, + @"sound/weapons/gun_smg.ogg" = 0.552, + @"sound/weapons/gun_sniper.ogg" = 1.02, + @"sound/weapons/gun_su6.ogg" = 3.523, + @"sound/weapons/gun_tt.ogg" = 1.003, + @"sound/weapons/gun_type23.ogg" = 4.099, + @"sound/weapons/gun_type71.ogg" = 0.573, + @"sound/weapons/gun_ugl_fire.ogg" = 0.88, + @"sound/weapons/gun_uzi.ogg" = 0.287, + @"sound/weapons/gun_vp78_reload.ogg" = 1.173, + @"sound/weapons/gun_vp78_unload.ogg" = 1.716, + @"sound/weapons/gun_vp78_v2.ogg" = 3.801, + @"sound/weapons/gun_vulture_fire.ogg" = 4.82, + @"sound/weapons/gun_vulture_mark.ogg" = 0.775, + @"sound/weapons/gun_vulture_report.ogg" = 6.378, + @"sound/weapons/gun_xm88_directhit_high.ogg" = 1.175, + @"sound/weapons/gun_xm88_directhit_low.ogg" = 0.638, + @"sound/weapons/gun_xm88_directhit_medium.ogg" = 0.743, + @"sound/weapons/handcuffs.ogg" = 1.448, + @"sound/weapons/hmg_cooling.ogg" = 5.008, + @"sound/weapons/hmg_eject_mag.ogg" = 0.536, + @"sound/weapons/Laser.ogg" = 0.425, + @"sound/weapons/Laser2.ogg" = 0.96, + @"sound/weapons/Laser3.ogg" = 0.802, + @"sound/weapons/Laser4.ogg" = 0.665, + @"sound/weapons/marauder.ogg" = 3.191, + @"sound/weapons/metal_chair_clang.ogg" = 1.068, + @"sound/weapons/metal_chair_crash.ogg" = 4.949, + @"sound/weapons/metal_chair_slam.ogg" = 0.895, + @"sound/weapons/mine_armed.ogg" = 3.356, + @"sound/weapons/mine_tripped.ogg" = 0.231, + @"sound/weapons/nailgun_fire.ogg" = 0.712, + @"sound/weapons/nailgun_repair_long.ogg" = 2.919, + @"sound/weapons/pierce.ogg" = 0.952, + @"sound/weapons/pred_lasercannon.ogg" = 1.277, + @"sound/weapons/pred_plasmacaster_fire.ogg" = 2.979, + @"sound/weapons/pred_plasmacaster_off.ogg" = 2.314, + @"sound/weapons/pred_plasmacaster_on.ogg" = 2.31, + @"sound/weapons/pred_plasma_shot.ogg" = 1.507, + @"sound/weapons/pulse.ogg" = 0.576, + @"sound/weapons/pulse2.ogg" = 0.576, + @"sound/weapons/pulse3.ogg" = 0.529, + @"sound/weapons/punch1.ogg" = 0.92, + @"sound/weapons/punch2.ogg" = 0.815, + @"sound/weapons/punch3.ogg" = 0.902, + @"sound/weapons/punch4.ogg" = 0.699, + @"sound/weapons/punchmiss.ogg" = 0.449, + @"sound/weapons/ring.ogg" = 0.632, + @"sound/weapons/saberoff.ogg" = 3.038, + @"sound/weapons/saberon.ogg" = 3.06, + @"sound/weapons/shell_load1.ogg" = 0.59, + @"sound/weapons/shell_load2.ogg" = 0.609, + @"sound/weapons/shell_load3.ogg" = 0.609, + @"sound/weapons/shell_load4.ogg" = 0.572, + @"sound/weapons/shotgunpump1.ogg" = 0.654, + @"sound/weapons/shotgunpump2.ogg" = 0.715, + @"sound/weapons/slash.ogg" = 0.789, + @"sound/weapons/slashmiss.ogg" = 0.487, + @"sound/weapons/slice.ogg" = 0.952, + @"sound/weapons/smartgun.ogg" = 0.716, + @"sound/weapons/smash.ogg" = 0.796, + @"sound/weapons/smg_empty_alarm.ogg" = 1.576, + @"sound/weapons/smg_heavy.ogg" = 0.544, + @"sound/weapons/smg_light.ogg" = 0.304, + @"sound/weapons/sniper_heavy.ogg" = 1.423, + @"sound/weapons/synthpunch1.ogg" = 0.333, + @"sound/weapons/tablehit1.ogg" = 1.017, + @"sound/weapons/TargetOff.ogg" = 0.303, + @"sound/weapons/TargetOn.ogg" = 0.371, + @"sound/weapons/Taser.ogg" = 0.46, + @"sound/weapons/taser2.ogg" = 0.891, + @"sound/weapons/throwtap.ogg" = 0.18, + @"sound/weapons/thudswoosh.ogg" = 1.558, + @"sound/weapons/unload.ogg" = 0.486, + @"sound/weapons/vp70.ogg" = 0.489, + @"sound/weapons/wave.ogg" = 0.529, + @"sound/weapons/wristblades_hit.ogg" = 0.895, + @"sound/weapons/wristblades_off.ogg" = 0.686, + @"sound/weapons/wristblades_on.ogg" = 0.818, + @"sound/ambience/strata/strata_blizzard.ogg" = 47.483, + @"sound/ambience/strata/strata_snow.ogg" = 47.483, + @"sound/ambience/strata/strata_snowstorm.ogg" = 47.483, + @"sound/misc/apcdestroyed.ogg" = 2.943, + @"sound/dyn/roundend/CIAPencils.ogg" = 4.057, + @"sound/misc/Game_Over_Man.ogg" = 3.366, + @"sound/dyn/roundend/hysterical.ogg" = 1.537, + @"sound/dyn/roundend/its_only_game.ogg" = 3.839, + @"sound/dyn/roundend/lets_get_outta_here.ogg" = 0.859, + @"sound/dyn/roundend/NotBadForAHuman.ogg" = 3.547, + @"sound/misc/surrounded_by_assholes.ogg" = 2.335, + @"sound/effects/turret/move1.wav" = 0.928, + @"sound/effects/turret/move2.wav" = 0.916, + @"sound/effects/turret/open.wav" = 2.391, + @"sound/effects/wind/wind_2_1.ogg" = 5.459, + @"sound/effects/wind/wind_2_2.ogg" = 5.658, + @"sound/effects/wind/wind_3_1.ogg" = 5.956, + @"sound/effects/wind/wind_4_1.ogg" = 7.664, + @"sound/effects/wind/wind_4_2.ogg" = 6.849, + @"sound/effects/wind/wind_5_1.ogg" = 10.373, + @"sound/items/taperecorder/taperecorder_close.ogg" = 0.617, + @"sound/items/taperecorder/taperecorder_hiss_mid.ogg" = 0.25, + @"sound/items/taperecorder/taperecorder_hiss_start.ogg" = 0.25, + @"sound/items/taperecorder/taperecorder_open.ogg" = 0.591, + @"sound/items/taperecorder/taperecorder_play.ogg" = 0.203, + @"sound/items/taperecorder/taperecorder_print.ogg" = 0.771, + @"sound/items/taperecorder/taperecorder_stop.ogg" = 0.326, + @"sound/items/taperecorder/tape_flip.ogg" = 0.623, + @"sound/items/writing_noises/paper_writing_1.wav" = 1.184, + @"sound/items/writing_noises/paper_writing_2.wav" = 3.993, + @"sound/items/writing_noises/paper_writing_3.wav" = 1.265, + @"sound/items/writing_noises/paper_writing_4.ogg" = 0.678, + @"sound/machines/railgun/railgun_impact.ogg" = 2.246, + @"sound/machines/railgun/railgun_shoot.ogg" = 0.977, + @"sound/machines/railgun/railgun_shoot2.ogg" = 0.977, + @"sound/machines/resource_node/node_idle.ogg" = 3.702, + @"sound/machines/resource_node/node_marine_die.ogg" = 3.733, + @"sound/machines/resource_node/node_marine_die_2.ogg" = 2.159, + @"sound/machines/resource_node/node_marine_harvest.ogg" = 3.239, + @"sound/machines/resource_node/node_marine_on.ogg" = 8.194, + @"sound/machines/resource_node/node_turn_off.ogg" = 9.45, + @"sound/machines/resource_node/node_turn_on_2.ogg" = 5.764, + @"sound/machines/resource_node/node_xeno_die.ogg" = 3.733, + @"sound/machines/resource_node/node_xeno_harvest.ogg" = 4.468, + @"sound/machines/resource_node/node_xeno_on.ogg" = 3.722, + @"sound/machines/techpod/techpod_drill.ogg" = 4.752, + @"sound/machines/techpod/techpod_drilling.ogg" = 3.323, + @"sound/machines/techpod/techpod_hit.ogg" = 1.079, + @"sound/machines/techpod/techpod_no_drill.ogg" = 4.752, + @"sound/machines/techpod/techpod_open.ogg" = 2.828, + @"sound/machines/techpod/techpod_open_noding.ogg" = 2.795, + @"sound/machines/techpod/techpod_rto_notif.ogg" = 0.951, + @"sound/machines/techpod/techpod_rto_notif_muffled.ogg" = 0.66, + @"sound/machines/techpod/techpod_toggle.ogg" = 0.304, + @"sound/machines/telephone/rtb_handset_1.ogg" = 0.429, + @"sound/machines/telephone/rtb_handset_2.ogg" = 0.348, + @"sound/machines/telephone/rtb_handset_3.ogg" = 0.557, + @"sound/machines/telephone/rtb_handset_4.ogg" = 0.452, + @"sound/machines/telephone/rtb_handset_5.ogg" = 0.464, + @"sound/machines/telephone/telephone_ring.ogg" = 2.9, + @"sound/vehicles/Dropships/single_alarm_brr_dropship_1.ogg" = 1.75, + @"sound/voice/joe/alwaysknow.ogg" = 2.873, + @"sound/voice/joe/alwaysknow_damaged.ogg" = 2.647, + @"sound/voice/joe/alwaysknow_haz.ogg" = 3.193, + @"sound/voice/joe/apollo_behalf.ogg" = 3.051, + @"sound/voice/joe/apollo_behalf_haz.ogg" = 3.113, + @"sound/voice/joe/area_restricted_haz.ogg" = 1.896, + @"sound/voice/joe/awful.ogg" = 2.233, + @"sound/voice/joe/awful_haz.ogg" = 2.467, + @"sound/voice/joe/back_to_work.ogg" = 1.166, + @"sound/voice/joe/back_to_work_haz.ogg" = 1.376, + @"sound/voice/joe/been_looking_for_you.ogg" = 0.966, + @"sound/voice/joe/beyond_repair.ogg" = 3.365, + @"sound/voice/joe/beyond_repair_haz.ogg" = 3.441, + @"sound/voice/joe/be_careful_with_that.ogg" = 1.18, + @"sound/voice/joe/breach.ogg" = 1.764, + @"sound/voice/joe/breach_haz.ogg" = 2.08, + @"sound/voice/joe/calm_down.ogg" = 1.772, + @"sound/voice/joe/come_out_vent.ogg" = 2.468, + @"sound/voice/joe/come_out_vent_haz.ogg" = 2.394, + @"sound/voice/joe/come_with_me.ogg" = 1.414, + @"sound/voice/joe/could_require_attention.ogg" = 1.794, + @"sound/voice/joe/could_require_attention_haz.ogg" = 2.346, + @"sound/voice/joe/damage.ogg" = 2.137, + @"sound/voice/joe/damage_haz.ogg" = 2.377, + @"sound/voice/joe/dangerous_items.ogg" = 2.782, + @"sound/voice/joe/dangerous_items_haz.ogg" = 2.832, + @"sound/voice/joe/day_never_done.ogg" = 2.602, + @"sound/voice/joe/day_never_done_haz.ogg" = 2.798, + @"sound/voice/joe/death_dream.ogg" = 3.102, + @"sound/voice/joe/death_normal.ogg" = 5.013, + @"sound/voice/joe/death_silence.ogg" = 3.337, + @"sound/voice/joe/death_tomorrow.ogg" = 3.982, + @"sound/voice/joe/detailed_report.ogg" = 2.692, + @"sound/voice/joe/detailed_report_haz.ogg" = 2.914, + @"sound/voice/joe/disturbance_haz.ogg" = 3.127, + @"sound/voice/joe/dontdothat.ogg" = 1.209, + @"sound/voice/joe/dont_run.ogg" = 0.937, + @"sound/voice/joe/enough.ogg" = 0.533, + @"sound/voice/joe/existing_tasks.ogg" = 2.609, + @"sound/voice/joe/expensive_mistake.ogg" = 1.87, + @"sound/voice/joe/fire.ogg" = 2.288, + @"sound/voice/joe/firearm.ogg" = 4.22, + @"sound/voice/joe/firearm_haz.ogg" = 4.486, + @"sound/voice/joe/fire_drill.ogg" = 6.461, + @"sound/voice/joe/fire_haz.ogg" = 2.561, + @"sound/voice/joe/follow_me.ogg" = 1.166, + @"sound/voice/joe/follow_me_please.ogg" = 1.238, + @"sound/voice/joe/follow_me_please_haz.ogg" = 1.295, + @"sound/voice/joe/further_assistance.ogg" = 2.423, + @"sound/voice/joe/glad_we_resolved.ogg" = 1.985, + @"sound/voice/joe/good_day.ogg" = 0.897, + @"sound/voice/joe/good_day_haz.ogg" = 0.968, + @"sound/voice/joe/had_the_pleasure.ogg" = 2.142, + @"sound/voice/joe/have_a_problem.ogg" = 2.182, + @"sound/voice/joe/health_risks.ogg" = 2.602, + @"sound/voice/joe/health_risks_haz.ogg" = 2.602, + @"sound/voice/joe/hello.ogg" = 0.897, + @"sound/voice/joe/hold_still.ogg" = 1.041, + @"sound/voice/joe/how_are_you.ogg" = 0.78, + @"sound/voice/joe/how_can_i_help.ogg" = 1.301, + @"sound/voice/joe/how_can_i_help_haz.ogg" = 1.446, + @"sound/voice/joe/how_inconsiderate.ogg" = 2.47, + @"sound/voice/joe/hurt_yourself.ogg" = 1.801, + @"sound/voice/joe/hysterical.ogg" = 1.686, + @"sound/voice/joe/hysterical_haz.ogg" = 1.734, + @"sound/voice/joe/inexpensive.ogg" = 7.673, + @"sound/voice/joe/interloper.ogg" = 3.876, + @"sound/voice/joe/investigate_weapon.ogg" = 2.452, + @"sound/voice/joe/investigating_disturbance_haz.ogg" = 2.004, + @"sound/voice/joe/irresponsible.ogg" = 1.391, + @"sound/voice/joe/irresponsible_haz.ogg" = 1.601, + @"sound/voice/joe/is_anybody_there.ogg" = 1.745, + @"sound/voice/joe/join_us.ogg" = 2.557, + @"sound/voice/joe/let_me_help.ogg" = 1.241, + @"sound/voice/joe/little_details.ogg" = 3.365, + @"sound/voice/joe/lost.ogg" = 1.076, + @"sound/voice/joe/misbehaving.ogg" = 1.839, + @"sound/voice/joe/misbehaving_haz.ogg" = 2.023, + @"sound/voice/joe/more_pressing_matters.ogg" = 1.929, + @"sound/voice/joe/more_pressing_matters_haz.ogg" = 2.028, + @"sound/voice/joe/most_concerning.ogg" = 2.42, + @"sound/voice/joe/not_allowed_there.ogg" = 1.346, + @"sound/voice/joe/not_allowed_there_haz.ogg" = 1.647, + @"sound/voice/joe/not_be_tolerated.ogg" = 3.038, + @"sound/voice/joe/not_liking.ogg" = 4.532, + @"sound/voice/joe/not_what_i_think.ogg" = 2.288, + @"sound/voice/joe/not_what_i_think_haz.ogg" = 2.457, + @"sound/voice/joe/no_need.ogg" = 1.417, + @"sound/voice/joe/other_concerns.ogg" = 1.794, + @"sound/voice/joe/other_concerns_haz.ogg" = 1.92, + @"sound/voice/joe/patience.ogg" = 2.109, + @"sound/voice/joe/patience_haz.ogg" = 2.239, + @"sound/voice/joe/pity.ogg" = 2.07, + @"sound/voice/joe/presence_logged.ogg" = 1.839, + @"sound/voice/joe/presence_logged_haz.ogg" = 1.86, + @"sound/voice/joe/protected_area_compromised.ogg" = 2.017, + @"sound/voice/joe/really.ogg" = 0.58, + @"sound/voice/joe/really_shouldnt_be_here.ogg" = 1.508, + @"sound/voice/joe/really_shouldnt_be_here_haz.ogg" = 1.803, + @"sound/voice/joe/report.ogg" = 2.121, + @"sound/voice/joe/report_haz.ogg" = 1.915, + @"sound/voice/joe/required_by_apollo.ogg" = 2.243, + @"sound/voice/joe/returning_to_tasks.ogg" = 1.839, + @"sound/voice/joe/running_accidents.ogg" = 1.974, + @"sound/voice/joe/running_accidents_haz.ogg" = 2.073, + @"sound/voice/joe/safety.ogg" = 2.702, + @"sound/voice/joe/safety_breach.ogg" = 3.051, + @"sound/voice/joe/safety_breach_haz.ogg" = 3.33, + @"sound/voice/joe/safety_haz.ogg" = 4.234, + @"sound/voice/joe/seegson_behind.ogg" = 4.666, + @"sound/voice/joe/seegson_quality.ogg" = 4.981, + @"sound/voice/joe/seegson_standards.ogg" = 4.263, + @"sound/voice/joe/shouldnt_be_here.ogg" = 1.435, + @"sound/voice/joe/someone_hurt.ogg" = 1.35, + @"sound/voice/joe/species.ogg" = 1.718, + @"sound/voice/joe/species_haz.ogg" = 1.705, + @"sound/voice/joe/still_here.ogg" = 2.081, + @"sound/voice/joe/stop_that.ogg" = 0.777, + @"sound/voice/joe/support_ticket_removed.ogg" = 2.574, + @"sound/voice/joe/support_ticket_removed_haz.ogg" = 2.836, + @"sound/voice/joe/take_a_seat.ogg" = 3.32, + @"sound/voice/joe/talk_to_seegson.ogg" = 5.654, + @"sound/voice/joe/temperatures.ogg" = 4.218, + @"sound/voice/joe/temperatures_haz.ogg" = 4.754, + @"sound/voice/joe/that_stings.ogg" = 1.346, + @"sound/voice/joe/that_stings_haz.ogg" = 1.376, + @"sound/voice/joe/this_isnt_the_answer.ogg" = 1.601, + @"sound/voice/joe/this_is_futile.ogg" = 1.211, + @"sound/voice/joe/this_is_futile_haz.ogg" = 1.47, + @"sound/voice/joe/tomorrow_together_haz.ogg" = 2.834, + @"sound/voice/joe/trespassing.ogg" = 1.346, + @"sound/voice/joe/tut_tut.ogg" = 0.772, + @"sound/voice/joe/unprotected_flames.ogg" = 4.756, + @"sound/voice/joe/unprotected_flames_haz.ogg" = 4.702, + @"sound/voice/joe/unwarranted.ogg" = 1.134, + @"sound/voice/joe/what_do_you_need.ogg" = 1.609, + @"sound/voice/joe/what_happened_to_you.ogg" = 1.301, + @"sound/voice/joe/what_happened_to_you_haz.ogg" = 1.57, + @"sound/voice/joe/what_is_this.ogg" = 1.211, + @"sound/voice/joe/what_is_this_haz.ogg" = 1.054, + @"sound/voice/joe/with_you_shortly.ogg" = 1.66, + @"sound/voice/joe/with_you_shortly_haz.ogg" = 1.77, + @"sound/voice/upp_warcry/warcry_female_1.ogg" = 3.6, + @"sound/voice/upp_warcry/warcry_female_2.ogg" = 2.376, + @"sound/voice/upp_warcry/warcry_male_1.ogg" = 2.577, + @"sound/voice/upp_warcry/warcry_male_2.ogg" = 2.362, + @"sound/voice/warcry/female_charge.ogg" = 1.311, + @"sound/voice/warcry/female_yell1.ogg" = 2.044, + @"sound/voice/warcry/male_attack.ogg" = 1.427, + @"sound/voice/warcry/male_charge.ogg" = 2.232, + @"sound/voice/warcry/male_charge2.ogg" = 2.324, + @"sound/voice/warcry/male_go.ogg" = 2.429, + @"sound/voice/warcry/male_wryy.ogg" = 3.013, + @"sound/voice/warcry/warcry_female_1.ogg" = 3.096, + @"sound/voice/warcry/warcry_female_10.ogg" = 1.968, + @"sound/voice/warcry/warcry_female_11.ogg" = 1.632, + @"sound/voice/warcry/warcry_female_12.ogg" = 1.56, + @"sound/voice/warcry/warcry_female_13.ogg" = 1.56, + @"sound/voice/warcry/warcry_female_14.ogg" = 1.392, + @"sound/voice/warcry/warcry_female_15.ogg" = 1.56, + @"sound/voice/warcry/warcry_female_16.ogg" = 1.32, + @"sound/voice/warcry/warcry_female_17.ogg" = 2.184, + @"sound/voice/warcry/warcry_female_18.ogg" = 0.744, + @"sound/voice/warcry/warcry_female_19.ogg" = 1.608, + @"sound/voice/warcry/warcry_female_2.ogg" = 1.944, + @"sound/voice/warcry/warcry_female_20.ogg" = 1.68, + @"sound/voice/warcry/warcry_female_3.ogg" = 2.832, + @"sound/voice/warcry/warcry_female_4.ogg" = 1.464, + @"sound/voice/warcry/warcry_female_5.ogg" = 1.768, + @"sound/voice/warcry/warcry_female_6.ogg" = 2.058, + @"sound/voice/warcry/warcry_female_7.ogg" = 1.632, + @"sound/voice/warcry/warcry_female_8.ogg" = 1.248, + @"sound/voice/warcry/warcry_female_9.ogg" = 1.56, + @"sound/voice/warcry/warcry_male_1.ogg" = 2.148, + @"sound/voice/warcry/warcry_male_10.ogg" = 1.728, + @"sound/voice/warcry/warcry_male_11.ogg" = 1.942, + @"sound/voice/warcry/warcry_male_12.ogg" = 1.839, + @"sound/voice/warcry/warcry_male_13.ogg" = 1.488, + @"sound/voice/warcry/warcry_male_14.ogg" = 1.2, + @"sound/voice/warcry/warcry_male_15.ogg" = 1.656, + @"sound/voice/warcry/warcry_male_16.ogg" = 1.944, + @"sound/voice/warcry/warcry_male_17.ogg" = 1.872, + @"sound/voice/warcry/warcry_male_18.ogg" = 2.64, + @"sound/voice/warcry/warcry_male_19.ogg" = 2.52, + @"sound/voice/warcry/warcry_male_2.ogg" = 1.358, + @"sound/voice/warcry/warcry_male_20.ogg" = 1.418, + @"sound/voice/warcry/warcry_male_21.ogg" = 1.786, + @"sound/voice/warcry/warcry_male_22.ogg" = 1.264, + @"sound/voice/warcry/warcry_male_23.ogg" = 1.242, + @"sound/voice/warcry/warcry_male_24.ogg" = 1.477, + @"sound/voice/warcry/warcry_male_25.ogg" = 2.741, + @"sound/voice/warcry/warcry_male_26.ogg" = 1.306, + @"sound/voice/warcry/warcry_male_27.ogg" = 1.821, + @"sound/voice/warcry/warcry_male_28.ogg" = 1.8, + @"sound/voice/warcry/warcry_male_29.ogg" = 2.424, + @"sound/voice/warcry/warcry_male_3.ogg" = 1.541, + @"sound/voice/warcry/warcry_male_30.ogg" = 1.608, + @"sound/voice/warcry/warcry_male_31.ogg" = 2.376, + @"sound/voice/warcry/warcry_male_32.ogg" = 2.016, + @"sound/voice/warcry/warcry_male_33.ogg" = 2.64, + @"sound/voice/warcry/warcry_male_34.ogg" = 2.04, + @"sound/voice/warcry/warcry_male_35.ogg" = 2.232, + @"sound/voice/warcry/warcry_male_4.ogg" = 2.326, + @"sound/voice/warcry/warcry_male_5.ogg" = 2.121, + @"sound/voice/warcry/warcry_male_6.ogg" = 2.946, + @"sound/voice/warcry/warcry_male_7.ogg" = 2.664, + @"sound/voice/warcry/warcry_male_8.ogg" = 1.79, + @"sound/voice/warcry/warcry_male_9.ogg" = 1.95, + @"sound/voice/warcry/warcry_male_rare_1.ogg" = 3.056, + @"sound/voice/warcry/warcry_male_rare_2.ogg" = 4.545, + @"sound/voice/warcry/warcry_male_rare_3.ogg" = 1.428, + @"sound/voice/warcry/warcry_male_rare_4.ogg" = 2.07, + @"sound/voice/warcry/warcry_male_rare_5.ogg" = 2.595, + @"sound/vox/vox/!bloop.ogg" = 0.609, + @"sound/vox/vox/!buzwarn.ogg" = 0.781, + @"sound/vox/vox/!dadeda.ogg" = 0.887, + @"sound/vox/vox/!deeoo.ogg" = 0.682, + @"sound/vox/vox/!doop.ogg" = 1.145, + @"sound/vox/vox/,.ogg" = 0.248, + @"sound/vox/vox/..ogg" = 0.431, + @"sound/vox/vox/a.ogg" = 0.372, + @"sound/vox/vox/accelerating.ogg" = 1.136, + @"sound/vox/vox/accelerator.ogg" = 1.18, + @"sound/vox/vox/accepted.ogg" = 0.876, + @"sound/vox/vox/access.ogg" = 0.817, + @"sound/vox/vox/acknowledge.ogg" = 0.914, + @"sound/vox/vox/acknowledged.ogg" = 0.869, + @"sound/vox/vox/acquired.ogg" = 0.833, + @"sound/vox/vox/acquisition.ogg" = 0.873, + @"sound/vox/vox/across.ogg" = 0.785, + @"sound/vox/vox/activate.ogg" = 0.795, + @"sound/vox/vox/activated.ogg" = 0.954, + @"sound/vox/vox/activity.ogg" = 0.973, + @"sound/vox/vox/adios.ogg" = 0.946, + @"sound/vox/vox/administration.ogg" = 1.241, + @"sound/vox/vox/advanced.ogg" = 0.799, + @"sound/vox/vox/after.ogg" = 0.652, + @"sound/vox/vox/agent.ogg" = 0.634, + @"sound/vox/vox/alarm.ogg" = 0.672, + @"sound/vox/vox/alert.ogg" = 0.539, + @"sound/vox/vox/alien.ogg" = 0.68, + @"sound/vox/vox/aligned.ogg" = 0.792, + @"sound/vox/vox/all.ogg" = 0.528, + @"sound/vox/vox/alpha.ogg" = 0.621, + @"sound/vox/vox/am.ogg" = 0.418, + @"sound/vox/vox/amigo.ogg" = 0.657, + @"sound/vox/vox/ammunition.ogg" = 0.887, + @"sound/vox/vox/an.ogg" = 0.414, + @"sound/vox/vox/and.ogg" = 0.399, + @"sound/vox/vox/announcement.ogg" = 0.784, + @"sound/vox/vox/anomalous.ogg" = 0.821, + @"sound/vox/vox/antenna.ogg" = 0.717, + @"sound/vox/vox/any.ogg" = 0.384, + @"sound/vox/vox/apprehend.ogg" = 0.782, + @"sound/vox/vox/approach.ogg" = 0.807, + @"sound/vox/vox/are.ogg" = 0.312, + @"sound/vox/vox/area.ogg" = 0.556, + @"sound/vox/vox/arm.ogg" = 0.617, + @"sound/vox/vox/armed.ogg" = 0.587, + @"sound/vox/vox/armor.ogg" = 0.529, + @"sound/vox/vox/armory.ogg" = 0.708, + @"sound/vox/vox/arrest.ogg" = 0.553, + @"sound/vox/vox/ass.ogg" = 0.564, + @"sound/vox/vox/at.ogg" = 0.29, + @"sound/vox/vox/atomic.ogg" = 0.769, + @"sound/vox/vox/attention.ogg" = 0.805, + @"sound/vox/vox/authorize.ogg" = 1.081, + @"sound/vox/vox/authorized.ogg" = 1.047, + @"sound/vox/vox/automatic.ogg" = 0.868, + @"sound/vox/vox/away.ogg" = 0.512, + @"sound/vox/vox/b.ogg" = 0.514, + @"sound/vox/vox/back.ogg" = 0.541, + @"sound/vox/vox/backman.ogg" = 0.621, + @"sound/vox/vox/bad.ogg" = 0.581, + @"sound/vox/vox/bag.ogg" = 0.552, + @"sound/vox/vox/bailey.ogg" = 0.661, + @"sound/vox/vox/barracks.ogg" = 0.688, + @"sound/vox/vox/base.ogg" = 0.592, + @"sound/vox/vox/bay.ogg" = 0.546, + @"sound/vox/vox/be.ogg" = 0.348, + @"sound/vox/vox/been.ogg" = 0.407, + @"sound/vox/vox/before.ogg" = 0.684, + @"sound/vox/vox/beyond.ogg" = 0.604, + @"sound/vox/vox/biohazard.ogg" = 1.116, + @"sound/vox/vox/biological.ogg" = 1.108, + @"sound/vox/vox/birdwell.ogg" = 0.722, + @"sound/vox/vox/bizwarn.ogg" = 0.888, + @"sound/vox/vox/black.ogg" = 0.538, + @"sound/vox/vox/blast.ogg" = 0.614, + @"sound/vox/vox/blocked.ogg" = 0.588, + @"sound/vox/vox/blue.ogg" = 0.423, + @"sound/vox/vox/bottom.ogg" = 0.569, + @"sound/vox/vox/bravo.ogg" = 0.675, + @"sound/vox/vox/breach.ogg" = 0.632, + @"sound/vox/vox/breached.ogg" = 0.569, + @"sound/vox/vox/break.ogg" = 0.533, + @"sound/vox/vox/bridge.ogg" = 0.567, + @"sound/vox/vox/bust.ogg" = 0.543, + @"sound/vox/vox/but.ogg" = 0.354, + @"sound/vox/vox/button.ogg" = 0.559, + @"sound/vox/vox/bypass.ogg" = 0.909, + @"sound/vox/vox/c.ogg" = 0.529, + @"sound/vox/vox/cable.ogg" = 0.539, + @"sound/vox/vox/call.ogg" = 0.526, + @"sound/vox/vox/called.ogg" = 0.513, + @"sound/vox/vox/canal.ogg" = 0.729, + @"sound/vox/vox/cap.ogg" = 0.514, + @"sound/vox/vox/captain.ogg" = 0.729, + @"sound/vox/vox/capture.ogg" = 0.738, + @"sound/vox/vox/ceiling.ogg" = 0.611, + @"sound/vox/vox/celsius.ogg" = 0.97, + @"sound/vox/vox/center.ogg" = 0.688, + @"sound/vox/vox/centi.ogg" = 0.533, + @"sound/vox/vox/central.ogg" = 0.729, + @"sound/vox/vox/chamber.ogg" = 0.717, + @"sound/vox/vox/charlie.ogg" = 0.622, + @"sound/vox/vox/check.ogg" = 0.539, + @"sound/vox/vox/checkpoint.ogg" = 0.874, + @"sound/vox/vox/chemical.ogg" = 0.67, + @"sound/vox/vox/cleanup.ogg" = 0.746, + @"sound/vox/vox/clear.ogg" = 0.538, + @"sound/vox/vox/clearance.ogg" = 0.732, + @"sound/vox/vox/close.ogg" = 0.608, + @"sound/vox/vox/code.ogg" = 0.546, + @"sound/vox/vox/coded.ogg" = 0.568, + @"sound/vox/vox/collider.ogg" = 0.769, + @"sound/vox/vox/command.ogg" = 0.642, + @"sound/vox/vox/communication.ogg" = 1.159, + @"sound/vox/vox/complex.ogg" = 0.685, + @"sound/vox/vox/computer.ogg" = 0.757, + @"sound/vox/vox/condition.ogg" = 0.709, + @"sound/vox/vox/containment.ogg" = 0.909, + @"sound/vox/vox/contamination.ogg" = 1.123, + @"sound/vox/vox/control.ogg" = 0.883, + @"sound/vox/vox/coolant.ogg" = 0.526, + @"sound/vox/vox/coomer.ogg" = 0.589, + @"sound/vox/vox/core.ogg" = 0.73, + @"sound/vox/vox/correct.ogg" = 0.553, + @"sound/vox/vox/corridor.ogg" = 0.653, + @"sound/vox/vox/crew.ogg" = 0.541, + @"sound/vox/vox/cross.ogg" = 0.626, + @"sound/vox/vox/cryogenic.ogg" = 0.995, + @"sound/vox/vox/d.ogg" = 0.535, + @"sound/vox/vox/damage.ogg" = 0.724, + @"sound/vox/vox/damaged.ogg" = 0.671, + @"sound/vox/vox/danger.ogg" = 0.707, + @"sound/vox/vox/day.ogg" = 0.446, + @"sound/vox/vox/deactivated.ogg" = 1.097, + @"sound/vox/vox/decompression.ogg" = 1.068, + @"sound/vox/vox/decontamination.ogg" = 1.317, + @"sound/vox/vox/defense.ogg" = 0.812, + @"sound/vox/vox/degrees.ogg" = 0.724, + @"sound/vox/vox/delta.ogg" = 0.49, + @"sound/vox/vox/denied.ogg" = 0.67, + @"sound/vox/vox/deploy.ogg" = 0.752, + @"sound/vox/vox/deployed.ogg" = 0.836, + @"sound/vox/vox/destroy.ogg" = 0.736, + @"sound/vox/vox/destroyed.ogg" = 0.856, + @"sound/vox/vox/detain.ogg" = 0.684, + @"sound/vox/vox/detected.ogg" = 0.799, + @"sound/vox/vox/detonation.ogg" = 0.836, + @"sound/vox/vox/device.ogg" = 0.856, + @"sound/vox/vox/did.ogg" = 0.403, + @"sound/vox/vox/die.ogg" = 0.496, + @"sound/vox/vox/dimensional.ogg" = 0.836, + @"sound/vox/vox/dirt.ogg" = 0.403, + @"sound/vox/vox/disengaged.ogg" = 1.095, + @"sound/vox/vox/dish.ogg" = 0.625, + @"sound/vox/vox/disposal.ogg" = 0.813, + @"sound/vox/vox/distance.ogg" = 0.696, + @"sound/vox/vox/distortion.ogg" = 0.947, + @"sound/vox/vox/do.ogg" = 0.459, + @"sound/vox/vox/doctor.ogg" = 0.6, + @"sound/vox/vox/door.ogg" = 0.477, + @"sound/vox/vox/down.ogg" = 0.536, + @"sound/vox/vox/dual.ogg" = 0.458, + @"sound/vox/vox/duct.ogg" = 0.443, + @"sound/vox/vox/e.ogg" = 0.455, + @"sound/vox/vox/east.ogg" = 0.509, + @"sound/vox/vox/echo.ogg" = 0.522, + @"sound/vox/vox/ed.ogg" = 0.362, + @"sound/vox/vox/effect.ogg" = 0.572, + @"sound/vox/vox/egress.ogg" = 0.709, + @"sound/vox/vox/eight.ogg" = 0.481, + @"sound/vox/vox/eighteen.ogg" = 0.645, + @"sound/vox/vox/eighty.ogg" = 0.507, + @"sound/vox/vox/electric.ogg" = 0.691, + @"sound/vox/vox/electromagnetic.ogg" = 1.43, + @"sound/vox/vox/elevator.ogg" = 0.746, + @"sound/vox/vox/eleven.ogg" = 0.643, + @"sound/vox/vox/eliminate.ogg" = 0.812, + @"sound/vox/vox/emergency.ogg" = 0.943, + @"sound/vox/vox/energy.ogg" = 0.643, + @"sound/vox/vox/engage.ogg" = 0.848, + @"sound/vox/vox/engaged.ogg" = 0.826, + @"sound/vox/vox/engine.ogg" = 0.57, + @"sound/vox/vox/enter.ogg" = 0.462, + @"sound/vox/vox/entry.ogg" = 0.536, + @"sound/vox/vox/environment.ogg" = 0.959, + @"sound/vox/vox/error.ogg" = 0.469, + @"sound/vox/vox/escape.ogg" = 0.708, + @"sound/vox/vox/evacuate.ogg" = 0.937, + @"sound/vox/vox/exchange.ogg" = 0.945, + @"sound/vox/vox/exit.ogg" = 0.613, + @"sound/vox/vox/expect.ogg" = 0.685, + @"sound/vox/vox/experiment.ogg" = 0.957, + @"sound/vox/vox/experimental.ogg" = 1.106, + @"sound/vox/vox/explode.ogg" = 0.817, + @"sound/vox/vox/explosion.ogg" = 0.914, + @"sound/vox/vox/exposure.ogg" = 0.865, + @"sound/vox/vox/exterminate.ogg" = 0.982, + @"sound/vox/vox/extinguish.ogg" = 0.931, + @"sound/vox/vox/extinguisher.ogg" = 0.981, + @"sound/vox/vox/extreme.ogg" = 0.801, + @"sound/vox/vox/f.ogg" = 0.523, + @"sound/vox/vox/facility.ogg" = 0.89, + @"sound/vox/vox/fahrenheit.ogg" = 0.956, + @"sound/vox/vox/failed.ogg" = 0.637, + @"sound/vox/vox/failure.ogg" = 0.698, + @"sound/vox/vox/farthest.ogg" = 0.785, + @"sound/vox/vox/fast.ogg" = 0.636, + @"sound/vox/vox/feet.ogg" = 0.493, + @"sound/vox/vox/field.ogg" = 0.546, + @"sound/vox/vox/fifteen.ogg" = 0.806, + @"sound/vox/vox/fifth.ogg" = 0.589, + @"sound/vox/vox/fifty.ogg" = 0.625, + @"sound/vox/vox/final.ogg" = 0.634, + @"sound/vox/vox/fine.ogg" = 0.691, + @"sound/vox/vox/fire.ogg" = 0.69, + @"sound/vox/vox/first.ogg" = 0.574, + @"sound/vox/vox/five.ogg" = 0.693, + @"sound/vox/vox/flooding.ogg" = 0.812, + @"sound/vox/vox/floor.ogg" = 0.586, + @"sound/vox/vox/fool.ogg" = 0.554, + @"sound/vox/vox/for.ogg" = 0.549, + @"sound/vox/vox/forbidden.ogg" = 0.907, + @"sound/vox/vox/force.ogg" = 0.68, + @"sound/vox/vox/forms.ogg" = 0.762, + @"sound/vox/vox/found.ogg" = 0.67, + @"sound/vox/vox/four.ogg" = 0.471, + @"sound/vox/vox/fourteen.ogg" = 0.8, + @"sound/vox/vox/fourth.ogg" = 0.596, + @"sound/vox/vox/fourty.ogg" = 0.795, + @"sound/vox/vox/foxtrot.ogg" = 0.957, + @"sound/vox/vox/freeman.ogg" = 0.688, + @"sound/vox/vox/freezer.ogg" = 0.659, + @"sound/vox/vox/from.ogg" = 0.52, + @"sound/vox/vox/front.ogg" = 0.608, + @"sound/vox/vox/fuel.ogg" = 0.684, + @"sound/vox/vox/g.ogg" = 0.554, + @"sound/vox/vox/get.ogg" = 0.387, + @"sound/vox/vox/go.ogg" = 0.482, + @"sound/vox/vox/going.ogg" = 0.654, + @"sound/vox/vox/good.ogg" = 0.511, + @"sound/vox/vox/goodbye.ogg" = 0.762, + @"sound/vox/vox/gordon.ogg" = 0.572, + @"sound/vox/vox/got.ogg" = 0.533, + @"sound/vox/vox/government.ogg" = 0.803, + @"sound/vox/vox/granted.ogg" = 0.683, + @"sound/vox/vox/great.ogg" = 0.533, + @"sound/vox/vox/green.ogg" = 0.572, + @"sound/vox/vox/grenade.ogg" = 0.764, + @"sound/vox/vox/guard.ogg" = 0.546, + @"sound/vox/vox/gulf.ogg" = 0.548, + @"sound/vox/vox/gun.ogg" = 0.471, + @"sound/vox/vox/guthrie.ogg" = 0.624, + @"sound/vox/vox/handling.ogg" = 0.625, + @"sound/vox/vox/hangar.ogg" = 0.686, + @"sound/vox/vox/has.ogg" = 0.589, + @"sound/vox/vox/have.ogg" = 0.567, + @"sound/vox/vox/hazard.ogg" = 0.698, + @"sound/vox/vox/head.ogg" = 0.514, + @"sound/vox/vox/health.ogg" = 0.625, + @"sound/vox/vox/heat.ogg" = 0.543, + @"sound/vox/vox/helicopter.ogg" = 0.985, + @"sound/vox/vox/helium.ogg" = 0.78, + @"sound/vox/vox/hello.ogg" = 0.602, + @"sound/vox/vox/help.ogg" = 0.481, + @"sound/vox/vox/here.ogg" = 0.372, + @"sound/vox/vox/hide.ogg" = 0.527, + @"sound/vox/vox/high.ogg" = 0.628, + @"sound/vox/vox/highest.ogg" = 0.641, + @"sound/vox/vox/hit.ogg" = 0.433, + @"sound/vox/vox/hole.ogg" = 0.573, + @"sound/vox/vox/hostile.ogg" = 0.664, + @"sound/vox/vox/hot.ogg" = 0.458, + @"sound/vox/vox/hotel.ogg" = 0.681, + @"sound/vox/vox/hour.ogg" = 0.44, + @"sound/vox/vox/hours.ogg" = 0.626, + @"sound/vox/vox/hundred.ogg" = 0.596, + @"sound/vox/vox/hydro.ogg" = 0.724, + @"sound/vox/vox/i.ogg" = 0.206, + @"sound/vox/vox/idiot.ogg" = 0.596, + @"sound/vox/vox/illegal.ogg" = 0.635, + @"sound/vox/vox/immediate.ogg" = 0.823, + @"sound/vox/vox/immediately.ogg" = 0.929, + @"sound/vox/vox/in.ogg" = 0.452, + @"sound/vox/vox/inches.ogg" = 0.664, + @"sound/vox/vox/india.ogg" = 0.565, + @"sound/vox/vox/ing.ogg" = 0.39, + @"sound/vox/vox/inoperative.ogg" = 0.917, + @"sound/vox/vox/inside.ogg" = 0.753, + @"sound/vox/vox/inspection.ogg" = 0.821, + @"sound/vox/vox/inspector.ogg" = 0.762, + @"sound/vox/vox/interchange.ogg" = 0.941, + @"sound/vox/vox/intruder.ogg" = 0.822, + @"sound/vox/vox/invallid.ogg" = 0.72, + @"sound/vox/vox/invasion.ogg" = 0.736, + @"sound/vox/vox/is.ogg" = 0.398, + @"sound/vox/vox/it.ogg" = 0.28, + @"sound/vox/vox/johnson.ogg" = 0.789, + @"sound/vox/vox/juliet.ogg" = 0.726, + @"sound/vox/vox/key.ogg" = 0.414, + @"sound/vox/vox/kill.ogg" = 0.609, + @"sound/vox/vox/kilo.ogg" = 0.579, + @"sound/vox/vox/kit.ogg" = 0.327, + @"sound/vox/vox/lab.ogg" = 1.245, + @"sound/vox/vox/lambda.ogg" = 0.691, + @"sound/vox/vox/laser.ogg" = 0.624, + @"sound/vox/vox/last.ogg" = 0.582, + @"sound/vox/vox/launch.ogg" = 0.743, + @"sound/vox/vox/leak.ogg" = 0.472, + @"sound/vox/vox/leave.ogg" = 0.643, + @"sound/vox/vox/left.ogg" = 0.515, + @"sound/vox/vox/legal.ogg" = 0.568, + @"sound/vox/vox/level.ogg" = 0.496, + @"sound/vox/vox/lever.ogg" = 0.494, + @"sound/vox/vox/lie.ogg" = 0.443, + @"sound/vox/vox/lieutenant.ogg" = 0.803, + @"sound/vox/vox/life.ogg" = 0.771, + @"sound/vox/vox/light.ogg" = 0.48, + @"sound/vox/vox/lima.ogg" = 0.513, + @"sound/vox/vox/liquid.ogg" = 0.58, + @"sound/vox/vox/loading.ogg" = 0.836, + @"sound/vox/vox/locate.ogg" = 0.699, + @"sound/vox/vox/located.ogg" = 0.869, + @"sound/vox/vox/location.ogg" = 0.847, + @"sound/vox/vox/lock.ogg" = 0.537, + @"sound/vox/vox/locked.ogg" = 0.511, + @"sound/vox/vox/locker.ogg" = 0.568, + @"sound/vox/vox/lockout.ogg" = 0.731, + @"sound/vox/vox/lower.ogg" = 0.529, + @"sound/vox/vox/lowest.ogg" = 0.641, + @"sound/vox/vox/magnetic.ogg" = 0.703, + @"sound/vox/vox/main.ogg" = 0.655, + @"sound/vox/vox/maintenance.ogg" = 0.818, + @"sound/vox/vox/malfunction.ogg" = 1.073, + @"sound/vox/vox/man.ogg" = 0.577, + @"sound/vox/vox/mass.ogg" = 0.547, + @"sound/vox/vox/materials.ogg" = 0.944, + @"sound/vox/vox/maximum.ogg" = 0.852, + @"sound/vox/vox/may.ogg" = 0.354, + @"sound/vox/vox/medical.ogg" = 0.634, + @"sound/vox/vox/men.ogg" = 0.491, + @"sound/vox/vox/mercy.ogg" = 0.59, + @"sound/vox/vox/mesa.ogg" = 0.646, + @"sound/vox/vox/message.ogg" = 0.705, + @"sound/vox/vox/meter.ogg" = 0.532, + @"sound/vox/vox/micro.ogg" = 0.665, + @"sound/vox/vox/middle.ogg" = 0.501, + @"sound/vox/vox/mike.ogg" = 0.525, + @"sound/vox/vox/miles.ogg" = 0.717, + @"sound/vox/vox/military.ogg" = 0.834, + @"sound/vox/vox/milli.ogg" = 0.463, + @"sound/vox/vox/million.ogg" = 0.592, + @"sound/vox/vox/minefield.ogg" = 0.812, + @"sound/vox/vox/minimum.ogg" = 0.644, + @"sound/vox/vox/minutes.ogg" = 0.593, + @"sound/vox/vox/mister.ogg" = 0.627, + @"sound/vox/vox/mode.ogg" = 0.556, + @"sound/vox/vox/motor.ogg" = 0.504, + @"sound/vox/vox/motorpool.ogg" = 0.938, + @"sound/vox/vox/move.ogg" = 0.485, + @"sound/vox/vox/must.ogg" = 0.435, + @"sound/vox/vox/nearest.ogg" = 0.636, + @"sound/vox/vox/nice.ogg" = 0.679, + @"sound/vox/vox/nine.ogg" = 0.597, + @"sound/vox/vox/nineteen.ogg" = 0.782, + @"sound/vox/vox/ninety.ogg" = 0.631, + @"sound/vox/vox/no.ogg" = 0.604, + @"sound/vox/vox/nominal.ogg" = 0.757, + @"sound/vox/vox/north.ogg" = 0.468, + @"sound/vox/vox/not.ogg" = 0.485, + @"sound/vox/vox/november.ogg" = 0.818, + @"sound/vox/vox/now.ogg" = 0.403, + @"sound/vox/vox/number.ogg" = 0.599, + @"sound/vox/vox/objective.ogg" = 0.76, + @"sound/vox/vox/observation.ogg" = 1.066, + @"sound/vox/vox/of.ogg" = 0.409, + @"sound/vox/vox/officer.ogg" = 0.705, + @"sound/vox/vox/ok.ogg" = 0.629, + @"sound/vox/vox/on.ogg" = 0.633, + @"sound/vox/vox/one.ogg" = 0.473, + @"sound/vox/vox/open.ogg" = 0.562, + @"sound/vox/vox/operating.ogg" = 0.793, + @"sound/vox/vox/operations.ogg" = 1.004, + @"sound/vox/vox/operative.ogg" = 0.818, + @"sound/vox/vox/option.ogg" = 0.614, + @"sound/vox/vox/order.ogg" = 0.558, + @"sound/vox/vox/organic.ogg" = 0.911, + @"sound/vox/vox/oscar.ogg" = 0.611, + @"sound/vox/vox/out.ogg" = 0.404, + @"sound/vox/vox/outside.ogg" = 0.821, + @"sound/vox/vox/over.ogg" = 0.454, + @"sound/vox/vox/overload.ogg" = 0.826, + @"sound/vox/vox/override.ogg" = 0.914, + @"sound/vox/vox/pacify.ogg" = 0.868, + @"sound/vox/vox/pain.ogg" = 0.53, + @"sound/vox/vox/pal.ogg" = 0.518, + @"sound/vox/vox/panel.ogg" = 0.592, + @"sound/vox/vox/percent.ogg" = 0.716, + @"sound/vox/vox/perimeter.ogg" = 0.675, + @"sound/vox/vox/permitted.ogg" = 0.673, + @"sound/vox/vox/personnel.ogg" = 0.807, + @"sound/vox/vox/pipe.ogg" = 0.481, + @"sound/vox/vox/plant.ogg" = 0.511, + @"sound/vox/vox/platform.ogg" = 0.828, + @"sound/vox/vox/please.ogg" = 0.647, + @"sound/vox/vox/point.ogg" = 0.499, + @"sound/vox/vox/portal.ogg" = 0.522, + @"sound/vox/vox/power.ogg" = 0.555, + @"sound/vox/vox/presence.ogg" = 0.919, + @"sound/vox/vox/press.ogg" = 0.54, + @"sound/vox/vox/primary.ogg" = 0.765, + @"sound/vox/vox/proceed.ogg" = 0.682, + @"sound/vox/vox/processing.ogg" = 1.008, + @"sound/vox/vox/progress.ogg" = 0.791, + @"sound/vox/vox/proper.ogg" = 0.629, + @"sound/vox/vox/propulsion.ogg" = 0.889, + @"sound/vox/vox/prosecute.ogg" = 0.9, + @"sound/vox/vox/protective.ogg" = 0.812, + @"sound/vox/vox/push.ogg" = 0.525, + @"sound/vox/vox/quantum.ogg" = 0.72, + @"sound/vox/vox/quebec.ogg" = 0.669, + @"sound/vox/vox/question.ogg" = 0.717, + @"sound/vox/vox/questioning.ogg" = 0.837, + @"sound/vox/vox/quick.ogg" = 0.478, + @"sound/vox/vox/quit.ogg" = 0.454, + @"sound/vox/vox/radiation.ogg" = 0.963, + @"sound/vox/vox/radioactive.ogg" = 1.189, + @"sound/vox/vox/rads.ogg" = 0.641, + @"sound/vox/vox/rapid.ogg" = 0.666, + @"sound/vox/vox/reach.ogg" = 0.588, + @"sound/vox/vox/reached.ogg" = 0.569, + @"sound/vox/vox/reactor.ogg" = 0.702, + @"sound/vox/vox/red.ogg" = 0.457, + @"sound/vox/vox/relay.ogg" = 0.613, + @"sound/vox/vox/released.ogg" = 0.689, + @"sound/vox/vox/remaining.ogg" = 0.672, + @"sound/vox/vox/renegade.ogg" = 0.783, + @"sound/vox/vox/repair.ogg" = 0.722, + @"sound/vox/vox/report.ogg" = 0.795, + @"sound/vox/vox/reports.ogg" = 0.919, + @"sound/vox/vox/required.ogg" = 0.873, + @"sound/vox/vox/research.ogg" = 0.799, + @"sound/vox/vox/resevoir.ogg" = 0.995, + @"sound/vox/vox/resistance.ogg" = 0.846, + @"sound/vox/vox/right.ogg" = 0.531, + @"sound/vox/vox/rocket.ogg" = 0.566, + @"sound/vox/vox/roger.ogg" = 0.589, + @"sound/vox/vox/romeo.ogg" = 0.706, + @"sound/vox/vox/room.ogg" = 0.496, + @"sound/vox/vox/round.ogg" = 0.635, + @"sound/vox/vox/run.ogg" = 0.462, + @"sound/vox/vox/safe.ogg" = 0.517, + @"sound/vox/vox/safety.ogg" = 0.686, + @"sound/vox/vox/sargeant.ogg" = 0.809, + @"sound/vox/vox/satellite.ogg" = 0.828, + @"sound/vox/vox/save.ogg" = 0.623, + @"sound/vox/vox/science.ogg" = 0.749, + @"sound/vox/vox/scream.ogg" = 0.667, + @"sound/vox/vox/screen.ogg" = 0.739, + @"sound/vox/vox/search.ogg" = 0.595, + @"sound/vox/vox/second.ogg" = 0.558, + @"sound/vox/vox/secondary.ogg" = 0.972, + @"sound/vox/vox/seconds.ogg" = 0.626, + @"sound/vox/vox/sector.ogg" = 0.602, + @"sound/vox/vox/secure.ogg" = 0.778, + @"sound/vox/vox/secured.ogg" = 0.873, + @"sound/vox/vox/security.ogg" = 0.938, + @"sound/vox/vox/select.ogg" = 0.664, + @"sound/vox/vox/selected.ogg" = 0.782, + @"sound/vox/vox/service.ogg" = 0.702, + @"sound/vox/vox/seven.ogg" = 0.603, + @"sound/vox/vox/seventeen.ogg" = 1, + @"sound/vox/vox/seventy.ogg" = 0.716, + @"sound/vox/vox/severe.ogg" = 0.686, + @"sound/vox/vox/sewage.ogg" = 0.675, + @"sound/vox/vox/sewer.ogg" = 0.543, + @"sound/vox/vox/shield.ogg" = 0.547, + @"sound/vox/vox/shipment.ogg" = 0.745, + @"sound/vox/vox/shock.ogg" = 0.541, + @"sound/vox/vox/shoot.ogg" = 0.518, + @"sound/vox/vox/shower.ogg" = 0.674, + @"sound/vox/vox/shut.ogg" = 0.483, + @"sound/vox/vox/side.ogg" = 0.662, + @"sound/vox/vox/sierra.ogg" = 0.617, + @"sound/vox/vox/sight.ogg" = 0.601, + @"sound/vox/vox/silo.ogg" = 0.636, + @"sound/vox/vox/six.ogg" = 0.549, + @"sound/vox/vox/sixteen.ogg" = 0.844, + @"sound/vox/vox/sixty.ogg" = 0.652, + @"sound/vox/vox/slime.ogg" = 0.699, + @"sound/vox/vox/slow.ogg" = 0.59, + @"sound/vox/vox/soldier.ogg" = 0.722, + @"sound/vox/vox/some.ogg" = 0.471, + @"sound/vox/vox/someone.ogg" = 0.795, + @"sound/vox/vox/something.ogg" = 0.603, + @"sound/vox/vox/son.ogg" = 0.524, + @"sound/vox/vox/sorry.ogg" = 0.57, + @"sound/vox/vox/south.ogg" = 0.655, + @"sound/vox/vox/squad.ogg" = 0.66, + @"sound/vox/vox/square.ogg" = 0.637, + @"sound/vox/vox/stairway.ogg" = 0.778, + @"sound/vox/vox/status.ogg" = 0.675, + @"sound/vox/vox/sterile.ogg" = 0.556, + @"sound/vox/vox/sterilization.ogg" = 1.198, + @"sound/vox/vox/storage.ogg" = 0.877, + @"sound/vox/vox/sub.ogg" = 0.509, + @"sound/vox/vox/subsurface.ogg" = 0.964, + @"sound/vox/vox/sudden.ogg" = 0.569, + @"sound/vox/vox/suit.ogg" = 0.462, + @"sound/vox/vox/superconducting.ogg" = 1.196, + @"sound/vox/vox/supercooled.ogg" = 0.957, + @"sound/vox/vox/supply.ogg" = 0.809, + @"sound/vox/vox/surface.ogg" = 0.773, + @"sound/vox/vox/surrender.ogg" = 0.718, + @"sound/vox/vox/surround.ogg" = 0.749, + @"sound/vox/vox/surrounded.ogg" = 0.861, + @"sound/vox/vox/switch.ogg" = 0.663, + @"sound/vox/vox/system.ogg" = 0.658, + @"sound/vox/vox/systems.ogg" = 0.659, + @"sound/vox/vox/tactical.ogg" = 0.793, + @"sound/vox/vox/take.ogg" = 0.52, + @"sound/vox/vox/talk.ogg" = 0.501, + @"sound/vox/vox/tango.ogg" = 0.679, + @"sound/vox/vox/tank.ogg" = 0.666, + @"sound/vox/vox/target.ogg" = 0.588, + @"sound/vox/vox/team.ogg" = 0.529, + @"sound/vox/vox/temperature.ogg" = 0.919, + @"sound/vox/vox/temporal.ogg" = 0.753, + @"sound/vox/vox/ten.ogg" = 0.503, + @"sound/vox/vox/terminal.ogg" = 0.608, + @"sound/vox/vox/terminated.ogg" = 0.884, + @"sound/vox/vox/termination.ogg" = 0.928, + @"sound/vox/vox/test.ogg" = 0.688, + @"sound/vox/vox/that.ogg" = 0.55, + @"sound/vox/vox/the.ogg" = 0.359, + @"sound/vox/vox/then.ogg" = 0.574, + @"sound/vox/vox/there.ogg" = 0.454, + @"sound/vox/vox/third.ogg" = 0.646, + @"sound/vox/vox/thirteen.ogg" = 0.765, + @"sound/vox/vox/thirty.ogg" = 0.577, + @"sound/vox/vox/this.ogg" = 0.454, + @"sound/vox/vox/those.ogg" = 0.598, + @"sound/vox/vox/thousand.ogg" = 0.696, + @"sound/vox/vox/threat.ogg" = 0.55, + @"sound/vox/vox/three.ogg" = 0.464, + @"sound/vox/vox/through.ogg" = 0.413, + @"sound/vox/vox/time.ogg" = 0.593, + @"sound/vox/vox/to.ogg" = 0.502, + @"sound/vox/vox/top.ogg" = 0.56, + @"sound/vox/vox/topside.ogg" = 0.854, + @"sound/vox/vox/touch.ogg" = 0.481, + @"sound/vox/vox/towards.ogg" = 0.571, + @"sound/vox/vox/track.ogg" = 0.688, + @"sound/vox/vox/train.ogg" = 0.59, + @"sound/vox/vox/transportation.ogg" = 1.352, + @"sound/vox/vox/truck.ogg" = 0.566, + @"sound/vox/vox/tunnel.ogg" = 0.495, + @"sound/vox/vox/turn.ogg" = 0.496, + @"sound/vox/vox/turret.ogg" = 0.47, + @"sound/vox/vox/twelve.ogg" = 0.525, + @"sound/vox/vox/twenty.ogg" = 0.585, + @"sound/vox/vox/two.ogg" = 0.507, + @"sound/vox/vox/unauthorized.ogg" = 1.177, + @"sound/vox/vox/under.ogg" = 0.518, + @"sound/vox/vox/uniform.ogg" = 0.837, + @"sound/vox/vox/unlocked.ogg" = 0.774, + @"sound/vox/vox/until.ogg" = 0.636, + @"sound/vox/vox/up.ogg" = 0.541, + @"sound/vox/vox/upper.ogg" = 0.542, + @"sound/vox/vox/uranium.ogg" = 0.891, + @"sound/vox/vox/us.ogg" = 0.165, + @"sound/vox/vox/usa.ogg" = 0.778, + @"sound/vox/vox/use.ogg" = 0.479, + @"sound/vox/vox/used.ogg" = 0.67, + @"sound/vox/vox/user.ogg" = 0.584, + @"sound/vox/vox/vacate.ogg" = 0.741, + @"sound/vox/vox/valid.ogg" = 0.612, + @"sound/vox/vox/vapor.ogg" = 0.589, + @"sound/vox/vox/vent.ogg" = 0.435, + @"sound/vox/vox/ventillation.ogg" = 0.966, + ) + var/list/sounds_3000 = list( + @"sound/vox/vox/victor.ogg" = 0.584, + @"sound/vox/vox/violated.ogg" = 0.895, + @"sound/vox/vox/violation.ogg" = 0.937, + @"sound/vox/vox/voltage.ogg" = 0.708, + @"sound/vox/vox/vox_login.ogg" = 10.288, + @"sound/vox/vox/walk.ogg" = 0.471, + @"sound/vox/vox/wall.ogg" = 0.559, + @"sound/vox/vox/want.ogg" = 0.479, + @"sound/vox/vox/wanted.ogg" = 0.604, + @"sound/vox/vox/warm.ogg" = 0.476, + @"sound/vox/vox/warn.ogg" = 0.466, + @"sound/vox/vox/warning.ogg" = 0.564, + @"sound/vox/vox/waste.ogg" = 0.557, + @"sound/vox/vox/water.ogg" = 0.506, + @"sound/vox/vox/we.ogg" = 0.295, + @"sound/vox/vox/weapon.ogg" = 0.55, + @"sound/vox/vox/west.ogg" = 0.483, + @"sound/vox/vox/whiskey.ogg" = 0.522, + @"sound/vox/vox/white.ogg" = 0.459, + @"sound/vox/vox/wilco.ogg" = 0.627, + @"sound/vox/vox/will.ogg" = 0.32, + @"sound/vox/vox/with.ogg" = 0.339, + @"sound/vox/vox/without.ogg" = 0.604, + @"sound/vox/vox/woop.ogg" = 0.63, + @"sound/vox/vox/xeno.ogg" = 0.702, + @"sound/vox/vox/yankee.ogg" = 0.692, + @"sound/vox/vox/yards.ogg" = 0.533, + @"sound/vox/vox/year.ogg" = 0.538, + @"sound/vox/vox/yellow.ogg" = 0.526, + @"sound/vox/vox/yes.ogg" = 0.517, + @"sound/vox/vox/you.ogg" = 0.456, + @"sound/vox/vox/your.ogg" = 0.403, + @"sound/vox/vox/yourself.ogg" = 0.93, + @"sound/vox/vox/zero.ogg" = 0.648, + @"sound/vox/vox/zone.ogg" = 0.687, + @"sound/vox/vox/zulu.ogg" = 0.713, + @"sound/vox/vox_military/!bloop.ogg" = 1.703, + @"sound/vox/vox_military/!buzwarn.ogg" = 1.088, + @"sound/vox/vox_military/!dadeda.ogg" = 2.002, + @"sound/vox/vox_military/!deeoo.ogg" = 1.87, + @"sound/vox/vox_military/!doop.ogg" = 1.93, + @"sound/vox/vox_military/!error.ogg" = 0.716, + @"sound/vox/vox_military/!signon.ogg" = 1.419, + @"sound/vox/vox_military/,.ogg" = 0.248, + @"sound/vox/vox_military/..ogg" = 0.431, + @"sound/vox/vox_military/access.ogg" = 1.4, + @"sound/vox/vox_military/acknowledged.ogg" = 1.476, + @"sound/vox/vox_military/activate.ogg" = 1.6, + @"sound/vox/vox_military/activated.ogg" = 1.4, + @"sound/vox/vox_military/activity.ogg" = 1.502, + @"sound/vox/vox_military/advanced.ogg" = 1.639, + @"sound/vox/vox_military/alert.ogg" = 1.333, + @"sound/vox/vox_military/alien.ogg" = 1.447, + @"sound/vox/vox_military/all.ogg" = 1.113, + @"sound/vox/vox_military/alpha.ogg" = 1.194, + @"sound/vox/vox_military/an.ogg" = 1.135, + @"sound/vox/vox_military/and.ogg" = 1.292, + @"sound/vox/vox_military/announcement.ogg" = 1.825, + @"sound/vox/vox_military/antenna.ogg" = 1.754, + @"sound/vox/vox_military/any.ogg" = 0.956, + @"sound/vox/vox_military/approach.ogg" = 1.599, + @"sound/vox/vox_military/are.ogg" = 0.778, + @"sound/vox/vox_military/area.ogg" = 1.229, + @"sound/vox/vox_military/armed.ogg" = 1.359, + @"sound/vox/vox_military/armory.ogg" = 1.508, + @"sound/vox/vox_military/atomic.ogg" = 1.743, + @"sound/vox/vox_military/attention.ogg" = 1.746, + @"sound/vox/vox_military/authorized.ogg" = 1.696, + @"sound/vox/vox_military/automatic.ogg" = 1.789, + @"sound/vox/vox_military/away.ogg" = 1.563, + @"sound/vox/vox_military/b.ogg" = 0.773, + @"sound/vox/vox_military/back.ogg" = 0.76, + @"sound/vox/vox_military/base.ogg" = 0.795, + @"sound/vox/vox_military/biohazard.ogg" = 1.326, + @"sound/vox/vox_military/biological.ogg" = 1.461, + @"sound/vox/vox_military/black.ogg" = 0.91, + @"sound/vox/vox_military/blast.ogg" = 0.884, + @"sound/vox/vox_military/blue.ogg" = 0.8, + @"sound/vox/vox_military/bravo.ogg" = 1.144, + @"sound/vox/vox_military/breach.ogg" = 1.146, + @"sound/vox/vox_military/bypass.ogg" = 1.273, + @"sound/vox/vox_military/cable.ogg" = 1.07, + @"sound/vox/vox_military/center.ogg" = 1.153, + @"sound/vox/vox_military/central.ogg" = 1.654, + @"sound/vox/vox_military/chamber.ogg" = 1.259, + @"sound/vox/vox_military/check.ogg" = 0.955, + @"sound/vox/vox_military/checkpoint.ogg" = 1.304, + @"sound/vox/vox_military/chemical.ogg" = 1.023, + @"sound/vox/vox_military/clear.ogg" = 1.113, + @"sound/vox/vox_military/code.ogg" = 1.017, + @"sound/vox/vox_military/command.ogg" = 1.2, + @"sound/vox/vox_military/communications.ogg" = 1.658, + @"sound/vox/vox_military/complex.ogg" = 1.148, + @"sound/vox/vox_military/containment.ogg" = 1.45, + @"sound/vox/vox_military/contamination.ogg" = 1.816, + @"sound/vox/vox_military/control.ogg" = 1.376, + @"sound/vox/vox_military/coolant.ogg" = 1.206, + @"sound/vox/vox_military/core.ogg" = 1.112, + @"sound/vox/vox_military/crew.ogg" = 1.073, + @"sound/vox/vox_military/cross.ogg" = 0.98, + @"sound/vox/vox_military/d.ogg" = 0.71, + @"sound/vox/vox_military/damage.ogg" = 1.144, + @"sound/vox/vox_military/danger.ogg" = 1.08, + @"sound/vox/vox_military/day.ogg" = 0.902, + @"sound/vox/vox_military/deactivated.ogg" = 1.547, + @"sound/vox/vox_military/defense.ogg" = 1.195, + @"sound/vox/vox_military/delta.ogg" = 0.971, + @"sound/vox/vox_military/denied.ogg" = 1.296, + @"sound/vox/vox_military/destroy.ogg" = 1.175, + @"sound/vox/vox_military/detected.ogg" = 1.547, + @"sound/vox/vox_military/detonation.ogg" = 1.469, + @"sound/vox/vox_military/device.ogg" = 1.168, + @"sound/vox/vox_military/dimensional.ogg" = 1.234, + @"sound/vox/vox_military/disengaged.ogg" = 1.778, + @"sound/vox/vox_military/do.ogg" = 0.762, + @"sound/vox/vox_military/door.ogg" = 0.898, + @"sound/vox/vox_military/down.ogg" = 0.803, + @"sound/vox/vox_military/e.ogg" = 0.681, + @"sound/vox/vox_military/echo.ogg" = 0.88, + @"sound/vox/vox_military/eight.ogg" = 0.951, + @"sound/vox/vox_military/eighteen.ogg" = 1.302, + @"sound/vox/vox_military/eighty.ogg" = 1.08, + @"sound/vox/vox_military/electric.ogg" = 1.175, + @"sound/vox/vox_military/eleven.ogg" = 0.952, + @"sound/vox/vox_military/eliminate.ogg" = 1.055, + @"sound/vox/vox_military/emergency.ogg" = 1.327, + @"sound/vox/vox_military/energy.ogg" = 1.198, + @"sound/vox/vox_military/engage.ogg" = 1.185, + @"sound/vox/vox_military/engaged.ogg" = 1.231, + @"sound/vox/vox_military/enter.ogg" = 1.069, + @"sound/vox/vox_military/entry.ogg" = 1.132, + @"sound/vox/vox_military/escape.ogg" = 1.255, + @"sound/vox/vox_military/evacuate.ogg" = 1.069, + @"sound/vox/vox_military/exchange.ogg" = 1.177, + @"sound/vox/vox_military/experimental.ogg" = 1.536, + @"sound/vox/vox_military/extreme.ogg" = 1.435, + @"sound/vox/vox_military/facility.ogg" = 1.678, + @"sound/vox/vox_military/failed.ogg" = 1.438, + @"sound/vox/vox_military/failure.ogg" = 1.443, + @"sound/vox/vox_military/field.ogg" = 1.414, + @"sound/vox/vox_military/fifteen.ogg" = 1.253, + @"sound/vox/vox_military/fifty.ogg" = 1.271, + @"sound/vox/vox_military/fire.ogg" = 1.845, + @"sound/vox/vox_military/five.ogg" = 1.1, + @"sound/vox/vox_military/forbidden.ogg" = 1.375, + @"sound/vox/vox_military/force.ogg" = 1.441, + @"sound/vox/vox_military/forms.ogg" = 1.507, + @"sound/vox/vox_military/forty.ogg" = 1.82, + @"sound/vox/vox_military/four.ogg" = 1.1, + @"sound/vox/vox_military/fourteen.ogg" = 1.677, + @"sound/vox/vox_military/freeman.ogg" = 1.546, + @"sound/vox/vox_military/from.ogg" = 1.41, + @"sound/vox/vox_military/fuel.ogg" = 1.562, + @"sound/vox/vox_military/get.ogg" = 1.047, + @"sound/vox/vox_military/go.ogg" = 1.04, + @"sound/vox/vox_military/gordon.ogg" = 1.082, + @"sound/vox/vox_military/granted.ogg" = 1.028, + @"sound/vox/vox_military/green.ogg" = 1.576, + @"sound/vox/vox_military/handling.ogg" = 1.176, + @"sound/vox/vox_military/hanger.ogg" = 1.196, + @"sound/vox/vox_military/have.ogg" = 0.969, + @"sound/vox/vox_military/hazard.ogg" = 0.999, + @"sound/vox/vox_military/health.ogg" = 0.948, + @"sound/vox/vox_military/heat.ogg" = 0.869, + @"sound/vox/vox_military/helecopter.ogg" = 1.419, + @"sound/vox/vox_military/helium.ogg" = 1.373, + @"sound/vox/vox_military/high.ogg" = 1.203, + @"sound/vox/vox_military/hostal.ogg" = 1.395, + @"sound/vox/vox_military/hostile.ogg" = 1.395, + @"sound/vox/vox_military/hotel.ogg" = 1.412, + @"sound/vox/vox_military/hundred.ogg" = 1.136, + @"sound/vox/vox_military/hydro.ogg" = 1.048, + @"sound/vox/vox_military/illegal.ogg" = 1.007, + @"sound/vox/vox_military/immediate.ogg" = 1.121, + @"sound/vox/vox_military/immediately.ogg" = 1.389, + @"sound/vox/vox_military/in.ogg" = 1.072, + @"sound/vox/vox_military/india.ogg" = 0.962, + @"sound/vox/vox_military/inoperative.ogg" = 1.496, + @"sound/vox/vox_military/inside.ogg" = 1.009, + @"sound/vox/vox_military/inspection.ogg" = 1.243, + @"sound/vox/vox_military/is.ogg" = 0.904, + @"sound/vox/vox_military/kilo.ogg" = 1.434, + @"sound/vox/vox_military/kilo02.ogg" = 1.109, + @"sound/vox/vox_military/lambda.ogg" = 1.149, + @"sound/vox/vox_military/laser.ogg" = 1.077, + @"sound/vox/vox_military/launch.ogg" = 1.26, + @"sound/vox/vox_military/leak.ogg" = 0.977, + @"sound/vox/vox_military/level.ogg" = 0.953, + @"sound/vox/vox_military/lima.ogg" = 1.232, + @"sound/vox/vox_military/lima_alt.ogg" = 1.219, + @"sound/vox/vox_military/liquid.ogg" = 1.093, + @"sound/vox/vox_military/lock.ogg" = 0.936, + @"sound/vox/vox_military/locked.ogg" = 1.038, + @"sound/vox/vox_military/lockout.ogg" = 1.231, + @"sound/vox/vox_military/lower.ogg" = 1.099, + @"sound/vox/vox_military/main.ogg" = 1.51, + @"sound/vox/vox_military/maintenance.ogg" = 1.918, + @"sound/vox/vox_military/malfunction.ogg" = 1.833, + @"sound/vox/vox_military/materials.ogg" = 2.031, + @"sound/vox/vox_military/may.ogg" = 1.347, + @"sound/vox/vox_military/medical.ogg" = 1.39, + @"sound/vox/vox_military/men.ogg" = 1.156, + @"sound/vox/vox_military/mesa.ogg" = 1.639, + @"sound/vox/vox_military/message.ogg" = 1.171, + @"sound/vox/vox_military/mic_mike.ogg" = 1.067, + @"sound/vox/vox_military/mike.ogg" = 1.067, + @"sound/vox/vox_military/military.ogg" = 1.584, + @"sound/vox/vox_military/motorpool.ogg" = 1.477, + @"sound/vox/vox_military/move.ogg" = 1.175, + @"sound/vox/vox_military/must.ogg" = 1.478, + @"sound/vox/vox_military/nearest.ogg" = 1.389, + @"sound/vox/vox_military/nine.ogg" = 1.099, + @"sound/vox/vox_military/nineteen.ogg" = 1.509, + @"sound/vox/vox_military/ninety.ogg" = 1.237, + @"sound/vox/vox_military/no.ogg" = 1.091, + @"sound/vox/vox_military/noe.ogg" = 1.026, + @"sound/vox/vox_military/not.ogg" = 1.218, + @"sound/vox/vox_military/now.ogg" = 1.162, + @"sound/vox/vox_military/objective.ogg" = 1.624, + @"sound/vox/vox_military/of.ogg" = 1.118, + @"sound/vox/vox_military/on.ogg" = 0.949, + @"sound/vox/vox_military/one.ogg" = 1, + @"sound/vox/vox_military/open.ogg" = 0.937, + @"sound/vox/vox_military/operating.ogg" = 1.365, + @"sound/vox/vox_military/option.ogg" = 1.269, + @"sound/vox/vox_military/override.ogg" = 1.374, + @"sound/vox/vox_military/percent.ogg" = 1.339, + @"sound/vox/vox_military/perimeter.ogg" = 1.462, + @"sound/vox/vox_military/permitted.ogg" = 1.307, + @"sound/vox/vox_military/perpulsion.ogg" = 1.416, + @"sound/vox/vox_military/personnel.ogg" = 1.471, + @"sound/vox/vox_military/plant.ogg" = 1.187, + @"sound/vox/vox_military/please.ogg" = 1.339, + @"sound/vox/vox_military/portal.ogg" = 1.004, + @"sound/vox/vox_military/power.ogg" = 1.173, + @"sound/vox/vox_military/primary.ogg" = 1.329, + @"sound/vox/vox_military/prosecute.ogg" = 1.418, + @"sound/vox/vox_military/questioning.ogg" = 1.536, + @"sound/vox/vox_military/radiation.ogg" = 1.665, + @"sound/vox/vox_military/radioactive.ogg" = 1.58, + @"sound/vox/vox_military/reach.ogg" = 1.037, + @"sound/vox/vox_military/reactor.ogg" = 1.152, + @"sound/vox/vox_military/relay.ogg" = 1.201, + @"sound/vox/vox_military/released.ogg" = 1.305, + @"sound/vox/vox_military/remaining.ogg" = 1.236, + @"sound/vox/vox_military/renegade.ogg" = 1.452, + @"sound/vox/vox_military/repair.ogg" = 1.202, + @"sound/vox/vox_military/report.ogg" = 1.352, + @"sound/vox/vox_military/reports.ogg" = 1.207, + @"sound/vox/vox_military/required.ogg" = 1.4, + @"sound/vox/vox_military/research.ogg" = 1.439, + @"sound/vox/vox_military/resistance.ogg" = 1.567, + @"sound/vox/vox_military/rocket.ogg" = 1.365, + @"sound/vox/vox_military/safety.ogg" = 1.546, + @"sound/vox/vox_military/satellite.ogg" = 1.401, + @"sound/vox/vox_military/science.ogg" = 1.387, + @"sound/vox/vox_military/search.ogg" = 1.209, + @"sound/vox/vox_military/second.ogg" = 1.333, + @"sound/vox/vox_military/secondary.ogg" = 1.557, + @"sound/vox/vox_military/seconds.ogg" = 1.508, + @"sound/vox/vox_military/sector.ogg" = 1.162, + @"sound/vox/vox_military/secure.ogg" = 1.4, + @"sound/vox/vox_military/secured.ogg" = 1.438, + @"sound/vox/vox_military/security.ogg" = 1.4, + @"sound/vox/vox_military/service.ogg" = 1.464, + @"sound/vox/vox_military/seven.ogg" = 1.176, + @"sound/vox/vox_military/seventeen.ogg" = 1.312, + @"sound/vox/vox_military/seventy.ogg" = 1.191, + @"sound/vox/vox_military/severe.ogg" = 1.343, + @"sound/vox/vox_military/sheild.ogg" = 1.228, + @"sound/vox/vox_military/shoot.ogg" = 1.1, + @"sound/vox/vox_military/sierra.ogg" = 1.317, + @"sound/vox/vox_military/sight.ogg" = 0.976, + @"sound/vox/vox_military/silo.ogg" = 1.269, + @"sound/vox/vox_military/six.ogg" = 1.1, + @"sound/vox/vox_military/sixteen.ogg" = 1.507, + @"sound/vox/vox_military/sixty.ogg" = 1.061, + @"sound/vox/vox_military/sorry.ogg" = 1.061, + @"sound/vox/vox_military/sqaud.ogg" = 1.423, + @"sound/vox/vox_military/status.ogg" = 1.284, + @"sound/vox/vox_military/sterilization.ogg" = 1.794, + @"sound/vox/vox_military/storage.ogg" = 1.308, + @"sound/vox/vox_military/supercooled.ogg" = 1.677, + @"sound/vox/vox_military/surrender.ogg" = 1.447, + @"sound/vox/vox_military/system.ogg" = 1.378, + @"sound/vox/vox_military/systems.ogg" = 1.734, + @"sound/vox/vox_military/target.ogg" = 1.174, + @"sound/vox/vox_military/team.ogg" = 1.082, + @"sound/vox/vox_military/ten.ogg" = 1.086, + @"sound/vox/vox_military/terminated.ogg" = 1.41, + @"sound/vox/vox_military/test.ogg" = 1.087, + @"sound/vox/vox_military/the.ogg" = 0.967, + @"sound/vox/vox_military/thirtteen.ogg" = 1.238, + @"sound/vox/vox_military/thirty.ogg" = 1.111, + @"sound/vox/vox_military/this.ogg" = 1.026, + @"sound/vox/vox_military/three.ogg" = 1, + @"sound/vox/vox_military/time.ogg" = 0.997, + @"sound/vox/vox_military/to.ogg" = 0.867, + @"sound/vox/vox_military/topside.ogg" = 1.336, + @"sound/vox/vox_military/track.ogg" = 1.124, + @"sound/vox/vox_military/train.ogg" = 1.143, + @"sound/vox/vox_military/turret.ogg" = 1.025, + @"sound/vox/vox_military/twelve.ogg" = 1.155, + @"sound/vox/vox_military/twenty.ogg" = 1.025, + @"sound/vox/vox_military/two.ogg" = 0.96, + @"sound/vox/vox_military/unauthorized.ogg" = 1.663, + @"sound/vox/vox_military/under.ogg" = 1.258, + @"sound/vox/vox_military/units.ogg" = 1.27, + @"sound/vox/vox_military/until.ogg" = 1.342, + @"sound/vox/vox_military/up.ogg" = 0.85, + @"sound/vox/vox_military/uranium.ogg" = 1.266, + @"sound/vox/vox_military/use.ogg" = 1.076, + @"sound/vox/vox_military/violation.ogg" = 1.593, + @"sound/vox/vox_military/voltage.ogg" = 1.316, + @"sound/vox/vox_military/wanted.ogg" = 1.271, + @"sound/vox/vox_military/warning.ogg" = 1.01, + @"sound/vox/vox_military/we.ogg" = 0.922, + @"sound/vox/vox_military/weapon.ogg" = 1.256, + @"sound/vox/vox_military/will.ogg" = 1.047, + @"sound/vox/vox_military/with.ogg" = 1.072, + @"sound/vox/vox_military/yellow.ogg" = 1.31, + @"sound/vox/vox_military/you.ogg" = 1.054, + @"sound/vox/vox_military/your.ogg" = 1.164, + @"sound/vox/vox_military/zero.ogg" = 1.033, + @"sound/vox/vox_military/zone.ogg" = 1.189, + @"sound/weapons/handling/flamer_ignition.ogg" = 1.51, + @"sound/weapons/handling/flamer_reload.ogg" = 1.678, + @"sound/weapons/handling/flamer_unload.ogg" = 1.829, + @"sound/weapons/handling/gun_ar10_cocked.ogg" = 0.832, + @"sound/weapons/handling/gun_ar10_unload.ogg" = 0.439, + @"sound/weapons/handling/gun_boltaction_close.ogg" = 0.553, + @"sound/weapons/handling/gun_boltaction_open.ogg" = 0.507, + @"sound/weapons/handling/gun_boomslang_hitsound.ogg" = 0.471, + @"sound/weapons/handling/gun_boomslang_lever.ogg" = 1.061, + @"sound/weapons/handling/gun_burst_toggle.ogg" = 0.235, + @"sound/weapons/handling/gun_burst_toggle.wav" = 0.235, + @"sound/weapons/handling/gun_cmb_click1.ogg" = 0.516, + @"sound/weapons/handling/gun_cmb_click2.ogg" = 0.294, + @"sound/weapons/handling/gun_jam_click.ogg" = 0.381, + @"sound/weapons/handling/gun_jam_initial_click.ogg" = 0.167, + @"sound/weapons/handling/gun_jam_rack_1.ogg" = 0.757, + @"sound/weapons/handling/gun_jam_rack_2.ogg" = 0.668, + @"sound/weapons/handling/gun_jam_rack_3.ogg" = 0.925, + @"sound/weapons/handling/gun_jam_rack_success.ogg" = 3.03, + @"sound/weapons/handling/gun_lever_action_hitsound.ogg" = 0.471, + @"sound/weapons/handling/gun_lever_action_lever.ogg" = 0.628, + @"sound/weapons/handling/gun_lever_action_reload.ogg" = 0.49, + @"sound/weapons/handling/gun_lever_action_superload.ogg" = 0.78, + @"sound/weapons/handling/gun_m16_reload.ogg" = 2.066, + @"sound/weapons/handling/gun_m16_unload.ogg" = 0.798, + @"sound/weapons/handling/gun_mar40_reload.ogg" = 1.887, + @"sound/weapons/handling/gun_mar40_unload.ogg" = 1.738, + @"sound/weapons/handling/gun_mou_close.ogg" = 0.528, + @"sound/weapons/handling/gun_mou_open.ogg" = 0.416, + @"sound/weapons/handling/gun_mou_reload.ogg" = 0.277, + @"sound/weapons/handling/gun_sg_reload.ogg" = 1.014, + @"sound/weapons/handling/gun_sg_unload.ogg" = 1.11, + @"sound/weapons/handling/gun_su6_reload.ogg" = 1.161, + @"sound/weapons/handling/gun_su6_unload.ogg" = 1.145, + @"sound/weapons/handling/gun_u7_activate.ogg" = 0.734, + @"sound/weapons/handling/gun_underbarrel_activate.ogg" = 0.69, + @"sound/weapons/handling/gun_underbarrel_deactivate.ogg" = 0.734, + @"sound/weapons/handling/gun_underbarrel_flamer_activate.ogg" = 1.884, + @"sound/weapons/handling/gun_vulture_bolt_close.ogg" = 2.259, + @"sound/weapons/handling/gun_vulture_bolt_eject.ogg" = 0.967, + @"sound/weapons/handling/hpr_reload.ogg" = 1.588, + @"sound/weapons/handling/hpr_unload.ogg" = 1.065, + @"sound/weapons/handling/l42_reload.ogg" = 1.084, + @"sound/weapons/handling/l42_unload.ogg" = 0.473, + @"sound/weapons/handling/m40sd_reload.ogg" = 0.81, + @"sound/weapons/handling/m40sd_unload.ogg" = 0.669, + @"sound/weapons/handling/m41_reload.ogg" = 0.516, + @"sound/weapons/handling/m41_unload.ogg" = 0.758, + @"sound/weapons/handling/m79_break_open.ogg" = 0.323, + @"sound/weapons/handling/m79_reload.ogg" = 0.523, + @"sound/weapons/handling/m79_shoot.ogg" = 2.17, + @"sound/weapons/handling/m79_unload.ogg" = 0.366, + @"sound/weapons/handling/mag_refill_1.ogg" = 1.032, + @"sound/weapons/handling/mag_refill_2.ogg" = 1.152, + @"sound/weapons/handling/mag_refill_3.ogg" = 1.104, + @"sound/weapons/handling/nsg23_cocked.ogg" = 0.831, + @"sound/weapons/handling/nsg23_reload.ogg" = 0.548, + @"sound/weapons/handling/nsg23_unload.ogg" = 0.278, + @"sound/weapons/handling/pkd_close_chamber.ogg" = 0.24, + @"sound/weapons/handling/pkd_cock.wav" = 0.235, + @"sound/weapons/handling/pkd_open_chamber.ogg" = 0.447, + @"sound/weapons/handling/pkd_speed_load.ogg" = 0.902, + @"sound/weapons/handling/safety_toggle.ogg" = 0.446, + @"sound/weapons/handling/smg_reload.ogg" = 0.91, + @"sound/weapons/handling/smg_unload.ogg" = 0.334, + @"sound/weapons/handling/ugl_close.ogg" = 0.184, + @"sound/weapons/handling/ugl_open.ogg" = 0.209, + @"sound/weapons/vehicles/autocannon_fire.ogg" = 0.972, + @"sound/weapons/vehicles/autocannon_fire_old.ogg" = 0.698, + @"sound/weapons/vehicles/cannon_distant1.ogg" = 4.833, + @"sound/weapons/vehicles/cannon_distant2.ogg" = 5.046, + @"sound/weapons/vehicles/cannon_fire1.ogg" = 7.726, + @"sound/weapons/vehicles/cannon_fire2.ogg" = 7.042, + @"sound/weapons/vehicles/dual_autocannon_fire.ogg" = 1.894, + @"sound/weapons/vehicles/flamethrower.ogg" = 3.561, + @"sound/weapons/vehicles/minigun_loop.ogg" = 2.244, + @"sound/weapons/vehicles/minigun_select.ogg" = 0.141, + @"sound/weapons/vehicles/minigun_start.ogg" = 1.147, + @"sound/weapons/vehicles/minigun_stop.ogg" = 1.444, + @"sound/weapons/vehicles/smokelauncher_fire.ogg" = 1.909, + @"sound/soundscape/lv522/indoors/indoor_wind.ogg" = 15.273, + @"sound/soundscape/lv522/indoors/indoor_wind2.ogg" = 4.901, + @"sound/soundscape/lv522/outdoors/wind1.ogg" = 17.645, + @"sound/soundscape/lv522/outdoors/wind2.ogg" = 18.633, + @"sound/soundscape/lv522/outdoors/wind3.ogg" = 15.108, + ) + return sounds_1000 + sounds_2000 + sounds_3000 diff --git a/code/controllers/subsystem/sound.dm b/code/controllers/subsystem/sound.dm index 010850dda2..128f87b769 100644 --- a/code/controllers/subsystem/sound.dm +++ b/code/controllers/subsystem/sound.dm @@ -17,28 +17,51 @@ SUBSYSTEM_DEF(sound) for(var/datum/sound_template/run_template in run_queue) if(!run_hearers) // Initialize for handling next template - run_hearers = run_queue[run_template] // get base hearers - if(run_template.range) // ranging - run_hearers |= SSquadtree.players_in_range(SQUARE(run_template.x, run_template.y, run_template.range * 2), run_template.z) + run_hearers = run_queue[run_template] // get initial hearers + run_template.end_time = REALTIMEOFDAY + GLOB.sound_lengths["[run_template.file]"] SECONDS if(MC_TICK_CHECK) return + while(length(run_hearers)) // Output sound to hearers - var/client/C = run_hearers[run_hearers.len] + var/client/hearer = run_hearers[length(run_hearers)] run_hearers.len-- - if(C && C.soundOutput) - C.soundOutput.process_sound(run_template) + hearer?.soundOutput.process_sound(run_template) if(MC_TICK_CHECK) return + run_queue.Remove(run_template) // Everyone that had to get this sound got it. Bye, template run_hearers = null // Reset so we know next one is new -/datum/controller/subsystem/sound/proc/queue(datum/sound_template/template, list/client/hearers, list/datum/interior/extra_interiors) - if(!hearers) - hearers = list() - if(extra_interiors && SSmapping) - for(var/datum/interior/VI in extra_interiors) - if(VI?.ready) - var/list/bounds = VI.get_middle_coords() - if(bounds.len >= 2) - hearers |= SSquadtree.players_in_range(RECT(bounds[1], bounds[2], VI.map_template.width, VI.map_template.height), bounds[3]) + for(var/client/client as anything in GLOB.clients) + client.soundOutput.update_tracked_channels() + if(MC_TICK_CHECK) + return + +/datum/controller/subsystem/sound/proc/queue(datum/sound_template/template, list/hearers) + LAZYINITLIST(hearers) + + if(!CHECK_BITFIELD(template.sound_flags, SOUND_SPATIAL)) + template_queue[template] = hearers + return + + var/turf/source_turf = get_turf(template.source) + if(SSinterior.in_interior(source_turf)) //from interior, get hearers in interior and nearby to exterior + var/datum/interior/interior = SSinterior.get_interior_by_coords(source_turf.x, source_turf.y, source_turf.z) + var/list/bounds = interior.get_middle_coords() + hearers |= SSquadtree.players_in_range(RECT(bounds[1], bounds[2], interior.map_template.width, interior.map_template.height), bounds[3]) //in interior + if(interior.exterior) + hearers |= SSquadtree.players_in_range(SQUARE(interior.exterior.x, interior.exterior.y, template.range * 2), interior.exterior.z) //nearby to exterior + + else //from exterior, get hearers nearby and in nearby interiors + hearers |= SSquadtree.players_in_range(SQUARE(source_turf.x, source_turf.y, template.range * 2), source_turf.z) //nearby + for(var/datum/interior/interior in SSinterior.interiors) + if(!interior.ready) + continue + if(interior.exterior?.z != source_turf.z) + continue + if(get_dist(interior.exterior, source_turf) > template.range) + continue + var/list/bounds = interior.get_middle_coords() + hearers |= SSquadtree.players_in_range(RECT(bounds[1], bounds[2], interior.map_template.width, interior.map_template.height), bounds[3]) //nearby interiors + template_queue[template] = hearers diff --git a/code/datums/soundOutput.dm b/code/datums/soundOutput.dm index 0fddd9b503..2670d06475 100644 --- a/code/datums/soundOutput.dm +++ b/code/datums/soundOutput.dm @@ -7,6 +7,8 @@ /// Currently applied environmental reverb. VAR_PROTECTED/owner_environment = SOUND_ENVIRONMENT_NONE + /// Assoc list of important channels and their assigned template, in the form of: "channel" = template + var/list/tracked_channels = list() /datum/soundOutput/New(client/client) if(!client) @@ -24,40 +26,73 @@ owner = null return ..() -/datum/soundOutput/proc/process_sound(datum/sound_template/T) - var/sound/S = sound(T.file, T.repeat, T.wait) - S.volume = owner.volume_preferences[T.volume_cat] * T.volume - if(T.channel == 0) - S.channel = get_free_channel() - else - S.channel = T.channel - S.frequency = T.frequency - S.falloff = T.falloff - S.offset = T.offset - S.pitch = T.pitch - S.status = T.status - if(T.x && T.y && T.z) - var/turf/owner_turf = get_turf(owner.mob) - if(owner_turf) - // We're in an interior and sound came from outside - if(SSinterior.in_interior(owner_turf) && owner_turf.z != T.z) - var/datum/interior/VI = SSinterior.get_interior_by_coords(owner_turf.x, owner_turf.y, owner_turf.z) - if(VI && VI.exterior) - var/turf/candidate = get_turf(VI.exterior) - if(candidate.z != T.z) - return // Invalid location - S.falloff /= 2 - owner_turf = candidate - S.x = T.x - owner_turf.x - S.y = 0 - S.z = T.y - owner_turf.y - S.y += T.y_s_offset - S.x += T.x_s_offset - S.echo = SOUND_ECHO_REVERB_ON //enable environment reverb for positional sounds - if(owner.mob.ear_deaf > 0) - S.status |= SOUND_MUTE - - sound_to(owner,S) +/datum/soundOutput/proc/process_sound(datum/sound_template/template, update) + var/sound/sound = sound(template.file, template.repeat, template.wait) + + sound.channel = template.channel + sound.volume = template.volume * owner.volume_preferences[template.volume_cat] + sound.frequency = template.frequency + sound.offset = template.offset + sound.pitch = template.pitch + sound.status = template.status + sound.falloff = template.falloff + + if(update) + ENABLE_BITFIELD(sound.status, SOUND_UPDATE) + + if(CHECK_BITFIELD(template.sound_flags, SOUND_CAN_DEAFEN) && CHECK_BITFIELD(src.status_flags, EAR_DEAF_MUTE)) + ENABLE_BITFIELD(sound.status, SOUND_MUTE) + + if(CHECK_BITFIELD(template.sound_flags, SOUND_ENVIRONMENTAL)) + sound.echo = SOUND_ECHO_REVERB_ON + + if(CHECK_BITFIELD(template.sound_flags, SOUND_TRACKED) && !update) + if(GLOB.spatial_sound_tracking && GLOB.sound_lengths["[template.file]"] SECONDS >= GLOB.spatial_sound_tracking_min_length) //debug + tracked_channels[num2text(sound.channel)] = template + + if(!CHECK_BITFIELD(template.sound_flags, SOUND_SPATIAL)) //non-spatial + sound.x = template.x + sound.y = template.y + sound.z = template.z + sound_to(owner, sound) + return + + if(QDELETED(template.source)) + return + + var/turf/owner_turf = get_turf(owner.mob) + var/turf/source_turf = get_turf(template.source) + //soundsys only traverses one "step", so will never send from one interior to another + if(owner_turf.z == source_turf.z) //both in exterior, or both in same interior + sound.x = source_turf.x - owner_turf.x + sound.z = source_turf.y - owner_turf.y + else if(SSinterior.in_interior(owner_turf)) //source in exterior, owner in interior + var/datum/interior/interior = SSinterior.get_interior_by_coords(owner_turf.x, owner_turf.y, owner_turf.z) + sound.falloff *= 0.5 + sound.x = source_turf.x - interior.exterior.x + sound.z = source_turf.y - interior.exterior.y + else if(SSinterior.in_interior(source_turf)) //source in interior, owner in exterior + var/datum/interior/interior = SSinterior.get_interior_by_coords(source_turf.x, source_turf.y, source_turf.z) + sound.falloff *= 0.5 + sound.x = interior.exterior.x - owner_turf.x + sound.z = interior.exterior.y - owner_turf.y + else //moved to unrelated z while sound was playing, leave it alone + return + + sound_to(owner, sound) + +/datum/soundOutput/proc/update_tracked_channels() + for(var/i in length(tracked_channels) to 1 step -1) + var/channel = tracked_channels[i] + var/datum/sound_template/template = tracked_channels[channel] + if(REALTIMEOFDAY >= template.end_time) + tracked_channels -= channel + continue + if(!CHECK_BITFIELD(template.sound_flags, SOUND_SPATIAL)) + continue + if(template.source == owner.mob) + continue + process_sound(template, update = TRUE) /datum/soundOutput/proc/update_ambience(area/target_area, ambience_override, force_update = FALSE) var/status_flags = SOUND_STREAM diff --git a/code/game/sound.dm b/code/game/sound.dm index 6bee74ba01..a9f0339401 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -1,44 +1,93 @@ /sound - echo = SOUND_ECHO_REVERB_OFF //disable enviroment reverb by default, soundOutput re-enables for positional sounds + echo = SOUND_ECHO_REVERB_OFF //disable environment reverb by default, soundOutput re-enables for spatial sounds -/datum/sound_template //Basically a sound datum, but only serves as a way to carry info to soundOutput - //copied sound datum vars - ///This is the file that will be played when the sound is sent to a player. +/// Similar to a sound datum, carries info to the sound subsysem and soundOutput. +/datum/sound_template + //copied sound datum vars; environment, echo, pan, params, priority deliberately omitted + /// This is the file that will be played when the sound is sent to a player. var/file - ///Set to TRUE to repeat the sound indefinitely once it begins playing, 2 to repeat it forwards and backwards. + /// Set to TRUE to repeat the sound indefinitely once it begins playing, 2 to repeat it forwards and backwards. var/repeat = FALSE - ///Set to TRUE to wait for other sounds in this channel to finish before playing this one. + /// Set to TRUE to wait for other sounds in this channel to finish before playing this one. var/wait = FALSE - ///For sound effects, set to 1 through 1024 to choose a specific sound channel. For values of 0 or less, any available channel will be chosen. + /// For sound effects, set to 1 through 1024 to choose a specific sound channel. For values of 0 or less, any available channel will be chosen. var/channel = 0 - ///Set to a percentage from 0 to 100 of the sound's full volume. + /// Set to a percentage from 0 to 100 of the sound's full volume. var/volume = 100 - ///Any value from -100 to 100 will play this sound at a multiple of its normal frequency. A value of 0 or 1 will play the sound at its normal frequency. - var/frequency = 1 - ///Can be used to set a starting time, in seconds, for a sound. - var/offset = 0 - ///Can be used to shift the pitch of a sound up or down. This works similarly to frequency except that it doesn't impact playback speed. - var/pitch = 1 - ///Alter the way the sound is heard by affecting several different on/off values which combine as bit flags: SOUND_MUTE, SOUND_PAUSED, SOUND_STREAM, SOUND_UPDATE + /// Any value from -100 to 100 will play this sound at a multiple of its normal frequency. A value of 0 or 1 will play the sound at its normal frequency. + var/frequency = 0 + /// Can be used to set a starting time, in seconds, for a sound. + var/offset + /// Can be used to shift the pitch of a sound up or down. This works similarly to frequency except that it doesn't impact playback speed. + var/pitch = 0 + /// Alter the way the sound is heard by affecting several different on/off values which combine as bit flags: SOUND_MUTE, SOUND_PAUSED, SOUND_STREAM, SOUND_UPDATE var/status = NONE - ///Within the falloff distance a 3D sound stays at the constant loudest volume possible. Outside of this distance it attenuates at a rate determined by the falloff. + /// For non-spatial sounds, apparent audio left/right position. + var/x = 0 + /// For non-spatial sounds, apparent audio down/up position. + var/y = 0 + /// For non-spatial sounds, apparent audio back/front position. + var/z = 0 + /// Within the falloff distance a sound stays at a constant volume. Outside of this distance it attenuates at a rate determined by the falloff. Higher values fade more slowly. var/falloff = 1 - ///Changes the environmental reverb for all 3D sounds until another environment is specified. The default value (-1) specifies no change in environment. A numeric value from 0 to 25 specifies a set of reverb presets for the environment. - var/environment = -1 //custom vars - ///The category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes) and VOLUME_ADM (Admin sounds and some other stuff) + /// Origin atom for the sound. Used for sound position. + var/atom/source + /// The category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes) and VOLUME_ADM (Admin sounds and some other stuff) var/volume_cat = VOLUME_SFX - ///Maximum theoretical range (in tiles) of the sound, by default is equal to the volume. + /// For spatial sounds, maximum range the sound is played. Defaults to volume * 0.25. var/range = 0 - //Map coordinates, not sound coordinates, generated by the procs - var/x - var/y - var/z - ///Horizontal sound position offset. - var/x_s_offset - ///Vertical sound position offset. - var/y_s_offset + /// Real-world time when the sound is expected to end. Set when processed by SSsound. In decisecionds, provided by REALTIMEOFDAY. + var/end_time + /// Additional control flags for use by SSsound and soundOutput. + var/sound_flags = NONE + +/datum/sound_template/New(file) + . = ..() + + if(istype(file, /datum/sound_template)) + var/datum/sound_template/source_template = file + src.file = source_template.file + src.repeat = source_template.repeat + src.wait = source_template.wait + src.channel = source_template.channel + src.volume = source_template.volume + src.frequency = source_template.frequency + src.offset = source_template.offset + src.pitch = source_template.pitch + src.status = source_template.status + src.x = source_template.x + src.y = source_template.y + src.z = source_template.z + src.falloff = source_template.falloff + + src.source = source_template.source + src.volume_cat = source_template.volume_cat + src.range = source_template.range + src.end_time = source_template.end_time + src.sound_flags = source_template.sound_flags + else if(istype(file, /sound)) + var/sound/source_sound = file + src.file = source_sound.file + src.repeat = source_sound.repeat + src.wait = source_sound.wait + src.channel = source_sound.channel + src.volume = source_sound.volume + src.frequency = source_sound.frequency + src.offset = source_sound.offset + src.pitch = source_sound.pitch + src.status = source_sound.status + src.x = source_sound.x + src.y = source_sound.y + src.z = source_sound.z + src.falloff = source_sound.falloff + else + src.file = get_sfx(file) + +/datum/sound_template/Destroy() + source = null + return ..() /proc/get_free_channel() var/static/cur_chan = 1 @@ -51,70 +100,26 @@ * * Arguments: * * source - origin atom for the sound - * * soundin - sound datum ( sound() ), sound file ('mysound.ogg'), or string to get a SFX ("male_warcry") + * * soundin - sound datum ( `sound()` ), sound file ('mysound.ogg'), or string to get a SFX ("male_warcry") * * vol - the initial volume of the sound, 0 is no sound at all, 75 is loud queen screech. - * * vary - the frequency of the sound. Setting it to 1 will assign it a random frequency + * * vary - the frequency of the sound. Setting it to TRUE will assign it a random frequency * * sound_range - maximum theoretical range (in tiles) of the sound, by default is equal to the volume. * * vol_cat - the category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes), VOLUME_ADM (Admin sounds) - * * channel - use this only when you want to force the sound to play on a specific channel + * * channel - force the sound to play on a specific channel, otherwise one is selected automatically * * status - combined bit flags: SOUND_MUTE, SOUND_PAUSED, SOUND_STREAM, SOUND_UPDATE - * * falloff - max range till sound volume starts dropping as distance increases - * * y_s_offset - vertical sound position offset - * * x_s_offset - horizontal sound position offset + * * falloff - range when apparent sound volume starts dropping * * Returns selected channel on success, FALSE on failure */ -/proc/playsound(atom/source, sound/soundin, vol = 100, vary = FALSE, sound_range, vol_cat = VOLUME_SFX, channel = 0, status, falloff = 1, y_s_offset, x_s_offset) - if(isarea(source)) - error("[source] is an area and is trying to make the sound: [soundin]") +/proc/playsound(atom/source, sound/soundin, vol = 100, vary, sound_range, vol_cat = VOLUME_SFX, channel, status, falloff = 1) + if(!get_turf(source)) + error("[source] has no turf and is trying to play a spatial sound: [soundin]") return FALSE - var/datum/sound_template/S = new() - - var/sound/SD = soundin - if(istype(SD)) - S.file = SD.file - S.wait = SD.wait - S.repeat = SD.repeat - else - S.file = get_sfx(soundin) - S.channel = channel ? channel : get_free_channel() - S.status = status - S.falloff = falloff - S.volume = vol - S.volume_cat = vol_cat - S.y_s_offset = y_s_offset - S.x_s_offset = x_s_offset - if(vary != FALSE) - if(vary > 1) - S.frequency = vary - else - S.frequency = GET_RANDOM_FREQ // Same frequency for everybody - - if(!sound_range) - sound_range = floor(0.25*vol) //if no specific range, the max range is equal to a quarter of the volume. - S.range = sound_range - - var/turf/turf_source = get_turf(source) - if(!turf_source?.z) + if(isarea(source)) + error("[source] is an area and is trying to play a spatial sound: [soundin]") return FALSE - var/datum/sound_template/template = new() - - if(istype(soundin)) - template.file = soundin.file - template.repeat = soundin.repeat - template.wait = soundin.wait - //template.channel = soundin.channel - //template.volume = soundin.volume - template.frequency = soundin.frequency - template.offset = soundin.offset - template.pitch = soundin.pitch - //template.status = soundin.status - //template.falloff = soundin.falloff - //template.environment = soundin.environment - //template.echo = soundin.echo - else - template.file = get_sfx(soundin) + var/datum/sound_template/template = new(soundin) template.channel = channel || get_free_channel() template.volume = vol @@ -125,145 +130,55 @@ template.status = status template.falloff = falloff + template.source = source template.volume_cat = vol_cat - template.range = sound_range || floor(0.25 * vol) //if no specific range, the max range is equal to a quarter of the volume. - template.x = turf_source.x - template.y = turf_source.y - template.z = turf_source.z - template.x_s_offset = x_s_offset - template.y_s_offset = y_s_offset - - if(!SSinterior) - SSsound.queue(template) - return template.channel - - var/list/datum/interior/extra_interiors = list() - // If we're in an interior, range the chunk, then adjust to do so from outside instead - if(SSinterior.in_interior(turf_source)) - var/datum/interior/VI = SSinterior.get_interior_by_coords(turf_source.x, turf_source.y, turf_source.z) - if(VI?.ready) - extra_interiors |= VI - if(VI.exterior) - var/turf/new_turf_source = get_turf(VI.exterior) - template.x = new_turf_source.x - template.y = new_turf_source.y - template.z = new_turf_source.z - // Range for 'nearby interiors' aswell - for(var/datum/interior/VI in SSinterior.interiors) - if(VI?.ready && VI.exterior?.z == turf_source.z && get_dist(VI.exterior, turf_source) <= sound_range) - extra_interiors |= VI - - SSsound.queue(template, null, extra_interiors) - return template.channel + template.range = sound_range || vol * 0.25 + ENABLE_BITFIELD(template.sound_flags, SOUND_SPATIAL|SOUND_ENVIRONMENTAL|SOUND_CAN_DEAFEN|SOUND_TRACKED) + SSsound.queue(template) + return template.channel +//This is the replacement for playsound_local. Use this for sending sounds directly to a client +/proc/playsound_client(client/client, sound/soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel, status) + if(!istype(client)) + error("[client] is not a client and is trying to play a client sound: [soundin]") + return FALSE -/** - * Play a sound effect directly to a client. - * - * Arguments: - * * C - client to hear the sound - * * soundin - sound datum ( sound() ), sound file ('mysound.ogg'), or string to get a SFX ("male_warcry") - * * origin - origin atom for the sound - * * vol - the initial volume of the sound, 0 is no sound at all, 75 is loud queen screech. - * * random_freq - assign the sound a random frequency - * * vol_cat - the category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes), VOLUME_ADM (Admin sounds) - * * channel - use this only when you want to force the sound to play on a specific channel - * * status - combined bit flags: SOUND_MUTE, SOUND_PAUSED, SOUND_STREAM, SOUND_UPDATE - * * y_s_offset - vertical sound position offset - * * x_s_offset - horizontal sound position offset - * - * Returns FALSE on failure - */ -/proc/playsound_client(client/C, sound/soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel = 0, status, y_s_offset, x_s_offset) - if(!istype(C) || !C.soundOutput) return FALSE - - var/datum/sound_template/template = new() - - if(istype(soundin)) - template.file = soundin.file - template.repeat = soundin.repeat - template.wait = soundin.wait - //template.channel = soundin.channel - //template.volume = soundin.volume - template.frequency = soundin.frequency - template.offset = soundin.offset - template.pitch = soundin.pitch - //template.status = soundin.status - //template.falloff = soundin.falloff - //template.environment = soundin.environment - //template.echo = soundin.echo - else - template.file = get_sfx(soundin) + var/datum/sound_template/template = new(soundin) - template.channel = channel + template.channel = channel || get_free_channel() template.volume = vol if(random_freq) template.frequency = GET_RANDOM_FREQ template.status = status template.volume_cat = vol_cat - var/turf/turf_origin = get_turf(origin) - if(turf_origin) - template.x = turf_origin.x - template.y = turf_origin.y - template.z = turf_origin.z - template.x_s_offset = x_s_offset - template.y_s_offset = y_s_offset - SSsound.queue(template, list(C)) + SSsound.queue(template, list(client)) + return template.channel -/** - * Play a sound effect to all mobs that are map-level contents of an area. - * - * Arguments: - * * A - affected area to hear the sound - * * soundin - sound datum ( sound() ), sound file ('mysound.ogg'), or string to get a SFX ("male_warcry") - * * vol - the initial volume of the sound, 0 is no sound at all, 75 is loud queen screech. - * * channel - use this only when you want to force the sound to play on a specific channel - * * status - combined bit flags: SOUND_MUTE, SOUND_PAUSED, SOUND_STREAM, SOUND_UPDATE - * * vol_cat - the category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes), VOLUME_ADM (Admin sounds) - * * echo - customizes reverbration settings for this sound - * - * Returns FALSE on failure - */ -/proc/playsound_area(area/A, sound/soundin, vol = 100, channel = 0, status, vol_cat = VOLUME_SFX, y_s_offset, x_s_offset) - if(!isarea(A)) +/// Plays sound to all mobs that are map-level contents of an area +/proc/playsound_area(area/area, sound/soundin, vol = 100, channel, vol_cat = VOLUME_SFX, status) + if(!isarea(area)) + error("[area] is not an area and is trying to play an area sound: [soundin]") return FALSE - var/datum/sound_template/template = new() - - if(istype(soundin)) - template.file = soundin.file - template.repeat = soundin.repeat - template.wait = soundin.wait - //template.channel = soundin.channel - //template.volume = soundin.volume - template.frequency = soundin.frequency - template.offset = soundin.offset - template.pitch = soundin.pitch - //template.status = soundin.status - //template.falloff = soundin.falloff - //template.environment = soundin.environment - //template.echo = soundin.echo - else - template.file = get_sfx(soundin) + var/datum/sound_template/template = new(soundin) - template.channel = channel + template.channel = channel || get_free_channel() template.volume = vol template.status = status template.volume_cat = vol_cat - template.x_s_offset = x_s_offset - template.y_s_offset = y_s_offset var/list/hearers = list() - for(var/mob/living/living_mob in A.contents) - if(!living_mob || !living_mob.client || !living_mob.client.soundOutput) + for(var/mob/living/hearer in area.contents) + if(!hearer.client) continue - hearers += living_mob.client + hearers += hearer.client SSsound.queue(template, hearers) + return template.channel /client/proc/playtitlemusic() if(!SSticker?.login_music) @@ -272,51 +187,25 @@ playsound_client(src, SSticker.login_music, null, 70, 0, VOLUME_LOBBY, SOUND_CHANNEL_LOBBY, SOUND_STREAM) -/** - * Play a sound effect for all on-map clients on a given Z-level. - * - * Arguments: - * * z - list of affected [/datum/space_level] to hear the sound - * * soundin - sound datum ( sound() ), sound file ('mysound.ogg'), or string to get a SFX ("male_warcry") - * * volume - the initial volume of the sound, 0 is no sound at all, 75 is loud queen screech. - * * vol_cat - the category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes), VOLUME_ADM (Admin sounds) - * * y_s_offset - vertical sound position offset - * * x_s_offset - horizontal sound position offset - * - * Returns selected channel on success, FALSE on failure - */ -/proc/playsound_z(list/z, sound/soundin, volume = 100, vol_cat = VOLUME_SFX, y_s_offset, x_s_offset) - var/datum/sound_template/template = new() - - if(istype(soundin)) - template.file = soundin.file - template.repeat = soundin.repeat - template.wait = soundin.wait - //template.channel = soundin.channel - //template.volume = soundin.volume - template.frequency = soundin.frequency - template.offset = soundin.offset - template.pitch = soundin.pitch - //template.status = soundin.status - //template.falloff = soundin.falloff - //template.environment = soundin.environment - //template.echo = soundin.echo - else - template.file = get_sfx(soundin) +/// Play sound for all on-map clients on a list of z-levels. Good for ambient sounds. +/proc/playsound_z(list/z_values, sound/soundin, volume = 100, vol_cat = VOLUME_SFX) + var/datum/sound_template/template = new(soundin) template.channel = SOUND_CHANNEL_Z template.volume = volume template.volume_cat = vol_cat - template.x_s_offset = x_s_offset - template.y_s_offset = y_s_offset var/list/hearers = list() - for(var/mob/mob in GLOB.player_list) - if((mob.z in z) && mob.client.soundOutput) - hearers += mob.client + for(var/client/hearer as anything in GLOB.clients) + //var/turf/hearer_turf = get_turf(hearer.mob) + //if(!(hearer_turf.z in z_values)) + if(!((get_turf(hearer.mob)).z in z_values)) + continue + hearers += hearer SSsound.queue(template, hearers) + return template.channel // The pick() proc has a built-in chance that can be added to any option by adding ,X; to the end of an option, where X is the % chance it will play. /proc/get_sfx(S) @@ -530,30 +419,68 @@ return S /client/proc/generate_sound_queues() - set name = "Queue sounds" - set desc = "stress test this bich" - set category = "Debug" - - var/ammount = tgui_input_number(usr, "How many sounds to queue?") - var/range = tgui_input_number(usr, "Range") - var/x = tgui_input_number(usr, "Center X") - var/y = tgui_input_number(usr, "Center Y") - var/z = tgui_input_number(usr, "Z level") - var/datum/sound_template/S - for(var/i = 1, i <= ammount, i++) - S = new - S.file = get_sfx("male_warcry") // warcry has variable length, lots of variations - S.channel = get_free_channel() // i'm convinced this is bad, but it's here to mirror playsound() behaviour - S.range = range - S.x = x - S.y = y - S.z = z - SSsound.queue(S) + set category = "Debug.Sound" + set name = "Queue Sounds" + set desc = "generate many warcries for stress testing" + + var/amount = tgui_input_number(src, "How many sounds to queue?", default = 1, max_value = 2000, min_value = 1) + if(!amount) + return + var/range = tgui_input_number(src, "Range", default = 1, min_value = 0) + if(isnull(range)) + return + var/x = tgui_input_number(src, "Center X", default = 1, max_value = world.maxx, min_value = 1) + if(!x) + return + var/y = tgui_input_number(src, "Center Y", default = 1, max_value = world.maxy, min_value = 1) + if(!y) + return + var/z = tgui_input_number(src, "Z level", default = 1, max_value = world.maxz, min_value = 1) + if(!z) + return + + var/turf/source_turf = locate(x, y, z) + + for(var/i in 1 to amount) + var/datum/sound_template/template = new("male_warcry") // warcry has variable length, lots of variations + template.channel = get_free_channel() // i'm convinced this is bad, but it's here to mirror playsound() behaviour + template.source = source_turf + template.range = range + ENABLE_BITFIELD(template.sound_flags, SOUND_SPATIAL|SOUND_ENVIRONMENTAL|SOUND_CAN_DEAFEN|SOUND_TRACKED) + SSsound.queue(template) /client/proc/sound_debug_query() + set category = "Debug.Sound" set name = "Dump Playing Client Sounds" set desc = "dumps info about locally, playing sounds" - set category = "Debug" for(var/sound/S in SoundQuery()) - UNLINT(to_chat(src, "channel#[S.channel]: [S.status] - [S.file] - len=[S.len], wait=[S.wait], offset=[S.offset], repeat=[S.repeat]")) // unlint until spacemandmm suite-1.7 + to_chat(src, "channel#[S.channel]: [S.status] - [S.file] - len=[S.len], wait=[S.wait], offset=[S.offset], repeat=[S.repeat]") + +GLOBAL_VAR_INIT(spatial_sound_tracking, TRUE) +/client/proc/toggle_spatial_sound_tracking() + set category = "Debug.Sound" + set name = "Toggle Spatial Sound Tracking" + set desc = "globally stop new sounds from being tracked" + + if(!check_rights(R_DEBUG|R_ADMIN)) + return + + GLOB.spatial_sound_tracking = !GLOB.spatial_sound_tracking + message_admins("[src] has globally [GLOB.spatial_sound_tracking ? "enabled" : "disabled"] spatial sound tracking. New sounds [GLOB.spatial_sound_tracking ? "can now" : "will no longer"] be tracked.") + +GLOBAL_VAR_INIT(spatial_sound_tracking_min_length, 0 SECONDS) //in deciseconds +/client/proc/set_spatial_sound_tracking_min_length() + set category = "Debug.Sound" + set name = "Set Min Tracking Limit" + set desc = "limit tracked sounds to longer ones" + + if(!check_rights(R_DEBUG|R_ADMIN)) + return + + var/min_length = tgui_input_number(src, "Shortest sound to track in seconds:", "Seconds", default = GLOB.spatial_sound_tracking_min_length, max_value = 10, min_value = 0, integer_only = FALSE) + if(isnull(min_length)) + return + + GLOB.spatial_sound_tracking_min_length = min_length SECONDS + message_admins("[src] has set the spatial sound tracking minimum length to [GLOB.spatial_sound_tracking_min_length * 0.1] seconds.") diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 4d1f4ba083..2968e401d4 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -208,6 +208,8 @@ var/list/admin_verbs_debug = list( /client/proc/matrix_editor, /client/proc/generate_sound_queues, /client/proc/sound_debug_query, + /client/proc/toggle_spatial_sound_tracking, + /client/proc/set_spatial_sound_tracking_min_length, /client/proc/debug_game_history, /client/proc/enter_tree, /client/proc/set_tree_points, diff --git a/colonialmarines.dme b/colonialmarines.dme index d814088a41..23f0e94f26 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -194,6 +194,7 @@ #include "code\_globalvars\lists\mapping_globals.dm" #include "code\_globalvars\lists\mobs.dm" #include "code\_globalvars\lists\object_lists.dm" +#include "code\_globalvars\lists\sounds.dm" #include "code\_onclick\adjacent.dm" #include "code\_onclick\ai.dm" #include "code\_onclick\click.dm" From 8cabab4935ac69f4b75f30c739afe86e072aff7d Mon Sep 17 00:00:00 2001 From: Doubleumc Date: Sat, 20 Jul 2024 17:56:53 -0400 Subject: [PATCH 2/5] sound_lengths json stores sound lengths in a json file instead of hardcoding it, also includes the generator for the file --- code/_globalvars/lists/sounds.dm | 2485 +---------------------------- code/modules/admin/admin_verbs.dm | 1 + sound/sound_lengths.txt | 2416 ++++++++++++++++++++++++++++ 3 files changed, 2480 insertions(+), 2422 deletions(-) create mode 100644 sound/sound_lengths.txt diff --git a/code/_globalvars/lists/sounds.dm b/code/_globalvars/lists/sounds.dm index ae619a1f06..c8d6548305 100644 --- a/code/_globalvars/lists/sounds.dm +++ b/code/_globalvars/lists/sounds.dm @@ -1,2423 +1,64 @@ -/// Assoc list of of all sounds in the codebase, in the form "sound/path" = length in seconds -GLOBAL_LIST_INIT(sound_lengths, __get_sound_lengths()) +#define SOUND_LENGTHS_FILEPATH "sound/sound_lengths.txt" -//list generated 07-17-2024 -//it really doesn't like parsing 1.5k+ lists, so I had to break it up -/proc/__get_sound_lengths() - var/list/sounds_1000 = list( - @"sound/AI/ares_online.ogg" = 5.768, - @"sound/AI/bioscan.ogg" = 2.282, - @"sound/AI/code_blue_elevated.ogg" = 7.318, - @"sound/AI/code_blue_lowered.ogg" = 7.08, - @"sound/AI/code_green.ogg" = 5.176, - @"sound/AI/code_red_elevated.ogg" = 6.775, - @"sound/AI/code_red_lowered.ogg" = 6.891, - @"sound/AI/commandreport.ogg" = 3.667, - @"sound/AI/distressbeacon.ogg" = 2.86, - @"sound/AI/distressreceived.ogg" = 2.816, - @"sound/AI/dropship_emergency.ogg" = 5.954, - @"sound/AI/evacuate.ogg" = 9.129, - @"sound/AI/evacuate_cancelled.ogg" = 2.407, - @"sound/AI/evacuation_complete.ogg" = 2.433, - @"sound/AI/evacuation_confirmed.ogg" = 5.208, - @"sound/AI/hijack.ogg" = 8.97, - @"sound/AI/intercept.ogg" = 6.912, - @"sound/AI/ionstorm.ogg" = 8.546, - @"sound/AI/poweroff.ogg" = 9.588, - @"sound/AI/poweron.ogg" = 4.835, - @"sound/AI/radiation.ogg" = 11.675, - @"sound/AI/selfdestruct.ogg" = 21.929, - @"sound/AI/selfdestruct_10m.ogg" = 599.026, - @"sound/AI/selfdestruct_5m.ogg" = 298.604, - @"sound/AI/selfdestruct_deactivated.ogg" = 4.07, - @"sound/AI/selfdestruct_short.ogg" = 6.653, - @"sound/AI/shuttlecalled.ogg" = 3.789, - @"sound/AI/shuttlerecalled.ogg" = 4.064, - @"sound/AI/unidentified_lifesigns.ogg" = 10.624, - @"sound/ambience/alarm4.ogg" = 1.728, - @"sound/ambience/almayerambience.ogg" = 30.444, - @"sound/ambience/ambiatm1.ogg" = 14.329, - @"sound/ambience/ambicha1.ogg" = 22.688, - @"sound/ambience/ambicha2.ogg" = 10.753, - @"sound/ambience/ambicha3.ogg" = 11.868, - @"sound/ambience/ambicha4.ogg" = 17.859, - @"sound/ambience/ambienceLV624.ogg" = 31.766, - @"sound/ambience/ambienceNV.ogg" = 31.766, - @"sound/ambience/ambienceriver.ogg" = 23.852, - @"sound/ambience/ambigen1.ogg" = 14.886, - @"sound/ambience/ambigen10.ogg" = 20.041, - @"sound/ambience/ambigen11.ogg" = 42.193, - @"sound/ambience/ambigen12.ogg" = 43.261, - @"sound/ambience/ambigen13.ogg" = 15.937, - @"sound/ambience/ambigen14.ogg" = 7.195, - @"sound/ambience/ambigen2.ogg" = 14.886, - @"sound/ambience/ambigen3.ogg" = 14.933, - @"sound/ambience/ambigen4.ogg" = 14.794, - @"sound/ambience/ambigen5.ogg" = 15.397, - @"sound/ambience/ambigen6.ogg" = 33.277, - @"sound/ambience/ambigen7.ogg" = 14.561, - @"sound/ambience/ambigen8.ogg" = 10.289, - @"sound/ambience/ambigen9.ogg" = 9.406, - @"sound/ambience/ambimalf.ogg" = 17.832, - @"sound/ambience/ambimine.ogg" = 76.824, - @"sound/ambience/ambimo1.ogg" = 60.189, - @"sound/ambience/ambimo2.ogg" = 22.781, - @"sound/ambience/ambisin1.ogg" = 15.329, - @"sound/ambience/ambisin2.ogg" = 12.129, - @"sound/ambience/ambisin3.ogg" = 12.129, - @"sound/ambience/ambisin4.ogg" = 15.35, - @"sound/ambience/ambispace.ogg" = 175.555, - @"sound/ambience/desert.ogg" = 34.551, - @"sound/ambience/dropship_ambience_loop.ogg" = 3.599, - @"sound/ambience/generator_power_off.ogg" = 18.51, - @"sound/ambience/jungle_amb1.ogg" = 26.676, - @"sound/ambience/rainforest.ogg" = 33.178, - @"sound/ambience/seag1.ogg" = 2.074, - @"sound/ambience/seag2.ogg" = 1.93, - @"sound/ambience/seag3.ogg" = 0.58, - @"sound/ambience/shipambience.ogg" = 200.441, - @"sound/ambience/shipambience1.ogg" = 61.927, - @"sound/ambience/shore.ogg" = 30.084, - @"sound/ambience/shuttle_fly_loop.ogg" = 3.146, - @"sound/ambience/shuttle_idle_loop.ogg" = 28.261, - @"sound/ambience/signal.ogg" = 11.158, - @"sound/ambience/snowstorm.ogg" = 84.411, - @"sound/ambience/varadero_storm.ogg" = 51.97, - @"sound/ambience/vehicle_interior1.ogg" = 2.977, - @"sound/ambience/yautja_ship.ogg" = 50.433, - @"sound/bullets/acid_impact1.ogg" = 4.998, - @"sound/bullets/bullet_armor1.ogg" = 0.549, - @"sound/bullets/bullet_armor2.ogg" = 1.594, - @"sound/bullets/bullet_armor3.ogg" = 0.574, - @"sound/bullets/bullet_armor4.ogg" = 0.523, - @"sound/bullets/bullet_impact1.ogg" = 0.799, - @"sound/bullets/bullet_impact2.ogg" = 1.413, - @"sound/bullets/bullet_impact3.ogg" = 1.904, - @"sound/bullets/bullet_miss1.ogg" = 0.274, - @"sound/bullets/bullet_miss2.ogg" = 0.398, - @"sound/bullets/bullet_miss3.ogg" = 0.39, - @"sound/bullets/bullet_miss4.ogg" = 0.414, - @"sound/bullets/bullet_ricochet1.ogg" = 0.899, - @"sound/bullets/bullet_ricochet2.ogg" = 0.871, - @"sound/bullets/bullet_ricochet3.ogg" = 0.501, - @"sound/bullets/bullet_ricochet4.ogg" = 0.732, - @"sound/bullets/bullet_ricochet5.ogg" = 0.477, - @"sound/bullets/bullet_ricochet6.ogg" = 0.907, - @"sound/bullets/bullet_ricochet7.ogg" = 0.718, - @"sound/bullets/bullet_ricochet8.ogg" = 0.761, - @"sound/bullets/bullet_vulture_impact.ogg" = 1.007, - @"sound/bullets/energy_impact1.ogg" = 0.911, - @"sound/bullets/energy_miss1.ogg" = 0.679, - @"sound/bullets/energy_ricochet1.ogg" = 0.732, - @"sound/bullets/impact_flesh_1.ogg" = 0.544, - @"sound/bullets/impact_flesh_2.ogg" = 0.489, - @"sound/bullets/impact_flesh_3.ogg" = 0.555, - @"sound/bullets/impact_flesh_4.ogg" = 0.518, - @"sound/bullets/rocket_ricochet1.ogg" = 1.701, - @"sound/bullets/rocket_ricochet2.ogg" = 2.234, - @"sound/bullets/rocket_ricochet3.ogg" = 2.192, - @"sound/bullets/shield_break_c1.ogg" = 1.978, - @"sound/bullets/shield_impact_c1.ogg" = 0.688, - @"sound/bullets/shield_impact_c2.ogg" = 0.688, - @"sound/bullets/shield_impact_c3.ogg" = 0.688, - @"sound/bullets/shield_impact_c4.ogg" = 0.646, - @"sound/bullets/spear_armor1.ogg" = 0.41, - @"sound/bullets/spear_impact1.ogg" = 1.776, - @"sound/bullets/spear_ricochet1.ogg" = 2.522, - @"sound/bullets/spear_ricochet2.ogg" = 2.042, - @"sound/effects/acidpool.ogg" = 4.982, - @"sound/effects/acid_sizzle1.ogg" = 2.75, - @"sound/effects/acid_sizzle2.ogg" = 2.538, - @"sound/effects/acid_sizzle3.ogg" = 2.578, - @"sound/effects/acid_sizzle4.ogg" = 2.3, - @"sound/effects/adminhelp-error.ogg" = 0.413, - @"sound/effects/adminhelp-reply.ogg" = 1.516, - @"sound/effects/adminhelp_new.ogg" = 1.603, - @"sound/effects/alert.ogg" = 2.385, - @"sound/effects/alien_doorpry1.ogg" = 4.448, - @"sound/effects/alien_doorpry2.ogg" = 4.453, - @"sound/effects/alien_dragsound_large.ogg" = 0.627, - @"sound/effects/alien_egg_burst.ogg" = 2.014, - @"sound/effects/alien_egg_move.ogg" = 1.387, - @"sound/effects/alien_footstep_charge1.ogg" = 0.765, - @"sound/effects/alien_footstep_charge2.ogg" = 0.765, - @"sound/effects/alien_footstep_charge3.ogg" = 0.765, - @"sound/effects/alien_footstep_large1.ogg" = 0.917, - @"sound/effects/alien_footstep_large2.ogg" = 0.876, - @"sound/effects/alien_footstep_large3.ogg" = 0.716, - @"sound/effects/alien_footstep_medium1.ogg" = 1.22, - @"sound/effects/alien_footstep_medium2.ogg" = 1.385, - @"sound/effects/alien_footstep_medium3.ogg" = 1.519, - @"sound/effects/alien_resin_break1.ogg" = 0.878, - @"sound/effects/alien_resin_break2.ogg" = 0.686, - @"sound/effects/alien_resin_break3.ogg" = 0.613, - @"sound/effects/alien_resin_build1.ogg" = 1.398, - @"sound/effects/alien_resin_build2.ogg" = 1.52, - @"sound/effects/alien_resin_build3.ogg" = 1.754, - @"sound/effects/alien_resin_move1.ogg" = 1.114, - @"sound/effects/alien_resin_move2.ogg" = 1.607, - @"sound/effects/alien_tail_swipe1.ogg" = 0.61, - @"sound/effects/alien_tail_swipe2.ogg" = 0.476, - @"sound/effects/alien_tail_swipe3.ogg" = 0.463, - @"sound/effects/alien_ventcrawl1.ogg" = 1.034, - @"sound/effects/alien_ventcrawl2.ogg" = 1.475, - @"sound/effects/alien_ventpass1.ogg" = 2.077, - @"sound/effects/alien_ventpass2.ogg" = 1.628, - @"sound/effects/antiair_explosions.ogg" = 6.859, - @"sound/effects/attackblob.ogg" = 1.192, - @"sound/effects/bamf.ogg" = 2.221, - @"sound/effects/bang.ogg" = 0.51, - @"sound/effects/barbed_wire_movement.ogg" = 0.767, - @"sound/effects/basscannon.ogg" = 0.895, - @"sound/effects/bigboom1.ogg" = 7.042, - @"sound/effects/bigboom2.ogg" = 2.503, - @"sound/effects/bigboom3.ogg" = 7.736, - @"sound/effects/bigboom4.ogg" = 3.542, - @"sound/effects/binoctarget.ogg" = 0.886, - @"sound/effects/biohazard.ogg" = 6.788, - @"sound/effects/bladeinsert.ogg" = 1.013, - @"sound/effects/blobattack.ogg" = 0.716, - @"sound/effects/bomb_fall.ogg" = 4.964, - @"sound/effects/bone_break1.ogg" = 0.534, - @"sound/effects/bone_break2.ogg" = 0.165, - @"sound/effects/bone_break3.ogg" = 0.207, - @"sound/effects/bone_break4.ogg" = 0.183, - @"sound/effects/bone_break5.ogg" = 0.173, - @"sound/effects/bone_break6.ogg" = 0.235, - @"sound/effects/bone_break7.ogg" = 0.297, - @"sound/effects/bubbles.ogg" = 1.677, - @"sound/effects/bubbles2.ogg" = 7.044, - @"sound/effects/buckle.ogg" = 0.392, - @"sound/effects/burrowing_b.ogg" = 0.867, - @"sound/effects/burrowoff.ogg" = 1.16, - @"sound/effects/canopen.ogg" = 0.51, - @"sound/effects/ceramic_shatter.ogg" = 2.128, - @"sound/effects/clang.ogg" = 1.596, - @"sound/effects/cloak_scout_off.ogg" = 0.929, - @"sound/effects/cloak_scout_on.ogg" = 0.929, - @"sound/effects/clownstep1.ogg" = 0.271, - @"sound/effects/clownstep2.ogg" = 0.288, - @"sound/effects/comical_bonk.ogg" = 0.996, - @"sound/effects/corsat_teleporter.ogg" = 7.43, - @"sound/effects/creak1.ogg" = 5.835, - @"sound/effects/creak2.ogg" = 6.355, - @"sound/effects/creak3.ogg" = 5.104, - @"sound/effects/data-transmission.ogg" = 4.709, - @"sound/effects/dingding.ogg" = 3.575, - @"sound/effects/doorcreaky.ogg" = 3.777, - @"sound/effects/double_klaxon.ogg" = 4.72, - @"sound/effects/drill.ogg" = 2.012, - @"sound/effects/dropship_crash.ogg" = 18.802, - @"sound/effects/dropship_incoming.ogg" = 7.684, - @"sound/effects/drums.ogg" = 9.891, - @"sound/effects/EMPulse.ogg" = 1.02, - @"sound/effects/engine_cargoshuttle_landing.ogg" = 9.911, - @"sound/effects/engine_cargoshuttle_startup.ogg" = 9.999, - @"sound/effects/engine_landing.ogg" = 20.392, - @"sound/effects/engine_startup.ogg" = 14.934, - @"sound/effects/escape_pod_launch.ogg" = 1.493, - @"sound/effects/escape_pod_warmup.ogg" = 8.801, - @"sound/effects/explosion1.ogg" = 2.692, - @"sound/effects/explosion2.ogg" = 3.507, - @"sound/effects/explosion3.ogg" = 3.62, - @"sound/effects/explosion4.ogg" = 3.201, - @"sound/effects/explosion5.ogg" = 3.938, - @"sound/effects/explosionfar.ogg" = 7.595, - @"sound/effects/extinguish.ogg" = 1.629, - @"sound/effects/fire_crackle.ogg" = 2.193, - @"sound/effects/gau.ogg" = 4.597, - @"sound/effects/gauimpact.ogg" = 1.28, - @"sound/effects/gau_incockpit.ogg" = 3.395, - @"sound/effects/generalquartersalarm.ogg" = 15.072, - @"sound/effects/ghost.ogg" = 8.417, - @"sound/effects/ghost2.ogg" = 2.301, - @"sound/effects/gibbed.ogg" = 0.764, - @"sound/effects/glassbash.ogg" = 0.26, - @"sound/effects/Glassbr1.ogg" = 1.988, - @"sound/effects/Glassbr2.ogg" = 1.883, - @"sound/effects/Glassbr3.ogg" = 2.374, - @"sound/effects/glassbreak1.ogg" = 0.973, - @"sound/effects/glassbreak2.ogg" = 0.982, - @"sound/effects/glassbreak3.ogg" = 1.298, - @"sound/effects/glassbreak4.ogg" = 1.31, - @"sound/effects/Glasshit.ogg" = 0.982, - @"sound/effects/Glasshit_old.ogg" = 0.529, - @"sound/effects/glassknock.ogg" = 0.634, - @"sound/effects/glass_step.ogg" = 0.628, - @"sound/effects/GQfullcall.ogg" = 17.95, - @"sound/effects/grillehit.ogg" = 2.139, - @"sound/effects/gunrustle1.ogg" = 0.426, - @"sound/effects/gunrustle2.ogg" = 0.644, - @"sound/effects/gunrustle3.ogg" = 0.567, - @"sound/effects/Heart Beat.ogg" = 1.064, - @"sound/effects/heart_beat_short.ogg" = 5.908, - @"sound/effects/helmet_noise.ogg" = 0.65, - @"sound/effects/hit_on_shattered_glass.ogg" = 1.049, - @"sound/effects/incoming-fax.ogg" = 5.909, - @"sound/effects/IncomingRocket.ogg" = 2.507, - @"sound/effects/klaxon1.ogg" = 2.694, - @"sound/effects/knockout.ogg" = 1.23, - @"sound/effects/laser_point_defence_success.ogg" = 4, - @"sound/effects/lighter1.ogg" = 2.089, - @"sound/effects/lighter2.ogg" = 1.137, - @"sound/effects/lighter3.ogg" = 2.914, - @"sound/effects/match.ogg" = 2.481, - @"sound/effects/metalhit.ogg" = 0.857, - @"sound/effects/metal_close.ogg" = 0.392, - @"sound/effects/metal_crash.ogg" = 3.469, - @"sound/effects/metal_creaking.ogg" = 4.619, - @"sound/effects/metal_shatter.ogg" = 2.128, - @"sound/effects/meteorimpact.ogg" = 1.007, - @"sound/effects/mhelp.ogg" = 1.172, - @"sound/effects/missile_warning.ogg" = 3.074, - @"sound/effects/mousesqueek.ogg" = 0.41, - @"sound/effects/nightvision.ogg" = 1.957, - @"sound/effects/ob_alert.ogg" = 1.716, - @"sound/effects/oppressor_tail.ogg" = 0.715, - @"sound/effects/pageturn1.ogg" = 1.139, - @"sound/effects/pageturn2.ogg" = 1.339, - @"sound/effects/pageturn3.ogg" = 1.098, - @"sound/effects/phasein.ogg" = 1.406, - @"sound/effects/pillbottle.ogg" = 0.195, - @"sound/effects/pipe_hissing.ogg" = 4.999, - @"sound/effects/pop.ogg" = 0.049, - @"sound/effects/powerloss.ogg" = 13.39, - @"sound/effects/pred_cloakoff.ogg" = 2.02, - @"sound/effects/pred_cloakon.ogg" = 2.472, - @"sound/effects/pred_countdown.ogg" = 8.399, - @"sound/effects/pred_vision.ogg" = 1.034, - @"sound/effects/pry1.ogg" = 2.494, - @"sound/effects/pry2.ogg" = 4.349, - @"sound/effects/pry3.ogg" = 5.844, - @"sound/effects/pry4.ogg" = 4.244, - @"sound/effects/radiostatic.ogg" = 0.599, - @"sound/effects/railgunhit.ogg" = 4.499, - @"sound/effects/railgun_miss.ogg" = 0.414, - @"sound/effects/readysetgo.ogg" = 4.474, - @"sound/effects/refill.ogg" = 1.287, - @"sound/effects/rip1.ogg" = 0.321, - @"sound/effects/rip2.ogg" = 0.43, - @"sound/effects/rocketpod_fire.ogg" = 4.31, - @"sound/effects/runedsanddoor.ogg" = 4.216, - @"sound/effects/runner_charging_1.ogg" = 2.002, - @"sound/effects/runner_charging_2.ogg" = 2.002, - @"sound/effects/rustle1.ogg" = 2.696, - @"sound/effects/rustle2.ogg" = 1.361, - @"sound/effects/rustle3.ogg" = 1.372, - @"sound/effects/rustle4.ogg" = 1.349, - @"sound/effects/rustle5.ogg" = 1.372, - @"sound/effects/screech.ogg" = 1.129, - @"sound/effects/screech2.ogg" = 3.661, - @"sound/effects/shieldbash.ogg" = 1.908, - @"sound/effects/sinkrunning.ogg" = 8.743, - @"sound/effects/siren.ogg" = 18.226, - @"sound/effects/slam1.ogg" = 0.819, - @"sound/effects/slam2.ogg" = 1.24, - @"sound/effects/slam3.ogg" = 1.565, - @"sound/effects/slam_rare_1.ogg" = 2.627, - @"sound/effects/slosh.ogg" = 2.514, - @"sound/effects/smoke.ogg" = 3.586, - @"sound/effects/snap.ogg" = 0.573, - @"sound/effects/sos-morse-code.ogg" = 2.279, - @"sound/effects/sparks1.ogg" = 0.774, - @"sound/effects/sparks2.ogg" = 0.827, - @"sound/effects/sparks3.ogg" = 1.094, - @"sound/effects/sparks4.ogg" = 1.181, - @"sound/effects/spike_hit.ogg" = 0.339, - @"sound/effects/spike_spray.ogg" = 0.679, - @"sound/effects/spin.ogg" = 0.226, - @"sound/effects/splat.ogg" = 1.309, - @"sound/effects/spray.ogg" = 1.494, - @"sound/effects/spray2.ogg" = 2.233, - @"sound/effects/spray3.ogg" = 2.247, - @"sound/effects/squelch1.ogg" = 0.846, - @"sound/effects/stealthoff.ogg" = 0.326, - @"sound/effects/stonedoor_openclose.ogg" = 1.229, - @"sound/effects/supercapacitors_charging.ogg" = 3.128, - @"sound/effects/tankhiss1.ogg" = 3.411, - @"sound/effects/tankhiss2.ogg" = 3.42, - @"sound/effects/tankhiss3.ogg" = 3.408, - @"sound/effects/tankhiss4.ogg" = 3.414, - @"sound/effects/tech_notification.ogg" = 5.335, - @"sound/effects/thud.ogg" = 0.244, - @"sound/effects/thud1.ogg" = 1.179, - @"sound/effects/thud2.ogg" = 1.4, - @"sound/effects/thud3.ogg" = 1.304, - @"sound/effects/toilet_flush_new.ogg" = 4.047, - @"sound/effects/toolbox.ogg" = 0.886, - @"sound/effects/tunnel_collapse.ogg" = 3.552, - @"sound/effects/vegetation_hit.ogg" = 0.356, - @"sound/effects/vegetation_walk_0.ogg" = 2.036, - @"sound/effects/vegetation_walk_1.ogg" = 1.5, - @"sound/effects/vegetation_walk_2.ogg" = 1.56, - @"sound/effects/weather_warning.ogg" = 27.789, - @"sound/effects/weather_warning_varadero.ogg" = 13.517, - @"sound/effects/window_shatter1.ogg" = 1.652, - @"sound/effects/window_shatter2.ogg" = 1.757, - @"sound/effects/window_shatter3.ogg" = 1.562, - @"sound/effects/woodhit.ogg" = 0.696, - @"sound/effects/xeno_evolveready.ogg" = 3.442, - @"sound/effects/xeno_newlarva.ogg" = 5.288, - @"sound/effects/xylophone1.ogg" = 5.346, - @"sound/effects/xylophone2.ogg" = 5.619, - @"sound/effects/xylophone3.ogg" = 6.101, - @"sound/effects/zippo_close.ogg" = 0.731, - @"sound/effects/zippo_open.ogg" = 1.114, - @"sound/effects/zzzt.ogg" = 0.124, - @"sound/hallucinations/behind_you1.ogg" = 3.963, - @"sound/hallucinations/behind_you2.ogg" = 4.77, - @"sound/hallucinations/far_noise.ogg" = 4.169, - @"sound/hallucinations/growl1.ogg" = 2.34, - @"sound/hallucinations/growl2.ogg" = 2.398, - @"sound/hallucinations/growl3.ogg" = 2.497, - @"sound/hallucinations/im_here1.ogg" = 4.448, - @"sound/hallucinations/im_here2.ogg" = 3.661, - @"sound/hallucinations/i_see_you1.ogg" = 5.818, - @"sound/hallucinations/i_see_you2.ogg" = 5.658, - @"sound/hallucinations/look_up1.ogg" = 2.953, - @"sound/hallucinations/look_up2.ogg" = 2.213, - @"sound/hallucinations/over_here1.ogg" = 3.658, - @"sound/hallucinations/over_here2.ogg" = 4.067, - @"sound/hallucinations/over_here3.ogg" = 3.24, - @"sound/hallucinations/turn_around1.ogg" = 3.467, - @"sound/hallucinations/turn_around2.ogg" = 3.356, - @"sound/hallucinations/veryfar_noise.ogg" = 4.355, - @"sound/hallucinations/wail.ogg" = 4.773, - @"sound/handling/ammobox_drop.ogg" = 0.318, - @"sound/handling/ammobox_pickup.ogg" = 0.319, - @"sound/handling/armorequip_1.ogg" = 0.57, - @"sound/handling/armorequip_2.ogg" = 0.602, - @"sound/handling/attachment_add.ogg" = 0.627, - @"sound/handling/attachment_remove.ogg" = 0.766, - @"sound/handling/bandage.ogg" = 1.683, - @"sound/handling/book_pickup.ogg" = 0.545, - @"sound/handling/cardboardbox_pickup.ogg" = 0.681, - @"sound/handling/click_2.ogg" = 0.628, - @"sound/handling/clothingrustle1.ogg" = 0.628, - @"sound/handling/clothingrustle2.ogg" = 0.628, - @"sound/handling/clothingrustle3.ogg" = 0.642, - @"sound/handling/clothingrustle4.ogg" = 0.628, - @"sound/handling/clothingrustle5.ogg" = 0.631, - @"sound/handling/clothing_off.ogg" = 0.917, - @"sound/handling/clothing_on.ogg" = 1.439, - @"sound/handling/combistick_close.ogg" = 0.359, - @"sound/handling/combistick_open.ogg" = 0.51, - @"sound/handling/crowbar_drop.ogg" = 0.356, - @"sound/handling/crowbar_pickup.ogg" = 0.5, - @"sound/handling/disk_pickup.ogg" = 0.265, - @"sound/handling/drinkglass_pickup.ogg" = 0.545, - @"sound/handling/flare_activate_1.ogg" = 4.748, - @"sound/handling/flare_activate_2.ogg" = 3.7, - @"sound/handling/gunequip1.ogg" = 0.483, - @"sound/handling/gunequip2.ogg" = 0.316, - @"sound/handling/gunequip3.ogg" = 0.282, - @"sound/handling/hinge_squeak1.ogg" = 1.525, - @"sound/handling/hinge_squeak2.ogg" = 0.952, - @"sound/handling/hud_off.ogg" = 1.122, - @"sound/handling/hud_on.ogg" = 2.3, - @"sound/handling/light_on_1.ogg" = 0.837, - @"sound/handling/lockerclose.ogg" = 0.77, - @"sound/handling/lockeropen.ogg" = 0.901, - @"sound/handling/multitool_drop.ogg" = 0.545, - @"sound/handling/multitool_pickup.ogg" = 0.621, - @"sound/handling/ointment_spreading.ogg" = 1.996, - @"sound/handling/paper_drop.ogg" = 0.75, - @"sound/handling/paper_pickup.ogg" = 0.543, - @"sound/handling/putting_on_armor1.ogg" = 2.89, - @"sound/handling/screwdriver_drop.ogg" = 0.545, - @"sound/handling/screwdriver_pickup.ogg" = 0.284, - @"sound/handling/smartgun_close.ogg" = 0.39, - @"sound/handling/smartgun_open.ogg" = 0.563, - @"sound/handling/splint1.ogg" = 1.845, - @"sound/handling/suitlight_off.ogg" = 0.222, - @"sound/handling/suitlight_on.ogg" = 0.927, - @"sound/handling/taperecorder_drop.ogg" = 0.224, - @"sound/handling/taperecorder_pickup.ogg" = 0.614, - @"sound/handling/tape_drop.ogg" = 0.324, - @"sound/handling/tape_pickup.ogg" = 0.343, - @"sound/handling/toggle_nv1.ogg" = 1.63, - @"sound/handling/toggle_nv2.ogg" = 1.255, - @"sound/handling/toolbelt_pickup.ogg" = 0.681, - @"sound/handling/toolbox_drop.ogg" = 0.75, - @"sound/handling/toolbox_pickup.ogg" = 0.613, - @"sound/handling/weldingtool_drop.ogg" = 0.818, - @"sound/handling/weldingtool_pickup.ogg" = 0.479, - @"sound/handling/wirecutter_drop.ogg" = 0.545, - @"sound/handling/wirecutter_pickup.ogg" = 0.545, - @"sound/handling/wrench_drop.ogg" = 0.545, - @"sound/handling/wrench_pickup.ogg" = 0.545, - @"sound/items/air_release.ogg" = 1.1, - @"sound/items/bikehorn.ogg" = 0.497, - @"sound/items/bubblewrap.ogg" = 2.325, - @"sound/items/cane_step_1.ogg" = 0.209, - @"sound/items/cane_step_2.ogg" = 0.209, - @"sound/items/cane_step_3.ogg" = 0.209, - @"sound/items/cane_step_4.ogg" = 0.209, - @"sound/items/cane_step_5.ogg" = 0.31, - @"sound/items/can_crush.ogg" = 0.952, - @"sound/items/component_pickup.ogg" = 0.398, - @"sound/items/countdown.ogg" = 3.651, - @"sound/items/Crowbar.ogg" = 1.338, - @"sound/items/Deconstruct.ogg" = 0.937, - @"sound/items/defib_charge.ogg" = 7.73, - @"sound/items/defib_failed.ogg" = 0.535, - @"sound/items/defib_ready.ogg" = 0.531, - @"sound/items/defib_release.ogg" = 2.495, - @"sound/items/defib_safetyOff.ogg" = 0.374, - @"sound/items/defib_safetyOn.ogg" = 0.374, - @"sound/items/defib_success.ogg" = 0.535, - @"sound/items/detector.ogg" = 0.889, - @"sound/items/detector_ping_1.ogg" = 0.489, - @"sound/items/detector_ping_2.ogg" = 1.108, - @"sound/items/detector_ping_3.ogg" = 0.689, - @"sound/items/detector_ping_4.ogg" = 1.14, - @"sound/items/detector_turn_off.ogg" = 0.889, - @"sound/items/detector_turn_on.ogg" = 1.65, - @"sound/items/drink.ogg" = 1.159, - @"sound/items/eatfood.ogg" = 2.053, - @"sound/items/fulton.ogg" = 0.97, - @"sound/items/healthanalyzer.ogg" = 0.759, - @"sound/items/hypospray.ogg" = 0.779, - @"sound/items/jetpack_beep.ogg" = 0.127, - @"sound/items/jetpack_sound.ogg" = 2, - @"sound/items/jingle_long.wav" = 2.989, - @"sound/items/jingle_short.wav" = 0.882, - @"sound/items/m56dauto_load.ogg" = 3.426, - @"sound/items/m56dauto_rotate.ogg" = 0.646, - @"sound/items/m56dauto_setup.ogg" = 3.083, - @"sound/items/paper_ripped.ogg" = 0.511, - @"sound/items/pen_click_off.ogg" = 0.198, - @"sound/items/pen_click_on.ogg" = 0.239, - @"sound/items/plush1.ogg" = 1.128, - @"sound/items/plush2.ogg" = 0.929, - @"sound/items/plush3.ogg" = 0.664, - @"sound/items/polaroid1.ogg" = 1.709, - @"sound/items/polaroid2.ogg" = 1.843, - @"sound/items/poster_being_created.ogg" = 3.877, - @"sound/items/poster_ripped.ogg" = 0.526, - @"sound/items/pred_bracer.ogg" = 0.617, - @"sound/items/rappel.ogg" = 0.682, - @"sound/items/Ratchet.ogg" = 1.448, - @"sound/items/rped.ogg" = 3.814, - @"sound/items/Screwdriver.ogg" = 1.912, - @"sound/items/Screwdriver2.ogg" = 0.13, - @"sound/items/splintbreaks.ogg" = 0.262, - @"sound/items/syringeproj.ogg" = 0.554, - @"sound/items/tick.ogg" = 0.64, - @"sound/items/trayhit1.ogg" = 0.677, - @"sound/items/trayhit2.ogg" = 2.012, - @"sound/items/Welder.ogg" = 2.269, - @"sound/items/Welder2.ogg" = 2.043, - @"sound/items/weldingtool_off.ogg" = 1.74, - @"sound/items/weldingtool_on.ogg" = 1.83, - @"sound/items/weldingtool_weld.ogg" = 5.323, - @"sound/items/whistle.ogg" = 2.037, - @"sound/items/Wirecutter.ogg" = 1.384, - @"sound/items/zip.ogg" = 1.031, - @"sound/machines/airalarm.ogg" = 8.057, - @"sound/machines/airlock.ogg" = 1.393, - @"sound/machines/Alarm.ogg" = 13.73, - @"sound/machines/asrs_lowering.ogg" = 13.075, - @"sound/machines/asrs_raising.ogg" = 17.518, - @"sound/machines/beepalert.ogg" = 1.007, - @"sound/machines/beepconfused.ogg" = 1.87, - @"sound/machines/beepsad.ogg" = 1.673, - @"sound/machines/blastdoor.ogg" = 2.018, - @"sound/machines/blender.ogg" = 5.275, - @"sound/machines/bonk.ogg" = 1.309, - @"sound/machines/buzz-sigh.ogg" = 0.312, - @"sound/machines/buzz-two.ogg" = 0.595, - @"sound/machines/centrifuge.ogg" = 5.772, - @"sound/machines/chime.ogg" = 0.413, - @"sound/machines/click.ogg" = 0.41, - @"sound/machines/computer_typing1.ogg" = 0.523, - @"sound/machines/computer_typing2.ogg" = 0.357, - @"sound/machines/computer_typing3.ogg" = 0.522, - @"sound/machines/computer_typing4.ogg" = 1.403, - @"sound/machines/computer_typing5.ogg" = 1.403, - @"sound/machines/computer_typing6.ogg" = 2.406, - @"sound/machines/ding.ogg" = 2.963, - @"sound/machines/disposalflush.ogg" = 3.102, - @"sound/machines/door_close.ogg" = 0.671, - @"sound/machines/door_locked.ogg" = 0.558, - @"sound/machines/door_open.ogg" = 0.799, - @"sound/machines/elevator_move.ogg" = 12.601, - @"sound/machines/elevator_openclose.ogg" = 1.522, - @"sound/machines/emergency_shutter.ogg" = 0.907, - @"sound/machines/fax.ogg" = 3.462, - @"sound/machines/firepit_ambience.ogg" = 5.604, - @"sound/machines/hiss.ogg" = 2.645, - @"sound/machines/hydraulics_1.ogg" = 1.264, - @"sound/machines/hydraulics_2.ogg" = 1.432, - @"sound/machines/hydraulics_3.ogg" = 1.497, - @"sound/machines/juicer.ogg" = 5.434, - @"sound/machines/keyboard1.ogg" = 1.049, - @"sound/machines/keyboard2.ogg" = 0.991, - @"sound/machines/keyboard3.ogg" = 0.927, - @"sound/machines/lawnmower.ogg" = 2.287, - @"sound/machines/lockdownalarm.ogg" = 7.013, - @"sound/machines/lockenable.ogg" = 6.415, - @"sound/machines/lockreset.ogg" = 6.415, - @"sound/machines/medevac_extend.ogg" = 3.797, - @"sound/machines/outputclick1.ogg" = 1.403, - @"sound/machines/outputclick2.ogg" = 1.403, - @"sound/machines/pda_button1.ogg" = 0.252, - @"sound/machines/pda_button2.ogg" = 0.201, - @"sound/machines/pda_ping.ogg" = 0.96, - @"sound/machines/ping.ogg" = 0.503, - @"sound/machines/pod_open.ogg" = 2.856, - @"sound/machines/print.ogg" = 2.144, - @"sound/machines/print_off.ogg" = 1.107, - @"sound/machines/scanning.ogg" = 1.648, - @"sound/machines/scanning_pod1.ogg" = 2.368, - @"sound/machines/screen_output1.ogg" = 2.92, - @"sound/machines/signal.ogg" = 11.164, - @"sound/machines/switch.ogg" = 0.518, - @"sound/machines/tcomms_on.ogg" = 10.193, - @"sound/machines/terminal_alert.ogg" = 1.782, - @"sound/machines/terminal_button01.ogg" = 0.219, - @"sound/machines/terminal_button02.ogg" = 0.302, - @"sound/machines/terminal_button03.ogg" = 0.231, - @"sound/machines/terminal_button04.ogg" = 0.209, - @"sound/machines/terminal_button05.ogg" = 0.177, - @"sound/machines/terminal_button06.ogg" = 0.201, - @"sound/machines/terminal_button07.ogg" = 0.322, - @"sound/machines/terminal_button08.ogg" = 0.261, - @"sound/machines/terminal_eject.ogg" = 0.605, - @"sound/machines/terminal_error.ogg" = 0.413, - @"sound/machines/terminal_insert_disc.ogg" = 1.089, - @"sound/machines/terminal_off.ogg" = 1.535, - @"sound/machines/terminal_on.ogg" = 0.93, - @"sound/machines/terminal_processing.ogg" = 1.754, - @"sound/machines/terminal_prompt.ogg" = 0.278, - @"sound/machines/terminal_prompt_confirm.ogg" = 0.152, - @"sound/machines/terminal_prompt_deny.ogg" = 0.173, - @"sound/machines/terminal_select.ogg" = 0.067, - @"sound/machines/terminal_shutdown.ogg" = 4.07, - @"sound/machines/terminal_success.ogg" = 0.721, - @"sound/machines/turbine_off.ogg" = 9.74, - @"sound/machines/turbine_on.ogg" = 9.74, - @"sound/machines/twobeep.ogg" = 0.296, - @"sound/machines/vending.ogg" = 1.549, - @"sound/machines/warning-buzzer.ogg" = 3.513, - @"sound/machines/windowdoor.ogg" = 1.843, - @"sound/mecha/critdestr.ogg" = 2.06, - @"sound/mecha/critdestrnano.ogg" = 2.392, - @"sound/mecha/critdestrsyndi.ogg" = 2.44, - @"sound/mecha/critnano.ogg" = 1.176, - @"sound/mecha/hydraulic.ogg" = 4.122, - @"sound/mecha/imag_enh.ogg" = 2.542, - @"sound/mecha/imag_enhnano.ogg" = 1.96, - @"sound/mecha/imag_enhsyndi.ogg" = 2.536, - @"sound/mecha/internaldmgalarm.ogg" = 1.301, - @"sound/mecha/LongNanoActivation.ogg" = 5.864, - @"sound/mecha/LongSyndiActivation.ogg" = 3.832, - @"sound/mecha/lowpower.ogg" = 0.875, - @"sound/mecha/lowpowernano.ogg" = 2.456, - @"sound/mecha/lowpowersyndi.ogg" = 2.6, - @"sound/mecha/mechambience.ogg" = 5.532, - @"sound/mecha/mechdrill.ogg" = 5.774, - @"sound/mecha/mechmove01.ogg" = 0.97, - @"sound/mecha/mechmove03.ogg" = 0.914, - @"sound/mecha/mechmove04.ogg" = 0.561, - @"sound/mecha/mechstep.ogg" = 0.52, - @"sound/mecha/mechturn.ogg" = 0.783, - @"sound/mecha/nominal.ogg" = 1.876, - @"sound/mecha/nominalnano.ogg" = 1.432, - @"sound/mecha/nominalsyndi.ogg" = 1.8, - @"sound/mecha/powerloader_attack.ogg" = 0.752, - @"sound/mecha/powerloader_buckle.ogg" = 2.819, - @"sound/mecha/powerloader_step.ogg" = 0.724, - @"sound/mecha/powerloader_step2.ogg" = 0.753, - @"sound/mecha/powerloader_turn.ogg" = 0.686, - @"sound/mecha/powerloader_turn2.ogg" = 0.729, - @"sound/mecha/powerloader_unbuckle.ogg" = 1.204, - @"sound/mecha/powerup.ogg" = 5.125, - @"sound/mecha/weapdestr.ogg" = 2.165, - @"sound/mecha/weapdestrnano.ogg" = 1.176, - @"sound/mecha/weapdestrsyndi.ogg" = 1.48, - @"sound/misc/apcdestroyed.ogg" = 2.943, - @"sound/misc/asay_ping.ogg" = 1.007, - @"sound/misc/asses_kicked.ogg" = 4.44, - @"sound/misc/bangindonk.ogg" = 1.56, - @"sound/misc/bell.ogg" = 6.98, - @"sound/misc/bell.wav" = 6.98, - @"sound/misc/burp_long.ogg" = 1.232, - @"sound/misc/burp_short.ogg" = 0.646, - @"sound/misc/clap.ogg" = 1.684, - @"sound/misc/desk_bell.ogg" = 2.694, - @"sound/misc/distressbeacon_Sunshine.ogg" = 4.392, - @"sound/misc/eventhorizon_shiplog.ogg" = 13.599, - @"sound/misc/facehugged_female.ogg" = 1.821, - @"sound/misc/facehugged_male.ogg" = 1.731, - @"sound/misc/fart_long.ogg" = 2.578, - @"sound/misc/fart_short.ogg" = 0.754, - @"sound/misc/Game_Over_Man.ogg" = 3.366, - @"sound/misc/golfclap.ogg" = 3.365, - @"sound/misc/gone_to_plaid.ogg" = 3.728, - @"sound/misc/good_is_dumb.ogg" = 6.401, - @"sound/misc/hardon.ogg" = 7.559, - @"sound/misc/heal_gun.ogg" = 9.088, - @"sound/misc/hell_march.ogg" = 28.016, - @"sound/misc/interference.ogg" = 1.089, - @"sound/misc/notice1.ogg" = 1.246, - @"sound/misc/notice2.ogg" = 1.008, - @"sound/misc/null.ogg" = 40.96, - @"sound/misc/nymphchirp.ogg" = 0.412, - @"sound/misc/outstanding_marines.ogg" = 11.521, - @"sound/misc/queen_alarm.ogg" = 8.192, - @"sound/misc/Rerun.ogg" = 7.669, - @"sound/misc/robotic scream.ogg" = 7.154, - @"sound/misc/sadtrombone.ogg" = 3.937, - @"sound/misc/salute.ogg" = 0.268, - @"sound/misc/slip.ogg" = 0.166, - @"sound/misc/sound_misc_boatswain.ogg" = 3.044, - @"sound/misc/surrounded_by_assholes.ogg" = 2.335, - @"sound/misc/wound_stabilize.ogg" = 0.548, - @"sound/scp/firstpersonsnap.ogg" = 2.011, - @"sound/scp/firstpersonsnap2.ogg" = 2.011, - @"sound/scp/firstpersonsnap3.ogg" = 2.847, - @"sound/scp/scare1.ogg" = 11.178, - @"sound/scp/scare2.ogg" = 5.939, - @"sound/scp/scare3.ogg" = 8.275, - @"sound/scp/scare4.ogg" = 7.174, - @"sound/soundscape/cicamb2.ogg" = 0.797, - @"sound/soundscape/cicamb3.ogg" = 1.032, - @"sound/soundscape/cicamb4.ogg" = 3.88, - @"sound/soundscape/cicamb5.ogg" = 6.466, - @"sound/soundscape/cicamb6.ogg" = 1.633, - @"sound/soundscape/drum1.ogg" = 10.951, - @"sound/soundscape/eerie1.ogg" = 40.579, - @"sound/soundscape/engamb1.ogg" = 4.285, - @"sound/soundscape/engamb2.ogg" = 2.056, - @"sound/soundscape/engamb3.ogg" = 2.869, - @"sound/soundscape/engamb4.ogg" = 3.635, - @"sound/soundscape/engamb5.ogg" = 3.054, - @"sound/soundscape/engamb6.ogg" = 3.287, - @"sound/soundscape/engamb7.ogg" = 2.915, - @"sound/soundscape/hangaramb1.ogg" = 2.845, - @"sound/soundscape/hangaramb10.ogg" = 5.725, - @"sound/soundscape/hangaramb2.ogg" = 3.101, - @"sound/soundscape/hangaramb3.ogg" = 2.712, - @"sound/soundscape/hangaramb4.ogg" = 6.561, - @"sound/soundscape/hangaramb5.ogg" = 4.21, - @"sound/soundscape/hangaramb6.ogg" = 2.512, - @"sound/soundscape/hangaramb7.ogg" = 2.552, - @"sound/soundscape/hangaramb8.ogg" = 2.613, - @"sound/soundscape/hangaramb9.ogg" = 11.576, - @"sound/soundscape/medbay1.ogg" = 39.381, - @"sound/soundscape/medbay2.ogg" = 39.822, - @"sound/soundscape/medbay3.ogg" = 33.345, - @"sound/soundscape/mother.ogg" = 7.622, - @"sound/soundscape/rocksfalling1.ogg" = 4.435, - @"sound/soundscape/rocksfalling2.ogg" = 4.435, - @"sound/soundscape/thunderclap1.ogg" = 9.636, - @"sound/soundscape/thunderclap2.ogg" = 15.092, - @"sound/soundscape/wind1.ogg" = 11.818, - @"sound/soundscape/wind2.ogg" = 17.67, - @"sound/surgery/cautery1.ogg" = 3.673, - @"sound/surgery/cautery2.ogg" = 1.235, - @"sound/surgery/hemostat1.ogg" = 1.1, - @"sound/surgery/organ1.ogg" = 2.408, - @"sound/surgery/organ2.ogg" = 2.408, - @"sound/surgery/retractor1.ogg" = 1, - @"sound/surgery/retractor2.ogg" = 0.754, - @"sound/surgery/saw.ogg" = 4.163, - @"sound/surgery/scalpel1.ogg" = 1.076, - @"sound/surgery/scalpel2.ogg" = 0.73, - @"sound/theme/lastmanstanding_clf.ogg" = 43.95, - @"sound/theme/lastmanstanding_upp.ogg" = 36.553, - @"sound/theme/lastmanstanding_wy.ogg" = 42.117, - @"sound/theme/neutral_hopeful1.ogg" = 12.482, - @"sound/theme/neutral_hopeful2.ogg" = 10.597, - @"sound/theme/neutral_melancholy1.ogg" = 13.384, - @"sound/theme/neutral_melancholy2.ogg" = 19.84, - @"sound/theme/nuclear_detonation1.ogg" = 13.822, - @"sound/theme/nuclear_detonation2.ogg" = 15.481, - @"sound/theme/sad_loss1.ogg" = 11.994, - @"sound/theme/sad_loss2.ogg" = 17.9, - @"sound/theme/winning_triumph1.ogg" = 16.348, - @"sound/theme/winning_triumph2.ogg" = 19.247, - @"sound/vehicles/honk_1_truck.ogg" = 1.33, - @"sound/vehicles/honk_2_truck.ogg" = 1.464, - @"sound/vehicles/honk_3_ambulence.ogg" = 2.1, - @"sound/vehicles/honk_4_light.ogg" = 1.468, - @"sound/vehicles/overdrive_activate.ogg" = 2.621, - @"sound/vehicles/tank_driving.ogg" = 2.662, - @"sound/voice/4_xeno_roars.ogg" = 5.019, - @"sound/voice/alien_cena.ogg" = 7.664, - @"sound/voice/alien_chestburst.ogg" = 2.177, - @"sound/voice/alien_chestburst2.ogg" = 2.019, - @"sound/voice/alien_death.ogg" = 4.556, - @"sound/voice/alien_death2.ogg" = 1.56, - @"sound/voice/alien_death_unused.ogg" = 3.608, - @"sound/voice/alien_distantroar_3.ogg" = 3.89, - @"sound/voice/alien_drool1.ogg" = 3, - @"sound/voice/alien_drool2.ogg" = 3.136, - @"sound/voice/alien_facehugger_dies.ogg" = 1.123, - @"sound/voice/alien_growl1.ogg" = 1.378, - @"sound/voice/alien_growl2.ogg" = 2.112, - @"sound/voice/alien_growl3.ogg" = 4.383, - @"sound/voice/alien_help1.ogg" = 1.441, - @"sound/voice/alien_help2.ogg" = 2.181, - @"sound/voice/alien_help3.ogg" = 1.731, - @"sound/voice/alien_hiss1.ogg" = 3.014, - @"sound/voice/alien_hiss2.ogg" = 3.002, - @"sound/voice/alien_hiss3.ogg" = 2.794, - @"sound/voice/alien_pounce.ogg" = 0.664, - @"sound/voice/alien_pounce2.ogg" = 0.211, - @"sound/voice/alien_queen_breath1.ogg" = 8.61, - @"sound/voice/alien_queen_breath2.ogg" = 7.616, - @"sound/voice/alien_queen_command.ogg" = 4.057, - @"sound/voice/alien_queen_command2.ogg" = 4.181, - @"sound/voice/alien_queen_command3.ogg" = 3.995, - @"sound/voice/alien_queen_died.ogg" = 3.049, - @"sound/voice/alien_queen_screech.ogg" = 4.998, - @"sound/voice/alien_queen_xmas.ogg" = 4.006, - @"sound/voice/alien_queen_xmas_2.ogg" = 5.763, - @"sound/voice/alien_roar1.ogg" = 1.497, - @"sound/voice/alien_roar2.ogg" = 1.729, - @"sound/voice/alien_roar3.ogg" = 1.566, - @"sound/voice/alien_roar4.ogg" = 1.404, - @"sound/voice/alien_roar5.ogg" = 1.625, - @"sound/voice/alien_roar6.ogg" = 1.625, - @"sound/voice/alien_roar_larva1.ogg" = 1.139, - @"sound/voice/alien_roar_larva2.ogg" = 0.73, - @"sound/voice/alien_roar_unused.ogg" = 1.232, - @"sound/voice/alien_spitacid.ogg" = 1.512, - @"sound/voice/alien_spitacid2.ogg" = 1.816, - @"sound/voice/alien_talk.ogg" = 1.33, - @"sound/voice/alien_talk2.ogg" = 1.92, - @"sound/voice/alien_talk3.ogg" = 1.383, - @"sound/voice/bcreep.ogg" = 1.568, - @"sound/voice/bcriminal.ogg" = 1.152, - @"sound/voice/bfreeze.ogg" = 1.056, - @"sound/voice/bgod.ogg" = 2.976, - @"sound/voice/biamthelaw.ogg" = 2.24, - @"sound/voice/binsult.ogg" = 14.144, - @"sound/voice/bjustice.ogg" = 0.96, - @"sound/voice/bradio.ogg" = 1.824, - @"sound/voice/bsecureday.ogg" = 1.248, - @"sound/voice/cat_meow_1.ogg" = 2.043, - @"sound/voice/cat_meow_2.ogg" = 3.088, - @"sound/voice/cat_meow_3.ogg" = 2.229, - @"sound/voice/cat_meow_4.ogg" = 3.157, - @"sound/voice/cat_meow_5.ogg" = 2.647, - @"sound/voice/cat_meow_6.ogg" = 3.436, - @"sound/voice/cat_meow_7.ogg" = 0.902, - @"sound/voice/corpsman.ogg" = 0.499, - @"sound/voice/corpsman_over_here.ogg" = 2.174, - @"sound/voice/corpsman_up.ogg" = 0.978, - @"sound/voice/ed209_20sec.ogg" = 2.433, - @"sound/voice/get_doc_up_here_im_hit.ogg" = 1.538, - @"sound/voice/halt.ogg" = 2.281, - @"sound/voice/hiss1.ogg" = 2.131, - @"sound/voice/hiss2.ogg" = 1.988, - @"sound/voice/hiss3.ogg" = 2.317, - @"sound/voice/hiss4.ogg" = 2.182, - @"sound/voice/hiss5.ogg" = 3.943, - @"sound/voice/hiss6.ogg" = 2.245, - @"sound/voice/holy_chorus.ogg" = 4.983, - @"sound/voice/human_ack_scream.ogg" = 0.388, - @"sound/voice/human_bobby_pain.ogg" = 0.73, - @"sound/voice/human_female_grenadethrow_1.ogg" = 0.984, - @"sound/voice/human_female_grenadethrow_2.ogg" = 0.805, - @"sound/voice/human_female_grenadethrow_3.ogg" = 1.073, - @"sound/voice/human_female_medic.ogg" = 0.666, - @"sound/voice/human_female_pain_1.ogg" = 0.819, - @"sound/voice/human_female_pain_2.ogg" = 0.649, - @"sound/voice/human_female_pain_3.ogg" = 0.632, - @"sound/voice/human_female_pain_4.ogg" = 0.645, - @"sound/voice/human_female_pain_5.ogg" = 0.798, - @"sound/voice/human_female_scream_1.ogg" = 1.085, - @"sound/voice/human_female_scream_2.ogg" = 1.108, - @"sound/voice/human_female_scream_3.ogg" = 0.866, - @"sound/voice/human_female_scream_4.ogg" = 0.468, - @"sound/voice/human_female_scream_5.ogg" = 1.181, - @"sound/voice/human_jackson_scream.ogg" = 0.65, - @"sound/voice/human_male_grenadethrow_1.ogg" = 1.291, - @"sound/voice/human_male_grenadethrow_2.ogg" = 1.16, - @"sound/voice/human_male_grenadethrow_3.ogg" = 1.299, - @"sound/voice/human_male_medic.ogg" = 0.77, - @"sound/voice/human_male_medic_rare_1.ogg" = 1.086, - @"sound/voice/human_male_medic_rare_2.ogg" = 0.67, - @"sound/voice/human_male_pain_1.ogg" = 1.012, - @"sound/voice/human_male_pain_2.ogg" = 0.839, - @"sound/voice/human_male_pain_3.ogg" = 0.441, - @"sound/voice/human_male_pain_4.ogg" = 1.086, - @"sound/voice/human_male_pain_rare_1.ogg" = 1.28, - @"sound/voice/human_male_scream_1.ogg" = 0.445, - @"sound/voice/human_male_scream_2.ogg" = 0.601, - @"sound/voice/human_male_scream_3.ogg" = 0.582, - @"sound/voice/human_male_scream_4.ogg" = 0.436, - @"sound/voice/human_male_scream_5.ogg" = 1.066, - @"sound/voice/human_male_scream_6.ogg" = 1.555, - @"sound/voice/human_tantrum_scream.ogg" = 0.592, - @"sound/voice/im_hit_get_doc_up_here.ogg" = 2.155, - @"sound/voice/i_cant_feel_my_legs_corpsman.ogg" = 2.544, - @"sound/voice/i_need_a_corpsman_1.ogg" = 1.454, - @"sound/voice/i_need_a_corpsman_2.ogg" = 1.242, - @"sound/voice/larva_talk1.ogg" = 0.645, - @"sound/voice/larva_talk2.ogg" = 0.519, - @"sound/voice/larva_talk3.ogg" = 0.756, - @"sound/voice/larva_talk4.ogg" = 0.858, - @"sound/voice/liveagain.ogg" = 2.993, - @"sound/voice/monkey_chimper1.ogg" = 0.943, - @"sound/voice/monkey_chimper2.ogg" = 1.84, - @"sound/voice/monkey_scream.ogg" = 1.667, - @"sound/voice/monkey_whimper.ogg" = 4.138, - @"sound/voice/predalien_click.ogg" = 1.744, - @"sound/voice/predalien_death.ogg" = 1.458, - @"sound/voice/predalien_growl.ogg" = 1.436, - @"sound/voice/predalien_hiss.ogg" = 1.76, - @"sound/voice/predalien_pounce.ogg" = 0.991, - @"sound/voice/predalien_roar.ogg" = 2.993, - @"sound/voice/pred_anytime.ogg" = 2.268, - @"sound/voice/pred_click1.ogg" = 2.461, - @"sound/voice/pred_click2.ogg" = 1.156, - @"sound/voice/pred_click3.ogg" = 5.737, - @"sound/voice/pred_click4.ogg" = 5.482, - @"sound/voice/pred_click5.ogg" = 12.288, - @"sound/voice/pred_come_on_out.ogg" = 3.459, - @"sound/voice/pred_deathlaugh.ogg" = 9.706, - @"sound/voice/pred_facehugged.ogg" = 1.236, - @"sound/voice/pred_helpme.ogg" = 1.307, - @"sound/voice/pred_itsatrap.ogg" = 3.693, - @"sound/voice/pred_laugh1.ogg" = 1.827, - @"sound/voice/pred_laugh2.ogg" = 4.212, - @"sound/voice/pred_laugh3.ogg" = 4.214, - @"sound/voice/pred_overhere.ogg" = 1.574, - @"sound/voice/pred_over_there.ogg" = 2.879, - @"sound/voice/pred_pain1.ogg" = 1.416, - @"sound/voice/pred_pain2.ogg" = 1.335, - @"sound/voice/pred_pain3.ogg" = 3.204, - @"sound/voice/pred_pain4.ogg" = 1.41, - @"sound/voice/pred_pain5.ogg" = 1.219, - @"sound/voice/pred_pain_rare1.ogg" = 3.587, - @"sound/voice/pred_roar1.ogg" = 3.226, - @"sound/voice/pred_roar2.ogg" = 3.641, - @"sound/voice/pred_roar3.ogg" = 2.995, - @"sound/voice/pred_roar4.ogg" = 6.08, - @"sound/voice/pred_roar5.ogg" = 4.117, - @"sound/voice/pred_turnaround.ogg" = 2.23, - @"sound/voice/pred_ugly_freak.ogg" = 4.945, - @"sound/voice/scream_horror1.ogg" = 7.154, - @"sound/voice/scream_horror2.ogg" = 1.827, - @"sound/voice/shriek1.ogg" = 1.83, - @"sound/voice/start_your_voting.ogg" = 3.655, - @"sound/voice/tomscream.ogg" = 2.618, - @"sound/voice/xenos_roaring.ogg" = 4.847, - @"sound/voice/xeno_praetorian_screech.ogg" = 2.813, - @"sound/weapons/alien_acidstrike1.ogg" = 5.054, - @"sound/weapons/alien_bite1.ogg" = 0.702, - @"sound/weapons/alien_bite2.ogg" = 1.483, - @"sound/weapons/alien_claw_block.ogg" = 0.355, - @"sound/weapons/alien_claw_flesh1.ogg" = 0.408, - @"sound/weapons/alien_claw_flesh2.ogg" = 0.33, - @"sound/weapons/alien_claw_flesh3.ogg" = 0.411, - @"sound/weapons/alien_claw_flesh4.ogg" = 0.608, - @"sound/weapons/alien_claw_flesh5.ogg" = 0.484, - @"sound/weapons/alien_claw_flesh6.ogg" = 0.41, - @"sound/weapons/alien_claw_metal1.ogg" = 0.176, - @"sound/weapons/alien_claw_metal2.ogg" = 0.212, - @"sound/weapons/alien_claw_metal3.ogg" = 0.19, - @"sound/weapons/alien_claw_swipe.ogg" = 0.092, - @"sound/weapons/alien_knockdown.ogg" = 0.285, - @"sound/weapons/alien_tail_attack.ogg" = 0.747, - @"sound/weapons/armbomb.ogg" = 1.986, - @"sound/weapons/baton.ogg" = 0.249, - @"sound/weapons/baton_slug_impact.ogg" = 1.761, - @"sound/weapons/bite.ogg" = 2.108, - @"sound/weapons/blade1.ogg" = 0.886, - @"sound/weapons/bladeslice.ogg" = 0.413, - @"sound/weapons/blaster.ogg" = 0.32, - @"sound/weapons/bulletcasing_bounce.ogg" = 1.34, - @"sound/weapons/bulletcasing_fall.ogg" = 0.505, - @"sound/weapons/bulletcasing_fall2.ogg" = 0.592, - @"sound/bullets/bulletcasing_shotgun_fall1.ogg" = 1.127, - @"sound/weapons/cablecuff.ogg" = 0.387, - @"sound/weapons/chain_whip.ogg" = 0.835, - @"sound/weapons/circsawhit.ogg" = 1.423, - @"sound/weapons/clan_sword_hit_1.ogg" = 1.209, - @"sound/weapons/clan_sword_hit_2.ogg" = 0.902, - @"sound/weapons/dropship_sonic_boom.ogg" = 13.572, - @"sound/weapons/Egloves.ogg" = 0.728, - @"sound/weapons/emitter.ogg" = 1.786, - @"sound/weapons/emitter2.ogg" = 3.481, - @"sound/weapons/flash.ogg" = 2.824, - @"sound/weapons/flipblade.ogg" = 1.348, - @"sound/weapons/Genhit.ogg" = 0.442, - @"sound/weapons/genhit1.ogg" = 0.584, - @"sound/weapons/genhit2.ogg" = 0.48, - @"sound/weapons/genhit3.ogg" = 0.55, - @"sound/weapons/grenade_insert.wav" = 0.809, - @"sound/weapons/Gunshot.ogg" = 0.724, - @"sound/weapons/gun_44mag.ogg" = 0.744, - @"sound/weapons/gun_44mag2.ogg" = 0.523, - @"sound/weapons/gun_44mag_close_chamber.wav" = 0.367, - @"sound/weapons/gun_44mag_open_chamber.wav" = 0.187, - @"sound/weapons/gun_44mag_speed_loader.wav" = 0.491, - @"sound/weapons/gun_44mag_v3.ogg" = 3.915, - @"sound/weapons/gun_44mag_v4.ogg" = 1.166, - @"sound/weapons/gun_88m4_reload.ogg" = 0.766, - @"sound/weapons/gun_88m4_unload.ogg" = 1.651, - @"sound/weapons/gun_88m4_v7.ogg" = 3.523, - @"sound/weapons/gun_ak47.ogg" = 0.622, - @"sound/weapons/gun_ar10.ogg" = 0.562, - @"sound/weapons/gun_boltaction.ogg" = 2.846, - @"sound/weapons/gun_boomslang_fire.ogg" = 1.205, - @"sound/weapons/gun_c99.ogg" = 0.605, - @"sound/weapons/gun_carbine.ogg" = 3.781, - @"sound/weapons/gun_chimp70.ogg" = 0.41, - @"sound/weapons/gun_cmb_1.ogg" = 1.429, - @"sound/weapons/gun_cmb_2.ogg" = 1.484, - @"sound/weapons/gun_cmb_bass.ogg" = 0.63, - @"sound/weapons/gun_cmb_rattle.ogg" = 1.394, - @"sound/weapons/gun_cocked2.ogg" = 0.642, - @"sound/weapons/gun_DE50.ogg" = 1.552, - @"sound/weapons/gun_DE50OLD.ogg" = 1.465, - @"sound/weapons/gun_empty.ogg" = 0.213, - @"sound/weapons/gun_es4.ogg" = 0.402, - @"sound/weapons/gun_flamethrower1.ogg" = 7.025, - @"sound/weapons/gun_flamethrower2.ogg" = 3.85, - @"sound/weapons/gun_flamethrower3.ogg" = 2.416, - @"sound/weapons/gun_flamethrower_empty.ogg" = 0.867, - @"sound/weapons/gun_flare.ogg" = 3, - @"sound/weapons/gun_flare_explode.ogg" = 1.461, - @"sound/weapons/gun_glock.ogg" = 0.817, - @"sound/weapons/gun_hpr.ogg" = 2.009, - @"sound/weapons/gun_kt42.ogg" = 2.335, - @"sound/weapons/gun_lever_action_fire.ogg" = 1.823, - @"sound/weapons/gun_m16.ogg" = 3.465, - @"sound/weapons/gun_m39.ogg" = 0.498, - @"sound/weapons/gun_m41ae2_old.ogg" = 3.81, - @"sound/weapons/gun_m41a_1.ogg" = 0.985, - @"sound/weapons/gun_m41a_2.ogg" = 0.645, - @"sound/weapons/gun_m41a_3.ogg" = 0.61, - @"sound/weapons/gun_m41a_4.ogg" = 0.48, - @"sound/weapons/gun_m41a_5.ogg" = 0.706, - @"sound/weapons/gun_m41a_6.ogg" = 0.846, - @"sound/weapons/gun_m43.ogg" = 2.3, - @"sound/weapons/gun_m4a3_1.ogg" = 0.809, - @"sound/weapons/gun_m4a3_2.ogg" = 0.9, - @"sound/weapons/gun_m4a3_3.ogg" = 0.913, - @"sound/weapons/gun_m4a3_4.ogg" = 0.913, - @"sound/weapons/gun_m4a3_5.ogg" = 0.905, - @"sound/weapons/gun_m4ra.ogg" = 0.642, - @"sound/weapons/gun_m56d_auto.ogg" = 1.117, - ) - var/list/sounds_2000 = list( - @"sound/weapons/gun_m60.ogg" = 1.992, - @"sound/weapons/gun_m60_cocked.ogg" = 1.095, - @"sound/weapons/gun_m92_attachable.ogg" = 0.999, - @"sound/weapons/gun_m92_cocked.ogg" = 0.338, - @"sound/weapons/gun_mac15.ogg" = 0.666, - @"sound/weapons/gun_mar40.ogg" = 3.795, - @"sound/weapons/gun_mateba.ogg" = 0.753, - @"sound/weapons/gun_mg.ogg" = 1.253, - @"sound/weapons/gun_minigun.ogg" = 0.4, - @"sound/weapons/gun_minigun_cocked.ogg" = 0.767, - @"sound/weapons/gun_mortar_fire.ogg" = 0.828, - @"sound/weapons/gun_mortar_reload.ogg" = 0.639, - @"sound/weapons/gun_mortar_travel.ogg" = 4.006, - @"sound/weapons/gun_mortar_unpack.ogg" = 1.467, - @"sound/weapons/gun_mou53.ogg" = 3.015, - @"sound/weapons/gun_nsg23_1.ogg" = 0.905, - @"sound/weapons/gun_nsg23_2.ogg" = 0.809, - @"sound/weapons/gun_orbital_travel.ogg" = 11.987, - @"sound/weapons/gun_p90.ogg" = 1.4, - @"sound/weapons/gun_pistol_cocked.ogg" = 0.378, - @"sound/weapons/gun_pistol_draw.ogg" = 0.509, - @"sound/weapons/gun_pistol_holdout.ogg" = 0.909, - @"sound/weapons/gun_pistol_large.ogg" = 1.519, - @"sound/weapons/gun_pistol_medium.ogg" = 1.403, - @"sound/weapons/gun_pistol_sheathe.ogg" = 0.747, - @"sound/weapons/gun_pkd_fire01.ogg" = 1.509, - @"sound/weapons/gun_pkd_fire01_rattle.ogg" = 1.172, - @"sound/weapons/gun_pkd_fire02.ogg" = 1.172, - @"sound/weapons/gun_pkd_fire03.ogg" = 1.01, - @"sound/weapons/gun_reload.ogg" = 1.069, - @"sound/weapons/gun_revolver_cocked.ogg" = 0.384, - @"sound/weapons/gun_revolver_load3.ogg" = 0.573, - @"sound/weapons/gun_revolver_spun.ogg" = 1.179, - @"sound/weapons/gun_revolver_unload.ogg" = 0.41, - @"sound/weapons/gun_rifle.ogg" = 1.522, - @"sound/weapons/gun_rifle_draw.ogg" = 0.518, - @"sound/weapons/gun_rifle_reload.ogg" = 0.32, - @"sound/weapons/gun_rocketlauncher.ogg" = 1.436, - @"sound/weapons/gun_sentry.ogg" = 1.482, - @"sound/weapons/gun_servicepistol.ogg" = 1.032, - @"sound/weapons/gun_shotgun.ogg" = 0.959, - @"sound/weapons/gun_shotgun_automatic.ogg" = 1.266, - @"sound/weapons/gun_shotgun_heavy.ogg" = 1.754, - @"sound/weapons/gun_shotgun_open2.ogg" = 0.306, - @"sound/weapons/gun_shotgun_pump.ogg" = 0.747, - @"sound/weapons/gun_shotgun_reload.ogg" = 0.445, - @"sound/weapons/gun_shotgun_riot.ogg" = 1.325, - @"sound/weapons/gun_shotgun_shell_insert.ogg" = 0.21, - @"sound/weapons/gun_shotgun_small.ogg" = 1.342, - @"sound/weapons/gun_shotgun_tactical_1.ogg" = 1.83, - @"sound/weapons/gun_shotgun_tactical_2.ogg" = 1.899, - @"sound/weapons/gun_shotgun_tactical_3.ogg" = 1.908, - @"sound/weapons/gun_shotgun_tactical_4.ogg" = 1.827, - @"sound/weapons/gun_shotgun_u7.ogg" = 5, - @"sound/weapons/gun_shotgun_xm51.ogg" = 2.059, - @"sound/weapons/gun_silenced_oldshot1.ogg" = 0.355, - @"sound/weapons/gun_silenced_oldshot2.ogg" = 0.233, - @"sound/weapons/gun_silenced_shot1.ogg" = 1.104, - @"sound/weapons/gun_silenced_shot2.ogg" = 1.128, - @"sound/weapons/gun_skorpion.ogg" = 0.496, - @"sound/weapons/gun_smartgun1.ogg" = 0.85, - @"sound/weapons/gun_smartgun1_rattle.ogg" = 0.85, - @"sound/weapons/gun_smartgun2.ogg" = 0.85, - @"sound/weapons/gun_smartgun2_rattle.ogg" = 0.85, - @"sound/weapons/gun_smartgun3.ogg" = 0.85, - @"sound/weapons/gun_smartgun3_rattle.ogg" = 0.85, - @"sound/weapons/gun_smartgun4.ogg" = 0.85, - @"sound/weapons/gun_smartgun4_rattle.ogg" = 0.85, - @"sound/weapons/gun_smg.ogg" = 0.552, - @"sound/weapons/gun_sniper.ogg" = 1.02, - @"sound/weapons/gun_su6.ogg" = 3.523, - @"sound/weapons/gun_tt.ogg" = 1.003, - @"sound/weapons/gun_type23.ogg" = 4.099, - @"sound/weapons/gun_type71.ogg" = 0.573, - @"sound/weapons/gun_ugl_fire.ogg" = 0.88, - @"sound/weapons/gun_uzi.ogg" = 0.287, - @"sound/weapons/gun_vp78_reload.ogg" = 1.173, - @"sound/weapons/gun_vp78_unload.ogg" = 1.716, - @"sound/weapons/gun_vp78_v2.ogg" = 3.801, - @"sound/weapons/gun_vulture_fire.ogg" = 4.82, - @"sound/weapons/gun_vulture_mark.ogg" = 0.775, - @"sound/weapons/gun_vulture_report.ogg" = 6.378, - @"sound/weapons/gun_xm88_directhit_high.ogg" = 1.175, - @"sound/weapons/gun_xm88_directhit_low.ogg" = 0.638, - @"sound/weapons/gun_xm88_directhit_medium.ogg" = 0.743, - @"sound/weapons/handcuffs.ogg" = 1.448, - @"sound/weapons/hmg_cooling.ogg" = 5.008, - @"sound/weapons/hmg_eject_mag.ogg" = 0.536, - @"sound/weapons/Laser.ogg" = 0.425, - @"sound/weapons/Laser2.ogg" = 0.96, - @"sound/weapons/Laser3.ogg" = 0.802, - @"sound/weapons/Laser4.ogg" = 0.665, - @"sound/weapons/marauder.ogg" = 3.191, - @"sound/weapons/metal_chair_clang.ogg" = 1.068, - @"sound/weapons/metal_chair_crash.ogg" = 4.949, - @"sound/weapons/metal_chair_slam.ogg" = 0.895, - @"sound/weapons/mine_armed.ogg" = 3.356, - @"sound/weapons/mine_tripped.ogg" = 0.231, - @"sound/weapons/nailgun_fire.ogg" = 0.712, - @"sound/weapons/nailgun_repair_long.ogg" = 2.919, - @"sound/weapons/pierce.ogg" = 0.952, - @"sound/weapons/pred_lasercannon.ogg" = 1.277, - @"sound/weapons/pred_plasmacaster_fire.ogg" = 2.979, - @"sound/weapons/pred_plasmacaster_off.ogg" = 2.314, - @"sound/weapons/pred_plasmacaster_on.ogg" = 2.31, - @"sound/weapons/pred_plasma_shot.ogg" = 1.507, - @"sound/weapons/pulse.ogg" = 0.576, - @"sound/weapons/pulse2.ogg" = 0.576, - @"sound/weapons/pulse3.ogg" = 0.529, - @"sound/weapons/punch1.ogg" = 0.92, - @"sound/weapons/punch2.ogg" = 0.815, - @"sound/weapons/punch3.ogg" = 0.902, - @"sound/weapons/punch4.ogg" = 0.699, - @"sound/weapons/punchmiss.ogg" = 0.449, - @"sound/weapons/ring.ogg" = 0.632, - @"sound/weapons/saberoff.ogg" = 3.038, - @"sound/weapons/saberon.ogg" = 3.06, - @"sound/weapons/shell_load1.ogg" = 0.59, - @"sound/weapons/shell_load2.ogg" = 0.609, - @"sound/weapons/shell_load3.ogg" = 0.609, - @"sound/weapons/shell_load4.ogg" = 0.572, - @"sound/weapons/shotgunpump1.ogg" = 0.654, - @"sound/weapons/shotgunpump2.ogg" = 0.715, - @"sound/weapons/slash.ogg" = 0.789, - @"sound/weapons/slashmiss.ogg" = 0.487, - @"sound/weapons/slice.ogg" = 0.952, - @"sound/weapons/smartgun.ogg" = 0.716, - @"sound/weapons/smash.ogg" = 0.796, - @"sound/weapons/smg_empty_alarm.ogg" = 1.576, - @"sound/weapons/smg_heavy.ogg" = 0.544, - @"sound/weapons/smg_light.ogg" = 0.304, - @"sound/weapons/sniper_heavy.ogg" = 1.423, - @"sound/weapons/synthpunch1.ogg" = 0.333, - @"sound/weapons/tablehit1.ogg" = 1.017, - @"sound/weapons/TargetOff.ogg" = 0.303, - @"sound/weapons/TargetOn.ogg" = 0.371, - @"sound/weapons/Taser.ogg" = 0.46, - @"sound/weapons/taser2.ogg" = 0.891, - @"sound/weapons/throwtap.ogg" = 0.18, - @"sound/weapons/thudswoosh.ogg" = 1.558, - @"sound/weapons/unload.ogg" = 0.486, - @"sound/weapons/vp70.ogg" = 0.489, - @"sound/weapons/wave.ogg" = 0.529, - @"sound/weapons/wristblades_hit.ogg" = 0.895, - @"sound/weapons/wristblades_off.ogg" = 0.686, - @"sound/weapons/wristblades_on.ogg" = 0.818, - @"sound/ambience/strata/strata_blizzard.ogg" = 47.483, - @"sound/ambience/strata/strata_snow.ogg" = 47.483, - @"sound/ambience/strata/strata_snowstorm.ogg" = 47.483, - @"sound/misc/apcdestroyed.ogg" = 2.943, - @"sound/dyn/roundend/CIAPencils.ogg" = 4.057, - @"sound/misc/Game_Over_Man.ogg" = 3.366, - @"sound/dyn/roundend/hysterical.ogg" = 1.537, - @"sound/dyn/roundend/its_only_game.ogg" = 3.839, - @"sound/dyn/roundend/lets_get_outta_here.ogg" = 0.859, - @"sound/dyn/roundend/NotBadForAHuman.ogg" = 3.547, - @"sound/misc/surrounded_by_assholes.ogg" = 2.335, - @"sound/effects/turret/move1.wav" = 0.928, - @"sound/effects/turret/move2.wav" = 0.916, - @"sound/effects/turret/open.wav" = 2.391, - @"sound/effects/wind/wind_2_1.ogg" = 5.459, - @"sound/effects/wind/wind_2_2.ogg" = 5.658, - @"sound/effects/wind/wind_3_1.ogg" = 5.956, - @"sound/effects/wind/wind_4_1.ogg" = 7.664, - @"sound/effects/wind/wind_4_2.ogg" = 6.849, - @"sound/effects/wind/wind_5_1.ogg" = 10.373, - @"sound/items/taperecorder/taperecorder_close.ogg" = 0.617, - @"sound/items/taperecorder/taperecorder_hiss_mid.ogg" = 0.25, - @"sound/items/taperecorder/taperecorder_hiss_start.ogg" = 0.25, - @"sound/items/taperecorder/taperecorder_open.ogg" = 0.591, - @"sound/items/taperecorder/taperecorder_play.ogg" = 0.203, - @"sound/items/taperecorder/taperecorder_print.ogg" = 0.771, - @"sound/items/taperecorder/taperecorder_stop.ogg" = 0.326, - @"sound/items/taperecorder/tape_flip.ogg" = 0.623, - @"sound/items/writing_noises/paper_writing_1.wav" = 1.184, - @"sound/items/writing_noises/paper_writing_2.wav" = 3.993, - @"sound/items/writing_noises/paper_writing_3.wav" = 1.265, - @"sound/items/writing_noises/paper_writing_4.ogg" = 0.678, - @"sound/machines/railgun/railgun_impact.ogg" = 2.246, - @"sound/machines/railgun/railgun_shoot.ogg" = 0.977, - @"sound/machines/railgun/railgun_shoot2.ogg" = 0.977, - @"sound/machines/resource_node/node_idle.ogg" = 3.702, - @"sound/machines/resource_node/node_marine_die.ogg" = 3.733, - @"sound/machines/resource_node/node_marine_die_2.ogg" = 2.159, - @"sound/machines/resource_node/node_marine_harvest.ogg" = 3.239, - @"sound/machines/resource_node/node_marine_on.ogg" = 8.194, - @"sound/machines/resource_node/node_turn_off.ogg" = 9.45, - @"sound/machines/resource_node/node_turn_on_2.ogg" = 5.764, - @"sound/machines/resource_node/node_xeno_die.ogg" = 3.733, - @"sound/machines/resource_node/node_xeno_harvest.ogg" = 4.468, - @"sound/machines/resource_node/node_xeno_on.ogg" = 3.722, - @"sound/machines/techpod/techpod_drill.ogg" = 4.752, - @"sound/machines/techpod/techpod_drilling.ogg" = 3.323, - @"sound/machines/techpod/techpod_hit.ogg" = 1.079, - @"sound/machines/techpod/techpod_no_drill.ogg" = 4.752, - @"sound/machines/techpod/techpod_open.ogg" = 2.828, - @"sound/machines/techpod/techpod_open_noding.ogg" = 2.795, - @"sound/machines/techpod/techpod_rto_notif.ogg" = 0.951, - @"sound/machines/techpod/techpod_rto_notif_muffled.ogg" = 0.66, - @"sound/machines/techpod/techpod_toggle.ogg" = 0.304, - @"sound/machines/telephone/rtb_handset_1.ogg" = 0.429, - @"sound/machines/telephone/rtb_handset_2.ogg" = 0.348, - @"sound/machines/telephone/rtb_handset_3.ogg" = 0.557, - @"sound/machines/telephone/rtb_handset_4.ogg" = 0.452, - @"sound/machines/telephone/rtb_handset_5.ogg" = 0.464, - @"sound/machines/telephone/telephone_ring.ogg" = 2.9, - @"sound/vehicles/Dropships/single_alarm_brr_dropship_1.ogg" = 1.75, - @"sound/voice/joe/alwaysknow.ogg" = 2.873, - @"sound/voice/joe/alwaysknow_damaged.ogg" = 2.647, - @"sound/voice/joe/alwaysknow_haz.ogg" = 3.193, - @"sound/voice/joe/apollo_behalf.ogg" = 3.051, - @"sound/voice/joe/apollo_behalf_haz.ogg" = 3.113, - @"sound/voice/joe/area_restricted_haz.ogg" = 1.896, - @"sound/voice/joe/awful.ogg" = 2.233, - @"sound/voice/joe/awful_haz.ogg" = 2.467, - @"sound/voice/joe/back_to_work.ogg" = 1.166, - @"sound/voice/joe/back_to_work_haz.ogg" = 1.376, - @"sound/voice/joe/been_looking_for_you.ogg" = 0.966, - @"sound/voice/joe/beyond_repair.ogg" = 3.365, - @"sound/voice/joe/beyond_repair_haz.ogg" = 3.441, - @"sound/voice/joe/be_careful_with_that.ogg" = 1.18, - @"sound/voice/joe/breach.ogg" = 1.764, - @"sound/voice/joe/breach_haz.ogg" = 2.08, - @"sound/voice/joe/calm_down.ogg" = 1.772, - @"sound/voice/joe/come_out_vent.ogg" = 2.468, - @"sound/voice/joe/come_out_vent_haz.ogg" = 2.394, - @"sound/voice/joe/come_with_me.ogg" = 1.414, - @"sound/voice/joe/could_require_attention.ogg" = 1.794, - @"sound/voice/joe/could_require_attention_haz.ogg" = 2.346, - @"sound/voice/joe/damage.ogg" = 2.137, - @"sound/voice/joe/damage_haz.ogg" = 2.377, - @"sound/voice/joe/dangerous_items.ogg" = 2.782, - @"sound/voice/joe/dangerous_items_haz.ogg" = 2.832, - @"sound/voice/joe/day_never_done.ogg" = 2.602, - @"sound/voice/joe/day_never_done_haz.ogg" = 2.798, - @"sound/voice/joe/death_dream.ogg" = 3.102, - @"sound/voice/joe/death_normal.ogg" = 5.013, - @"sound/voice/joe/death_silence.ogg" = 3.337, - @"sound/voice/joe/death_tomorrow.ogg" = 3.982, - @"sound/voice/joe/detailed_report.ogg" = 2.692, - @"sound/voice/joe/detailed_report_haz.ogg" = 2.914, - @"sound/voice/joe/disturbance_haz.ogg" = 3.127, - @"sound/voice/joe/dontdothat.ogg" = 1.209, - @"sound/voice/joe/dont_run.ogg" = 0.937, - @"sound/voice/joe/enough.ogg" = 0.533, - @"sound/voice/joe/existing_tasks.ogg" = 2.609, - @"sound/voice/joe/expensive_mistake.ogg" = 1.87, - @"sound/voice/joe/fire.ogg" = 2.288, - @"sound/voice/joe/firearm.ogg" = 4.22, - @"sound/voice/joe/firearm_haz.ogg" = 4.486, - @"sound/voice/joe/fire_drill.ogg" = 6.461, - @"sound/voice/joe/fire_haz.ogg" = 2.561, - @"sound/voice/joe/follow_me.ogg" = 1.166, - @"sound/voice/joe/follow_me_please.ogg" = 1.238, - @"sound/voice/joe/follow_me_please_haz.ogg" = 1.295, - @"sound/voice/joe/further_assistance.ogg" = 2.423, - @"sound/voice/joe/glad_we_resolved.ogg" = 1.985, - @"sound/voice/joe/good_day.ogg" = 0.897, - @"sound/voice/joe/good_day_haz.ogg" = 0.968, - @"sound/voice/joe/had_the_pleasure.ogg" = 2.142, - @"sound/voice/joe/have_a_problem.ogg" = 2.182, - @"sound/voice/joe/health_risks.ogg" = 2.602, - @"sound/voice/joe/health_risks_haz.ogg" = 2.602, - @"sound/voice/joe/hello.ogg" = 0.897, - @"sound/voice/joe/hold_still.ogg" = 1.041, - @"sound/voice/joe/how_are_you.ogg" = 0.78, - @"sound/voice/joe/how_can_i_help.ogg" = 1.301, - @"sound/voice/joe/how_can_i_help_haz.ogg" = 1.446, - @"sound/voice/joe/how_inconsiderate.ogg" = 2.47, - @"sound/voice/joe/hurt_yourself.ogg" = 1.801, - @"sound/voice/joe/hysterical.ogg" = 1.686, - @"sound/voice/joe/hysterical_haz.ogg" = 1.734, - @"sound/voice/joe/inexpensive.ogg" = 7.673, - @"sound/voice/joe/interloper.ogg" = 3.876, - @"sound/voice/joe/investigate_weapon.ogg" = 2.452, - @"sound/voice/joe/investigating_disturbance_haz.ogg" = 2.004, - @"sound/voice/joe/irresponsible.ogg" = 1.391, - @"sound/voice/joe/irresponsible_haz.ogg" = 1.601, - @"sound/voice/joe/is_anybody_there.ogg" = 1.745, - @"sound/voice/joe/join_us.ogg" = 2.557, - @"sound/voice/joe/let_me_help.ogg" = 1.241, - @"sound/voice/joe/little_details.ogg" = 3.365, - @"sound/voice/joe/lost.ogg" = 1.076, - @"sound/voice/joe/misbehaving.ogg" = 1.839, - @"sound/voice/joe/misbehaving_haz.ogg" = 2.023, - @"sound/voice/joe/more_pressing_matters.ogg" = 1.929, - @"sound/voice/joe/more_pressing_matters_haz.ogg" = 2.028, - @"sound/voice/joe/most_concerning.ogg" = 2.42, - @"sound/voice/joe/not_allowed_there.ogg" = 1.346, - @"sound/voice/joe/not_allowed_there_haz.ogg" = 1.647, - @"sound/voice/joe/not_be_tolerated.ogg" = 3.038, - @"sound/voice/joe/not_liking.ogg" = 4.532, - @"sound/voice/joe/not_what_i_think.ogg" = 2.288, - @"sound/voice/joe/not_what_i_think_haz.ogg" = 2.457, - @"sound/voice/joe/no_need.ogg" = 1.417, - @"sound/voice/joe/other_concerns.ogg" = 1.794, - @"sound/voice/joe/other_concerns_haz.ogg" = 1.92, - @"sound/voice/joe/patience.ogg" = 2.109, - @"sound/voice/joe/patience_haz.ogg" = 2.239, - @"sound/voice/joe/pity.ogg" = 2.07, - @"sound/voice/joe/presence_logged.ogg" = 1.839, - @"sound/voice/joe/presence_logged_haz.ogg" = 1.86, - @"sound/voice/joe/protected_area_compromised.ogg" = 2.017, - @"sound/voice/joe/really.ogg" = 0.58, - @"sound/voice/joe/really_shouldnt_be_here.ogg" = 1.508, - @"sound/voice/joe/really_shouldnt_be_here_haz.ogg" = 1.803, - @"sound/voice/joe/report.ogg" = 2.121, - @"sound/voice/joe/report_haz.ogg" = 1.915, - @"sound/voice/joe/required_by_apollo.ogg" = 2.243, - @"sound/voice/joe/returning_to_tasks.ogg" = 1.839, - @"sound/voice/joe/running_accidents.ogg" = 1.974, - @"sound/voice/joe/running_accidents_haz.ogg" = 2.073, - @"sound/voice/joe/safety.ogg" = 2.702, - @"sound/voice/joe/safety_breach.ogg" = 3.051, - @"sound/voice/joe/safety_breach_haz.ogg" = 3.33, - @"sound/voice/joe/safety_haz.ogg" = 4.234, - @"sound/voice/joe/seegson_behind.ogg" = 4.666, - @"sound/voice/joe/seegson_quality.ogg" = 4.981, - @"sound/voice/joe/seegson_standards.ogg" = 4.263, - @"sound/voice/joe/shouldnt_be_here.ogg" = 1.435, - @"sound/voice/joe/someone_hurt.ogg" = 1.35, - @"sound/voice/joe/species.ogg" = 1.718, - @"sound/voice/joe/species_haz.ogg" = 1.705, - @"sound/voice/joe/still_here.ogg" = 2.081, - @"sound/voice/joe/stop_that.ogg" = 0.777, - @"sound/voice/joe/support_ticket_removed.ogg" = 2.574, - @"sound/voice/joe/support_ticket_removed_haz.ogg" = 2.836, - @"sound/voice/joe/take_a_seat.ogg" = 3.32, - @"sound/voice/joe/talk_to_seegson.ogg" = 5.654, - @"sound/voice/joe/temperatures.ogg" = 4.218, - @"sound/voice/joe/temperatures_haz.ogg" = 4.754, - @"sound/voice/joe/that_stings.ogg" = 1.346, - @"sound/voice/joe/that_stings_haz.ogg" = 1.376, - @"sound/voice/joe/this_isnt_the_answer.ogg" = 1.601, - @"sound/voice/joe/this_is_futile.ogg" = 1.211, - @"sound/voice/joe/this_is_futile_haz.ogg" = 1.47, - @"sound/voice/joe/tomorrow_together_haz.ogg" = 2.834, - @"sound/voice/joe/trespassing.ogg" = 1.346, - @"sound/voice/joe/tut_tut.ogg" = 0.772, - @"sound/voice/joe/unprotected_flames.ogg" = 4.756, - @"sound/voice/joe/unprotected_flames_haz.ogg" = 4.702, - @"sound/voice/joe/unwarranted.ogg" = 1.134, - @"sound/voice/joe/what_do_you_need.ogg" = 1.609, - @"sound/voice/joe/what_happened_to_you.ogg" = 1.301, - @"sound/voice/joe/what_happened_to_you_haz.ogg" = 1.57, - @"sound/voice/joe/what_is_this.ogg" = 1.211, - @"sound/voice/joe/what_is_this_haz.ogg" = 1.054, - @"sound/voice/joe/with_you_shortly.ogg" = 1.66, - @"sound/voice/joe/with_you_shortly_haz.ogg" = 1.77, - @"sound/voice/upp_warcry/warcry_female_1.ogg" = 3.6, - @"sound/voice/upp_warcry/warcry_female_2.ogg" = 2.376, - @"sound/voice/upp_warcry/warcry_male_1.ogg" = 2.577, - @"sound/voice/upp_warcry/warcry_male_2.ogg" = 2.362, - @"sound/voice/warcry/female_charge.ogg" = 1.311, - @"sound/voice/warcry/female_yell1.ogg" = 2.044, - @"sound/voice/warcry/male_attack.ogg" = 1.427, - @"sound/voice/warcry/male_charge.ogg" = 2.232, - @"sound/voice/warcry/male_charge2.ogg" = 2.324, - @"sound/voice/warcry/male_go.ogg" = 2.429, - @"sound/voice/warcry/male_wryy.ogg" = 3.013, - @"sound/voice/warcry/warcry_female_1.ogg" = 3.096, - @"sound/voice/warcry/warcry_female_10.ogg" = 1.968, - @"sound/voice/warcry/warcry_female_11.ogg" = 1.632, - @"sound/voice/warcry/warcry_female_12.ogg" = 1.56, - @"sound/voice/warcry/warcry_female_13.ogg" = 1.56, - @"sound/voice/warcry/warcry_female_14.ogg" = 1.392, - @"sound/voice/warcry/warcry_female_15.ogg" = 1.56, - @"sound/voice/warcry/warcry_female_16.ogg" = 1.32, - @"sound/voice/warcry/warcry_female_17.ogg" = 2.184, - @"sound/voice/warcry/warcry_female_18.ogg" = 0.744, - @"sound/voice/warcry/warcry_female_19.ogg" = 1.608, - @"sound/voice/warcry/warcry_female_2.ogg" = 1.944, - @"sound/voice/warcry/warcry_female_20.ogg" = 1.68, - @"sound/voice/warcry/warcry_female_3.ogg" = 2.832, - @"sound/voice/warcry/warcry_female_4.ogg" = 1.464, - @"sound/voice/warcry/warcry_female_5.ogg" = 1.768, - @"sound/voice/warcry/warcry_female_6.ogg" = 2.058, - @"sound/voice/warcry/warcry_female_7.ogg" = 1.632, - @"sound/voice/warcry/warcry_female_8.ogg" = 1.248, - @"sound/voice/warcry/warcry_female_9.ogg" = 1.56, - @"sound/voice/warcry/warcry_male_1.ogg" = 2.148, - @"sound/voice/warcry/warcry_male_10.ogg" = 1.728, - @"sound/voice/warcry/warcry_male_11.ogg" = 1.942, - @"sound/voice/warcry/warcry_male_12.ogg" = 1.839, - @"sound/voice/warcry/warcry_male_13.ogg" = 1.488, - @"sound/voice/warcry/warcry_male_14.ogg" = 1.2, - @"sound/voice/warcry/warcry_male_15.ogg" = 1.656, - @"sound/voice/warcry/warcry_male_16.ogg" = 1.944, - @"sound/voice/warcry/warcry_male_17.ogg" = 1.872, - @"sound/voice/warcry/warcry_male_18.ogg" = 2.64, - @"sound/voice/warcry/warcry_male_19.ogg" = 2.52, - @"sound/voice/warcry/warcry_male_2.ogg" = 1.358, - @"sound/voice/warcry/warcry_male_20.ogg" = 1.418, - @"sound/voice/warcry/warcry_male_21.ogg" = 1.786, - @"sound/voice/warcry/warcry_male_22.ogg" = 1.264, - @"sound/voice/warcry/warcry_male_23.ogg" = 1.242, - @"sound/voice/warcry/warcry_male_24.ogg" = 1.477, - @"sound/voice/warcry/warcry_male_25.ogg" = 2.741, - @"sound/voice/warcry/warcry_male_26.ogg" = 1.306, - @"sound/voice/warcry/warcry_male_27.ogg" = 1.821, - @"sound/voice/warcry/warcry_male_28.ogg" = 1.8, - @"sound/voice/warcry/warcry_male_29.ogg" = 2.424, - @"sound/voice/warcry/warcry_male_3.ogg" = 1.541, - @"sound/voice/warcry/warcry_male_30.ogg" = 1.608, - @"sound/voice/warcry/warcry_male_31.ogg" = 2.376, - @"sound/voice/warcry/warcry_male_32.ogg" = 2.016, - @"sound/voice/warcry/warcry_male_33.ogg" = 2.64, - @"sound/voice/warcry/warcry_male_34.ogg" = 2.04, - @"sound/voice/warcry/warcry_male_35.ogg" = 2.232, - @"sound/voice/warcry/warcry_male_4.ogg" = 2.326, - @"sound/voice/warcry/warcry_male_5.ogg" = 2.121, - @"sound/voice/warcry/warcry_male_6.ogg" = 2.946, - @"sound/voice/warcry/warcry_male_7.ogg" = 2.664, - @"sound/voice/warcry/warcry_male_8.ogg" = 1.79, - @"sound/voice/warcry/warcry_male_9.ogg" = 1.95, - @"sound/voice/warcry/warcry_male_rare_1.ogg" = 3.056, - @"sound/voice/warcry/warcry_male_rare_2.ogg" = 4.545, - @"sound/voice/warcry/warcry_male_rare_3.ogg" = 1.428, - @"sound/voice/warcry/warcry_male_rare_4.ogg" = 2.07, - @"sound/voice/warcry/warcry_male_rare_5.ogg" = 2.595, - @"sound/vox/vox/!bloop.ogg" = 0.609, - @"sound/vox/vox/!buzwarn.ogg" = 0.781, - @"sound/vox/vox/!dadeda.ogg" = 0.887, - @"sound/vox/vox/!deeoo.ogg" = 0.682, - @"sound/vox/vox/!doop.ogg" = 1.145, - @"sound/vox/vox/,.ogg" = 0.248, - @"sound/vox/vox/..ogg" = 0.431, - @"sound/vox/vox/a.ogg" = 0.372, - @"sound/vox/vox/accelerating.ogg" = 1.136, - @"sound/vox/vox/accelerator.ogg" = 1.18, - @"sound/vox/vox/accepted.ogg" = 0.876, - @"sound/vox/vox/access.ogg" = 0.817, - @"sound/vox/vox/acknowledge.ogg" = 0.914, - @"sound/vox/vox/acknowledged.ogg" = 0.869, - @"sound/vox/vox/acquired.ogg" = 0.833, - @"sound/vox/vox/acquisition.ogg" = 0.873, - @"sound/vox/vox/across.ogg" = 0.785, - @"sound/vox/vox/activate.ogg" = 0.795, - @"sound/vox/vox/activated.ogg" = 0.954, - @"sound/vox/vox/activity.ogg" = 0.973, - @"sound/vox/vox/adios.ogg" = 0.946, - @"sound/vox/vox/administration.ogg" = 1.241, - @"sound/vox/vox/advanced.ogg" = 0.799, - @"sound/vox/vox/after.ogg" = 0.652, - @"sound/vox/vox/agent.ogg" = 0.634, - @"sound/vox/vox/alarm.ogg" = 0.672, - @"sound/vox/vox/alert.ogg" = 0.539, - @"sound/vox/vox/alien.ogg" = 0.68, - @"sound/vox/vox/aligned.ogg" = 0.792, - @"sound/vox/vox/all.ogg" = 0.528, - @"sound/vox/vox/alpha.ogg" = 0.621, - @"sound/vox/vox/am.ogg" = 0.418, - @"sound/vox/vox/amigo.ogg" = 0.657, - @"sound/vox/vox/ammunition.ogg" = 0.887, - @"sound/vox/vox/an.ogg" = 0.414, - @"sound/vox/vox/and.ogg" = 0.399, - @"sound/vox/vox/announcement.ogg" = 0.784, - @"sound/vox/vox/anomalous.ogg" = 0.821, - @"sound/vox/vox/antenna.ogg" = 0.717, - @"sound/vox/vox/any.ogg" = 0.384, - @"sound/vox/vox/apprehend.ogg" = 0.782, - @"sound/vox/vox/approach.ogg" = 0.807, - @"sound/vox/vox/are.ogg" = 0.312, - @"sound/vox/vox/area.ogg" = 0.556, - @"sound/vox/vox/arm.ogg" = 0.617, - @"sound/vox/vox/armed.ogg" = 0.587, - @"sound/vox/vox/armor.ogg" = 0.529, - @"sound/vox/vox/armory.ogg" = 0.708, - @"sound/vox/vox/arrest.ogg" = 0.553, - @"sound/vox/vox/ass.ogg" = 0.564, - @"sound/vox/vox/at.ogg" = 0.29, - @"sound/vox/vox/atomic.ogg" = 0.769, - @"sound/vox/vox/attention.ogg" = 0.805, - @"sound/vox/vox/authorize.ogg" = 1.081, - @"sound/vox/vox/authorized.ogg" = 1.047, - @"sound/vox/vox/automatic.ogg" = 0.868, - @"sound/vox/vox/away.ogg" = 0.512, - @"sound/vox/vox/b.ogg" = 0.514, - @"sound/vox/vox/back.ogg" = 0.541, - @"sound/vox/vox/backman.ogg" = 0.621, - @"sound/vox/vox/bad.ogg" = 0.581, - @"sound/vox/vox/bag.ogg" = 0.552, - @"sound/vox/vox/bailey.ogg" = 0.661, - @"sound/vox/vox/barracks.ogg" = 0.688, - @"sound/vox/vox/base.ogg" = 0.592, - @"sound/vox/vox/bay.ogg" = 0.546, - @"sound/vox/vox/be.ogg" = 0.348, - @"sound/vox/vox/been.ogg" = 0.407, - @"sound/vox/vox/before.ogg" = 0.684, - @"sound/vox/vox/beyond.ogg" = 0.604, - @"sound/vox/vox/biohazard.ogg" = 1.116, - @"sound/vox/vox/biological.ogg" = 1.108, - @"sound/vox/vox/birdwell.ogg" = 0.722, - @"sound/vox/vox/bizwarn.ogg" = 0.888, - @"sound/vox/vox/black.ogg" = 0.538, - @"sound/vox/vox/blast.ogg" = 0.614, - @"sound/vox/vox/blocked.ogg" = 0.588, - @"sound/vox/vox/blue.ogg" = 0.423, - @"sound/vox/vox/bottom.ogg" = 0.569, - @"sound/vox/vox/bravo.ogg" = 0.675, - @"sound/vox/vox/breach.ogg" = 0.632, - @"sound/vox/vox/breached.ogg" = 0.569, - @"sound/vox/vox/break.ogg" = 0.533, - @"sound/vox/vox/bridge.ogg" = 0.567, - @"sound/vox/vox/bust.ogg" = 0.543, - @"sound/vox/vox/but.ogg" = 0.354, - @"sound/vox/vox/button.ogg" = 0.559, - @"sound/vox/vox/bypass.ogg" = 0.909, - @"sound/vox/vox/c.ogg" = 0.529, - @"sound/vox/vox/cable.ogg" = 0.539, - @"sound/vox/vox/call.ogg" = 0.526, - @"sound/vox/vox/called.ogg" = 0.513, - @"sound/vox/vox/canal.ogg" = 0.729, - @"sound/vox/vox/cap.ogg" = 0.514, - @"sound/vox/vox/captain.ogg" = 0.729, - @"sound/vox/vox/capture.ogg" = 0.738, - @"sound/vox/vox/ceiling.ogg" = 0.611, - @"sound/vox/vox/celsius.ogg" = 0.97, - @"sound/vox/vox/center.ogg" = 0.688, - @"sound/vox/vox/centi.ogg" = 0.533, - @"sound/vox/vox/central.ogg" = 0.729, - @"sound/vox/vox/chamber.ogg" = 0.717, - @"sound/vox/vox/charlie.ogg" = 0.622, - @"sound/vox/vox/check.ogg" = 0.539, - @"sound/vox/vox/checkpoint.ogg" = 0.874, - @"sound/vox/vox/chemical.ogg" = 0.67, - @"sound/vox/vox/cleanup.ogg" = 0.746, - @"sound/vox/vox/clear.ogg" = 0.538, - @"sound/vox/vox/clearance.ogg" = 0.732, - @"sound/vox/vox/close.ogg" = 0.608, - @"sound/vox/vox/code.ogg" = 0.546, - @"sound/vox/vox/coded.ogg" = 0.568, - @"sound/vox/vox/collider.ogg" = 0.769, - @"sound/vox/vox/command.ogg" = 0.642, - @"sound/vox/vox/communication.ogg" = 1.159, - @"sound/vox/vox/complex.ogg" = 0.685, - @"sound/vox/vox/computer.ogg" = 0.757, - @"sound/vox/vox/condition.ogg" = 0.709, - @"sound/vox/vox/containment.ogg" = 0.909, - @"sound/vox/vox/contamination.ogg" = 1.123, - @"sound/vox/vox/control.ogg" = 0.883, - @"sound/vox/vox/coolant.ogg" = 0.526, - @"sound/vox/vox/coomer.ogg" = 0.589, - @"sound/vox/vox/core.ogg" = 0.73, - @"sound/vox/vox/correct.ogg" = 0.553, - @"sound/vox/vox/corridor.ogg" = 0.653, - @"sound/vox/vox/crew.ogg" = 0.541, - @"sound/vox/vox/cross.ogg" = 0.626, - @"sound/vox/vox/cryogenic.ogg" = 0.995, - @"sound/vox/vox/d.ogg" = 0.535, - @"sound/vox/vox/damage.ogg" = 0.724, - @"sound/vox/vox/damaged.ogg" = 0.671, - @"sound/vox/vox/danger.ogg" = 0.707, - @"sound/vox/vox/day.ogg" = 0.446, - @"sound/vox/vox/deactivated.ogg" = 1.097, - @"sound/vox/vox/decompression.ogg" = 1.068, - @"sound/vox/vox/decontamination.ogg" = 1.317, - @"sound/vox/vox/defense.ogg" = 0.812, - @"sound/vox/vox/degrees.ogg" = 0.724, - @"sound/vox/vox/delta.ogg" = 0.49, - @"sound/vox/vox/denied.ogg" = 0.67, - @"sound/vox/vox/deploy.ogg" = 0.752, - @"sound/vox/vox/deployed.ogg" = 0.836, - @"sound/vox/vox/destroy.ogg" = 0.736, - @"sound/vox/vox/destroyed.ogg" = 0.856, - @"sound/vox/vox/detain.ogg" = 0.684, - @"sound/vox/vox/detected.ogg" = 0.799, - @"sound/vox/vox/detonation.ogg" = 0.836, - @"sound/vox/vox/device.ogg" = 0.856, - @"sound/vox/vox/did.ogg" = 0.403, - @"sound/vox/vox/die.ogg" = 0.496, - @"sound/vox/vox/dimensional.ogg" = 0.836, - @"sound/vox/vox/dirt.ogg" = 0.403, - @"sound/vox/vox/disengaged.ogg" = 1.095, - @"sound/vox/vox/dish.ogg" = 0.625, - @"sound/vox/vox/disposal.ogg" = 0.813, - @"sound/vox/vox/distance.ogg" = 0.696, - @"sound/vox/vox/distortion.ogg" = 0.947, - @"sound/vox/vox/do.ogg" = 0.459, - @"sound/vox/vox/doctor.ogg" = 0.6, - @"sound/vox/vox/door.ogg" = 0.477, - @"sound/vox/vox/down.ogg" = 0.536, - @"sound/vox/vox/dual.ogg" = 0.458, - @"sound/vox/vox/duct.ogg" = 0.443, - @"sound/vox/vox/e.ogg" = 0.455, - @"sound/vox/vox/east.ogg" = 0.509, - @"sound/vox/vox/echo.ogg" = 0.522, - @"sound/vox/vox/ed.ogg" = 0.362, - @"sound/vox/vox/effect.ogg" = 0.572, - @"sound/vox/vox/egress.ogg" = 0.709, - @"sound/vox/vox/eight.ogg" = 0.481, - @"sound/vox/vox/eighteen.ogg" = 0.645, - @"sound/vox/vox/eighty.ogg" = 0.507, - @"sound/vox/vox/electric.ogg" = 0.691, - @"sound/vox/vox/electromagnetic.ogg" = 1.43, - @"sound/vox/vox/elevator.ogg" = 0.746, - @"sound/vox/vox/eleven.ogg" = 0.643, - @"sound/vox/vox/eliminate.ogg" = 0.812, - @"sound/vox/vox/emergency.ogg" = 0.943, - @"sound/vox/vox/energy.ogg" = 0.643, - @"sound/vox/vox/engage.ogg" = 0.848, - @"sound/vox/vox/engaged.ogg" = 0.826, - @"sound/vox/vox/engine.ogg" = 0.57, - @"sound/vox/vox/enter.ogg" = 0.462, - @"sound/vox/vox/entry.ogg" = 0.536, - @"sound/vox/vox/environment.ogg" = 0.959, - @"sound/vox/vox/error.ogg" = 0.469, - @"sound/vox/vox/escape.ogg" = 0.708, - @"sound/vox/vox/evacuate.ogg" = 0.937, - @"sound/vox/vox/exchange.ogg" = 0.945, - @"sound/vox/vox/exit.ogg" = 0.613, - @"sound/vox/vox/expect.ogg" = 0.685, - @"sound/vox/vox/experiment.ogg" = 0.957, - @"sound/vox/vox/experimental.ogg" = 1.106, - @"sound/vox/vox/explode.ogg" = 0.817, - @"sound/vox/vox/explosion.ogg" = 0.914, - @"sound/vox/vox/exposure.ogg" = 0.865, - @"sound/vox/vox/exterminate.ogg" = 0.982, - @"sound/vox/vox/extinguish.ogg" = 0.931, - @"sound/vox/vox/extinguisher.ogg" = 0.981, - @"sound/vox/vox/extreme.ogg" = 0.801, - @"sound/vox/vox/f.ogg" = 0.523, - @"sound/vox/vox/facility.ogg" = 0.89, - @"sound/vox/vox/fahrenheit.ogg" = 0.956, - @"sound/vox/vox/failed.ogg" = 0.637, - @"sound/vox/vox/failure.ogg" = 0.698, - @"sound/vox/vox/farthest.ogg" = 0.785, - @"sound/vox/vox/fast.ogg" = 0.636, - @"sound/vox/vox/feet.ogg" = 0.493, - @"sound/vox/vox/field.ogg" = 0.546, - @"sound/vox/vox/fifteen.ogg" = 0.806, - @"sound/vox/vox/fifth.ogg" = 0.589, - @"sound/vox/vox/fifty.ogg" = 0.625, - @"sound/vox/vox/final.ogg" = 0.634, - @"sound/vox/vox/fine.ogg" = 0.691, - @"sound/vox/vox/fire.ogg" = 0.69, - @"sound/vox/vox/first.ogg" = 0.574, - @"sound/vox/vox/five.ogg" = 0.693, - @"sound/vox/vox/flooding.ogg" = 0.812, - @"sound/vox/vox/floor.ogg" = 0.586, - @"sound/vox/vox/fool.ogg" = 0.554, - @"sound/vox/vox/for.ogg" = 0.549, - @"sound/vox/vox/forbidden.ogg" = 0.907, - @"sound/vox/vox/force.ogg" = 0.68, - @"sound/vox/vox/forms.ogg" = 0.762, - @"sound/vox/vox/found.ogg" = 0.67, - @"sound/vox/vox/four.ogg" = 0.471, - @"sound/vox/vox/fourteen.ogg" = 0.8, - @"sound/vox/vox/fourth.ogg" = 0.596, - @"sound/vox/vox/fourty.ogg" = 0.795, - @"sound/vox/vox/foxtrot.ogg" = 0.957, - @"sound/vox/vox/freeman.ogg" = 0.688, - @"sound/vox/vox/freezer.ogg" = 0.659, - @"sound/vox/vox/from.ogg" = 0.52, - @"sound/vox/vox/front.ogg" = 0.608, - @"sound/vox/vox/fuel.ogg" = 0.684, - @"sound/vox/vox/g.ogg" = 0.554, - @"sound/vox/vox/get.ogg" = 0.387, - @"sound/vox/vox/go.ogg" = 0.482, - @"sound/vox/vox/going.ogg" = 0.654, - @"sound/vox/vox/good.ogg" = 0.511, - @"sound/vox/vox/goodbye.ogg" = 0.762, - @"sound/vox/vox/gordon.ogg" = 0.572, - @"sound/vox/vox/got.ogg" = 0.533, - @"sound/vox/vox/government.ogg" = 0.803, - @"sound/vox/vox/granted.ogg" = 0.683, - @"sound/vox/vox/great.ogg" = 0.533, - @"sound/vox/vox/green.ogg" = 0.572, - @"sound/vox/vox/grenade.ogg" = 0.764, - @"sound/vox/vox/guard.ogg" = 0.546, - @"sound/vox/vox/gulf.ogg" = 0.548, - @"sound/vox/vox/gun.ogg" = 0.471, - @"sound/vox/vox/guthrie.ogg" = 0.624, - @"sound/vox/vox/handling.ogg" = 0.625, - @"sound/vox/vox/hangar.ogg" = 0.686, - @"sound/vox/vox/has.ogg" = 0.589, - @"sound/vox/vox/have.ogg" = 0.567, - @"sound/vox/vox/hazard.ogg" = 0.698, - @"sound/vox/vox/head.ogg" = 0.514, - @"sound/vox/vox/health.ogg" = 0.625, - @"sound/vox/vox/heat.ogg" = 0.543, - @"sound/vox/vox/helicopter.ogg" = 0.985, - @"sound/vox/vox/helium.ogg" = 0.78, - @"sound/vox/vox/hello.ogg" = 0.602, - @"sound/vox/vox/help.ogg" = 0.481, - @"sound/vox/vox/here.ogg" = 0.372, - @"sound/vox/vox/hide.ogg" = 0.527, - @"sound/vox/vox/high.ogg" = 0.628, - @"sound/vox/vox/highest.ogg" = 0.641, - @"sound/vox/vox/hit.ogg" = 0.433, - @"sound/vox/vox/hole.ogg" = 0.573, - @"sound/vox/vox/hostile.ogg" = 0.664, - @"sound/vox/vox/hot.ogg" = 0.458, - @"sound/vox/vox/hotel.ogg" = 0.681, - @"sound/vox/vox/hour.ogg" = 0.44, - @"sound/vox/vox/hours.ogg" = 0.626, - @"sound/vox/vox/hundred.ogg" = 0.596, - @"sound/vox/vox/hydro.ogg" = 0.724, - @"sound/vox/vox/i.ogg" = 0.206, - @"sound/vox/vox/idiot.ogg" = 0.596, - @"sound/vox/vox/illegal.ogg" = 0.635, - @"sound/vox/vox/immediate.ogg" = 0.823, - @"sound/vox/vox/immediately.ogg" = 0.929, - @"sound/vox/vox/in.ogg" = 0.452, - @"sound/vox/vox/inches.ogg" = 0.664, - @"sound/vox/vox/india.ogg" = 0.565, - @"sound/vox/vox/ing.ogg" = 0.39, - @"sound/vox/vox/inoperative.ogg" = 0.917, - @"sound/vox/vox/inside.ogg" = 0.753, - @"sound/vox/vox/inspection.ogg" = 0.821, - @"sound/vox/vox/inspector.ogg" = 0.762, - @"sound/vox/vox/interchange.ogg" = 0.941, - @"sound/vox/vox/intruder.ogg" = 0.822, - @"sound/vox/vox/invallid.ogg" = 0.72, - @"sound/vox/vox/invasion.ogg" = 0.736, - @"sound/vox/vox/is.ogg" = 0.398, - @"sound/vox/vox/it.ogg" = 0.28, - @"sound/vox/vox/johnson.ogg" = 0.789, - @"sound/vox/vox/juliet.ogg" = 0.726, - @"sound/vox/vox/key.ogg" = 0.414, - @"sound/vox/vox/kill.ogg" = 0.609, - @"sound/vox/vox/kilo.ogg" = 0.579, - @"sound/vox/vox/kit.ogg" = 0.327, - @"sound/vox/vox/lab.ogg" = 1.245, - @"sound/vox/vox/lambda.ogg" = 0.691, - @"sound/vox/vox/laser.ogg" = 0.624, - @"sound/vox/vox/last.ogg" = 0.582, - @"sound/vox/vox/launch.ogg" = 0.743, - @"sound/vox/vox/leak.ogg" = 0.472, - @"sound/vox/vox/leave.ogg" = 0.643, - @"sound/vox/vox/left.ogg" = 0.515, - @"sound/vox/vox/legal.ogg" = 0.568, - @"sound/vox/vox/level.ogg" = 0.496, - @"sound/vox/vox/lever.ogg" = 0.494, - @"sound/vox/vox/lie.ogg" = 0.443, - @"sound/vox/vox/lieutenant.ogg" = 0.803, - @"sound/vox/vox/life.ogg" = 0.771, - @"sound/vox/vox/light.ogg" = 0.48, - @"sound/vox/vox/lima.ogg" = 0.513, - @"sound/vox/vox/liquid.ogg" = 0.58, - @"sound/vox/vox/loading.ogg" = 0.836, - @"sound/vox/vox/locate.ogg" = 0.699, - @"sound/vox/vox/located.ogg" = 0.869, - @"sound/vox/vox/location.ogg" = 0.847, - @"sound/vox/vox/lock.ogg" = 0.537, - @"sound/vox/vox/locked.ogg" = 0.511, - @"sound/vox/vox/locker.ogg" = 0.568, - @"sound/vox/vox/lockout.ogg" = 0.731, - @"sound/vox/vox/lower.ogg" = 0.529, - @"sound/vox/vox/lowest.ogg" = 0.641, - @"sound/vox/vox/magnetic.ogg" = 0.703, - @"sound/vox/vox/main.ogg" = 0.655, - @"sound/vox/vox/maintenance.ogg" = 0.818, - @"sound/vox/vox/malfunction.ogg" = 1.073, - @"sound/vox/vox/man.ogg" = 0.577, - @"sound/vox/vox/mass.ogg" = 0.547, - @"sound/vox/vox/materials.ogg" = 0.944, - @"sound/vox/vox/maximum.ogg" = 0.852, - @"sound/vox/vox/may.ogg" = 0.354, - @"sound/vox/vox/medical.ogg" = 0.634, - @"sound/vox/vox/men.ogg" = 0.491, - @"sound/vox/vox/mercy.ogg" = 0.59, - @"sound/vox/vox/mesa.ogg" = 0.646, - @"sound/vox/vox/message.ogg" = 0.705, - @"sound/vox/vox/meter.ogg" = 0.532, - @"sound/vox/vox/micro.ogg" = 0.665, - @"sound/vox/vox/middle.ogg" = 0.501, - @"sound/vox/vox/mike.ogg" = 0.525, - @"sound/vox/vox/miles.ogg" = 0.717, - @"sound/vox/vox/military.ogg" = 0.834, - @"sound/vox/vox/milli.ogg" = 0.463, - @"sound/vox/vox/million.ogg" = 0.592, - @"sound/vox/vox/minefield.ogg" = 0.812, - @"sound/vox/vox/minimum.ogg" = 0.644, - @"sound/vox/vox/minutes.ogg" = 0.593, - @"sound/vox/vox/mister.ogg" = 0.627, - @"sound/vox/vox/mode.ogg" = 0.556, - @"sound/vox/vox/motor.ogg" = 0.504, - @"sound/vox/vox/motorpool.ogg" = 0.938, - @"sound/vox/vox/move.ogg" = 0.485, - @"sound/vox/vox/must.ogg" = 0.435, - @"sound/vox/vox/nearest.ogg" = 0.636, - @"sound/vox/vox/nice.ogg" = 0.679, - @"sound/vox/vox/nine.ogg" = 0.597, - @"sound/vox/vox/nineteen.ogg" = 0.782, - @"sound/vox/vox/ninety.ogg" = 0.631, - @"sound/vox/vox/no.ogg" = 0.604, - @"sound/vox/vox/nominal.ogg" = 0.757, - @"sound/vox/vox/north.ogg" = 0.468, - @"sound/vox/vox/not.ogg" = 0.485, - @"sound/vox/vox/november.ogg" = 0.818, - @"sound/vox/vox/now.ogg" = 0.403, - @"sound/vox/vox/number.ogg" = 0.599, - @"sound/vox/vox/objective.ogg" = 0.76, - @"sound/vox/vox/observation.ogg" = 1.066, - @"sound/vox/vox/of.ogg" = 0.409, - @"sound/vox/vox/officer.ogg" = 0.705, - @"sound/vox/vox/ok.ogg" = 0.629, - @"sound/vox/vox/on.ogg" = 0.633, - @"sound/vox/vox/one.ogg" = 0.473, - @"sound/vox/vox/open.ogg" = 0.562, - @"sound/vox/vox/operating.ogg" = 0.793, - @"sound/vox/vox/operations.ogg" = 1.004, - @"sound/vox/vox/operative.ogg" = 0.818, - @"sound/vox/vox/option.ogg" = 0.614, - @"sound/vox/vox/order.ogg" = 0.558, - @"sound/vox/vox/organic.ogg" = 0.911, - @"sound/vox/vox/oscar.ogg" = 0.611, - @"sound/vox/vox/out.ogg" = 0.404, - @"sound/vox/vox/outside.ogg" = 0.821, - @"sound/vox/vox/over.ogg" = 0.454, - @"sound/vox/vox/overload.ogg" = 0.826, - @"sound/vox/vox/override.ogg" = 0.914, - @"sound/vox/vox/pacify.ogg" = 0.868, - @"sound/vox/vox/pain.ogg" = 0.53, - @"sound/vox/vox/pal.ogg" = 0.518, - @"sound/vox/vox/panel.ogg" = 0.592, - @"sound/vox/vox/percent.ogg" = 0.716, - @"sound/vox/vox/perimeter.ogg" = 0.675, - @"sound/vox/vox/permitted.ogg" = 0.673, - @"sound/vox/vox/personnel.ogg" = 0.807, - @"sound/vox/vox/pipe.ogg" = 0.481, - @"sound/vox/vox/plant.ogg" = 0.511, - @"sound/vox/vox/platform.ogg" = 0.828, - @"sound/vox/vox/please.ogg" = 0.647, - @"sound/vox/vox/point.ogg" = 0.499, - @"sound/vox/vox/portal.ogg" = 0.522, - @"sound/vox/vox/power.ogg" = 0.555, - @"sound/vox/vox/presence.ogg" = 0.919, - @"sound/vox/vox/press.ogg" = 0.54, - @"sound/vox/vox/primary.ogg" = 0.765, - @"sound/vox/vox/proceed.ogg" = 0.682, - @"sound/vox/vox/processing.ogg" = 1.008, - @"sound/vox/vox/progress.ogg" = 0.791, - @"sound/vox/vox/proper.ogg" = 0.629, - @"sound/vox/vox/propulsion.ogg" = 0.889, - @"sound/vox/vox/prosecute.ogg" = 0.9, - @"sound/vox/vox/protective.ogg" = 0.812, - @"sound/vox/vox/push.ogg" = 0.525, - @"sound/vox/vox/quantum.ogg" = 0.72, - @"sound/vox/vox/quebec.ogg" = 0.669, - @"sound/vox/vox/question.ogg" = 0.717, - @"sound/vox/vox/questioning.ogg" = 0.837, - @"sound/vox/vox/quick.ogg" = 0.478, - @"sound/vox/vox/quit.ogg" = 0.454, - @"sound/vox/vox/radiation.ogg" = 0.963, - @"sound/vox/vox/radioactive.ogg" = 1.189, - @"sound/vox/vox/rads.ogg" = 0.641, - @"sound/vox/vox/rapid.ogg" = 0.666, - @"sound/vox/vox/reach.ogg" = 0.588, - @"sound/vox/vox/reached.ogg" = 0.569, - @"sound/vox/vox/reactor.ogg" = 0.702, - @"sound/vox/vox/red.ogg" = 0.457, - @"sound/vox/vox/relay.ogg" = 0.613, - @"sound/vox/vox/released.ogg" = 0.689, - @"sound/vox/vox/remaining.ogg" = 0.672, - @"sound/vox/vox/renegade.ogg" = 0.783, - @"sound/vox/vox/repair.ogg" = 0.722, - @"sound/vox/vox/report.ogg" = 0.795, - @"sound/vox/vox/reports.ogg" = 0.919, - @"sound/vox/vox/required.ogg" = 0.873, - @"sound/vox/vox/research.ogg" = 0.799, - @"sound/vox/vox/resevoir.ogg" = 0.995, - @"sound/vox/vox/resistance.ogg" = 0.846, - @"sound/vox/vox/right.ogg" = 0.531, - @"sound/vox/vox/rocket.ogg" = 0.566, - @"sound/vox/vox/roger.ogg" = 0.589, - @"sound/vox/vox/romeo.ogg" = 0.706, - @"sound/vox/vox/room.ogg" = 0.496, - @"sound/vox/vox/round.ogg" = 0.635, - @"sound/vox/vox/run.ogg" = 0.462, - @"sound/vox/vox/safe.ogg" = 0.517, - @"sound/vox/vox/safety.ogg" = 0.686, - @"sound/vox/vox/sargeant.ogg" = 0.809, - @"sound/vox/vox/satellite.ogg" = 0.828, - @"sound/vox/vox/save.ogg" = 0.623, - @"sound/vox/vox/science.ogg" = 0.749, - @"sound/vox/vox/scream.ogg" = 0.667, - @"sound/vox/vox/screen.ogg" = 0.739, - @"sound/vox/vox/search.ogg" = 0.595, - @"sound/vox/vox/second.ogg" = 0.558, - @"sound/vox/vox/secondary.ogg" = 0.972, - @"sound/vox/vox/seconds.ogg" = 0.626, - @"sound/vox/vox/sector.ogg" = 0.602, - @"sound/vox/vox/secure.ogg" = 0.778, - @"sound/vox/vox/secured.ogg" = 0.873, - @"sound/vox/vox/security.ogg" = 0.938, - @"sound/vox/vox/select.ogg" = 0.664, - @"sound/vox/vox/selected.ogg" = 0.782, - @"sound/vox/vox/service.ogg" = 0.702, - @"sound/vox/vox/seven.ogg" = 0.603, - @"sound/vox/vox/seventeen.ogg" = 1, - @"sound/vox/vox/seventy.ogg" = 0.716, - @"sound/vox/vox/severe.ogg" = 0.686, - @"sound/vox/vox/sewage.ogg" = 0.675, - @"sound/vox/vox/sewer.ogg" = 0.543, - @"sound/vox/vox/shield.ogg" = 0.547, - @"sound/vox/vox/shipment.ogg" = 0.745, - @"sound/vox/vox/shock.ogg" = 0.541, - @"sound/vox/vox/shoot.ogg" = 0.518, - @"sound/vox/vox/shower.ogg" = 0.674, - @"sound/vox/vox/shut.ogg" = 0.483, - @"sound/vox/vox/side.ogg" = 0.662, - @"sound/vox/vox/sierra.ogg" = 0.617, - @"sound/vox/vox/sight.ogg" = 0.601, - @"sound/vox/vox/silo.ogg" = 0.636, - @"sound/vox/vox/six.ogg" = 0.549, - @"sound/vox/vox/sixteen.ogg" = 0.844, - @"sound/vox/vox/sixty.ogg" = 0.652, - @"sound/vox/vox/slime.ogg" = 0.699, - @"sound/vox/vox/slow.ogg" = 0.59, - @"sound/vox/vox/soldier.ogg" = 0.722, - @"sound/vox/vox/some.ogg" = 0.471, - @"sound/vox/vox/someone.ogg" = 0.795, - @"sound/vox/vox/something.ogg" = 0.603, - @"sound/vox/vox/son.ogg" = 0.524, - @"sound/vox/vox/sorry.ogg" = 0.57, - @"sound/vox/vox/south.ogg" = 0.655, - @"sound/vox/vox/squad.ogg" = 0.66, - @"sound/vox/vox/square.ogg" = 0.637, - @"sound/vox/vox/stairway.ogg" = 0.778, - @"sound/vox/vox/status.ogg" = 0.675, - @"sound/vox/vox/sterile.ogg" = 0.556, - @"sound/vox/vox/sterilization.ogg" = 1.198, - @"sound/vox/vox/storage.ogg" = 0.877, - @"sound/vox/vox/sub.ogg" = 0.509, - @"sound/vox/vox/subsurface.ogg" = 0.964, - @"sound/vox/vox/sudden.ogg" = 0.569, - @"sound/vox/vox/suit.ogg" = 0.462, - @"sound/vox/vox/superconducting.ogg" = 1.196, - @"sound/vox/vox/supercooled.ogg" = 0.957, - @"sound/vox/vox/supply.ogg" = 0.809, - @"sound/vox/vox/surface.ogg" = 0.773, - @"sound/vox/vox/surrender.ogg" = 0.718, - @"sound/vox/vox/surround.ogg" = 0.749, - @"sound/vox/vox/surrounded.ogg" = 0.861, - @"sound/vox/vox/switch.ogg" = 0.663, - @"sound/vox/vox/system.ogg" = 0.658, - @"sound/vox/vox/systems.ogg" = 0.659, - @"sound/vox/vox/tactical.ogg" = 0.793, - @"sound/vox/vox/take.ogg" = 0.52, - @"sound/vox/vox/talk.ogg" = 0.501, - @"sound/vox/vox/tango.ogg" = 0.679, - @"sound/vox/vox/tank.ogg" = 0.666, - @"sound/vox/vox/target.ogg" = 0.588, - @"sound/vox/vox/team.ogg" = 0.529, - @"sound/vox/vox/temperature.ogg" = 0.919, - @"sound/vox/vox/temporal.ogg" = 0.753, - @"sound/vox/vox/ten.ogg" = 0.503, - @"sound/vox/vox/terminal.ogg" = 0.608, - @"sound/vox/vox/terminated.ogg" = 0.884, - @"sound/vox/vox/termination.ogg" = 0.928, - @"sound/vox/vox/test.ogg" = 0.688, - @"sound/vox/vox/that.ogg" = 0.55, - @"sound/vox/vox/the.ogg" = 0.359, - @"sound/vox/vox/then.ogg" = 0.574, - @"sound/vox/vox/there.ogg" = 0.454, - @"sound/vox/vox/third.ogg" = 0.646, - @"sound/vox/vox/thirteen.ogg" = 0.765, - @"sound/vox/vox/thirty.ogg" = 0.577, - @"sound/vox/vox/this.ogg" = 0.454, - @"sound/vox/vox/those.ogg" = 0.598, - @"sound/vox/vox/thousand.ogg" = 0.696, - @"sound/vox/vox/threat.ogg" = 0.55, - @"sound/vox/vox/three.ogg" = 0.464, - @"sound/vox/vox/through.ogg" = 0.413, - @"sound/vox/vox/time.ogg" = 0.593, - @"sound/vox/vox/to.ogg" = 0.502, - @"sound/vox/vox/top.ogg" = 0.56, - @"sound/vox/vox/topside.ogg" = 0.854, - @"sound/vox/vox/touch.ogg" = 0.481, - @"sound/vox/vox/towards.ogg" = 0.571, - @"sound/vox/vox/track.ogg" = 0.688, - @"sound/vox/vox/train.ogg" = 0.59, - @"sound/vox/vox/transportation.ogg" = 1.352, - @"sound/vox/vox/truck.ogg" = 0.566, - @"sound/vox/vox/tunnel.ogg" = 0.495, - @"sound/vox/vox/turn.ogg" = 0.496, - @"sound/vox/vox/turret.ogg" = 0.47, - @"sound/vox/vox/twelve.ogg" = 0.525, - @"sound/vox/vox/twenty.ogg" = 0.585, - @"sound/vox/vox/two.ogg" = 0.507, - @"sound/vox/vox/unauthorized.ogg" = 1.177, - @"sound/vox/vox/under.ogg" = 0.518, - @"sound/vox/vox/uniform.ogg" = 0.837, - @"sound/vox/vox/unlocked.ogg" = 0.774, - @"sound/vox/vox/until.ogg" = 0.636, - @"sound/vox/vox/up.ogg" = 0.541, - @"sound/vox/vox/upper.ogg" = 0.542, - @"sound/vox/vox/uranium.ogg" = 0.891, - @"sound/vox/vox/us.ogg" = 0.165, - @"sound/vox/vox/usa.ogg" = 0.778, - @"sound/vox/vox/use.ogg" = 0.479, - @"sound/vox/vox/used.ogg" = 0.67, - @"sound/vox/vox/user.ogg" = 0.584, - @"sound/vox/vox/vacate.ogg" = 0.741, - @"sound/vox/vox/valid.ogg" = 0.612, - @"sound/vox/vox/vapor.ogg" = 0.589, - @"sound/vox/vox/vent.ogg" = 0.435, - @"sound/vox/vox/ventillation.ogg" = 0.966, - ) - var/list/sounds_3000 = list( - @"sound/vox/vox/victor.ogg" = 0.584, - @"sound/vox/vox/violated.ogg" = 0.895, - @"sound/vox/vox/violation.ogg" = 0.937, - @"sound/vox/vox/voltage.ogg" = 0.708, - @"sound/vox/vox/vox_login.ogg" = 10.288, - @"sound/vox/vox/walk.ogg" = 0.471, - @"sound/vox/vox/wall.ogg" = 0.559, - @"sound/vox/vox/want.ogg" = 0.479, - @"sound/vox/vox/wanted.ogg" = 0.604, - @"sound/vox/vox/warm.ogg" = 0.476, - @"sound/vox/vox/warn.ogg" = 0.466, - @"sound/vox/vox/warning.ogg" = 0.564, - @"sound/vox/vox/waste.ogg" = 0.557, - @"sound/vox/vox/water.ogg" = 0.506, - @"sound/vox/vox/we.ogg" = 0.295, - @"sound/vox/vox/weapon.ogg" = 0.55, - @"sound/vox/vox/west.ogg" = 0.483, - @"sound/vox/vox/whiskey.ogg" = 0.522, - @"sound/vox/vox/white.ogg" = 0.459, - @"sound/vox/vox/wilco.ogg" = 0.627, - @"sound/vox/vox/will.ogg" = 0.32, - @"sound/vox/vox/with.ogg" = 0.339, - @"sound/vox/vox/without.ogg" = 0.604, - @"sound/vox/vox/woop.ogg" = 0.63, - @"sound/vox/vox/xeno.ogg" = 0.702, - @"sound/vox/vox/yankee.ogg" = 0.692, - @"sound/vox/vox/yards.ogg" = 0.533, - @"sound/vox/vox/year.ogg" = 0.538, - @"sound/vox/vox/yellow.ogg" = 0.526, - @"sound/vox/vox/yes.ogg" = 0.517, - @"sound/vox/vox/you.ogg" = 0.456, - @"sound/vox/vox/your.ogg" = 0.403, - @"sound/vox/vox/yourself.ogg" = 0.93, - @"sound/vox/vox/zero.ogg" = 0.648, - @"sound/vox/vox/zone.ogg" = 0.687, - @"sound/vox/vox/zulu.ogg" = 0.713, - @"sound/vox/vox_military/!bloop.ogg" = 1.703, - @"sound/vox/vox_military/!buzwarn.ogg" = 1.088, - @"sound/vox/vox_military/!dadeda.ogg" = 2.002, - @"sound/vox/vox_military/!deeoo.ogg" = 1.87, - @"sound/vox/vox_military/!doop.ogg" = 1.93, - @"sound/vox/vox_military/!error.ogg" = 0.716, - @"sound/vox/vox_military/!signon.ogg" = 1.419, - @"sound/vox/vox_military/,.ogg" = 0.248, - @"sound/vox/vox_military/..ogg" = 0.431, - @"sound/vox/vox_military/access.ogg" = 1.4, - @"sound/vox/vox_military/acknowledged.ogg" = 1.476, - @"sound/vox/vox_military/activate.ogg" = 1.6, - @"sound/vox/vox_military/activated.ogg" = 1.4, - @"sound/vox/vox_military/activity.ogg" = 1.502, - @"sound/vox/vox_military/advanced.ogg" = 1.639, - @"sound/vox/vox_military/alert.ogg" = 1.333, - @"sound/vox/vox_military/alien.ogg" = 1.447, - @"sound/vox/vox_military/all.ogg" = 1.113, - @"sound/vox/vox_military/alpha.ogg" = 1.194, - @"sound/vox/vox_military/an.ogg" = 1.135, - @"sound/vox/vox_military/and.ogg" = 1.292, - @"sound/vox/vox_military/announcement.ogg" = 1.825, - @"sound/vox/vox_military/antenna.ogg" = 1.754, - @"sound/vox/vox_military/any.ogg" = 0.956, - @"sound/vox/vox_military/approach.ogg" = 1.599, - @"sound/vox/vox_military/are.ogg" = 0.778, - @"sound/vox/vox_military/area.ogg" = 1.229, - @"sound/vox/vox_military/armed.ogg" = 1.359, - @"sound/vox/vox_military/armory.ogg" = 1.508, - @"sound/vox/vox_military/atomic.ogg" = 1.743, - @"sound/vox/vox_military/attention.ogg" = 1.746, - @"sound/vox/vox_military/authorized.ogg" = 1.696, - @"sound/vox/vox_military/automatic.ogg" = 1.789, - @"sound/vox/vox_military/away.ogg" = 1.563, - @"sound/vox/vox_military/b.ogg" = 0.773, - @"sound/vox/vox_military/back.ogg" = 0.76, - @"sound/vox/vox_military/base.ogg" = 0.795, - @"sound/vox/vox_military/biohazard.ogg" = 1.326, - @"sound/vox/vox_military/biological.ogg" = 1.461, - @"sound/vox/vox_military/black.ogg" = 0.91, - @"sound/vox/vox_military/blast.ogg" = 0.884, - @"sound/vox/vox_military/blue.ogg" = 0.8, - @"sound/vox/vox_military/bravo.ogg" = 1.144, - @"sound/vox/vox_military/breach.ogg" = 1.146, - @"sound/vox/vox_military/bypass.ogg" = 1.273, - @"sound/vox/vox_military/cable.ogg" = 1.07, - @"sound/vox/vox_military/center.ogg" = 1.153, - @"sound/vox/vox_military/central.ogg" = 1.654, - @"sound/vox/vox_military/chamber.ogg" = 1.259, - @"sound/vox/vox_military/check.ogg" = 0.955, - @"sound/vox/vox_military/checkpoint.ogg" = 1.304, - @"sound/vox/vox_military/chemical.ogg" = 1.023, - @"sound/vox/vox_military/clear.ogg" = 1.113, - @"sound/vox/vox_military/code.ogg" = 1.017, - @"sound/vox/vox_military/command.ogg" = 1.2, - @"sound/vox/vox_military/communications.ogg" = 1.658, - @"sound/vox/vox_military/complex.ogg" = 1.148, - @"sound/vox/vox_military/containment.ogg" = 1.45, - @"sound/vox/vox_military/contamination.ogg" = 1.816, - @"sound/vox/vox_military/control.ogg" = 1.376, - @"sound/vox/vox_military/coolant.ogg" = 1.206, - @"sound/vox/vox_military/core.ogg" = 1.112, - @"sound/vox/vox_military/crew.ogg" = 1.073, - @"sound/vox/vox_military/cross.ogg" = 0.98, - @"sound/vox/vox_military/d.ogg" = 0.71, - @"sound/vox/vox_military/damage.ogg" = 1.144, - @"sound/vox/vox_military/danger.ogg" = 1.08, - @"sound/vox/vox_military/day.ogg" = 0.902, - @"sound/vox/vox_military/deactivated.ogg" = 1.547, - @"sound/vox/vox_military/defense.ogg" = 1.195, - @"sound/vox/vox_military/delta.ogg" = 0.971, - @"sound/vox/vox_military/denied.ogg" = 1.296, - @"sound/vox/vox_military/destroy.ogg" = 1.175, - @"sound/vox/vox_military/detected.ogg" = 1.547, - @"sound/vox/vox_military/detonation.ogg" = 1.469, - @"sound/vox/vox_military/device.ogg" = 1.168, - @"sound/vox/vox_military/dimensional.ogg" = 1.234, - @"sound/vox/vox_military/disengaged.ogg" = 1.778, - @"sound/vox/vox_military/do.ogg" = 0.762, - @"sound/vox/vox_military/door.ogg" = 0.898, - @"sound/vox/vox_military/down.ogg" = 0.803, - @"sound/vox/vox_military/e.ogg" = 0.681, - @"sound/vox/vox_military/echo.ogg" = 0.88, - @"sound/vox/vox_military/eight.ogg" = 0.951, - @"sound/vox/vox_military/eighteen.ogg" = 1.302, - @"sound/vox/vox_military/eighty.ogg" = 1.08, - @"sound/vox/vox_military/electric.ogg" = 1.175, - @"sound/vox/vox_military/eleven.ogg" = 0.952, - @"sound/vox/vox_military/eliminate.ogg" = 1.055, - @"sound/vox/vox_military/emergency.ogg" = 1.327, - @"sound/vox/vox_military/energy.ogg" = 1.198, - @"sound/vox/vox_military/engage.ogg" = 1.185, - @"sound/vox/vox_military/engaged.ogg" = 1.231, - @"sound/vox/vox_military/enter.ogg" = 1.069, - @"sound/vox/vox_military/entry.ogg" = 1.132, - @"sound/vox/vox_military/escape.ogg" = 1.255, - @"sound/vox/vox_military/evacuate.ogg" = 1.069, - @"sound/vox/vox_military/exchange.ogg" = 1.177, - @"sound/vox/vox_military/experimental.ogg" = 1.536, - @"sound/vox/vox_military/extreme.ogg" = 1.435, - @"sound/vox/vox_military/facility.ogg" = 1.678, - @"sound/vox/vox_military/failed.ogg" = 1.438, - @"sound/vox/vox_military/failure.ogg" = 1.443, - @"sound/vox/vox_military/field.ogg" = 1.414, - @"sound/vox/vox_military/fifteen.ogg" = 1.253, - @"sound/vox/vox_military/fifty.ogg" = 1.271, - @"sound/vox/vox_military/fire.ogg" = 1.845, - @"sound/vox/vox_military/five.ogg" = 1.1, - @"sound/vox/vox_military/forbidden.ogg" = 1.375, - @"sound/vox/vox_military/force.ogg" = 1.441, - @"sound/vox/vox_military/forms.ogg" = 1.507, - @"sound/vox/vox_military/forty.ogg" = 1.82, - @"sound/vox/vox_military/four.ogg" = 1.1, - @"sound/vox/vox_military/fourteen.ogg" = 1.677, - @"sound/vox/vox_military/freeman.ogg" = 1.546, - @"sound/vox/vox_military/from.ogg" = 1.41, - @"sound/vox/vox_military/fuel.ogg" = 1.562, - @"sound/vox/vox_military/get.ogg" = 1.047, - @"sound/vox/vox_military/go.ogg" = 1.04, - @"sound/vox/vox_military/gordon.ogg" = 1.082, - @"sound/vox/vox_military/granted.ogg" = 1.028, - @"sound/vox/vox_military/green.ogg" = 1.576, - @"sound/vox/vox_military/handling.ogg" = 1.176, - @"sound/vox/vox_military/hanger.ogg" = 1.196, - @"sound/vox/vox_military/have.ogg" = 0.969, - @"sound/vox/vox_military/hazard.ogg" = 0.999, - @"sound/vox/vox_military/health.ogg" = 0.948, - @"sound/vox/vox_military/heat.ogg" = 0.869, - @"sound/vox/vox_military/helecopter.ogg" = 1.419, - @"sound/vox/vox_military/helium.ogg" = 1.373, - @"sound/vox/vox_military/high.ogg" = 1.203, - @"sound/vox/vox_military/hostal.ogg" = 1.395, - @"sound/vox/vox_military/hostile.ogg" = 1.395, - @"sound/vox/vox_military/hotel.ogg" = 1.412, - @"sound/vox/vox_military/hundred.ogg" = 1.136, - @"sound/vox/vox_military/hydro.ogg" = 1.048, - @"sound/vox/vox_military/illegal.ogg" = 1.007, - @"sound/vox/vox_military/immediate.ogg" = 1.121, - @"sound/vox/vox_military/immediately.ogg" = 1.389, - @"sound/vox/vox_military/in.ogg" = 1.072, - @"sound/vox/vox_military/india.ogg" = 0.962, - @"sound/vox/vox_military/inoperative.ogg" = 1.496, - @"sound/vox/vox_military/inside.ogg" = 1.009, - @"sound/vox/vox_military/inspection.ogg" = 1.243, - @"sound/vox/vox_military/is.ogg" = 0.904, - @"sound/vox/vox_military/kilo.ogg" = 1.434, - @"sound/vox/vox_military/kilo02.ogg" = 1.109, - @"sound/vox/vox_military/lambda.ogg" = 1.149, - @"sound/vox/vox_military/laser.ogg" = 1.077, - @"sound/vox/vox_military/launch.ogg" = 1.26, - @"sound/vox/vox_military/leak.ogg" = 0.977, - @"sound/vox/vox_military/level.ogg" = 0.953, - @"sound/vox/vox_military/lima.ogg" = 1.232, - @"sound/vox/vox_military/lima_alt.ogg" = 1.219, - @"sound/vox/vox_military/liquid.ogg" = 1.093, - @"sound/vox/vox_military/lock.ogg" = 0.936, - @"sound/vox/vox_military/locked.ogg" = 1.038, - @"sound/vox/vox_military/lockout.ogg" = 1.231, - @"sound/vox/vox_military/lower.ogg" = 1.099, - @"sound/vox/vox_military/main.ogg" = 1.51, - @"sound/vox/vox_military/maintenance.ogg" = 1.918, - @"sound/vox/vox_military/malfunction.ogg" = 1.833, - @"sound/vox/vox_military/materials.ogg" = 2.031, - @"sound/vox/vox_military/may.ogg" = 1.347, - @"sound/vox/vox_military/medical.ogg" = 1.39, - @"sound/vox/vox_military/men.ogg" = 1.156, - @"sound/vox/vox_military/mesa.ogg" = 1.639, - @"sound/vox/vox_military/message.ogg" = 1.171, - @"sound/vox/vox_military/mic_mike.ogg" = 1.067, - @"sound/vox/vox_military/mike.ogg" = 1.067, - @"sound/vox/vox_military/military.ogg" = 1.584, - @"sound/vox/vox_military/motorpool.ogg" = 1.477, - @"sound/vox/vox_military/move.ogg" = 1.175, - @"sound/vox/vox_military/must.ogg" = 1.478, - @"sound/vox/vox_military/nearest.ogg" = 1.389, - @"sound/vox/vox_military/nine.ogg" = 1.099, - @"sound/vox/vox_military/nineteen.ogg" = 1.509, - @"sound/vox/vox_military/ninety.ogg" = 1.237, - @"sound/vox/vox_military/no.ogg" = 1.091, - @"sound/vox/vox_military/noe.ogg" = 1.026, - @"sound/vox/vox_military/not.ogg" = 1.218, - @"sound/vox/vox_military/now.ogg" = 1.162, - @"sound/vox/vox_military/objective.ogg" = 1.624, - @"sound/vox/vox_military/of.ogg" = 1.118, - @"sound/vox/vox_military/on.ogg" = 0.949, - @"sound/vox/vox_military/one.ogg" = 1, - @"sound/vox/vox_military/open.ogg" = 0.937, - @"sound/vox/vox_military/operating.ogg" = 1.365, - @"sound/vox/vox_military/option.ogg" = 1.269, - @"sound/vox/vox_military/override.ogg" = 1.374, - @"sound/vox/vox_military/percent.ogg" = 1.339, - @"sound/vox/vox_military/perimeter.ogg" = 1.462, - @"sound/vox/vox_military/permitted.ogg" = 1.307, - @"sound/vox/vox_military/perpulsion.ogg" = 1.416, - @"sound/vox/vox_military/personnel.ogg" = 1.471, - @"sound/vox/vox_military/plant.ogg" = 1.187, - @"sound/vox/vox_military/please.ogg" = 1.339, - @"sound/vox/vox_military/portal.ogg" = 1.004, - @"sound/vox/vox_military/power.ogg" = 1.173, - @"sound/vox/vox_military/primary.ogg" = 1.329, - @"sound/vox/vox_military/prosecute.ogg" = 1.418, - @"sound/vox/vox_military/questioning.ogg" = 1.536, - @"sound/vox/vox_military/radiation.ogg" = 1.665, - @"sound/vox/vox_military/radioactive.ogg" = 1.58, - @"sound/vox/vox_military/reach.ogg" = 1.037, - @"sound/vox/vox_military/reactor.ogg" = 1.152, - @"sound/vox/vox_military/relay.ogg" = 1.201, - @"sound/vox/vox_military/released.ogg" = 1.305, - @"sound/vox/vox_military/remaining.ogg" = 1.236, - @"sound/vox/vox_military/renegade.ogg" = 1.452, - @"sound/vox/vox_military/repair.ogg" = 1.202, - @"sound/vox/vox_military/report.ogg" = 1.352, - @"sound/vox/vox_military/reports.ogg" = 1.207, - @"sound/vox/vox_military/required.ogg" = 1.4, - @"sound/vox/vox_military/research.ogg" = 1.439, - @"sound/vox/vox_military/resistance.ogg" = 1.567, - @"sound/vox/vox_military/rocket.ogg" = 1.365, - @"sound/vox/vox_military/safety.ogg" = 1.546, - @"sound/vox/vox_military/satellite.ogg" = 1.401, - @"sound/vox/vox_military/science.ogg" = 1.387, - @"sound/vox/vox_military/search.ogg" = 1.209, - @"sound/vox/vox_military/second.ogg" = 1.333, - @"sound/vox/vox_military/secondary.ogg" = 1.557, - @"sound/vox/vox_military/seconds.ogg" = 1.508, - @"sound/vox/vox_military/sector.ogg" = 1.162, - @"sound/vox/vox_military/secure.ogg" = 1.4, - @"sound/vox/vox_military/secured.ogg" = 1.438, - @"sound/vox/vox_military/security.ogg" = 1.4, - @"sound/vox/vox_military/service.ogg" = 1.464, - @"sound/vox/vox_military/seven.ogg" = 1.176, - @"sound/vox/vox_military/seventeen.ogg" = 1.312, - @"sound/vox/vox_military/seventy.ogg" = 1.191, - @"sound/vox/vox_military/severe.ogg" = 1.343, - @"sound/vox/vox_military/sheild.ogg" = 1.228, - @"sound/vox/vox_military/shoot.ogg" = 1.1, - @"sound/vox/vox_military/sierra.ogg" = 1.317, - @"sound/vox/vox_military/sight.ogg" = 0.976, - @"sound/vox/vox_military/silo.ogg" = 1.269, - @"sound/vox/vox_military/six.ogg" = 1.1, - @"sound/vox/vox_military/sixteen.ogg" = 1.507, - @"sound/vox/vox_military/sixty.ogg" = 1.061, - @"sound/vox/vox_military/sorry.ogg" = 1.061, - @"sound/vox/vox_military/sqaud.ogg" = 1.423, - @"sound/vox/vox_military/status.ogg" = 1.284, - @"sound/vox/vox_military/sterilization.ogg" = 1.794, - @"sound/vox/vox_military/storage.ogg" = 1.308, - @"sound/vox/vox_military/supercooled.ogg" = 1.677, - @"sound/vox/vox_military/surrender.ogg" = 1.447, - @"sound/vox/vox_military/system.ogg" = 1.378, - @"sound/vox/vox_military/systems.ogg" = 1.734, - @"sound/vox/vox_military/target.ogg" = 1.174, - @"sound/vox/vox_military/team.ogg" = 1.082, - @"sound/vox/vox_military/ten.ogg" = 1.086, - @"sound/vox/vox_military/terminated.ogg" = 1.41, - @"sound/vox/vox_military/test.ogg" = 1.087, - @"sound/vox/vox_military/the.ogg" = 0.967, - @"sound/vox/vox_military/thirtteen.ogg" = 1.238, - @"sound/vox/vox_military/thirty.ogg" = 1.111, - @"sound/vox/vox_military/this.ogg" = 1.026, - @"sound/vox/vox_military/three.ogg" = 1, - @"sound/vox/vox_military/time.ogg" = 0.997, - @"sound/vox/vox_military/to.ogg" = 0.867, - @"sound/vox/vox_military/topside.ogg" = 1.336, - @"sound/vox/vox_military/track.ogg" = 1.124, - @"sound/vox/vox_military/train.ogg" = 1.143, - @"sound/vox/vox_military/turret.ogg" = 1.025, - @"sound/vox/vox_military/twelve.ogg" = 1.155, - @"sound/vox/vox_military/twenty.ogg" = 1.025, - @"sound/vox/vox_military/two.ogg" = 0.96, - @"sound/vox/vox_military/unauthorized.ogg" = 1.663, - @"sound/vox/vox_military/under.ogg" = 1.258, - @"sound/vox/vox_military/units.ogg" = 1.27, - @"sound/vox/vox_military/until.ogg" = 1.342, - @"sound/vox/vox_military/up.ogg" = 0.85, - @"sound/vox/vox_military/uranium.ogg" = 1.266, - @"sound/vox/vox_military/use.ogg" = 1.076, - @"sound/vox/vox_military/violation.ogg" = 1.593, - @"sound/vox/vox_military/voltage.ogg" = 1.316, - @"sound/vox/vox_military/wanted.ogg" = 1.271, - @"sound/vox/vox_military/warning.ogg" = 1.01, - @"sound/vox/vox_military/we.ogg" = 0.922, - @"sound/vox/vox_military/weapon.ogg" = 1.256, - @"sound/vox/vox_military/will.ogg" = 1.047, - @"sound/vox/vox_military/with.ogg" = 1.072, - @"sound/vox/vox_military/yellow.ogg" = 1.31, - @"sound/vox/vox_military/you.ogg" = 1.054, - @"sound/vox/vox_military/your.ogg" = 1.164, - @"sound/vox/vox_military/zero.ogg" = 1.033, - @"sound/vox/vox_military/zone.ogg" = 1.189, - @"sound/weapons/handling/flamer_ignition.ogg" = 1.51, - @"sound/weapons/handling/flamer_reload.ogg" = 1.678, - @"sound/weapons/handling/flamer_unload.ogg" = 1.829, - @"sound/weapons/handling/gun_ar10_cocked.ogg" = 0.832, - @"sound/weapons/handling/gun_ar10_unload.ogg" = 0.439, - @"sound/weapons/handling/gun_boltaction_close.ogg" = 0.553, - @"sound/weapons/handling/gun_boltaction_open.ogg" = 0.507, - @"sound/weapons/handling/gun_boomslang_hitsound.ogg" = 0.471, - @"sound/weapons/handling/gun_boomslang_lever.ogg" = 1.061, - @"sound/weapons/handling/gun_burst_toggle.ogg" = 0.235, - @"sound/weapons/handling/gun_burst_toggle.wav" = 0.235, - @"sound/weapons/handling/gun_cmb_click1.ogg" = 0.516, - @"sound/weapons/handling/gun_cmb_click2.ogg" = 0.294, - @"sound/weapons/handling/gun_jam_click.ogg" = 0.381, - @"sound/weapons/handling/gun_jam_initial_click.ogg" = 0.167, - @"sound/weapons/handling/gun_jam_rack_1.ogg" = 0.757, - @"sound/weapons/handling/gun_jam_rack_2.ogg" = 0.668, - @"sound/weapons/handling/gun_jam_rack_3.ogg" = 0.925, - @"sound/weapons/handling/gun_jam_rack_success.ogg" = 3.03, - @"sound/weapons/handling/gun_lever_action_hitsound.ogg" = 0.471, - @"sound/weapons/handling/gun_lever_action_lever.ogg" = 0.628, - @"sound/weapons/handling/gun_lever_action_reload.ogg" = 0.49, - @"sound/weapons/handling/gun_lever_action_superload.ogg" = 0.78, - @"sound/weapons/handling/gun_m16_reload.ogg" = 2.066, - @"sound/weapons/handling/gun_m16_unload.ogg" = 0.798, - @"sound/weapons/handling/gun_mar40_reload.ogg" = 1.887, - @"sound/weapons/handling/gun_mar40_unload.ogg" = 1.738, - @"sound/weapons/handling/gun_mou_close.ogg" = 0.528, - @"sound/weapons/handling/gun_mou_open.ogg" = 0.416, - @"sound/weapons/handling/gun_mou_reload.ogg" = 0.277, - @"sound/weapons/handling/gun_sg_reload.ogg" = 1.014, - @"sound/weapons/handling/gun_sg_unload.ogg" = 1.11, - @"sound/weapons/handling/gun_su6_reload.ogg" = 1.161, - @"sound/weapons/handling/gun_su6_unload.ogg" = 1.145, - @"sound/weapons/handling/gun_u7_activate.ogg" = 0.734, - @"sound/weapons/handling/gun_underbarrel_activate.ogg" = 0.69, - @"sound/weapons/handling/gun_underbarrel_deactivate.ogg" = 0.734, - @"sound/weapons/handling/gun_underbarrel_flamer_activate.ogg" = 1.884, - @"sound/weapons/handling/gun_vulture_bolt_close.ogg" = 2.259, - @"sound/weapons/handling/gun_vulture_bolt_eject.ogg" = 0.967, - @"sound/weapons/handling/hpr_reload.ogg" = 1.588, - @"sound/weapons/handling/hpr_unload.ogg" = 1.065, - @"sound/weapons/handling/l42_reload.ogg" = 1.084, - @"sound/weapons/handling/l42_unload.ogg" = 0.473, - @"sound/weapons/handling/m40sd_reload.ogg" = 0.81, - @"sound/weapons/handling/m40sd_unload.ogg" = 0.669, - @"sound/weapons/handling/m41_reload.ogg" = 0.516, - @"sound/weapons/handling/m41_unload.ogg" = 0.758, - @"sound/weapons/handling/m79_break_open.ogg" = 0.323, - @"sound/weapons/handling/m79_reload.ogg" = 0.523, - @"sound/weapons/handling/m79_shoot.ogg" = 2.17, - @"sound/weapons/handling/m79_unload.ogg" = 0.366, - @"sound/weapons/handling/mag_refill_1.ogg" = 1.032, - @"sound/weapons/handling/mag_refill_2.ogg" = 1.152, - @"sound/weapons/handling/mag_refill_3.ogg" = 1.104, - @"sound/weapons/handling/nsg23_cocked.ogg" = 0.831, - @"sound/weapons/handling/nsg23_reload.ogg" = 0.548, - @"sound/weapons/handling/nsg23_unload.ogg" = 0.278, - @"sound/weapons/handling/pkd_close_chamber.ogg" = 0.24, - @"sound/weapons/handling/pkd_cock.wav" = 0.235, - @"sound/weapons/handling/pkd_open_chamber.ogg" = 0.447, - @"sound/weapons/handling/pkd_speed_load.ogg" = 0.902, - @"sound/weapons/handling/safety_toggle.ogg" = 0.446, - @"sound/weapons/handling/smg_reload.ogg" = 0.91, - @"sound/weapons/handling/smg_unload.ogg" = 0.334, - @"sound/weapons/handling/ugl_close.ogg" = 0.184, - @"sound/weapons/handling/ugl_open.ogg" = 0.209, - @"sound/weapons/vehicles/autocannon_fire.ogg" = 0.972, - @"sound/weapons/vehicles/autocannon_fire_old.ogg" = 0.698, - @"sound/weapons/vehicles/cannon_distant1.ogg" = 4.833, - @"sound/weapons/vehicles/cannon_distant2.ogg" = 5.046, - @"sound/weapons/vehicles/cannon_fire1.ogg" = 7.726, - @"sound/weapons/vehicles/cannon_fire2.ogg" = 7.042, - @"sound/weapons/vehicles/dual_autocannon_fire.ogg" = 1.894, - @"sound/weapons/vehicles/flamethrower.ogg" = 3.561, - @"sound/weapons/vehicles/minigun_loop.ogg" = 2.244, - @"sound/weapons/vehicles/minigun_select.ogg" = 0.141, - @"sound/weapons/vehicles/minigun_start.ogg" = 1.147, - @"sound/weapons/vehicles/minigun_stop.ogg" = 1.444, - @"sound/weapons/vehicles/smokelauncher_fire.ogg" = 1.909, - @"sound/soundscape/lv522/indoors/indoor_wind.ogg" = 15.273, - @"sound/soundscape/lv522/indoors/indoor_wind2.ogg" = 4.901, - @"sound/soundscape/lv522/outdoors/wind1.ogg" = 17.645, - @"sound/soundscape/lv522/outdoors/wind2.ogg" = 18.633, - @"sound/soundscape/lv522/outdoors/wind3.ogg" = 15.108, - ) - return sounds_1000 + sounds_2000 + sounds_3000 +/// Assoc list of of all sounds in the codebase, in the form "sound/path.ext" = length in seconds +GLOBAL_LIST_INIT(sound_lengths, json_decode(file2text(SOUND_LENGTHS_FILEPATH))) + +/* +//the above file was generated by this proc +/client/proc/generate_sound_lengths() + set category = "Debug.Sound" + set name = "Generate Sound Lengths" + + var/static/list/sound_list = get_all_sounds() + to_chat(src, text = "[length(sound_list)] sound files found.") + + var/list/playing_sounds = list() + for(var/i in 0 to length(sound_list) step 1000) + sound_to(src, sound()) //clear all playing sounds + to_chat(src, text = "Querying sound files [i + 1] to [min(length(sound_list), i + 1000)]...") + + for(var/j in 1 to min(length(sound_list) - i, 1000)) + var/sound_file = sound_list[j + i] + var/sound/sound = sound(sound_file, FALSE, FALSE, j, 0) + sound.status |= SOUND_STREAM|SOUND_PAUSED|SOUND_MUTE + sound_to(src, sound) + + playing_sounds += src.SoundQuery() + to_chat(src, text = "Queried [length(playing_sounds)] out of [length(sound_list)] sounds.") + sound_to(src, sound()) + + var/list/sound_lengths = list() + for(var/sound/playing_sound as anything in playing_sounds) + if(!ISINRANGE(playing_sound.channel, 1, 1000)) + continue + sound_lengths[playing_sound.file] = playing_sound.len + to_chat(src, text = "Parsed [length(sound_lengths)] out of [length(sound_list)] unique sounds.") + + var/saved_lengths = file(SOUND_LENGTHS_FILEPATH) + fdel(saved_lengths) + to_file(saved_lengths, "// [length(sound_lengths)] elements generated by [__PROC__] on [time2text(world.realtime)]") + to_file(saved_lengths, json_encode(sound_lengths, JSON_PRETTY_PRINT)) + to_chat(src, text = "Wrote [length(sound_lengths)] elements to file: [saved_lengths]") + +#undef SOUND_LENGTHS_FILEPATH + +/proc/get_all_sounds() + var/static/list/extensions = list("mid", "midi", "mod", "it", "s3m", "xm", "oxm", "wav", "ogg", "mp3", "raw", "wma", "aiff") + var/static/regex/ext_rgx = new("\\.(?:[jointext(extensions, "|")])$", "i") + + var/list/dirs = list("sound/") + var/list/file_paths = list() + for(var/i = 1, i <= length(dirs), i++) + var/path = dirs[i] + + var/list/filenames = flist(path) + for(var/filename as anything in filenames) + if(findtext(filename, "/", -1)) //found directory, add to search + dirs += "[path][filename]" + continue + if(!findtext(filename, ext_rgx)) //extension check + continue + file_paths += "[path][filename]" + + return file_paths +*/ diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 2968e401d4..62828576a4 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -210,6 +210,7 @@ var/list/admin_verbs_debug = list( /client/proc/sound_debug_query, /client/proc/toggle_spatial_sound_tracking, /client/proc/set_spatial_sound_tracking_min_length, + // /client/proc/generate_sound_lengths, /client/proc/debug_game_history, /client/proc/enter_tree, /client/proc/set_tree_points, diff --git a/sound/sound_lengths.txt b/sound/sound_lengths.txt new file mode 100644 index 0000000000..fa4d0e5763 --- /dev/null +++ b/sound/sound_lengths.txt @@ -0,0 +1,2416 @@ +// 2413 elements generated by /client/proc/get_sound_lengths on Sat Jul 20 17:38:20 2024 +{ + "sound/AI/ares_online.ogg": 5.768, + "sound/AI/bioscan.ogg": 2.282, + "sound/AI/code_blue_elevated.ogg": 7.318, + "sound/AI/code_blue_lowered.ogg": 7.08, + "sound/AI/code_green.ogg": 5.176, + "sound/AI/code_red_elevated.ogg": 6.775, + "sound/AI/code_red_lowered.ogg": 6.891, + "sound/AI/commandreport.ogg": 3.667, + "sound/AI/distressbeacon.ogg": 2.86, + "sound/AI/distressreceived.ogg": 2.816, + "sound/AI/dropship_emergency.ogg": 5.954, + "sound/AI/evacuate.ogg": 9.129, + "sound/AI/evacuate_cancelled.ogg": 2.407, + "sound/AI/evacuation_complete.ogg": 2.433, + "sound/AI/evacuation_confirmed.ogg": 5.208, + "sound/AI/hijack.ogg": 8.97, + "sound/AI/intercept.ogg": 6.912, + "sound/AI/ionstorm.ogg": 8.546, + "sound/AI/poweroff.ogg": 9.588, + "sound/AI/poweron.ogg": 4.835, + "sound/AI/radiation.ogg": 11.675, + "sound/AI/selfdestruct.ogg": 21.929, + "sound/AI/selfdestruct_10m.ogg": 599.026, + "sound/AI/selfdestruct_5m.ogg": 298.604, + "sound/AI/selfdestruct_deactivated.ogg": 4.07, + "sound/AI/selfdestruct_short.ogg": 6.653, + "sound/AI/shuttlecalled.ogg": 3.789, + "sound/AI/shuttlerecalled.ogg": 4.064, + "sound/AI/unidentified_lifesigns.ogg": 10.624, + "sound/ambience/alarm4.ogg": 1.728, + "sound/ambience/almayerambience.ogg": 30.444, + "sound/ambience/ambiatm1.ogg": 14.329, + "sound/ambience/ambicha1.ogg": 22.688, + "sound/ambience/ambicha2.ogg": 10.753, + "sound/ambience/ambicha3.ogg": 11.868, + "sound/ambience/ambicha4.ogg": 17.859, + "sound/ambience/ambienceLV624.ogg": 31.766, + "sound/ambience/ambienceNV.ogg": 31.766, + "sound/ambience/ambienceriver.ogg": 23.852, + "sound/ambience/ambigen1.ogg": 14.886, + "sound/ambience/ambigen10.ogg": 20.041, + "sound/ambience/ambigen11.ogg": 42.193, + "sound/ambience/ambigen12.ogg": 43.261, + "sound/ambience/ambigen13.ogg": 15.937, + "sound/ambience/ambigen14.ogg": 7.195, + "sound/ambience/ambigen2.ogg": 14.886, + "sound/ambience/ambigen3.ogg": 14.933, + "sound/ambience/ambigen4.ogg": 14.794, + "sound/ambience/ambigen5.ogg": 15.397, + "sound/ambience/ambigen6.ogg": 33.277, + "sound/ambience/ambigen7.ogg": 14.561, + "sound/ambience/ambigen8.ogg": 10.289, + "sound/ambience/ambigen9.ogg": 9.406, + "sound/ambience/ambimalf.ogg": 17.832, + "sound/ambience/ambimine.ogg": 76.824, + "sound/ambience/ambimo1.ogg": 60.189, + "sound/ambience/ambimo2.ogg": 22.781, + "sound/ambience/ambisin1.ogg": 15.329, + "sound/ambience/ambisin2.ogg": 12.129, + "sound/ambience/ambisin3.ogg": 12.129, + "sound/ambience/ambisin4.ogg": 15.35, + "sound/ambience/ambispace.ogg": 175.555, + "sound/ambience/desert.ogg": 34.551, + "sound/ambience/dropship_ambience_loop.ogg": 3.599, + "sound/ambience/generator_power_off.ogg": 18.51, + "sound/ambience/jungle_amb1.ogg": 26.676, + "sound/ambience/rainforest.ogg": 33.178, + "sound/ambience/seag1.ogg": 2.074, + "sound/ambience/seag2.ogg": 1.93, + "sound/ambience/seag3.ogg": 0.58, + "sound/ambience/shipambience.ogg": 200.441, + "sound/ambience/shipambience1.ogg": 61.927, + "sound/ambience/shore.ogg": 30.084, + "sound/ambience/shuttle_fly_loop.ogg": 3.146, + "sound/ambience/shuttle_idle_loop.ogg": 28.261, + "sound/ambience/signal.ogg": 11.158, + "sound/ambience/snowstorm.ogg": 84.411, + "sound/ambience/varadero_storm.ogg": 51.97, + "sound/ambience/vehicle_interior1.ogg": 2.977, + "sound/ambience/yautja_ship.ogg": 50.433, + "sound/bullets/acid_impact1.ogg": 4.998, + "sound/bullets/bullet_armor1.ogg": 0.549, + "sound/bullets/bullet_armor2.ogg": 1.594, + "sound/bullets/bullet_armor3.ogg": 0.574, + "sound/bullets/bullet_armor4.ogg": 0.523, + "sound/bullets/bullet_impact1.ogg": 0.799, + "sound/bullets/bullet_impact2.ogg": 1.413, + "sound/bullets/bullet_impact3.ogg": 1.904, + "sound/bullets/bullet_miss1.ogg": 0.274, + "sound/bullets/bullet_miss2.ogg": 0.398, + "sound/bullets/bullet_miss3.ogg": 0.39, + "sound/bullets/bullet_miss4.ogg": 0.414, + "sound/bullets/bullet_ricochet1.ogg": 0.899, + "sound/bullets/bullet_ricochet2.ogg": 0.871, + "sound/bullets/bullet_ricochet3.ogg": 0.501, + "sound/bullets/bullet_ricochet4.ogg": 0.732, + "sound/bullets/bullet_ricochet5.ogg": 0.477, + "sound/bullets/bullet_ricochet6.ogg": 0.907, + "sound/bullets/bullet_ricochet7.ogg": 0.718, + "sound/bullets/bullet_ricochet8.ogg": 0.761, + "sound/bullets/bullet_vulture_impact.ogg": 1.007, + "sound/bullets/energy_impact1.ogg": 0.911, + "sound/bullets/energy_miss1.ogg": 0.679, + "sound/bullets/energy_ricochet1.ogg": 0.732, + "sound/bullets/impact_flesh_1.ogg": 0.544, + "sound/bullets/impact_flesh_2.ogg": 0.489, + "sound/bullets/impact_flesh_3.ogg": 0.555, + "sound/bullets/impact_flesh_4.ogg": 0.518, + "sound/bullets/rocket_ricochet1.ogg": 1.701, + "sound/bullets/rocket_ricochet2.ogg": 2.234, + "sound/bullets/rocket_ricochet3.ogg": 2.192, + "sound/bullets/shield_break_c1.ogg": 1.978, + "sound/bullets/shield_impact_c1.ogg": 0.688, + "sound/bullets/shield_impact_c2.ogg": 0.688, + "sound/bullets/shield_impact_c3.ogg": 0.688, + "sound/bullets/shield_impact_c4.ogg": 0.646, + "sound/bullets/spear_armor1.ogg": 0.41, + "sound/bullets/spear_impact1.ogg": 1.776, + "sound/bullets/spear_ricochet1.ogg": 2.522, + "sound/bullets/spear_ricochet2.ogg": 2.042, + "sound/effects/.wav": 7.454, + "sound/effects/acidpool.ogg": 4.982, + "sound/effects/acid_sizzle1.ogg": 2.75, + "sound/effects/acid_sizzle2.ogg": 2.538, + "sound/effects/acid_sizzle3.ogg": 2.578, + "sound/effects/acid_sizzle4.ogg": 2.3, + "sound/effects/adminhelp-error.ogg": 0.413, + "sound/effects/adminhelp-reply.ogg": 1.516, + "sound/effects/adminhelp_new.ogg": 1.603, + "sound/effects/alert.ogg": 2.385, + "sound/effects/alien_doorpry1.ogg": 4.448, + "sound/effects/alien_doorpry2.ogg": 4.453, + "sound/effects/alien_dragsound_large.ogg": 0.627, + "sound/effects/alien_egg_burst.ogg": 2.014, + "sound/effects/alien_egg_move.ogg": 1.387, + "sound/effects/alien_footstep_charge1.ogg": 0.765, + "sound/effects/alien_footstep_charge2.ogg": 0.765, + "sound/effects/alien_footstep_charge3.ogg": 0.765, + "sound/effects/alien_footstep_large1.ogg": 0.917, + "sound/effects/alien_footstep_large2.ogg": 0.876, + "sound/effects/alien_footstep_large3.ogg": 0.716, + "sound/effects/alien_footstep_medium1.ogg": 1.22, + "sound/effects/alien_footstep_medium2.ogg": 1.385, + "sound/effects/alien_footstep_medium3.ogg": 1.519, + "sound/effects/alien_resin_break1.ogg": 0.878, + "sound/effects/alien_resin_break2.ogg": 0.686, + "sound/effects/alien_resin_break3.ogg": 0.613, + "sound/effects/alien_resin_build1.ogg": 1.398, + "sound/effects/alien_resin_build2.ogg": 1.52, + "sound/effects/alien_resin_build3.ogg": 1.754, + "sound/effects/alien_resin_move1.ogg": 1.114, + "sound/effects/alien_resin_move2.ogg": 1.607, + "sound/effects/alien_tail_swipe1.ogg": 0.61, + "sound/effects/alien_tail_swipe2.ogg": 0.476, + "sound/effects/alien_tail_swipe3.ogg": 0.463, + "sound/effects/alien_ventcrawl1.ogg": 1.034, + "sound/effects/alien_ventcrawl2.ogg": 1.475, + "sound/effects/alien_ventpass1.ogg": 2.077, + "sound/effects/alien_ventpass2.ogg": 1.628, + "sound/effects/antiair_explosions.ogg": 6.859, + "sound/effects/attackblob.ogg": 1.192, + "sound/effects/bamf.ogg": 2.221, + "sound/effects/bang.ogg": 0.51, + "sound/effects/barbed_wire_movement.ogg": 0.767, + "sound/effects/basscannon.ogg": 0.895, + "sound/effects/bigboom1.ogg": 7.042, + "sound/effects/bigboom2.ogg": 2.503, + "sound/effects/bigboom3.ogg": 7.736, + "sound/effects/bigboom4.ogg": 3.542, + "sound/effects/binoctarget.ogg": 0.886, + "sound/effects/biohazard.ogg": 6.788, + "sound/effects/bladeinsert.ogg": 1.013, + "sound/effects/blobattack.ogg": 0.716, + "sound/effects/bomb_fall.ogg": 4.964, + "sound/effects/bone_break1.ogg": 0.534, + "sound/effects/bone_break2.ogg": 0.165, + "sound/effects/bone_break3.ogg": 0.207, + "sound/effects/bone_break4.ogg": 0.183, + "sound/effects/bone_break5.ogg": 0.173, + "sound/effects/bone_break6.ogg": 0.235, + "sound/effects/bone_break7.ogg": 0.297, + "sound/effects/bubbles.ogg": 1.677, + "sound/effects/bubbles2.ogg": 7.044, + "sound/effects/buckle.ogg": 0.392, + "sound/effects/burrowing_b.ogg": 0.867, + "sound/effects/burrowoff.ogg": 1.16, + "sound/effects/canopen.ogg": 0.51, + "sound/effects/ceramic_shatter.ogg": 2.128, + "sound/effects/clang.ogg": 1.596, + "sound/effects/cloak_scout_off.ogg": 0.929, + "sound/effects/cloak_scout_on.ogg": 0.929, + "sound/effects/clownstep1.ogg": 0.271, + "sound/effects/clownstep2.ogg": 0.288, + "sound/effects/comical_bonk.ogg": 0.996, + "sound/effects/corsat_teleporter.ogg": 7.43, + "sound/effects/creak1.ogg": 5.835, + "sound/effects/creak2.ogg": 6.355, + "sound/effects/creak3.ogg": 5.104, + "sound/effects/data-transmission.ogg": 4.709, + "sound/effects/dingding.ogg": 3.575, + "sound/effects/doorcreaky.ogg": 3.777, + "sound/effects/double_klaxon.ogg": 4.72, + "sound/effects/drill.ogg": 2.012, + "sound/effects/dropship_crash.ogg": 18.802, + "sound/effects/dropship_incoming.ogg": 7.684, + "sound/effects/drums.ogg": 9.891, + "sound/effects/EMPulse.ogg": 1.02, + "sound/effects/engine_cargoshuttle_landing.ogg": 9.911, + "sound/effects/engine_cargoshuttle_startup.ogg": 9.999, + "sound/effects/engine_landing.ogg": 20.392, + "sound/effects/engine_startup.ogg": 14.934, + "sound/effects/escape_pod_launch.ogg": 1.493, + "sound/effects/escape_pod_warmup.ogg": 8.801, + "sound/effects/explosion1.ogg": 2.692, + "sound/effects/explosion2.ogg": 3.507, + "sound/effects/explosion3.ogg": 3.62, + "sound/effects/explosion4.ogg": 3.201, + "sound/effects/explosion5.ogg": 3.938, + "sound/effects/explosionfar.ogg": 7.595, + "sound/effects/extinguish.ogg": 1.629, + "sound/effects/fire_crackle.ogg": 2.193, + "sound/effects/flag_lowering.ogg": 5.436, + "sound/effects/flag_raised.ogg": 0.537, + "sound/effects/flag_raising.ogg": 0.771, + "sound/effects/flag_warcry_ua.ogg": 1.385, + "sound/effects/flag_warcry_ua_extra.ogg": 7.454, + "sound/effects/gau.ogg": 4.597, + "sound/effects/gauimpact.ogg": 1.28, + "sound/effects/gau_incockpit.ogg": 3.395, + "sound/effects/generalquartersalarm.ogg": 15.072, + "sound/effects/ghost.ogg": 8.417, + "sound/effects/ghost2.ogg": 2.301, + "sound/effects/gibbed.ogg": 0.764, + "sound/effects/glassbash.ogg": 0.26, + "sound/effects/Glassbr1.ogg": 1.988, + "sound/effects/Glassbr2.ogg": 1.883, + "sound/effects/Glassbr3.ogg": 2.374, + "sound/effects/glassbreak1.ogg": 0.973, + "sound/effects/glassbreak2.ogg": 0.982, + "sound/effects/glassbreak3.ogg": 1.298, + "sound/effects/glassbreak4.ogg": 1.31, + "sound/effects/Glasshit.ogg": 0.982, + "sound/effects/Glasshit_old.ogg": 0.529, + "sound/effects/glassknock.ogg": 0.634, + "sound/effects/glass_step.ogg": 0.628, + "sound/effects/GQfullcall.ogg": 17.95, + "sound/effects/grillehit.ogg": 2.139, + "sound/effects/gunrustle1.ogg": 0.426, + "sound/effects/gunrustle2.ogg": 0.644, + "sound/effects/gunrustle3.ogg": 0.567, + "sound/effects/Heart Beat.ogg": 1.064, + "sound/effects/heart_beat_short.ogg": 5.908, + "sound/effects/helmet_noise.ogg": 0.65, + "sound/effects/hit_on_shattered_glass.ogg": 1.049, + "sound/effects/incoming-fax.ogg": 5.909, + "sound/effects/IncomingRocket.ogg": 2.507, + "sound/effects/klaxon1.ogg": 2.694, + "sound/effects/knockout.ogg": 1.23, + "sound/effects/laser_point_defence_success.ogg": 4, + "sound/effects/lighter1.ogg": 2.089, + "sound/effects/lighter2.ogg": 1.137, + "sound/effects/lighter3.ogg": 2.914, + "sound/effects/match.ogg": 2.481, + "sound/effects/metalhit.ogg": 0.857, + "sound/effects/metal_close.ogg": 0.392, + "sound/effects/metal_crash.ogg": 3.469, + "sound/effects/metal_creaking.ogg": 4.619, + "sound/effects/metal_shatter.ogg": 2.128, + "sound/effects/meteorimpact.ogg": 1.007, + "sound/effects/mhelp.ogg": 1.172, + "sound/effects/missile_warning.ogg": 3.074, + "sound/effects/mousesqueek.ogg": 0.41, + "sound/effects/nightvision.ogg": 1.957, + "sound/effects/ob_alert.ogg": 1.716, + "sound/effects/oppressor_tail.ogg": 0.715, + "sound/effects/pageturn1.ogg": 1.139, + "sound/effects/pageturn2.ogg": 1.339, + "sound/effects/pageturn3.ogg": 1.098, + "sound/effects/phasein.ogg": 1.406, + "sound/effects/pillbottle.ogg": 0.195, + "sound/effects/pipe_hissing.ogg": 4.999, + "sound/effects/pop.ogg": 0.049, + "sound/effects/powerloss.ogg": 13.39, + "sound/effects/pred_cloakoff.ogg": 2.02, + "sound/effects/pred_cloakon.ogg": 2.472, + "sound/effects/pred_countdown.ogg": 8.399, + "sound/effects/pred_vision.ogg": 1.034, + "sound/effects/pry1.ogg": 2.494, + "sound/effects/pry2.ogg": 4.349, + "sound/effects/pry3.ogg": 5.844, + "sound/effects/pry4.ogg": 4.244, + "sound/effects/radiostatic.ogg": 0.599, + "sound/effects/railgunhit.ogg": 4.499, + "sound/effects/railgun_miss.ogg": 0.414, + "sound/effects/readysetgo.ogg": 4.474, + "sound/effects/refill.ogg": 1.287, + "sound/effects/rip1.ogg": 0.321, + "sound/effects/rip2.ogg": 0.43, + "sound/effects/rocketpod_fire.ogg": 4.31, + "sound/effects/runedsanddoor.ogg": 4.216, + "sound/effects/runner_charging_1.ogg": 2.002, + "sound/effects/runner_charging_2.ogg": 2.002, + "sound/effects/rustle1.ogg": 2.696, + "sound/effects/rustle2.ogg": 1.361, + "sound/effects/rustle3.ogg": 1.372, + "sound/effects/rustle4.ogg": 1.349, + "sound/effects/rustle5.ogg": 1.372, + "sound/effects/screech.ogg": 1.129, + "sound/effects/screech2.ogg": 3.661, + "sound/effects/shieldbash.ogg": 1.908, + "sound/effects/sinkrunning.ogg": 8.743, + "sound/effects/siren.ogg": 18.226, + "sound/effects/slam1.ogg": 0.819, + "sound/effects/slam2.ogg": 1.24, + "sound/effects/slam3.ogg": 1.565, + "sound/effects/slam_rare_1.ogg": 2.627, + "sound/effects/slosh.ogg": 2.514, + "sound/effects/smoke.ogg": 3.586, + "sound/effects/snap.ogg": 0.573, + "sound/effects/sos-morse-code.ogg": 2.279, + "sound/effects/sparks1.ogg": 0.774, + "sound/effects/sparks2.ogg": 0.827, + "sound/effects/sparks3.ogg": 1.094, + "sound/effects/sparks4.ogg": 1.181, + "sound/effects/spike_hit.ogg": 0.339, + "sound/effects/spike_spray.ogg": 0.679, + "sound/effects/spin.ogg": 0.226, + "sound/effects/splat.ogg": 1.309, + "sound/effects/spray.ogg": 1.494, + "sound/effects/spray2.ogg": 2.233, + "sound/effects/spray3.ogg": 2.247, + "sound/effects/squelch1.ogg": 0.846, + "sound/effects/stealthoff.ogg": 0.326, + "sound/effects/stonedoor_openclose.ogg": 1.229, + "sound/effects/supercapacitors_charging.ogg": 3.128, + "sound/effects/tankhiss1.ogg": 3.411, + "sound/effects/tankhiss2.ogg": 3.42, + "sound/effects/tankhiss3.ogg": 3.408, + "sound/effects/tankhiss4.ogg": 3.414, + "sound/effects/tech_notification.ogg": 5.335, + "sound/effects/thud.ogg": 0.244, + "sound/effects/thud1.ogg": 1.179, + "sound/effects/thud2.ogg": 1.4, + "sound/effects/thud3.ogg": 1.304, + "sound/effects/toilet_flush_new.ogg": 4.047, + "sound/effects/toolbox.ogg": 0.886, + "sound/effects/tunnel_collapse.ogg": 3.552, + "sound/effects/vegetation_hit.ogg": 0.356, + "sound/effects/vegetation_walk_0.ogg": 2.036, + "sound/effects/vegetation_walk_1.ogg": 1.5, + "sound/effects/vegetation_walk_2.ogg": 1.56, + "sound/effects/weather_warning.ogg": 27.789, + "sound/effects/weather_warning_varadero.ogg": 13.517, + "sound/effects/window_shatter1.ogg": 1.652, + "sound/effects/window_shatter2.ogg": 1.757, + "sound/effects/window_shatter3.ogg": 1.562, + "sound/effects/woodhit.ogg": 0.696, + "sound/effects/xeno_evolveready.ogg": 3.442, + "sound/effects/xeno_newlarva.ogg": 5.288, + "sound/effects/xylophone1.ogg": 5.346, + "sound/effects/xylophone2.ogg": 5.619, + "sound/effects/xylophone3.ogg": 6.101, + "sound/effects/zippo_close.ogg": 0.731, + "sound/effects/zippo_open.ogg": 1.114, + "sound/effects/zzzt.ogg": 0.124, + "sound/hallucinations/behind_you1.ogg": 3.963, + "sound/hallucinations/behind_you2.ogg": 4.77, + "sound/hallucinations/far_noise.ogg": 4.169, + "sound/hallucinations/growl1.ogg": 2.34, + "sound/hallucinations/growl2.ogg": 2.398, + "sound/hallucinations/growl3.ogg": 2.497, + "sound/hallucinations/im_here1.ogg": 4.448, + "sound/hallucinations/im_here2.ogg": 3.661, + "sound/hallucinations/i_see_you1.ogg": 5.818, + "sound/hallucinations/i_see_you2.ogg": 5.658, + "sound/hallucinations/look_up1.ogg": 2.953, + "sound/hallucinations/look_up2.ogg": 2.213, + "sound/hallucinations/over_here1.ogg": 3.658, + "sound/hallucinations/over_here2.ogg": 4.067, + "sound/hallucinations/over_here3.ogg": 3.24, + "sound/hallucinations/turn_around1.ogg": 3.467, + "sound/hallucinations/turn_around2.ogg": 3.356, + "sound/hallucinations/veryfar_noise.ogg": 4.355, + "sound/hallucinations/wail.ogg": 4.773, + "sound/handling/ammobox_drop.ogg": 0.318, + "sound/handling/ammobox_pickup.ogg": 0.319, + "sound/handling/armorequip_1.ogg": 0.57, + "sound/handling/armorequip_2.ogg": 0.602, + "sound/handling/attachment_add.ogg": 0.627, + "sound/handling/attachment_remove.ogg": 0.766, + "sound/handling/bandage.ogg": 1.683, + "sound/handling/book_pickup.ogg": 0.545, + "sound/handling/cardboardbox_pickup.ogg": 0.681, + "sound/handling/click_2.ogg": 0.628, + "sound/handling/clothingrustle1.ogg": 0.628, + "sound/handling/clothingrustle2.ogg": 0.628, + "sound/handling/clothingrustle3.ogg": 0.642, + "sound/handling/clothingrustle4.ogg": 0.628, + "sound/handling/clothingrustle5.ogg": 0.631, + "sound/handling/clothing_off.ogg": 0.917, + "sound/handling/clothing_on.ogg": 1.439, + "sound/handling/combistick_close.ogg": 0.359, + "sound/handling/combistick_open.ogg": 0.51, + "sound/handling/crowbar_drop.ogg": 0.356, + "sound/handling/crowbar_pickup.ogg": 0.5, + "sound/handling/disk_pickup.ogg": 0.265, + "sound/handling/drinkglass_pickup.ogg": 0.545, + "sound/handling/flare_activate_1.ogg": 4.748, + "sound/handling/flare_activate_2.ogg": 3.7, + "sound/handling/gunequip1.ogg": 0.483, + "sound/handling/gunequip2.ogg": 0.316, + "sound/handling/gunequip3.ogg": 0.282, + "sound/handling/hinge_squeak1.ogg": 1.525, + "sound/handling/hinge_squeak2.ogg": 0.952, + "sound/handling/hud_off.ogg": 1.122, + "sound/handling/hud_on.ogg": 2.3, + "sound/handling/light_on_1.ogg": 0.837, + "sound/handling/lockerclose.ogg": 0.77, + "sound/handling/lockeropen.ogg": 0.901, + "sound/handling/multitool_drop.ogg": 0.545, + "sound/handling/multitool_pickup.ogg": 0.621, + "sound/handling/ointment_spreading.ogg": 1.996, + "sound/handling/paper_drop.ogg": 0.75, + "sound/handling/paper_pickup.ogg": 0.543, + "sound/handling/putting_on_armor1.ogg": 2.89, + "sound/handling/screwdriver_drop.ogg": 0.545, + "sound/handling/screwdriver_pickup.ogg": 0.284, + "sound/handling/smartgun_close.ogg": 0.39, + "sound/handling/smartgun_open.ogg": 0.563, + "sound/handling/splint1.ogg": 1.845, + "sound/handling/suitlight_off.ogg": 0.222, + "sound/handling/suitlight_on.ogg": 0.927, + "sound/handling/taperecorder_drop.ogg": 0.224, + "sound/handling/taperecorder_pickup.ogg": 0.614, + "sound/handling/tape_drop.ogg": 0.324, + "sound/handling/tape_pickup.ogg": 0.343, + "sound/handling/toggle_nv1.ogg": 1.63, + "sound/handling/toggle_nv2.ogg": 1.255, + "sound/handling/toolbelt_pickup.ogg": 0.681, + "sound/handling/toolbox_drop.ogg": 0.75, + "sound/handling/toolbox_pickup.ogg": 0.613, + "sound/handling/weldingtool_drop.ogg": 0.818, + "sound/handling/weldingtool_pickup.ogg": 0.479, + "sound/handling/wirecutter_drop.ogg": 0.545, + "sound/handling/wirecutter_pickup.ogg": 0.545, + "sound/handling/wrench_drop.ogg": 0.545, + "sound/handling/wrench_pickup.ogg": 0.545, + "sound/items/air_release.ogg": 1.1, + "sound/items/bikehorn.ogg": 0.497, + "sound/items/bubblewrap.ogg": 2.325, + "sound/items/cane_step_1.ogg": 0.209, + "sound/items/cane_step_2.ogg": 0.209, + "sound/items/cane_step_3.ogg": 0.209, + "sound/items/cane_step_4.ogg": 0.209, + "sound/items/cane_step_5.ogg": 0.31, + "sound/items/can_crush.ogg": 0.952, + "sound/items/component_pickup.ogg": 0.398, + "sound/items/countdown.ogg": 3.651, + "sound/items/Crowbar.ogg": 1.338, + "sound/items/Deconstruct.ogg": 0.937, + "sound/items/defib_charge.ogg": 7.73, + "sound/items/defib_failed.ogg": 0.535, + "sound/items/defib_ready.ogg": 0.531, + "sound/items/defib_release.ogg": 2.495, + "sound/items/defib_safetyOff.ogg": 0.374, + "sound/items/defib_safetyOn.ogg": 0.374, + "sound/items/defib_success.ogg": 0.535, + "sound/items/detector.ogg": 0.889, + "sound/items/detector_ping_1.ogg": 0.489, + "sound/items/detector_ping_2.ogg": 1.108, + "sound/items/detector_ping_3.ogg": 0.689, + "sound/items/detector_ping_4.ogg": 1.14, + "sound/items/detector_turn_off.ogg": 0.889, + "sound/items/detector_turn_on.ogg": 1.65, + "sound/items/drink.ogg": 1.159, + "sound/items/eatfood.ogg": 2.053, + "sound/items/fulton.ogg": 0.97, + "sound/items/healthanalyzer.ogg": 0.759, + "sound/items/hypospray.ogg": 0.779, + "sound/items/jetpack_beep.ogg": 0.127, + "sound/items/jetpack_sound.ogg": 2, + "sound/items/jingle_long.wav": 2.989, + "sound/items/jingle_short.wav": 0.882, + "sound/items/m56dauto_load.ogg": 3.426, + "sound/items/m56dauto_rotate.ogg": 0.646, + "sound/items/m56dauto_setup.ogg": 3.083, + "sound/items/paper_ripped.ogg": 0.511, + "sound/items/pen_click_off.ogg": 0.198, + "sound/items/pen_click_on.ogg": 0.239, + "sound/items/plush1.ogg": 1.128, + "sound/items/plush2.ogg": 0.929, + "sound/items/plush3.ogg": 0.664, + "sound/items/polaroid1.ogg": 1.709, + "sound/items/polaroid2.ogg": 1.843, + "sound/items/poster_being_created.ogg": 3.877, + "sound/items/poster_ripped.ogg": 0.526, + "sound/items/pred_bracer.ogg": 0.617, + "sound/items/rappel.ogg": 0.682, + "sound/items/Ratchet.ogg": 1.448, + "sound/items/rped.ogg": 3.814, + "sound/items/Screwdriver.ogg": 1.912, + "sound/items/Screwdriver2.ogg": 0.13, + "sound/items/splintbreaks.ogg": 0.262, + "sound/items/syringeproj.ogg": 0.554, + "sound/items/tick.ogg": 0.64, + "sound/items/trayhit1.ogg": 0.677, + "sound/items/trayhit2.ogg": 2.012, + "sound/items/Welder.ogg": 2.269, + "sound/items/Welder2.ogg": 2.043, + "sound/items/weldingtool_off.ogg": 1.74, + "sound/items/weldingtool_on.ogg": 1.83, + "sound/items/weldingtool_weld.ogg": 5.323, + "sound/items/whistle.ogg": 2.037, + "sound/items/Wirecutter.ogg": 1.384, + "sound/items/zip.ogg": 1.031, + "sound/machines/airalarm.ogg": 8.057, + "sound/machines/airlock.ogg": 1.393, + "sound/machines/Alarm.ogg": 13.73, + "sound/machines/asrs_lowering.ogg": 13.075, + "sound/machines/asrs_raising.ogg": 17.518, + "sound/machines/beepalert.ogg": 1.007, + "sound/machines/beepconfused.ogg": 1.87, + "sound/machines/beepsad.ogg": 1.673, + "sound/machines/blastdoor.ogg": 2.018, + "sound/machines/blender.ogg": 5.275, + "sound/machines/bonk.ogg": 1.309, + "sound/machines/buzz-sigh.ogg": 0.312, + "sound/machines/buzz-two.ogg": 0.595, + "sound/machines/centrifuge.ogg": 5.772, + "sound/machines/chime.ogg": 0.413, + "sound/machines/click.ogg": 0.41, + "sound/machines/computer_typing1.ogg": 0.523, + "sound/machines/computer_typing2.ogg": 0.357, + "sound/machines/computer_typing3.ogg": 0.522, + "sound/machines/computer_typing4.ogg": 1.403, + "sound/machines/computer_typing5.ogg": 1.403, + "sound/machines/computer_typing6.ogg": 2.406, + "sound/machines/ding.ogg": 2.963, + "sound/machines/disposalflush.ogg": 3.102, + "sound/machines/door_close.ogg": 0.671, + "sound/machines/door_locked.ogg": 0.558, + "sound/machines/door_open.ogg": 0.799, + "sound/machines/elevator_move.ogg": 12.601, + "sound/machines/elevator_openclose.ogg": 1.522, + "sound/machines/emergency_shutter.ogg": 0.907, + "sound/machines/fax.ogg": 3.462, + "sound/machines/firepit_ambience.ogg": 5.604, + "sound/machines/hiss.ogg": 2.645, + "sound/machines/hydraulics_1.ogg": 1.264, + "sound/machines/hydraulics_2.ogg": 1.432, + "sound/machines/hydraulics_3.ogg": 1.497, + "sound/machines/juicer.ogg": 5.434, + "sound/machines/keyboard1.ogg": 1.049, + "sound/machines/keyboard2.ogg": 0.991, + "sound/machines/keyboard3.ogg": 0.927, + "sound/machines/lawnmower.ogg": 2.287, + "sound/machines/lockdownalarm.ogg": 7.013, + "sound/machines/lockenable.ogg": 6.415, + "sound/machines/lockreset.ogg": 6.415, + "sound/machines/medevac_extend.ogg": 3.797, + "sound/machines/outputclick1.ogg": 1.403, + "sound/machines/outputclick2.ogg": 1.403, + "sound/machines/pda_button1.ogg": 0.252, + "sound/machines/pda_button2.ogg": 0.201, + "sound/machines/pda_ping.ogg": 0.96, + "sound/machines/ping.ogg": 0.503, + "sound/machines/pod_open.ogg": 2.856, + "sound/machines/print.ogg": 2.144, + "sound/machines/print_off.ogg": 1.107, + "sound/machines/scanning.ogg": 1.648, + "sound/machines/scanning_pod1.ogg": 2.368, + "sound/machines/screen_output1.ogg": 2.92, + "sound/machines/signal.ogg": 11.164, + "sound/machines/switch.ogg": 0.518, + "sound/machines/tcomms_on.ogg": 10.193, + "sound/machines/terminal_alert.ogg": 1.782, + "sound/machines/terminal_button01.ogg": 0.219, + "sound/machines/terminal_button02.ogg": 0.302, + "sound/machines/terminal_button03.ogg": 0.231, + "sound/machines/terminal_button04.ogg": 0.209, + "sound/machines/terminal_button05.ogg": 0.177, + "sound/machines/terminal_button06.ogg": 0.201, + "sound/machines/terminal_button07.ogg": 0.322, + "sound/machines/terminal_button08.ogg": 0.261, + "sound/machines/terminal_eject.ogg": 0.605, + "sound/machines/terminal_error.ogg": 0.413, + "sound/machines/terminal_insert_disc.ogg": 1.089, + "sound/machines/terminal_off.ogg": 1.535, + "sound/machines/terminal_on.ogg": 0.93, + "sound/machines/terminal_processing.ogg": 1.754, + "sound/machines/terminal_prompt.ogg": 0.278, + "sound/machines/terminal_prompt_confirm.ogg": 0.152, + "sound/machines/terminal_prompt_deny.ogg": 0.173, + "sound/machines/terminal_select.ogg": 0.067, + "sound/machines/terminal_shutdown.ogg": 4.07, + "sound/machines/terminal_success.ogg": 0.721, + "sound/machines/turbine_off.ogg": 9.74, + "sound/machines/turbine_on.ogg": 9.74, + "sound/machines/twobeep.ogg": 0.296, + "sound/machines/vending.ogg": 1.549, + "sound/machines/warning-buzzer.ogg": 3.513, + "sound/machines/windowdoor.ogg": 1.843, + "sound/mecha/critdestr.ogg": 2.06, + "sound/mecha/critdestrnano.ogg": 2.392, + "sound/mecha/critdestrsyndi.ogg": 2.44, + "sound/mecha/critnano.ogg": 1.176, + "sound/mecha/hydraulic.ogg": 4.122, + "sound/mecha/imag_enh.ogg": 2.542, + "sound/mecha/imag_enhnano.ogg": 1.96, + "sound/mecha/imag_enhsyndi.ogg": 2.536, + "sound/mecha/internaldmgalarm.ogg": 1.301, + "sound/mecha/LongNanoActivation.ogg": 5.864, + "sound/mecha/LongSyndiActivation.ogg": 3.832, + "sound/mecha/lowpower.ogg": 0.875, + "sound/mecha/lowpowernano.ogg": 2.456, + "sound/mecha/lowpowersyndi.ogg": 2.6, + "sound/mecha/mechambience.ogg": 5.532, + "sound/mecha/mechdrill.ogg": 5.774, + "sound/mecha/mechmove01.ogg": 0.97, + "sound/mecha/mechmove03.ogg": 0.914, + "sound/mecha/mechmove04.ogg": 0.561, + "sound/mecha/mechstep.ogg": 0.52, + "sound/mecha/mechturn.ogg": 0.783, + "sound/mecha/nominal.ogg": 1.876, + "sound/mecha/nominalnano.ogg": 1.432, + "sound/mecha/nominalsyndi.ogg": 1.8, + "sound/mecha/powerloader_attack.ogg": 0.752, + "sound/mecha/powerloader_buckle.ogg": 2.819, + "sound/mecha/powerloader_step.ogg": 0.724, + "sound/mecha/powerloader_step2.ogg": 0.753, + "sound/mecha/powerloader_turn.ogg": 0.686, + "sound/mecha/powerloader_turn2.ogg": 0.729, + "sound/mecha/powerloader_unbuckle.ogg": 1.204, + "sound/mecha/powerup.ogg": 5.125, + "sound/mecha/weapdestr.ogg": 2.165, + "sound/mecha/weapdestrnano.ogg": 1.176, + "sound/mecha/weapdestrsyndi.ogg": 1.48, + "sound/misc/apcdestroyed.ogg": 2.943, + "sound/misc/asay_ping.ogg": 1.007, + "sound/misc/asses_kicked.ogg": 4.44, + "sound/misc/bangindonk.ogg": 1.56, + "sound/misc/bell.ogg": 6.98, + "sound/misc/bell.wav": 6.98, + "sound/misc/burp_long.ogg": 1.232, + "sound/misc/burp_short.ogg": 0.646, + "sound/misc/clap.ogg": 1.684, + "sound/misc/desk_bell.ogg": 2.694, + "sound/misc/distressbeacon_Sunshine.ogg": 4.392, + "sound/misc/eventhorizon_shiplog.ogg": 13.599, + "sound/misc/facehugged_female.ogg": 1.821, + "sound/misc/facehugged_male.ogg": 1.731, + "sound/misc/fart_long.ogg": 2.578, + "sound/misc/fart_short.ogg": 0.754, + "sound/misc/Game_Over_Man.ogg": 3.366, + "sound/misc/golfclap.ogg": 3.365, + "sound/misc/gone_to_plaid.ogg": 3.728, + "sound/misc/good_is_dumb.ogg": 6.401, + "sound/misc/hardon.ogg": 7.559, + "sound/misc/heal_gun.ogg": 9.088, + "sound/misc/hell_march.ogg": 28.016, + "sound/misc/interference.ogg": 1.089, + "sound/misc/notice1.ogg": 1.246, + "sound/misc/notice2.ogg": 1.008, + "sound/misc/null.ogg": 40.96, + "sound/misc/nymphchirp.ogg": 0.412, + "sound/misc/outstanding_marines.ogg": 11.521, + "sound/misc/queen_alarm.ogg": 8.192, + "sound/misc/Rerun.ogg": 7.669, + "sound/misc/robotic scream.ogg": 7.154, + "sound/misc/sadtrombone.ogg": 3.937, + "sound/misc/salute.ogg": 0.268, + "sound/misc/slip.ogg": 0.166, + "sound/misc/sound_misc_boatswain.ogg": 3.044, + "sound/misc/surrounded_by_assholes.ogg": 2.335, + "sound/misc/wound_stabilize.ogg": 0.548, + "sound/scp/firstpersonsnap.ogg": 2.011, + "sound/scp/firstpersonsnap2.ogg": 2.011, + "sound/scp/firstpersonsnap3.ogg": 2.847, + "sound/scp/scare1.ogg": 11.178, + "sound/scp/scare2.ogg": 5.939, + "sound/scp/scare3.ogg": 8.275, + "sound/scp/scare4.ogg": 7.174, + "sound/soundscape/cicamb2.ogg": 0.797, + "sound/soundscape/cicamb3.ogg": 1.032, + "sound/soundscape/cicamb4.ogg": 3.88, + "sound/soundscape/cicamb5.ogg": 6.466, + "sound/soundscape/cicamb6.ogg": 1.633, + "sound/soundscape/drum1.ogg": 10.951, + "sound/soundscape/eerie1.ogg": 40.579, + "sound/soundscape/engamb1.ogg": 4.285, + "sound/soundscape/engamb2.ogg": 2.056, + "sound/soundscape/engamb3.ogg": 2.869, + "sound/soundscape/engamb4.ogg": 3.635, + "sound/soundscape/engamb5.ogg": 3.054, + "sound/soundscape/engamb6.ogg": 3.287, + "sound/soundscape/engamb7.ogg": 2.915, + "sound/soundscape/hangaramb1.ogg": 2.845, + "sound/soundscape/hangaramb10.ogg": 5.725, + "sound/soundscape/hangaramb2.ogg": 3.101, + "sound/soundscape/hangaramb3.ogg": 2.712, + "sound/soundscape/hangaramb4.ogg": 6.561, + "sound/soundscape/hangaramb5.ogg": 4.21, + "sound/soundscape/hangaramb6.ogg": 2.512, + "sound/soundscape/hangaramb7.ogg": 2.552, + "sound/soundscape/hangaramb8.ogg": 2.613, + "sound/soundscape/hangaramb9.ogg": 11.576, + "sound/soundscape/medbay1.ogg": 39.381, + "sound/soundscape/medbay2.ogg": 39.822, + "sound/soundscape/medbay3.ogg": 33.345, + "sound/soundscape/mother.ogg": 7.622, + "sound/soundscape/rocksfalling1.ogg": 4.435, + "sound/soundscape/rocksfalling2.ogg": 4.435, + "sound/soundscape/thunderclap1.ogg": 9.636, + "sound/soundscape/thunderclap2.ogg": 15.092, + "sound/soundscape/wind1.ogg": 11.818, + "sound/soundscape/wind2.ogg": 17.67, + "sound/surgery/cautery1.ogg": 3.673, + "sound/surgery/cautery2.ogg": 1.235, + "sound/surgery/hemostat1.ogg": 1.1, + "sound/surgery/organ1.ogg": 2.408, + "sound/surgery/organ2.ogg": 2.408, + "sound/surgery/retractor1.ogg": 1, + "sound/surgery/retractor2.ogg": 0.754, + "sound/surgery/saw.ogg": 4.163, + "sound/surgery/scalpel1.ogg": 1.076, + "sound/surgery/scalpel2.ogg": 0.73, + "sound/theme/lastmanstanding_clf.ogg": 43.95, + "sound/theme/lastmanstanding_upp.ogg": 36.553, + "sound/theme/lastmanstanding_wy.ogg": 42.117, + "sound/theme/neutral_hopeful1.ogg": 12.482, + "sound/theme/neutral_hopeful2.ogg": 10.597, + "sound/theme/neutral_melancholy1.ogg": 13.384, + "sound/theme/neutral_melancholy2.ogg": 19.84, + "sound/theme/nuclear_detonation1.ogg": 13.822, + "sound/theme/nuclear_detonation2.ogg": 15.481, + "sound/theme/sad_loss1.ogg": 11.994, + "sound/theme/sad_loss2.ogg": 17.9, + "sound/theme/winning_triumph1.ogg": 16.348, + "sound/theme/winning_triumph2.ogg": 19.247, + "sound/vehicles/honk_1_truck.ogg": 1.33, + "sound/vehicles/honk_2_truck.ogg": 1.464, + "sound/vehicles/honk_3_ambulence.ogg": 2.1, + "sound/vehicles/honk_4_light.ogg": 1.468, + "sound/vehicles/overdrive_activate.ogg": 2.621, + "sound/vehicles/tank_driving.ogg": 2.662, + "sound/voice/4_xeno_roars.ogg": 5.019, + "sound/voice/alien_cena.ogg": 7.664, + "sound/voice/alien_chestburst.ogg": 2.177, + "sound/voice/alien_chestburst2.ogg": 2.019, + "sound/voice/alien_death.ogg": 4.556, + "sound/voice/alien_death2.ogg": 1.56, + "sound/voice/alien_death_unused.ogg": 3.608, + "sound/voice/alien_distantroar_3.ogg": 3.89, + "sound/voice/alien_drool1.ogg": 3, + "sound/voice/alien_drool2.ogg": 3.136, + "sound/voice/alien_facehugger_dies.ogg": 1.123, + "sound/voice/alien_growl1.ogg": 1.378, + "sound/voice/alien_growl2.ogg": 2.112, + "sound/voice/alien_growl3.ogg": 4.383, + "sound/voice/alien_help1.ogg": 1.441, + "sound/voice/alien_help2.ogg": 2.181, + "sound/voice/alien_help3.ogg": 1.731, + "sound/voice/alien_hiss1.ogg": 3.014, + "sound/voice/alien_hiss2.ogg": 3.002, + "sound/voice/alien_hiss3.ogg": 2.794, + "sound/voice/alien_pounce.ogg": 0.664, + "sound/voice/alien_pounce2.ogg": 0.211, + "sound/voice/alien_queen_breath1.ogg": 8.61, + "sound/voice/alien_queen_breath2.ogg": 7.616, + "sound/voice/alien_queen_command.ogg": 4.057, + "sound/voice/alien_queen_command2.ogg": 4.181, + "sound/voice/alien_queen_command3.ogg": 3.995, + "sound/voice/alien_queen_died.ogg": 3.049, + "sound/voice/alien_queen_screech.ogg": 4.998, + "sound/voice/alien_queen_xmas.ogg": 4.006, + "sound/voice/alien_queen_xmas_2.ogg": 5.763, + "sound/voice/alien_roar1.ogg": 1.497, + "sound/voice/alien_roar2.ogg": 1.729, + "sound/voice/alien_roar3.ogg": 1.566, + "sound/voice/alien_roar4.ogg": 1.404, + "sound/voice/alien_roar5.ogg": 1.625, + "sound/voice/alien_roar6.ogg": 1.625, + "sound/voice/alien_roar_larva1.ogg": 1.139, + "sound/voice/alien_roar_larva2.ogg": 0.73, + "sound/voice/alien_roar_unused.ogg": 1.232, + "sound/voice/alien_spitacid.ogg": 1.512, + "sound/voice/alien_spitacid2.ogg": 1.816, + "sound/voice/alien_talk.ogg": 1.33, + "sound/voice/alien_talk2.ogg": 1.92, + "sound/voice/alien_talk3.ogg": 1.383, + "sound/voice/bcreep.ogg": 1.568, + "sound/voice/bcriminal.ogg": 1.152, + "sound/voice/bfreeze.ogg": 1.056, + "sound/voice/bgod.ogg": 2.976, + "sound/voice/biamthelaw.ogg": 2.24, + "sound/voice/binsult.ogg": 14.144, + "sound/voice/bjustice.ogg": 0.96, + "sound/voice/bradio.ogg": 1.824, + "sound/voice/bsecureday.ogg": 1.248, + "sound/voice/cat_meow_1.ogg": 2.043, + "sound/voice/cat_meow_2.ogg": 3.088, + "sound/voice/cat_meow_3.ogg": 2.229, + "sound/voice/cat_meow_4.ogg": 3.157, + "sound/voice/cat_meow_5.ogg": 2.647, + "sound/voice/cat_meow_6.ogg": 3.436, + "sound/voice/cat_meow_7.ogg": 0.902, + "sound/voice/corpsman.ogg": 0.499, + "sound/voice/corpsman_over_here.ogg": 2.174, + "sound/voice/corpsman_up.ogg": 0.978, + "sound/voice/ed209_20sec.ogg": 2.433, + "sound/voice/get_doc_up_here_im_hit.ogg": 1.538, + "sound/voice/halt.ogg": 2.281, + "sound/voice/hiss1.ogg": 2.131, + "sound/voice/hiss2.ogg": 1.988, + "sound/voice/hiss3.ogg": 2.317, + "sound/voice/hiss4.ogg": 2.182, + "sound/voice/hiss5.ogg": 3.943, + "sound/voice/hiss6.ogg": 2.245, + "sound/voice/holy_chorus.ogg": 4.983, + "sound/voice/human_ack_scream.ogg": 0.388, + "sound/voice/human_bobby_pain.ogg": 0.73, + "sound/voice/human_female_grenadethrow_1.ogg": 0.984, + "sound/voice/human_female_grenadethrow_2.ogg": 0.805, + "sound/voice/human_female_grenadethrow_3.ogg": 1.073, + "sound/voice/human_female_medic.ogg": 0.666, + "sound/voice/human_female_pain_1.ogg": 0.819, + "sound/voice/human_female_pain_2.ogg": 0.649, + "sound/voice/human_female_pain_3.ogg": 0.632, + "sound/voice/human_female_pain_4.ogg": 0.645, + "sound/voice/human_female_pain_5.ogg": 0.798, + "sound/voice/human_female_scream_1.ogg": 1.085, + "sound/voice/human_female_scream_2.ogg": 1.108, + "sound/voice/human_female_scream_3.ogg": 0.866, + "sound/voice/human_female_scream_4.ogg": 0.468, + "sound/voice/human_female_scream_5.ogg": 1.181, + "sound/voice/human_jackson_scream.ogg": 0.65, + "sound/voice/human_male_grenadethrow_1.ogg": 1.291, + "sound/voice/human_male_grenadethrow_2.ogg": 1.16, + "sound/voice/human_male_grenadethrow_3.ogg": 1.299, + "sound/voice/human_male_medic.ogg": 0.77, + "sound/voice/human_male_medic_rare_1.ogg": 1.086, + "sound/voice/human_male_medic_rare_2.ogg": 0.67, + "sound/voice/human_male_pain_1.ogg": 1.012, + "sound/voice/human_male_pain_2.ogg": 0.839, + "sound/voice/human_male_pain_3.ogg": 0.441, + "sound/voice/human_male_pain_4.ogg": 1.086, + "sound/voice/human_male_pain_rare_1.ogg": 1.28, + "sound/voice/human_male_scream_1.ogg": 0.445, + "sound/voice/human_male_scream_2.ogg": 0.601, + "sound/voice/human_male_scream_3.ogg": 0.582, + "sound/voice/human_male_scream_4.ogg": 0.436, + "sound/voice/human_male_scream_5.ogg": 1.066, + "sound/voice/human_male_scream_6.ogg": 1.555, + "sound/voice/human_tantrum_scream.ogg": 0.592, + "sound/voice/im_hit_get_doc_up_here.ogg": 2.155, + "sound/voice/i_cant_feel_my_legs_corpsman.ogg": 2.544, + "sound/voice/i_need_a_corpsman_1.ogg": 1.454, + "sound/voice/i_need_a_corpsman_2.ogg": 1.242, + "sound/voice/larva_talk1.ogg": 0.645, + "sound/voice/larva_talk2.ogg": 0.519, + "sound/voice/larva_talk3.ogg": 0.756, + "sound/voice/larva_talk4.ogg": 0.858, + "sound/voice/liveagain.ogg": 2.993, + "sound/voice/monkey_chimper1.ogg": 0.943, + "sound/voice/monkey_chimper2.ogg": 1.84, + "sound/voice/monkey_scream.ogg": 1.667, + "sound/voice/monkey_whimper.ogg": 4.138, + "sound/voice/predalien_click.ogg": 1.744, + "sound/voice/predalien_death.ogg": 1.458, + "sound/voice/predalien_growl.ogg": 1.436, + "sound/voice/predalien_hiss.ogg": 1.76, + "sound/voice/predalien_pounce.ogg": 0.991, + "sound/voice/predalien_roar.ogg": 2.993, + "sound/voice/pred_anytime.ogg": 2.268, + "sound/voice/pred_click1.ogg": 2.461, + "sound/voice/pred_click2.ogg": 1.156, + "sound/voice/pred_click3.ogg": 5.737, + "sound/voice/pred_click4.ogg": 5.482, + "sound/voice/pred_click5.ogg": 12.288, + "sound/voice/pred_come_on_out.ogg": 3.459, + "sound/voice/pred_deathlaugh.ogg": 9.706, + "sound/voice/pred_facehugged.ogg": 1.236, + "sound/voice/pred_helpme.ogg": 1.307, + "sound/voice/pred_itsatrap.ogg": 3.693, + "sound/voice/pred_laugh1.ogg": 1.827, + "sound/voice/pred_laugh2.ogg": 4.212, + "sound/voice/pred_laugh3.ogg": 4.214, + "sound/voice/pred_overhere.ogg": 1.574, + "sound/voice/pred_over_there.ogg": 2.879, + "sound/voice/pred_pain1.ogg": 1.416, + "sound/voice/pred_pain2.ogg": 1.335, + "sound/voice/pred_pain3.ogg": 3.204, + "sound/voice/pred_pain4.ogg": 1.41, + "sound/voice/pred_pain5.ogg": 1.219, + "sound/voice/pred_pain_rare1.ogg": 3.587, + "sound/voice/pred_roar1.ogg": 3.226, + "sound/voice/pred_roar2.ogg": 3.641, + "sound/voice/pred_roar3.ogg": 2.995, + "sound/voice/pred_roar4.ogg": 6.08, + "sound/voice/pred_roar5.ogg": 4.117, + "sound/voice/pred_turnaround.ogg": 2.23, + "sound/voice/pred_ugly_freak.ogg": 4.945, + "sound/voice/scream_horror1.ogg": 7.154, + "sound/voice/scream_horror2.ogg": 1.827, + "sound/voice/shriek1.ogg": 1.83, + "sound/voice/start_your_voting.ogg": 3.655, + "sound/voice/tomscream.ogg": 2.618, + "sound/voice/xenos_roaring.ogg": 4.847, + "sound/voice/xeno_praetorian_screech.ogg": 2.813, + "sound/weapons/alien_acidstrike1.ogg": 5.054, + "sound/weapons/alien_bite1.ogg": 0.702, + "sound/weapons/alien_bite2.ogg": 1.483, + "sound/weapons/alien_claw_block.ogg": 0.355, + "sound/weapons/alien_claw_flesh1.ogg": 0.408, + "sound/weapons/alien_claw_flesh2.ogg": 0.33, + "sound/weapons/alien_claw_flesh3.ogg": 0.411, + "sound/weapons/alien_claw_flesh4.ogg": 0.608, + "sound/weapons/alien_claw_flesh5.ogg": 0.484, + "sound/weapons/alien_claw_flesh6.ogg": 0.41, + "sound/weapons/alien_claw_metal1.ogg": 0.176, + "sound/weapons/alien_claw_metal2.ogg": 0.212, + "sound/weapons/alien_claw_metal3.ogg": 0.19, + "sound/weapons/alien_claw_swipe.ogg": 0.092, + "sound/weapons/alien_knockdown.ogg": 0.285, + "sound/weapons/alien_tail_attack.ogg": 0.747, + "sound/weapons/armbomb.ogg": 1.986, + "sound/weapons/baton.ogg": 0.249, + "sound/weapons/baton_slug_impact.ogg": 1.761, + "sound/weapons/bite.ogg": 2.108, + "sound/weapons/blade1.ogg": 0.886, + "sound/weapons/bladeslice.ogg": 0.413, + "sound/weapons/blaster.ogg": 0.32, + "sound/weapons/bulletcasing_bounce.ogg": 1.34, + "sound/weapons/bulletcasing_fall.ogg": 0.505, + "sound/weapons/bulletcasing_fall2.ogg": 0.592, + "sound/bullets/bulletcasing_shotgun_fall1.ogg": 1.127, + "sound/weapons/cablecuff.ogg": 0.387, + "sound/weapons/chain_whip.ogg": 0.835, + "sound/weapons/circsawhit.ogg": 1.423, + "sound/weapons/clan_sword_hit_1.ogg": 1.209, + "sound/weapons/clan_sword_hit_2.ogg": 0.902, + "sound/weapons/dropship_sonic_boom.ogg": 13.572, + "sound/weapons/Egloves.ogg": 0.728, + "sound/weapons/emitter.ogg": 1.786, + "sound/weapons/emitter2.ogg": 3.481, + "sound/weapons/flash.ogg": 2.824, + "sound/weapons/flipblade.ogg": 1.348, + "sound/weapons/Genhit.ogg": 0.442, + "sound/weapons/genhit1.ogg": 0.584, + "sound/weapons/genhit2.ogg": 0.48, + "sound/weapons/genhit3.ogg": 0.55, + "sound/weapons/grenade_insert.wav": 0.809, + "sound/weapons/Gunshot.ogg": 0.724, + "sound/weapons/gun_44mag.ogg": 0.744, + "sound/weapons/gun_44mag2.ogg": 0.523, + "sound/weapons/gun_44mag_close_chamber.wav": 0.367, + "sound/weapons/gun_44mag_open_chamber.wav": 0.187, + "sound/weapons/gun_44mag_speed_loader.wav": 0.491, + "sound/weapons/gun_44mag_v3.ogg": 3.915, + "sound/weapons/gun_44mag_v4.ogg": 1.166, + "sound/weapons/gun_88m4_reload.ogg": 0.766, + "sound/weapons/gun_88m4_unload.ogg": 1.651, + "sound/weapons/gun_88m4_v7.ogg": 3.523, + "sound/weapons/gun_ak47.ogg": 0.622, + "sound/weapons/gun_ar10.ogg": 0.562, + "sound/weapons/gun_boltaction.ogg": 2.846, + "sound/weapons/gun_boomslang_fire.ogg": 1.205, + "sound/weapons/gun_c99.ogg": 0.605, + "sound/weapons/gun_carbine.ogg": 3.781, + "sound/weapons/gun_chimp70.ogg": 0.41, + "sound/weapons/gun_cmb_1.ogg": 1.429, + "sound/weapons/gun_cmb_2.ogg": 1.484, + "sound/weapons/gun_cmb_bass.ogg": 0.63, + "sound/weapons/gun_cmb_rattle.ogg": 1.394, + "sound/weapons/gun_cocked2.ogg": 0.642, + "sound/weapons/gun_DE50.ogg": 1.552, + "sound/weapons/gun_DE50OLD.ogg": 1.465, + "sound/weapons/gun_empty.ogg": 0.213, + "sound/weapons/gun_es4.ogg": 0.402, + "sound/weapons/gun_flamethrower1.ogg": 7.025, + "sound/weapons/gun_flamethrower2.ogg": 3.85, + "sound/weapons/gun_flamethrower3.ogg": 2.416, + "sound/weapons/gun_flamethrower_empty.ogg": 0.867, + "sound/weapons/gun_flare.ogg": 3, + "sound/weapons/gun_flare_explode.ogg": 1.461, + "sound/weapons/gun_glock.ogg": 0.817, + "sound/weapons/gun_hpr.ogg": 2.009, + "sound/weapons/gun_kt42.ogg": 2.335, + "sound/weapons/gun_lever_action_fire.ogg": 1.823, + "sound/weapons/gun_m16.ogg": 3.465, + "sound/weapons/gun_m39.ogg": 0.498, + "sound/weapons/gun_m41ae2_old.ogg": 3.81, + "sound/weapons/gun_m41a_1.ogg": 0.985, + "sound/weapons/gun_m41a_2.ogg": 0.645, + "sound/weapons/gun_m41a_3.ogg": 0.61, + "sound/weapons/gun_m41a_4.ogg": 0.48, + "sound/weapons/gun_m41a_5.ogg": 0.706, + "sound/weapons/gun_m41a_6.ogg": 0.846, + "sound/weapons/gun_m43.ogg": 2.3, + "sound/weapons/gun_m4a3_1.ogg": 0.809, + "sound/weapons/gun_m4a3_2.ogg": 0.9, + "sound/weapons/gun_m4a3_3.ogg": 0.913, + "sound/weapons/gun_m4a3_4.ogg": 0.913, + "sound/weapons/gun_m4a3_5.ogg": 0.905, + "sound/weapons/gun_m4ra.ogg": 0.642, + "sound/weapons/gun_m56d_auto.ogg": 1.117, + "sound/weapons/gun_m60.ogg": 1.992, + "sound/weapons/gun_m60_cocked.ogg": 1.095, + "sound/weapons/gun_m92_attachable.ogg": 0.999, + "sound/weapons/gun_m92_cocked.ogg": 0.338, + "sound/weapons/gun_mac15.ogg": 0.666, + "sound/weapons/gun_mar40.ogg": 3.795, + "sound/weapons/gun_mateba.ogg": 0.753, + "sound/weapons/gun_mg.ogg": 1.253, + "sound/weapons/gun_minigun.ogg": 0.4, + "sound/weapons/gun_minigun_cocked.ogg": 0.767, + "sound/weapons/gun_mortar_fire.ogg": 0.828, + "sound/weapons/gun_mortar_reload.ogg": 0.639, + "sound/weapons/gun_mortar_travel.ogg": 4.006, + "sound/weapons/gun_mortar_unpack.ogg": 1.467, + "sound/weapons/gun_mou53.ogg": 3.015, + "sound/weapons/gun_nsg23_1.ogg": 0.905, + "sound/weapons/gun_nsg23_2.ogg": 0.809, + "sound/weapons/gun_orbital_travel.ogg": 11.987, + "sound/weapons/gun_p90.ogg": 1.4, + "sound/weapons/gun_pistol_cocked.ogg": 0.378, + "sound/weapons/gun_pistol_draw.ogg": 0.509, + "sound/weapons/gun_pistol_holdout.ogg": 0.909, + "sound/weapons/gun_pistol_large.ogg": 1.519, + "sound/weapons/gun_pistol_medium.ogg": 1.403, + "sound/weapons/gun_pistol_sheathe.ogg": 0.747, + "sound/weapons/gun_pkd_fire01.ogg": 1.509, + "sound/weapons/gun_pkd_fire01_rattle.ogg": 1.172, + "sound/weapons/gun_pkd_fire02.ogg": 1.172, + "sound/weapons/gun_pkd_fire03.ogg": 1.01, + "sound/weapons/gun_reload.ogg": 1.069, + "sound/weapons/gun_revolver_cocked.ogg": 0.384, + "sound/weapons/gun_revolver_load3.ogg": 0.573, + "sound/weapons/gun_revolver_spun.ogg": 1.179, + "sound/weapons/gun_revolver_unload.ogg": 0.41, + "sound/weapons/gun_rifle.ogg": 1.522, + "sound/weapons/gun_rifle_draw.ogg": 0.518, + "sound/weapons/gun_rifle_reload.ogg": 0.32, + "sound/weapons/gun_rocketlauncher.ogg": 1.436, + "sound/weapons/gun_sentry.ogg": 1.482, + "sound/weapons/gun_servicepistol.ogg": 1.032, + "sound/weapons/gun_shotgun.ogg": 0.959, + "sound/weapons/gun_shotgun_automatic.ogg": 1.266, + "sound/weapons/gun_shotgun_heavy.ogg": 1.754, + "sound/weapons/gun_shotgun_open2.ogg": 0.306, + "sound/weapons/gun_shotgun_pump.ogg": 0.747, + "sound/weapons/gun_shotgun_reload.ogg": 0.445, + "sound/weapons/gun_shotgun_riot.ogg": 1.325, + "sound/weapons/gun_shotgun_shell_insert.ogg": 0.21, + "sound/weapons/gun_shotgun_small.ogg": 1.342, + "sound/weapons/gun_shotgun_tactical_1.ogg": 1.83, + "sound/weapons/gun_shotgun_tactical_2.ogg": 1.899, + "sound/weapons/gun_shotgun_tactical_3.ogg": 1.908, + "sound/weapons/gun_shotgun_tactical_4.ogg": 1.827, + "sound/weapons/gun_shotgun_u7.ogg": 5, + "sound/weapons/gun_shotgun_xm51.ogg": 2.059, + "sound/weapons/gun_silenced_oldshot1.ogg": 0.355, + "sound/weapons/gun_silenced_oldshot2.ogg": 0.233, + "sound/weapons/gun_silenced_shot1.ogg": 1.104, + "sound/weapons/gun_silenced_shot2.ogg": 1.128, + "sound/weapons/gun_skorpion.ogg": 0.496, + "sound/weapons/gun_smartgun1.ogg": 0.85, + "sound/weapons/gun_smartgun1_rattle.ogg": 0.85, + "sound/weapons/gun_smartgun2.ogg": 0.85, + "sound/weapons/gun_smartgun2_rattle.ogg": 0.85, + "sound/weapons/gun_smartgun3.ogg": 0.85, + "sound/weapons/gun_smartgun3_rattle.ogg": 0.85, + "sound/weapons/gun_smartgun4.ogg": 0.85, + "sound/weapons/gun_smartgun4_rattle.ogg": 0.85, + "sound/weapons/gun_smg.ogg": 0.552, + "sound/weapons/gun_sniper.ogg": 1.02, + "sound/weapons/gun_su6.ogg": 3.523, + "sound/weapons/gun_tt.ogg": 1.003, + "sound/weapons/gun_type23.ogg": 4.099, + "sound/weapons/gun_type71.ogg": 0.573, + "sound/weapons/gun_ugl_fire.ogg": 0.88, + "sound/weapons/gun_uzi.ogg": 0.287, + "sound/weapons/gun_vp78_reload.ogg": 1.173, + "sound/weapons/gun_vp78_unload.ogg": 1.716, + "sound/weapons/gun_vp78_v2.ogg": 3.801, + "sound/weapons/gun_vulture_fire.ogg": 4.82, + "sound/weapons/gun_vulture_mark.ogg": 0.775, + "sound/weapons/gun_vulture_report.ogg": 6.378, + "sound/weapons/gun_xm88_directhit_high.ogg": 1.175, + "sound/weapons/gun_xm88_directhit_low.ogg": 0.638, + "sound/weapons/gun_xm88_directhit_medium.ogg": 0.743, + "sound/weapons/handcuffs.ogg": 1.448, + "sound/weapons/hmg_cooling.ogg": 5.008, + "sound/weapons/hmg_eject_mag.ogg": 0.536, + "sound/weapons/Laser.ogg": 0.425, + "sound/weapons/Laser2.ogg": 0.96, + "sound/weapons/Laser3.ogg": 0.802, + "sound/weapons/Laser4.ogg": 0.665, + "sound/weapons/marauder.ogg": 3.191, + "sound/weapons/metal_chair_clang.ogg": 1.068, + "sound/weapons/metal_chair_crash.ogg": 4.949, + "sound/weapons/metal_chair_slam.ogg": 0.895, + "sound/weapons/mine_armed.ogg": 3.356, + "sound/weapons/mine_tripped.ogg": 0.231, + "sound/weapons/nailgun_fire.ogg": 0.712, + "sound/weapons/nailgun_repair_long.ogg": 2.919, + "sound/weapons/pierce.ogg": 0.952, + "sound/weapons/pred_lasercannon.ogg": 1.277, + "sound/weapons/pred_plasmacaster_fire.ogg": 2.979, + "sound/weapons/pred_plasmacaster_off.ogg": 2.314, + "sound/weapons/pred_plasmacaster_on.ogg": 2.31, + "sound/weapons/pred_plasma_shot.ogg": 1.507, + "sound/weapons/pulse.ogg": 0.576, + "sound/weapons/pulse2.ogg": 0.576, + "sound/weapons/pulse3.ogg": 0.529, + "sound/weapons/punch1.ogg": 0.92, + "sound/weapons/punch2.ogg": 0.815, + "sound/weapons/punch3.ogg": 0.902, + "sound/weapons/punch4.ogg": 0.699, + "sound/weapons/punchmiss.ogg": 0.449, + "sound/weapons/ring.ogg": 0.632, + "sound/weapons/saberoff.ogg": 3.038, + "sound/weapons/saberon.ogg": 3.06, + "sound/weapons/shell_load1.ogg": 0.59, + "sound/weapons/shell_load2.ogg": 0.609, + "sound/weapons/shell_load3.ogg": 0.609, + "sound/weapons/shell_load4.ogg": 0.572, + "sound/weapons/shotgunpump1.ogg": 0.654, + "sound/weapons/shotgunpump2.ogg": 0.715, + "sound/weapons/slash.ogg": 0.789, + "sound/weapons/slashmiss.ogg": 0.487, + "sound/weapons/slice.ogg": 0.952, + "sound/weapons/smartgun.ogg": 0.716, + "sound/weapons/smash.ogg": 0.796, + "sound/weapons/smg_empty_alarm.ogg": 1.576, + "sound/weapons/smg_heavy.ogg": 0.544, + "sound/weapons/smg_light.ogg": 0.304, + "sound/weapons/sniper_heavy.ogg": 1.423, + "sound/weapons/synthpunch1.ogg": 0.333, + "sound/weapons/tablehit1.ogg": 1.017, + "sound/weapons/TargetOff.ogg": 0.303, + "sound/weapons/TargetOn.ogg": 0.371, + "sound/weapons/Taser.ogg": 0.46, + "sound/weapons/taser2.ogg": 0.891, + "sound/weapons/throwtap.ogg": 0.18, + "sound/weapons/thudswoosh.ogg": 1.558, + "sound/weapons/unload.ogg": 0.486, + "sound/weapons/vp70.ogg": 0.489, + "sound/weapons/wave.ogg": 0.529, + "sound/weapons/wristblades_hit.ogg": 0.895, + "sound/weapons/wristblades_off.ogg": 0.686, + "sound/weapons/wristblades_on.ogg": 0.818, + "sound/ambience/strata/strata_blizzard.ogg": 47.483, + "sound/ambience/strata/strata_snow.ogg": 47.483, + "sound/ambience/strata/strata_snowstorm.ogg": 47.483, + "sound/dyn/roundend/CIAPencils.ogg": 4.057, + "sound/dyn/roundend/hysterical.ogg": 1.537, + "sound/dyn/roundend/its_only_game.ogg": 3.839, + "sound/dyn/roundend/lets_get_outta_here.ogg": 0.859, + "sound/dyn/roundend/NotBadForAHuman.ogg": 3.547, + "sound/effects/turret/move1.wav": 0.928, + "sound/effects/turret/move2.wav": 0.916, + "sound/effects/turret/open.wav": 2.391, + "sound/effects/wind/wind_2_1.ogg": 5.459, + "sound/effects/wind/wind_2_2.ogg": 5.658, + "sound/effects/wind/wind_3_1.ogg": 5.956, + "sound/effects/wind/wind_4_1.ogg": 7.664, + "sound/effects/wind/wind_4_2.ogg": 6.849, + "sound/effects/wind/wind_5_1.ogg": 10.373, + "sound/items/taperecorder/taperecorder_close.ogg": 0.617, + "sound/items/taperecorder/taperecorder_hiss_mid.ogg": 0.25, + "sound/items/taperecorder/taperecorder_hiss_start.ogg": 0.25, + "sound/items/taperecorder/taperecorder_open.ogg": 0.591, + "sound/items/taperecorder/taperecorder_play.ogg": 0.203, + "sound/items/taperecorder/taperecorder_print.ogg": 0.771, + "sound/items/taperecorder/taperecorder_stop.ogg": 0.326, + "sound/items/taperecorder/tape_flip.ogg": 0.623, + "sound/items/writing_noises/paper_writing_1.wav": 1.184, + "sound/items/writing_noises/paper_writing_2.wav": 3.993, + "sound/items/writing_noises/paper_writing_3.wav": 1.265, + "sound/items/writing_noises/paper_writing_4.ogg": 0.678, + "sound/machines/railgun/railgun_impact.ogg": 2.246, + "sound/machines/railgun/railgun_shoot.ogg": 0.977, + "sound/machines/railgun/railgun_shoot2.ogg": 0.977, + "sound/machines/resource_node/node_idle.ogg": 3.702, + "sound/machines/resource_node/node_marine_die.ogg": 3.733, + "sound/machines/resource_node/node_marine_die_2.ogg": 2.159, + "sound/machines/resource_node/node_marine_harvest.ogg": 3.239, + "sound/machines/resource_node/node_marine_on.ogg": 8.194, + "sound/machines/resource_node/node_turn_off.ogg": 9.45, + "sound/machines/resource_node/node_turn_on_2.ogg": 5.764, + "sound/machines/resource_node/node_xeno_die.ogg": 3.733, + "sound/machines/resource_node/node_xeno_harvest.ogg": 4.468, + "sound/machines/resource_node/node_xeno_on.ogg": 3.722, + "sound/machines/techpod/techpod_drill.ogg": 4.752, + "sound/machines/techpod/techpod_drilling.ogg": 3.323, + "sound/machines/techpod/techpod_hit.ogg": 1.079, + "sound/machines/techpod/techpod_no_drill.ogg": 4.752, + "sound/machines/techpod/techpod_open.ogg": 2.828, + "sound/machines/techpod/techpod_open_noding.ogg": 2.795, + "sound/machines/techpod/techpod_rto_notif.ogg": 0.951, + "sound/machines/techpod/techpod_rto_notif_muffled.ogg": 0.66, + "sound/machines/techpod/techpod_toggle.ogg": 0.304, + "sound/machines/telephone/rtb_handset_1.ogg": 0.429, + "sound/machines/telephone/rtb_handset_2.ogg": 0.348, + "sound/machines/telephone/rtb_handset_3.ogg": 0.557, + "sound/machines/telephone/rtb_handset_4.ogg": 0.452, + "sound/machines/telephone/rtb_handset_5.ogg": 0.464, + "sound/machines/telephone/telephone_ring.ogg": 2.9, + "sound/vehicles/Dropships/single_alarm_brr_dropship_1.ogg": 1.75, + "sound/voice/joe/alwaysknow.ogg": 2.873, + "sound/voice/joe/alwaysknow_damaged.ogg": 2.647, + "sound/voice/joe/alwaysknow_haz.ogg": 3.193, + "sound/voice/joe/apollo_behalf.ogg": 3.051, + "sound/voice/joe/apollo_behalf_haz.ogg": 3.113, + "sound/voice/joe/area_restricted_haz.ogg": 1.896, + "sound/voice/joe/awful.ogg": 2.233, + "sound/voice/joe/awful_haz.ogg": 2.467, + "sound/voice/joe/back_to_work.ogg": 1.166, + "sound/voice/joe/back_to_work_haz.ogg": 1.376, + "sound/voice/joe/been_looking_for_you.ogg": 0.966, + "sound/voice/joe/beyond_repair.ogg": 3.365, + "sound/voice/joe/beyond_repair_haz.ogg": 3.441, + "sound/voice/joe/be_careful_with_that.ogg": 1.18, + "sound/voice/joe/breach.ogg": 1.764, + "sound/voice/joe/breach_haz.ogg": 2.08, + "sound/voice/joe/calm_down.ogg": 1.772, + "sound/voice/joe/come_out_vent.ogg": 2.468, + "sound/voice/joe/come_out_vent_haz.ogg": 2.394, + "sound/voice/joe/come_with_me.ogg": 1.414, + "sound/voice/joe/could_require_attention.ogg": 1.794, + "sound/voice/joe/could_require_attention_haz.ogg": 2.346, + "sound/voice/joe/damage.ogg": 2.137, + "sound/voice/joe/damage_haz.ogg": 2.377, + "sound/voice/joe/dangerous_items.ogg": 2.782, + "sound/voice/joe/dangerous_items_haz.ogg": 2.832, + "sound/voice/joe/day_never_done.ogg": 2.602, + "sound/voice/joe/day_never_done_haz.ogg": 2.798, + "sound/voice/joe/death_dream.ogg": 3.102, + "sound/voice/joe/death_normal.ogg": 5.013, + "sound/voice/joe/death_silence.ogg": 3.337, + "sound/voice/joe/death_tomorrow.ogg": 3.982, + "sound/voice/joe/detailed_report.ogg": 2.692, + "sound/voice/joe/detailed_report_haz.ogg": 2.914, + "sound/voice/joe/disturbance_haz.ogg": 3.127, + "sound/voice/joe/dontdothat.ogg": 1.209, + "sound/voice/joe/dont_run.ogg": 0.937, + "sound/voice/joe/enough.ogg": 0.533, + "sound/voice/joe/existing_tasks.ogg": 2.609, + "sound/voice/joe/expensive_mistake.ogg": 1.87, + "sound/voice/joe/fire.ogg": 2.288, + "sound/voice/joe/firearm.ogg": 4.22, + "sound/voice/joe/firearm_haz.ogg": 4.486, + "sound/voice/joe/fire_drill.ogg": 6.461, + "sound/voice/joe/fire_haz.ogg": 2.561, + "sound/voice/joe/follow_me.ogg": 1.166, + "sound/voice/joe/follow_me_please.ogg": 1.238, + "sound/voice/joe/follow_me_please_haz.ogg": 1.295, + "sound/voice/joe/further_assistance.ogg": 2.423, + "sound/voice/joe/glad_we_resolved.ogg": 1.985, + "sound/voice/joe/good_day.ogg": 0.897, + "sound/voice/joe/good_day_haz.ogg": 0.968, + "sound/voice/joe/had_the_pleasure.ogg": 2.142, + "sound/voice/joe/have_a_problem.ogg": 2.182, + "sound/voice/joe/health_risks.ogg": 2.602, + "sound/voice/joe/health_risks_haz.ogg": 2.602, + "sound/voice/joe/hello.ogg": 0.897, + "sound/voice/joe/hold_still.ogg": 1.041, + "sound/voice/joe/how_are_you.ogg": 0.78, + "sound/voice/joe/how_can_i_help.ogg": 1.301, + "sound/voice/joe/how_can_i_help_haz.ogg": 1.446, + "sound/voice/joe/how_inconsiderate.ogg": 2.47, + "sound/voice/joe/hurt_yourself.ogg": 1.801, + "sound/voice/joe/hysterical.ogg": 1.686, + "sound/voice/joe/hysterical_haz.ogg": 1.734, + "sound/voice/joe/inexpensive.ogg": 7.673, + "sound/voice/joe/interloper.ogg": 3.876, + "sound/voice/joe/investigate_weapon.ogg": 2.452, + "sound/voice/joe/investigating_disturbance_haz.ogg": 2.004, + "sound/voice/joe/irresponsible.ogg": 1.391, + "sound/voice/joe/irresponsible_haz.ogg": 1.601, + "sound/voice/joe/is_anybody_there.ogg": 1.745, + "sound/voice/joe/join_us.ogg": 2.557, + "sound/voice/joe/let_me_help.ogg": 1.241, + "sound/voice/joe/little_details.ogg": 3.365, + "sound/voice/joe/lost.ogg": 1.076, + "sound/voice/joe/misbehaving.ogg": 1.839, + "sound/voice/joe/misbehaving_haz.ogg": 2.023, + "sound/voice/joe/more_pressing_matters.ogg": 1.929, + "sound/voice/joe/more_pressing_matters_haz.ogg": 2.028, + "sound/voice/joe/most_concerning.ogg": 2.42, + "sound/voice/joe/not_allowed_there.ogg": 1.346, + "sound/voice/joe/not_allowed_there_haz.ogg": 1.647, + "sound/voice/joe/not_be_tolerated.ogg": 3.038, + "sound/voice/joe/not_liking.ogg": 4.532, + "sound/voice/joe/not_what_i_think.ogg": 2.288, + "sound/voice/joe/not_what_i_think_haz.ogg": 2.457, + "sound/voice/joe/no_need.ogg": 1.417, + "sound/voice/joe/other_concerns.ogg": 1.794, + "sound/voice/joe/other_concerns_haz.ogg": 1.92, + "sound/voice/joe/patience.ogg": 2.109, + "sound/voice/joe/patience_haz.ogg": 2.239, + "sound/voice/joe/pity.ogg": 2.07, + "sound/voice/joe/presence_logged.ogg": 1.839, + "sound/voice/joe/presence_logged_haz.ogg": 1.86, + "sound/voice/joe/protected_area_compromised.ogg": 2.017, + "sound/voice/joe/really.ogg": 0.58, + "sound/voice/joe/really_shouldnt_be_here.ogg": 1.508, + "sound/voice/joe/really_shouldnt_be_here_haz.ogg": 1.803, + "sound/voice/joe/report.ogg": 2.121, + "sound/voice/joe/report_haz.ogg": 1.915, + "sound/voice/joe/required_by_apollo.ogg": 2.243, + "sound/voice/joe/returning_to_tasks.ogg": 1.839, + "sound/voice/joe/running_accidents.ogg": 1.974, + "sound/voice/joe/running_accidents_haz.ogg": 2.073, + "sound/voice/joe/safety.ogg": 2.702, + "sound/voice/joe/safety_breach.ogg": 3.051, + "sound/voice/joe/safety_breach_haz.ogg": 3.33, + "sound/voice/joe/safety_haz.ogg": 4.234, + "sound/voice/joe/seegson_behind.ogg": 4.666, + "sound/voice/joe/seegson_quality.ogg": 4.981, + "sound/voice/joe/seegson_standards.ogg": 4.263, + "sound/voice/joe/shouldnt_be_here.ogg": 1.435, + "sound/voice/joe/someone_hurt.ogg": 1.35, + "sound/voice/joe/species.ogg": 1.718, + "sound/voice/joe/species_haz.ogg": 1.705, + "sound/voice/joe/still_here.ogg": 2.081, + "sound/voice/joe/stop_that.ogg": 0.777, + "sound/voice/joe/support_ticket_removed.ogg": 2.574, + "sound/voice/joe/support_ticket_removed_haz.ogg": 2.836, + "sound/voice/joe/take_a_seat.ogg": 3.32, + "sound/voice/joe/talk_to_seegson.ogg": 5.654, + "sound/voice/joe/temperatures.ogg": 4.218, + "sound/voice/joe/temperatures_haz.ogg": 4.754, + "sound/voice/joe/that_stings.ogg": 1.346, + "sound/voice/joe/that_stings_haz.ogg": 1.376, + "sound/voice/joe/this_isnt_the_answer.ogg": 1.601, + "sound/voice/joe/this_is_futile.ogg": 1.211, + "sound/voice/joe/this_is_futile_haz.ogg": 1.47, + "sound/voice/joe/tomorrow_together_haz.ogg": 2.834, + "sound/voice/joe/trespassing.ogg": 1.346, + "sound/voice/joe/tut_tut.ogg": 0.772, + "sound/voice/joe/unprotected_flames.ogg": 4.756, + "sound/voice/joe/unprotected_flames_haz.ogg": 4.702, + "sound/voice/joe/unwarranted.ogg": 1.134, + "sound/voice/joe/what_do_you_need.ogg": 1.609, + "sound/voice/joe/what_happened_to_you.ogg": 1.301, + "sound/voice/joe/what_happened_to_you_haz.ogg": 1.57, + "sound/voice/joe/what_is_this.ogg": 1.211, + "sound/voice/joe/what_is_this_haz.ogg": 1.054, + "sound/voice/joe/with_you_shortly.ogg": 1.66, + "sound/voice/joe/with_you_shortly_haz.ogg": 1.77, + "sound/voice/upp_warcry/warcry_female_1.ogg": 3.6, + "sound/voice/upp_warcry/warcry_female_2.ogg": 2.376, + "sound/voice/upp_warcry/warcry_male_1.ogg": 2.577, + "sound/voice/upp_warcry/warcry_male_2.ogg": 2.362, + "sound/voice/warcry/female_charge.ogg": 1.311, + "sound/voice/warcry/female_yell1.ogg": 2.044, + "sound/voice/warcry/male_attack.ogg": 1.427, + "sound/voice/warcry/male_charge.ogg": 2.232, + "sound/voice/warcry/male_charge2.ogg": 2.324, + "sound/voice/warcry/male_go.ogg": 2.429, + "sound/voice/warcry/male_wryy.ogg": 3.013, + "sound/voice/warcry/warcry_female_1.ogg": 3.096, + "sound/voice/warcry/warcry_female_10.ogg": 1.968, + "sound/voice/warcry/warcry_female_11.ogg": 1.632, + "sound/voice/warcry/warcry_female_12.ogg": 1.56, + "sound/voice/warcry/warcry_female_13.ogg": 1.56, + "sound/voice/warcry/warcry_female_14.ogg": 1.392, + "sound/voice/warcry/warcry_female_15.ogg": 1.56, + "sound/voice/warcry/warcry_female_16.ogg": 1.32, + "sound/voice/warcry/warcry_female_17.ogg": 2.184, + "sound/voice/warcry/warcry_female_18.ogg": 0.744, + "sound/voice/warcry/warcry_female_19.ogg": 1.608, + "sound/voice/warcry/warcry_female_2.ogg": 1.944, + "sound/voice/warcry/warcry_female_20.ogg": 1.68, + "sound/voice/warcry/warcry_female_3.ogg": 2.832, + "sound/voice/warcry/warcry_female_4.ogg": 1.464, + "sound/voice/warcry/warcry_female_5.ogg": 1.768, + "sound/voice/warcry/warcry_female_6.ogg": 2.058, + "sound/voice/warcry/warcry_female_7.ogg": 1.632, + "sound/voice/warcry/warcry_female_8.ogg": 1.248, + "sound/voice/warcry/warcry_female_9.ogg": 1.56, + "sound/voice/warcry/warcry_male_1.ogg": 2.148, + "sound/voice/warcry/warcry_male_10.ogg": 1.728, + "sound/voice/warcry/warcry_male_11.ogg": 1.942, + "sound/voice/warcry/warcry_male_12.ogg": 1.839, + "sound/voice/warcry/warcry_male_13.ogg": 1.488, + "sound/voice/warcry/warcry_male_14.ogg": 1.2, + "sound/voice/warcry/warcry_male_15.ogg": 1.656, + "sound/voice/warcry/warcry_male_16.ogg": 1.944, + "sound/voice/warcry/warcry_male_17.ogg": 1.872, + "sound/voice/warcry/warcry_male_18.ogg": 2.64, + "sound/voice/warcry/warcry_male_19.ogg": 2.52, + "sound/voice/warcry/warcry_male_2.ogg": 1.358, + "sound/voice/warcry/warcry_male_20.ogg": 1.418, + "sound/voice/warcry/warcry_male_21.ogg": 1.786, + "sound/voice/warcry/warcry_male_22.ogg": 1.264, + "sound/voice/warcry/warcry_male_23.ogg": 1.242, + "sound/voice/warcry/warcry_male_24.ogg": 1.477, + "sound/voice/warcry/warcry_male_25.ogg": 2.741, + "sound/voice/warcry/warcry_male_26.ogg": 1.306, + "sound/voice/warcry/warcry_male_27.ogg": 1.821, + "sound/voice/warcry/warcry_male_28.ogg": 1.8, + "sound/voice/warcry/warcry_male_29.ogg": 2.424, + "sound/voice/warcry/warcry_male_3.ogg": 1.541, + "sound/voice/warcry/warcry_male_30.ogg": 1.608, + "sound/voice/warcry/warcry_male_31.ogg": 2.376, + "sound/voice/warcry/warcry_male_32.ogg": 2.016, + "sound/voice/warcry/warcry_male_33.ogg": 2.64, + "sound/voice/warcry/warcry_male_34.ogg": 2.04, + "sound/voice/warcry/warcry_male_35.ogg": 2.232, + "sound/voice/warcry/warcry_male_4.ogg": 2.326, + "sound/voice/warcry/warcry_male_5.ogg": 2.121, + "sound/voice/warcry/warcry_male_6.ogg": 2.946, + "sound/voice/warcry/warcry_male_7.ogg": 2.664, + "sound/voice/warcry/warcry_male_8.ogg": 1.79, + "sound/voice/warcry/warcry_male_9.ogg": 1.95, + "sound/voice/warcry/warcry_male_rare_1.ogg": 3.056, + "sound/voice/warcry/warcry_male_rare_2.ogg": 4.545, + "sound/voice/warcry/warcry_male_rare_3.ogg": 1.428, + "sound/voice/warcry/warcry_male_rare_4.ogg": 2.07, + "sound/voice/warcry/warcry_male_rare_5.ogg": 2.595, + "sound/vox/vox/!bloop.ogg": 0.609, + "sound/vox/vox/!buzwarn.ogg": 0.781, + "sound/vox/vox/!dadeda.ogg": 0.887, + "sound/vox/vox/!deeoo.ogg": 0.682, + "sound/vox/vox/!doop.ogg": 1.145, + "sound/vox/vox/,.ogg": 0.248, + "sound/vox/vox/..ogg": 0.431, + "sound/vox/vox/a.ogg": 0.372, + "sound/vox/vox/accelerating.ogg": 1.136, + "sound/vox/vox/accelerator.ogg": 1.18, + "sound/vox/vox/accepted.ogg": 0.876, + "sound/vox/vox/access.ogg": 0.817, + "sound/vox/vox/acknowledge.ogg": 0.914, + "sound/vox/vox/acknowledged.ogg": 0.869, + "sound/vox/vox/acquired.ogg": 0.833, + "sound/vox/vox/acquisition.ogg": 0.873, + "sound/vox/vox/across.ogg": 0.785, + "sound/vox/vox/activate.ogg": 0.795, + "sound/vox/vox/activated.ogg": 0.954, + "sound/vox/vox/activity.ogg": 0.973, + "sound/vox/vox/adios.ogg": 0.946, + "sound/vox/vox/administration.ogg": 1.241, + "sound/vox/vox/advanced.ogg": 0.799, + "sound/vox/vox/after.ogg": 0.652, + "sound/vox/vox/agent.ogg": 0.634, + "sound/vox/vox/alarm.ogg": 0.672, + "sound/vox/vox/alert.ogg": 0.539, + "sound/vox/vox/alien.ogg": 0.68, + "sound/vox/vox/aligned.ogg": 0.792, + "sound/vox/vox/all.ogg": 0.528, + "sound/vox/vox/alpha.ogg": 0.621, + "sound/vox/vox/am.ogg": 0.418, + "sound/vox/vox/amigo.ogg": 0.657, + "sound/vox/vox/ammunition.ogg": 0.887, + "sound/vox/vox/an.ogg": 0.414, + "sound/vox/vox/and.ogg": 0.399, + "sound/vox/vox/announcement.ogg": 0.784, + "sound/vox/vox/anomalous.ogg": 0.821, + "sound/vox/vox/antenna.ogg": 0.717, + "sound/vox/vox/any.ogg": 0.384, + "sound/vox/vox/apprehend.ogg": 0.782, + "sound/vox/vox/approach.ogg": 0.807, + "sound/vox/vox/are.ogg": 0.312, + "sound/vox/vox/area.ogg": 0.556, + "sound/vox/vox/arm.ogg": 0.617, + "sound/vox/vox/armed.ogg": 0.587, + "sound/vox/vox/armor.ogg": 0.529, + "sound/vox/vox/armory.ogg": 0.708, + "sound/vox/vox/arrest.ogg": 0.553, + "sound/vox/vox/ass.ogg": 0.564, + "sound/vox/vox/at.ogg": 0.29, + "sound/vox/vox/atomic.ogg": 0.769, + "sound/vox/vox/attention.ogg": 0.805, + "sound/vox/vox/authorize.ogg": 1.081, + "sound/vox/vox/authorized.ogg": 1.047, + "sound/vox/vox/automatic.ogg": 0.868, + "sound/vox/vox/away.ogg": 0.512, + "sound/vox/vox/b.ogg": 0.514, + "sound/vox/vox/back.ogg": 0.541, + "sound/vox/vox/backman.ogg": 0.621, + "sound/vox/vox/bad.ogg": 0.581, + "sound/vox/vox/bag.ogg": 0.552, + "sound/vox/vox/bailey.ogg": 0.661, + "sound/vox/vox/barracks.ogg": 0.688, + "sound/vox/vox/base.ogg": 0.592, + "sound/vox/vox/bay.ogg": 0.546, + "sound/vox/vox/be.ogg": 0.348, + "sound/vox/vox/been.ogg": 0.407, + "sound/vox/vox/before.ogg": 0.684, + "sound/vox/vox/beyond.ogg": 0.604, + "sound/vox/vox/biohazard.ogg": 1.116, + "sound/vox/vox/biological.ogg": 1.108, + "sound/vox/vox/birdwell.ogg": 0.722, + "sound/vox/vox/bizwarn.ogg": 0.888, + "sound/vox/vox/black.ogg": 0.538, + "sound/vox/vox/blast.ogg": 0.614, + "sound/vox/vox/blocked.ogg": 0.588, + "sound/vox/vox/blue.ogg": 0.423, + "sound/vox/vox/bottom.ogg": 0.569, + "sound/vox/vox/bravo.ogg": 0.675, + "sound/vox/vox/breach.ogg": 0.632, + "sound/vox/vox/breached.ogg": 0.569, + "sound/vox/vox/break.ogg": 0.533, + "sound/vox/vox/bridge.ogg": 0.567, + "sound/vox/vox/bust.ogg": 0.543, + "sound/vox/vox/but.ogg": 0.354, + "sound/vox/vox/button.ogg": 0.559, + "sound/vox/vox/bypass.ogg": 0.909, + "sound/vox/vox/c.ogg": 0.529, + "sound/vox/vox/cable.ogg": 0.539, + "sound/vox/vox/call.ogg": 0.526, + "sound/vox/vox/called.ogg": 0.513, + "sound/vox/vox/canal.ogg": 0.729, + "sound/vox/vox/cap.ogg": 0.514, + "sound/vox/vox/captain.ogg": 0.729, + "sound/vox/vox/capture.ogg": 0.738, + "sound/vox/vox/ceiling.ogg": 0.611, + "sound/vox/vox/celsius.ogg": 0.97, + "sound/vox/vox/center.ogg": 0.688, + "sound/vox/vox/centi.ogg": 0.533, + "sound/vox/vox/central.ogg": 0.729, + "sound/vox/vox/chamber.ogg": 0.717, + "sound/vox/vox/charlie.ogg": 0.622, + "sound/vox/vox/check.ogg": 0.539, + "sound/vox/vox/checkpoint.ogg": 0.874, + "sound/vox/vox/chemical.ogg": 0.67, + "sound/vox/vox/cleanup.ogg": 0.746, + "sound/vox/vox/clear.ogg": 0.538, + "sound/vox/vox/clearance.ogg": 0.732, + "sound/vox/vox/close.ogg": 0.608, + "sound/vox/vox/code.ogg": 0.546, + "sound/vox/vox/coded.ogg": 0.568, + "sound/vox/vox/collider.ogg": 0.769, + "sound/vox/vox/command.ogg": 0.642, + "sound/vox/vox/communication.ogg": 1.159, + "sound/vox/vox/complex.ogg": 0.685, + "sound/vox/vox/computer.ogg": 0.757, + "sound/vox/vox/condition.ogg": 0.709, + "sound/vox/vox/containment.ogg": 0.909, + "sound/vox/vox/contamination.ogg": 1.123, + "sound/vox/vox/control.ogg": 0.883, + "sound/vox/vox/coolant.ogg": 0.526, + "sound/vox/vox/coomer.ogg": 0.589, + "sound/vox/vox/core.ogg": 0.73, + "sound/vox/vox/correct.ogg": 0.553, + "sound/vox/vox/corridor.ogg": 0.653, + "sound/vox/vox/crew.ogg": 0.541, + "sound/vox/vox/cross.ogg": 0.626, + "sound/vox/vox/cryogenic.ogg": 0.995, + "sound/vox/vox/d.ogg": 0.535, + "sound/vox/vox/damage.ogg": 0.724, + "sound/vox/vox/damaged.ogg": 0.671, + "sound/vox/vox/danger.ogg": 0.707, + "sound/vox/vox/day.ogg": 0.446, + "sound/vox/vox/deactivated.ogg": 1.097, + "sound/vox/vox/decompression.ogg": 1.068, + "sound/vox/vox/decontamination.ogg": 1.317, + "sound/vox/vox/defense.ogg": 0.812, + "sound/vox/vox/degrees.ogg": 0.724, + "sound/vox/vox/delta.ogg": 0.49, + "sound/vox/vox/denied.ogg": 0.67, + "sound/vox/vox/deploy.ogg": 0.752, + "sound/vox/vox/deployed.ogg": 0.836, + "sound/vox/vox/destroy.ogg": 0.736, + "sound/vox/vox/destroyed.ogg": 0.856, + "sound/vox/vox/detain.ogg": 0.684, + "sound/vox/vox/detected.ogg": 0.799, + "sound/vox/vox/detonation.ogg": 0.836, + "sound/vox/vox/device.ogg": 0.856, + "sound/vox/vox/did.ogg": 0.403, + "sound/vox/vox/die.ogg": 0.496, + "sound/vox/vox/dimensional.ogg": 0.836, + "sound/vox/vox/dirt.ogg": 0.403, + "sound/vox/vox/disengaged.ogg": 1.095, + "sound/vox/vox/dish.ogg": 0.625, + "sound/vox/vox/disposal.ogg": 0.813, + "sound/vox/vox/distance.ogg": 0.696, + "sound/vox/vox/distortion.ogg": 0.947, + "sound/vox/vox/do.ogg": 0.459, + "sound/vox/vox/doctor.ogg": 0.6, + "sound/vox/vox/door.ogg": 0.477, + "sound/vox/vox/down.ogg": 0.536, + "sound/vox/vox/dual.ogg": 0.458, + "sound/vox/vox/duct.ogg": 0.443, + "sound/vox/vox/e.ogg": 0.455, + "sound/vox/vox/east.ogg": 0.509, + "sound/vox/vox/echo.ogg": 0.522, + "sound/vox/vox/ed.ogg": 0.362, + "sound/vox/vox/effect.ogg": 0.572, + "sound/vox/vox/egress.ogg": 0.709, + "sound/vox/vox/eight.ogg": 0.481, + "sound/vox/vox/eighteen.ogg": 0.645, + "sound/vox/vox/eighty.ogg": 0.507, + "sound/vox/vox/electric.ogg": 0.691, + "sound/vox/vox/electromagnetic.ogg": 1.43, + "sound/vox/vox/elevator.ogg": 0.746, + "sound/vox/vox/eleven.ogg": 0.643, + "sound/vox/vox/eliminate.ogg": 0.812, + "sound/vox/vox/emergency.ogg": 0.943, + "sound/vox/vox/energy.ogg": 0.643, + "sound/vox/vox/engage.ogg": 0.848, + "sound/vox/vox/engaged.ogg": 0.826, + "sound/vox/vox/engine.ogg": 0.57, + "sound/vox/vox/enter.ogg": 0.462, + "sound/vox/vox/entry.ogg": 0.536, + "sound/vox/vox/environment.ogg": 0.959, + "sound/vox/vox/error.ogg": 0.469, + "sound/vox/vox/escape.ogg": 0.708, + "sound/vox/vox/evacuate.ogg": 0.937, + "sound/vox/vox/exchange.ogg": 0.945, + "sound/vox/vox/exit.ogg": 0.613, + "sound/vox/vox/expect.ogg": 0.685, + "sound/vox/vox/experiment.ogg": 0.957, + "sound/vox/vox/experimental.ogg": 1.106, + "sound/vox/vox/explode.ogg": 0.817, + "sound/vox/vox/explosion.ogg": 0.914, + "sound/vox/vox/exposure.ogg": 0.865, + "sound/vox/vox/exterminate.ogg": 0.982, + "sound/vox/vox/extinguish.ogg": 0.931, + "sound/vox/vox/extinguisher.ogg": 0.981, + "sound/vox/vox/extreme.ogg": 0.801, + "sound/vox/vox/f.ogg": 0.523, + "sound/vox/vox/facility.ogg": 0.89, + "sound/vox/vox/fahrenheit.ogg": 0.956, + "sound/vox/vox/failed.ogg": 0.637, + "sound/vox/vox/failure.ogg": 0.698, + "sound/vox/vox/farthest.ogg": 0.785, + "sound/vox/vox/fast.ogg": 0.636, + "sound/vox/vox/feet.ogg": 0.493, + "sound/vox/vox/field.ogg": 0.546, + "sound/vox/vox/fifteen.ogg": 0.806, + "sound/vox/vox/fifth.ogg": 0.589, + "sound/vox/vox/fifty.ogg": 0.625, + "sound/vox/vox/final.ogg": 0.634, + "sound/vox/vox/fine.ogg": 0.691, + "sound/vox/vox/fire.ogg": 0.69, + "sound/vox/vox/first.ogg": 0.574, + "sound/vox/vox/five.ogg": 0.693, + "sound/vox/vox/flooding.ogg": 0.812, + "sound/vox/vox/floor.ogg": 0.586, + "sound/vox/vox/fool.ogg": 0.554, + "sound/vox/vox/for.ogg": 0.549, + "sound/vox/vox/forbidden.ogg": 0.907, + "sound/vox/vox/force.ogg": 0.68, + "sound/vox/vox/forms.ogg": 0.762, + "sound/vox/vox/found.ogg": 0.67, + "sound/vox/vox/four.ogg": 0.471, + "sound/vox/vox/fourteen.ogg": 0.8, + "sound/vox/vox/fourth.ogg": 0.596, + "sound/vox/vox/fourty.ogg": 0.795, + "sound/vox/vox/foxtrot.ogg": 0.957, + "sound/vox/vox/freeman.ogg": 0.688, + "sound/vox/vox/freezer.ogg": 0.659, + "sound/vox/vox/from.ogg": 0.52, + "sound/vox/vox/front.ogg": 0.608, + "sound/vox/vox/fuel.ogg": 0.684, + "sound/vox/vox/g.ogg": 0.554, + "sound/vox/vox/get.ogg": 0.387, + "sound/vox/vox/go.ogg": 0.482, + "sound/vox/vox/going.ogg": 0.654, + "sound/vox/vox/good.ogg": 0.511, + "sound/vox/vox/goodbye.ogg": 0.762, + "sound/vox/vox/gordon.ogg": 0.572, + "sound/vox/vox/got.ogg": 0.533, + "sound/vox/vox/government.ogg": 0.803, + "sound/vox/vox/granted.ogg": 0.683, + "sound/vox/vox/great.ogg": 0.533, + "sound/vox/vox/green.ogg": 0.572, + "sound/vox/vox/grenade.ogg": 0.764, + "sound/vox/vox/guard.ogg": 0.546, + "sound/vox/vox/gulf.ogg": 0.548, + "sound/vox/vox/gun.ogg": 0.471, + "sound/vox/vox/guthrie.ogg": 0.624, + "sound/vox/vox/handling.ogg": 0.625, + "sound/vox/vox/hangar.ogg": 0.686, + "sound/vox/vox/has.ogg": 0.589, + "sound/vox/vox/have.ogg": 0.567, + "sound/vox/vox/hazard.ogg": 0.698, + "sound/vox/vox/head.ogg": 0.514, + "sound/vox/vox/health.ogg": 0.625, + "sound/vox/vox/heat.ogg": 0.543, + "sound/vox/vox/helicopter.ogg": 0.985, + "sound/vox/vox/helium.ogg": 0.78, + "sound/vox/vox/hello.ogg": 0.602, + "sound/vox/vox/help.ogg": 0.481, + "sound/vox/vox/here.ogg": 0.372, + "sound/vox/vox/hide.ogg": 0.527, + "sound/vox/vox/high.ogg": 0.628, + "sound/vox/vox/highest.ogg": 0.641, + "sound/vox/vox/hit.ogg": 0.433, + "sound/vox/vox/hole.ogg": 0.573, + "sound/vox/vox/hostile.ogg": 0.664, + "sound/vox/vox/hot.ogg": 0.458, + "sound/vox/vox/hotel.ogg": 0.681, + "sound/vox/vox/hour.ogg": 0.44, + "sound/vox/vox/hours.ogg": 0.626, + "sound/vox/vox/hundred.ogg": 0.596, + "sound/vox/vox/hydro.ogg": 0.724, + "sound/vox/vox/i.ogg": 0.206, + "sound/vox/vox/idiot.ogg": 0.596, + "sound/vox/vox/illegal.ogg": 0.635, + "sound/vox/vox/immediate.ogg": 0.823, + "sound/vox/vox/immediately.ogg": 0.929, + "sound/vox/vox/in.ogg": 0.452, + "sound/vox/vox/inches.ogg": 0.664, + "sound/vox/vox/india.ogg": 0.565, + "sound/vox/vox/ing.ogg": 0.39, + "sound/vox/vox/inoperative.ogg": 0.917, + "sound/vox/vox/inside.ogg": 0.753, + "sound/vox/vox/inspection.ogg": 0.821, + "sound/vox/vox/inspector.ogg": 0.762, + "sound/vox/vox/interchange.ogg": 0.941, + "sound/vox/vox/intruder.ogg": 0.822, + "sound/vox/vox/invallid.ogg": 0.72, + "sound/vox/vox/invasion.ogg": 0.736, + "sound/vox/vox/is.ogg": 0.398, + "sound/vox/vox/it.ogg": 0.28, + "sound/vox/vox/johnson.ogg": 0.789, + "sound/vox/vox/juliet.ogg": 0.726, + "sound/vox/vox/key.ogg": 0.414, + "sound/vox/vox/kill.ogg": 0.609, + "sound/vox/vox/kilo.ogg": 0.579, + "sound/vox/vox/kit.ogg": 0.327, + "sound/vox/vox/lab.ogg": 1.245, + "sound/vox/vox/lambda.ogg": 0.691, + "sound/vox/vox/laser.ogg": 0.624, + "sound/vox/vox/last.ogg": 0.582, + "sound/vox/vox/launch.ogg": 0.743, + "sound/vox/vox/leak.ogg": 0.472, + "sound/vox/vox/leave.ogg": 0.643, + "sound/vox/vox/left.ogg": 0.515, + "sound/vox/vox/legal.ogg": 0.568, + "sound/vox/vox/level.ogg": 0.496, + "sound/vox/vox/lever.ogg": 0.494, + "sound/vox/vox/lie.ogg": 0.443, + "sound/vox/vox/lieutenant.ogg": 0.803, + "sound/vox/vox/life.ogg": 0.771, + "sound/vox/vox/light.ogg": 0.48, + "sound/vox/vox/lima.ogg": 0.513, + "sound/vox/vox/liquid.ogg": 0.58, + "sound/vox/vox/loading.ogg": 0.836, + "sound/vox/vox/locate.ogg": 0.699, + "sound/vox/vox/located.ogg": 0.869, + "sound/vox/vox/location.ogg": 0.847, + "sound/vox/vox/lock.ogg": 0.537, + "sound/vox/vox/locked.ogg": 0.511, + "sound/vox/vox/locker.ogg": 0.568, + "sound/vox/vox/lockout.ogg": 0.731, + "sound/vox/vox/lower.ogg": 0.529, + "sound/vox/vox/lowest.ogg": 0.641, + "sound/vox/vox/magnetic.ogg": 0.703, + "sound/vox/vox/main.ogg": 0.655, + "sound/vox/vox/maintenance.ogg": 0.818, + "sound/vox/vox/malfunction.ogg": 1.073, + "sound/vox/vox/man.ogg": 0.577, + "sound/vox/vox/mass.ogg": 0.547, + "sound/vox/vox/materials.ogg": 0.944, + "sound/vox/vox/maximum.ogg": 0.852, + "sound/vox/vox/may.ogg": 0.354, + "sound/vox/vox/medical.ogg": 0.634, + "sound/vox/vox/men.ogg": 0.491, + "sound/vox/vox/mercy.ogg": 0.59, + "sound/vox/vox/mesa.ogg": 0.646, + "sound/vox/vox/message.ogg": 0.705, + "sound/vox/vox/meter.ogg": 0.532, + "sound/vox/vox/micro.ogg": 0.665, + "sound/vox/vox/middle.ogg": 0.501, + "sound/vox/vox/mike.ogg": 0.525, + "sound/vox/vox/miles.ogg": 0.717, + "sound/vox/vox/military.ogg": 0.834, + "sound/vox/vox/milli.ogg": 0.463, + "sound/vox/vox/million.ogg": 0.592, + "sound/vox/vox/minefield.ogg": 0.812, + "sound/vox/vox/minimum.ogg": 0.644, + "sound/vox/vox/minutes.ogg": 0.593, + "sound/vox/vox/mister.ogg": 0.627, + "sound/vox/vox/mode.ogg": 0.556, + "sound/vox/vox/motor.ogg": 0.504, + "sound/vox/vox/motorpool.ogg": 0.938, + "sound/vox/vox/move.ogg": 0.485, + "sound/vox/vox/must.ogg": 0.435, + "sound/vox/vox/nearest.ogg": 0.636, + "sound/vox/vox/nice.ogg": 0.679, + "sound/vox/vox/nine.ogg": 0.597, + "sound/vox/vox/nineteen.ogg": 0.782, + "sound/vox/vox/ninety.ogg": 0.631, + "sound/vox/vox/no.ogg": 0.604, + "sound/vox/vox/nominal.ogg": 0.757, + "sound/vox/vox/north.ogg": 0.468, + "sound/vox/vox/not.ogg": 0.485, + "sound/vox/vox/november.ogg": 0.818, + "sound/vox/vox/now.ogg": 0.403, + "sound/vox/vox/number.ogg": 0.599, + "sound/vox/vox/objective.ogg": 0.76, + "sound/vox/vox/observation.ogg": 1.066, + "sound/vox/vox/of.ogg": 0.409, + "sound/vox/vox/officer.ogg": 0.705, + "sound/vox/vox/ok.ogg": 0.629, + "sound/vox/vox/on.ogg": 0.633, + "sound/vox/vox/one.ogg": 0.473, + "sound/vox/vox/open.ogg": 0.562, + "sound/vox/vox/operating.ogg": 0.793, + "sound/vox/vox/operations.ogg": 1.004, + "sound/vox/vox/operative.ogg": 0.818, + "sound/vox/vox/option.ogg": 0.614, + "sound/vox/vox/order.ogg": 0.558, + "sound/vox/vox/organic.ogg": 0.911, + "sound/vox/vox/oscar.ogg": 0.611, + "sound/vox/vox/out.ogg": 0.404, + "sound/vox/vox/outside.ogg": 0.821, + "sound/vox/vox/over.ogg": 0.454, + "sound/vox/vox/overload.ogg": 0.826, + "sound/vox/vox/override.ogg": 0.914, + "sound/vox/vox/pacify.ogg": 0.868, + "sound/vox/vox/pain.ogg": 0.53, + "sound/vox/vox/pal.ogg": 0.518, + "sound/vox/vox/panel.ogg": 0.592, + "sound/vox/vox/percent.ogg": 0.716, + "sound/vox/vox/perimeter.ogg": 0.675, + "sound/vox/vox/permitted.ogg": 0.673, + "sound/vox/vox/personnel.ogg": 0.807, + "sound/vox/vox/pipe.ogg": 0.481, + "sound/vox/vox/plant.ogg": 0.511, + "sound/vox/vox/platform.ogg": 0.828, + "sound/vox/vox/please.ogg": 0.647, + "sound/vox/vox/point.ogg": 0.499, + "sound/vox/vox/portal.ogg": 0.522, + "sound/vox/vox/power.ogg": 0.555, + "sound/vox/vox/presence.ogg": 0.919, + "sound/vox/vox/press.ogg": 0.54, + "sound/vox/vox/primary.ogg": 0.765, + "sound/vox/vox/proceed.ogg": 0.682, + "sound/vox/vox/processing.ogg": 1.008, + "sound/vox/vox/progress.ogg": 0.791, + "sound/vox/vox/proper.ogg": 0.629, + "sound/vox/vox/propulsion.ogg": 0.889, + "sound/vox/vox/prosecute.ogg": 0.9, + "sound/vox/vox/protective.ogg": 0.812, + "sound/vox/vox/push.ogg": 0.525, + "sound/vox/vox/quantum.ogg": 0.72, + "sound/vox/vox/quebec.ogg": 0.669, + "sound/vox/vox/question.ogg": 0.717, + "sound/vox/vox/questioning.ogg": 0.837, + "sound/vox/vox/quick.ogg": 0.478, + "sound/vox/vox/quit.ogg": 0.454, + "sound/vox/vox/radiation.ogg": 0.963, + "sound/vox/vox/radioactive.ogg": 1.189, + "sound/vox/vox/rads.ogg": 0.641, + "sound/vox/vox/rapid.ogg": 0.666, + "sound/vox/vox/reach.ogg": 0.588, + "sound/vox/vox/reached.ogg": 0.569, + "sound/vox/vox/reactor.ogg": 0.702, + "sound/vox/vox/red.ogg": 0.457, + "sound/vox/vox/relay.ogg": 0.613, + "sound/vox/vox/released.ogg": 0.689, + "sound/vox/vox/remaining.ogg": 0.672, + "sound/vox/vox/renegade.ogg": 0.783, + "sound/vox/vox/repair.ogg": 0.722, + "sound/vox/vox/report.ogg": 0.795, + "sound/vox/vox/reports.ogg": 0.919, + "sound/vox/vox/required.ogg": 0.873, + "sound/vox/vox/research.ogg": 0.799, + "sound/vox/vox/resevoir.ogg": 0.995, + "sound/vox/vox/resistance.ogg": 0.846, + "sound/vox/vox/right.ogg": 0.531, + "sound/vox/vox/rocket.ogg": 0.566, + "sound/vox/vox/roger.ogg": 0.589, + "sound/vox/vox/romeo.ogg": 0.706, + "sound/vox/vox/room.ogg": 0.496, + "sound/vox/vox/round.ogg": 0.635, + "sound/vox/vox/run.ogg": 0.462, + "sound/vox/vox/safe.ogg": 0.517, + "sound/vox/vox/safety.ogg": 0.686, + "sound/vox/vox/sargeant.ogg": 0.809, + "sound/vox/vox/satellite.ogg": 0.828, + "sound/vox/vox/save.ogg": 0.623, + "sound/vox/vox/science.ogg": 0.749, + "sound/vox/vox/scream.ogg": 0.667, + "sound/vox/vox/screen.ogg": 0.739, + "sound/vox/vox/search.ogg": 0.595, + "sound/vox/vox/second.ogg": 0.558, + "sound/vox/vox/secondary.ogg": 0.972, + "sound/vox/vox/seconds.ogg": 0.626, + "sound/vox/vox/sector.ogg": 0.602, + "sound/vox/vox/secure.ogg": 0.778, + "sound/vox/vox/secured.ogg": 0.873, + "sound/vox/vox/security.ogg": 0.938, + "sound/vox/vox/select.ogg": 0.664, + "sound/vox/vox/selected.ogg": 0.782, + "sound/vox/vox/service.ogg": 0.702, + "sound/vox/vox/seven.ogg": 0.603, + "sound/vox/vox/seventeen.ogg": 1, + "sound/vox/vox/seventy.ogg": 0.716, + "sound/vox/vox/severe.ogg": 0.686, + "sound/vox/vox/sewage.ogg": 0.675, + "sound/vox/vox/sewer.ogg": 0.543, + "sound/vox/vox/shield.ogg": 0.547, + "sound/vox/vox/shipment.ogg": 0.745, + "sound/vox/vox/shock.ogg": 0.541, + "sound/vox/vox/shoot.ogg": 0.518, + "sound/vox/vox/shower.ogg": 0.674, + "sound/vox/vox/shut.ogg": 0.483, + "sound/vox/vox/side.ogg": 0.662, + "sound/vox/vox/sierra.ogg": 0.617, + "sound/vox/vox/sight.ogg": 0.601, + "sound/vox/vox/silo.ogg": 0.636, + "sound/vox/vox/six.ogg": 0.549, + "sound/vox/vox/sixteen.ogg": 0.844, + "sound/vox/vox/sixty.ogg": 0.652, + "sound/vox/vox/slime.ogg": 0.699, + "sound/vox/vox/slow.ogg": 0.59, + "sound/vox/vox/soldier.ogg": 0.722, + "sound/vox/vox/some.ogg": 0.471, + "sound/vox/vox/someone.ogg": 0.795, + "sound/vox/vox/something.ogg": 0.603, + "sound/vox/vox/son.ogg": 0.524, + "sound/vox/vox/sorry.ogg": 0.57, + "sound/vox/vox/south.ogg": 0.655, + "sound/vox/vox/squad.ogg": 0.66, + "sound/vox/vox/square.ogg": 0.637, + "sound/vox/vox/stairway.ogg": 0.778, + "sound/vox/vox/status.ogg": 0.675, + "sound/vox/vox/sterile.ogg": 0.556, + "sound/vox/vox/sterilization.ogg": 1.198, + "sound/vox/vox/storage.ogg": 0.877, + "sound/vox/vox/sub.ogg": 0.509, + "sound/vox/vox/subsurface.ogg": 0.964, + "sound/vox/vox/sudden.ogg": 0.569, + "sound/vox/vox/suit.ogg": 0.462, + "sound/vox/vox/superconducting.ogg": 1.196, + "sound/vox/vox/supercooled.ogg": 0.957, + "sound/vox/vox/supply.ogg": 0.809, + "sound/vox/vox/surface.ogg": 0.773, + "sound/vox/vox/surrender.ogg": 0.718, + "sound/vox/vox/surround.ogg": 0.749, + "sound/vox/vox/surrounded.ogg": 0.861, + "sound/vox/vox/switch.ogg": 0.663, + "sound/vox/vox/system.ogg": 0.658, + "sound/vox/vox/systems.ogg": 0.659, + "sound/vox/vox/tactical.ogg": 0.793, + "sound/vox/vox/take.ogg": 0.52, + "sound/vox/vox/talk.ogg": 0.501, + "sound/vox/vox/tango.ogg": 0.679, + "sound/vox/vox/tank.ogg": 0.666, + "sound/vox/vox/target.ogg": 0.588, + "sound/vox/vox/team.ogg": 0.529, + "sound/vox/vox/temperature.ogg": 0.919, + "sound/vox/vox/temporal.ogg": 0.753, + "sound/vox/vox/ten.ogg": 0.503, + "sound/vox/vox/terminal.ogg": 0.608, + "sound/vox/vox/terminated.ogg": 0.884, + "sound/vox/vox/termination.ogg": 0.928, + "sound/vox/vox/test.ogg": 0.688, + "sound/vox/vox/that.ogg": 0.55, + "sound/vox/vox/the.ogg": 0.359, + "sound/vox/vox/then.ogg": 0.574, + "sound/vox/vox/there.ogg": 0.454, + "sound/vox/vox/third.ogg": 0.646, + "sound/vox/vox/thirteen.ogg": 0.765, + "sound/vox/vox/thirty.ogg": 0.577, + "sound/vox/vox/this.ogg": 0.454, + "sound/vox/vox/those.ogg": 0.598, + "sound/vox/vox/thousand.ogg": 0.696, + "sound/vox/vox/threat.ogg": 0.55, + "sound/vox/vox/three.ogg": 0.464, + "sound/vox/vox/through.ogg": 0.413, + "sound/vox/vox/time.ogg": 0.593, + "sound/vox/vox/to.ogg": 0.502, + "sound/vox/vox/top.ogg": 0.56, + "sound/vox/vox/topside.ogg": 0.854, + "sound/vox/vox/touch.ogg": 0.481, + "sound/vox/vox/towards.ogg": 0.571, + "sound/vox/vox/track.ogg": 0.688, + "sound/vox/vox/train.ogg": 0.59, + "sound/vox/vox/transportation.ogg": 1.352, + "sound/vox/vox/truck.ogg": 0.566, + "sound/vox/vox/tunnel.ogg": 0.495, + "sound/vox/vox/turn.ogg": 0.496, + "sound/vox/vox/turret.ogg": 0.47, + "sound/vox/vox/twelve.ogg": 0.525, + "sound/vox/vox/twenty.ogg": 0.585, + "sound/vox/vox/two.ogg": 0.507, + "sound/vox/vox/unauthorized.ogg": 1.177, + "sound/vox/vox/under.ogg": 0.518, + "sound/vox/vox/uniform.ogg": 0.837, + "sound/vox/vox/unlocked.ogg": 0.774, + "sound/vox/vox/until.ogg": 0.636, + "sound/vox/vox/up.ogg": 0.541, + "sound/vox/vox/upper.ogg": 0.542, + "sound/vox/vox/uranium.ogg": 0.891, + "sound/vox/vox/us.ogg": 0.165, + "sound/vox/vox/usa.ogg": 0.778, + "sound/vox/vox/use.ogg": 0.479, + "sound/vox/vox/used.ogg": 0.67, + "sound/vox/vox/user.ogg": 0.584, + "sound/vox/vox/vacate.ogg": 0.741, + "sound/vox/vox/valid.ogg": 0.612, + "sound/vox/vox/vapor.ogg": 0.589, + "sound/vox/vox/vent.ogg": 0.435, + "sound/vox/vox/ventillation.ogg": 0.966, + "sound/vox/vox/victor.ogg": 0.584, + "sound/vox/vox/violated.ogg": 0.895, + "sound/vox/vox/violation.ogg": 0.937, + "sound/vox/vox/voltage.ogg": 0.708, + "sound/vox/vox/vox_login.ogg": 10.288, + "sound/vox/vox/walk.ogg": 0.471, + "sound/vox/vox/wall.ogg": 0.559, + "sound/vox/vox/want.ogg": 0.479, + "sound/vox/vox/wanted.ogg": 0.604, + "sound/vox/vox/warm.ogg": 0.476, + "sound/vox/vox/warn.ogg": 0.466, + "sound/vox/vox/warning.ogg": 0.564, + "sound/vox/vox/waste.ogg": 0.557, + "sound/vox/vox/water.ogg": 0.506, + "sound/vox/vox/we.ogg": 0.295, + "sound/vox/vox/weapon.ogg": 0.55, + "sound/vox/vox/west.ogg": 0.483, + "sound/vox/vox/whiskey.ogg": 0.522, + "sound/vox/vox/white.ogg": 0.459, + "sound/vox/vox/wilco.ogg": 0.627, + "sound/vox/vox/will.ogg": 0.32, + "sound/vox/vox/with.ogg": 0.339, + "sound/vox/vox/without.ogg": 0.604, + "sound/vox/vox/woop.ogg": 0.63, + "sound/vox/vox/xeno.ogg": 0.702, + "sound/vox/vox/yankee.ogg": 0.692, + "sound/vox/vox/yards.ogg": 0.533, + "sound/vox/vox/year.ogg": 0.538, + "sound/vox/vox/yellow.ogg": 0.526, + "sound/vox/vox/yes.ogg": 0.517, + "sound/vox/vox/you.ogg": 0.456, + "sound/vox/vox/your.ogg": 0.403, + "sound/vox/vox/yourself.ogg": 0.93, + "sound/vox/vox/zero.ogg": 0.648, + "sound/vox/vox/zone.ogg": 0.687, + "sound/vox/vox/zulu.ogg": 0.713, + "sound/vox/vox_military/!bloop.ogg": 1.703, + "sound/vox/vox_military/!buzwarn.ogg": 1.088, + "sound/vox/vox_military/!dadeda.ogg": 2.002, + "sound/vox/vox_military/!deeoo.ogg": 1.87, + "sound/vox/vox_military/!doop.ogg": 1.93, + "sound/vox/vox_military/!error.ogg": 0.716, + "sound/vox/vox_military/!signon.ogg": 1.419, + "sound/vox/vox_military/,.ogg": 0.248, + "sound/vox/vox_military/..ogg": 0.431, + "sound/vox/vox_military/access.ogg": 1.4, + "sound/vox/vox_military/acknowledged.ogg": 1.476, + "sound/vox/vox_military/activate.ogg": 1.6, + "sound/vox/vox_military/activated.ogg": 1.4, + "sound/vox/vox_military/activity.ogg": 1.502, + "sound/vox/vox_military/advanced.ogg": 1.639, + "sound/vox/vox_military/alert.ogg": 1.333, + "sound/vox/vox_military/alien.ogg": 1.447, + "sound/vox/vox_military/all.ogg": 1.113, + "sound/vox/vox_military/alpha.ogg": 1.194, + "sound/vox/vox_military/an.ogg": 1.135, + "sound/vox/vox_military/and.ogg": 1.292, + "sound/vox/vox_military/announcement.ogg": 1.825, + "sound/vox/vox_military/antenna.ogg": 1.754, + "sound/vox/vox_military/any.ogg": 0.956, + "sound/vox/vox_military/approach.ogg": 1.599, + "sound/vox/vox_military/are.ogg": 0.778, + "sound/vox/vox_military/area.ogg": 1.229, + "sound/vox/vox_military/armed.ogg": 1.359, + "sound/vox/vox_military/armory.ogg": 1.508, + "sound/vox/vox_military/atomic.ogg": 1.743, + "sound/vox/vox_military/attention.ogg": 1.746, + "sound/vox/vox_military/authorized.ogg": 1.696, + "sound/vox/vox_military/automatic.ogg": 1.789, + "sound/vox/vox_military/away.ogg": 1.563, + "sound/vox/vox_military/b.ogg": 0.773, + "sound/vox/vox_military/back.ogg": 0.76, + "sound/vox/vox_military/base.ogg": 0.795, + "sound/vox/vox_military/biohazard.ogg": 1.326, + "sound/vox/vox_military/biological.ogg": 1.461, + "sound/vox/vox_military/black.ogg": 0.91, + "sound/vox/vox_military/blast.ogg": 0.884, + "sound/vox/vox_military/blue.ogg": 0.8, + "sound/vox/vox_military/bravo.ogg": 1.144, + "sound/vox/vox_military/breach.ogg": 1.146, + "sound/vox/vox_military/bypass.ogg": 1.273, + "sound/vox/vox_military/cable.ogg": 1.07, + "sound/vox/vox_military/center.ogg": 1.153, + "sound/vox/vox_military/central.ogg": 1.654, + "sound/vox/vox_military/chamber.ogg": 1.259, + "sound/vox/vox_military/check.ogg": 0.955, + "sound/vox/vox_military/checkpoint.ogg": 1.304, + "sound/vox/vox_military/chemical.ogg": 1.023, + "sound/vox/vox_military/clear.ogg": 1.113, + "sound/vox/vox_military/code.ogg": 1.017, + "sound/vox/vox_military/command.ogg": 1.2, + "sound/vox/vox_military/communications.ogg": 1.658, + "sound/vox/vox_military/complex.ogg": 1.148, + "sound/vox/vox_military/containment.ogg": 1.45, + "sound/vox/vox_military/contamination.ogg": 1.816, + "sound/vox/vox_military/control.ogg": 1.376, + "sound/vox/vox_military/coolant.ogg": 1.206, + "sound/vox/vox_military/core.ogg": 1.112, + "sound/vox/vox_military/crew.ogg": 1.073, + "sound/vox/vox_military/cross.ogg": 0.98, + "sound/vox/vox_military/d.ogg": 0.71, + "sound/vox/vox_military/damage.ogg": 1.144, + "sound/vox/vox_military/danger.ogg": 1.08, + "sound/vox/vox_military/day.ogg": 0.902, + "sound/vox/vox_military/deactivated.ogg": 1.547, + "sound/vox/vox_military/defense.ogg": 1.195, + "sound/vox/vox_military/delta.ogg": 0.971, + "sound/vox/vox_military/denied.ogg": 1.296, + "sound/vox/vox_military/destroy.ogg": 1.175, + "sound/vox/vox_military/detected.ogg": 1.547, + "sound/vox/vox_military/detonation.ogg": 1.469, + "sound/vox/vox_military/device.ogg": 1.168, + "sound/vox/vox_military/dimensional.ogg": 1.234, + "sound/vox/vox_military/disengaged.ogg": 1.778, + "sound/vox/vox_military/do.ogg": 0.762, + "sound/vox/vox_military/door.ogg": 0.898, + "sound/vox/vox_military/down.ogg": 0.803, + "sound/vox/vox_military/e.ogg": 0.681, + "sound/vox/vox_military/echo.ogg": 0.88, + "sound/vox/vox_military/eight.ogg": 0.951, + "sound/vox/vox_military/eighteen.ogg": 1.302, + "sound/vox/vox_military/eighty.ogg": 1.08, + "sound/vox/vox_military/electric.ogg": 1.175, + "sound/vox/vox_military/eleven.ogg": 0.952, + "sound/vox/vox_military/eliminate.ogg": 1.055, + "sound/vox/vox_military/emergency.ogg": 1.327, + "sound/vox/vox_military/energy.ogg": 1.198, + "sound/vox/vox_military/engage.ogg": 1.185, + "sound/vox/vox_military/engaged.ogg": 1.231, + "sound/vox/vox_military/enter.ogg": 1.069, + "sound/vox/vox_military/entry.ogg": 1.132, + "sound/vox/vox_military/escape.ogg": 1.255, + "sound/vox/vox_military/evacuate.ogg": 1.069, + "sound/vox/vox_military/exchange.ogg": 1.177, + "sound/vox/vox_military/experimental.ogg": 1.536, + "sound/vox/vox_military/extreme.ogg": 1.435, + "sound/vox/vox_military/facility.ogg": 1.678, + "sound/vox/vox_military/failed.ogg": 1.438, + "sound/vox/vox_military/failure.ogg": 1.443, + "sound/vox/vox_military/field.ogg": 1.414, + "sound/vox/vox_military/fifteen.ogg": 1.253, + "sound/vox/vox_military/fifty.ogg": 1.271, + "sound/vox/vox_military/fire.ogg": 1.845, + "sound/vox/vox_military/five.ogg": 1.1, + "sound/vox/vox_military/forbidden.ogg": 1.375, + "sound/vox/vox_military/force.ogg": 1.441, + "sound/vox/vox_military/forms.ogg": 1.507, + "sound/vox/vox_military/forty.ogg": 1.82, + "sound/vox/vox_military/four.ogg": 1.1, + "sound/vox/vox_military/fourteen.ogg": 1.677, + "sound/vox/vox_military/freeman.ogg": 1.546, + "sound/vox/vox_military/from.ogg": 1.41, + "sound/vox/vox_military/fuel.ogg": 1.562, + "sound/vox/vox_military/get.ogg": 1.047, + "sound/vox/vox_military/go.ogg": 1.04, + "sound/vox/vox_military/gordon.ogg": 1.082, + "sound/vox/vox_military/granted.ogg": 1.028, + "sound/vox/vox_military/green.ogg": 1.576, + "sound/vox/vox_military/handling.ogg": 1.176, + "sound/vox/vox_military/hanger.ogg": 1.196, + "sound/vox/vox_military/have.ogg": 0.969, + "sound/vox/vox_military/hazard.ogg": 0.999, + "sound/vox/vox_military/health.ogg": 0.948, + "sound/vox/vox_military/heat.ogg": 0.869, + "sound/vox/vox_military/helecopter.ogg": 1.419, + "sound/vox/vox_military/helium.ogg": 1.373, + "sound/vox/vox_military/high.ogg": 1.203, + "sound/vox/vox_military/hostal.ogg": 1.395, + "sound/vox/vox_military/hostile.ogg": 1.395, + "sound/vox/vox_military/hotel.ogg": 1.412, + "sound/vox/vox_military/hundred.ogg": 1.136, + "sound/vox/vox_military/hydro.ogg": 1.048, + "sound/vox/vox_military/illegal.ogg": 1.007, + "sound/vox/vox_military/immediate.ogg": 1.121, + "sound/vox/vox_military/immediately.ogg": 1.389, + "sound/vox/vox_military/in.ogg": 1.072, + "sound/vox/vox_military/india.ogg": 0.962, + "sound/vox/vox_military/inoperative.ogg": 1.496, + "sound/vox/vox_military/inside.ogg": 1.009, + "sound/vox/vox_military/inspection.ogg": 1.243, + "sound/vox/vox_military/is.ogg": 0.904, + "sound/vox/vox_military/kilo.ogg": 1.434, + "sound/vox/vox_military/kilo02.ogg": 1.109, + "sound/vox/vox_military/lambda.ogg": 1.149, + "sound/vox/vox_military/laser.ogg": 1.077, + "sound/vox/vox_military/launch.ogg": 1.26, + "sound/vox/vox_military/leak.ogg": 0.977, + "sound/vox/vox_military/level.ogg": 0.953, + "sound/vox/vox_military/lima.ogg": 1.232, + "sound/vox/vox_military/lima_alt.ogg": 1.219, + "sound/vox/vox_military/liquid.ogg": 1.093, + "sound/vox/vox_military/lock.ogg": 0.936, + "sound/vox/vox_military/locked.ogg": 1.038, + "sound/vox/vox_military/lockout.ogg": 1.231, + "sound/vox/vox_military/lower.ogg": 1.099, + "sound/vox/vox_military/main.ogg": 1.51, + "sound/vox/vox_military/maintenance.ogg": 1.918, + "sound/vox/vox_military/malfunction.ogg": 1.833, + "sound/vox/vox_military/materials.ogg": 2.031, + "sound/vox/vox_military/may.ogg": 1.347, + "sound/vox/vox_military/medical.ogg": 1.39, + "sound/vox/vox_military/men.ogg": 1.156, + "sound/vox/vox_military/mesa.ogg": 1.639, + "sound/vox/vox_military/message.ogg": 1.171, + "sound/vox/vox_military/mic_mike.ogg": 1.067, + "sound/vox/vox_military/mike.ogg": 1.067, + "sound/vox/vox_military/military.ogg": 1.584, + "sound/vox/vox_military/motorpool.ogg": 1.477, + "sound/vox/vox_military/move.ogg": 1.175, + "sound/vox/vox_military/must.ogg": 1.478, + "sound/vox/vox_military/nearest.ogg": 1.389, + "sound/vox/vox_military/nine.ogg": 1.099, + "sound/vox/vox_military/nineteen.ogg": 1.509, + "sound/vox/vox_military/ninety.ogg": 1.237, + "sound/vox/vox_military/no.ogg": 1.091, + "sound/vox/vox_military/noe.ogg": 1.026, + "sound/vox/vox_military/not.ogg": 1.218, + "sound/vox/vox_military/now.ogg": 1.162, + "sound/vox/vox_military/objective.ogg": 1.624, + "sound/vox/vox_military/of.ogg": 1.118, + "sound/vox/vox_military/on.ogg": 0.949, + "sound/vox/vox_military/one.ogg": 1, + "sound/vox/vox_military/open.ogg": 0.937, + "sound/vox/vox_military/operating.ogg": 1.365, + "sound/vox/vox_military/option.ogg": 1.269, + "sound/vox/vox_military/override.ogg": 1.374, + "sound/vox/vox_military/percent.ogg": 1.339, + "sound/vox/vox_military/perimeter.ogg": 1.462, + "sound/vox/vox_military/permitted.ogg": 1.307, + "sound/vox/vox_military/perpulsion.ogg": 1.416, + "sound/vox/vox_military/personnel.ogg": 1.471, + "sound/vox/vox_military/plant.ogg": 1.187, + "sound/vox/vox_military/please.ogg": 1.339, + "sound/vox/vox_military/portal.ogg": 1.004, + "sound/vox/vox_military/power.ogg": 1.173, + "sound/vox/vox_military/primary.ogg": 1.329, + "sound/vox/vox_military/prosecute.ogg": 1.418, + "sound/vox/vox_military/questioning.ogg": 1.536, + "sound/vox/vox_military/radiation.ogg": 1.665, + "sound/vox/vox_military/radioactive.ogg": 1.58, + "sound/vox/vox_military/reach.ogg": 1.037, + "sound/vox/vox_military/reactor.ogg": 1.152, + "sound/vox/vox_military/relay.ogg": 1.201, + "sound/vox/vox_military/released.ogg": 1.305, + "sound/vox/vox_military/remaining.ogg": 1.236, + "sound/vox/vox_military/renegade.ogg": 1.452, + "sound/vox/vox_military/repair.ogg": 1.202, + "sound/vox/vox_military/report.ogg": 1.352, + "sound/vox/vox_military/reports.ogg": 1.207, + "sound/vox/vox_military/required.ogg": 1.4, + "sound/vox/vox_military/research.ogg": 1.439, + "sound/vox/vox_military/resistance.ogg": 1.567, + "sound/vox/vox_military/rocket.ogg": 1.365, + "sound/vox/vox_military/safety.ogg": 1.546, + "sound/vox/vox_military/satellite.ogg": 1.401, + "sound/vox/vox_military/science.ogg": 1.387, + "sound/vox/vox_military/search.ogg": 1.209, + "sound/vox/vox_military/second.ogg": 1.333, + "sound/vox/vox_military/secondary.ogg": 1.557, + "sound/vox/vox_military/seconds.ogg": 1.508, + "sound/vox/vox_military/sector.ogg": 1.162, + "sound/vox/vox_military/secure.ogg": 1.4, + "sound/vox/vox_military/secured.ogg": 1.438, + "sound/vox/vox_military/security.ogg": 1.4, + "sound/vox/vox_military/service.ogg": 1.464, + "sound/vox/vox_military/seven.ogg": 1.176, + "sound/vox/vox_military/seventeen.ogg": 1.312, + "sound/vox/vox_military/seventy.ogg": 1.191, + "sound/vox/vox_military/severe.ogg": 1.343, + "sound/vox/vox_military/sheild.ogg": 1.228, + "sound/vox/vox_military/shoot.ogg": 1.1, + "sound/vox/vox_military/sierra.ogg": 1.317, + "sound/vox/vox_military/sight.ogg": 0.976, + "sound/vox/vox_military/silo.ogg": 1.269, + "sound/vox/vox_military/six.ogg": 1.1, + "sound/vox/vox_military/sixteen.ogg": 1.507, + "sound/vox/vox_military/sixty.ogg": 1.061, + "sound/vox/vox_military/sorry.ogg": 1.061, + "sound/vox/vox_military/sqaud.ogg": 1.423, + "sound/vox/vox_military/status.ogg": 1.284, + "sound/vox/vox_military/sterilization.ogg": 1.794, + "sound/vox/vox_military/storage.ogg": 1.308, + "sound/vox/vox_military/supercooled.ogg": 1.677, + "sound/vox/vox_military/surrender.ogg": 1.447, + "sound/vox/vox_military/system.ogg": 1.378, + "sound/vox/vox_military/systems.ogg": 1.734, + "sound/vox/vox_military/target.ogg": 1.174, + "sound/vox/vox_military/team.ogg": 1.082, + "sound/vox/vox_military/ten.ogg": 1.086, + "sound/vox/vox_military/terminated.ogg": 1.41, + "sound/vox/vox_military/test.ogg": 1.087, + "sound/vox/vox_military/the.ogg": 0.967, + "sound/vox/vox_military/thirtteen.ogg": 1.238, + "sound/vox/vox_military/thirty.ogg": 1.111, + "sound/vox/vox_military/this.ogg": 1.026, + "sound/vox/vox_military/three.ogg": 1, + "sound/vox/vox_military/time.ogg": 0.997, + "sound/vox/vox_military/to.ogg": 0.867, + "sound/vox/vox_military/topside.ogg": 1.336, + "sound/vox/vox_military/track.ogg": 1.124, + "sound/vox/vox_military/train.ogg": 1.143, + "sound/vox/vox_military/turret.ogg": 1.025, + "sound/vox/vox_military/twelve.ogg": 1.155, + "sound/vox/vox_military/twenty.ogg": 1.025, + "sound/vox/vox_military/two.ogg": 0.96, + "sound/vox/vox_military/unauthorized.ogg": 1.663, + "sound/vox/vox_military/under.ogg": 1.258, + "sound/vox/vox_military/units.ogg": 1.27, + "sound/vox/vox_military/until.ogg": 1.342, + "sound/vox/vox_military/up.ogg": 0.85, + "sound/vox/vox_military/uranium.ogg": 1.266, + "sound/vox/vox_military/use.ogg": 1.076, + "sound/vox/vox_military/violation.ogg": 1.593, + "sound/vox/vox_military/voltage.ogg": 1.316, + "sound/vox/vox_military/wanted.ogg": 1.271, + "sound/vox/vox_military/warning.ogg": 1.01, + "sound/vox/vox_military/we.ogg": 0.922, + "sound/vox/vox_military/weapon.ogg": 1.256, + "sound/vox/vox_military/will.ogg": 1.047, + "sound/vox/vox_military/with.ogg": 1.072, + "sound/vox/vox_military/yellow.ogg": 1.31, + "sound/vox/vox_military/you.ogg": 1.054, + "sound/vox/vox_military/your.ogg": 1.164, + "sound/vox/vox_military/zero.ogg": 1.033, + "sound/vox/vox_military/zone.ogg": 1.189, + "sound/weapons/handling/flamer_ignition.ogg": 1.51, + "sound/weapons/handling/flamer_reload.ogg": 1.678, + "sound/weapons/handling/flamer_unload.ogg": 1.829, + "sound/weapons/handling/gun_ar10_cocked.ogg": 0.832, + "sound/weapons/handling/gun_ar10_unload.ogg": 0.439, + "sound/weapons/handling/gun_boltaction_close.ogg": 0.553, + "sound/weapons/handling/gun_boltaction_open.ogg": 0.507, + "sound/weapons/handling/gun_boomslang_hitsound.ogg": 0.471, + "sound/weapons/handling/gun_boomslang_lever.ogg": 1.061, + "sound/weapons/handling/gun_burst_toggle.ogg": 0.235, + "sound/weapons/handling/gun_burst_toggle.wav": 0.235, + "sound/weapons/handling/gun_cmb_click1.ogg": 0.516, + "sound/weapons/handling/gun_cmb_click2.ogg": 0.294, + "sound/weapons/handling/gun_jam_click.ogg": 0.381, + "sound/weapons/handling/gun_jam_initial_click.ogg": 0.167, + "sound/weapons/handling/gun_jam_rack_1.ogg": 0.757, + "sound/weapons/handling/gun_jam_rack_2.ogg": 0.668, + "sound/weapons/handling/gun_jam_rack_3.ogg": 0.925, + "sound/weapons/handling/gun_jam_rack_success.ogg": 3.03, + "sound/weapons/handling/gun_lever_action_hitsound.ogg": 0.471, + "sound/weapons/handling/gun_lever_action_lever.ogg": 0.628, + "sound/weapons/handling/gun_lever_action_reload.ogg": 0.49, + "sound/weapons/handling/gun_lever_action_superload.ogg": 0.78, + "sound/weapons/handling/gun_m16_reload.ogg": 2.066, + "sound/weapons/handling/gun_m16_unload.ogg": 0.798, + "sound/weapons/handling/gun_mar40_reload.ogg": 1.887, + "sound/weapons/handling/gun_mar40_unload.ogg": 1.738, + "sound/weapons/handling/gun_mou_close.ogg": 0.528, + "sound/weapons/handling/gun_mou_open.ogg": 0.416, + "sound/weapons/handling/gun_mou_reload.ogg": 0.277, + "sound/weapons/handling/gun_sg_reload.ogg": 1.014, + "sound/weapons/handling/gun_sg_unload.ogg": 1.11, + "sound/weapons/handling/gun_su6_reload.ogg": 1.161, + "sound/weapons/handling/gun_su6_unload.ogg": 1.145, + "sound/weapons/handling/gun_u7_activate.ogg": 0.734, + "sound/weapons/handling/gun_underbarrel_activate.ogg": 0.69, + "sound/weapons/handling/gun_underbarrel_deactivate.ogg": 0.734, + "sound/weapons/handling/gun_underbarrel_flamer_activate.ogg": 1.884, + "sound/weapons/handling/gun_vulture_bolt_close.ogg": 2.259, + "sound/weapons/handling/gun_vulture_bolt_eject.ogg": 0.967, + "sound/weapons/handling/hpr_reload.ogg": 1.588, + "sound/weapons/handling/hpr_unload.ogg": 1.065, + "sound/weapons/handling/l42_reload.ogg": 1.084, + "sound/weapons/handling/l42_unload.ogg": 0.473, + "sound/weapons/handling/m40sd_reload.ogg": 0.81, + "sound/weapons/handling/m40sd_unload.ogg": 0.669, + "sound/weapons/handling/m41_reload.ogg": 0.516, + "sound/weapons/handling/m41_unload.ogg": 0.758, + "sound/weapons/handling/m79_break_open.ogg": 0.323, + "sound/weapons/handling/m79_reload.ogg": 0.523, + "sound/weapons/handling/m79_shoot.ogg": 2.17, + "sound/weapons/handling/m79_unload.ogg": 0.366, + "sound/weapons/handling/mag_refill_1.ogg": 1.032, + "sound/weapons/handling/mag_refill_2.ogg": 1.152, + "sound/weapons/handling/mag_refill_3.ogg": 1.104, + "sound/weapons/handling/nsg23_cocked.ogg": 0.831, + "sound/weapons/handling/nsg23_reload.ogg": 0.548, + "sound/weapons/handling/nsg23_unload.ogg": 0.278, + "sound/weapons/handling/pkd_close_chamber.ogg": 0.24, + "sound/weapons/handling/pkd_cock.wav": 0.235, + "sound/weapons/handling/pkd_open_chamber.ogg": 0.447, + "sound/weapons/handling/pkd_speed_load.ogg": 0.902, + "sound/weapons/handling/safety_toggle.ogg": 0.446, + "sound/weapons/handling/smg_reload.ogg": 0.91, + "sound/weapons/handling/smg_unload.ogg": 0.334, + "sound/weapons/handling/ugl_close.ogg": 0.184, + "sound/weapons/handling/ugl_open.ogg": 0.209, + "sound/weapons/vehicles/autocannon_fire.ogg": 0.972, + "sound/weapons/vehicles/autocannon_fire_old.ogg": 0.698, + "sound/weapons/vehicles/cannon_distant1.ogg": 4.833, + "sound/weapons/vehicles/cannon_distant2.ogg": 5.046, + "sound/weapons/vehicles/cannon_fire1.ogg": 7.726, + "sound/weapons/vehicles/cannon_fire2.ogg": 7.042, + "sound/weapons/vehicles/dual_autocannon_fire.ogg": 1.894, + "sound/weapons/vehicles/flamethrower.ogg": 3.561, + "sound/weapons/vehicles/minigun_loop.ogg": 2.244, + "sound/weapons/vehicles/minigun_select.ogg": 0.141, + "sound/weapons/vehicles/minigun_start.ogg": 1.147, + "sound/weapons/vehicles/minigun_stop.ogg": 1.444, + "sound/weapons/vehicles/smokelauncher_fire.ogg": 1.909, + "sound/soundscape/lv522/indoors/indoor_wind.ogg": 15.273, + "sound/soundscape/lv522/indoors/indoor_wind2.ogg": 4.901, + "sound/soundscape/lv522/outdoors/wind1.ogg": 17.645, + "sound/soundscape/lv522/outdoors/wind2.ogg": 18.633, + "sound/soundscape/lv522/outdoors/wind3.ogg": 15.108 +} From afc99eac841b5a3881a84cd0381f3a6004f50f6b Mon Sep 17 00:00:00 2001 From: Doubleumc Date: Mon, 5 Aug 2024 14:59:31 -0400 Subject: [PATCH 3/5] hardcode rework compat integrate the echo changes --- code/datums/soundOutput.dm | 4 +++- code/game/sound.dm | 29 ++++++++++++++++++++++++++++- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/code/datums/soundOutput.dm b/code/datums/soundOutput.dm index 2670d06475..6886eff736 100644 --- a/code/datums/soundOutput.dm +++ b/code/datums/soundOutput.dm @@ -36,6 +36,7 @@ sound.pitch = template.pitch sound.status = template.status sound.falloff = template.falloff + sound.echo = template.echo.Copy() if(update) ENABLE_BITFIELD(sound.status, SOUND_UPDATE) @@ -44,7 +45,8 @@ ENABLE_BITFIELD(sound.status, SOUND_MUTE) if(CHECK_BITFIELD(template.sound_flags, SOUND_ENVIRONMENTAL)) - sound.echo = SOUND_ECHO_REVERB_ON + sound.echo[ECHO_ROOM] = 0 + sound.echo[ECHO_ROOMHF] = 0 if(CHECK_BITFIELD(template.sound_flags, SOUND_TRACKED) && !update) if(GLOB.spatial_sound_tracking && GLOB.sound_lengths["[template.file]"] SECONDS >= GLOB.spatial_sound_tracking_min_length) //debug diff --git a/code/game/sound.dm b/code/game/sound.dm index a9f0339401..e6609008b5 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -30,6 +30,7 @@ var/z = 0 /// Within the falloff distance a sound stays at a constant volume. Outside of this distance it attenuates at a rate determined by the falloff. Higher values fade more slowly. var/falloff = 1 + var/list/echo = SOUND_ECHO_REVERB_OFF //custom vars /// Origin atom for the sound. Used for sound position. @@ -61,6 +62,7 @@ src.y = source_template.y src.z = source_template.z src.falloff = source_template.falloff + src.echo = source_template.echo.Copy() src.source = source_template.source src.volume_cat = source_template.volume_cat @@ -82,6 +84,11 @@ src.y = source_sound.y src.z = source_sound.z src.falloff = source_sound.falloff + if(islist(source_sound.echo)) + var/list/source_sound_echo = source_sound.echo + src.echo = source_sound_echo.Copy() + else + src.echo = source_sound.echo else src.file = get_sfx(file) @@ -129,6 +136,11 @@ template.frequency = GET_RANDOM_FREQ // Same frequency for everybody template.status = status template.falloff = falloff + if(islist(echo)) + for(var/pos in 1 to length(echo)) + if(isnull(echo[pos])) + continue + template.echo[pos] = echo[pos] template.source = source template.volume_cat = vol_cat @@ -151,6 +163,11 @@ if(random_freq) template.frequency = GET_RANDOM_FREQ template.status = status + if(islist(echo)) + for(var/pos in 1 to length(echo)) + if(isnull(echo[pos])) + continue + template.echo[pos] = echo[pos] template.volume_cat = vol_cat @@ -158,7 +175,7 @@ return template.channel /// Plays sound to all mobs that are map-level contents of an area -/proc/playsound_area(area/area, sound/soundin, vol = 100, channel, vol_cat = VOLUME_SFX, status) +/proc/playsound_area(area/area, sound/soundin, vol = 100, channel, vol_cat = VOLUME_SFX, status, list/echo) if(!isarea(area)) error("[area] is not an area and is trying to play an area sound: [soundin]") return FALSE @@ -168,6 +185,11 @@ template.channel = channel || get_free_channel() template.volume = vol template.status = status + if(islist(echo)) + for(var/pos in 1 to length(echo)) + if(isnull(echo[pos])) + continue + template.echo[pos] = echo[pos] template.volume_cat = vol_cat @@ -193,6 +215,11 @@ template.channel = SOUND_CHANNEL_Z template.volume = volume + if(islist(echo)) + for(var/pos in 1 to length(echo)) + if(isnull(echo[pos])) + continue + template.echo[pos] = echo[pos] template.volume_cat = vol_cat From cc4aa0cf868b4934501f5da5f5e78daa7daddce7 Mon Sep 17 00:00:00 2001 From: Doubleumc Date: Mon, 5 Aug 2024 15:30:46 -0400 Subject: [PATCH 4/5] sound_template.get_sound parsing sounds is now the sound_template's job, some more documentation, echo fixes, misc cleanup --- code/__DEFINES/sounds.dm | 3 +- code/_globalvars/lists/sounds.dm | 2 +- code/datums/soundOutput.dm | 31 ++++++++----------- code/game/sound.dm | 53 +++++++++++++++++++++++++++----- sound/soundlist.txt | 19 ------------ 5 files changed, 59 insertions(+), 49 deletions(-) delete mode 100644 sound/soundlist.txt diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index 2e7f608ff4..498e68486d 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -61,8 +61,7 @@ #define SOUND_ENVIRONMENT_DIZZY 24 #define SOUND_ENVIRONMENT_PSYCHOTIC 25 -#define SOUND_ECHO_REVERB_ON list(0, 0, 0, 0, 0, 0.0, 0, 0.25, 1.5, 1.0, 0, 1.0, 0, 0.0, 0.0, 0.0, 1.0, 0) -#define SOUND_ECHO_REVERB_OFF list(0, 0, -10000, -10000, 0, 0.0, 0, 0.25, 1.5, 1.0, 0, 1.0, 0, 0.0, 0.0, 0.0, 1.0, 0) //-10000 to Room & RoomHF makes enviromental reverb effectively inaudible +#define SOUND_ECHO_REVERB_OFF list(null, null, -10000, -10000, null, null, null, null, null, null, null, null, null, null, null, null, null, null) //-10000 to Room & RoomHF makes enviromental reverb effectively inaudible, nulls are interpreted as default values /// Enviromental sounds are effected by environmental reverb #define SOUND_ENVIRONMENTAL (1<<4) diff --git a/code/_globalvars/lists/sounds.dm b/code/_globalvars/lists/sounds.dm index c8d6548305..aa3759126c 100644 --- a/code/_globalvars/lists/sounds.dm +++ b/code/_globalvars/lists/sounds.dm @@ -1,6 +1,6 @@ #define SOUND_LENGTHS_FILEPATH "sound/sound_lengths.txt" -/// Assoc list of of all sounds in the codebase, in the form "sound/path.ext" = length in seconds +/// Assoc list of of all sounds in the codebase, in the form "[sound/path.ext]" = length in seconds GLOBAL_LIST_INIT(sound_lengths, json_decode(file2text(SOUND_LENGTHS_FILEPATH))) /* diff --git a/code/datums/soundOutput.dm b/code/datums/soundOutput.dm index 6886eff736..21f0a430f5 100644 --- a/code/datums/soundOutput.dm +++ b/code/datums/soundOutput.dm @@ -7,7 +7,7 @@ /// Currently applied environmental reverb. VAR_PROTECTED/owner_environment = SOUND_ENVIRONMENT_NONE - /// Assoc list of important channels and their assigned template, in the form of: "channel" = template + /// Assoc list of important channels and their assigned template, in the form of: "[channel]" = template var/list/tracked_channels = list() /datum/soundOutput/New(client/client) @@ -26,31 +26,24 @@ owner = null return ..() -/datum/soundOutput/proc/process_sound(datum/sound_template/template, update) - var/sound/sound = sound(template.file, template.repeat, template.wait) +/** + * Translates a sound_template into an appropriate sound for the owner and sends it. + * + * Arguments: + * * template - the sound_template + * * update - if truthy updates the existing sound on the template's channel, otherwise overwrites it + */ +/datum/soundOutput/proc/process_sound(datum/sound_template/template, update = FALSE) + var/sound/sound = template.get_sound(update) - sound.channel = template.channel - sound.volume = template.volume * owner.volume_preferences[template.volume_cat] - sound.frequency = template.frequency - sound.offset = template.offset - sound.pitch = template.pitch - sound.status = template.status - sound.falloff = template.falloff - sound.echo = template.echo.Copy() - - if(update) - ENABLE_BITFIELD(sound.status, SOUND_UPDATE) + sound.volume *= owner.volume_preferences[template.volume_cat] if(CHECK_BITFIELD(template.sound_flags, SOUND_CAN_DEAFEN) && CHECK_BITFIELD(src.status_flags, EAR_DEAF_MUTE)) ENABLE_BITFIELD(sound.status, SOUND_MUTE) - if(CHECK_BITFIELD(template.sound_flags, SOUND_ENVIRONMENTAL)) - sound.echo[ECHO_ROOM] = 0 - sound.echo[ECHO_ROOMHF] = 0 - if(CHECK_BITFIELD(template.sound_flags, SOUND_TRACKED) && !update) if(GLOB.spatial_sound_tracking && GLOB.sound_lengths["[template.file]"] SECONDS >= GLOB.spatial_sound_tracking_min_length) //debug - tracked_channels[num2text(sound.channel)] = template + tracked_channels["[sound.channel]"] = template if(!CHECK_BITFIELD(template.sound_flags, SOUND_SPATIAL)) //non-spatial sound.x = template.x diff --git a/code/game/sound.dm b/code/game/sound.dm index e6609008b5..486409f097 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -6,8 +6,8 @@ //copied sound datum vars; environment, echo, pan, params, priority deliberately omitted /// This is the file that will be played when the sound is sent to a player. var/file - /// Set to TRUE to repeat the sound indefinitely once it begins playing, 2 to repeat it forwards and backwards. - var/repeat = FALSE + /// Set to 1 to repeat the sound indefinitely once it begins playing, 2 to repeat it forwards and backwards. + var/repeat = 0 /// Set to TRUE to wait for other sounds in this channel to finish before playing this one. var/wait = FALSE /// For sound effects, set to 1 through 1024 to choose a specific sound channel. For values of 0 or less, any available channel will be chosen. @@ -30,12 +30,13 @@ var/z = 0 /// Within the falloff distance a sound stays at a constant volume. Outside of this distance it attenuates at a rate determined by the falloff. Higher values fade more slowly. var/falloff = 1 + /// If set to an 18-element list, this value customizes reverbration settings for this sound only. A null or non-numeric value for any setting will select its default. var/list/echo = SOUND_ECHO_REVERB_OFF //custom vars /// Origin atom for the sound. Used for sound position. var/atom/source - /// The category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes) and VOLUME_ADM (Admin sounds and some other stuff) + /// The category of this sound for client volume purposes: VOLUME_SFX (Sound effects), VOLUME_AMB (Ambience and Soundscapes), and VOLUME_ADM (Admin sounds and some other stuff). var/volume_cat = VOLUME_SFX /// For spatial sounds, maximum range the sound is played. Defaults to volume * 0.25. var/range = 0 @@ -96,6 +97,42 @@ source = null return ..() +/** + * Creates a sound datum based on the template. + * + * Arguments: + * * update - if truthy the sound datum only has values that will cause no change to the sound, and can be modified from there + * + * Returns a sound datum + */ +/datum/sound_template/proc/get_sound(update) + var/sound/sound = sound(/*repeat = src.repeat,*/ /*wait = src.wait,*/ channel = src.channel, volume = src.volume) + //sound.pan = src.pan + //sound.params = src.pan + //sound.priority = src.priority + sound.status = src.status + sound.x = src.x + sound.y = src.y + sound.z = src.z + sound.falloff = src.falloff + //repeat, wait, pan, params, priority commented out as currently unused + + if(update) + sound.status |= SOUND_UPDATE + sound.echo = null + else //only needed when not updating as their default values indicate no change + sound.file = src.file + sound.frequency = src.frequency + sound.offset = src.offset + sound.pitch = src.pitch + //sound.environment = src.environment + if(CHECK_BITFIELD(sound_flags, SOUND_ENVIRONMENTAL)) + sound.echo[ECHO_ROOM] = 0 + sound.echo[ECHO_ROOMHF] = 0 + //environment commented out as currently nonexistent on templates + + return sound + /proc/get_free_channel() var/static/cur_chan = 1 . = cur_chan++ @@ -138,14 +175,14 @@ template.falloff = falloff if(islist(echo)) for(var/pos in 1 to length(echo)) - if(isnull(echo[pos])) + if(!isnum(echo[pos])) continue template.echo[pos] = echo[pos] template.source = source template.volume_cat = vol_cat template.range = sound_range || vol * 0.25 - ENABLE_BITFIELD(template.sound_flags, SOUND_SPATIAL|SOUND_ENVIRONMENTAL|SOUND_CAN_DEAFEN|SOUND_TRACKED) + ENABLE_BITFIELD(template.sound_flags, SOUND_SPATIAL|SOUND_ENVIRONMENTAL|SOUND_CAN_DEAFEN|SOUND_TRACKED) //TODO: limit to sounds that need it SSsound.queue(template) return template.channel @@ -165,7 +202,7 @@ template.status = status if(islist(echo)) for(var/pos in 1 to length(echo)) - if(isnull(echo[pos])) + if(!isnum(echo[pos])) continue template.echo[pos] = echo[pos] @@ -187,7 +224,7 @@ template.status = status if(islist(echo)) for(var/pos in 1 to length(echo)) - if(isnull(echo[pos])) + if(!isnum(echo[pos])) continue template.echo[pos] = echo[pos] @@ -217,7 +254,7 @@ template.volume = volume if(islist(echo)) for(var/pos in 1 to length(echo)) - if(isnull(echo[pos])) + if(!isnum(echo[pos])) continue template.echo[pos] = echo[pos] diff --git a/sound/soundlist.txt b/sound/soundlist.txt deleted file mode 100644 index 8b5daaa90f..0000000000 --- a/sound/soundlist.txt +++ /dev/null @@ -1,19 +0,0 @@ -sound/misc/Game_Over_Man.ogg -sound/misc/asses_kicked.ogg -sound/misc/hardon.ogg -sound/misc/outstanding_marines.ogg -sound/misc/sadtrombone.ogg -sound/misc/distressbeacon_Sunshine.ogg -sound/misc/surrounded_by_assholes.ogg -sound/misc/good_is_dumb.ogg -sound/AI/commandreport.ogg -sound/AI/evacuate.ogg -sound/AI/ionstorm.ogg -sound/AI/poweroff.ogg -sound/AI/poweron.ogg -sound/AI/selfdestruct.ogg -sound/AI/selfdestruct_deactivated.ogg -sound/AI/shuttlecalled.ogg -sound/AI/shuttlerecalled.ogg -sound/AI/selfdestruct_10m.ogg -sound/AI/selfdestruct_5m.ogg From 4d28d4eee96048847ebb8660fd21a1e3c50bb818 Mon Sep 17 00:00:00 2001 From: Doubleumc Date: Sun, 11 Aug 2024 00:25:13 -0400 Subject: [PATCH 5/5] minimal hardcode rework port minimum bits needed for soundcode parity --- code/__DEFINES/sounds.dm | 21 +++++++++++++++++++++ code/game/sound.dm | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index 498e68486d..079d5c9258 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -32,6 +32,27 @@ #define SOUND_CHANNEL_LOBBY 1023 #define SOUND_CHANNEL_Z 1024 +//default byond sound echo list index positions. +//ECHO_DIRECT and ECHO_ROOM are the only two that actually appear to do anything, and represent the dry and wet channels of the environment effects, respectively. +#define ECHO_DIRECT 1 +#define ECHO_DIRECTHF 2 +#define ECHO_ROOM 3 +#define ECHO_ROOMHF 4 +#define ECHO_OBSTRUCTION 5 +#define ECHO_OBSTRUCTIONLFRATIO 6 +#define ECHO_OCCLUSION 7 +#define ECHO_OCCLUSIONLFRATIO 8 +#define ECHO_OCCLUSIONROOMRATIO 9 +#define ECHO_OCCLUSIONDIRECTRATIO 10 +#define ECHO_EXCLUSION 11 +#define ECHO_EXCLUSIONLFRATIO 12 +#define ECHO_OUTSIDEVOLUMEHF 13 +#define ECHO_DOPPLERFACTOR 14 +#define ECHO_ROLLOFFFACTOR 15 +#define ECHO_ROOMROLLOFFFACTOR 16 +#define ECHO_AIRABSORPTIONFACTOR 17 +#define ECHO_FLAGS 18 + //default byond sound environments #define SOUND_ENVIRONMENT_NONE -1 #define SOUND_ENVIRONMENT_GENERIC 0 diff --git a/code/game/sound.dm b/code/game/sound.dm index 486409f097..fcbdd7f283 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -155,7 +155,7 @@ * * Returns selected channel on success, FALSE on failure */ -/proc/playsound(atom/source, sound/soundin, vol = 100, vary, sound_range, vol_cat = VOLUME_SFX, channel, status, falloff = 1) +/proc/playsound(atom/source, sound/soundin, vol = 100, vary, sound_range, vol_cat = VOLUME_SFX, channel, status, falloff = 1, list/echo) if(!get_turf(source)) error("[source] has no turf and is trying to play a spatial sound: [soundin]") return FALSE @@ -188,7 +188,7 @@ return template.channel //This is the replacement for playsound_local. Use this for sending sounds directly to a client -/proc/playsound_client(client/client, sound/soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel, status) +/proc/playsound_client(client/client, sound/soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel, status, list/echo) if(!istype(client)) error("[client] is not a client and is trying to play a client sound: [soundin]") return FALSE @@ -247,7 +247,7 @@ /// Play sound for all on-map clients on a list of z-levels. Good for ambient sounds. -/proc/playsound_z(list/z_values, sound/soundin, volume = 100, vol_cat = VOLUME_SFX) +/proc/playsound_z(list/z_values, sound/soundin, volume = 100, vol_cat = VOLUME_SFX, list/echo) var/datum/sound_template/template = new(soundin) template.channel = SOUND_CHANNEL_Z