aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2009-08-22 06:41:04 +0800
committermiwi <miwi@FreeBSD.org>2009-08-22 06:41:04 +0800
commitdc4a1b0691fc95a992a858315201c99fade9b62b (patch)
treeeb196c06abfc2ac3b9311ed298463e5bc381ce2a
parentf1ec3a820450374541eb6382d4f3214b1852985a (diff)
downloadfreebsd-ports-gnome-dc4a1b0691fc95a992a858315201c99fade9b62b.tar.gz
freebsd-ports-gnome-dc4a1b0691fc95a992a858315201c99fade9b62b.tar.zst
freebsd-ports-gnome-dc4a1b0691fc95a992a858315201c99fade9b62b.zip
FreeSwitch Voip SoftSwitch & OpenSource PBX
WWW: http://www.freeswitch.org/ PR: ports/137891 Submitted by: Richard Neese <r.neese at gmail.com>
-rw-r--r--net/Makefile1
-rw-r--r--net/freeswitch/Makefile442
-rw-r--r--net/freeswitch/distinfo9
-rw-r--r--net/freeswitch/files/freeswitch.in50
-rw-r--r--net/freeswitch/files/patch-build-modules.conf.in18
-rw-r--r--net/freeswitch/pkg-descr3
-rw-r--r--net/freeswitch/pkg-plist1510
7 files changed, 2033 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile
index b4291d29c9cf..ee71ba944003 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -155,6 +155,7 @@
SUBDIR += freeradius-client
SUBDIR += freeradius-mysql
SUBDIR += freeradius2
+ SUBDIR += freeswitch
SUBDIR += freevrrpd
SUBDIR += freewais-sf
SUBDIR += frickin
diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile
new file mode 100644
index 000000000000..061ef8b68bd5
--- /dev/null
+++ b/net/freeswitch/Makefile
@@ -0,0 +1,442 @@
+# Ports collection makefile for: freeswitch
+# Date created: Augets 9, 2009
+# Whom: Richard Neese <r.neese@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= freeswitch
+PORTVERSION= 1.0.4.1
+CATEGORIES= net
+MASTER_SITES= http://files.freeswitch.org/:source1 \
+ http://dl.getdropbox.com/u/152504/:source2 \
+ http://www.freeswitch.org/eg/:source3
+DISTNAME= ${PORTNAME}-${PORTVERSION}
+DISTFILES= pizza_gram.tar.gz:source1 \
+ freeswitch-1.0.4.1.tar.gz:source2 \
+ pizza_sounds.tar.gz:source3
+EXTRACT_ONLY= freeswitch-1.0.4.1.tar.gz
+
+MAINTAINER= r.neese@gmail.com
+COMMENT= FreeSwitch SoftSwitch Port
+
+BUILD_DEPENDS= wget:${PORTSDIR}/ftp/wget \
+ bash:${PORTSDIR}/shells/bash \
+ pkg-config:${PORTSDIR}/devel/pkg-config
+LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \
+ gnutls:${PORTSDIR}/security/gnutls
+RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
+
+ONLY_FOR_ARCHS= i386 amd64
+
+USE_AUTOTOOLS= autoconf:262:env automake:110:env libtool:22:env
+
+USE_GMAKE= yes
+USE_RC_SUBR= freeswitch
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS= --prefix=${PREFIX}/${PORTNAME} --with-libgnutls-prefix=${LOCALBASE} \
+ --with-ogg=${LOCALBASE} --with-ogg-libraries=${LOCALBASE}/lib \
+ --with-ogg-includes=${LOCALBASE}/include \
+ --enable-core-libedit-support \
+ --enable-core-odbc-support
+
+CONFIGURE_ENV+= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+USE_LDCONFIG= yes
+CPPFLAGS+= -I${PREFIX}/include
+
+OPTIONS= MODSHOUT "Enable mod_shout (streaming audio/mp3)" on \
+ MODFLITE "Enable mod_flite (Text to Speech)" on \
+ MODPOCKETSPHINX "Enable mod_pockectsphinx (voice control)" on \
+ MODCIDLOOKUP "Enable mod_cidlookup" on \
+ MODDPDIRECTORY "Enable mod_dialplan_directory" on \
+ MODEASYROUTE "Enable mod_easyroute(routeing tool)" on \
+ MODFAX "Enable mod_fax" on \
+ MODLCR "Enable mod_lcr (least cost routing)" on \
+ MODSOUNDTOUCH "Enable mod_soundtouch" on \
+ MODRSS "Enable mod_rss (rss feed reader)" on \
+ MODSNOM "Enable mod_snom (snom control)" on \
+ MODVMD "Enable mod_vmd (voice mail detection)" on \
+ MODSPY "Enable mod_spy" on \
+ MODAMRWB "Enable mod_amrwb (amrwb codec)" on \
+ MODSIREN "Enable mod_siren (siren codec)" on \
+ MODCELT "Enable mod_celt (celt codec)" on \
+ MODOPENZAP "Enable mod_openzap (zaptel support)" on \
+ MODMULTICAST "Enable mod_event_multicast" on \
+ MODPORTAUDIO "Enable mod_portaudio" on \
+ MODSPDRMNKYODBC "Enable mod_spidermonkey_odbc (req odbc)" on \
+ MODPERL "Enable mod_perl (perl support)" on \
+ MODXMLCURL "Enable mod_xml_curl" on \
+ MODSAYDE "Enable mod_say_de (German support)" on \
+ MODSAYES "Enable mod_say_se (Spanish support)" on \
+ MODSAYFR "Enable mod_say_fr (French support)" on \
+ MODSAYIT "Enable mod_say_it (Italian support)" on \
+ MODSAYNL "Enable mod_say_nl (Dutch support)" on \
+ MODSAYRU "Enable mod_say_ru (Russian support)" on \
+ MODSAYZH "Enable mod_say_zh (Chinese support)" on \
+ SAMPLES "Install Sample Config Files" on \
+ SOUNDS "Install 8k Sound Files" on \
+ PIZZADEMO "Install Pizza Demo (req mod_pcoketsphinx)" on \
+ FAXUTILS "Install Extra Fax Utils (MOD FAX)" on
+
+.include <bsd.port.pre.mk>
+
+.if !defined(WITH_MODOPENZAP)
+PLIST_SUB+= WITH_MODOPENZAP="@comment "
+.else
+PLIST_SUB+= WITH_MODOPENZAP=""
+BUILD_DEPENDS+= libpri>=1.2.0:${PORTSDIR}/misc/libpri \
+ ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel
+LIB_DEPENDS+= pri:${PORTSDIR}/misc/libpri
+RUN_DEPENDS+= ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel
+.endif
+
+.if !defined(WITH_MODSPDRMNKYODBC)
+PLIST_SUB+= WITH_MODSPDRMNKYODBC="@comment "
+.else
+PLIST_SUB+= WITH_MODSPDRMNKYODBC=""
+LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC
+.endif
+
+.if !defined(WITH_MODSHOUT)
+PLIST_SUB+= WITH_MODSHOUT="@comment "
+.else
+PLIST_SUB+= WITH_MODSHOUT=""
+LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis
+.endif
+
+.if !defined(WITH_MODPERL)
+PLIST_SUB+= WITH_MODPERL="@comment "
+.else
+PLIST_SUB+= WITH_MODPERL=""
+LIB_DEPENDS+= gdbm:${PORTSDIR}/databases/gdbm \
+ db:${PORTSDIR}/databases/db42
+.endif
+
+.if !defined(WITH_MODFAX)
+PLIST_SUB+= WITH_MODFAX="@comment "
+.else
+PLIST_SUB+= WITH_MODFAX=""
+LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff
+.endif
+
+.if !defined(WITH_MODFLITE)
+PLIST_SUB+= WITH_MODFLITE="@comment "
+.else
+PLIST_SUB+= WITH_MODFLITE=""
+.endif
+
+.if !defined(WITH_MODPOCKETSPHINX)
+ PLIST_SUB+= WITH_MODPOCKETSPHINX="@comment "
+.else
+PLIST_SUB+= WITH_MODPOCKETSPHINX=""
+.endif
+
+.if !defined(WITH_MODCIDLOOKUP)
+ PLIST_SUB+= WITH_MODCIDLOOKUO="@comment "
+.else
+PLIST_SUB+= WITH_MODCIDLOOKUP=""
+.endif
+
+.if !defined(WITH_MODDPDIRECTORY)
+ PLIST_SUB+= WITH_MODDPDIRECTORY="@comment "
+.else
+PLIST_SUB+= WITH_MODDPDIRECTORY=""
+.endif
+
+.if !defined(WITH_MODEASYROUTE)
+ PLIST_SUB+= WITH_MODEASYROUTE="@comment "
+.else
+PLIST_SUB+= WITH_MODEASYROUTE=""
+.endif
+
+.if !defined(WITH_MODLCR)
+PLIST_SUB+= WITH_MODLCR="@comment "
+.else
+PLIST_SUB+= WITH_MODLCR=""
+.endif
+
+.if !defined(WITH_MODSOUNDTOUCH)
+PLIST_SUB+= WITH_MODSOUNDTOUCH="@comment "
+.else
+PLIST_SUB+= WITH_MODSOUNDTOUCH=""
+.endif
+
+.if !defined(WITH_MODRSS)
+PLIST_SUB+= WITH_MODRSS="@comment "
+.else
+PLIST_SUB+= WITH_MODRSS=""
+.endif
+
+.if !defined(WITH_MODSNOM)
+PLIST_SUB+= WITH_MODSNOM="@comment "
+.else
+PLIST_SUB+= WITH_MODSNOM=""
+.endif
+
+.if !defined(WITH_MODVMD)
+PLIST_SUB+= WITH_MODVMD="@comment "
+.else
+PLIST_SUB+= WITH_MODVMD=""
+.endif
+
+.if !defined(WITH_MODSPY)
+PLIST_SUB+= WITH_MODSPY="@comment "
+.else
+PLIST_SUB+= WITH_MODSPY=""
+.endif
+
+.if !defined(WITH_MODAMRWB)
+PLIST_SUB+= WITH_MODAMRWB="@comment "
+.else
+PLIST_SUB+= WITH_MODAMRWB=""
+.endif
+
+.if !defined(WITH_MODSIREN)
+PLIST_SUB+= WITH_MODSIREN="@comment "
+.else
+PLIST_SUB+= WITH_MODSIREN=""
+.endif
+
+.if !defined(WITH_MODCELT)
+PLIST_SUB+= WITH_MODCELT="@comment "
+.else
+PLIST_SUB+= WITH_MODCELT=""
+.endif
+
+.if !defined(WITH_MODMULTICAST)
+PLIST_SUB+= WITH_MODMULTICAST="@comment "
+.else
+PLIST_SUB+= WITH_MODMULTICAST=""
+.endif
+
+.if !defined(WITH_MODPORTAUDIO)
+PLIST_SUB+= WITH_MODPORTAUDIO=""
+.else
+PLIST_SUB+= WITH_MODPORTAUDIO=""
+.endif
+
+.if !defined(WITH_MODXMLCURL)
+PLIST_SUB+= WITH_MODXMLCURL="@comment "
+.else
+PLIST_SUB+= WITH_MODXMLCURL=""
+.endif
+
+.if !defined(WITH_MODSAYDE)
+PLIST_SUB+= WITH_MODSAYDE="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYDE=""
+.endif
+
+.if !defined(WITH_MODSAYES)
+PLIST_SUB+= WITH_MODSAYES="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYES=""
+.endif
+
+.if !defined(WITH_MODSAYIT)
+PLIST_SUB+= WITH_MODSAYFR="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYFR=""
+.endif
+
+.if !defined(WITH_MODSAYIT)
+PLIST_SUB+= WITH_MODSAYIT="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYIT=""
+.endif
+
+.if !defined(WITH_MODSAYNL)
+PLIST_SUB+= WITH_MODSAYNL="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYNL=""
+.endif
+
+.if !defined(WITH_MODSAYRU)
+PLIST_SUB+= WITH_MODSAYRU="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYRU=""
+.endif
+
+.if !defined(WITH_MODSAYZH)
+PLIST_SUB+= WITH_MODSAYZH="@comment "
+.else
+PLIST_SUB+= WITH_MODSAYZH=""
+.endif
+
+.if !defined(WITH_SAMPLES)
+PLIST_SUB+= WITH_SAMPLES="@comment "
+.else
+PLIST_SUB+= WITH_SAMPLES=""
+.endif
+
+.if !defined(WITH_SOUNDS)
+PLIST_SUB+= WITH_SOUNDS="@comment "
+.else
+PLIST_SUB+= WITH_SOUNDS=""
+.endif
+
+.if !defined(WITH_PIZZADEMO)
+PLIST_SUB+= WITH_PIZZADEMO="@comment "
+.else
+PLIST_SUB+= WITH_PIZZADEMO=""
+.endif
+
+.if !defined(WITH_FAXUTILS)
+PLIST_SUB+= WITH_FAXUTILS="@comment "
+.else
+PLIST_SUB+= WITH_FAXUTILS=""
+RUN_DEPENDS+= tiff2png:${PORTSDIR}/graphics/tiff2png
+.endif
+
+pre-configure:
+ @cd ${WRKSRC} && ./bootstrap.sh
+ @${CP} ${WRKSRC}/build/modules.conf.in ${WRKSRC}/modules.conf
+ @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${LOCALBASE}/${PORTNAME}/libdata/pkgconfig|g' ${WRKSRC}/libs/*/Makefile.am
+ @${REINPLACE_CMD} -e 's|$(DESTDIR)$$(libdir)/pkgconfig|${LOCALBASE}/${PORTNAME}/libdata/pkgconfig|g' ${WRKSRC}/libs/*/Makefile.in
+
+post-configure:
+.if defined(WITH_MODSHOUT)
+ @${REINPLACE_CMD} -e 's|#formats/mod_shout|formats/mod_shout|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODFLITE)
+ @${REINPLACE_CMD} -e 's|#asr_tts/mod_flite|asr_tts/mod_flite|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODPOCKETSPHINX)
+ @${REINPLACE_CMD} -e 's|#asr_tts/mod_pocketsphinx|asr_tts/mod_pocketsphinx|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODCIDLOOKUP)
+ @${REINPLACE_CMD} -e 's|#applications/mod_cidlookup|applications/mod_cidlookup|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODDPDIRECTORY)
+ @${REINPLACE_CMD} -e 's|#dialplans/mod_dialplan_directory|dialplans/mod_dialplan_directory|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODEASYROUTE)
+ @${REINPLACE_CMD} -e 's|#applications/mod_easyroute|applications/mod_easyroute|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODFAX)
+ @${REINPLACE_CMD} -e 's|#applications/mod_fax|applications/mod_fax|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODLCR)
+ @${REINPLACE_CMD} -e 's|#applications/mod_lcr|applications/mod_lcr|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSOUNDTOUCH)
+ @${REINPLACE_CMD} -e 's|#applications/mod_soundtouch|applications/mod_soundtouch|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODRSS)
+ @${REINPLACE_CMD} -e 's|#applications/mod_rss|applications/mod_rss|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSNOM)
+ @${REINPLACE_CMD} -e 's|#applications/mod_snom|applications/mod_snom|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODVMD)
+ @${REINPLACE_CMD} -e 's|#applications/mod_vmd|applications/mod_vmd|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSPY)
+ @${REINPLACE_CMD} -e 's|#applications/mod_spy|applications/mod_spy|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODAMRWB)
+ @${REINPLACE_CMD} -e 's|#codecs/mod_amrwb|codecs/mod_amrwb|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSIREN)
+ @${REINPLACE_CMD} -e 's|#codecs/mod_siren|codecs/mod_siren|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODCELT)
+ @${REINPLACE_CMD} -e 's|#codecs/mod_celt|codecs/mod_celt|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODOPENZAP)
+ @${REINPLACE_CMD} -e 's|#../../libs/openzap/mod_openzap|../../libs/openzap/mod_openzap|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODMULTICAST)
+ @${REINPLACE_CMD} -e 's|#event_handlers/mod_event_multicast|event_handlers/mod_event_multicast|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSPDRMNKYODBC)
+ @${REINPLACE_CMD} -e 's|#languages/mod_spidermonkey_odbc|languages/mod_spidermonkey_odbc|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODPORTAUDIO)
+ @${REINPLACE_CMD} -e 's|#endpoints/mod_portaudio|endpoints/mod_portaudio|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODPERL)
+ @${REINPLACE_CMD} -e 's|#languages/mod_perl|languages/mod_perl|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODXMLCURL)
+ @${REINPLACE_CMD} -e 's|#xml_int/mod_xml_curl|xml_int/mod_xml_curl|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYDE)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_de|say/mod_say_de|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYES)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_es|say/mod_say_es|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYFR)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_fr|say/mod_say_fr|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYIT)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_it|say/mod_say_it|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYNL)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_nl|say/mod_say_nl|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYRU)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_ru|say/mod_say_ru|g' ${WRKSRC}/modules.conf
+.endif
+
+.if defined(WITH_MODSAYZH)
+ @${REINPLACE_CMD} -e 's|#say/mod_say_zh|say/mod_say_zh|g' ${WRKSRC}/modules.conf
+.endif
+
+.if ${OSVERSION} < 700000
+IGNORE= it's to unsupported before FreeBSD 7.X
+.endif
+
+post-patch:
+ @${GREP} -Rl '/bin/bash' ${WRKSRC} | \
+ ${XARGS} ${REINPLACE_CMD} -e 's|/bin/bash|${LOCALBASE}/bin/bash|g'
+
+post-install:
+.if defined(WITH_SAMPLES)
+ @cd ${WRKSRC} && ${GMAKE} samples
+.endif
+
+.if defined(WITH_SOUNDS)
+ @cd ${WRKSRC} && ${GMAKE} sounds-install
+ @cd ${WRKSRC} && ${GMAKE} moh-install
+.endif
+
+.if defined(WITH_PIZZADEMO)
+ @${REINPLACE_CMD} -e 's|js_modules/SpeechTools.jm|javascript/js_modules/SpeechTools.jm|g' ${WRKSRC}/scripts/javascript/ps_pizza.js
+ @${REINPLACE_CMD} -e 's|/root/pizza|/${LOCALBASE}/freeswitch/sounds/en/us/pizza/|g' ${WRKSRC}/scripts/javascript/ps_pizza.js
+ @cd ${WRKSRC}/scripts/javascript/ && ${RM} -rf aadir api.js dtmftest.js pizza.js ps_pizza.js.bak .svn js_modules/.svn
+ @${CP} -r ${WRKSRC}/scripts/javascript ${LOCALBASE}/${PORTNAME}/scripts/
+ @${TAR} -xvzf ${DISTDIR}/pizza_gram.tar.gz -C ${LOCALBASE}/${PORTNAME}/grammar
+ @${TAR} -xzvf ${DISTDIR}/pizza_sounds.tar.gz -C ${LOCALBASE}/${PORTNAME}/sounds/en/us
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/net/freeswitch/distinfo b/net/freeswitch/distinfo
new file mode 100644
index 000000000000..d1f621c6d38d
--- /dev/null
+++ b/net/freeswitch/distinfo
@@ -0,0 +1,9 @@
+MD5 (pizza_gram.tar.gz) = dc10f21c8d6bd708b7deae9f18a82b92
+SHA256 (pizza_gram.tar.gz) = e713406834ba40fe07c69b84f042fcb27493c15bc6b51133418527bc7a818027
+SIZE (pizza_gram.tar.gz) = 1053
+MD5 (freeswitch-1.0.4.1.tar.gz) = f87db3994af3c2b34d52114399e35363
+SHA256 (freeswitch-1.0.4.1.tar.gz) = df7f89f13f05103340e6c6d30900047efc1eb4517a443449e0992f471d0c68fa
+SIZE (freeswitch-1.0.4.1.tar.gz) = 56870200
+MD5 (pizza_sounds.tar.gz) = dacfde8879da8dd0e0542069e5cba6a2
+SHA256 (pizza_sounds.tar.gz) = 606f736625b7f331e219e10460029c8e0b0e58136feeddde976a0dcc68a97bef
+SIZE (pizza_sounds.tar.gz) = 1498679
diff --git a/net/freeswitch/files/freeswitch.in b/net/freeswitch/files/freeswitch.in
new file mode 100644
index 000000000000..24392472cb06
--- /dev/null
+++ b/net/freeswitch/files/freeswitch.in
@@ -0,0 +1,50 @@
+#!/bin/sh
+
+# PROVIDE: freeswitch
+# REQUIRE: DAEMON
+# KEYWORD: FreeBSD
+
+. %%RC_SUBR%%
+
+name=freeswitch
+rcvar=`set_rcvar`
+
+command=%%PREFIX%%/freeswitch/bin/freeswitch
+command_args="-nc"
+
+pidfile=${freeswitch_pidfile:-"%%PREFIX%%/freeswitch/log/freeswitch.pid"}
+
+freeswitch_enable=${freeswitch_enable-"YES"}
+
+start_cmd="freeswitch_start"
+stop_precmd="freeswitch_stop"
+restart_cmd="freeswitch_restart"
+
+sig_stop=KILL
+
+load_rc_config $name
+
+freeswitch_stop () {
+ echo "Stopping Freeswitch."
+ %%PREFIX%%/freeswitch/bin/freeswitch -stop
+ sleep 1
+ return 0
+}
+
+freeswitch_start () {
+ echo "Starting FreeSwitch."
+ /usr/sbin/daemon -f /bin/sh -c "$command"
+ sleep 1
+ return
+}
+
+freeswitch_restart () {
+ echo "ReStarting FreeSwitch."
+ freeswitch_stop
+ freeswitch_start
+ sleep 1
+ return
+}
+
+run_rc_command "$1"
+
diff --git a/net/freeswitch/files/patch-build-modules.conf.in b/net/freeswitch/files/patch-build-modules.conf.in
new file mode 100644
index 000000000000..08fa3914b19c
--- /dev/null
+++ b/net/freeswitch/files/patch-build-modules.conf.in
@@ -0,0 +1,18 @@
+--- build/modules.conf.in (revision 13746)
++++ build/modules.conf.in (working copy)
+@@ -1,6 +1,7 @@
+ loggers/mod_console
+ loggers/mod_logfile
+ loggers/mod_syslog
++#applications/mod_cidlookup
+ applications/mod_commands
+ applications/mod_conference
+ applications/mod_dptools
+@@ -19,6 +20,7 @@
+ #applications/mod_soundtouch
+ #applications/mod_rss
+ #applications/mod_snom
++#applications/mod_t38gateway
+ #applications/mod_vmd
+ #applications/mod_memcache
+ #applications/mod_spy
diff --git a/net/freeswitch/pkg-descr b/net/freeswitch/pkg-descr
new file mode 100644
index 000000000000..75097b07d867
--- /dev/null
+++ b/net/freeswitch/pkg-descr
@@ -0,0 +1,3 @@
+FreeSwitch Voip SoftSwitch & OpenSource PBX
+
+WWW: http://www.freeswitch.org/
diff --git a/net/freeswitch/pkg-plist b/net/freeswitch/pkg-plist
new file mode 100644
index 000000000000..4175c089ef78
--- /dev/null
+++ b/net/freeswitch/pkg-plist
@@ -0,0 +1,1510 @@
+%%WITH_MODOPENZAP%%freeswitch/conf/m3ua.conf
+%%WITH_MODOPENZAP%%freeswitch/conf/openzap.conf
+%%WITH_MODOPENZAP%%freeswitch/conf/pika.conf
+%%WITH_MODOPENZAP%%freeswitch/conf/tones.conf
+%%WITH_MODOPENZAP%%freeswitch/conf/wanpipe.conf
+%%WITH_MODOPENZAP%%freeswitch/conf/zt.conf
+freeswitch/bin/freeswitch
+freeswitch/bin/fs_cli
+freeswitch/bin/fs_ivrd
+freeswitch/bin/fsxs
+freeswitch/bin/gentls_cert
+freeswitch/conf/autoload_configs/acl.conf.xml
+freeswitch/conf/autoload_configs/alsa.conf.xml
+freeswitch/conf/autoload_configs/cdr_csv.conf.xml
+freeswitch/conf/autoload_configs/cidlookup.conf.xml
+freeswitch/conf/autoload_configs/conference.conf.xml
+freeswitch/conf/autoload_configs/console.conf.xml
+freeswitch/conf/autoload_configs/dialplan_directory.conf.xml
+freeswitch/conf/autoload_configs/dingaling.conf.xml
+freeswitch/conf/autoload_configs/easyroute.conf.xml
+freeswitch/conf/autoload_configs/enum.conf.xml
+freeswitch/conf/autoload_configs/event_multicast.conf.xml
+freeswitch/conf/autoload_configs/event_socket.conf.xml
+freeswitch/conf/autoload_configs/fax.conf.xml
+freeswitch/conf/autoload_configs/fifo.conf.xml
+freeswitch/conf/autoload_configs/iax.conf.xml
+freeswitch/conf/autoload_configs/ivr.conf.xml
+freeswitch/conf/autoload_configs/java.conf.xml
+freeswitch/conf/autoload_configs/lcr.conf.xml
+freeswitch/conf/autoload_configs/limit.conf.xml
+freeswitch/conf/autoload_configs/local_stream.conf.xml
+freeswitch/conf/autoload_configs/logfile.conf.xml
+freeswitch/conf/autoload_configs/lua.conf.xml
+freeswitch/conf/autoload_configs/memcache.conf.xml
+freeswitch/conf/autoload_configs/modules.conf.xml
+freeswitch/conf/autoload_configs/nibblebill.conf.xml
+freeswitch/conf/autoload_configs/opal.conf.xml
+%%WITH_MODOPENZAP%%freeswitch/conf/autoload_configs/openzap.conf.xml
+freeswitch/conf/autoload_configs/perl.conf.xml
+freeswitch/conf/autoload_configs/pocketsphinx.conf.xml
+freeswitch/conf/autoload_configs/portaudio.conf.xml
+freeswitch/conf/autoload_configs/post_load_modules.conf.xml
+freeswitch/conf/autoload_configs/python.conf.xml
+freeswitch/conf/autoload_configs/rss.conf.xml
+freeswitch/conf/autoload_configs/shout.conf.xml
+freeswitch/conf/autoload_configs/sofia.conf.xml
+freeswitch/conf/autoload_configs/spidermonkey.conf.xml
+freeswitch/conf/autoload_configs/switch.conf.xml
+freeswitch/conf/autoload_configs/syslog.conf.xml
+freeswitch/conf/autoload_configs/timezones.conf.xml
+freeswitch/conf/autoload_configs/unicall.conf.xml
+freeswitch/conf/autoload_configs/unimrcp.conf.xml
+freeswitch/conf/autoload_configs/voicemail.conf.xml
+freeswitch/conf/autoload_configs/xml_cdr.conf.xml
+freeswitch/conf/autoload_configs/xml_curl.conf.xml
+freeswitch/conf/autoload_configs/xml_rpc.conf.xml
+freeswitch/conf/autoload_configs/zeroconf.conf.xml
+freeswitch/conf/dialplan/default.xml
+freeswitch/conf/dialplan/default/00_pizza_demo.xml
+freeswitch/conf/dialplan/default/01_example.com.xml
+freeswitch/conf/dialplan/default/99999_enum.xml
+freeswitch/conf/dialplan/features.xml
+freeswitch/conf/dialplan/public.xml
+freeswitch/conf/dialplan/public/00_inbound_did.xml
+freeswitch/conf/directory/default.xml
+freeswitch/conf/directory/default/1000.xml
+freeswitch/conf/directory/default/1001.xml
+freeswitch/conf/directory/default/1002.xml
+freeswitch/conf/directory/default/1003.xml
+freeswitch/conf/directory/default/1004.xml
+freeswitch/conf/directory/default/1005.xml
+freeswitch/conf/directory/default/1006.xml
+freeswitch/conf/directory/default/1007.xml
+freeswitch/conf/directory/default/1008.xml
+freeswitch/conf/directory/default/1009.xml
+freeswitch/conf/directory/default/1010.xml
+freeswitch/conf/directory/default/1011.xml
+freeswitch/conf/directory/default/1012.xml
+freeswitch/conf/directory/default/1013.xml
+freeswitch/conf/directory/default/1014.xml
+freeswitch/conf/directory/default/1015.xml
+freeswitch/conf/directory/default/1016.xml
+freeswitch/conf/directory/default/1017.xml
+freeswitch/conf/directory/default/1018.xml
+freeswitch/conf/directory/default/1019.xml
+freeswitch/conf/directory/default/brian.xml
+freeswitch/conf/directory/default/default.xml
+freeswitch/conf/directory/default/example.com.xml
+freeswitch/conf/extensions.conf
+freeswitch/conf/freeswitch.xml
+freeswitch/conf/fur_elise.ttml
+freeswitch/conf/jingle_profiles/client.xml
+freeswitch/conf/jingle_profiles/server.xml
+freeswitch/conf/lang/de/de.xml
+freeswitch/conf/lang/de/demo/demo.xml
+freeswitch/conf/lang/de/vm/tts.xml
+freeswitch/conf/lang/en/demo/demo-ivr.xml
+freeswitch/conf/lang/en/demo/demo.xml
+freeswitch/conf/lang/en/en.xml
+freeswitch/conf/lang/en/vm/sounds.xml
+freeswitch/conf/lang/en/vm/tts.xml
+freeswitch/conf/lang/fr/demo/demo.xml
+freeswitch/conf/lang/fr/fr.xml
+freeswitch/conf/lang/fr/vm/sounds.xml
+freeswitch/conf/lang/ru/demo/demo-ivr.xml
+freeswitch/conf/lang/ru/demo/demo.xml
+freeswitch/conf/lang/ru/ru.xml
+freeswitch/conf/lang/ru/vm/sounds.xml
+freeswitch/conf/lang/ru/vm/tts.xml
+freeswitch/conf/mime.types
+freeswitch/conf/mrcp_profiles/loquendo-7-mrcp-v2.xml
+freeswitch/conf/mrcp_profiles/nuance-1.0.0-mrcp-v1.xml
+freeswitch/conf/mrcp_profiles/nuance-5.0-mrcp-v2.xml
+freeswitch/conf/mrcp_profiles/nuance-5.0-mrcp-v1.xml
+freeswitch/conf/mrcp_profiles/unimrcpserver-mrcp-v1.xml
+freeswitch/conf/mrcp_profiles/voxeo-prophecy-8.0-mrcp-v1.xml
+freeswitch/conf/notify-voicemail.tpl
+freeswitch/conf/sip_profiles/external.xml
+freeswitch/conf/sip_profiles/external/example.xml
+freeswitch/conf/sip_profiles/internal-ipv6.xml
+freeswitch/conf/sip_profiles/internal.xml
+freeswitch/conf/sip_profiles/internal/example.xml
+freeswitch/conf/tetris.ttml
+freeswitch/conf/vars.xml
+freeswitch/conf/voicemail.tpl
+freeswitch/conf/web-vm.tpl
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_arso.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_crust.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_order.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_size.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_specialty.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_toppings.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_type.gram
+%%WITH_PIZZADEMO%%freeswitch/grammar/pizza_yesno.gram
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/adsi.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/arctan2.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/async.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/at_interpreter.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/awgn.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/bell_r2_mf.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/bert.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/biquad.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/bit_operations.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/bitstream.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/complex.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/complex_filters.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/complex_vector_float.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/complex_vector_int.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/crc.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/dc_restore.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/dds.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/dtmf.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/echo.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/expose.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/fast_convert.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/fax.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/fax_modems.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/fir.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/fsk.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/g168models.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/g711.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/g722.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/g726.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/gsm0610.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/hdlc.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/ima_adpcm.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/logging.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/lpc10.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/modem_connect_tones.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/modem_echo.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/noise.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/oki_adpcm.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/playout.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/plc.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/power_meter.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/adsi.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/async.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/at_interpreter.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/awgn.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/bell_r2_mf.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/bert.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/bitstream.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/dtmf.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/fax.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/fax_modems.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/fsk.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/g711.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/g722.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/g726.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/gsm0610.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/hdlc.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/ima_adpcm.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/logging.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/lpc10.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/modem_connect_tones.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/noise.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/oki_adpcm.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/queue.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/schedule.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/sig_tone.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/silence_gen.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/super_tone_rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/super_tone_tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t30.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t31.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t38_core.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t38_gateway.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t38_non_ecm_buffer.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t38_terminal.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/t4.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/time_scale.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/tone_detect.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/tone_generate.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v17rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v17tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v18.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v22bis.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v27ter_rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v27ter_tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v29rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v29tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v42.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v42bis.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/private/v8.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/queue.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/saturated.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/schedule.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/sig_tone.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/silence_gen.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/super_tone_rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/super_tone_tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t30.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t30_api.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t30_fcf.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t30_logging.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t31.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t35.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t38_core.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t38_gateway.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t38_non_ecm_buffer.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t38_terminal.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/t4.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/telephony.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/time_scale.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/timing.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/tone_detect.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/tone_generate.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v17rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v17tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v18.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v22bis.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v27ter_rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v27ter_tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v29rx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v29tx.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v42.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v42bis.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/v8.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/vector_float.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/vector_int.h
+%%WITH_MODOPENZAP%%freeswitch/include/spandsp/version.h
+%%WITH_MODOPENZAP%%freeswitch/libdata/pkgconfig/spandsp.pc
+freeswitch/lib/libfreeswitch.a
+freeswitch/lib/libfreeswitch.la
+freeswitch/lib/libfreeswitch.so
+freeswitch/lib/libfreeswitch.so.1
+freeswitch/lib/libjs.a
+freeswitch/lib/libjs.la
+freeswitch/lib/libjs.so
+freeswitch/lib/libjs.so.1
+freeswitch/lib/libnspr4.a
+freeswitch/lib/libnspr4.so.1
+freeswitch/lib/libplc4.a
+freeswitch/lib/libplc4.so.1
+freeswitch/lib/libplds4.a
+freeswitch/lib/libplds4.so.1
+%%WITH_MODOPENZAP%%freeswitch/lib/libspandsp.a
+%%WITH_MODOPENZAP%%freeswitch/lib/libspandsp.la
+freeswitch/mod/mod_amr.la
+freeswitch/mod/mod_amr.so
+%%WITH_MODAMRWB%%freeswitch/mod/mod_amrwb.la
+%%WITH_MODAMRWB%%freeswitch/mod/mod_amrwb.so
+freeswitch/mod/mod_cdr_csv.la
+freeswitch/mod/mod_cdr_csv.so
+%%WITH_MODCELT%%freeswitch/mod/mod_celt.la
+%%WITH_MODCELT%%freeswitch/mod/mod_celt.so
+%%WITH_MODCIDLOOKUP%%freeswitch/mod/mod_cidlookup.la
+%%WITH_MODCIDLOOKUP%%freeswitch/mod/mod_cidlookup.so
+freeswitch/mod/mod_cluechoo.la
+freeswitch/mod/mod_cluechoo.so
+freeswitch/mod/mod_commands.la
+freeswitch/mod/mod_commands.so
+freeswitch/mod/mod_conference.la
+freeswitch/mod/mod_conference.so
+freeswitch/mod/mod_console.la
+freeswitch/mod/mod_console.so
+freeswitch/mod/mod_dialplan_asterisk.la
+freeswitch/mod/mod_dialplan_asterisk.so
+%%WITH_MODDPDIRECTORY%%freeswitch/mod/mod_dialplan_directory.la
+%%WITH_MODDPDIRECTORY%%freeswitch/mod/mod_dialplan_directory.so
+freeswitch/mod/mod_dialplan_xml.la
+freeswitch/mod/mod_dialplan_xml.so
+freeswitch/mod/mod_dptools.la
+freeswitch/mod/mod_dptools.so
+%%WITH_MODEASYROUTE%%freeswitch/mod/mod_easyroute.la
+%%WITH_MODEASYROUTE%%freeswitch/mod/mod_easyroute.so
+freeswitch/mod/mod_enum.la
+freeswitch/mod/mod_enum.so
+freeswitch/mod/mod_esf.la
+freeswitch/mod/mod_esf.so
+%%WITH_MODMULTICAST%%freeswitch/mod/mod_event_multicast.la
+%%WITH_MODMULTICAST%%freeswitch/mod/mod_event_multicast.so
+freeswitch/mod/mod_event_socket.la
+freeswitch/mod/mod_event_socket.so
+freeswitch/mod/mod_expr.la
+freeswitch/mod/mod_expr.so
+%%WITH_MODFAX%%freeswitch/mod/mod_fax.la
+%%WITH_MODFAX%%freeswitch/mod/mod_fax.so
+freeswitch/mod/mod_fifo.la
+freeswitch/mod/mod_fifo.so
+freeswitch/mod/mod_file_string.la
+freeswitch/mod/mod_file_string.so
+%%WITH_MODFLITE%%freeswitch/mod/mod_flite.la
+%%WITH_MODFLITE%%freeswitch/mod/mod_flite.so
+freeswitch/mod/mod_fsv.la
+freeswitch/mod/mod_fsv.so
+freeswitch/mod/mod_g723_1.la
+freeswitch/mod/mod_g723_1.so
+freeswitch/mod/mod_g729.la
+freeswitch/mod/mod_g729.so
+freeswitch/mod/mod_h26x.la
+freeswitch/mod/mod_h26x.so
+freeswitch/mod/mod_iax.la
+freeswitch/mod/mod_iax.so
+freeswitch/mod/mod_ilbc.la
+freeswitch/mod/mod_ilbc.so
+%%WITH_MODLCR%%freeswitch/mod/mod_lcr.la
+%%WITH_MODLCR%%freeswitch/mod/mod_lcr.so
+freeswitch/mod/mod_limit.la
+freeswitch/mod/mod_limit.so
+freeswitch/mod/mod_local_stream.la
+freeswitch/mod/mod_local_stream.so
+freeswitch/mod/mod_logfile.la
+freeswitch/mod/mod_logfile.so
+freeswitch/mod/mod_loopback.la
+freeswitch/mod/mod_loopback.so
+freeswitch/mod/mod_lua.la
+freeswitch/mod/mod_lua.so
+freeswitch/mod/mod_native_file.la
+freeswitch/mod/mod_native_file.so
+%%WITH_MODOPENZAP%%freeswitch/mod/mod_openzap.la
+%%WITH_MODOPENZAP%%freeswitch/mod/mod_openzap.so
+%%WITH_MODPERL%%freeswitch/mod/mod_perl.la
+%%WITH_MODPERL%%freeswitch/mod/mod_perl.so
+%%WITH_MODPOCKETSPHINX%%freeswitch/mod/mod_pocketsphinx.la
+%%WITH_MODPOCKETSPHINX%%freeswitch/mod/mod_pocketsphinx.so
+%%WITH_MODPORTAUDIO%%freeswitch/mod/mod_portaudio.la
+%%WITH_MODPORTAUDIO%%freeswitch/mod/mod_portaudio.so
+%%WITH_MODRSS%%freeswitch/mod/mod_rss.la
+%%WITH_MODRSS%%freeswitch/mod/mod_rss.so
+%%WITH_MODSAYDE%%freeswitch/mod/mod_say_de.la
+%%WITH_MODSAYDE%%freeswitch/mod/mod_say_de.so
+freeswitch/mod/mod_say_en.la
+freeswitch/mod/mod_say_en.so
+%%WITH_MODSAYES%%freeswitch/mod/mod_say_es.la
+%%WITH_MODSAYES%%freeswitch/mod/mod_say_es.so
+%%WITH_MODSAYFR%%freeswitch/mod/mod_say_fr.la
+%%WITH_MODSAYFR%%freeswitch/mod/mod_say_fr.so
+%%WITH_MODSAYIT%%freeswitch/mod/mod_say_it.la
+%%WITH_MODSAYIT%%freeswitch/mod/mod_say_it.so
+%%WITH_MODSAYNL%%freeswitch/mod/mod_say_nl.la
+%%WITH_MODSAYNL%%freeswitch/mod/mod_say_nl.so
+%%WITH_MODSAYRU%%freeswitch/mod/mod_say_ru.la
+%%WITH_MODSAYRU%%freeswitch/mod/mod_say_ru.so
+%%WITH_MODSAYZH%%freeswitch/mod/mod_say_zh.la
+%%WITH_MODSAYZH%%freeswitch/mod/mod_say_zh.so
+%%WITH_MODSHOUT%%freeswitch/mod/mod_shout.la
+%%WITH_MODSHOUT%%freeswitch/mod/mod_shout.so
+%%WITH_MODSIREN%%freeswitch/mod/mod_siren.la
+%%WITH_MODSIREN%%freeswitch/mod/mod_siren.so
+freeswitch/mod/mod_sndfile.la
+freeswitch/mod/mod_sndfile.so
+%%WITH_MODSNOM%%freeswitch/mod/mod_snom.la
+%%WITH_MODSNOM%%freeswitch/mod/mod_snom.so
+freeswitch/mod/mod_sofia.a
+freeswitch/mod/mod_sofia.la
+freeswitch/mod/mod_sofia.so
+%%WITH_MODSOUNDTOUCH%%freeswitch/mod/mod_soundtouch.la
+%%WITH_MODSOUNDTOUCH%%freeswitch/mod/mod_soundtouch.so
+freeswitch/mod/mod_speex.la
+freeswitch/mod/mod_speex.so
+freeswitch/mod/mod_spidermonkey.la
+freeswitch/mod/mod_spidermonkey.so
+freeswitch/mod/mod_spidermonkey_core_db.la
+freeswitch/mod/mod_spidermonkey_core_db.so
+freeswitch/mod/mod_spidermonkey_curl.la
+freeswitch/mod/mod_spidermonkey_curl.so
+%%WITH_MODSPDRMNKYODBC%%freeswitch/mod/mod_spidermonkey_odbc.la
+%%WITH_MODSPDRMNKYODBC%%freeswitch/mod/mod_spidermonkey_odbc.so
+freeswitch/mod/mod_spidermonkey_socket.la
+freeswitch/mod/mod_spidermonkey_socket.so
+freeswitch/mod/mod_spidermonkey_teletone.la
+freeswitch/mod/mod_spidermonkey_teletone.so
+%%WITH_MODSPY%%freeswitch/mod/mod_spy.la
+%%WITH_MODSPY%%freeswitch/mod/mod_spy.so
+freeswitch/mod/mod_syslog.la
+freeswitch/mod/mod_syslog.so
+freeswitch/mod/mod_tone_stream.la
+freeswitch/mod/mod_tone_stream.so
+%%WITH_MODVMD%%freeswitch/mod/mod_vmd.la
+%%WITH_MODVMD%%freeswitch/mod/mod_vmd.so
+freeswitch/mod/mod_voicemail.la
+freeswitch/mod/mod_voicemail.so
+freeswitch/mod/mod_voipcodecs.la
+freeswitch/mod/mod_voipcodecs.so
+freeswitch/mod/mod_xml_cdr.la
+freeswitch/mod/mod_xml_cdr.so
+freeswitch/mod/mod_xml_curl.la
+freeswitch/mod/mod_xml_curl.so
+freeswitch/mod/mod_xml_rpc.la
+freeswitch/mod/mod_xml_rpc.so
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_analog.a
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_analog.la
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_analog.so
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_analog_em.a
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_analog_em.la
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_analog_em.so
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_isdn.a
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_isdn.la
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_isdn.so
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_skel.a
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_skel.la
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_skel.so
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_ss7_boost.a
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_ss7_boost.la
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_ss7_boost.so
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_zt.a
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_zt.la
+%%WITH_MODOPENZAP%%freeswitch/mod/ozmod_zt.so
+%%WITH_PIZZADEMO%%freeswitch/scripts/javascript/js_modules/SpeechTools.jm
+%%WITH_PIZZADEMO%%freeswitch/scripts/javascript/ps_pizza.js
+%%WITH_PIZZADEMO%%freeswitch/grammar/default.dic
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/COPYING
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/feat.params
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/mdef
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/means
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/noisedict
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/sendump
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/transition_matrices
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/communicator/variances
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/Makefile
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/Makefile.am
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/Makefile.in
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/feat.params
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/kdtrees
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/mdef
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/means
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/noisedict
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/sendump
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/transition_matrices
+%%WITH_PIZZADEMO%%freeswitch/grammar/model/wsj1/variances
+freeswitch/htdocs/license.txt
+freeswitch/htdocs/slim.swf
+freeswitch/htdocs/slimtest.htm
+%%WITH_MODOPENZAP%%freeswitch/include/fsk.h
+%%WITH_MODOPENZAP%%freeswitch/include/g711.h
+%%WITH_MODOPENZAP%%freeswitch/include/hashtable.h
+%%WITH_MODOPENZAP%%freeswitch/include/hashtable_itr.h
+%%WITH_MODOPENZAP%%freeswitch/include/hashtable_private.h
+freeswitch/include/libteletone.h
+freeswitch/include/libteletone_detect.h
+freeswitch/include/libteletone_generate.h
+%%WITH_MODOPENZAP%%freeswitch/include/openzap.h
+%%WITH_MODOPENZAP%%freeswitch/include/sangoma_tdm_api.h
+freeswitch/include/switch.h
+freeswitch/include/switch_am_config.h
+freeswitch/include/switch_apr.h
+freeswitch/include/switch_buffer.h
+freeswitch/include/switch_caller.h
+freeswitch/include/switch_channel.h
+freeswitch/include/switch_config.h
+freeswitch/include/switch_console.h
+freeswitch/include/switch_core.h
+freeswitch/include/switch_core_db.h
+freeswitch/include/switch_core_event_hook.h
+freeswitch/include/switch_cpp.h
+freeswitch/include/switch_dso.h
+freeswitch/include/switch_event.h
+freeswitch/include/switch_frame.h
+freeswitch/include/switch_ivr.h
+freeswitch/include/switch_loadable_module.h
+freeswitch/include/switch_log.h
+freeswitch/include/switch_module_interfaces.h
+freeswitch/include/switch_nat.h
+freeswitch/include/switch_odbc.h
+freeswitch/include/switch_platform.h
+freeswitch/include/switch_regex.h
+freeswitch/include/switch_resample.h
+freeswitch/include/switch_rtp.h
+freeswitch/include/switch_scheduler.h
+freeswitch/include/switch_stun.h
+freeswitch/include/switch_types.h
+freeswitch/include/switch_utils.h
+freeswitch/include/switch_xml.h
+freeswitch/include/switch_xml_config.h
+%%WITH_MODOPENZAP%%freeswitch/include/uart.h
+%%WITH_MODOPENZAP%%freeswitch/include/zap_buffer.h
+%%WITH_MODOPENZAP%%freeswitch/include/zap_config.h
+%%WITH_MODOPENZAP%%freeswitch/include/zap_dso.h
+%%WITH_MODOPENZAP%%freeswitch/include/zap_threadmutex.h
+%%WITH_MODOPENZAP%%freeswitch/include/zap_types.h
+%%WITH_MODOPENZAP%%freeswitch/lib/libopenzap.a
+%%WITH_MODOPENZAP%%freeswitch/lib/libopenzap.la
+%%WITH_MODOPENZAP%%freeswitch/lib/libopenzap.so
+%%WITH_MODOPENZAP%%freeswitch/lib/libopenzap.so.1
+%%WITH_MODOPENZAP%%freeswitch/libdata/pkgconfig/openzap.pc
+%%WITH_MODOPENZAP%%freeswitch/perl/freeswitch.pm
+%%WITH_MODPERL%%freeswitch/perl/freeswitch.la
+%%WITH_MODPERL%%freeswitch/perl/freeswitch.so
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Algol.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Apollo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Athens.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Atlantic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Aztec.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Babylon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Belfast.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Bradbury.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Brazilian.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Burbank.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Burlington.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Camelot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Capricorn.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Cherokee.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Chicago.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Christmas.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Dakota.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/December.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Dupont.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Eskimo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Galveston.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Geiger.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Hamilton.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Istanbul.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Jamaica.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Jupiter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Medusa.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Mohawk.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Montana.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Neptune.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Norwegian.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Oakland.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/October.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Ohio.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Orlando.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Pacific.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Pandora.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Pegasus.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Pluto.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Saturday.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Scotland.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Trojan.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Virginia.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Vulcan.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Waterloo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Wichita.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Wilmington.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Wyoming.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Yucatan.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/Zulu.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/aardvark.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/absurd.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/accrue.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/acme.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/adrift.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/adroitness.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/adult.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/adviser.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/afflict.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/aftermath.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/aggregate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ahead.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/aimless.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/alkali.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/allow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/almighty.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/alone.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ammo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/amulet.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/amusement.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ancient.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/antenna.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/apple.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/applicant.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/armistice.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/article.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/artist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/assume.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/asteroid.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/atlas.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/atmosphere.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/autopsy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/baboon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/backfield.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/backward.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/backwater.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/banjo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/barbecue.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/beaming.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bedlamp.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/beehive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/beeswax.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/befriend.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/belowground.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/berserk.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bifocals.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/billiard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bison.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/blackjack.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/blockade.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/blowtorch.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bluebird.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bodyguard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bombast.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bookseller.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bookshelf.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/borderline.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bottomless.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/brackish.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/bravado.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/breadline.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/breakaway.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/breakup.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/brickyard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/briefcase.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/businessman.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/butterfat.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/button.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/buzzard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/candidate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cannonball.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/caravan.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/caretaker.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/celebrate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cellulose.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cement.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/certify.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/chairlift.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/chambermaid.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/chatter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/checkup.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/chisel.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/choking.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/chopper.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/clamshell.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/classic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/classroom.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cleanup.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/clergyman.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/clockwork.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cobra.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/coherence.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/combustion.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/commando.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/commence.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/company.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/component.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/concert.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/concurrent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/confidence.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/conformist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/congregate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/consensus.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/consulting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/corporate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/corrosion.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/councilman.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cowbell.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crackdown.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cranky.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crossover.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crowfoot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crucial.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crucifix.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crumpled.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/crusade.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cubic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/cumbersome.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/customer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dashboard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/deadbolt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/decadence.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/decimal.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/deckhand.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/designing.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/detector.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/detergent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/determine.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dictator.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dinosaur.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/direction.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/disable.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/disbelief.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/disruptive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/distortion.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/document.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dogsled.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dragnet.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/drainage.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dreadful.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/drifter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dropper.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/drumbeat.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/drunken.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/dwelling.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/eating.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/edict.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/egghead.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/eightball.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/embezzle.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/enchanting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/endorse.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/endow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/enlist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/enrollment.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/enterprise.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/equation.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/equipment.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/erase.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/escapade.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/escape.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/everyday.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/examine.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/exceed.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/existence.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/exodus.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/eyeglass.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/eyetooth.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/facial.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/fallout.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/fascinate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/filament.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/finicky.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/flagpole.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/flatfoot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/flytrap.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/forever.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/fortitude.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/fracture.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/framework.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/freedom.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/frequency.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/frighten.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/gadgetry.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/gazelle.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/getaway.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/glitter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/glossary.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/glucose.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/goggles.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/goldfish.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/gossamer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/graduate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/gravity.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/gremlin.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/guidance.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/guitarist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hamburger.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hamlet.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/handiwork.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hazardous.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/headwaters.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hemisphere.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hesitate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hideaway.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/highchair.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hockey.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/holiness.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hurricane.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/hydraulic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/impartial.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/impetus.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/inception.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/indigo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/indoors.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/indulge.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/inertia.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/infancy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/inferno.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/informant.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/insincere.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/insurgent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/integrate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/intention.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/inventive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/inverse.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/involve.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/island.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/jawbone.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/keyboard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/kickoff.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/kiwi.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/klaxon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/leprosy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/letterhead.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/liberty.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/locale.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/lockup.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/maritime.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/matchmaker.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/maverick.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/megaton.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/merit.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/microscope.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/microwave.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/midsummer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/millionaire.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/minnow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/miracle.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/miser.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/misnomer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/molasses.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/molecule.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/monument.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/mosquito.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/mural.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/music.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/narrative.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/nebula.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/necklace.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/newborn.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/newsletter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/nightbird.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/obtuse.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/offload.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/onlooker.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/optic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/opulent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/orca.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/outfielder.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pandemic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/paperweight.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/paragon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/paragraph.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/paramount.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/passenger.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/payday.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/peachy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pedigree.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/penetrate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/perceptive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/performance.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pharmacy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pheasant.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/phonetic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/photograph.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/physique.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pioneer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/playhouse.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pocketful.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/politeness.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/positive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/potato.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/preclude.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/prefer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/preshrunk.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/printer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/processor.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/provincial.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/prowler.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/proximate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/puberty.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/publisher.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pupil.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/puppy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/pyramid.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/python.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/quadrant.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/quantity.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/quiver.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/quota.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/racketeer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ragtime.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ratchet.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/rebellion.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/rebirth.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/recipe.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/recover.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/reform.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/regain.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/reindeer.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/rematch.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/repay.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/repellent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/replica.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/reproduce.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/resistor.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/responsive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/retouch.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/retraction.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/retrieval.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/retrospect.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/revenge.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/revenue.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/revival.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/revolver.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/reward.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/rhythm.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ribcage.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ringbolt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/robust.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/rocker.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ruffled.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sailboat.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sandalwood.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sardonic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/savagery.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sawdust.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/scallion.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/scavenger.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/scenic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/scorecard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/seabird.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/select.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sensation.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sentence.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/shadow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/shamrock.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/showgirl.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/skullcap.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/skydive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/slingshot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/slowdown.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/snapline.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/snapshot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/snowcap.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/snowslide.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sociable.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/solo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/southward.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/souvenir.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/soybean.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spaniel.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spearhead.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/specialist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/speculate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spellbind.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spheroid.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spigot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spindle.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/spyglass.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stagehand.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stagnate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stairway.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/standard.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stapler.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/steamship.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sterling.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stethoscope.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stockman.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stopwatch.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stormy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/stupendous.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sugar.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/supportive.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/surmount.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/surrender.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/suspense.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/suspicious.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sweatband.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/swelter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/sympathy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tactics.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/talon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tambourine.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tapeworm.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/telephone.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tempest.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/therapist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tiger.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tissue.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tobacco.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tolerance.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tomorrow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tonic.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/topmost.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/torpedo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tracker.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tradition.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/transit.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/trauma.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/travesty.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/treadmill.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/trombonist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/trouble.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/truncated.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tumor.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tunnel.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/tycoon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/typewriter.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/ultimate.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/uncut.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/undaunted.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/underfoot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/unearth.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/unicorn.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/unify.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/universe.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/unravel.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/unwind.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/upcoming.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/uproot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/upset.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/upshot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/vacancy.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/vagabond.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/vapor.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/vertigo.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/village.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/virus.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/visitor.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/vocalist.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/voyager.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/waffle.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/wallet.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/warranty.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/watchword.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/wayside.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/whimsical.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/willow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/woodlark.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/base256/8000/yesteryear.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/100.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/101.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/102.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/103.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/104.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/105.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/106.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/107.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/108.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/109.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/110.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/111.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/112.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/113.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/114.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/115.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/116.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/117.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/118.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/119.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/120.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/121.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/122.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/32.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/35.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/42.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/46.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/97.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/98.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ascii/8000/99.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-alone.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-bad-pin.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-goodbye.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-is-locked.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-is-unlocked.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-kicked.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-locked.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-muted.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-pin.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-unmuted.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/conference/8000/conf-welcome.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/and.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/cent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/central.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/cents-per-minute.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/cents.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/dollar.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/dollars.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/minus.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/currency/8000/negative.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/0.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/1.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/10.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/11.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/12.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/13.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/14.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/15.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/16.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/17.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/18.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/19.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/2.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/20.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/3.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/30.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/4.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/40.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/5.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/50.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/6.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/60.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/7.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/70.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/8.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/80.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/9.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/90.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/dot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-1.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-10.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-11.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-12.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-13.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-14.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-15.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-16.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-17.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-18.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-19.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-2.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-20.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-3.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-30.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-4.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-5.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-6.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-7.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-8.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/h-9.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/hundred.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/million.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/period.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/point.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/pound.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/star.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/digits/8000/thousand.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-account_number.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-call.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-connect_to_caller.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-customer_service.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-enter_ext.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-enter_ext_pound.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-extension_to_provision_this_phone.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-first_name_first.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-for_this_person.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-hello.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-hold_connect_call.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-im_sorry.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-last_name_first.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-not.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-operator.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-or.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-pin_or_extension_is-invalid.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-please.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-please_enter_extension_followed_by_pound.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-please_enter_pin_followed_by_pound.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-please_reenter_your_pin.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-please_return_our_call_at.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-please_try_again.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-press_one_q_or_z.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-provision_phone_permanently_to_extension.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-regarding_reference_number.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-register_for_cluecon.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-sales.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-sample_submenu.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-say_name.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-send_to_voicemail.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-speak_to_a_customer_service_representative.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-spell_name.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-take_a_message.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-technical_support.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-thank_you.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-that_was_an_invalid_entry.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-this_is_a_call_from.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-this_ivr_will_let_you_test_features.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-this_phone_will_now_reboot.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_call_the_freeswitch_conference.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_do_a_freeswitch_echo_test.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_do_a_fwd_echo_test.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_hear_sample_submenu.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_hear_screaming_monkeys.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_listen_to_moh.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_log_in.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_log_out.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_repeat_these_options.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_return_to_previous_menu.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-to_speak_with_an_operator.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-use_telephone_keypad.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-welcome_to_freeswitch.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-you_are_about_to_provision_this_phone.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-you_are_now_logged_in.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-you_are_now_logged_out.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-you_have_dialed_an_invalid_extension.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-you_may.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/ivr/8000/ivr-you_may_exit_by_hanging_up.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/call_secured.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/error.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/followed.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/if_you_are_this_person.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/if_you_would_like_to.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/misc-your_call_has_been_terminated.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/misc-your_call_will_be_terminated_in.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/provide_reference_number.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/transfer1.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/transfer2.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/misc/8000/we_are_trying_to_reach.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/100.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/101.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/102.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/103.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/104.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/105.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/106.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/107.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/108.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/109.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/110.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/111.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/112.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/113.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/114.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/115.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/116.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/117.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/118.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/119.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/120.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/121.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/122.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/32.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/35.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/42.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/46.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/97.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/98.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/phonetic-ascii/8000/99.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/a-m.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/at.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-0.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-1.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-2.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-3.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-4.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-5.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/day-6.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/hour.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/hours.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/minute.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/minutes.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-0.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-1.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-10.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-11.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-2.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-3.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-4.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-5.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-6.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-7.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-8.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/mon-9.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/oclock.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/oh.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/p-m.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/second.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/seconds.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/today.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/tomorrow.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/time/8000/yesterday.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-abort.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-advanced.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-advanced_alt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-change_password.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-choose_greeting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-choose_greeting_choose.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-choose_greeting_fail.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-continue.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-delete_recording.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-deleted.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-emailed.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-enter_id.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-enter_pass.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-fail_auth.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-followed_by.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-followed_by_pound.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-forward_add_intro.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-forward_enter_ext.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-forward_to_email.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-goodbye.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-greeting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-hello.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-in_folder.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-listen_new.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-listen_saved.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-listen_to_recording.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-listen_to_recording_again.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-mailbox_full.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-main_menu.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-main_menu_alt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-mark-urgent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-marked-urgent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-message.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-message_alt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-message_number.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-messages.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-messages_alt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-new.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-not_available.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-person.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-play_greeting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-press.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-record_greeting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-record_message.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-record_name1.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-record_name2.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-rerecord.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-return_call.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-save_recording.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-saved.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-selected.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-send_message_now.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-that_was_an_invalid_ext.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-to_exit.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-to_exit_alt.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-to_forward.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-to_record_greeting.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-too-small.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-urgent-new.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-urgent-saved.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-urgent.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/voicemail/8000/vm-you_have.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-DeliveryorTakeout.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/extracheese.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/garlic.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Pickle.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmDali.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmStartOver.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/MeatLovers.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/TotallyHumongous.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmPickle.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/goatcheese.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Small.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/canadianbacon.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ham.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Medium.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmHawaiian.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-ChangeSpec.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmCustom.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmTotallyHumongous.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/pickles.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmMedium.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/olives.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmPan.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Vegetarian.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-WasThisRight.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/shrimp.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ExtraLarge.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/HandTossed.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Wanted-No.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/salami.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-SpecialtyList.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Crust.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmExtraLarge.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Pan.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-SpecialtyorCustom.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Hawaiian.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/artichoke.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Dali.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmLarge.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmHandTossed.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmPickup.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/spinach.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/everything.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Delivery.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-NI.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/sausage.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmVegetarian.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/mango.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Remove.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/bellpepper.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-You_ordered_a.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/mushroom.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Thin.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/onions.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/pizza.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmRemove.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmNone.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/pineapple.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-ARSO.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Size.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Adding.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Toppings.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-Greeting.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmDelivery.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmThin.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmSpeciality.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmSmall.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/ConfirmMeatLovers.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/pepperoni.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-With.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Large.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Pickup.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/GP-NoDeliveryorTake-out.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/anchovies.wav
+%%WITH_PIZZADEMO%%freeswitch/sounds/en/us/pizza/Crust.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-check_sas.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-enroll_already_enrolled.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-enroll_confirmed.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-enroll_not_sip_registered.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-enroll_notzrtp.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-enroll_welcome.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-is_secure.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-is_unverified.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-is_verified.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-somethings_wrong.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-status_error.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-status_notsecure.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-status_secure.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-status_securing.wav
+%%WITH_SOUNDS%%freeswitch/sounds/en/us/callie/zrtp/8000/zrtp-thankyou_goodbye.wav
+%%WITH_SOUNDS%%freeswitch/sounds/music/8000/danza-espanola-op-37-h-142-xii-arabesca.wav
+%%WITH_SOUNDS%%freeswitch/sounds/music/8000/partita-no-3-in-e-major-bwv-1006-1-preludio.wav
+%%WITH_SOUNDS%%freeswitch/sounds/music/8000/ponce-preludio-in-e-major.wav
+%%WITH_SOUNDS%%freeswitch/sounds/music/8000/suite-espanola-op-47-leyenda.wav
+@dirrm freeswitch/sounds/music/8000
+@dirrm freeswitch/sounds/music
+@dirrm freeswitch/sounds/en/us/pizza
+@dirrm freeswitch/sounds/en/us/callie/zrtp/8000
+@dirrm freeswitch/sounds/en/us/callie/zrtp
+@dirrm freeswitch/sounds/en/us/callie/voicemail/8000
+@dirrm freeswitch/sounds/en/us/callie/voicemail
+@dirrm freeswitch/sounds/en/us/callie/time/8000
+@dirrm freeswitch/sounds/en/us/callie/time
+@dirrm freeswitch/sounds/en/us/callie/phonetic-ascii/8000
+@dirrm freeswitch/sounds/en/us/callie/phonetic-ascii
+@dirrm freeswitch/sounds/en/us/callie/misc/8000
+@dirrm freeswitch/sounds/en/us/callie/misc
+@dirrm freeswitch/sounds/en/us/callie/ivr/8000
+@dirrm freeswitch/sounds/en/us/callie/ivr
+@dirrm freeswitch/sounds/en/us/callie/digits/8000
+@dirrm freeswitch/sounds/en/us/callie/digits
+@dirrm freeswitch/sounds/en/us/callie/currency/8000
+@dirrm freeswitch/sounds/en/us/callie/currency
+@dirrm freeswitch/sounds/en/us/callie/conference/8000
+@dirrm freeswitch/sounds/en/us/callie/conference
+@dirrm freeswitch/sounds/en/us/callie/base256/8000
+@dirrm freeswitch/sounds/en/us/callie/base256
+@dirrm freeswitch/sounds/en/us/callie/ascii/8000
+@dirrm freeswitch/sounds/en/us/callie/ascii
+@dirrm freeswitch/sounds/en/us/callie
+@dirrm freeswitch/sounds/en/us
+@dirrm freeswitch/sounds/en
+@dirrm freeswitch/sounds
+@dirrm freeswitch/perl
+@dirrm freeswitch/grammar/model/wsj1
+@dirrm freeswitch/grammar/model/communicator
+@dirrm freeswitch/grammar/model
+@dirrm freeswitch/grammar
+@dirrm freeswitch/scripts/javascript/js_modules
+@dirrm freeswitch/scripts/javascript
+@dirrm freeswitch/scripts
+@dirrm freeswitch/recordings
+@dirrm freeswitch/mod
+@dirrm freeswitch/log/xml_cdr
+@dirrm freeswitch/log
+@dirrm freeswitch/libdata/pkgconfig
+@dirrm freeswitch/libdata
+@dirrm freeswitch/lib
+@dirrm freeswitch/include/spandsp/private
+@dirrm freeswitch/include/spandsp
+@dirrm freeswitch/include
+@dirrm freeswitch/htdocs
+@dirrm freeswitch/db
+@dirrm freeswitch/conf/sip_profiles/internal
+@dirrm freeswitch/conf/sip_profiles/external
+@dirrm freeswitch/conf/sip_profiles
+@dirrm freeswitch/conf/mrcp_profiles
+@dirrm freeswitch/conf/lang/ru/vm
+@dirrm freeswitch/conf/lang/ru/demo
+@dirrm freeswitch/conf/lang/ru
+@dirrm freeswitch/conf/lang/fr/vm
+@dirrm freeswitch/conf/lang/fr/demo
+@dirrm freeswitch/conf/lang/fr
+@dirrm freeswitch/conf/lang/en/vm
+@dirrm freeswitch/conf/lang/en/demo
+@dirrm freeswitch/conf/lang/en
+@dirrm freeswitch/conf/lang/de/vm
+@dirrm freeswitch/conf/lang/de/demo
+@dirrm freeswitch/conf/lang/de
+@dirrm freeswitch/conf/lang
+@dirrm freeswitch/conf/jingle_profiles
+@dirrm freeswitch/conf/directory/default
+@dirrm freeswitch/conf/directory
+@dirrm freeswitch/conf/dialplan/public
+@dirrm freeswitch/conf/dialplan/default
+@dirrm freeswitch/conf/dialplan
+@dirrm freeswitch/conf/autoload_configs
+@dirrm freeswitch/conf
+@dirrm freeswitch/bin
+@dirrm freeswitch
+@exec mkdir -p %D/freeswitch/scripts/javascript/js_modules
+@exec mkdir -p %D/freeswitch/scripts/javascript
+@exec mkdir -p %D/freeswitch/recordings
+@exec mkdir -p %D/freeswitch/log/xml_cdr
+@exec mkdir -p %D/freeswitch/htdocs
+@exec mkdir -p %D/freeswitch/db
+@exec mkdir -p %D/freeswitch/conf