changeset 54:90eebc3c02ca

- Scripts for running recognition experiments using AIM-C and HTK to compare MFCCs against features generated with AIM-C
author tomwalters
date Wed, 04 Aug 2010 06:41:56 +0000
parents c058da80d443
children d8d7757b83a6
files experiments/README.txt experiments/scripts/HTK/install_htk.sh experiments/scripts/aimc/build_aimc.sh experiments/scripts/cnbh-syllables/feature_generation/convert_flac_to_wav.sh experiments/scripts/cnbh-syllables/feature_generation/gen_hcopy_aimcopy_script.sh experiments/scripts/cnbh-syllables/feature_generation/pink_noise.sh experiments/scripts/cnbh-syllables/feature_generation/run_aimcopy.sh experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh experiments/scripts/cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh experiments/scripts/cnbh-syllables/results_plotting/plot_all_results.m experiments/scripts/cnbh-syllables/run_training_and_testing/gen_htk_base_files.sh experiments/scripts/cnbh-syllables/run_training_and_testing/run_test_instance.sh experiments/scripts/cnbh-syllables/run_training_and_testing/test_features.sh experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/README.txt experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/generate_train_test_sets.sh experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/matlab/get_spoke_points.m experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/matlab/list_spokes.m experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/spoke_point.sh experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/generate_train_test_lists.sh experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/test_rand.mlf experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/test_rand.scp experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/test_syllables experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/train_rand.mlf experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/train_rand.scp experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/train_syllables experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/train_on_central.sh experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/train_on_extrema.sh experiments/scripts/master.sh experiments/scripts/setup_aws_instance.sh
diffstat 29 files changed, 75196 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/README.txt	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,1 @@
+Scripts to run
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/HTK/install_htk.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,15 @@
+#!/bin/bash
+set -e
+set -u
+if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then
+sudo mkdir /mnt/experiments/htk
+sudo chown ubuntu /mnt/experiments/htk
+cd /mnt/experiments/htk
+wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz
+tar -xzf HTK-3.4.1.tar.gz
+cd htk
+./configure --disable-hslab
+make
+sudo make install
+touch /mnt/experiments/htk/.htk_installed_success
+fi
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/aimc/build_aimc.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,12 @@
+#!/bin/bash
+# Set up AIM-C on an Amazon EC2 instance. A useful reference for building.
+AIMC_DIR=/mnt/experiments/aimc
+
+sudo mkdir -p $AIMC_DIR
+sudo chown ubuntu $AIMC_DIR
+cd $AIMC_DIR
+svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only
+cd aimc-read-only
+scons
+cd ..
+export PATH=$PATH:$AIMC_DIR/aimc-read-only/build/posix-release/
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/convert_flac_to_wav.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,31 @@
+#!/bin/bash
+# Copyright 2009-2010 Thomas Walters <tom@acousticscale.org>
+#
+# Makes a copy of the cnbh syllables database in FLAC format found in
+# $SOUNDS_ROOT/cnbh-syllables. The database is uncompressed to .WAV format
+# for use with AIMCopy and HCopy.
+# The first command-line argument is the location of $SOUNDS_ROOT
+set -e
+set -u
+
+$SOUNDS_ROOT=$1
+
+if [ ! -e $SOUNDS_ROOT/clean/.make_clean_wavs_success ] then
+  mkdir -p $SOUNDS_ROOT/clean
+  VOWELS="a e i o u"
+  CONSONANTS="b d f g h k l m n p r s t v w x y z"
+  for v in $VOWELS; do
+    mkdir $SOUNDS_ROOT/clean/$v$v
+    for c in $CONSONANTS; do
+      mkdir $SOUNDS_ROOT/clean/$c$v
+      mkdir $SOUNDS_ROOT/clean/$v$c
+    done
+  done
+  CURRENT_DIR=`pwd`
+  cd $SOUNDS_ROOT/cnbh-syllables/
+  for file in `find . -iname "*.flac"`; do
+    sox $file ../clean/${file%flac}.wav
+  done
+  touch $SOUNDS_ROOT/clean/.make_clean_wavs_success
+  cd $CURRENT_DIR
+done
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/gen_hcopy_aimcopy_script.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,129 @@
+#!/bin/bash
+# Copyright 2009-2010 Thomas Walters <tom@acousticscale.org>
+#
+# Generate a list of source and destination filenames from the syllables spoke
+# pattern. This list can be used as a script for HTK's HCopy and AIM-C's
+# AIMCopy binaries for generating features.
+#
+# The first argument is the path to the root directory for the features to be
+# generated in. The second argument is the path to the sounds database.
+#
+# Generated files:
+# feature_generation_script - The AIMCopy / HCopy script
+
+FEATURES_DIR=$1
+SOUND_SOURCE=$2
+
+FULL_LIST=feature_generation_script
+
+# Temporary file names
+SYLLIST=syllable_list
+TALKERS=talker_list
+
+# The vowels and consonants that make up the CNBH database
+VOWELS="a e i o u"
+CONSONANTS="b d f g h k l m n p r s t v w x y z"
+
+if [ ! -e $FEATURES_DIR/.features_script_success ]; then
+mkdir -p $FEATURES_DIR
+
+# Make the sets of VC, CV, and vowel only labels, plus silence and use them to
+# generate the grammar, dictionary and list of syllables
+if [ -a $FEATURES_DIR/$SYLLIST.tmp.tmp ] 
+then
+  rm $FEATURES_DIR/$SYLLIST.tmp.tmp
+fi
+
+for v in $VOWELS; do
+  for c in $CONSONANTS; do
+    echo $v$c >> $FEATURES_DIR/$SYLLIST.tmp.tmp
+    echo $c$v >> $FEATURES_DIR/$SYLLIST.tmp.tmp
+  done
+done
+
+# Sort the syllable list and delete the 
+# temporary, unsorted version
+sort $FEATURES_DIR/$SYLLIST.tmp.tmp > $FEATURES_DIR/$SYLLIST.tmp
+rm $FEATURES_DIR/$SYLLIST.tmp.tmp
+
+cat <<"EOF" > $FEATURES_DIR/${TALKERS}.tmp
+170.9p112.2s
+171.0p112.8s	
+171.3p111.7s	
+171.5p113.1s	
+171.9p111.5s	
+172.1p113.0s	
+172.4p111.9s	
+172.5p112.5s
+171.7p112.3s	
+137.0p104.3s	
+141.3p135.4s	
+145.5p106.3s	
+148.8p128.8s	
+151.6p83.9s	
+153.0p108.1s	
+155.5p123.5s	
+156.7p90.6s	
+159.5p109.6s	
+161.1p119.4s	
+161.1p96.8s	
+163.4p157.6s	
+164.7p110.8s	
+164.9p102.1s	
+165.6p144.0s	
+165.7p116.2s	
+167.4p133.5s	
+167.8p106.5s	
+168.6p111.6s	
+168.9p125.4s	
+169.0p114.0s	
+170.0p109.7s	
+170.1p119.5s	
+171.0p115.5s	
+172.4p109.3s	
+173.3p105.6s	
+173.5p115.0s	
+174.5p100.6s	
+174.5p110.6s	
+174.9p113.0s	
+175.7p118.5s	
+176.1p94.5s	
+178.0p108.5s	
+178.1p87.6s	
+178.8p123.6s	
+179.0p113.9s	
+180.4p80.1s	
+183.0p105.7s	
+183.0p130.4s	
+184.8p115.1s	
+188.1p139.2s	
+189.6p102.1s	
+192.7p116.7s	
+194.5p150.4s	
+198.1p97.9s	
+202.7p118.6s	
+208.6p93.2s	
+215.2p121.0s
+EOF
+
+echo "Generating script..."
+exec 3> $FEATURES_DIR/$FULL_LIST
+for syllable in $(cat $FEATURES_DIR/${SYLLIST}.tmp); do
+  for speaker in $(cat $FEATURES_DIR/${TALKERS}.tmp); do
+    SOURCE_FILENAME=$SOUND_SOURCE/$syllable/${syllable}${speaker}.wav
+    DEST_FILENAME=$FEATURES_DIR/$syllable/${syllable}${speaker}.htk
+    echo "$SOURCE_FILENAME  ${DEST_FILENAME}" >&3
+  done
+done
+exec 3>&-
+
+# Make the necessary directories for the computed features
+echo "Making directory structure..."
+for syllable in $(cat $FEATURES_DIR/${SYLLIST}.tmp); do
+  mkdir -p $FEATURES_DIR/$syllable
+done
+
+rm $FEATURES_DIR/$SYLLIST.tmp
+rm $FEATURES_DIR/${TALKERS}.tmp
+touch $FEATURES_DIR/.features_script_success
+fi
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/pink_noise.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,44 @@
+#!/bin/bash
+# Copyright 2009-2010 Thomas Walters <tom@acousticscale.org>
+# 
+# Add pink noise to the CNBH syllables database. The first argument is the
+# path to the clean .wav files. The second argument is a quoted list of the 
+# desired SNRs in dB, separated by spaces. Directories are made for each SNR
+# in the directory above that given in the first argument.
+set -e
+set -u
+
+CLEAN_SYLLABLES_DATABASE_PATH=$1
+SIGNAL_TO_NOISE_RATIOS=$2
+
+# The syllables database is approximately at -9dB re. the max RMS level for a
+# .wav file.
+REFERENCE_SIGNAL_LEVEL="-9"
+SAMPLE_RATE=48000
+
+PREV_DIR=`pwd`
+cd $CLEAN_SYLLABLES_DATABASE_PATH
+
+for SNR in ${SIGNAL_TO_NOISE_RATIOS}; do
+  if [ ! -e ../snr_${SNR}dB/.pink_noise_success ]
+  then
+    mkdir -p ../snr_${SNR}dB/
+    VOWELS="a e i o u"
+    CONSONANTS="b d f g h k l m n p r s t v w x y z"
+    for v in $VOWELS; do
+      mkdir ../snr_${SNR}dB/$v$v
+      for c in $CONSONANTS; do
+        mkdir ../snr_${SNR}dB/$c$v
+        mkdir ../snr_${SNR}dB/$v$c
+      done
+    done
+    NOISE_LEVEL=$(( $REFERENCE_SIGNAL_LEVEL - $SNR ))
+    for file in `find . -iname "*.wav"`; do
+      # Note: the 0.684 below is the length of each syllable in the database
+      # in seconds
+      sox -r ${SAMPLE_RATE} -b 16 -n -t s2 - synth 0.684 pinknoise vol ${NOISE_LEVEL} dB | sox -m -v 0.25 $file -t s2 -r ${SAMPLE_RATE} -c 1 - ../snr_${SNR}dB/${file}
+    done
+    touch ../snr_${SNR}dB/.pink_noise_success
+  fi
+done
+cd $PREV_DIR
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/run_aimcopy.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+# Test for the existence of AIMCopy in the path
+AIMCOPY=`which AIMCopy`
+if [ $AIMCOPY == "" ]; then
+  echo "Please build AIM-C and make AIMCopy available in the path"
+fi
+
+set -e
+set -u
+
+FEATURES_DIR=$1
+MACHINE_CORES=$2
+FILE_LIST=feature_generation_script
+
+echo "Splitting data files over cores..."
+total_cores=$(($MACHINE_CORES))
+echo -n $total_cores
+echo " cores available"
+total_files=`cat $FEATURES_DIR/$FILE_LIST | wc -l | sed 's/ *//'`
+echo -n $total_files
+echo " files to process"
+files_per_core=$(($total_files/$total_cores+1))
+echo -n $files_per_core
+echo " files per core"
+split -l $files_per_core $FEATURES_DIR/$FILE_LIST $FEATURES_DIR/split_list
+splits=( $(ls $FEATURES_DIR/split_list*))
+element=0
+echo -n "Spawning "
+echo -n $total_cores
+echo " tasks..."
+for ((c=1;c<=$MACHINE_CORES;c+=1)); do
+  s=${splits[$element]}
+  AIMCopy -D $FEATURES_DIR/aimcopy_config.out -S $s &
+  let element=element+1
+done
+
+echo "Waiting for tasks to complete..."
+wait
+echo "Done!"
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,63 @@
+#!/bin/bash
+
+HCOPY=`which HCopy`
+if [ $HCOPY == "" ]; then
+  echo "Please build HTK and make the binaries available in the path"
+fi
+
+set -e
+set -u
+
+FEATURES_DIR=$1
+MACHINE_CORES=$2
+FILE_LIST=feature_generation_script
+HCOPY_CONFIG=hcopy_configuration
+
+echo "Creating HCopy config file..."
+cat <<"EOF" > $FEATURES_DIR/${HCOPY_CONFIG}
+# Coding parameters
+SOURCEFORMAT= WAV
+TARGETKIND = MFCC_0_D_A
+TARGETRATE = 100000.0
+SAVECOMPRESSED = T
+SAVEWITHCRC = T
+WINDOWSIZE = 250000.0
+USEHAMMING = T
+PREEMCOEF = 0.97
+NUMCHANS = 200
+CEPLIFTER = 22
+NUMCEPS = 12
+ENORMALISE = F
+# Parameters a bit like Welling and Ney (2002)
+# Can't do zero, it seems.
+# WARPLCUTOFF = 10 
+# Upper frequency is the Nyquist freq. (24000Hz) 
+# so choose the break freq. close to that
+# WARPUCUTOFF = 23000
+EOF
+
+echo "Splitting data files over cores..."
+total_cores=$(($MACHINE_CORES))
+echo -n $total_cores
+echo " cores available"
+total_files=`cat $FEATURES_DIR/$FILE_LIST | wc -l | sed 's/ *//'`
+echo -n $total_files
+echo " files to process"
+files_per_core=$(($total_files/$total_cores+1))
+echo -n $files_per_core
+echo " files per core"
+split -l $files_per_core $FEATURES_DIR/$FILE_LIST $FEATURES_DIR/split_list
+splits=( $(ls $FEATURES_DIR/split_list*))
+element=0
+echo -n "Spawning "
+echo -n $total_cores
+echo " tasks..."
+for ((c=1;c<=$MACHINE_CORES;c+=1)); do
+  s=${splits[$element]}
+  HCopy -T 1 -C $WORK/$HCOPY_CONFIG -S $s &
+  let element=element+1
+done
+
+echo "Waiting for tasks to complete..."
+wait
+echo "Done!"
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,166 @@
+#!/bin/bash
+# 
+
+HCOPY=`which HCopy`
+if [ $HCOPY == "" ]; then
+  echo "Please build HTK and make the binaries available in the path"
+fi
+
+set -e
+set -u
+
+FEATURES_DIR=$1
+SOUND_SOURCE=$2
+
+FULL_LIST=feature_generation_script
+
+# Temporary file names
+SYLLIST=syllable_list
+TALKERS=talker_list
+
+# The vowels and consonants that make up the CNBH database
+VOWELS="a e i o u"
+CONSONANTS="b d f g h k l m n p r s t v w x y z"
+
+if [ ! -e $FEATURES_DIR/.features_script_success ]; then
+mkdir -p $FEATURES_DIR
+
+# Make the sets of VC, CV, and vowel only labels, plus silence and use them to
+# generate the grammar, dictionary and list of syllables
+if [ -a $FEATURES_DIR/$SYLLIST.tmp.tmp ] 
+then
+  rm $FEATURES_DIR/$SYLLIST.tmp.tmp
+fi
+
+for v in $VOWELS; do
+  for c in $CONSONANTS; do
+    echo $v$c >> $FEATURES_DIR/$SYLLIST.tmp.tmp
+    echo $c$v >> $FEATURES_DIR/$SYLLIST.tmp.tmp
+  done
+done
+
+# Sort the syllable list and delete the 
+# temporary, unsorted version
+sort $FEATURES_DIR/$SYLLIST.tmp.tmp > $FEATURES_DIR/$SYLLIST.tmp
+rm $FEATURES_DIR/$SYLLIST.tmp.tmp
+
+cat <<"EOF" > $FEATURES_DIR/${TALKERS}.tmp
+170.9p112.2s
+171.0p112.8s	
+171.3p111.7s	
+171.5p113.1s	
+171.9p111.5s	
+172.1p113.0s	
+172.4p111.9s	
+172.5p112.5s
+171.7p112.3s	
+137.0p104.3s	
+141.3p135.4s	
+145.5p106.3s	
+148.8p128.8s	
+151.6p83.9s	
+153.0p108.1s	
+155.5p123.5s	
+156.7p90.6s	
+159.5p109.6s	
+161.1p119.4s	
+161.1p96.8s	
+163.4p157.6s	
+164.7p110.8s	
+164.9p102.1s	
+165.6p144.0s	
+165.7p116.2s	
+167.4p133.5s	
+167.8p106.5s	
+168.6p111.6s	
+168.9p125.4s	
+169.0p114.0s	
+170.0p109.7s	
+170.1p119.5s	
+171.0p115.5s	
+172.4p109.3s	
+173.3p105.6s	
+173.5p115.0s	
+174.5p100.6s	
+174.5p110.6s	
+174.9p113.0s	
+175.7p118.5s	
+176.1p94.5s	
+178.0p108.5s	
+178.1p87.6s	
+178.8p123.6s	
+179.0p113.9s	
+180.4p80.1s	
+183.0p105.7s	
+183.0p130.4s	
+184.8p115.1s	
+188.1p139.2s	
+189.6p102.1s	
+192.7p116.7s	
+194.5p150.4s	
+198.1p97.9s	
+202.7p118.6s	
+208.6p93.2s	
+215.2p121.0s
+EOF
+
+echo "Generating script..."
+exec 3> $FEATURES_DIR/$FULL_LIST
+for syllable in $(cat $FEATURES_DIR/${SYLLIST}.tmp); do
+  for speaker in $(cat $FEATURES_DIR/${TALKERS}.tmp); do
+    SOURCE_FILENAME=$SOUND_SOURCE/$syllable/${syllable}${speaker}.wav
+    DEST_FILENAME=$FEATURES_DIR/$syllable/${syllable}${speaker}.htk
+    echo "$SOURCE_FILENAME  ${DEST_FILENAME}" >&3
+  done
+done
+exec 3>&-
+
+# Make the necessary directories for the computed features
+echo "Making directory structure..."
+for syllable in $(cat $FEATURES_DIR/${SYLLIST}.tmp); do
+  mkdir -p $FEATURES_DIR/$syllable
+done
+
+
+echo "Creating HCopy config file..."
+cat <<"EOF" > $FEATURES_DIR/${HCOPY_CONFIG}
+# Coding parameters
+SOURCEFORMAT= WAV
+TARGETKIND = MFCC_0_D_A
+TARGETRATE = 100000.0
+SAVECOMPRESSED = T
+SAVEWITHCRC = T
+WINDOWSIZE = 250000.0
+USEHAMMING = T
+PREEMCOEF = 0.97
+NUMCHANS = 200
+CEPLIFTER = 22
+NUMCEPS = 12
+ENORMALISE = F
+# Parameters a bit like Welling and Ney (2002)
+# Can't do zero, it seems.
+WARPLCUTOFF = 10 
+# Upper frequency is the Nyquist freq. (24000Hz) 
+# so choose the break freq. close to that
+WARPUCUTOFF = 23000
+EOF
+
+#echo "Splitting data files..."
+#cat $WORK/${TRAIN_LIST} $WORK/${TEST_LIST} > $WORK/${COMBINED_LIST}
+
+for TALKER in $(cat $FEATURES_DIR/$TALKERS); do
+  cp $FEATURES_DIR/${HCOPY_CONFIG} $FEATURES_DIR/${HCOPY_CONFIG}_$TALKER
+  scale=`echo $speaker | sed 's/.*p//' | sed 's/s.*//'`
+  warpfactor=0`echo "scale=4; 100.0/$scale" | bc`
+  echo "WARPFREQ = $warpfactor" >> $WORK/${HCOPY_CONFIG}_$TALKER
+  ${HTK_PREFIX}HCopy -T 1 -C $FEATURES_DIR/${HCOPY_CONFIG}_$TALKER -S $FEATURES_DIR/${TRAIN_LIST}_$TALKER &
+done
+
+echo "Waiting for tasks to complete..."
+wait
+echo "Done!"
+
+rm $FEATURES_DIR/$SYLLIST.tmp
+rm $FEATURES_DIR/${TALKERS}.tmp
+touch $FEATURES_DIR/.features_script_success
+fi
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/results_plotting/plot_all_results.m	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,106 @@
+% Plot a figure based on recognition data from the HTK-AIM features
+% experiments - a reworking of the 'spider plots' by Jess Monaghan, 
+% Nick Fyson and Martin Vestergaard.
+% Copyright 2009 University of Cambridge
+% Author: Tom Walters <tcw24@cam>
+function plot_all_results(exp_path)
+
+% Load the results from the experimental directory
+load([exp_path 'misclassified.txt_iter15']); 
+
+% The total number of syllables in the CNBH syllable database 
+num_points = 185;
+target_VTL = 15;
+
+misclassified(:, 1) = 1 - misclassified(:, 1) / num_points; %#ok<NODEF>
+
+% The individual data points are plotted as spheres
+sphere_size_x = 1.2;
+sphere_size_y = 0.17;
+sphere_size_z = 2.5;
+
+% Get the location of the various points on the spoke pattern
+[spokes, target] = get_spoke_points();
+results = {};
+
+% Fill the results vector
+for i = 1:length(spokes)
+  results{i} = zeros(length(spokes{1}),1);
+  r=round(spokes{i}*10)/10;
+  for j = 1:length(spokes{i})
+      result =  misclassified(misclassified(:,3) == r(j,2) ...
+                                    & misclassified(:,2) == r(j,1), 1);
+      if result
+        results{i}(j) = result;
+      else
+        results{i}(j) = 1.0;
+      end
+  end
+  results{i} = 100.0 * results{i};
+  spokes{i}(:,2) = target_VTL * target(2) ./ spokes{i}(:,2);
+end
+
+figure1 = figure;
+axes1 = axes('Parent',figure1,'YScale','log','YMinorTick','on',...
+    'YMinorGrid','on',...
+    'XScale','log',...
+    'XMinorTick','on',...
+    'XMinorGrid','on');
+
+shades = 50;
+cmap = fliplr(autumn(shades));
+for i=1:length(spokes)
+  
+  hold on;
+  j=1;
+  x_pos = spokes{i}(j, 1);
+  y_pos = spokes{i}(j, 2);
+  z_pos = results{i}(j);
+  j=2;
+  x_pos_2 = spokes{i}(j, 1);
+  y_pos_2 = spokes{i}(j, 2);
+  z_pos_2 = results{i}(j);
+  
+  text(x_pos + 0.3*(x_pos - x_pos_2), y_pos + 0.3*(y_pos - y_pos_2), z_pos + 0.3*(z_pos - z_pos_2) , [num2str(results{i}(j), 3) '%']);
+  for j = 1:length(spokes{i})
+    [X Y Z] = sphere(10);
+    X = sphere_size_x.*X + spokes{i}(j,1);
+    Y = sphere_size_y.*Y + spokes{i}(j,2);
+    Z = sphere_size_z.*Z + results{i}(j);
+    % C = zeros(size(X));
+    plot3([spokes{i}(j, 1) spokes{i}(j, 1)], ...
+          [spokes{i}(j, 2),spokes{i}(j, 2)], [0 results{i}(j)], '-k.', ...
+          'LineWidth', 1, 'Color', [0.8 0.8 0.8]);
+    surf(X, Y, Z, ones(size(Z)) .* (results{i}(j)), 'LineStyle', 'none');
+  end
+  plot3(spokes{i}(:,1), spokes{i}(:,2), results{i}(:), '-', 'LineWidth', 2, ...
+       'Color', [0.2 0.2 0.2]);
+end
+% Plot a zero-sized sphere at zero to get the autoscaling of the colour bar
+% correct
+[X Y Z] = sphere(20);
+X = zeros(size(X)) - 1;
+surf(X, X, X, ones(size(Z)) .* 0, 'LineStyle', 'none');
+%colorbar('WestOutside');
+view([-80 60]);
+grid('on');
+xlim([132 224]);
+zlim([0 100]);
+ylim([10 22]);
+set(gca, 'FontSize', 12);
+%set(gca, 'FontName', 'Hoefler Text');
+xlabel('GPR /Hz');
+ylabel('VTL /cm');
+zlabel('Percent correct');
+set(axes1, 'YScale', 'log');
+set(axes1, 'XScale', 'log');
+set(axes1, 'XTick', [132 172 224]);
+set(axes1, 'YTick', [10 15 22]);
+set(axes1, 'YDir', 'reverse');
+set(axes1, 'ZTick', [0 20 40 60 80 100]);
+hold('all');
+print('-depsc', 'results_plot.eps');
+!open results_plot.eps
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/gen_htk_base_files.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,86 @@
+#!/bin/bash
+#
+# Create HTK grammar and other files for the CNBH syllables database.
+#
+# Copyright 2009-2010 Thomas Walters <tom@acousticscale.org>
+#
+# The first command-line argument is the directory in which to place
+# the generated files.
+#
+# The following files are generated:
+# grammar - HTK grammar file
+# dictionary - HTK dictionary file
+# syllable_list_with_silence - As above, with a silence syllable appended
+# word_network - Word network, as generated with HParse
+
+# TODO(tom): check for empty $1 and make WORK="."
+WORK=$1
+
+# Generated filenames
+GRAM=grammar
+DICT=dictionary
+SYLLIST_COMPLETE=syllable_list_with_silence
+WDNET=word_network
+
+# The vowels and consonants that make up the CNBH database
+VOWELS="a e i o u"
+CONSONANTS="b d f g h k l m n p r s t v w x y z"
+SILENCE="sil"
+
+# Make the sets of VC, CV, and vowel only labels, plus silence and use them to
+# generate the grammar, dictionary and list of syllables
+if [ -a $WORK/$SYLLIST_COMPLETE.tmp ] 
+then
+  rm $WORK/$SYLLIST_COMPLETE.tmp
+fi
+
+if [ -a $WORK/$DICT.tmp ] 
+then
+  rm $WORK/$DICT.tmp
+fi
+
+echo "Generating grammar, dictionary and syllable list..."
+echo -n '$word = ' > $WORK/$GRAM
+FIRST=true;
+for v in $VOWELS; do
+  echo "$v$v [$v$v] $v$v" >> $WORK/$DICT.tmp
+  echo $v$v >> $WORK/$SYLLIST_COMPLETE.tmp
+  if $FIRST; then
+    echo -n "$v$v" >> $WORK/$GRAM
+    FIRST=false
+  else
+    echo -n " | $v$v" >> $WORK/$GRAM
+  fi
+  for c in $CONSONANTS; do
+    echo "$v$c [$v$c] $v$c" >> $WORK/$DICT.tmp 
+    echo -n " | $v$c" >> $WORK/$GRAM
+    echo "$c$v [$c$v] $c$v" >> $WORK/$DICT.tmp 
+    echo -n " | $c$v" >> $WORK/$GRAM
+    echo $v$c >> $WORK/$SYLLIST_COMPLETE.tmp
+    echo $c$v >> $WORK/$SYLLIST_COMPLETE.tmp
+  done
+done
+echo ';' >> $WORK/$GRAM
+
+# Sort the dictionary and delete the 
+# temporary, unsorted version
+sort $WORK/$DICT.tmp > $WORK/$DICT
+rm $WORK/$DICT.tmp
+
+# Sort the syllable list and delete the 
+# temporary, unsorted version
+sort $WORK/$SYLLIST_COMPLETE.tmp > $WORK/$SYLLIST_COMPLETE
+rm $WORK/$SYLLIST_COMPLETE.tmp
+
+# Add silence to the end of the various files just generated
+echo $SILENCE >> $WORK/$SYLLIST_COMPLETE
+echo "end_$SILENCE [$SILENCE] $SILENCE" >> $WORK/$DICT
+echo "start_$SILENCE [$SILENCE] $SILENCE" >> $WORK/$DICT
+echo "(  start_$SILENCE   \$word   end_$SILENCE  )" >> $WORK/$GRAM
+
+# Use HParse to parse the grammar into a wordnet
+echo "Generating wordnet from grammar..."
+${HTK_PREFIX}HParse $WORK/$GRAM $WORK/$WDNET
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/run_test_instance.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,76 @@
+#!/bin/bash
+# Script to run a single HMM train/test cycle with the given parameters.
+# This script expects the following variables to be set
+#
+# total_hmm_states - total number of HMM states (including the 2 non-emitting states)
+# mixture_components - number of components in the output distribution for each emitting state
+# input_vector_size - number or elements in the input vector (normally 39 for MFCCs, 12 for AIM)
+# feature_code - HTK feature type code for the features being used (normally MFCC_0_D_A for MFCCs and USER_E_D_A for AIM features)
+# FEATURE_SUFFIXES - List of suffixes appended to the feature filenames. For the MFCCs this is just "mfc" but for the AIM feature, there can be multiple features generated from each run of AIMCopy
+# WORK - working directory
+# SYLLIST_COMPLETE
+
+# Filenames generated here
+HMMPROTO=hmm_prototype
+HHED_SCRIPT=hhed_change_components_script
+RECOUT=recognition_output
+RESULTS_FILE=results
+MISCLASSIFIED=misclassified_syllables
+
+# Filenames used here
+TRAIN_SCRIPT=training_script
+TEST_SCRIPT=testing_script
+SYLLIST_COMPLETE=syllable_list_with_silence
+
+hmm_type=${total_hmm_states}states_${mixture_components}mixture_components
+echo "HMM type: $hmm_type"
+mkdir -p $WORK/$hmm_type
+
+echo "Creating HMM structure..."
+./gen_hmmproto.py --input_size ${input_vector_size} --total_hmm_states ${total_hmm_states} --feature_type ${feature_code} > $WORK/$hmm_type/$HMMPROTO
+
+echo "Adding output mixture components..."
+./gen_hhed_script.py --num_means ${mixture_components} --total_hmm_states ${total_hmm_states} > $WORK/$hmm_type/$HHED_SCRIPT
+
+
+echo "Training HMM..."
+echo "Setting up prototype HMM..."
+mkdir -p $WORK/$hmm_type/hmm0
+HCompV -C $WORK/$HMMCONFIG -f 0.01 -m -S $WORK/$TRAIN_SCRIPT -M $WORK/$hmm_type/hmm0 $WORK/$hmm_type/$HMMPROTO
+
+echo "Generating HMM definitions..."
+# Now take the prototype file from hmm0, and create the other HMM definitions
+# from it
+grep -A 9999 "<BEGINHMM>" $WORK/$hmm_type/hmm0/$HMMPROTO > $WORK/$hmm_type/hmm0/hmms
+for syllable in $(cat $WORK/$SYLLIST_COMPLETE); do
+  echo "~h $syllable" >> $WORK/$hmm_type/$feature/hmm0/hmmdefs
+  cat $WORK/$hmm_type/$feature/hmm0/hmms >> $WORK/$hmm_type/$feature/hmm0/hmmdefs
+done
+ 
+echo -n "~o<STREAMINFO> 1 ${input_vector_size}<VECSIZE> ${input_vector_size}<NULLD><${feature_code}><DIAGC>" > $WORK/$hmm_type/$feature/hmm0/macros
+
+cat $WORK/$hmm_type/$feature/hmm0/vFloors >> $WORK/$hmm_type/$feature/hmm0/macros
+
+${HTK_PREFIX}HHEd  -H $WORK/$hmm_type/$feature/hmm0/macros -H $WORK/$hmm_type/$feature/hmm0/hmmdefs $WORK/$hmm_type/$HHED_SCRIPT $WORK/$SYLLIST_COMPLETE
+
+for iter in $TRAINING_ITERATIONS_LIST; do
+  echo "Training iteration ${iter}..."
+  let "nextiter=$iter+1"
+  mkdir $WORK/$hmm_type/hmm$nextiter
+  ${HTK_PREFIX}HERest -C $WORK/$HMMCONFIG -I $WORK/$TRAIN_MLF \
+    -t 250.0 150.0 1000.0 -S $WORK/$TRAIN_SCRIPT \
+    -H $WORK/$hmm_type/hmm$iter/macros -H $WORK/$hmm_type/hmm$iter/hmmdefs \
+    -M $WORK/$hmm_type/hmm$nextiter $WORK/$SYLLIST_COMPLETE
+done
+
+for iter in $TESTING_ITERATIONS_LIST; do
+  echo "Testing iteration ${iter}..."
+  ${HTK_PREFIX}HVite -H $WORK/$hmm_type/hmm$iter/macros -H $WORK/$hmm_type/hmm$iter/hmmdefs \
+    -C $WORK/$HMMCONFIG -S $WORK/$TEST_SCRIPT -i $WORK/$hmm_type/$RECOUT \
+    -w $WORK/$WDNET -p 0.0 -s 5.0 $WORK/$DICT $WORK/$SYLLIST_COMPLETE
+  echo "Results from testing on iteration ${iter}..."
+  ${HTK_PREFIX}HResults -e "???" ${SILENCE} -I $WORK/$TEST_MLF $WORK/$SYLLIST_COMPLETE $WORK/$hmm_type/$RECOUT
+  ${HTK_PREFIX}HResults -p -t -e "???" ${SILENCE} \
+    -I $WORK/$TEST_MLF $WORK/$SYLLIST_COMPLETE $WORK/$hmm_type/$RECOUT > $WORK/$hmm_type/${RESULTS_FILE}_iteration_$iter
+  grep Aligned $WORK/$hmm_type/${RESULTS_FILE}_iteration_$iter| sed -E "s/.*\/..\/([a-z]{2})([0-9]{2,3}\.[0-9])p([0-9]{2,3}\.[0-9])s.*/\2 \3/" | sort | uniq -c > $WORK/$hmm_type/${MISCLASSIFIED}_iteration_$iter
+done
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/test_features.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,66 @@
+#!/bin/bash
+#
+# Train and test an HTK monophone model using AIM or MFCC
+# features and the CNBH syllable databse
+#
+# Copyright 2009-2010 University of Cambridge
+# Author: Thomas Walters <tom@acousticscale.org>
+# 
+# Run multiple HMMs
+
+set -e
+set -u
+
+WORKING_DIRECTORY=$1
+FEATURE_SOURCE=$2
+FEATURE_SUFFIX=$3
+HMM_STATES_LIST=$4
+MIXTURE_COMPONENTS_LIST=$5
+TRAINING_ITERATIONS_LIST=$6
+TESTING_ITERATIONS_LIST=$7
+FEATURE_SIZE=$8
+FEATURE_TYPE=$9
+
+
+TRAIN_SPEAKERS=train_speakers
+TEST_SPEAKERS=test_speakers
+
+# These are not
+SYLLIST_COMPLETE=syllist
+GRAM=gram
+DICT=dict
+WDNET=wdnet
+TRAIN_MLF=train.mlf
+TEST_MLF=test.mlf
+HMMCONFIG=hmmconfig
+
+
+
+
+
+
+if [ "$MFCC_FEATURES" ]
+then
+  cat <<"EOF" > $WORK/$HMMCONFIG
+# Coding parameters
+SOURCEFORMAT= HTK
+EOF
+else
+  cat <<"EOF" > $WORK/$HMMCONFIG
+# Coding parameters
+# The TARGETKIND and SOURCEKIND lines are to add deltas and delta-deltas to
+# the AIM features
+SOURCEFORMAT= HTK
+SOURCEKIND= USER_E
+TARGETKIND = USER_E_D_A
+EOF
+fi
+
+for total_hmm_states in 3 4 5 6 7 8; do
+  for mixture_components in 1 2 3 4 5 6 7; do
+    . run_test_instance.sh &
+  done
+done
+echo "Waiting..."
+wait
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/README.txt	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,9 @@
+The bash scripts in this directory are incomplete. spoke_point.sh serves as
+a method of getting arbitrary spoke points, and 
+generate_train_test_scripts.sh is an incomplete method of generating training
+and testing scripts. However, they don't yet include a way of getting at the
+central speaker, or of creating random sets of syllables, so they're left here
+for historical value.
+
+The canonical spoke points are generated using the MATLAB function
+get_spoke_points..m
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/generate_train_test_sets.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+if [ "${#}" -lt "1" ]
+  then
+  echo "Generate various train and test sets from the syllables database"
+  echo "Creates files in the current directory: train_speakers and test_speakers"
+  echo "for training and testing."
+  echo "Usage $0 train_set [value]"
+  echo "  Where train_set is one of"
+  echo "  ring: train on all syllabes from a given ring of points, value: 1-7"
+  echo "    (1 is the outermost ring, 7 is the innermost (original) ring)"
+#  echo "  spoke: train on  all syllabes on a given spoke, value: 1-8"
+#  echo "  random: a randomly distributed set of syllabes from across all"
+#  echo "    training points"
+  exit -1
+fi
+
+# Names of various files and directories. 
+# Rename here if you don't like them for some reason.
+WORK=work
+SYLLIST=syls
+TRAIN_LIST=train_speakers
+TEST_LIST=test_speakers
+
+if [ $1 == "ring" ]
+  then
+  if [ "$#" -lt "2" ] 
+    then
+    RING=7
+  else
+    RING=$2
+  fi
+  exec 3> $WORK/$TRAIN_LIST
+  exec 5> $WORK/$TEST_LIST
+  for r in {1..7}
+  do
+    for s in {1..8}
+    do
+      if [ "$RING" -eq "$r" ]
+        then
+          echo "`./spoke_point.sh $s $r`" >&3
+        else
+          echo "`./spoke_point.sh $s $r`" >&5
+      fi
+    done
+  done
+fi
+
+exec 3>&-
+exec 5>&-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/matlab/get_spoke_points.m	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,61 @@
+
+
+function [spokes, target] = get_spoke_points(target_pitch,target_scale,...
+                                            pitch_radius,scale_radius,...
+                                            spoke_grad,no_spokes,...
+                                            no_per_spoke)
+
+if ~exist('target_pitch')
+    fprintf('Using default parameters for get_spoke_points\n');
+    % default values for get_spoke_points
+    target_pitch = 171.7;
+    target_scale = 165/146.9*100;%105.8;
+    pitch_radius = 4; % in semitones
+    scale_radius = 6; % in pseudo semitones
+    spoke_grad   = 0.22; % gradient of first spoke, closest to origin
+    no_spokes    = 8;
+    no_per_spoke = 7;
+end
+target = [target_pitch, target_scale];
+
+% calculate max values on ellipse for each coordinate
+pitch_max   = target_pitch * 2^(pitch_radius/12);
+scale_max   = target_scale * 2^(scale_radius/12);
+
+% convert all values into log domain
+target_p_log    = log(target_pitch);
+target_s_log    = log(target_scale);
+max_p_log       = log(pitch_max);
+max_s_log       = log(scale_max);
+
+% using parametric equations for ellipse
+a = max_p_log - target_p_log; % semi-axis in pitch direction
+b = max_s_log - target_s_log; % semi_axis in scale direction
+
+t = atan(spoke_grad) + pi;
+
+alpha = (0:no_spokes-1) * 2*pi/(no_spokes) + t;
+
+pitch_log = a*cos(alpha) + target_p_log;
+scale_log = b*sin(alpha) + target_s_log;
+
+spokes = cell(no_spokes,1);
+
+for i = 1:no_spokes
+    
+    vector      = [target_p_log-pitch_log(i), target_s_log-scale_log(i)];
+    numerator   = ([0:no_per_spoke]).^2;
+    
+    
+    
+    for j = 1:no_per_spoke
+        
+        coords(no_per_spoke+1-j,1:2) = [pitch_log(i),scale_log(i)] + vector*(numerator(no_per_spoke+1)-numerator(j+1))/numerator(no_per_spoke+1);
+        
+    end
+    
+    spokes{i} = exp(coords);
+%     spokes{i} = coords;
+    
+end
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/matlab/list_spokes.m	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,19 @@
+function list_spokes()
+% Put the spoke points into a form that bash likes
+
+spokes = get_spoke_points;
+
+out = sprintf('# Bash-friendly spoke positions generated by list_spokes.m\n');
+
+%out = [out sprintf('spokes = (')];
+for i=1:length(spokes)
+  out = [out sprintf('spokes[%d]="', i)];
+  for j=1:length(spokes{i})
+    out = [out sprintf('%3.1fp%3.1fs ', spokes{i}(j,1), spokes{i}(j,2))]; 
+  end
+  out = [out sprintf('\b"\n')];
+end
+%out = [out sprintf('\b)')];
+%out = [out sprintf('\n')];
+
+disp(out);
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/spoke_point.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,34 @@
+#!/bin/bash
+if [ "${#}" -lt "1" ]
+  then
+  echo "Usage $0 spoke_number [point_on_spoke]"
+  echo "  Spokes are numbered from 1."
+  echo "  Points on spokes are numbered from 1."
+  echo "  Point 1 is the outermost value, point 7 is the innermost value."
+  echo "  (closest to the reference speaker)"
+  echo "  Passing 0 as the spoke value gives the reference talker."
+  exit -1
+fi
+
+# These values are generated using matlab/list_spokes.m which calls
+# matlab/get_spoke_points.m
+
+# Central talker is 171.7p112.3s
+# Bash-friendly spoke positions generated by list_spokes.m
+spokes[0]="171.7p112.3s"
+spokes[1]="137.0p104.3s 145.5p106.3s 153.0p108.1s 159.5p109.6s 164.7p110.8s 168.6p111.6s 170.9p112.2s"
+spokes[2]="151.6p83.9s 156.7p90.6s 161.1p96.8s 164.9p102.1s 167.8p106.5s 170.0p109.7s 171.3p111.7s"
+spokes[3]="180.4p80.1s 178.1p87.6s 176.1p94.5s 174.5p100.6s 173.3p105.6s 172.4p109.3s 171.9p111.5s"
+spokes[4]="208.6p93.2s 198.1p97.9s 189.6p102.1s 183.0p105.7s 178.0p108.5s 174.5p110.6s 172.4p111.9s"
+spokes[5]="215.2p121.0s 202.7p118.6s 192.7p116.7s 184.8p115.1s 179.0p113.9s 174.9p113.0s 172.5p112.5s"
+spokes[6]="194.5p150.4s 188.1p139.2s 183.0p130.4s 178.8p123.6s 175.7p118.5s 173.5p115.0s 172.1p113.0s"
+spokes[7]="163.4p157.6s 165.6p144.0s 167.4p133.5s 168.9p125.4s 170.1p119.5s 171.0p115.5s 171.5p113.1s"
+spokes[8]="141.3p135.4s 148.8p128.8s 155.5p123.5s 161.1p119.4s 165.7p116.2s 169.0p114.0s 171.0p112.8s"
+
+if [ "${#}" -eq "1" ]
+  then
+    echo ${spokes[$1]}
+    exit 0
+  else
+    echo `echo ${spokes[$1]} | cut -d " " -f $2`
+fi
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/generate_train_test_lists.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,121 @@
+#!/bin/bash
+# Generate training and testing scripts for HTK
+# 
+# First argument is a string: "inner_talkers" train on the inner circle of talkers
+#                             "outer_talkers" train on the outer circle of talkers
+# Second argument is the directory in which to place output files
+# Third argument is the name of the features directory
+# Fourth argument is the feature name
+#
+# File generated are: training_master_label_file, testing_master_label_file,
+# training_script, testing_script
+set -e 
+set -u
+
+TALKERS=$1
+WORK=$2
+FEATURES_DIR=$3
+FEATURE_NAME=$4
+
+TRAIN_MLF=training_master_label_file
+TEST_MLF=testing_master_label_file
+TRAIN_SCRIPT=training_script
+TEST_SCRIPT=testing_script
+SYLLIST=syllable_list
+
+if [ $TALKERS == "inner_talkers" ]; then
+    ./train_on_central.sh $WORK/training_talkers $WORK/testing_talkers
+fi
+
+if [ $TALKERS == "outer_talkers" ]; then
+    ./train_on_extrema.sh $WORK/training_talkers $WORK/testing_talkers
+fi
+
+# The vowels and consonants that make up the CNBH database
+VOWELS="a e i o u"
+CONSONANTS="b d f g h k l m n p r s t v w x y z"
+SILENCE="sil"
+
+# Generate a temporary list of the sylables in the database
+if [ -a $WORK/$SYLLIST.tmp ] 
+then
+  rm $WORK/$SYLLIST.tmp
+fi
+
+echo "Generating temporary syllable list..."
+for v in $VOWELS; do
+  echo $v$v >> $WORK/$SYLLIST.tmp
+  for c in $CONSONANTS; do
+    echo $v$c >> $WORK/$SYLLIST.tmp
+    echo $c$v >> $WORK/$SYLLIST.tmp
+  done
+done
+
+# Sort the syllable list and delete the 
+# temporary, unsorted version
+sort $WORK/$SYLLIST.tmp > $WORK/$SYLLIST
+rm $WORK/$SYLLIST.tmp
+
+# Construct the conversion scripts for AIMCopy (or HCopy) and 
+# the master label files for the train and test sets
+echo "Generating master label files..."
+if [ -a $WORK/$TRAIN_MLF ]
+then
+  rm $WORK/$TRAIN_MLF
+fi
+if [ -a $WORK/$TEST_MLF ]
+then
+  rm $WORK/$TEST_MLF
+fi
+exec 4> $WORK/$TRAIN_MLF
+exec 6> $WORK/$TEST_MLF
+echo '#!MLF!#' >&4
+echo '#!MLF!#' >&6
+
+for syllable in $(cat $WORK/${SYLLIST}); do
+  for speaker in $(cat $WORK/training_talkers); do
+    DEST_FILENAME=$FEATURES_DIR/$syllable/${syllable}${speaker}
+    echo "'\"${DEST_FILENAME}.lab\"'" >&4
+    echo "$SILENCE" >&4
+    echo $syllable >&4
+    echo "$SILENCE" >&4
+    echo "." >&4
+  done
+  for speaker in $(cat $WORK/testing_talkers); do
+    DEST_FILENAME=$FEATURES_DIR/$syllable/${syllable}${speaker} 
+    echo "'\"${DEST_FILENAME}.lab\"'" >&6
+    echo "$SILENCE" >&6
+    echo $syllable >&6
+    echo "$SILENCE" >&6
+    echo "." >&6
+  done
+done
+exec 4>&-
+exec 6>&-
+
+echo "Generating train and test scripts..."
+if [ -a $WORK/$TRAIN_SCRIPT ]
+then
+  rm $WORK/$TRAIN_SCRIPT
+fi
+if [ -a $WORK/$TEST_SCRIPT ]
+then
+  rm $WORK/$TEST_SCRIPT
+fi  
+exec 7> $WORK/$TRAIN_SCRIPT
+exec 8> $WORK/$TEST_SCRIPT
+for syllable in $(cat $WORK/${SYLLIST}); do
+  for speaker in $(cat $WORK/training_talkers); do
+    DEST_FILENAME=$FEATURES_DIR/$syllable/${syllable}${speaker}
+    echo "'${DEST_FILENAME}.${FEATURE_NAME}'" >&7
+  done
+  for speaker in $(cat $WORK/testing_talkers); do
+    DEST_FILENAME=$FEATURES_DIR/$syllable/${syllable}${speaker}
+      echo "'${DEST_FILENAME}.${FEATURE_NAME}'" >&8
+  done
+done
+exec 7>&-
+exec 8>&-
+
+rm $WORK/${SYLLIST}
+rm $WORK/training_talkers $WORK/testing_talkers
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/test_rand.mlf	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,45326 @@
+#!MLF!#
+'"snr+30dB/features/am/am171.3p111.7s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/aa/aa184.8p115.1s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/uv/uv178.1p87.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/fo/fo141.3p135.4s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ux/ux172.4p111.9s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/oz/oz151.6p83.9s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/fa/fa174.5p110.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ig/ig170.9p112.2s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ix/ix165.6p144.0s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ox/ox167.4p133.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/pu/pu178.0p108.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/bi/bi202.7p118.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/bo/bo175.7p118.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/uk/uk153.0p108.1s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/us/us168.9p125.4s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/vu/vu173.3p105.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/aa/aa168.9p125.4s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/bo/bo170.1p119.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ee/ee165.6p144.0s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/fu/fu164.9p102.1s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/el/el173.5p115.0s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ko/ko184.8p115.1s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/lu/lu174.5p100.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/di/di179.0p113.9s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ro/ro141.3p135.4s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ot/ot170.1p119.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/eb/eb159.5p109.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/xu/xu188.1p139.2s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ya/ya171.7p112.3s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ab/ab172.4p111.9s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/si/si161.1p119.4s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/on/on170.9p112.2s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ki/ki170.9p112.2s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/uk/uk169.0p114.0s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/pu/pu172.4p111.9s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/li/li188.1p139.2s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/se/se178.0p108.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/iv/iv178.0p108.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/di/di171.7p112.3s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ko/ko168.6p111.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/aa/aa180.4p80.1s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ak/ak168.6p111.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/re/re178.8p123.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/um/um156.7p90.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/me/me192.7p116.7s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ox/ox174.5p110.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/va/va184.8p115.1s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/du/du161.1p96.8s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/et/et161.1p119.4s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ve/ve173.5p115.0s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/iy/iy194.5p150.4s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ib/ib171.7p112.3s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/zi/zi171.5p113.1s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/wa/wa174.5p100.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ba/ba173.3p105.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/an/an159.5p109.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/eh/eh174.5p110.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ka/ka174.5p110.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/op/op161.1p119.4s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ir/ir165.7p116.2s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ur/ur178.0p108.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/vo/vo165.6p144.0s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ed/ed179.0p113.9s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/xu/xu151.6p83.9s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ri/ri174.9p113.0s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/od/od148.8p128.8s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/mo/mo148.8p128.8s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ay/ay171.3p111.7s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/fu/fu156.7p90.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ax/ax172.1p113.0s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/aw/aw178.1p87.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/eb/eb164.9p102.1s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/lo/lo141.3p135.4s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/zi/zi170.0p109.7s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ol/ol174.5p100.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ni/ni153.0p108.1s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ta/ta194.5p150.4s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ob/ob155.5p123.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/xe/xe172.4p111.9s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/iz/iz171.0p112.8s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ma/ma184.8p115.1s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/wo/wo173.5p115.0s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/he/he151.6p83.9s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/os/os170.1p119.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ir/ir172.1p113.0s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ag/ag188.1p139.2s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/wa/wa164.7p110.8s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ub/ub165.7p116.2s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ax/ax194.5p150.4s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ad/ad168.9p125.4s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ug/ug148.8p128.8s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ib/ib168.9p125.4s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ib/ib168.6p111.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ug/ug176.1p94.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/un/un171.0p115.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/as/as161.1p96.8s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/oz/oz161.1p119.4s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/fe/fe148.8p128.8s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/vu/vu172.1p113.0s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ge/ge167.8p106.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ut/ut202.7p118.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/nu/nu174.5p110.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/am/am171.5p113.1s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/iz/iz194.5p150.4s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/gi/gi180.4p80.1s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/fe/fe161.1p119.4s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/go/go164.7p110.8s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/se/se174.5p110.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ig/ig180.4p80.1s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/en/en171.9p111.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ug/ug178.1p87.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ih/ih171.9p111.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/oh/oh167.4p133.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/gu/gu171.7p112.3s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/fo/fo168.6p111.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/vu/vu178.0p108.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/od/od167.4p133.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/um/um173.5p115.0s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ok/ok170.0p109.7s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/mu/mu141.3p135.4s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/fa/fa175.7p118.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/go/go163.4p157.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ov/ov167.8p106.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/od/od172.4p111.9s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/aw/aw159.5p109.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ro/ro175.7p118.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ka/ka151.6p83.9s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ey/ey165.7p116.2s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/af/af156.7p90.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ra/ra168.9p125.4s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/hu/hu159.5p109.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ut/ut170.9p112.2s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ta/ta137.0p104.3s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ig/ig169.0p114.0s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/av/av171.0p112.8s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/id/id174.9p113.0s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ze/ze170.9p112.2s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ep/ep175.7p118.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ix/ix173.5p115.0s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/tu/tu165.6p144.0s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/gu/gu172.4p111.9s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ze/ze165.6p144.0s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/hi/hi183.0p130.4s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ep/ep174.9p113.0s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ho/ho194.5p150.4s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/go/go178.0p108.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/xu/xu192.7p116.7s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/et/et215.2p121.0s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/uv/uv148.8p128.8s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/uh/uh137.0p104.3s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/wa/wa156.7p90.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/eh/eh173.5p115.0s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/oy/oy171.3p111.7s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ii/ii161.1p96.8s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/fu/fu172.5p112.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/in/in148.8p128.8s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/xo/xo189.6p102.1s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/un/un183.0p130.4s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/iw/iw164.9p102.1s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ab/ab192.7p116.7s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/or/or172.1p113.0s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/xi/xi192.7p116.7s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/se/se173.5p115.0s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/in/in172.4p111.9s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/or/or163.4p157.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/an/an156.7p90.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/yi/yi163.4p157.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/up/up164.9p102.1s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ib/ib215.2p121.0s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/pe/pe174.5p110.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/az/az151.6p83.9s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ob/ob171.7p112.3s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/re/re170.0p109.7s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/iv/iv173.3p105.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ep/ep176.1p94.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ki/ki168.6p111.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/am/am175.7p118.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/yo/yo184.8p115.1s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/un/un137.0p104.3s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ex/ex172.5p112.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ye/ye172.1p113.0s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/am/am189.6p102.1s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/za/za165.6p144.0s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/wa/wa167.8p106.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/in/in170.0p109.7s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/da/da189.6p102.1s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/in/in202.7p118.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ba/ba168.6p111.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ig/ig161.1p96.8s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/lu/lu171.0p115.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/om/om161.1p119.4s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ut/ut174.9p113.0s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ab/ab171.0p112.8s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ox/ox145.5p106.3s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/id/id171.0p115.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/oo/oo176.1p94.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/la/la168.9p125.4s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ve/ve202.7p118.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/il/il151.6p83.9s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/el/el171.7p112.3s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/to/to163.4p157.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/en/en174.5p100.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ob/ob183.0p105.7s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/iw/iw178.1p87.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/es/es164.7p110.8s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ow/ow167.4p133.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ev/ev215.2p121.0s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/as/as170.0p109.7s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ir/ir208.6p93.2s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ix/ix173.3p105.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ob/ob168.9p125.4s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/du/du171.0p115.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/uf/uf189.6p102.1s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/la/la168.6p111.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/od/od169.0p114.0s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/oz/oz161.1p96.8s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/uy/uy184.8p115.1s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ta/ta179.0p113.9s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/uk/uk202.7p118.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ow/ow165.7p116.2s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/mu/mu164.7p110.8s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ez/ez183.0p105.7s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/or/or172.5p112.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/wo/wo164.9p102.1s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/we/we174.9p113.0s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ok/ok172.4p109.3s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/la/la170.1p119.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/fe/fe172.1p113.0s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/al/al183.0p130.4s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/as/as171.5p113.1s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/no/no179.0p113.9s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/be/be167.8p106.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/eh/eh156.7p90.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ze/ze174.5p110.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ak/ak171.9p111.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/es/es161.1p119.4s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/oh/oh198.1p97.9s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/za/za169.0p114.0s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ik/ik192.7p116.7s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ur/ur184.8p115.1s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/wa/wa167.4p133.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ni/ni161.1p119.4s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ap/ap183.0p130.4s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/eb/eb167.4p133.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ir/ir173.5p115.0s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/no/no155.5p123.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/pa/pa172.1p113.0s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/fa/fa189.6p102.1s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ox/ox172.1p113.0s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/oy/oy155.5p123.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/wa/wa168.6p111.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/uh/uh179.0p113.9s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/xe/xe170.9p112.2s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ut/ut173.5p115.0s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/xa/xa178.0p108.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/yu/yu178.0p108.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/iv/iv161.1p119.4s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ta/ta163.4p157.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ha/ha159.5p109.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/un/un184.8p115.1s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ex/ex198.1p97.9s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/el/el167.4p133.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ev/ev178.1p87.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/fa/fa161.1p96.8s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ih/ih169.0p114.0s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ox/ox178.1p87.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/as/as172.5p112.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ki/ki184.8p115.1s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/iw/iw202.7p118.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ye/ye184.8p115.1s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/gu/gu163.4p157.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/op/op171.0p112.8s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ob/ob167.4p133.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ga/ga183.0p105.7s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/fe/fe159.5p109.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/vo/vo171.7p112.3s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ki/ki171.0p112.8s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/oz/oz153.0p108.1s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ni/ni148.8p128.8s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ko/ko155.5p123.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/gu/gu167.8p106.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ep/ep148.8p128.8s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/an/an167.4p133.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/hi/hi175.7p118.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/uz/uz161.1p119.4s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/we/we141.3p135.4s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/es/es172.1p113.0s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/in/in170.9p112.2s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ap/ap188.1p139.2s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/um/um173.3p105.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/fo/fo155.5p123.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/el/el172.4p111.9s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/un/un167.8p106.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/uf/uf153.0p108.1s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/so/so192.7p116.7s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/to/to168.6p111.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ke/ke174.9p113.0s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/za/za188.1p139.2s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/um/um180.4p80.1s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/on/on171.0p112.8s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/xa/xa173.5p115.0s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/av/av164.7p110.8s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ul/ul176.1p94.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/fe/fe188.1p139.2s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/im/im184.8p115.1s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/bi/bi172.4p111.9s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/za/za167.8p106.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ob/ob137.0p104.3s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/du/du168.9p125.4s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/hi/hi148.8p128.8s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/eg/eg141.3p135.4s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/es/es174.5p100.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/us/us192.7p116.7s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/le/le153.0p108.1s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/fe/fe194.5p150.4s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ih/ih183.0p105.7s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ak/ak171.0p115.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/pa/pa141.3p135.4s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ag/ag184.8p115.1s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/mu/mu215.2p121.0s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ex/ex174.5p110.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ma/ma215.2p121.0s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ra/ra148.8p128.8s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ip/ip178.0p108.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/lo/lo151.6p83.9s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ra/ra171.7p112.3s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/op/op171.9p111.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ru/ru183.0p130.4s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/re/re176.1p94.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/vi/vi173.5p115.0s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ew/ew169.0p114.0s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/do/do170.9p112.2s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/zu/zu194.5p150.4s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/va/va215.2p121.0s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/os/os155.5p123.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/bu/bu184.8p115.1s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/zu/zu171.5p113.1s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ew/ew172.4p111.9s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/af/af171.9p111.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ey/ey168.6p111.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/os/os171.7p112.3s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/iy/iy198.1p97.9s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/pa/pa189.6p102.1s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ex/ex159.5p109.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ni/ni189.6p102.1s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ov/ov173.3p105.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/xe/xe165.7p116.2s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/oo/oo153.0p108.1s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/pa/pa176.1p94.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/to/to208.6p93.2s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/af/af178.1p87.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/iz/iz151.6p83.9s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ke/ke168.6p111.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/pu/pu148.8p128.8s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ye/ye175.7p118.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ep/ep172.5p112.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ot/ot183.0p105.7s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/az/az168.6p111.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/nu/nu178.1p87.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/il/il161.1p119.4s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ab/ab145.5p106.3s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/eh/eh171.0p115.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/iw/iw184.8p115.1s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/li/li172.4p109.3s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/iw/iw189.6p102.1s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/me/me151.6p83.9s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/fi/fi153.0p108.1s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/be/be171.7p112.3s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/vi/vi192.7p116.7s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ot/ot194.5p150.4s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/xe/xe183.0p105.7s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/zi/zi174.5p100.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ux/ux194.5p150.4s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/zo/zo155.5p123.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/aa/aa183.0p130.4s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ox/ox171.9p111.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/vi/vi174.9p113.0s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/wi/wi179.0p113.9s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/po/po174.5p100.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/bu/bu208.6p93.2s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/or/or161.1p119.4s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ex/ex179.0p113.9s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/lo/lo171.9p111.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/mu/mu183.0p105.7s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ab/ab215.2p121.0s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/gu/gu171.5p113.1s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/vu/vu168.9p125.4s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/pi/pi173.3p105.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ip/ip183.0p105.7s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ba/ba156.7p90.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ex/ex189.6p102.1s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ux/ux167.8p106.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ra/ra172.5p112.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ud/ud208.6p93.2s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/oh/oh180.4p80.1s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/pu/pu174.5p100.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/le/le170.9p112.2s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/to/to171.5p113.1s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ko/ko172.5p112.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/bu/bu168.9p125.4s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/na/na161.1p119.4s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/xa/xa165.6p144.0s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/se/se167.4p133.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/li/li172.5p112.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ew/ew171.5p113.1s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ex/ex174.9p113.0s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/fe/fe172.4p111.9s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/eh/eh184.8p115.1s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/eb/eb174.9p113.0s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/za/za183.0p105.7s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/fe/fe172.4p109.3s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/al/al198.1p97.9s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ub/ub171.3p111.7s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ha/ha174.9p113.0s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/fa/fa161.1p119.4s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ak/ak175.7p118.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ab/ab176.1p94.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/do/do168.6p111.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/oh/oh189.6p102.1s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/av/av173.3p105.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ix/ix178.0p108.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ta/ta173.5p115.0s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/uz/uz163.4p157.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/iv/iv168.6p111.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/he/he192.7p116.7s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ii/ii183.0p130.4s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/fa/fa184.8p115.1s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/re/re172.5p112.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/oz/oz172.5p112.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/yo/yo175.7p118.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/po/po164.9p102.1s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/vi/vi198.1p97.9s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/mu/mu174.5p100.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/he/he180.4p80.1s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ye/ye208.6p93.2s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/iw/iw171.0p115.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/fa/fa163.4p157.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/op/op192.7p116.7s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/be/be137.0p104.3s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ax/ax171.5p113.1s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ug/ug163.4p157.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/al/al153.0p108.1s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/se/se172.1p113.0s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/il/il178.0p108.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/tu/tu170.9p112.2s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/fe/fe156.7p90.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/sa/sa183.0p105.7s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ir/ir164.7p110.8s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/in/in175.7p118.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/el/el171.0p112.8s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ru/ru174.5p110.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/we/we164.7p110.8s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/la/la174.5p100.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/up/up202.7p118.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/in/in141.3p135.4s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/bu/bu170.9p112.2s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/be/be176.1p94.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ef/ef194.5p150.4s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/yo/yo202.7p118.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ii/ii178.0p108.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ah/ah179.0p113.9s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/az/az171.5p113.1s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/of/of189.6p102.1s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ra/ra171.0p112.8s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/lu/lu172.4p111.9s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/od/od192.7p116.7s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/si/si175.7p118.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/oo/oo171.3p111.7s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ga/ga169.0p114.0s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/oz/oz215.2p121.0s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/un/un171.7p112.3s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/do/do172.4p111.9s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/od/od171.7p112.3s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/wa/wa174.9p113.0s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/la/la198.1p97.9s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ox/ox215.2p121.0s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/xu/xu161.1p96.8s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ov/ov167.4p133.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/po/po145.5p106.3s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/af/af141.3p135.4s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/iw/iw172.4p109.3s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ru/ru178.1p87.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/uy/uy161.1p119.4s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ku/ku171.7p112.3s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/vi/vi148.8p128.8s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/uy/uy172.4p109.3s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/xu/xu141.3p135.4s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/se/se172.4p109.3s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ah/ah167.4p133.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/to/to174.5p100.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/fu/fu161.1p96.8s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/eh/eh164.9p102.1s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ah/ah171.5p113.1s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ur/ur194.5p150.4s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ge/ge161.1p96.8s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/su/su170.0p109.7s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/os/os194.5p150.4s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/iy/iy161.1p96.8s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/iz/iz174.5p100.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/og/og167.4p133.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ed/ed167.4p133.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/oh/oh171.5p113.1s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ul/ul145.5p106.3s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ab/ab178.1p87.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/yu/yu167.8p106.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/se/se145.5p106.3s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/an/an167.8p106.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/nu/nu159.5p109.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/fo/fo215.2p121.0s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/iv/iv174.5p110.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ey/ey179.0p113.9s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/or/or170.0p109.7s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ha/ha172.5p112.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ad/ad141.3p135.4s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/su/su174.5p100.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/os/os208.6p93.2s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ur/ur141.3p135.4s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/bo/bo172.4p111.9s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/xe/xe148.8p128.8s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/fe/fe169.0p114.0s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/iz/iz171.3p111.7s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/uv/uv164.9p102.1s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/po/po178.0p108.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ii/ii161.1p119.4s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/aa/aa179.0p113.9s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/up/up172.5p112.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/iz/iz167.4p133.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/az/az183.0p105.7s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ir/ir171.5p113.1s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/in/in163.4p157.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/eg/eg174.9p113.0s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/wa/wa145.5p106.3s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ex/ex171.5p113.1s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/iy/iy188.1p139.2s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/on/on208.6p93.2s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/na/na168.9p125.4s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/xu/xu171.5p113.1s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/wu/wu164.7p110.8s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ih/ih137.0p104.3s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/aw/aw178.0p108.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/go/go174.9p113.0s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ey/ey171.5p113.1s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ag/ag174.9p113.0s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/na/na156.7p90.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/pu/pu155.5p123.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/um/um188.1p139.2s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/sa/sa148.8p128.8s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ha/ha171.0p112.8s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/oz/oz173.5p115.0s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ke/ke184.8p115.1s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/if/if172.5p112.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/uk/uk184.8p115.1s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ux/ux171.0p115.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/xi/xi163.4p157.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/te/te184.8p115.1s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/iy/iy172.4p111.9s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/hu/hu161.1p119.4s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/uy/uy202.7p118.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/um/um164.9p102.1s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/le/le171.0p115.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/af/af145.5p106.3s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/us/us167.4p133.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ok/ok208.6p93.2s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/bu/bu215.2p121.0s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ga/ga167.8p106.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/tu/tu171.5p113.1s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/du/du141.3p135.4s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/xo/xo167.8p106.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/am/am173.5p115.0s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/uv/uv172.4p109.3s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/un/un165.7p116.2s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/vi/vi155.5p123.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/he/he170.0p109.7s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ah/ah174.5p110.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/oy/oy183.0p130.4s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/oh/oh169.0p114.0s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/za/za173.5p115.0s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ne/ne194.5p150.4s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/im/im169.0p114.0s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/yi/yi151.6p83.9s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/zo/zo151.6p83.9s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/di/di172.4p111.9s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/id/id141.3p135.4s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/vu/vu174.5p100.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ii/ii180.4p80.1s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ak/ak173.3p105.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/pe/pe155.5p123.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/uv/uv171.0p112.8s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/er/er171.0p115.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ub/ub159.5p109.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ah/ah168.6p111.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/uz/uz137.0p104.3s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/uw/uw161.1p119.4s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/as/as165.7p116.2s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/on/on171.3p111.7s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ew/ew188.1p139.2s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/wa/wa161.1p96.8s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/oz/oz174.5p110.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/an/an171.5p113.1s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/me/me171.3p111.7s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/xe/xe178.8p123.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ik/ik172.4p111.9s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/uf/uf170.0p109.7s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ay/ay183.0p130.4s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/od/od194.5p150.4s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/eh/eh172.4p111.9s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/es/es198.1p97.9s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/es/es174.9p113.0s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ki/ki167.8p106.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/et/et170.9p112.2s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ad/ad169.0p114.0s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ol/ol137.0p104.3s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ak/ak172.4p109.3s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/wu/wu161.1p119.4s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ow/ow208.6p93.2s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ek/ek184.8p115.1s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ux/ux180.4p80.1s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ka/ka172.4p109.3s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/as/as183.0p105.7s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ex/ex215.2p121.0s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/lu/lu170.1p119.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ex/ex178.0p108.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ek/ek192.7p116.7s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ux/ux173.5p115.0s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/su/su167.4p133.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/se/se168.6p111.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/pi/pi161.1p96.8s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/be/be165.6p144.0s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/no/no153.0p108.1s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/in/in172.5p112.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/av/av161.1p96.8s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/or/or168.9p125.4s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/lo/lo173.3p105.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ke/ke215.2p121.0s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ug/ug174.5p100.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/la/la184.8p115.1s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/so/so173.3p105.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ta/ta174.5p100.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/va/va188.1p139.2s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ow/ow141.3p135.4s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/li/li151.6p83.9s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/xe/xe161.1p96.8s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ub/ub178.0p108.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ur/ur188.1p139.2s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/in/in178.0p108.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/zu/zu137.0p104.3s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ya/ya171.5p113.1s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/os/os159.5p109.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ne/ne171.0p115.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/su/su183.0p105.7s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/gi/gi176.1p94.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/uk/uk175.7p118.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/eg/eg171.0p115.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/me/me159.5p109.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/fe/fe161.1p96.8s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/su/su176.1p94.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ay/ay170.0p109.7s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/el/el161.1p96.8s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ee/ee178.8p123.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/bu/bu192.7p116.7s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ar/ar172.4p109.3s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/de/de161.1p96.8s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/es/es183.0p105.7s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/hi/hi174.5p100.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ne/ne168.6p111.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/is/is174.5p100.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/el/el169.0p114.0s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ov/ov183.0p105.7s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ed/ed171.0p115.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ub/ub171.7p112.3s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/xa/xa161.1p119.4s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/li/li171.0p115.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/li/li183.0p130.4s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/xe/xe168.6p111.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ee/ee174.9p113.0s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/la/la180.4p80.1s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/of/of171.7p112.3s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/iz/iz170.9p112.2s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/on/on153.0p108.1s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/wa/wa170.9p112.2s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/od/od170.9p112.2s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ke/ke171.9p111.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ob/ob172.1p113.0s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ev/ev161.1p119.4s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/en/en153.0p108.1s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/um/um202.7p118.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/xo/xo161.1p119.4s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/pe/pe164.7p110.8s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ma/ma172.4p109.3s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/vi/vi170.9p112.2s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ii/ii141.3p135.4s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/si/si165.7p116.2s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/se/se137.0p104.3s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/vo/vo168.6p111.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ob/ob178.0p108.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ok/ok189.6p102.1s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/oy/oy141.3p135.4s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/aw/aw148.8p128.8s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ot/ot208.6p93.2s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ra/ra141.3p135.4s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ev/ev194.5p150.4s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ek/ek171.7p112.3s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/vo/vo183.0p105.7s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ag/ag178.8p123.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ye/ye173.5p115.0s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ap/ap151.6p83.9s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/di/di171.0p112.8s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ix/ix180.4p80.1s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/fo/fo165.7p116.2s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/us/us198.1p97.9s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/it/it189.6p102.1s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ep/ep171.0p115.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/am/am164.7p110.8s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ke/ke170.9p112.2s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/al/al164.9p102.1s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/mo/mo161.1p96.8s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ga/ga176.1p94.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/uy/uy161.1p96.8s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ya/ya192.7p116.7s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/pi/pi176.1p94.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ku/ku167.4p133.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/im/im151.6p83.9s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/hi/hi171.5p113.1s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/lo/lo172.1p113.0s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/of/of180.4p80.1s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/re/re174.5p100.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ix/ix172.4p111.9s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/us/us141.3p135.4s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ni/ni167.8p106.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ev/ev174.5p100.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/hi/hi165.6p144.0s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ub/ub188.1p139.2s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ub/ub171.9p111.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/xi/xi188.1p139.2s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ve/ve179.0p113.9s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/xe/xe180.4p80.1s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ix/ix145.5p106.3s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/oo/oo171.5p113.1s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ox/ox171.0p112.8s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/og/og178.0p108.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/av/av180.4p80.1s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/fu/fu153.0p108.1s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ma/ma171.3p111.7s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/uz/uz168.9p125.4s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ez/ez174.5p100.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/fi/fi174.5p100.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/za/za167.4p133.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/du/du137.0p104.3s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/uu/uu161.1p96.8s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/oo/oo208.6p93.2s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/da/da168.6p111.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/du/du159.5p109.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ap/ap202.7p118.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ki/ki156.7p90.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/op/op180.4p80.1s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/fa/fa164.9p102.1s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/er/er183.0p130.4s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/eh/eh208.6p93.2s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/uz/uz159.5p109.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ug/ug159.5p109.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ex/ex145.5p106.3s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/if/if208.6p93.2s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/im/im167.8p106.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/az/az170.0p109.7s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ez/ez161.1p119.4s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ba/ba178.0p108.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/fi/fi165.7p116.2s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/xi/xi151.6p83.9s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ud/ud167.4p133.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/om/om180.4p80.1s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/xe/xe189.6p102.1s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ub/ub183.0p130.4s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ka/ka161.1p96.8s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/do/do153.0p108.1s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/es/es189.6p102.1s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/us/us151.6p83.9s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/mo/mo156.7p90.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/hi/hi168.9p125.4s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ii/ii194.5p150.4s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/un/un179.0p113.9s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/um/um137.0p104.3s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/im/im170.9p112.2s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ho/ho155.5p123.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ot/ot215.2p121.0s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/he/he167.4p133.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/eg/eg171.7p112.3s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/bu/bu174.5p100.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ta/ta171.0p115.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/fi/fi215.2p121.0s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/oy/oy179.0p113.9s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/pe/pe161.1p119.4s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/zo/zo175.7p118.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/on/on172.1p113.0s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ug/ug208.6p93.2s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/se/se168.9p125.4s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/mo/mo167.4p133.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ta/ta172.5p112.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/es/es137.0p104.3s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/se/se171.9p111.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/de/de167.4p133.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/wa/wa184.8p115.1s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/uh/uh174.9p113.0s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/za/za171.0p112.8s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/is/is165.7p116.2s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/uk/uk178.0p108.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ab/ab164.9p102.1s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/fa/fa148.8p128.8s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/le/le178.0p108.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ya/ya198.1p97.9s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ko/ko163.4p157.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ox/ox175.7p118.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/re/re145.5p106.3s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ix/ix137.0p104.3s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/se/se189.6p102.1s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/id/id171.5p113.1s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/pe/pe170.0p109.7s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/oo/oo170.0p109.7s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/tu/tu208.6p93.2s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/be/be153.0p108.1s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/fo/fo189.6p102.1s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/el/el179.0p113.9s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/gi/gi148.8p128.8s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/gu/gu198.1p97.9s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/xe/xe174.5p100.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ap/ap153.0p108.1s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/he/he161.1p96.8s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/vu/vu183.0p130.4s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/te/te174.9p113.0s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/du/du165.6p144.0s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/av/av141.3p135.4s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/uv/uv171.0p115.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/od/od188.1p139.2s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ey/ey176.1p94.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ti/ti202.7p118.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/re/re161.1p119.4s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/uw/uw165.6p144.0s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/vo/vo153.0p108.1s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/al/al175.7p118.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ip/ip173.3p105.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/op/op159.5p109.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/aa/aa178.1p87.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/pu/pu178.1p87.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/er/er168.6p111.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/aa/aa194.5p150.4s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/af/af171.0p115.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ne/ne198.1p97.9s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ne/ne167.8p106.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/xe/xe153.0p108.1s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/er/er165.6p144.0s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/be/be151.6p83.9s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/eb/eb171.0p112.8s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ro/ro163.4p157.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ur/ur171.0p115.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ey/ey170.1p119.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ir/ir174.5p110.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/yi/yi169.0p114.0s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ze/ze198.1p97.9s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/om/om170.0p109.7s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/to/to198.1p97.9s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/zi/zi188.1p139.2s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ze/ze170.0p109.7s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ar/ar167.4p133.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/re/re171.5p113.1s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/al/al171.3p111.7s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/so/so189.6p102.1s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ur/ur161.1p119.4s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/gi/gi170.9p112.2s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/pu/pu171.3p111.7s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/uw/uw170.1p119.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ti/ti172.1p113.0s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/yi/yi170.1p119.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/vi/vi172.4p109.3s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ap/ap178.0p108.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/su/su137.0p104.3s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ol/ol180.4p80.1s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/za/za164.7p110.8s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ga/ga141.3p135.4s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ku/ku168.6p111.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/sa/sa169.0p114.0s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ku/ku189.6p102.1s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/oh/oh215.2p121.0s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ma/ma137.0p104.3s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/di/di172.5p112.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/oo/oo183.0p105.7s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ew/ew171.0p115.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ez/ez170.9p112.2s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/al/al176.1p94.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ed/ed189.6p102.1s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ne/ne137.0p104.3s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/wo/wo141.3p135.4s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/di/di159.5p109.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ez/ez163.4p157.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/op/op167.4p133.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/yo/yo155.5p123.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/it/it153.0p108.1s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/og/og215.2p121.0s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/xu/xu215.2p121.0s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/fe/fe141.3p135.4s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/es/es173.3p105.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/xe/xe202.7p118.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/te/te164.7p110.8s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/up/up192.7p116.7s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/fo/fo178.0p108.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/do/do171.0p112.8s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ru/ru171.3p111.7s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ol/ol165.6p144.0s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/aw/aw164.7p110.8s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/it/it172.4p111.9s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ab/ab165.7p116.2s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/po/po164.7p110.8s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/at/at167.8p106.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ut/ut178.1p87.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/pe/pe171.9p111.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ih/ih167.8p106.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/yu/yu171.3p111.7s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/wa/wa178.8p123.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/mi/mi148.8p128.8s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/od/od171.5p113.1s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/at/at172.5p112.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ka/ka156.7p90.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/su/su148.8p128.8s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/on/on161.1p119.4s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/oy/oy176.1p94.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/fe/fe155.5p123.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/bi/bi180.4p80.1s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/pi/pi178.8p123.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/is/is170.1p119.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ar/ar137.0p104.3s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/nu/nu183.0p105.7s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/at/at165.6p144.0s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/af/af188.1p139.2s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/om/om174.9p113.0s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ix/ix164.7p110.8s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ti/ti170.1p119.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/no/no161.1p119.4s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ri/ri155.5p123.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/at/at178.1p87.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ul/ul171.9p111.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/di/di171.9p111.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/po/po168.6p111.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/li/li180.4p80.1s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ig/ig170.0p109.7s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/of/of198.1p97.9s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ri/ri174.5p110.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/bo/bo153.0p108.1s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/yu/yu164.7p110.8s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/us/us171.3p111.7s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/wi/wi171.7p112.3s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ga/ga183.0p130.4s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/mi/mi165.7p116.2s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/so/so148.8p128.8s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/lu/lu179.0p113.9s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ee/ee171.9p111.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ah/ah202.7p118.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/mo/mo178.8p123.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/za/za184.8p115.1s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ot/ot202.7p118.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ov/ov151.6p83.9s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/am/am151.6p83.9s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ma/ma163.4p157.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ar/ar161.1p119.4s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/en/en168.6p111.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/bi/bi188.1p139.2s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/lo/lo145.5p106.3s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/oo/oo179.0p113.9s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ay/ay173.5p115.0s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ev/ev184.8p115.1s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/uv/uv153.0p108.1s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/si/si159.5p109.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/et/et171.7p112.3s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/li/li167.8p106.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/an/an178.8p123.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/li/li148.8p128.8s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/an/an170.0p109.7s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/el/el161.1p119.4s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ep/ep202.7p118.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/me/me183.0p105.7s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/si/si165.6p144.0s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/re/re184.8p115.1s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/la/la165.7p116.2s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/bi/bi171.0p112.8s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/an/an189.6p102.1s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ig/ig167.8p106.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/nu/nu171.3p111.7s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/em/em179.0p113.9s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/lo/lo153.0p108.1s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ig/ig141.3p135.4s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/af/af167.8p106.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/oz/oz175.7p118.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/re/re161.1p96.8s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/iw/iw175.7p118.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ov/ov164.7p110.8s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/uv/uv178.0p108.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/iz/iz145.5p106.3s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/en/en202.7p118.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/on/on183.0p105.7s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ub/ub169.0p114.0s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/iz/iz173.5p115.0s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/hi/hi172.1p113.0s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/wo/wo167.8p106.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ep/ep198.1p97.9s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/to/to171.3p111.7s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ii/ii179.0p113.9s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/xu/xu159.5p109.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ex/ex164.9p102.1s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/as/as170.1p119.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/af/af174.9p113.0s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ur/ur151.6p83.9s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/tu/tu215.2p121.0s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ed/ed172.5p112.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/te/te168.9p125.4s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/pu/pu176.1p94.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/of/of178.0p108.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/of/of171.3p111.7s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/wa/wa198.1p97.9s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ti/ti198.1p97.9s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ye/ye169.0p114.0s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ov/ov173.5p115.0s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/gu/gu141.3p135.4s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/vo/vo174.9p113.0s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ru/ru168.9p125.4s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ax/ax178.0p108.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/uv/uv198.1p97.9s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/uy/uy198.1p97.9s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ya/ya174.5p100.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/uw/uw208.6p93.2s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ka/ka173.3p105.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/gu/gu202.7p118.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/uv/uv161.1p96.8s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/aa/aa156.7p90.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/el/el178.1p87.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/il/il170.1p119.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ve/ve183.0p130.4s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/yi/yi159.5p109.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/de/de189.6p102.1s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/az/az171.0p112.8s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/el/el171.3p111.7s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/az/az171.9p111.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ik/ik202.7p118.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/om/om184.8p115.1s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/do/do141.3p135.4s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ow/ow171.0p112.8s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ol/ol164.9p102.1s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/iv/iv170.0p109.7s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ge/ge171.0p112.8s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/uy/uy164.9p102.1s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/vu/vu184.8p115.1s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ef/ef151.6p83.9s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/um/um171.9p111.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/oy/oy178.1p87.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/al/al173.3p105.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/of/of179.0p113.9s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/il/il208.6p93.2s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/er/er198.1p97.9s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/xa/xa165.7p116.2s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ud/ud172.4p109.3s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ab/ab188.1p139.2s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/me/me176.1p94.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/uh/uh202.7p118.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/be/be171.0p112.8s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/um/um208.6p93.2s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/bo/bo178.0p108.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ef/ef173.3p105.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/eg/eg198.1p97.9s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ze/ze194.5p150.4s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/xa/xa173.3p105.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ma/ma172.1p113.0s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ef/ef178.8p123.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ap/ap175.7p118.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/on/on168.9p125.4s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ii/ii171.0p112.8s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ha/ha171.5p113.1s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/du/du176.1p94.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ye/ye165.7p116.2s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/vi/vi137.0p104.3s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ab/ab189.6p102.1s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/du/du189.6p102.1s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/pu/pu164.9p102.1s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/xo/xo169.0p114.0s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ex/ex175.7p118.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/an/an170.9p112.2s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/aa/aa174.5p110.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ey/ey183.0p130.4s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ax/ax178.1p87.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ki/ki172.4p109.3s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/xi/xi167.8p106.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/es/es192.7p116.7s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/tu/tu163.4p157.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/go/go189.6p102.1s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/eb/eb202.7p118.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/mi/mi178.1p87.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/so/so171.5p113.1s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/bo/bo163.4p157.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/wu/wu179.0p113.9s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/to/to170.1p119.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/fi/fi155.5p123.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ul/ul161.1p96.8s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/um/um194.5p150.4s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/uf/uf161.1p96.8s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ig/ig145.5p106.3s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/li/li178.1p87.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/mo/mo151.6p83.9s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/gu/gu178.1p87.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/si/si194.5p150.4s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/he/he169.0p114.0s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ev/ev171.0p115.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/it/it173.3p105.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ut/ut173.3p105.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/uf/uf176.1p94.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/op/op172.4p109.3s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/pu/pu174.5p110.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ax/ax167.8p106.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/wu/wu170.9p112.2s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ho/ho168.6p111.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/na/na178.1p87.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/yi/yi168.6p111.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ra/ra173.3p105.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ma/ma178.8p123.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/si/si171.0p115.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/vo/vo172.5p112.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/lo/lo148.8p128.8s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/iv/iv172.1p113.0s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ik/ik161.1p119.4s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/va/va194.5p150.4s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ox/ox168.6p111.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/bo/bo168.9p125.4s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ba/ba170.1p119.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/eh/eh165.6p144.0s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/xu/xu180.4p80.1s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/id/id175.7p118.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/in/in183.0p105.7s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/is/is169.0p114.0s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/pe/pe165.7p116.2s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/yo/yo170.0p109.7s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/oo/oo178.1p87.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/im/im161.1p119.4s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/su/su151.6p83.9s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ru/ru170.9p112.2s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/eb/eb171.7p112.3s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ez/ez161.1p96.8s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ed/ed141.3p135.4s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ha/ha148.8p128.8s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ar/ar174.5p100.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ek/ek151.6p83.9s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/yo/yo208.6p93.2s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/xo/xo175.7p118.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/il/il171.7p112.3s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ib/ib189.6p102.1s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/pi/pi168.9p125.4s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/no/no165.7p116.2s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/me/me188.1p139.2s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/is/is148.8p128.8s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ay/ay167.4p133.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/go/go172.4p109.3s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/eb/eb145.5p106.3s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ku/ku164.9p102.1s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/eg/eg169.0p114.0s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/uw/uw174.5p100.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/om/om202.7p118.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/za/za170.1p119.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ik/ik178.8p123.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ze/ze168.6p111.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/zu/zu170.0p109.7s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/on/on172.4p111.9s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/an/an171.9p111.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/lu/lu151.6p83.9s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ox/ox159.5p109.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/pu/pu170.1p119.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ev/ev183.0p105.7s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/eg/eg151.6p83.9s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ev/ev167.8p106.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/lo/lo208.6p93.2s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ux/ux168.9p125.4s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/xe/xe164.9p102.1s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ez/ez171.5p113.1s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ob/ob174.9p113.0s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ke/ke208.6p93.2s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ol/ol184.8p115.1s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/is/is173.5p115.0s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/re/re159.5p109.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ed/ed145.5p106.3s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/uk/uk156.7p90.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ew/ew183.0p130.4s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/uw/uw159.5p109.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/be/be173.5p115.0s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/hu/hu168.9p125.4s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/or/or173.5p115.0s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ni/ni176.1p94.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ib/ib174.9p113.0s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/id/id169.0p114.0s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/en/en172.4p109.3s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/po/po178.8p123.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/de/de151.6p83.9s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/so/so137.0p104.3s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ba/ba198.1p97.9s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/na/na180.4p80.1s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/am/am172.4p111.9s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/an/an161.1p96.8s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ge/ge172.5p112.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ri/ri164.7p110.8s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/if/if184.8p115.1s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/al/al171.9p111.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/iz/iz174.9p113.0s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ug/ug161.1p119.4s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/og/og155.5p123.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/tu/tu171.7p112.3s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/yu/yu156.7p90.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/af/af179.0p113.9s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ag/ag170.0p109.7s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/pa/pa170.9p112.2s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ay/ay164.7p110.8s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ut/ut174.5p110.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ti/ti184.8p115.1s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ba/ba189.6p102.1s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/lu/lu161.1p119.4s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/bu/bu159.5p109.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ut/ut180.4p80.1s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/za/za168.9p125.4s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ga/ga174.5p110.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/hu/hu171.0p112.8s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ev/ev175.7p118.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/wu/wu202.7p118.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ih/ih174.5p100.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ad/ad171.7p112.3s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ip/ip159.5p109.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ak/ak169.0p114.0s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/va/va164.7p110.8s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ro/ro156.7p90.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/aa/aa171.0p115.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/am/am171.9p111.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/pe/pe171.3p111.7s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/le/le174.5p110.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/op/op172.1p113.0s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/us/us172.4p111.9s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/we/we188.1p139.2s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/zo/zo173.3p105.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/du/du171.5p113.1s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ib/ib165.6p144.0s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/es/es171.7p112.3s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/za/za175.7p118.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ii/ii168.9p125.4s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/es/es174.5p110.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ut/ut208.6p93.2s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/xu/xu171.9p111.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/xu/xu171.7p112.3s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ho/ho167.4p133.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/iw/iw168.6p111.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ta/ta188.1p139.2s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/fi/fi173.5p115.0s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/iv/iv163.4p157.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/oo/oo184.8p115.1s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/iv/iv155.5p123.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/it/it161.1p96.8s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/up/up188.1p139.2s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/wu/wu178.8p123.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/fo/fo202.7p118.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/pe/pe168.6p111.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/aw/aw172.5p112.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/po/po173.3p105.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/at/at153.0p108.1s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/xu/xu168.9p125.4s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ef/ef153.0p108.1s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/if/if145.5p106.3s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ka/ka170.1p119.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/te/te178.1p87.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/pa/pa163.4p157.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/aa/aa169.0p114.0s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ed/ed161.1p96.8s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/eb/eb170.1p119.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/aw/aw174.5p110.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/im/im171.7p112.3s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/as/as164.7p110.8s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/bi/bi153.0p108.1s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/fe/fe170.9p112.2s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/lu/lu168.6p111.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ir/ir172.4p109.3s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/et/et178.0p108.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ef/ef165.6p144.0s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/uf/uf178.1p87.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/os/os183.0p105.7s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xi/xi159.5p109.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/eg/eg170.9p112.2s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ho/ho161.1p96.8s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ih/ih172.4p111.9s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ud/ud145.5p106.3s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/du/du172.4p111.9s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/en/en161.1p119.4s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/pe/pe178.0p108.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/he/he174.9p113.0s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ge/ge180.4p80.1s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ed/ed170.9p112.2s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/mi/mi174.9p113.0s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/er/er194.5p150.4s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/an/an178.0p108.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/at/at171.0p112.8s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/za/za171.0p115.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/gu/gu179.0p113.9s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/om/om188.1p139.2s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ig/ig167.4p133.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ka/ka159.5p109.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ke/ke178.8p123.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ax/ax171.9p111.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ah/ah164.9p102.1s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/xu/xu168.6p111.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/xu/xu164.7p110.8s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/wu/wu174.9p113.0s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/of/of174.5p100.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/la/la173.3p105.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/on/on202.7p118.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/hu/hu172.4p111.9s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/aa/aa215.2p121.0s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ri/ri171.0p115.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ob/ob192.7p116.7s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/re/re192.7p116.7s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ud/ud155.5p123.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ez/ez172.4p111.9s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/de/de173.5p115.0s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/re/re171.0p112.8s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/pi/pi192.7p116.7s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/zi/zi153.0p108.1s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/uf/uf174.5p100.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/oy/oy167.8p106.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/na/na215.2p121.0s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/oh/oh171.9p111.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/it/it156.7p90.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ey/ey178.1p87.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/os/os153.0p108.1s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/fu/fu172.4p111.9s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/oh/oh164.9p102.1s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ug/ug167.4p133.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ay/ay155.5p123.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/it/it174.9p113.0s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ii/ii175.7p118.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ow/ow164.9p102.1s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ip/ip180.4p80.1s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/nu/nu188.1p139.2s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/oy/oy194.5p150.4s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ay/ay165.7p116.2s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/uf/uf171.0p115.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/te/te141.3p135.4s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/aa/aa183.0p105.7s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/em/em183.0p105.7s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/fo/fo180.4p80.1s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ho/ho192.7p116.7s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/he/he188.1p139.2s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/uu/uu194.5p150.4s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/vi/vi176.1p94.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/un/un178.8p123.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ow/ow167.8p106.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/li/li156.7p90.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/us/us172.1p113.0s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/es/es171.0p115.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ov/ov174.9p113.0s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/da/da163.4p157.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/up/up165.6p144.0s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/za/za179.0p113.9s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/da/da141.3p135.4s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ti/ti178.0p108.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ee/ee170.1p119.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ti/ti172.4p111.9s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ha/ha172.1p113.0s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ux/ux171.0p112.8s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/et/et172.5p112.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/im/im174.5p110.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ze/ze163.4p157.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/uf/uf173.5p115.0s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/op/op170.0p109.7s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ef/ef189.6p102.1s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ag/ag164.7p110.8s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/zo/zo141.3p135.4s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/il/il174.5p110.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/yi/yi171.0p115.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/un/un215.2p121.0s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/if/if173.3p105.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ik/ik172.1p113.0s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ka/ka172.5p112.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/mo/mo155.5p123.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/aw/aw163.4p157.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/to/to174.5p110.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/pi/pi174.9p113.0s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ul/ul172.4p109.3s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/zo/zo171.5p113.1s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/fe/fe215.2p121.0s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ta/ta164.9p102.1s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/tu/tu178.8p123.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/lu/lu178.8p123.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ud/ud164.9p102.1s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/oz/oz176.1p94.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/of/of183.0p105.7s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/oz/oz198.1p97.9s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/vi/vi184.8p115.1s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ip/ip176.1p94.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/no/no159.5p109.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ok/ok171.0p112.8s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/oy/oy171.7p112.3s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ve/ve175.7p118.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/af/af155.5p123.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/iz/iz170.1p119.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/wo/wo184.8p115.1s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ne/ne164.9p102.1s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/mi/mi153.0p108.1s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/xo/xo151.6p83.9s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ok/ok176.1p94.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/gi/gi183.0p105.7s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/in/in173.5p115.0s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/up/up163.4p157.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/of/of159.5p109.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ob/ob179.0p113.9s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/se/se170.1p119.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ez/ez174.9p113.0s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ho/ho183.0p130.4s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/un/un174.9p113.0s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ab/ab184.8p115.1s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/pa/pa172.4p109.3s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/tu/tu184.8p115.1s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/zi/zi161.1p119.4s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/oz/oz148.8p128.8s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ot/ot163.4p157.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ta/ta169.0p114.0s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ro/ro172.5p112.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ok/ok174.5p110.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/eh/eh176.1p94.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ra/ra167.8p106.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/we/we171.0p112.8s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/us/us180.4p80.1s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/at/at169.0p114.0s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/lo/lo155.5p123.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/um/um165.6p144.0s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/na/na208.6p93.2s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ak/ak171.0p112.8s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ko/ko169.0p114.0s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/te/te194.5p150.4s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/on/on159.5p109.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ar/ar208.6p93.2s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ut/ut175.7p118.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ir/ir151.6p83.9s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/af/af172.5p112.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/um/um175.7p118.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ek/ek215.2p121.0s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ya/ya155.5p123.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/xa/xa137.0p104.3s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ef/ef174.5p110.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ay/ay178.1p87.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/va/va174.5p110.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/if/if170.0p109.7s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/em/em171.0p115.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/bu/bu180.4p80.1s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/aa/aa172.1p113.0s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ve/ve198.1p97.9s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ob/ob169.0p114.0s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ak/ak171.7p112.3s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/de/de183.0p105.7s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/bu/bu175.7p118.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/af/af174.5p100.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/iy/iy141.3p135.4s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ev/ev170.0p109.7s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/aw/aw171.7p112.3s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ur/ur174.5p100.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ho/ho151.6p83.9s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ad/ad173.5p115.0s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/zo/zo167.4p133.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ru/ru183.0p105.7s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/po/po174.9p113.0s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/la/la175.7p118.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/bi/bi172.4p109.3s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ro/ro174.9p113.0s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/mo/mo173.3p105.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/de/de141.3p135.4s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ki/ki180.4p80.1s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ma/ma189.6p102.1s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/iv/iv161.1p96.8s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/vu/vu169.0p114.0s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ib/ib198.1p97.9s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ig/ig173.5p115.0s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ga/ga170.9p112.2s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ud/ud183.0p105.7s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ta/ta202.7p118.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ku/ku198.1p97.9s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ul/ul171.5p113.1s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/um/um172.5p112.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ye/ye148.8p128.8s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/on/on169.0p114.0s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ep/ep169.0p114.0s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/lo/lo171.0p115.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/at/at170.0p109.7s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/iz/iz172.1p113.0s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/im/im183.0p130.4s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/li/li178.0p108.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/aw/aw194.5p150.4s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/uv/uv170.0p109.7s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/om/om145.5p106.3s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/az/az148.8p128.8s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ee/ee174.5p110.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/in/in165.6p144.0s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/iw/iw155.5p123.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ga/ga137.0p104.3s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/bu/bu141.3p135.4s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/am/am170.0p109.7s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/we/we171.5p113.1s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ra/ra170.1p119.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/du/du202.7p118.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/az/az155.5p123.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/we/we169.0p114.0s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/gu/gu192.7p116.7s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/oz/oz202.7p118.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/zo/zo163.4p157.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/es/es148.8p128.8s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/un/un153.0p108.1s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/su/su141.3p135.4s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/xu/xu173.3p105.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/gi/gi189.6p102.1s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/er/er148.8p128.8s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/il/il164.7p110.8s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/nu/nu145.5p106.3s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ad/ad208.6p93.2s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/wa/wa171.9p111.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ag/ag174.5p100.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/yo/yo215.2p121.0s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/up/up156.7p90.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/no/no174.9p113.0s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/pu/pu141.3p135.4s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ve/ve215.2p121.0s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ip/ip161.1p119.4s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/et/et156.7p90.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/uz/uz174.9p113.0s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/mo/mo178.0p108.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ap/ap171.9p111.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/uw/uw171.0p112.8s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/uf/uf156.7p90.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/aw/aw168.6p111.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ni/ni198.1p97.9s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/li/li178.8p123.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/or/or174.5p100.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/el/el172.4p109.3s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/he/he208.6p93.2s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/nu/nu161.1p96.8s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/uz/uz171.3p111.7s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ga/ga165.6p144.0s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ul/ul161.1p119.4s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ev/ev145.5p106.3s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ow/ow171.7p112.3s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ap/ap178.8p123.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ob/ob170.1p119.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/op/op188.1p139.2s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/bu/bu183.0p130.4s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ad/ad159.5p109.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/he/he170.9p112.2s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/iw/iw141.3p135.4s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/uu/uu155.5p123.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/te/te165.6p144.0s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/et/et198.1p97.9s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ru/ru174.5p100.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/xu/xu167.8p106.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/li/li171.0p112.8s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/oh/oh164.7p110.8s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/na/na171.3p111.7s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/eg/eg168.9p125.4s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ob/ob151.6p83.9s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/pu/pu175.7p118.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/is/is159.5p109.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ee/ee170.0p109.7s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/le/le172.4p109.3s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/yu/yu155.5p123.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ro/ro169.0p114.0s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ge/ge171.5p113.1s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/iz/iz148.8p128.8s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/hu/hu178.0p108.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ya/ya183.0p105.7s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/yi/yi145.5p106.3s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ut/ut163.4p157.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/di/di161.1p96.8s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/yo/yo161.1p119.4s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/li/li173.3p105.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ig/ig178.0p108.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ma/ma168.9p125.4s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/id/id161.1p119.4s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ru/ru178.8p123.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ov/ov171.5p113.1s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ay/ay145.5p106.3s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/xu/xu183.0p105.7s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/hi/hi164.7p110.8s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/wa/wa173.3p105.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ez/ez171.9p111.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ar/ar169.0p114.0s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/up/up173.5p115.0s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/fu/fu173.5p115.0s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ef/ef178.1p87.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ef/ef174.5p100.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ki/ki170.1p119.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/uy/uy192.7p116.7s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/up/up215.2p121.0s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/so/so161.1p119.4s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/iw/iw173.3p105.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ag/ag167.8p106.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ey/ey178.8p123.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/og/og171.0p112.8s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/si/si192.7p116.7s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ro/ro172.4p109.3s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ig/ig171.7p112.3s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/gi/gi174.5p110.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/es/es171.0p112.8s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ip/ip174.5p110.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/oo/oo148.8p128.8s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/li/li145.5p106.3s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/si/si189.6p102.1s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/os/os192.7p116.7s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xi/xi183.0p105.7s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/os/os141.3p135.4s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xo/xo153.0p108.1s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/om/om183.0p105.7s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/az/az174.5p100.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/yi/yi155.5p123.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ot/ot172.4p109.3s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/fu/fu198.1p97.9s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/an/an173.3p105.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/po/po161.1p119.4s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ge/ge170.0p109.7s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/la/la165.6p144.0s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/pi/pi141.3p135.4s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ze/ze183.0p105.7s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ib/ib176.1p94.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/mu/mu170.9p112.2s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/of/of171.0p112.8s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/os/os171.9p111.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/av/av172.4p109.3s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ih/ih208.6p93.2s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ot/ot184.8p115.1s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ko/ko153.0p108.1s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ay/ay215.2p121.0s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ni/ni165.6p144.0s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ok/ok183.0p105.7s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/pu/pu208.6p93.2s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ku/ku145.5p106.3s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/le/le165.7p116.2s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ma/ma170.0p109.7s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/so/so171.9p111.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ku/ku172.1p113.0s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/aw/aw156.7p90.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/pu/pu202.7p118.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/la/la164.7p110.8s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ii/ii188.1p139.2s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/im/im180.4p80.1s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/bo/bo171.9p111.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ka/ka145.5p106.3s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/gu/gu164.9p102.1s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/xi/xi161.1p119.4s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/wo/wo156.7p90.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/it/it176.1p94.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ur/ur148.8p128.8s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/eb/eb171.5p113.1s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ov/ov189.6p102.1s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ok/ok173.3p105.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/zu/zu156.7p90.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/lo/lo161.1p119.4s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/mi/mi171.0p112.8s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ay/ay188.1p139.2s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ev/ev171.7p112.3s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/aa/aa171.7p112.3s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/fe/fe167.4p133.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/en/en183.0p105.7s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ew/ew176.1p94.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/vi/vi169.0p114.0s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/fa/fa165.6p144.0s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ko/ko148.8p128.8s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/im/im173.3p105.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/en/en173.5p115.0s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/mi/mi171.5p113.1s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ek/ek194.5p150.4s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/te/te167.4p133.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/bi/bi163.4p157.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ut/ut176.1p94.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ze/ze153.0p108.1s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/be/be189.6p102.1s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ow/ow175.7p118.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/bu/bu156.7p90.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/to/to171.7p112.3s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/et/et180.4p80.1s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ot/ot171.0p112.8s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ay/ay168.9p125.4s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/iz/iz156.7p90.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ow/ow198.1p97.9s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ze/ze159.5p109.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/or/or176.1p94.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ir/ir202.7p118.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ma/ma170.9p112.2s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ii/ii178.1p87.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/hu/hu164.9p102.1s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ge/ge198.1p97.9s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ik/ik215.2p121.0s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ih/ih175.7p118.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/pa/pa183.0p130.4s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/fa/fa171.7p112.3s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/aa/aa164.9p102.1s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/wu/wu167.8p106.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/mi/mi163.4p157.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/pi/pi171.7p112.3s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/se/se170.0p109.7s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/lu/lu155.5p123.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/eg/eg215.2p121.0s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/uy/uy172.5p112.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/me/me174.5p110.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/in/in153.0p108.1s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ut/ut188.1p139.2s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ov/ov163.4p157.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ii/ii167.8p106.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/et/et189.6p102.1s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/di/di171.3p111.7s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ku/ku171.9p111.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ev/ev172.1p113.0s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/or/or208.6p93.2s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/xe/xe171.3p111.7s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/do/do164.9p102.1s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/pi/pi171.0p115.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/lo/lo163.4p157.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ra/ra151.6p83.9s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/xo/xo178.8p123.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/iv/iv198.1p97.9s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/xo/xo161.1p96.8s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ul/ul148.8p128.8s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/to/to167.8p106.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/mu/mu175.7p118.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/of/of145.5p106.3s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ux/ux170.0p109.7s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ix/ix215.2p121.0s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/pa/pa192.7p116.7s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ka/ka168.6p111.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/uu/uu172.5p112.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/od/od159.5p109.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/as/as167.4p133.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ef/ef178.0p108.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ak/ak159.5p109.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/eg/eg173.5p115.0s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/yi/yi167.8p106.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ig/ig151.6p83.9s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/xi/xi178.1p87.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/wo/wo174.5p100.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ir/ir170.0p109.7s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/it/it174.5p100.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ya/ya164.9p102.1s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ur/ur169.0p114.0s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ep/ep192.7p116.7s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/yu/yu151.6p83.9s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/yi/yi161.1p96.8s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ke/ke155.5p123.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/no/no178.1p87.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/iz/iz175.7p118.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/zo/zo174.5p100.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/oz/oz137.0p104.3s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/da/da171.3p111.7s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ke/ke178.1p87.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/um/um184.8p115.1s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/az/az137.0p104.3s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/oz/oz145.5p106.3s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/he/he159.5p109.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/me/me171.9p111.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/uu/uu180.4p80.1s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ne/ne178.0p108.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ux/ux172.1p113.0s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/sa/sa161.1p96.8s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ku/ku165.6p144.0s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/di/di183.0p130.4s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ef/ef170.1p119.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/he/he173.5p115.0s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ul/ul174.5p110.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/to/to164.9p102.1s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/te/te171.0p112.8s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/of/of194.5p150.4s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/do/do189.6p102.1s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ah/ah164.7p110.8s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ax/ax141.3p135.4s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ug/ug165.6p144.0s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/pe/pe171.7p112.3s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ro/ro194.5p150.4s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/an/an173.5p115.0s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/el/el189.6p102.1s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ko/ko176.1p94.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ur/ur159.5p109.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ze/ze174.9p113.0s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ud/ud178.1p87.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/nu/nu155.5p123.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ul/ul164.9p102.1s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/uf/uf174.5p110.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/pe/pe174.5p100.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/id/id192.7p116.7s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/go/go180.4p80.1s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/uf/uf164.9p102.1s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ba/ba171.0p115.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ye/ye159.5p109.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/te/te171.7p112.3s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ud/ud137.0p104.3s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/at/at167.4p133.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/sa/sa173.3p105.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/do/do171.5p113.1s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/on/on178.1p87.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/al/al148.8p128.8s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/as/as172.1p113.0s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ke/ke163.4p157.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/um/um164.7p110.8s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ay/ay194.5p150.4s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/uv/uv156.7p90.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/eg/eg161.1p96.8s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/to/to179.0p113.9s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/gu/gu174.5p100.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ag/ag167.4p133.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ub/ub171.0p112.8s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/pe/pe170.1p119.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/wo/wo159.5p109.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/vu/vu179.0p113.9s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ar/ar167.8p106.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/vo/vo178.8p123.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/hi/hi188.1p139.2s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ye/ye145.5p106.3s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ov/ov176.1p94.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/fe/fe171.9p111.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/im/im198.1p97.9s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/uf/uf194.5p150.4s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ki/ki215.2p121.0s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/mo/mo168.9p125.4s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/op/op170.9p112.2s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ox/ox192.7p116.7s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/uy/uy168.9p125.4s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ti/ti156.7p90.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/no/no174.5p100.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/mi/mi184.8p115.1s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ot/ot178.8p123.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/hu/hu174.9p113.0s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/zo/zo164.7p110.8s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ba/ba169.0p114.0s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/zo/zo159.5p109.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/uv/uv168.6p111.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/se/se156.7p90.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ta/ta165.6p144.0s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/sa/sa168.9p125.4s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/or/or148.8p128.8s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/uk/uk174.5p100.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ew/ew194.5p150.4s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/su/su169.0p114.0s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/la/la173.5p115.0s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/oo/oo145.5p106.3s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ve/ve176.1p94.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ur/ur174.9p113.0s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/pu/pu194.5p150.4s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ed/ed168.9p125.4s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/xa/xa164.7p110.8s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/os/os171.0p115.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ix/ix172.4p109.3s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/lu/lu153.0p108.1s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ne/ne153.0p108.1s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ke/ke161.1p96.8s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ol/ol170.9p112.2s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ed/ed178.0p108.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/vi/vi179.0p113.9s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ov/ov194.5p150.4s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ik/ik164.9p102.1s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ho/ho202.7p118.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ad/ad148.8p128.8s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/on/on171.9p111.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ke/ke137.0p104.3s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ta/ta198.1p97.9s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/oy/oy167.4p133.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ag/ag171.9p111.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ko/ko156.7p90.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/pi/pi172.1p113.0s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/on/on171.5p113.1s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ov/ov171.9p111.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/uk/uk178.1p87.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/en/en208.6p93.2s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ag/ag156.7p90.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ab/ab169.0p114.0s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ve/ve192.7p116.7s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/hu/hu172.5p112.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/xi/xi156.7p90.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ag/ag179.0p113.9s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/iw/iw174.5p110.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/en/en179.0p113.9s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ni/ni180.4p80.1s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ip/ip171.9p111.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ke/ke202.7p118.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/eb/eb171.9p111.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ey/ey145.5p106.3s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ko/ko178.8p123.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ee/ee141.3p135.4s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/el/el168.6p111.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/eb/eb172.4p109.3s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ir/ir170.1p119.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ri/ri183.0p130.4s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/or/or198.1p97.9s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/fo/fo170.9p112.2s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ro/ro168.6p111.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/uu/uu183.0p105.7s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/er/er164.7p110.8s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ha/ha153.0p108.1s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/fo/fo194.5p150.4s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/um/um159.5p109.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ha/ha192.7p116.7s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/op/op168.6p111.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ul/ul151.6p83.9s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/is/is198.1p97.9s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/og/og175.7p118.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/af/af208.6p93.2s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ha/ha167.8p106.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/aw/aw164.9p102.1s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ya/ya178.8p123.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/gi/gi188.1p139.2s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/us/us164.9p102.1s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/bo/bo194.5p150.4s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/vo/vo179.0p113.9s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ab/ab178.8p123.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ob/ob171.0p115.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ox/ox153.0p108.1s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/za/za192.7p116.7s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/uh/uh170.9p112.2s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/go/go172.5p112.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/em/em170.0p109.7s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/me/me169.0p114.0s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ma/ma151.6p83.9s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ma/ma202.7p118.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/an/an168.9p125.4s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ek/ek172.4p109.3s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/to/to156.7p90.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ox/ox194.5p150.4s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/iz/iz153.0p108.1s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/uw/uw183.0p105.7s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/in/in178.8p123.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ri/ri168.9p125.4s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/zi/zi178.1p87.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/xu/xu145.5p106.3s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ke/ke172.4p109.3s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/an/an163.4p157.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/up/up173.3p105.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/im/im178.8p123.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/iv/iv174.9p113.0s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/xe/xe171.0p112.8s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/xu/xu163.4p157.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/it/it165.6p144.0s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ew/ew172.4p109.3s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/wo/wo172.5p112.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/re/re215.2p121.0s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/vu/vu164.9p102.1s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/uf/uf169.0p114.0s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ko/ko198.1p97.9s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/fu/fu170.9p112.2s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/xa/xa174.9p113.0s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ih/ih148.8p128.8s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/in/in167.8p106.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/an/an174.5p110.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/le/le164.9p102.1s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/at/at176.1p94.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/oy/oy159.5p109.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/po/po165.7p116.2s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ap/ap155.5p123.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/oz/oz171.5p113.1s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/me/me171.7p112.3s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/gu/gu164.7p110.8s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ba/ba168.9p125.4s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/wi/wi171.9p111.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/on/on189.6p102.1s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ep/ep172.4p109.3s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/aw/aw208.6p93.2s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/zi/zi170.1p119.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ax/ax188.1p139.2s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ix/ix168.9p125.4s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/hi/hi202.7p118.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/re/re194.5p150.4s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/op/op184.8p115.1s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/xa/xa174.5p110.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/te/te174.5p110.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/la/la174.9p113.0s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/we/we178.8p123.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ey/ey151.6p83.9s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ak/ak173.5p115.0s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/we/we148.8p128.8s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/on/on178.0p108.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/mo/mo169.0p114.0s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/em/em174.5p100.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/nu/nu176.1p94.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/iw/iw180.4p80.1s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/pi/pi151.6p83.9s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/vo/vo169.0p114.0s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/im/im171.5p113.1s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/uk/uk171.9p111.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/al/al215.2p121.0s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ok/ok156.7p90.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/id/id167.8p106.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/uv/uv178.8p123.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ya/ya153.0p108.1s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/he/he184.8p115.1s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/is/is153.0p108.1s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ah/ah155.5p123.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/no/no178.0p108.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/no/no172.1p113.0s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/mi/mi176.1p94.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ar/ar165.7p116.2s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ow/ow156.7p90.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ho/ho169.0p114.0s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/el/el168.9p125.4s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/un/un178.1p87.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ek/ek174.5p100.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ey/ey168.9p125.4s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/we/we167.8p106.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/at/at164.9p102.1s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/uh/uh171.9p111.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ru/ru155.5p123.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/os/os168.6p111.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/oh/oh161.1p119.4s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/om/om153.0p108.1s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/pe/pe156.7p90.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/xi/xi172.4p111.9s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/le/le171.3p111.7s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ik/ik171.5p113.1s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/hu/hu183.0p105.7s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/le/le183.0p105.7s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ga/ga145.5p106.3s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/of/of184.8p115.1s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/nu/nu156.7p90.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/us/us172.5p112.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/na/na176.1p94.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ok/ok163.4p157.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/vi/vi161.1p119.4s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ef/ef208.6p93.2s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ba/ba148.8p128.8s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/eh/eh170.1p119.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/mi/mi170.9p112.2s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ax/ax153.0p108.1s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/oz/oz183.0p130.4s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ma/ma178.0p108.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ab/ab172.4p109.3s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ku/ku172.4p111.9s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ko/ko171.7p112.3s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/da/da170.1p119.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/av/av155.5p123.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/hi/hi173.3p105.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/to/to175.7p118.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/mo/mo173.5p115.0s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/xu/xu165.7p116.2s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/od/od165.6p144.0s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/zi/zi148.8p128.8s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ke/ke192.7p116.7s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/te/te168.6p111.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ro/ro215.2p121.0s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ap/ap215.2p121.0s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/od/od167.8p106.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ub/ub202.7p118.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/of/of171.0p115.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ok/ok165.7p116.2s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ol/ol198.1p97.9s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ne/ne163.4p157.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/eh/eh171.9p111.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ak/ak192.7p116.7s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ek/ek180.4p80.1s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/uw/uw164.9p102.1s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ih/ih167.4p133.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/na/na171.0p115.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ot/ot170.9p112.2s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/eg/eg171.0p112.8s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ez/ez170.1p119.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ma/ma155.5p123.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ta/ta189.6p102.1s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/lo/lo171.5p113.1s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/di/di148.8p128.8s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/go/go165.6p144.0s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/mo/mo145.5p106.3s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ut/ut168.6p111.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ok/ok164.7p110.8s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/on/on175.7p118.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/pa/pa173.3p105.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ab/ab178.0p108.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ro/ro202.7p118.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/so/so171.0p112.8s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/oz/oz183.0p105.7s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/re/re169.0p114.0s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/as/as171.3p111.7s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ii/ii172.4p109.3s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/nu/nu189.6p102.1s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ya/ya183.0p130.4s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/om/om175.7p118.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ri/ri208.6p93.2s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ne/ne170.9p112.2s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/en/en198.1p97.9s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ba/ba171.5p113.1s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/og/og164.7p110.8s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/as/as168.6p111.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/do/do178.1p87.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/eh/eh175.7p118.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ut/ut167.8p106.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ya/ya164.7p110.8s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/xu/xu156.7p90.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/id/id148.8p128.8s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/bi/bi164.7p110.8s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/mo/mo172.5p112.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ap/ap163.4p157.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ip/ip151.6p83.9s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/oo/oo174.5p100.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/yo/yo161.1p96.8s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/fa/fa198.1p97.9s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/en/en155.5p123.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ub/ub171.5p113.1s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/de/de176.1p94.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/iy/iy171.7p112.3s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ew/ew168.9p125.4s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ip/ip175.7p118.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/et/et171.3p111.7s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/es/es194.5p150.4s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/in/in215.2p121.0s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ub/ub173.3p105.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/bu/bu183.0p105.7s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/to/to168.9p125.4s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/pu/pu173.5p115.0s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ax/ax165.7p116.2s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/od/od155.5p123.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ge/ge202.7p118.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/vo/vo168.9p125.4s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/al/al170.9p112.2s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ne/ne173.3p105.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/bi/bi165.6p144.0s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/mu/mu171.7p112.3s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ti/ti192.7p116.7s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/xe/xe167.8p106.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/bi/bi159.5p109.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/va/va202.7p118.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/gu/gu172.5p112.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/uy/uy156.7p90.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/te/te215.2p121.0s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/he/he178.0p108.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/af/af148.8p128.8s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ge/ge141.3p135.4s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/gi/gi155.5p123.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ta/ta215.2p121.0s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ek/ek174.5p110.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/sa/sa163.4p157.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/uu/uu170.9p112.2s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ez/ez192.7p116.7s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ya/ya173.5p115.0s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/wu/wu171.0p112.8s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/gi/gi165.7p116.2s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ye/ye167.4p133.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/gi/gi159.5p109.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/bu/bu172.4p109.3s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/bu/bu173.5p115.0s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ub/ub174.5p100.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/hu/hu188.1p139.2s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/uf/uf172.5p112.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/pi/pi170.0p109.7s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/te/te183.0p105.7s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/wu/wu174.5p110.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/fa/fa171.3p111.7s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/uk/uk178.8p123.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ob/ob208.6p93.2s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ti/ti174.5p100.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/oh/oh145.5p106.3s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/gi/gi171.5p113.1s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ze/ze215.2p121.0s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ok/ok145.5p106.3s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ol/ol178.8p123.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/og/og180.4p80.1s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/mu/mu161.1p96.8s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ke/ke164.7p110.8s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/is/is151.6p83.9s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/so/so159.5p109.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/uw/uw165.7p116.2s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/av/av208.6p93.2s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/xi/xi171.0p115.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/oo/oo188.1p139.2s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/la/la167.4p133.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/hi/hi163.4p157.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ka/ka163.4p157.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/il/il171.0p115.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/am/am174.5p110.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/oo/oo178.8p123.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ex/ex155.5p123.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/uv/uv179.0p113.9s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ta/ta171.5p113.1s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ir/ir194.5p150.4s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/az/az174.9p113.0s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/tu/tu153.0p108.1s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ek/ek179.0p113.9s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/lo/lo159.5p109.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ap/ap168.6p111.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/vu/vu192.7p116.7s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/os/os189.6p102.1s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ye/ye171.3p111.7s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/iw/iw174.5p100.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ug/ug202.7p118.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/en/en171.7p112.3s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ad/ad167.8p106.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/xu/xu184.8p115.1s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/oo/oo164.9p102.1s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ok/ok179.0p113.9s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ri/ri171.3p111.7s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/po/po215.2p121.0s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/al/al178.8p123.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ma/ma173.5p115.0s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ih/ih171.5p113.1s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ub/ub178.8p123.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ot/ot155.5p123.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/la/la172.1p113.0s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ev/ev155.5p123.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ut/ut171.0p112.8s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/xo/xo155.5p123.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ih/ih168.9p125.4s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ki/ki175.7p118.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/di/di170.1p119.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/is/is145.5p106.3s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/uh/uh170.0p109.7s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/zo/zo161.1p119.4s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/um/um171.3p111.7s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/os/os173.5p115.0s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/le/le167.8p106.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/xo/xo141.3p135.4s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/fa/fa174.9p113.0s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ga/ga175.7p118.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ut/ut156.7p90.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/an/an171.3p111.7s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ap/ap178.1p87.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ho/ho171.9p111.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ol/ol168.9p125.4s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ya/ya159.5p109.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/le/le170.1p119.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/eb/eb161.1p96.8s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/tu/tu170.1p119.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/na/na188.1p139.2s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/de/de171.5p113.1s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/os/os171.3p111.7s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/go/go164.9p102.1s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ay/ay172.1p113.0s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/eh/eh148.8p128.8s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/uh/uh208.6p93.2s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/wo/wo178.8p123.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/xo/xo163.4p157.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/an/an172.5p112.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ru/ru189.6p102.1s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ta/ta141.3p135.4s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/bo/bo172.4p109.3s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/pe/pe188.1p139.2s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/te/te176.1p94.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/up/up171.3p111.7s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/bi/bi171.3p111.7s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/we/we175.7p118.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/di/di168.6p111.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/xi/xi165.7p116.2s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/en/en171.0p115.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ri/ri176.1p94.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ey/ey178.0p108.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/al/al168.6p111.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/si/si171.3p111.7s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ve/ve159.5p109.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/il/il145.5p106.3s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ar/ar179.0p113.9s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ta/ta171.0p112.8s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/eg/eg194.5p150.4s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ow/ow174.5p110.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ex/ex163.4p157.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/id/id178.1p87.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/iy/iy171.0p115.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/nu/nu163.4p157.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ed/ed168.6p111.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/pu/pu170.9p112.2s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/su/su178.8p123.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/nu/nu171.0p115.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/la/la159.5p109.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ap/ap194.5p150.4s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/zi/zi174.5p110.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/lo/lo167.4p133.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/es/es164.9p102.1s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/eg/eg165.6p144.0s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/zo/zo178.8p123.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/fu/fu179.0p113.9s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ux/ux169.0p114.0s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ap/ap167.4p133.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ah/ah172.4p109.3s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ef/ef159.5p109.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/eh/eh174.5p100.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ul/ul171.0p112.8s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ol/ol165.7p116.2s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/it/it198.1p97.9s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/sa/sa174.5p110.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/to/to145.5p106.3s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/du/du215.2p121.0s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ba/ba184.8p115.1s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/yu/yu159.5p109.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/if/if141.3p135.4s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/zu/zu159.5p109.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/za/za176.1p94.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/se/se184.8p115.1s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/oz/oz164.9p102.1s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/no/no161.1p96.8s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/el/el159.5p109.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/vo/vo156.7p90.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/nu/nu183.0p130.4s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ik/ik148.8p128.8s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ii/ii171.9p111.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ga/ga215.2p121.0s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/iz/iz183.0p105.7s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ug/ug184.8p115.1s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ho/ho164.7p110.8s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ot/ot171.9p111.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/lo/lo170.9p112.2s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/lu/lu165.7p116.2s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/lo/lo164.9p102.1s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/in/in171.7p112.3s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/yi/yi171.5p113.1s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ot/ot174.9p113.0s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/tu/tu156.7p90.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ad/ad137.0p104.3s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/pi/pi180.4p80.1s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/aa/aa168.6p111.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/fi/fi164.9p102.1s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ow/ow178.0p108.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/na/na155.5p123.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/uh/uh172.4p111.9s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ye/ye188.1p139.2s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/zo/zo172.4p109.3s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/fo/fo164.7p110.8s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/zu/zu145.5p106.3s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ew/ew171.7p112.3s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ur/ur171.5p113.1s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ev/ev188.1p139.2s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/en/en174.5p110.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/iw/iw137.0p104.3s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ul/ul155.5p123.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ev/ev148.8p128.8s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ey/ey155.5p123.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ig/ig174.5p110.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/iy/iy171.5p113.1s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/uy/uy170.9p112.2s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/lo/lo167.8p106.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/po/po171.0p115.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/za/za174.5p100.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/nu/nu184.8p115.1s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ro/ro161.1p119.4s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/em/em215.2p121.0s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/yo/yo148.8p128.8s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/go/go161.1p96.8s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/wi/wi184.8p115.1s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ki/ki179.0p113.9s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ah/ah145.5p106.3s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ex/ex156.7p90.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/gi/gi172.4p109.3s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/pu/pu189.6p102.1s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/no/no167.4p133.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/or/or171.7p112.3s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/zu/zu168.9p125.4s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ax/ax137.0p104.3s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/un/un183.0p105.7s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/lu/lu184.8p115.1s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/uz/uz164.9p102.1s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/im/im215.2p121.0s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ov/ov202.7p118.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/sa/sa167.4p133.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/og/og179.0p113.9s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/if/if171.0p112.8s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/tu/tu189.6p102.1s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ob/ob167.8p106.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/oh/oh165.7p116.2s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/le/le167.4p133.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/un/un172.1p113.0s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/di/di156.7p90.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/nu/nu172.5p112.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/go/go161.1p119.4s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/az/az178.0p108.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/na/na202.7p118.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/mo/mo174.5p100.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/iz/iz173.3p105.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/il/il170.0p109.7s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/aa/aa155.5p123.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ap/ap174.5p100.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/uu/uu189.6p102.1s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ef/ef171.0p112.8s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ko/ko202.7p118.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ob/ob171.9p111.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/hu/hu192.7p116.7s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/og/og163.4p157.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/wa/wa180.4p80.1s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ee/ee172.4p109.3s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/av/av165.6p144.0s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/he/he171.0p115.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/bu/bu171.0p112.8s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/en/en141.3p135.4s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ex/ex171.9p111.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/am/am163.4p157.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/wo/wo165.7p116.2s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ak/ak170.0p109.7s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ob/ob170.9p112.2s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ba/ba172.1p113.0s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/of/of153.0p108.1s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/va/va198.1p97.9s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/zu/zu192.7p116.7s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/pa/pa178.8p123.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/or/or194.5p150.4s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ex/ex167.8p106.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ra/ra171.5p113.1s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ob/ob161.1p119.4s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/lu/lu171.7p112.3s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ed/ed180.4p80.1s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/uz/uz176.1p94.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ab/ab167.4p133.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/me/me137.0p104.3s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/it/it151.6p83.9s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/wi/wi163.4p157.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ee/ee192.7p116.7s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/za/za215.2p121.0s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/uz/uz192.7p116.7s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ba/ba153.0p108.1s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ur/ur170.1p119.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/xi/xi170.0p109.7s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/va/va172.5p112.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/iy/iy167.8p106.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/es/es172.5p112.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ni/ni159.5p109.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/og/og174.9p113.0s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ve/ve171.5p113.1s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/so/so165.7p116.2s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/oz/oz167.4p133.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/xi/xi174.5p100.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ga/ga192.7p116.7s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ol/ol153.0p108.1s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/uy/uy151.6p83.9s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/uh/uh141.3p135.4s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ga/ga180.4p80.1s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ro/ro164.9p102.1s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/re/re171.9p111.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/be/be148.8p128.8s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/pi/pi164.9p102.1s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/su/su215.2p121.0s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ke/ke174.5p100.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ku/ku176.1p94.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ad/ad189.6p102.1s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/uu/uu165.7p116.2s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/do/do180.4p80.1s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/in/in161.1p96.8s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/en/en178.1p87.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ef/ef175.7p118.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/af/af161.1p119.4s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/el/el165.6p144.0s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ge/ge171.0p115.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ta/ta192.7p116.7s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ek/ek173.5p115.0s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/op/op141.3p135.4s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ez/ez188.1p139.2s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ka/ka188.1p139.2s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/as/as171.7p112.3s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/og/og165.7p116.2s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/li/li189.6p102.1s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/wu/wu171.3p111.7s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/gi/gi173.5p115.0s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/aa/aa202.7p118.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/pa/pa179.0p113.9s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ku/ku184.8p115.1s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ut/ut171.7p112.3s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/mi/mi145.5p106.3s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ey/ey171.3p111.7s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/fu/fu151.6p83.9s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/id/id161.1p96.8s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ak/ak179.0p113.9s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ob/ob153.0p108.1s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ew/ew163.4p157.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/nu/nu174.5p100.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/oo/oo167.8p106.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/iw/iw170.0p109.7s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/fo/fo153.0p108.1s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/il/il172.5p112.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ir/ir168.9p125.4s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ak/ak208.6p93.2s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/hi/hi171.0p115.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/er/er192.7p116.7s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ip/ip141.3p135.4s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/to/to183.0p105.7s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/uh/uh163.4p157.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ye/ye171.0p115.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ne/ne179.0p113.9s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ed/ed137.0p104.3s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ti/ti171.3p111.7s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/uw/uw168.6p111.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/uf/uf175.7p118.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/pu/pu179.0p113.9s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ti/ti188.1p139.2s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/vu/vu159.5p109.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ne/ne172.4p109.3s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/uz/uz171.0p115.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/xa/xa180.4p80.1s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/de/de170.9p112.2s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/on/on171.7p112.3s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/uf/uf202.7p118.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ho/ho189.6p102.1s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/us/us165.6p144.0s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/du/du184.8p115.1s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/mo/mo153.0p108.1s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/om/om137.0p104.3s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/de/de183.0p130.4s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/la/la178.1p87.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ta/ta183.0p130.4s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/da/da183.0p105.7s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ee/ee137.0p104.3s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/yo/yo137.0p104.3s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/du/du180.4p80.1s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ba/ba165.6p144.0s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/eb/eb194.5p150.4s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/da/da167.8p106.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/xe/xe194.5p150.4s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/li/li153.0p108.1s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/xi/xi174.9p113.0s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/iv/iv178.1p87.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ap/ap172.5p112.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ek/ek161.1p96.8s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/er/er188.1p139.2s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ey/ey167.4p133.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/in/in194.5p150.4s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/em/em202.7p118.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ib/ib170.0p109.7s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/iz/iz208.6p93.2s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/so/so151.6p83.9s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/el/el155.5p123.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/gu/gu184.8p115.1s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/or/or172.4p111.9s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ge/ge194.5p150.4s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ah/ah170.9p112.2s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/be/be194.5p150.4s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ov/ov141.3p135.4s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ew/ew198.1p97.9s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ye/ye174.5p100.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/yo/yo171.0p115.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ku/ku178.8p123.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ga/ga155.5p123.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/fe/fe208.6p93.2s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ah/ah137.0p104.3s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ux/ux202.7p118.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ba/ba137.0p104.3s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/da/da168.9p125.4s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ew/ew175.7p118.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ga/ga164.7p110.8s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ex/ex168.6p111.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/if/if183.0p105.7s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ro/ro171.5p113.1s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/et/et164.9p102.1s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ur/ur168.6p111.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/mo/mo184.8p115.1s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ri/ri171.9p111.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/in/in155.5p123.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ed/ed161.1p119.4s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ez/ez198.1p97.9s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ol/ol164.7p110.8s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/mi/mi198.1p97.9s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ub/ub164.7p110.8s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/le/le163.4p157.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/bi/bi168.6p111.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/um/um170.1p119.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/an/an180.4p80.1s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/et/et173.3p105.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ez/ez171.0p112.8s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/la/la151.6p83.9s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ix/ix170.0p109.7s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/zi/zi137.0p104.3s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ki/ki153.0p108.1s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/es/es159.5p109.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ge/ge188.1p139.2s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ev/ev167.4p133.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ux/ux184.8p115.1s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/if/if167.4p133.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/go/go179.0p113.9s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/iv/iv215.2p121.0s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/mi/mi161.1p119.4s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/uu/uu173.5p115.0s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ot/ot165.6p144.0s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/li/li141.3p135.4s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ve/ve189.6p102.1s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/pa/pa174.5p100.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/wu/wu141.3p135.4s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/an/an165.6p144.0s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/vu/vu188.1p139.2s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/yi/yi172.1p113.0s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ek/ek153.0p108.1s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/no/no208.6p93.2s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/of/of165.6p144.0s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/go/go170.9p112.2s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ix/ix167.8p106.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/oy/oy174.5p100.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/sa/sa164.7p110.8s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/il/il172.4p109.3s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/pu/pu172.1p113.0s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ro/ro171.0p115.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/xi/xi155.5p123.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ob/ob172.4p109.3s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ra/ra192.7p116.7s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uh/uh153.0p108.1s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/no/no165.6p144.0s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/fe/fe202.7p118.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/yi/yi141.3p135.4s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/oo/oo198.1p97.9s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ip/ip168.9p125.4s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/va/va148.8p128.8s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/od/od171.0p112.8s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/en/en184.8p115.1s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/hi/hi215.2p121.0s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/vo/vo172.1p113.0s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ar/ar189.6p102.1s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/eb/eb178.8p123.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/di/di215.2p121.0s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/wo/wo208.6p93.2s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ni/ni161.1p96.8s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/od/od174.9p113.0s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/do/do167.4p133.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/od/od165.7p116.2s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/be/be170.9p112.2s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ta/ta176.1p94.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/hu/hu164.7p110.8s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/zi/zi156.7p90.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/uu/uu178.8p123.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/yo/yo172.4p111.9s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/uf/uf171.3p111.7s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/we/we172.4p111.9s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ka/ka165.7p116.2s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ov/ov169.0p114.0s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/aa/aa167.8p106.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/xi/xi168.9p125.4s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ek/ek168.9p125.4s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/af/af153.0p108.1s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/pi/pi171.5p113.1s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ig/ig159.5p109.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ud/ud171.0p112.8s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/er/er170.9p112.2s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ra/ra183.0p130.4s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/to/to194.5p150.4s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ho/ho171.7p112.3s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/il/il171.3p111.7s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ti/ti155.5p123.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/we/we155.5p123.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ok/ok188.1p139.2s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/uf/uf165.7p116.2s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/af/af171.3p111.7s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/xu/xu178.8p123.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ad/ad174.9p113.0s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/se/se173.3p105.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/pi/pi167.8p106.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/on/on168.6p111.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/al/al194.5p150.4s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/it/it184.8p115.1s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/is/is173.3p105.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ik/ik153.0p108.1s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ub/ub155.5p123.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ag/ag176.1p94.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/el/el164.7p110.8s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ig/ig172.5p112.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ob/ob174.5p100.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ra/ra184.8p115.1s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uk/uk170.1p119.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ub/ub168.9p125.4s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ze/ze173.3p105.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ok/ok184.8p115.1s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/oo/oo168.6p111.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/aa/aa176.1p94.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/bi/bi208.6p93.2s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ga/ga208.6p93.2s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/up/up174.9p113.0s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/pi/pi188.1p139.2s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/xo/xo172.4p111.9s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/es/es215.2p121.0s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/iw/iw167.8p106.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ii/ii172.4p111.9s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ox/ox170.1p119.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/sa/sa194.5p150.4s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ik/ik174.5p110.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/as/as183.0p130.4s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ve/ve208.6p93.2s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ef/ef170.9p112.2s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/yi/yi170.0p109.7s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/hi/hi145.5p106.3s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/vo/vo173.5p115.0s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ez/ez156.7p90.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/wu/wu172.1p113.0s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/eg/eg165.7p116.2s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/up/up167.4p133.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ok/ok170.9p112.2s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ov/ov179.0p113.9s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ib/ib164.7p110.8s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/vo/vo174.5p100.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ah/ah208.6p93.2s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ay/ay189.6p102.1s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/na/na172.1p113.0s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ko/ko174.5p110.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/se/se171.7p112.3s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/iv/iv178.8p123.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/uv/uv189.6p102.1s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/il/il171.9p111.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/op/op172.4p111.9s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/vu/vu183.0p105.7s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/af/af159.5p109.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ef/ef183.0p105.7s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/fi/fi174.9p113.0s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/za/za172.4p109.3s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ap/ap208.6p93.2s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ed/ed192.7p116.7s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/fi/fi161.1p96.8s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/wu/wu172.4p111.9s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/zo/zo178.1p87.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ot/ot173.5p115.0s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ik/ik174.9p113.0s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ug/ug172.1p113.0s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/yo/yo188.1p139.2s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/yi/yi178.0p108.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ox/ox172.4p109.3s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ik/ik171.0p115.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/hu/hu215.2p121.0s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/if/if192.7p116.7s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/od/od170.1p119.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ku/ku170.9p112.2s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ki/ki188.1p139.2s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/up/up170.1p119.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/pa/pa159.5p109.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/oz/oz172.1p113.0s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/em/em180.4p80.1s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/zo/zo161.1p96.8s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ba/ba167.4p133.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ut/ut172.4p111.9s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/yu/yu178.1p87.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/he/he155.5p123.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/no/no167.8p106.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/er/er159.5p109.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ar/ar174.9p113.0s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ev/ev174.5p110.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ew/ew170.0p109.7s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/er/er171.9p111.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/bu/bu188.1p139.2s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/xa/xa171.0p115.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/on/on148.8p128.8s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/oy/oy163.4p157.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/le/le164.7p110.8s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/uh/uh174.5p110.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/uu/uu174.5p100.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/la/la178.0p108.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/aw/aw172.4p111.9s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ni/ni164.7p110.8s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/xe/xe159.5p109.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/mi/mi164.7p110.8s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/xa/xa171.5p113.1s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/pe/pe189.6p102.1s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/xa/xa175.7p118.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ey/ey173.5p115.0s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/xi/xi173.5p115.0s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/uf/uf164.7p110.8s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/if/if173.5p115.0s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/et/et175.7p118.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/pe/pe208.6p93.2s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ka/ka178.1p87.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/de/de178.0p108.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/aa/aa165.6p144.0s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ka/ka175.7p118.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/et/et148.8p128.8s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/us/us164.7p110.8s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/an/an164.7p110.8s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ti/ti178.8p123.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ay/ay172.5p112.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/as/as174.5p110.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/wi/wi188.1p139.2s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ay/ay208.6p93.2s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/or/or171.5p113.1s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ba/ba215.2p121.0s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/as/as188.1p139.2s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ef/ef171.0p115.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/uz/uz165.6p144.0s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/or/or171.0p112.8s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ab/ab168.9p125.4s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ru/ru148.8p128.8s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/hi/hi168.6p111.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ar/ar170.0p109.7s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ne/ne174.5p110.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/do/do159.5p109.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/em/em156.7p90.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/us/us171.5p113.1s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ah/ah192.7p116.7s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/aa/aa167.4p133.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ki/ki145.5p106.3s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/af/af194.5p150.4s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ab/ab179.0p113.9s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/be/be171.3p111.7s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ak/ak174.9p113.0s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ze/ze179.0p113.9s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ey/ey173.3p105.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/et/et188.1p139.2s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/lo/lo161.1p96.8s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/id/id172.5p112.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/uk/uk164.7p110.8s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/az/az167.8p106.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/mu/mu155.5p123.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/of/of172.1p113.0s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ib/ib188.1p139.2s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/iy/iy168.6p111.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/hi/hi184.8p115.1s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/gu/gu148.8p128.8s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/mi/mi215.2p121.0s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ho/ho173.3p105.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ra/ra215.2p121.0s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/du/du165.7p116.2s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/an/an164.9p102.1s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ro/ro178.8p123.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/id/id183.0p105.7s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/hi/hi156.7p90.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/xi/xi178.8p123.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/me/me155.5p123.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/vi/vi171.5p113.1s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/aa/aa161.1p96.8s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ay/ay161.1p96.8s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ip/ip170.9p112.2s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/xo/xo202.7p118.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ug/ug174.9p113.0s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/we/we170.9p112.2s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/el/el178.0p108.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ak/ak178.0p108.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/am/am159.5p109.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/uv/uv151.6p83.9s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/fo/fo171.5p113.1s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/en/en137.0p104.3s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/at/at188.1p139.2s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/an/an151.6p83.9s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/da/da173.3p105.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ha/ha145.5p106.3s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ut/ut148.8p128.8s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/iw/iw179.0p113.9s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/lu/lu161.1p96.8s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/du/du171.9p111.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/uv/uv169.0p114.0s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ba/ba171.7p112.3s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ap/ap141.3p135.4s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/va/va174.9p113.0s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/di/di165.6p144.0s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/it/it148.8p128.8s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ol/ol141.3p135.4s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ga/ga172.4p109.3s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ye/ye168.9p125.4s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/pe/pe173.3p105.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/we/we192.7p116.7s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/si/si171.5p113.1s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ki/ki161.1p119.4s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/mo/mo215.2p121.0s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ib/ib171.0p115.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ib/ib145.5p106.3s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ta/ta170.1p119.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ii/ii178.8p123.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/yu/yu198.1p97.9s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/oz/oz174.9p113.0s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/er/er153.0p108.1s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/et/et169.0p114.0s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ni/ni171.7p112.3s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/az/az173.3p105.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/xu/xu189.6p102.1s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/so/so172.5p112.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/hu/hu183.0p130.4s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/va/va141.3p135.4s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/mi/mi194.5p150.4s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ig/ig174.5p100.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/om/om178.1p87.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ol/ol161.1p119.4s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/el/el145.5p106.3s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/uv/uv192.7p116.7s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ul/ul202.7p118.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ee/ee151.6p83.9s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/er/er215.2p121.0s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ko/ko172.4p109.3s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ta/ta172.4p111.9s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ka/ka164.9p102.1s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ul/ul179.0p113.9s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/de/de170.0p109.7s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/yo/yo174.9p113.0s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ah/ah163.4p157.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/uk/uk170.9p112.2s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/is/is167.8p106.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ko/ko173.3p105.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/pi/pi178.1p87.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ru/ru153.0p108.1s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ap/ap172.4p109.3s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/li/li171.3p111.7s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/za/za148.8p128.8s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ox/ox165.6p144.0s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ku/ku215.2p121.0s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/om/om161.1p96.8s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/xe/xe178.0p108.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/oz/oz172.4p111.9s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/wu/wu178.0p108.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/yu/yu145.5p106.3s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/va/va178.0p108.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ok/ok167.8p106.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ho/ho172.4p111.9s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/hi/hi153.0p108.1s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/mu/mu183.0p130.4s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/iz/iz188.1p139.2s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/xe/xe155.5p123.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ma/ma188.1p139.2s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ye/ye194.5p150.4s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/er/er172.4p111.9s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ex/ex137.0p104.3s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/da/da167.4p133.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ke/ke171.5p113.1s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/vo/vo171.0p112.8s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/re/re170.1p119.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/yu/yu171.0p115.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/az/az172.1p113.0s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/iw/iw164.7p110.8s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ve/ve174.9p113.0s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/yi/yi153.0p108.1s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/uv/uv174.5p110.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ev/ev171.5p113.1s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/wo/wo165.6p144.0s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/du/du170.0p109.7s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/yi/yi171.7p112.3s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/am/am174.9p113.0s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/to/to172.4p109.3s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ho/ho178.8p123.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/um/um174.5p110.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/gu/gu183.0p130.4s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/pi/pi171.3p111.7s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/it/it164.7p110.8s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/un/un198.1p97.9s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/gi/gi178.8p123.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ba/ba183.0p130.4s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/xo/xo174.5p100.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ih/ih159.5p109.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/uv/uv188.1p139.2s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/sa/sa155.5p123.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/xe/xe165.6p144.0s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/de/de188.1p139.2s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ed/ed208.6p93.2s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/lu/lu175.7p118.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/gu/gu189.6p102.1s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ug/ug194.5p150.4s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ay/ay192.7p116.7s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ra/ra161.1p119.4s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/bu/bu178.0p108.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/il/il173.3p105.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/be/be170.0p109.7s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ra/ra170.9p112.2s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ti/ti137.0p104.3s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ru/ru215.2p121.0s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/sa/sa167.8p106.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/et/et168.9p125.4s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ab/ab172.5p112.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ox/ox148.8p128.8s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/tu/tu188.1p139.2s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ix/ix188.1p139.2s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ro/ro183.0p105.7s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/go/go148.8p128.8s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ir/ir183.0p130.4s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ot/ot171.5p113.1s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ev/ev170.9p112.2s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/fe/fe172.5p112.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/oo/oo169.0p114.0s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ol/ol172.5p112.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/fu/fu171.9p111.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/mi/mi151.6p83.9s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ok/ok173.5p115.0s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/la/la189.6p102.1s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ot/ot178.0p108.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/oy/oy198.1p97.9s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/vu/vu168.6p111.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/bi/bi156.7p90.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/mu/mu194.5p150.4s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/eb/eb172.1p113.0s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ah/ah170.0p109.7s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/er/er174.5p110.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/iw/iw161.1p96.8s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ik/ik171.9p111.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ey/ey174.5p110.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ot/ot172.5p112.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/go/go171.9p111.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/zo/zo188.1p139.2s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/wo/wo151.6p83.9s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ez/ez137.0p104.3s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/im/im141.3p135.4s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/aa/aa172.4p109.3s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/og/og145.5p106.3s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/up/up178.1p87.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ve/ve183.0p105.7s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/we/we145.5p106.3s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/up/up167.8p106.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/fe/fe171.5p113.1s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/va/va155.5p123.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ey/ey172.4p109.3s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/be/be180.4p80.1s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/up/up176.1p94.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ut/ut153.0p108.1s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/si/si183.0p105.7s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/he/he172.1p113.0s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/do/do215.2p121.0s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/wu/wu167.4p133.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/mu/mu174.5p110.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/yi/yi170.9p112.2s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/pu/pu183.0p130.4s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/fu/fu172.4p109.3s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/uw/uw169.0p114.0s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/mo/mo172.4p109.3s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/if/if171.0p115.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/id/id202.7p118.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/us/us178.0p108.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/le/le174.9p113.0s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/fo/fo169.0p114.0s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/uw/uw172.4p109.3s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/pe/pe180.4p80.1s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/av/av163.4p157.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/id/id174.5p110.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/uf/uf180.4p80.1s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ay/ay153.0p108.1s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ya/ya172.1p113.0s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/oh/oh202.7p118.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/xi/xi161.1p96.8s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ey/ey171.9p111.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/oo/oo168.9p125.4s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/wa/wa179.0p113.9s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/lu/lu202.7p118.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/yi/yi183.0p105.7s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ow/ow164.7p110.8s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ih/ih141.3p135.4s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/bo/bo164.7p110.8s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ol/ol148.8p128.8s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ak/ak189.6p102.1s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ul/ul141.3p135.4s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ar/ar192.7p116.7s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ov/ov170.9p112.2s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/aa/aa170.1p119.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ri/ri215.2p121.0s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ok/ok171.9p111.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/oo/oo161.1p119.4s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/if/if178.0p108.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ek/ek171.0p115.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/il/il170.9p112.2s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/xi/xi172.5p112.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ur/ur173.3p105.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ar/ar180.4p80.1s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/do/do172.1p113.0s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/re/re137.0p104.3s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/yo/yo170.9p112.2s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ez/ez178.1p87.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/hi/hi151.6p83.9s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ef/ef164.7p110.8s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ab/ab153.0p108.1s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/pu/pu171.7p112.3s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ri/ri169.0p114.0s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ip/ip183.0p130.4s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ba/ba202.7p118.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/zu/zu161.1p96.8s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ax/ax171.0p112.8s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ek/ek155.5p123.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/do/do178.0p108.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ad/ad170.1p119.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/le/le183.0p130.4s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/es/es171.3p111.7s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ud/ud171.9p111.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/te/te161.1p119.4s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/pu/pu171.0p115.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ak/ak164.9p102.1s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ah/ah174.9p113.0s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ez/ez183.0p130.4s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ep/ep171.5p113.1s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/og/og171.9p111.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/id/id164.9p102.1s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ze/ze188.1p139.2s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/zo/zo173.5p115.0s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/us/us176.1p94.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/og/og172.5p112.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ha/ha170.1p119.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/it/it161.1p119.4s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ma/ma168.6p111.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/uw/uw172.4p111.9s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/bu/bu202.7p118.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/al/al189.6p102.1s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/vi/vi180.4p80.1s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/bo/bo174.9p113.0s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/be/be156.7p90.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/bo/bo161.1p96.8s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ot/ot153.0p108.1s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/on/on179.0p113.9s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/up/up165.7p116.2s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/os/os215.2p121.0s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ti/ti178.1p87.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/le/le178.8p123.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ri/ri161.1p119.4s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/li/li184.8p115.1s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ov/ov174.5p100.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ya/ya156.7p90.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/xi/xi173.3p105.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/in/in170.1p119.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/yo/yo151.6p83.9s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/iz/iz198.1p97.9s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/le/le137.0p104.3s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/af/af163.4p157.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/id/id170.1p119.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ze/ze171.3p111.7s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ux/ux165.7p116.2s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/gi/gi192.7p116.7s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/pa/pa175.7p118.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/wu/wu176.1p94.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ux/ux148.8p128.8s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/va/va179.0p113.9s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/tu/tu164.7p110.8s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/it/it167.8p106.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ze/ze155.5p123.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/do/do171.3p111.7s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/da/da170.9p112.2s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/uh/uh174.5p100.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/xo/xo171.9p111.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ab/ab141.3p135.4s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ka/ka153.0p108.1s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ho/ho159.5p109.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/al/al170.0p109.7s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/yi/yi167.4p133.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/al/al169.0p114.0s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ol/ol178.1p87.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/fa/fa168.9p125.4s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ze/ze174.5p100.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ef/ef176.1p94.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/or/or178.1p87.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ba/ba164.9p102.1s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/in/in183.0p130.4s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/od/od215.2p121.0s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/sa/sa198.1p97.9s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ra/ra164.9p102.1s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/bi/bi174.9p113.0s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ko/ko192.7p116.7s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/is/is194.5p150.4s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/vu/vu153.0p108.1s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ud/ud168.9p125.4s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ov/ov165.6p144.0s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/de/de137.0p104.3s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/wo/wo171.9p111.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/eb/eb161.1p119.4s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/fi/fi179.0p113.9s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ar/ar151.6p83.9s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/oy/oy156.7p90.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/uy/uy171.7p112.3s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/wo/wo171.5p113.1s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/im/im172.1p113.0s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/us/us170.1p119.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ux/ux183.0p105.7s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ag/ag172.5p112.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/re/re183.0p105.7s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/iy/iy168.9p125.4s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ot/ot173.3p105.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/du/du171.0p112.8s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/as/as159.5p109.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ge/ge167.4p133.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ad/ad156.7p90.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ee/ee175.7p118.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/uw/uw194.5p150.4s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ik/ik173.5p115.0s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/oz/oz141.3p135.4s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ot/ot168.6p111.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/re/re167.4p133.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ez/ez171.7p112.3s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/xu/xu172.4p109.3s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/pe/pe171.0p112.8s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ga/ga171.0p112.8s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ul/ul168.6p111.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ba/ba167.8p106.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/xi/xi176.1p94.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ik/ik172.4p109.3s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/zu/zu172.4p111.9s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/en/en164.9p102.1s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/nu/nu169.0p114.0s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/am/am164.9p102.1s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ul/ul171.7p112.3s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/we/we178.1p87.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/wi/wi148.8p128.8s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/uh/uh148.8p128.8s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/uk/uk165.7p116.2s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/pa/pa180.4p80.1s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/aw/aw170.0p109.7s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/pa/pa161.1p119.4s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/pi/pi155.5p123.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ma/ma172.5p112.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ul/ul153.0p108.1s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/no/no145.5p106.3s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ik/ik171.0p112.8s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ab/ab173.5p115.0s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ii/ii171.3p111.7s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/yo/yo198.1p97.9s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/gi/gi137.0p104.3s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ag/ag175.7p118.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ih/ih198.1p97.9s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/on/on137.0p104.3s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/av/av172.4p111.9s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/eg/eg161.1p119.4s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ku/ku151.6p83.9s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/hi/hi176.1p94.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ta/ta174.9p113.0s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/fi/fi183.0p130.4s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ee/ee183.0p130.4s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/di/di167.4p133.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/bu/bu198.1p97.9s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/it/it167.4p133.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/uy/uy173.3p105.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/xi/xi174.5p110.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/wi/wi164.9p102.1s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ki/ki164.7p110.8s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/uy/uy141.3p135.4s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/aa/aa164.7p110.8s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/if/if174.5p110.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/yi/yi165.6p144.0s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/po/po171.9p111.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/no/no180.4p80.1s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/we/we178.0p108.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/at/at171.0p115.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/iy/iy153.0p108.1s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/av/av188.1p139.2s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/op/op183.0p130.4s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/me/me178.8p123.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/mi/mi155.5p123.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ki/ki183.0p130.4s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/vo/vo184.8p115.1s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ru/ru164.9p102.1s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/uz/uz173.5p115.0s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ka/ka171.3p111.7s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ul/ul174.5p100.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/or/or164.7p110.8s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ah/ah172.1p113.0s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/vo/vo208.6p93.2s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/as/as164.9p102.1s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/uk/uk141.3p135.4s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ep/ep161.1p96.8s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ka/ka183.0p105.7s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/la/la172.4p111.9s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/it/it155.5p123.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/aw/aw170.1p119.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/wa/wa170.0p109.7s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ur/ur167.8p106.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ve/ve170.0p109.7s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/va/va171.9p111.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ye/ye183.0p105.7s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/od/od141.3p135.4s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/he/he176.1p94.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/da/da171.0p112.8s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/bu/bu161.1p96.8s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/up/up168.9p125.4s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ze/ze164.9p102.1s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/zu/zu184.8p115.1s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/bi/bi173.3p105.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/so/so180.4p80.1s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/oz/oz168.6p111.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/id/id176.1p94.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/la/la174.5p110.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ik/ik179.0p113.9s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/tu/tu151.6p83.9s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/fi/fi145.5p106.3s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ih/ih179.0p113.9s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/za/za178.8p123.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/oy/oy184.8p115.1s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/af/af168.6p111.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/yo/yo167.4p133.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/go/go188.1p139.2s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/if/if170.9p112.2s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/at/at183.0p105.7s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/oo/oo183.0p130.4s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ix/ix202.7p118.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/zi/zi189.6p102.1s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/on/on215.2p121.0s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ey/ey183.0p105.7s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/lo/lo183.0p130.4s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/up/up171.5p113.1s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/we/we171.0p115.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/om/om183.0p130.4s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ho/ho170.9p112.2s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ow/ow171.0p115.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/pe/pe175.7p118.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ad/ad179.0p113.9s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ox/ox202.7p118.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/bi/bi170.0p109.7s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/vu/vu172.5p112.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/me/me172.4p109.3s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ih/ih153.0p108.1s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/iw/iw148.8p128.8s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/at/at172.1p113.0s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/hu/hu172.4p109.3s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/so/so168.9p125.4s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/xu/xu161.1p119.4s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ve/ve155.5p123.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/at/at194.5p150.4s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/bo/bo171.3p111.7s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ef/ef167.4p133.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ek/ek137.0p104.3s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/me/me184.8p115.1s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/um/um171.5p113.1s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/vo/vo161.1p96.8s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ag/ag215.2p121.0s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/nu/nu194.5p150.4s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ru/ru171.0p112.8s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ok/ok172.1p113.0s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/av/av153.0p108.1s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/aa/aa141.3p135.4s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/va/va151.6p83.9s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ek/ek167.8p106.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ag/ag159.5p109.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/il/il198.1p97.9s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/oz/oz170.1p119.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ot/ot171.3p111.7s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ef/ef168.9p125.4s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/me/me164.9p102.1s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/iy/iy164.9p102.1s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ek/ek161.1p119.4s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/gi/gi161.1p96.8s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ox/ox170.0p109.7s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/so/so153.0p108.1s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/iy/iy174.5p110.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ga/ga148.8p128.8s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ip/ip169.0p114.0s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/so/so167.4p133.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/zu/zu155.5p123.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ne/ne148.8p128.8s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ep/ep171.3p111.7s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ya/ya171.9p111.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ri/ri173.5p115.0s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/gi/gi141.3p135.4s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/yi/yi171.9p111.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ep/ep178.1p87.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/sa/sa179.0p113.9s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/nu/nu198.1p97.9s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ta/ta172.1p113.0s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/vo/vo172.4p111.9s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/al/al165.6p144.0s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/up/up178.8p123.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/uu/uu167.8p106.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/do/do208.6p93.2s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/se/se183.0p105.7s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/me/me172.1p113.0s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ge/ge215.2p121.0s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ee/ee198.1p97.9s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/va/va208.6p93.2s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/wi/wi172.1p113.0s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/an/an179.0p113.9s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/di/di173.5p115.0s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/si/si179.0p113.9s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/iy/iy155.5p123.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/wu/wu173.3p105.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ve/ve164.9p102.1s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ut/ut164.9p102.1s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/am/am192.7p116.7s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ga/ga171.5p113.1s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/wo/wo192.7p116.7s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/zu/zu178.8p123.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/de/de174.9p113.0s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ow/ow170.9p112.2s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/lo/lo169.0p114.0s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/it/it188.1p139.2s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/iy/iy183.0p105.7s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ol/ol169.0p114.0s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ho/ho171.0p112.8s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ee/ee170.9p112.2s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ew/ew167.8p106.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/en/en169.0p114.0s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/iv/iv202.7p118.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/it/it159.5p109.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/wi/wi183.0p105.7s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/so/so170.0p109.7s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/yu/yu170.9p112.2s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/av/av145.5p106.3s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ox/ox141.3p135.4s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/no/no188.1p139.2s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/at/at192.7p116.7s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/iw/iw174.9p113.0s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/zi/zi175.7p118.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ov/ov155.5p123.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/lu/lu178.0p108.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ob/ob164.9p102.1s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/oy/oy168.6p111.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/us/us159.5p109.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ge/ge148.8p128.8s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/zu/zu165.7p116.2s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/et/et194.5p150.4s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ex/ex172.1p113.0s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ob/ob159.5p109.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/re/re175.7p118.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ki/ki178.8p123.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/go/go172.1p113.0s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ed/ed164.9p102.1s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/mi/mi174.5p100.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/al/al179.0p113.9s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/zu/zu148.8p128.8s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/uu/uu183.0p130.4s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/or/or153.0p108.1s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ul/ul167.8p106.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/no/no198.1p97.9s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/uy/uy178.1p87.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/iw/iw173.5p115.0s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/zi/zi178.8p123.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ba/ba174.5p110.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/or/or165.6p144.0s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ur/ur192.7p116.7s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/os/os137.0p104.3s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/da/da173.5p115.0s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/sa/sa168.6p111.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/uu/uu153.0p108.1s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ka/ka176.1p94.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/go/go171.5p113.1s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/hu/hu189.6p102.1s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ta/ta183.0p105.7s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ii/ii189.6p102.1s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ni/ni208.6p93.2s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/me/me156.7p90.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ox/ox170.9p112.2s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/em/em175.7p118.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/yi/yi176.1p94.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/al/al156.7p90.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ta/ta159.5p109.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ge/ge159.5p109.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/me/me170.0p109.7s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/un/un164.7p110.8s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ex/ex169.0p114.0s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/xo/xo184.8p115.1s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/la/la208.6p93.2s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/oz/oz179.0p113.9s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/pa/pa168.9p125.4s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ez/ez178.0p108.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ep/ep208.6p93.2s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/go/go167.8p106.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/li/li171.5p113.1s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ix/ix174.9p113.0s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ov/ov159.5p109.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ak/ak183.0p130.4s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/iy/iy170.0p109.7s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/fa/fa155.5p123.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/uz/uz189.6p102.1s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/aw/aw171.0p115.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ee/ee167.4p133.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ko/ko145.5p106.3s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ze/ze141.3p135.4s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/at/at175.7p118.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/eb/eb170.0p109.7s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/yo/yo179.0p113.9s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/gu/gu151.6p83.9s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/uu/uu165.6p144.0s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/up/up178.0p108.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ir/ir180.4p80.1s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/bi/bi178.1p87.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ba/ba194.5p150.4s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ku/ku172.5p112.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/go/go202.7p118.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ay/ay137.0p104.3s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/di/di178.8p123.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/re/re151.6p83.9s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/go/go151.6p83.9s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/iy/iy180.4p80.1s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/bi/bi176.1p94.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ow/ow180.4p80.1s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/se/se155.5p123.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/en/en145.5p106.3s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ru/ru198.1p97.9s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/lu/lu170.9p112.2s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/yu/yu170.0p109.7s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ru/ru171.0p115.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/xo/xo168.9p125.4s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ha/ha174.5p100.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ut/ut137.0p104.3s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/xa/xa155.5p123.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ii/ii173.5p115.0s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ne/ne171.7p112.3s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/bi/bi174.5p110.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/el/el188.1p139.2s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ub/ub208.6p93.2s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/fo/fo167.8p106.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/xo/xo188.1p139.2s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/as/as170.9p112.2s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/de/de169.0p114.0s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ul/ul174.9p113.0s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/me/me215.2p121.0s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/od/od184.8p115.1s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/oy/oy215.2p121.0s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/on/on174.5p100.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/fo/fo188.1p139.2s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ih/ih189.6p102.1s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/im/im174.5p100.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/uw/uw172.5p112.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/am/am167.4p133.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/di/di171.5p113.1s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/fi/fi171.3p111.7s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ok/ok153.0p108.1s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/em/em171.3p111.7s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ak/ak174.5p110.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/us/us156.7p90.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/gu/gu171.0p112.8s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/da/da192.7p116.7s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/op/op164.9p102.1s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ev/ev168.9p125.4s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ev/ev208.6p93.2s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/da/da170.0p109.7s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/iy/iy215.2p121.0s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ep/ep183.0p130.4s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ri/ri168.6p111.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ow/ow165.6p144.0s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/em/em168.9p125.4s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ri/ri148.8p128.8s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/uf/uf141.3p135.4s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/an/an172.4p111.9s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/gu/gu172.1p113.0s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/bi/bi170.1p119.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ek/ek145.5p106.3s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/oz/oz188.1p139.2s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/fu/fu178.8p123.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/do/do184.8p115.1s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ko/ko183.0p130.4s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/de/de168.6p111.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ka/ka167.4p133.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/li/li164.9p102.1s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/uz/uz171.7p112.3s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/oh/oh183.0p105.7s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/fa/fa208.6p93.2s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/da/da165.6p144.0s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/im/im170.1p119.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ux/ux172.5p112.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/fu/fu180.4p80.1s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ip/ip184.8p115.1s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ar/ar174.5p110.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/vu/vu215.2p121.0s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ee/ee171.7p112.3s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ag/ag189.6p102.1s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ip/ip165.6p144.0s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/va/va145.5p106.3s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/za/za161.1p119.4s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ux/ux141.3p135.4s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/vu/vu165.7p116.2s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ew/ew141.3p135.4s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/da/da183.0p130.4s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ra/ra178.1p87.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uu/uu178.0p108.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ku/ku164.7p110.8s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/po/po161.1p96.8s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/xi/xi180.4p80.1s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/im/im189.6p102.1s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ul/ul183.0p105.7s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ix/ix155.5p123.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/of/of178.1p87.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ke/ke153.0p108.1s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ib/ib137.0p104.3s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/to/to170.9p112.2s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/or/or156.7p90.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ur/ur174.5p110.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/pa/pa184.8p115.1s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ha/ha189.6p102.1s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ak/ak168.9p125.4s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/eb/eb163.4p157.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/he/he173.3p105.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/fi/fi175.7p118.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/de/de194.5p150.4s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ef/ef183.0p130.4s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ib/ib171.5p113.1s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ah/ah198.1p97.9s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/oy/oy180.4p80.1s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/it/it171.9p111.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ra/ra169.0p114.0s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ha/ha178.1p87.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ka/ka171.7p112.3s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/op/op173.5p115.0s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/es/es170.1p119.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ek/ek171.3p111.7s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/vu/vu167.8p106.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ni/ni168.6p111.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ez/ez189.6p102.1s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ge/ge175.7p118.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ib/ib192.7p116.7s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ep/ep170.0p109.7s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ve/ve194.5p150.4s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ez/ez208.6p93.2s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/es/es172.4p109.3s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ra/ra163.4p157.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uk/uk165.6p144.0s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/yu/yu169.0p114.0s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/eh/eh161.1p96.8s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ug/ug172.4p109.3s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/uy/uy183.0p130.4s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ey/ey172.1p113.0s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ox/ox188.1p139.2s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/bo/bo145.5p106.3s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/xu/xu155.5p123.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/er/er167.4p133.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/zu/zu161.1p119.4s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/eg/eg159.5p109.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/aa/aa198.1p97.9s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ew/ew180.4p80.1s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/lo/lo178.0p108.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ot/ot171.0p115.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/os/os170.0p109.7s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/as/as167.8p106.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/gu/gu183.0p105.7s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/as/as178.8p123.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ix/ix171.9p111.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/si/si178.1p87.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/od/od172.1p113.0s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/vi/vi172.5p112.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ig/ig172.4p111.9s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/wu/wu171.0p115.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ud/ud141.3p135.4s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ne/ne172.4p111.9s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/fu/fu163.4p157.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/uy/uy171.0p115.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/uh/uh167.8p106.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/us/us174.5p110.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ab/ab171.9p111.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/si/si148.8p128.8s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ub/ub167.4p133.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/of/of170.0p109.7s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ud/ud172.5p112.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/si/si168.9p125.4s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/in/in174.9p113.0s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ki/ki176.1p94.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/go/go167.4p133.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/bu/bu172.5p112.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ye/ye183.0p130.4s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/yu/yu174.5p100.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/en/en159.5p109.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ki/ki151.6p83.9s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/wo/wo174.9p113.0s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/bi/bi179.0p113.9s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/pa/pa167.8p106.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/oh/oh172.4p111.9s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/lu/lu176.1p94.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ox/ox173.3p105.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/er/er180.4p80.1s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/di/di198.1p97.9s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/up/up159.5p109.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/uy/uy173.5p115.0s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/uu/uu184.8p115.1s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/eg/eg170.0p109.7s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/du/du170.1p119.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/wu/wu171.7p112.3s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/po/po208.6p93.2s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ed/ed172.1p113.0s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/xo/xo198.1p97.9s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/xo/xo171.0p115.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/fu/fu167.8p106.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ee/ee172.1p113.0s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/al/al174.9p113.0s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ye/ye170.0p109.7s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ba/ba188.1p139.2s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/im/im164.9p102.1s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/fe/fe174.5p110.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/zu/zu215.2p121.0s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/fu/fu159.5p109.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ba/ba171.3p111.7s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/za/za153.0p108.1s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/vo/vo183.0p130.4s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/iy/iy172.1p113.0s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/vu/vu171.0p115.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/up/up170.9p112.2s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ef/ef188.1p139.2s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/bu/bu148.8p128.8s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/et/et171.0p112.8s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/tu/tu171.3p111.7s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ah/ah171.9p111.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/el/el172.1p113.0s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/op/op156.7p90.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/az/az171.7p112.3s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/er/er174.9p113.0s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/us/us167.8p106.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/od/od175.7p118.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ka/ka171.9p111.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ik/ik178.0p108.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/fi/fi178.8p123.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/mi/mi171.0p115.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ip/ip167.4p133.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/hi/hi194.5p150.4s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/uy/uy168.6p111.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ba/ba171.0p112.8s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/hu/hu208.6p93.2s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/bu/bu179.0p113.9s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ye/ye180.4p80.1s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uv/uv165.6p144.0s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ub/ub164.9p102.1s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/vo/vo215.2p121.0s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/xo/xo170.9p112.2s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ze/ze137.0p104.3s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ib/ib164.9p102.1s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ut/ut184.8p115.1s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/fi/fi170.0p109.7s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/uk/uk171.0p112.8s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/os/os161.1p119.4s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/sa/sa171.7p112.3s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ip/ip164.7p110.8s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/mo/mo170.1p119.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/aw/aw184.8p115.1s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ex/ex161.1p96.8s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/uw/uw161.1p96.8s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/om/om174.5p110.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/et/et174.9p113.0s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ra/ra137.0p104.3s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/er/er164.9p102.1s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/su/su174.5p110.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/lu/lu168.9p125.4s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/gi/gi167.4p133.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ve/ve165.7p116.2s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/oh/oh170.1p119.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/du/du174.9p113.0s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ex/ex202.7p118.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/oz/oz155.5p123.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/un/un174.5p100.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/eg/eg172.5p112.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/si/si180.4p80.1s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/of/of172.4p109.3s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ee/ee168.6p111.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ru/ru165.7p116.2s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/we/we180.4p80.1s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/va/va168.6p111.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ir/ir171.9p111.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/aa/aa173.5p115.0s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ir/ir171.3p111.7s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ox/ox189.6p102.1s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/gu/gu161.1p96.8s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/no/no168.9p125.4s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ig/ig168.9p125.4s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ii/ii168.6p111.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/do/do161.1p96.8s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ye/ye153.0p108.1s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uw/uw156.7p90.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/id/id189.6p102.1s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ru/ru173.5p115.0s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/af/af170.0p109.7s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/uu/uu159.5p109.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/op/op189.6p102.1s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ek/ek198.1p97.9s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/up/up184.8p115.1s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/do/do188.1p139.2s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/fa/fa176.1p94.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/em/em141.3p135.4s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/oo/oo170.1p119.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ee/ee163.4p157.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ul/ul184.8p115.1s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/oh/oh184.8p115.1s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ud/ud170.1p119.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/xi/xi215.2p121.0s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/re/re173.5p115.0s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ge/ge178.1p87.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/eh/eh178.8p123.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/uk/uk172.4p109.3s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/uf/uf179.0p113.9s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/am/am183.0p105.7s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/di/di202.7p118.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/hu/hu178.1p87.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/we/we172.5p112.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ah/ah180.4p80.1s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/po/po183.0p105.7s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/it/it172.5p112.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/oh/oh173.5p115.0s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/bi/bi178.8p123.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/go/go174.5p100.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ay/ay178.0p108.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/la/la137.0p104.3s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ah/ah171.0p115.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ak/ak172.4p111.9s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/od/od178.1p87.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/hu/hu174.5p100.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/fu/fu171.0p115.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ho/ho215.2p121.0s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/il/il163.4p157.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ka/ka170.9p112.2s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ut/ut165.6p144.0s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/id/id156.7p90.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ig/ig178.1p87.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ax/ax156.7p90.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/uw/uw178.0p108.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ge/ge165.7p116.2s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ek/ek171.0p112.8s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/za/za170.9p112.2s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/et/et173.5p115.0s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ha/ha170.0p109.7s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ho/ho165.6p144.0s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/em/em171.0p112.8s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/as/as148.8p128.8s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/so/so155.5p123.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/od/od172.4p109.3s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/uu/uu145.5p106.3s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ow/ow161.1p96.8s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/eh/eh170.0p109.7s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/fa/fa167.4p133.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/it/it170.1p119.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ud/ud171.5p113.1s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ek/ek208.6p93.2s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/pi/pi183.0p105.7s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ad/ad161.1p119.4s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ay/ay171.7p112.3s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ir/ir148.8p128.8s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/be/be179.0p113.9s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/tu/tu171.0p115.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/us/us174.5p100.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/tu/tu167.8p106.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ap/ap189.6p102.1s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ti/ti169.0p114.0s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/iv/iv173.5p115.0s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ol/ol167.8p106.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/xi/xi198.1p97.9s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/de/de170.1p119.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ri/ri159.5p109.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ux/ux198.1p97.9s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ux/ux161.1p119.4s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/on/on167.4p133.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/en/en148.8p128.8s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/na/na169.0p114.0s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ip/ip167.8p106.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/wi/wi176.1p94.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/yi/yi192.7p116.7s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ir/ir171.7p112.3s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/va/va165.7p116.2s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/un/un172.5p112.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/xu/xu172.5p112.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ux/ux171.5p113.1s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ol/ol208.6p93.2s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/fu/fu208.6p93.2s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/to/to141.3p135.4s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ew/ew164.7p110.8s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ad/ad167.4p133.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/et/et161.1p96.8s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/mo/mo198.1p97.9s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/vo/vo165.7p116.2s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/le/le215.2p121.0s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/az/az167.4p133.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/di/di194.5p150.4s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ez/ez184.8p115.1s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/zo/zo171.3p111.7s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/gi/gi202.7p118.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/vu/vu141.3p135.4s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/mi/mi172.1p113.0s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/po/po171.0p112.8s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ep/ep189.6p102.1s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/al/al172.1p113.0s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/af/af173.5p115.0s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ri/ri179.0p113.9s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/el/el153.0p108.1s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ve/ve180.4p80.1s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/id/id167.4p133.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/av/av161.1p119.4s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/es/es202.7p118.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/it/it164.9p102.1s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ov/ov165.7p116.2s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/si/si168.6p111.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/mi/mi170.0p109.7s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/te/te188.1p139.2s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/di/di155.5p123.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/em/em167.8p106.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/uy/uy194.5p150.4s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/om/om178.8p123.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/uf/uf168.9p125.4s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/bi/bi167.4p133.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/zo/zo172.1p113.0s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/eb/eb172.4p111.9s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/we/we215.2p121.0s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/da/da171.5p113.1s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/la/la169.0p114.0s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ep/ep163.4p157.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ro/ro189.6p102.1s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/fe/fe184.8p115.1s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ik/ik159.5p109.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/xo/xo176.1p94.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/so/so167.8p106.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/yu/yu173.5p115.0s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ix/ix161.1p119.4s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/oh/oh155.5p123.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/om/om170.1p119.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/xo/xo178.1p87.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ay/ay180.4p80.1s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/tu/tu172.4p109.3s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ga/ga153.0p108.1s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ed/ed175.7p118.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/do/do161.1p119.4s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/vo/vo164.9p102.1s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/iw/iw198.1p97.9s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ek/ek165.7p116.2s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/wa/wa170.1p119.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ub/ub172.1p113.0s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/uu/uu174.5p110.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/us/us178.8p123.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ni/ni183.0p105.7s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ri/ri178.0p108.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/go/go178.8p123.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/da/da171.9p111.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/mi/mi179.0p113.9s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/do/do173.5p115.0s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/he/he137.0p104.3s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/eh/eh168.6p111.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ox/ox178.8p123.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/az/az176.1p94.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/na/na178.8p123.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ki/ki192.7p116.7s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ka/ka161.1p119.4s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/af/af215.2p121.0s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/vo/vo178.0p108.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ha/ha183.0p130.4s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/if/if151.6p83.9s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/su/su172.1p113.0s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/du/du155.5p123.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ut/ut171.0p115.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/sa/sa151.6p83.9s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/el/el174.5p100.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ok/ok161.1p96.8s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/me/me194.5p150.4s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ew/ew173.5p115.0s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/on/on156.7p90.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/su/su188.1p139.2s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ay/ay172.4p111.9s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/yo/yo168.9p125.4s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ef/ef148.8p128.8s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ko/ko172.4p111.9s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ge/ge153.0p108.1s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/no/no164.9p102.1s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/te/te173.3p105.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/do/do198.1p97.9s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ex/ex192.7p116.7s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/at/at184.8p115.1s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/vo/vo202.7p118.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ix/ix178.8p123.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ro/ro170.1p119.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ok/ok202.7p118.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/he/he175.7p118.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/in/in171.5p113.1s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/vi/vi188.1p139.2s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/og/og172.4p109.3s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ii/ii215.2p121.0s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ig/ig189.6p102.1s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/oh/oh174.5p110.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/so/so198.1p97.9s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/wu/wu172.5p112.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/az/az194.5p150.4s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/xi/xi172.1p113.0s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/um/um174.5p100.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/vu/vu167.4p133.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/lu/lu178.1p87.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ip/ip215.2p121.0s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ay/ay174.9p113.0s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ed/ed170.0p109.7s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/pa/pa183.0p105.7s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ax/ax184.8p115.1s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ke/ke156.7p90.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ud/ud163.4p157.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/eg/eg183.0p105.7s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/oy/oy170.9p112.2s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ul/ul173.5p115.0s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ey/ey165.6p144.0s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/po/po148.8p128.8s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/zu/zu171.3p111.7s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ye/ye171.5p113.1s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/he/he168.9p125.4s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/zi/zi171.3p111.7s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/iz/iz189.6p102.1s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/fa/fa141.3p135.4s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ed/ed184.8p115.1s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ye/ye176.1p94.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/un/un192.7p116.7s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/eb/eb175.7p118.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/mi/mi164.9p102.1s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ah/ah183.0p105.7s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ev/ev170.1p119.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/pe/pe167.4p133.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ye/ye171.7p112.3s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ga/ga172.1p113.0s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/te/te175.7p118.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/uf/uf168.6p111.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/wa/wa178.0p108.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/uh/uh169.0p114.0s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/en/en172.4p111.9s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/is/is180.4p80.1s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/na/na167.8p106.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/at/at161.1p96.8s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ke/ke175.7p118.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/xu/xu170.0p109.7s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/wa/wa189.6p102.1s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/on/on174.5p110.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ee/ee179.0p113.9s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/az/az170.1p119.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/na/na175.7p118.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ow/ow189.6p102.1s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ih/ih171.3p111.7s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ze/ze172.1p113.0s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/vu/vu176.1p94.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/aw/aw137.0p104.3s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/oz/oz178.8p123.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/yo/yo178.0p108.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ra/ra202.7p118.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ku/ku167.8p106.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/hi/hi167.4p133.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/uw/uw174.9p113.0s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/el/el178.8p123.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ek/ek176.1p94.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ee/ee171.5p113.1s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/va/va172.4p111.9s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/od/od161.1p96.8s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/vi/vi161.1p96.8s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/og/og148.8p128.8s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/as/as151.6p83.9s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/em/em172.5p112.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/me/me174.9p113.0s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/sa/sa178.8p123.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ri/ri137.0p104.3s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ma/ma183.0p105.7s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/lo/lo171.3p111.7s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ik/ik137.0p104.3s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/zu/zu175.7p118.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ko/ko170.1p119.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/be/be155.5p123.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/fi/fi174.5p110.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/tu/tu145.5p106.3s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ii/ii184.8p115.1s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/if/if179.0p113.9s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ik/ik176.1p94.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/om/om171.7p112.3s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/id/id171.0p112.8s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ne/ne164.7p110.8s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/er/er208.6p93.2s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/an/an174.5p100.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/mi/mi202.7p118.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ek/ek170.1p119.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/at/at151.6p83.9s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ix/ix153.0p108.1s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/yo/yo145.5p106.3s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/oz/oz180.4p80.1s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/uk/uk173.5p115.0s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/lu/lu167.8p106.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/be/be188.1p139.2s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/if/if165.6p144.0s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/aa/aa208.6p93.2s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/da/da174.9p113.0s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/xa/xa148.8p128.8s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/bu/bu167.8p106.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/um/um183.0p105.7s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/mu/mu202.7p118.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ti/ti168.9p125.4s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ag/ag164.9p102.1s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/az/az178.8p123.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/it/it137.0p104.3s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/yu/yu184.8p115.1s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/oz/oz171.3p111.7s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/fe/fe167.8p106.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/uy/uy155.5p123.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/sa/sa145.5p106.3s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/le/le180.4p80.1s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/su/su167.8p106.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ig/ig171.5p113.1s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/iv/iv153.0p108.1s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/mu/mu172.4p111.9s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ma/ma178.1p87.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/xo/xo145.5p106.3s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ix/ix183.0p130.4s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/oz/oz171.7p112.3s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/er/er172.1p113.0s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/de/de178.1p87.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ud/ud165.6p144.0s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/eb/eb189.6p102.1s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ga/ga171.3p111.7s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/bo/bo155.5p123.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/uh/uh180.4p80.1s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/it/it171.5p113.1s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/wa/wa163.4p157.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/su/su178.0p108.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/so/so172.4p111.9s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ax/ax164.7p110.8s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/lu/lu159.5p109.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/la/la194.5p150.4s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/pe/pe183.0p130.4s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/no/no172.4p109.3s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ok/ok174.5p100.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/as/as172.4p111.9s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/we/we173.5p115.0s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/an/an192.7p116.7s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/or/or174.9p113.0s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ey/ey188.1p139.2s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ut/ut215.2p121.0s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ta/ta180.4p80.1s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/av/av178.8p123.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/od/od178.8p123.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/hi/hi178.8p123.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ag/ag148.8p128.8s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/yu/yu137.0p104.3s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/wi/wi174.9p113.0s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/us/us171.7p112.3s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/du/du151.6p83.9s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/xe/xe170.1p119.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ro/ro172.4p111.9s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/xo/xo172.4p109.3s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/pi/pi163.4p157.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/si/si161.1p96.8s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ig/ig171.9p111.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/uy/uy163.4p157.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/us/us145.5p106.3s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/gu/gu173.3p105.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ep/ep164.7p110.8s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/os/os172.1p113.0s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/uk/uk161.1p119.4s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/fe/fe137.0p104.3s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ar/ar171.5p113.1s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/fo/fo171.0p112.8s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/of/of171.5p113.1s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/su/su173.5p115.0s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ur/ur165.7p116.2s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ol/ol215.2p121.0s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ak/ak161.1p96.8s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/di/di189.6p102.1s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/et/et183.0p105.7s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ig/ig165.6p144.0s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/om/om171.3p111.7s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ep/ep167.4p133.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/eb/eb153.0p108.1s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/fo/fo172.5p112.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ih/ih183.0p130.4s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ux/ux161.1p96.8s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ha/ha168.6p111.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ek/ek175.7p118.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ed/ed167.8p106.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ko/ko170.0p109.7s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ya/ya171.3p111.7s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/yo/yo170.1p119.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/in/in180.4p80.1s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ur/ur178.8p123.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ad/ad173.3p105.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ah/ah148.8p128.8s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/yu/yu178.8p123.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/hu/hu168.6p111.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ab/ab174.9p113.0s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ih/ih161.1p119.4s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/aa/aa148.8p128.8s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/id/id178.0p108.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/de/de171.3p111.7s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ey/ey148.8p128.8s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ay/ay164.9p102.1s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ku/ku156.7p90.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/it/it183.0p105.7s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/oz/oz171.0p115.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ob/ob215.2p121.0s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ri/ri167.8p106.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/mo/mo171.9p111.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/el/el137.0p104.3s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/zi/zi164.7p110.8s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ha/ha178.0p108.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ip/ip172.1p113.0s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ru/ru170.0p109.7s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/sa/sa172.5p112.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/go/go159.5p109.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/go/go178.1p87.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/be/be173.3p105.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/id/id170.0p109.7s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/zi/zi192.7p116.7s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/mi/mi159.5p109.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/wo/wo179.0p113.9s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ra/ra176.1p94.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/di/di161.1p119.4s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/wa/wa151.6p83.9s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ak/ak151.6p83.9s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ik/ik170.1p119.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/xa/xa208.6p93.2s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ex/ex208.6p93.2s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/zi/zi145.5p106.3s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ga/ga167.4p133.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/uv/uv155.5p123.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ha/ha156.7p90.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ru/ru172.4p111.9s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/zu/zu174.5p100.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/nu/nu164.7p110.8s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ka/ka171.0p112.8s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ip/ip178.8p123.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ot/ot183.0p130.4s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/te/te167.8p106.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/mo/mo164.9p102.1s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/hu/hu180.4p80.1s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ub/ub189.6p102.1s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ux/ux178.8p123.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/al/al178.0p108.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/mu/mu178.0p108.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/li/li183.0p105.7s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ob/ob163.4p157.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/or/or164.9p102.1s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ki/ki164.9p102.1s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/eh/eh179.0p113.9s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/us/us137.0p104.3s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/na/na183.0p130.4s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/em/em174.9p113.0s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/av/av171.5p113.1s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/mu/mu173.3p105.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ru/ru161.1p96.8s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ti/ti168.6p111.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/aw/aw192.7p116.7s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/iz/iz172.4p111.9s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/an/an183.0p105.7s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/uf/uf171.7p112.3s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/av/av168.9p125.4s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/yu/yu161.1p96.8s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/lu/lu198.1p97.9s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/yo/yo192.7p116.7s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ew/ew170.9p112.2s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/en/en167.4p133.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ku/ku175.7p118.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ma/ma161.1p96.8s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/xe/xe171.9p111.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/le/le172.4p111.9s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/er/er167.8p106.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/iw/iw165.6p144.0s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/al/al145.5p106.3s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/wi/wi165.7p116.2s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/at/at156.7p90.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/im/im145.5p106.3s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ul/ul198.1p97.9s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/fo/fo156.7p90.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/fo/fo171.7p112.3s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/li/li202.7p118.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ak/ak164.7p110.8s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/so/so156.7p90.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/hu/hu171.9p111.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/us/us189.6p102.1s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/vo/vo194.5p150.4s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/iz/iz184.8p115.1s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ap/ap148.8p128.8s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/oy/oy171.9p111.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ki/ki165.7p116.2s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/lu/lu141.3p135.4s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/iv/iv164.9p102.1s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/lo/lo174.5p110.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/bi/bi161.1p119.4s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ep/ep168.9p125.4s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ix/ix171.7p112.3s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ro/ro161.1p96.8s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/li/li176.1p94.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ir/ir137.0p104.3s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/fe/fe178.0p108.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ak/ak165.6p144.0s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/up/up171.7p112.3s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/al/al141.3p135.4s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ma/ma179.0p113.9s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/wi/wi165.6p144.0s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/da/da194.5p150.4s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/be/be167.4p133.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ad/ad155.5p123.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/eg/eg148.8p128.8s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/av/av183.0p105.7s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ap/ap161.1p96.8s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ut/ut192.7p116.7s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ul/ul215.2p121.0s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/uw/uw171.3p111.7s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/of/of164.9p102.1s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/yo/yo194.5p150.4s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ew/ew192.7p116.7s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ki/ki159.5p109.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ib/ib172.5p112.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/yu/yu171.7p112.3s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ow/ow151.6p83.9s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/de/de163.4p157.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/az/az198.1p97.9s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/tu/tu176.1p94.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/do/do172.4p109.3s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ib/ib172.1p113.0s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/la/la192.7p116.7s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ih/ih164.7p110.8s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/uu/uu171.5p113.1s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/de/de155.5p123.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/pi/pi145.5p106.3s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/pe/pe176.1p94.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ha/ha174.5p110.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/te/te169.0p114.0s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/he/he145.5p106.3s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ik/ik156.7p90.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ug/ug179.0p113.9s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/iy/iy173.3p105.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ye/ye167.8p106.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uy/uy178.8p123.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/iz/iz174.5p110.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/bo/bo189.6p102.1s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ka/ka189.6p102.1s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/vi/vi178.0p108.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/po/po167.8p106.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ex/ex171.7p112.3s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/om/om215.2p121.0s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ap/ap167.8p106.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/oz/oz171.9p111.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ev/ev180.4p80.1s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/do/do183.0p130.4s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/mu/mu165.7p116.2s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/wu/wu171.5p113.1s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/he/he171.9p111.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/it/it194.5p150.4s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ut/ut159.5p109.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ve/ve168.9p125.4s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ee/ee171.3p111.7s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/aa/aa172.4p111.9s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/uz/uz167.8p106.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/em/em155.5p123.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/bo/bo171.5p113.1s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/im/im168.6p111.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/iv/iv164.7p110.8s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/am/am171.0p112.8s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ez/ez165.6p144.0s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ik/ik174.5p100.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/in/in188.1p139.2s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/su/su179.0p113.9s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ev/ev171.0p112.8s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ee/ee184.8p115.1s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/am/am161.1p96.8s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ep/ep137.0p104.3s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ix/ix179.0p113.9s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/pu/pu159.5p109.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ex/ex194.5p150.4s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ab/ab180.4p80.1s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ge/ge145.5p106.3s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/og/og170.1p119.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/se/se194.5p150.4s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/va/va170.9p112.2s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/wo/wo175.7p118.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/uh/uh171.5p113.1s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/no/no137.0p104.3s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ne/ne172.1p113.0s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/pe/pe169.0p114.0s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/wo/wo161.1p119.4s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ap/ap171.3p111.7s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ay/ay171.0p112.8s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/hi/hi208.6p93.2s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/te/te192.7p116.7s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/de/de172.4p111.9s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/he/he189.6p102.1s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/od/od168.9p125.4s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/wo/wo170.1p119.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ud/ud174.5p110.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/yi/yi173.5p115.0s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/id/id174.5p100.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/eh/eh188.1p139.2s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/or/or178.8p123.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/az/az156.7p90.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/mu/mu167.4p133.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/le/le173.3p105.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ne/ne175.7p118.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/at/at198.1p97.9s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/uf/uf172.4p109.3s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/uu/uu174.9p113.0s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/om/om176.1p94.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/od/od171.3p111.7s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/su/su171.5p113.1s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ki/ki141.3p135.4s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/du/du156.7p90.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ub/ub148.8p128.8s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/vu/vu194.5p150.4s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/um/um141.3p135.4s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ag/ag194.5p150.4s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ut/ut198.1p97.9s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/uh/uh171.0p112.8s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ix/ix172.5p112.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ab/ab164.7p110.8s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/or/or159.5p109.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ap/ap164.9p102.1s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/wo/wo161.1p96.8s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ow/ow192.7p116.7s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ab/ab183.0p130.4s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/uv/uv175.7p118.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/iz/iz161.1p119.4s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/iv/iv176.1p94.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ti/ti159.5p109.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ez/ez165.7p116.2s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/xi/xi171.9p111.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/od/od168.6p111.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/so/so170.1p119.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/za/za180.4p80.1s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/aa/aa151.6p83.9s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/if/if174.5p100.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/is/is170.0p109.7s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/vi/vi170.1p119.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/re/re171.0p115.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/su/su165.6p144.0s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ob/ob145.5p106.3s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/iz/iz161.1p96.8s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ii/ii145.5p106.3s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/wa/wa165.6p144.0s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ho/ho178.1p87.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/xa/xa194.5p150.4s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/za/za194.5p150.4s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/it/it171.0p115.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ri/ri163.4p157.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/du/du167.8p106.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/le/le165.6p144.0s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/da/da171.7p112.3s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/yi/yi164.7p110.8s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ub/ub175.7p118.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/oo/oo171.0p112.8s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/va/va161.1p119.4s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/wu/wu192.7p116.7s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/it/it178.0p108.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ag/ag145.5p106.3s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/tu/tu159.5p109.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/na/na171.9p111.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ye/ye171.9p111.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uv/uv141.3p135.4s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/er/er178.8p123.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/li/li170.0p109.7s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/in/in173.3p105.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/an/an176.1p94.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/lo/lo175.7p118.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/fi/fi198.1p97.9s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/zo/zo169.0p114.0s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ba/ba178.8p123.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/tu/tu172.5p112.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/uf/uf174.9p113.0s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ir/ir198.1p97.9s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/oo/oo172.5p112.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ii/ii151.6p83.9s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/le/le141.3p135.4s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ay/ay151.6p83.9s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/uv/uv174.5p100.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/wo/wo198.1p97.9s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/om/om173.3p105.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/vu/vu171.5p113.1s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ux/ux183.0p130.4s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/gu/gu165.6p144.0s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ot/ot172.1p113.0s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ve/ve173.3p105.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/vu/vu198.1p97.9s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ak/ak137.0p104.3s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ba/ba180.4p80.1s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/po/po171.7p112.3s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ah/ah178.8p123.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/lu/lu215.2p121.0s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/oy/oy145.5p106.3s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/it/it180.4p80.1s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/la/la171.5p113.1s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ur/ur164.9p102.1s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ez/ez176.1p94.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/zi/zi171.9p111.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/sa/sa183.0p130.4s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/as/as176.1p94.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/og/og192.7p116.7s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/su/su174.9p113.0s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/da/da145.5p106.3s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/yu/yu141.3p135.4s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/uy/uy172.4p111.9s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/pu/pu169.0p114.0s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/os/os156.7p90.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/nu/nu137.0p104.3s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/eg/eg202.7p118.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/is/is170.9p112.2s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ux/ux170.9p112.2s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/xi/xi141.3p135.4s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ee/ee167.8p106.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ro/ro174.5p110.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ub/ub145.5p106.3s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/oy/oy170.0p109.7s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ex/ex170.9p112.2s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/fu/fu174.5p100.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/wa/wa215.2p121.0s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/lu/lu172.1p113.0s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/me/me175.7p118.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/wu/wu171.9p111.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/mu/mu165.6p144.0s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/se/se161.1p119.4s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ye/ye172.4p111.9s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ve/ve167.8p106.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ne/ne192.7p116.7s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/if/if153.0p108.1s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ne/ne183.0p105.7s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/uw/uw155.5p123.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ix/ix170.1p119.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ku/ku161.1p119.4s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/og/og161.1p119.4s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/re/re167.8p106.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ex/ex188.1p139.2s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ig/ig171.0p115.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ri/ri174.5p100.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/en/en165.7p116.2s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/pa/pa156.7p90.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/do/do176.1p94.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ed/ed165.7p116.2s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/od/od174.5p110.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/oh/oh172.4p109.3s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/lu/lu137.0p104.3s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/mi/mi180.4p80.1s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/la/la156.7p90.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/oo/oo171.7p112.3s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/zo/zo198.1p97.9s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/mo/mo165.7p116.2s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ke/ke171.0p112.8s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ef/ef184.8p115.1s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/fa/fa170.0p109.7s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ip/ip171.0p115.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/sa/sa165.7p116.2s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/mu/mu159.5p109.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ka/ka169.0p114.0s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ha/ha188.1p139.2s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ux/ux153.0p108.1s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ob/ob178.8p123.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/eb/eb167.8p106.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/na/na165.7p116.2s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ir/ir168.6p111.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/em/em164.7p110.8s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/oy/oy164.9p102.1s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ee/ee188.1p139.2s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/fu/fu148.8p128.8s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/at/at137.0p104.3s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ku/ku168.9p125.4s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/lo/lo198.1p97.9s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/on/on151.6p83.9s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/da/da178.0p108.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/xi/xi164.7p110.8s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/so/so174.5p110.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/we/we151.6p83.9s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/if/if198.1p97.9s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ko/ko171.0p115.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/be/be198.1p97.9s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ro/ro192.7p116.7s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/iv/iv174.5p100.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/hu/hu198.1p97.9s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/uf/uf183.0p105.7s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ar/ar170.9p112.2s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/bu/bu155.5p123.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/fu/fu171.7p112.3s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/va/va171.7p112.3s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/up/up161.1p96.8s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/vo/vo167.4p133.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/pi/pi202.7p118.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/em/em198.1p97.9s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/vi/vi153.0p108.1s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ar/ar172.5p112.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/di/di169.0p114.0s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/eb/eb171.0p115.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/af/af168.9p125.4s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ho/ho163.4p157.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/su/su189.6p102.1s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ir/ir192.7p116.7s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/et/et174.5p100.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/tu/tu168.6p111.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ur/ur165.6p144.0s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/on/on194.5p150.4s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ud/ud153.0p108.1s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/os/os148.8p128.8s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ex/ex170.0p109.7s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ex/ex184.8p115.1s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/aw/aw167.4p133.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ez/ez170.0p109.7s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/xi/xi171.3p111.7s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ex/ex173.3p105.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/me/me171.0p115.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ag/ag183.0p130.4s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ix/ix184.8p115.1s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ra/ra172.4p111.9s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uk/uk180.4p80.1s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/er/er161.1p96.8s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ro/ro173.5p115.0s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/di/di174.9p113.0s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/du/du192.7p116.7s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ov/ov192.7p116.7s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/za/za171.3p111.7s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ov/ov178.0p108.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/aw/aw167.8p106.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/pi/pi168.6p111.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ga/ga173.5p115.0s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/oo/oo163.4p157.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ar/ar183.0p105.7s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/fa/fa169.0p114.0s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ih/ih155.5p123.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/lo/lo179.0p113.9s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/wu/wu156.7p90.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/iv/iv172.4p109.3s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ug/ug153.0p108.1s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/po/po170.0p109.7s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ni/ni184.8p115.1s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ow/ow170.1p119.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ar/ar198.1p97.9s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/af/af165.7p116.2s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/fa/fa188.1p139.2s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ar/ar164.9p102.1s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/uw/uw192.7p116.7s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ki/ki171.5p113.1s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/uu/uu164.9p102.1s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/en/en156.7p90.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/el/el141.3p135.4s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/gu/gu159.5p109.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ek/ek183.0p105.7s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/zi/zi174.9p113.0s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/iv/iv171.0p112.8s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/wi/wi171.5p113.1s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/go/go141.3p135.4s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/xa/xa188.1p139.2s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/es/es168.6p111.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/uz/uz145.5p106.3s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/eh/eh172.4p109.3s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/la/la183.0p130.4s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/az/az168.9p125.4s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/be/be172.5p112.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ro/ro172.1p113.0s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/uy/uy178.0p108.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/if/if168.9p125.4s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ge/ge164.9p102.1s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/iw/iw171.7p112.3s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/uh/uh194.5p150.4s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/af/af189.6p102.1s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ad/ad164.7p110.8s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/he/he171.3p111.7s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/yo/yo174.5p100.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/hu/hu148.8p128.8s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ok/ok168.6p111.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/yi/yi174.9p113.0s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/oh/oh163.4p157.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/el/el170.9p112.2s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/uh/uh168.6p111.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/iv/iv179.0p113.9s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/va/va171.3p111.7s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/em/em165.6p144.0s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/pe/pe170.9p112.2s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/or/or170.1p119.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/iv/iv183.0p105.7s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/le/le175.7p118.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/al/al188.1p139.2s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/mi/mi137.0p104.3s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/me/me173.3p105.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ze/ze151.6p83.9s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/me/me180.4p80.1s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ne/ne151.6p83.9s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ed/ed172.4p111.9s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/eg/eg153.0p108.1s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/id/id194.5p150.4s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/od/od180.4p80.1s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/uk/uk167.8p106.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/aa/aa159.5p109.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/uy/uy180.4p80.1s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ye/ye164.7p110.8s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/op/op153.0p108.1s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/en/en161.1p96.8s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ay/ay170.9p112.2s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/li/li168.9p125.4s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/at/at178.8p123.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/he/he183.0p130.4s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/iv/iv145.5p106.3s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ix/ix170.9p112.2s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/wu/wu175.7p118.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ak/ak161.1p119.4s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/xu/xu167.4p133.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/on/on165.7p116.2s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/op/op178.1p87.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ev/ev141.3p135.4s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/fa/fa202.7p118.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ot/ot171.7p112.3s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ow/ow174.9p113.0s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/fo/fo171.0p115.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/pa/pa198.1p97.9s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ol/ol183.0p105.7s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/av/av174.5p110.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/sa/sa208.6p93.2s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/iw/iw172.4p111.9s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ax/ax168.6p111.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ad/ad192.7p116.7s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ve/ve178.0p108.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ni/ni141.3p135.4s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/vu/vu208.6p93.2s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/et/et208.6p93.2s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/hu/hu171.5p113.1s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ew/ew168.6p111.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/sa/sa178.1p87.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/bu/bu176.1p94.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/uv/uv172.1p113.0s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/xi/xi137.0p104.3s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ad/ad180.4p80.1s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/am/am215.2p121.0s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/an/an137.0p104.3s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/es/es165.7p116.2s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/is/is171.5p113.1s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/te/te179.0p113.9s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/la/la155.5p123.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ez/ez171.3p111.7s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/vu/vu173.5p115.0s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ax/ax161.1p119.4s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/nu/nu170.9p112.2s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/uz/uz148.8p128.8s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/im/im171.0p115.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/er/er175.7p118.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/su/su171.3p111.7s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/su/su171.9p111.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/su/su163.4p157.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/vu/vu178.8p123.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ta/ta178.8p123.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/fa/fa171.5p113.1s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/do/do156.7p90.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/be/be145.5p106.3s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ii/ii173.3p105.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/et/et137.0p104.3s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ar/ar168.6p111.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/uu/uu208.6p93.2s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ag/ag173.5p115.0s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ag/ag171.7p112.3s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/mu/mu161.1p119.4s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/aw/aw178.8p123.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/in/in137.0p104.3s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/um/um178.0p108.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/bo/bo173.5p115.0s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ha/ha173.3p105.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ap/ap171.0p112.8s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/al/al171.0p112.8s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ey/ey194.5p150.4s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/zo/zo172.4p111.9s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ux/ux189.6p102.1s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/be/be171.0p115.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/na/na168.6p111.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/iv/iv171.9p111.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/xu/xu178.0p108.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/te/te163.4p157.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ih/ih172.1p113.0s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/om/om192.7p116.7s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/es/es167.4p133.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/si/si173.3p105.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ne/ne215.2p121.0s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ur/ur171.0p112.8s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/se/se171.0p115.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ik/ik167.4p133.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ah/ah161.1p96.8s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/di/di170.9p112.2s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/zu/zu202.7p118.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/uv/uv161.1p119.4s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ri/ri189.6p102.1s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/or/or155.5p123.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/or/or161.1p96.8s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/en/en168.9p125.4s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/eb/eb164.7p110.8s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/iz/iz178.0p108.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/bi/bi173.5p115.0s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/na/na194.5p150.4s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/no/no170.1p119.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/du/du161.1p119.4s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ud/ud175.7p118.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ri/ri167.4p133.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/in/in172.1p113.0s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ux/ux159.5p109.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/un/un171.9p111.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/sa/sa178.0p108.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/as/as137.0p104.3s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/bo/bo161.1p119.4s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ol/ol156.7p90.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/yi/yi184.8p115.1s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/uw/uw173.3p105.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ri/ri165.6p144.0s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ka/ka171.0p115.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/pu/pu165.6p144.0s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ve/ve161.1p96.8s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ey/ey172.5p112.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ge/ge161.1p119.4s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/yu/yu163.4p157.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/xa/xa168.9p125.4s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/zu/zu172.1p113.0s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ul/ul172.5p112.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/to/to167.4p133.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/fu/fu189.6p102.1s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/oh/oh171.0p115.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/yo/yo172.5p112.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/oo/oo167.4p133.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/no/no148.8p128.8s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ah/ah173.5p115.0s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ka/ka180.4p80.1s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/vo/vo170.1p119.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/op/op202.7p118.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/op/op165.7p116.2s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/za/za163.4p157.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ay/ay169.0p114.0s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ab/ab171.7p112.3s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/up/up189.6p102.1s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/to/to180.4p80.1s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ku/ku183.0p130.4s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/lu/lu165.6p144.0s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/in/in167.4p133.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ro/ro173.3p105.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ap/ap183.0p105.7s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/um/um176.1p94.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/la/la178.8p123.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/os/os172.4p109.3s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/so/so164.9p102.1s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ve/ve171.9p111.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/eg/eg173.3p105.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/xu/xu172.4p111.9s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/le/le155.5p123.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/bo/bo173.3p105.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ey/ey208.6p93.2s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/og/og137.0p104.3s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/og/og188.1p139.2s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/uz/uz175.7p118.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/uw/uw174.5p110.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/um/um174.9p113.0s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/az/az145.5p106.3s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/al/al172.4p109.3s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/so/so164.7p110.8s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/fu/fu170.1p119.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ko/ko175.7p118.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ee/ee171.0p115.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/oy/oy189.6p102.1s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/fe/fe171.0p112.8s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/xe/xe178.1p87.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/oh/oh176.1p94.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/xa/xa167.4p133.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/li/li155.5p123.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ix/ix194.5p150.4s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/zi/zi141.3p135.4s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/du/du172.1p113.0s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ad/ad215.2p121.0s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/hu/hu179.0p113.9s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/zi/zi180.4p80.1s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ri/ri178.8p123.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/of/of167.4p133.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/el/el215.2p121.0s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ur/ur168.9p125.4s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/wu/wu173.5p115.0s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/is/is164.9p102.1s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/pe/pe215.2p121.0s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/vu/vu164.7p110.8s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/eh/eh192.7p116.7s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ox/ox151.6p83.9s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/zo/zo167.8p106.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ut/ut141.3p135.4s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/yi/yi174.5p100.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ug/ug198.1p97.9s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ii/ii164.9p102.1s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ak/ak194.5p150.4s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/wo/wo164.7p110.8s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ne/ne208.6p93.2s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ik/ik198.1p97.9s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ef/ef163.4p157.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ma/ma165.7p116.2s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/en/en180.4p80.1s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ut/ut189.6p102.1s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/lu/lu172.5p112.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/pi/pi215.2p121.0s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/iv/iv137.0p104.3s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/os/os172.5p112.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/uz/uz172.1p113.0s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ut/ut151.6p83.9s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/de/de192.7p116.7s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/il/il183.0p130.4s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/pe/pe192.7p116.7s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/me/me161.1p96.8s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ob/ob171.3p111.7s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ma/ma192.7p116.7s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ow/ow145.5p106.3s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/eg/eg179.0p113.9s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/fi/fi171.0p112.8s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ka/ka148.8p128.8s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/lu/lu188.1p139.2s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ax/ax171.7p112.3s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/vu/vu171.9p111.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/aa/aa188.1p139.2s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/to/to189.6p102.1s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/uf/uf159.5p109.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ul/ul170.0p109.7s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/gi/gi164.7p110.8s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ze/ze178.1p87.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/li/li167.4p133.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ib/ib202.7p118.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ar/ar175.7p118.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/mi/mi171.7p112.3s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/og/og208.6p93.2s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/za/za172.1p113.0s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/za/za174.9p113.0s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/iy/iy156.7p90.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/at/at180.4p80.1s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/po/po155.5p123.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/af/af178.0p108.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/eb/eb183.0p105.7s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ye/ye161.1p119.4s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ez/ez168.9p125.4s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/id/id171.7p112.3s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ux/ux164.9p102.1s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ay/ay174.5p100.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ex/ex153.0p108.1s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/xe/xe172.4p109.3s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/gi/gi184.8p115.1s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/xa/xa159.5p109.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ol/ol183.0p130.4s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/bo/bo202.7p118.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/wi/wi167.8p106.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ez/ez172.4p109.3s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/gi/gi164.9p102.1s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ha/ha194.5p150.4s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/us/us208.6p93.2s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ra/ra188.1p139.2s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ow/ow202.7p118.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/an/an202.7p118.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/at/at170.9p112.2s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ku/ku180.4p80.1s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/vo/vo161.1p119.4s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/gi/gi172.5p112.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ey/ey153.0p108.1s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/xe/xe171.7p112.3s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/nu/nu151.6p83.9s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ko/ko141.3p135.4s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ev/ev164.9p102.1s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/od/od189.6p102.1s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/su/su170.9p112.2s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ux/ux175.7p118.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/he/he172.4p109.3s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/fu/fu178.1p87.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/za/za161.1p96.8s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/du/du172.5p112.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/hi/hi170.1p119.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ok/ok215.2p121.0s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/de/de173.3p105.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/no/no215.2p121.0s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/of/of188.1p139.2s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/at/at179.0p113.9s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/at/at172.4p109.3s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/la/la170.0p109.7s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/uk/uk194.5p150.4s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/mu/mu172.1p113.0s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/og/og171.3p111.7s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/mo/mo192.7p116.7s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/lu/lu183.0p130.4s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/vi/vi178.8p123.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/oy/oy173.5p115.0s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/mu/mu170.0p109.7s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/id/id183.0p130.4s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/eg/eg180.4p80.1s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/mo/mo137.0p104.3s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/fi/fi178.0p108.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/pu/pu171.9p111.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ul/ul168.9p125.4s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/pe/pe151.6p83.9s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/wa/wa171.0p115.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ul/ul178.8p123.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/pu/pu184.8p115.1s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/xu/xu179.0p113.9s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ip/ip148.8p128.8s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ve/ve156.7p90.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/yi/yi198.1p97.9s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/hu/hu145.5p106.3s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/es/es175.7p118.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/an/an161.1p119.4s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/wi/wi183.0p130.4s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ta/ta165.7p116.2s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/uh/uh167.4p133.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/is/is161.1p119.4s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/az/az169.0p114.0s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/pu/pu167.8p106.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/vu/vu171.7p112.3s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ux/ux163.4p157.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/im/im161.1p96.8s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/az/az202.7p118.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/pi/pi165.6p144.0s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/xi/xi178.0p108.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/et/et141.3p135.4s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/yu/yu176.1p94.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ux/ux174.5p100.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/os/os167.4p133.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xo/xo137.0p104.3s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ez/ez141.3p135.4s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/hi/hi172.5p112.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/be/be165.7p116.2s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/uy/uy167.4p133.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/uf/uf198.1p97.9s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ma/ma173.3p105.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/us/us215.2p121.0s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ug/ug168.6p111.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ha/ha170.9p112.2s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/bo/bo159.5p109.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/am/am155.5p123.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/uh/uh188.1p139.2s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/iy/iy137.0p104.3s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/or/or215.2p121.0s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/zi/zi165.6p144.0s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/xo/xo173.5p115.0s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/da/da159.5p109.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/si/si156.7p90.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ne/ne171.0p112.8s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ob/ob198.1p97.9s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/le/le156.7p90.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ot/ot167.8p106.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ro/ro145.5p106.3s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ti/ti179.0p113.9s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ep/ep171.7p112.3s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/uw/uw151.6p83.9s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/du/du164.9p102.1s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ab/ab170.0p109.7s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/de/de148.8p128.8s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/es/es170.0p109.7s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/bo/bo165.6p144.0s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/iv/iv192.7p116.7s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/eh/eh167.4p133.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ii/ii165.6p144.0s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/in/in189.6p102.1s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ow/ow168.9p125.4s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/no/no169.0p114.0s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/te/te148.8p128.8s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/tu/tu175.7p118.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ud/ud171.0p115.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/wi/wi171.3p111.7s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/wi/wi198.1p97.9s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/an/an165.7p116.2s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ok/ok172.4p111.9s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ek/ek171.9p111.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/mo/mo183.0p130.4s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ee/ee178.1p87.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ar/ar156.7p90.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/il/il178.8p123.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/pe/pe165.6p144.0s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/et/et163.4p157.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/am/am172.4p109.3s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ha/ha141.3p135.4s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/fu/fu171.3p111.7s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/be/be183.0p105.7s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/va/va161.1p96.8s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ge/ge163.4p157.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ve/ve163.4p157.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ov/ov178.1p87.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ub/ub174.9p113.0s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/it/it171.0p112.8s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/of/of137.0p104.3s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/eg/eg208.6p93.2s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ya/ya170.9p112.2s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/uf/uf183.0p130.4s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/hu/hu171.3p111.7s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/xo/xo172.5p112.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ey/ey174.9p113.0s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/em/em161.1p96.8s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/xe/xe183.0p130.4s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/lo/lo171.7p112.3s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/re/re155.5p123.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/um/um161.1p96.8s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/up/up168.6p111.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/yu/yu174.9p113.0s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/af/af164.9p102.1s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/me/me208.6p93.2s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/iy/iy171.3p111.7s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ar/ar171.0p115.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ed/ed176.1p94.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/vo/vo170.0p109.7s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ke/ke180.4p80.1s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/me/me168.6p111.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ax/ax159.5p109.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ak/ak178.8p123.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/er/er137.0p104.3s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/es/es151.6p83.9s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ev/ev163.4p157.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/sa/sa174.5p100.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ok/ok178.0p108.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/it/it173.5p115.0s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ok/ok169.0p114.0s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ro/ro174.5p100.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/an/an172.1p113.0s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/od/od156.7p90.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ko/ko165.6p144.0s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/da/da137.0p104.3s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/si/si170.9p112.2s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/uv/uv165.7p116.2s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/to/to164.7p110.8s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/il/il159.5p109.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/si/si164.7p110.8s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/tu/tu174.5p110.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ze/ze148.8p128.8s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ez/ez172.1p113.0s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ug/ug145.5p106.3s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/lu/lu208.6p93.2s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/pa/pa171.7p112.3s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/lo/lo165.7p116.2s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ex/ex148.8p128.8s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ro/ro171.9p111.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ka/ka174.5p100.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ze/ze171.9p111.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/om/om172.4p109.3s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/er/er183.0p105.7s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ek/ek172.1p113.0s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ne/ne180.4p80.1s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/oy/oy188.1p139.2s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ax/ax173.5p115.0s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/us/us173.5p115.0s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/om/om198.1p97.9s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/as/as215.2p121.0s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/am/am194.5p150.4s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ox/ox173.5p115.0s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ga/ga163.4p157.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/uf/uf172.4p111.9s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/na/na141.3p135.4s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/xa/xa161.1p96.8s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/gi/gi161.1p119.4s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/og/og164.9p102.1s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/un/un161.1p96.8s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ev/ev178.0p108.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ut/ut183.0p105.7s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ep/ep215.2p121.0s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/uh/uh172.1p113.0s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ya/ya208.6p93.2s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ma/ma156.7p90.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/as/as163.4p157.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ya/ya172.5p112.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/yo/yo183.0p130.4s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/af/af176.1p94.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ed/ed155.5p123.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ur/ur171.9p111.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/uy/uy174.9p113.0s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ee/ee174.5p100.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/or/or171.9p111.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ix/ix161.1p96.8s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/va/va189.6p102.1s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ki/ki171.3p111.7s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ur/ur173.5p115.0s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/op/op155.5p123.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/li/li171.7p112.3s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/we/we156.7p90.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/uh/uh165.6p144.0s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/zo/zo178.0p108.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/za/za145.5p106.3s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ga/ga202.7p118.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/tu/tu183.0p105.7s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/mo/mo179.0p113.9s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ma/ma170.1p119.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ay/ay171.9p111.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ud/ud176.1p94.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ig/ig172.4p109.3s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ar/ar215.2p121.0s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ov/ov184.8p115.1s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ed/ed183.0p105.7s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/li/li159.5p109.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/de/de172.5p112.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/op/op171.3p111.7s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ga/ga178.8p123.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ap/ap168.9p125.4s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ve/ve167.4p133.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/bo/bo151.6p83.9s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/er/er202.7p118.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/oy/oy168.9p125.4s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ey/ey137.0p104.3s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ya/ya151.6p83.9s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/oh/oh178.8p123.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/to/to171.0p112.8s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/uh/uh164.9p102.1s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ib/ib183.0p105.7s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/al/al208.6p93.2s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/la/la163.4p157.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ee/ee172.4p111.9s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ne/ne168.9p125.4s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/up/up208.6p93.2s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/la/la161.1p96.8s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/go/go173.3p105.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ul/ul172.4p111.9s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ob/ob176.1p94.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/am/am178.0p108.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/if/if194.5p150.4s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/og/og153.0p108.1s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ig/ig163.4p157.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ik/ik151.6p83.9s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ad/ad153.0p108.1s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/um/um198.1p97.9s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ek/ek178.8p123.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ul/ul156.7p90.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ol/ol174.9p113.0s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/bu/bu171.3p111.7s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/eh/eh171.7p112.3s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/za/za170.0p109.7s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/hu/hu170.0p109.7s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/iy/iy202.7p118.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/se/se171.3p111.7s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/iw/iw170.9p112.2s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/on/on176.1p94.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/op/op178.8p123.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/vi/vi183.0p130.4s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ud/ud161.1p119.4s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/he/he179.0p113.9s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/hi/hi179.0p113.9s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/sa/sa184.8p115.1s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/av/av168.6p111.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/va/va175.7p118.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ro/ro167.4p133.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ni/ni171.0p115.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/fa/fa183.0p130.4s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/eb/eb176.1p94.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ri/ri172.1p113.0s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/pi/pi164.7p110.8s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/iw/iw192.7p116.7s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ni/ni202.7p118.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ke/ke176.1p94.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ip/ip194.5p150.4s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/mi/mi156.7p90.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/gi/gi208.6p93.2s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ke/ke183.0p130.4s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/xe/xe141.3p135.4s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/od/od137.0p104.3s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/if/if171.5p113.1s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/bi/bi169.0p114.0s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/oo/oo141.3p135.4s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/es/es170.9p112.2s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ul/ul208.6p93.2s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ga/ga161.1p119.4s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/or/or171.0p115.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/us/us161.1p96.8s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/di/di175.7p118.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ub/ub172.5p112.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/du/du178.8p123.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/uy/uy183.0p105.7s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ta/ta171.7p112.3s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/av/av194.5p150.4s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ke/ke145.5p106.3s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/uk/uk188.1p139.2s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/oz/oz172.4p109.3s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/so/so145.5p106.3s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ki/ki174.5p100.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/iy/iy170.9p112.2s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/du/du167.4p133.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ro/ro188.1p139.2s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ha/ha171.7p112.3s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/at/at178.0p108.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/le/le168.6p111.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/to/to161.1p119.4s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ux/ux137.0p104.3s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ka/ka208.6p93.2s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ez/ez167.4p133.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/uv/uv170.1p119.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/or/or192.7p116.7s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/it/it171.7p112.3s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/na/na171.7p112.3s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/us/us170.0p109.7s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ho/ho198.1p97.9s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/se/se153.0p108.1s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/mi/mi172.5p112.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/xe/xe172.5p112.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/nu/nu171.7p112.3s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/po/po172.5p112.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/wi/wi168.9p125.4s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/te/te161.1p96.8s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/zu/zu168.6p111.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/uw/uw167.8p106.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/if/if171.7p112.3s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/om/om171.9p111.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ma/ma169.0p114.0s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/if/if169.0p114.0s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/as/as174.9p113.0s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/du/du188.1p139.2s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/aa/aa171.5p113.1s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/yo/yo165.6p144.0s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ox/ox167.8p106.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ok/ok167.4p133.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/fa/fa178.1p87.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ha/ha165.6p144.0s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/hi/hi178.0p108.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/on/on172.4p109.3s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/si/si188.1p139.2s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ka/ka198.1p97.9s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/fu/fu174.5p110.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/al/al202.7p118.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ov/ov215.2p121.0s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/sa/sa141.3p135.4s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ev/ev189.6p102.1s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/oh/oh173.3p105.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/sa/sa165.6p144.0s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/mo/mo159.5p109.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ih/ih184.8p115.1s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ix/ix171.0p115.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/fe/fe153.0p108.1s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/iz/iz180.4p80.1s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/wi/wi208.6p93.2s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/lu/lu173.5p115.0s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ez/ez168.6p111.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ha/ha175.7p118.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/uy/uy165.6p144.0s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/yu/yu192.7p116.7s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/em/em208.6p93.2s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/so/so175.7p118.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/uw/uw178.1p87.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/tu/tu174.5p100.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/op/op161.1p96.8s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ew/ew151.6p83.9s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/iz/iz171.9p111.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ov/ov145.5p106.3s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/va/va180.4p80.1s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/la/la171.0p115.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/po/po171.3p111.7s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/hi/hi171.0p112.8s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ay/ay170.1p119.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ir/ir167.4p133.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/iv/iv151.6p83.9s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/xu/xu174.9p113.0s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ru/ru156.7p90.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ro/ro151.6p83.9s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/or/or172.4p109.3s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ex/ex172.4p109.3s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/zi/zi215.2p121.0s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/is/is183.0p130.4s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/nu/nu208.6p93.2s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ti/ti174.9p113.0s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/av/av174.9p113.0s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ee/ee156.7p90.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/za/za156.7p90.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/so/so169.0p114.0s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/iw/iw161.1p119.4s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/si/si174.5p110.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ga/ga172.5p112.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/uh/uh151.6p83.9s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/za/za137.0p104.3s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/az/az188.1p139.2s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ik/ik180.4p80.1s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ir/ir161.1p119.4s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/iz/iz171.7p112.3s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/to/to137.0p104.3s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/bu/bu173.3p105.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/go/go184.8p115.1s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/fi/fi172.1p113.0s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/fu/fu170.0p109.7s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ge/ge184.8p115.1s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ni/ni172.4p109.3s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/in/in165.7p116.2s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/uu/uu171.7p112.3s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/le/le145.5p106.3s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/yi/yi202.7p118.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/mu/mu178.8p123.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/as/as179.0p113.9s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/xe/xe164.7p110.8s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ag/ag169.0p114.0s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ib/ib171.9p111.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/al/al180.4p80.1s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/fa/fa179.0p113.9s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ni/ni156.7p90.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ni/ni165.7p116.2s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ef/ef167.8p106.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/il/il173.5p115.0s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/re/re172.4p111.9s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/po/po151.6p83.9s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/eb/eb165.7p116.2s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/gu/gu176.1p94.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ke/ke171.3p111.7s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ke/ke173.3p105.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/il/il167.8p106.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/wo/wo163.4p157.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ey/ey161.1p119.4s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/no/no171.9p111.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/yi/yi189.6p102.1s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/uk/uk171.7p112.3s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ig/ig148.8p128.8s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/fi/fi156.7p90.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/so/so183.0p105.7s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/id/id184.8p115.1s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/me/me148.8p128.8s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/se/se159.5p109.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/hu/hu175.7p118.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/od/od171.9p111.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/fo/fo178.8p123.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/pi/pi171.0p112.8s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ez/ez151.6p83.9s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/vo/vo167.8p106.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/sa/sa189.6p102.1s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/af/af170.1p119.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/fu/fu145.5p106.3s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/he/he168.6p111.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/vi/vi141.3p135.4s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/tu/tu178.1p87.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/al/al161.1p96.8s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/pe/pe159.5p109.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ex/ex141.3p135.4s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ur/ur171.7p112.3s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/xa/xa178.8p123.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/as/as173.5p115.0s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/su/su183.0p130.4s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/xe/xe173.3p105.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/fo/fo164.9p102.1s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/da/da172.5p112.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/eg/eg137.0p104.3s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/he/he172.4p111.9s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/yu/yu165.6p144.0s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ey/ey171.0p112.8s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/bo/bo137.0p104.3s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ob/ob170.0p109.7s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ev/ev169.0p114.0s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ta/ta145.5p106.3s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ab/ab163.4p157.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ug/ug168.9p125.4s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/un/un172.4p109.3s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ge/ge151.6p83.9s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ad/ad165.6p144.0s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ib/ib171.3p111.7s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/od/od208.6p93.2s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/er/er184.8p115.1s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/wa/wa155.5p123.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/uy/uy170.1p119.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/on/on178.8p123.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/uz/uz161.1p96.8s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/im/im155.5p123.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/va/va172.1p113.0s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ah/ah172.4p111.9s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/da/da180.4p80.1s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ug/ug171.5p113.1s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/in/in164.7p110.8s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ku/ku172.4p109.3s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ux/ux167.4p133.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ut/ut170.0p109.7s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/oz/oz173.3p105.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/zo/zo179.0p113.9s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/vu/vu178.1p87.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ke/ke171.7p112.3s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ux/ux171.9p111.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ux/ux188.1p139.2s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/oh/oh178.1p87.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ib/ib172.4p111.9s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/za/za151.6p83.9s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/he/he172.5p112.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/bo/bo171.0p112.8s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ma/ma161.1p119.4s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/bo/bo174.5p110.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ya/ya165.6p144.0s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/la/la170.9p112.2s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/yo/yo178.8p123.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ge/ge174.9p113.0s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/me/me202.7p118.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/su/su155.5p123.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/li/li164.7p110.8s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ip/ip171.7p112.3s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/sa/sa174.9p113.0s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/so/so183.0p130.4s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ep/ep170.9p112.2s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/bi/bi172.5p112.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/om/om148.8p128.8s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/if/if167.8p106.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ri/ri151.6p83.9s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/gi/gi165.6p144.0s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ug/ug192.7p116.7s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/em/em188.1p139.2s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/yu/yu153.0p108.1s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/gi/gi170.0p109.7s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ib/ib174.5p100.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ad/ad184.8p115.1s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ah/ah156.7p90.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/if/if165.7p116.2s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/bo/bo178.1p87.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ev/ev172.4p109.3s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/av/av169.0p114.0s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ax/ax183.0p130.4s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/es/es188.1p139.2s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/in/in156.7p90.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/of/of176.1p94.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ay/ay172.4p109.3s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/oh/oh168.6p111.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ik/ik168.9p125.4s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ol/ol202.7p118.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ge/ge183.0p105.7s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ih/ih180.4p80.1s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/av/av175.7p118.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/us/us171.0p112.8s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/oy/oy165.7p116.2s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/do/do163.4p157.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/il/il161.1p96.8s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/vi/vi159.5p109.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ol/ol173.5p115.0s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/hu/hu202.7p118.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/at/at168.6p111.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ef/ef169.0p114.0s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/vo/vo172.4p109.3s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/yi/yi178.8p123.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/di/di188.1p139.2s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/us/us172.4p109.3s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/pu/pu171.5p113.1s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ha/ha151.6p83.9s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/pa/pa178.1p87.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ay/ay178.8p123.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ix/ix208.6p93.2s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ge/ge192.7p116.7s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/mi/mi173.5p115.0s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/le/le202.7p118.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/as/as198.1p97.9s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/un/un151.6p83.9s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/im/im192.7p116.7s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/bu/bu145.5p106.3s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/to/to170.0p109.7s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ov/ov172.1p113.0s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/pa/pa171.5p113.1s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/eg/eg172.4p111.9s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/uf/uf165.6p144.0s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/no/no172.4p111.9s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/vi/vi171.0p112.8s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ez/ez179.0p113.9s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/at/at171.3p111.7s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/so/so174.9p113.0s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ox/ox174.9p113.0s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/uv/uv171.7p112.3s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ol/ol188.1p139.2s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/fo/fo171.3p111.7s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ho/ho180.4p80.1s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/fi/fi167.8p106.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ma/ma167.4p133.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/yi/yi183.0p130.4s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/va/va137.0p104.3s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/aw/aw188.1p139.2s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/hu/hu153.0p108.1s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ak/ak171.5p113.1s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ox/ox161.1p96.8s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/oy/oy164.7p110.8s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ot/ot141.3p135.4s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/af/af171.5p113.1s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/oh/oh170.9p112.2s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/om/om170.9p112.2s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/fi/fi192.7p116.7s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ee/ee173.3p105.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ev/ev179.0p113.9s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ad/ad171.5p113.1s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/aa/aa137.0p104.3s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/pi/pi174.5p100.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/vi/vi171.0p115.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/nu/nu153.0p108.1s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/go/go170.1p119.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/wu/wu215.2p121.0s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/of/of164.7p110.8s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ay/ay141.3p135.4s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ow/ow215.2p121.0s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/er/er173.3p105.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/mo/mo178.1p87.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/er/er172.5p112.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/on/on164.9p102.1s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/no/no171.7p112.3s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/pe/pe141.3p135.4s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ko/ko180.4p80.1s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/xa/xa170.9p112.2s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/os/os173.3p105.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xi/xi164.9p102.1s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/om/om164.7p110.8s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ez/ez180.4p80.1s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ig/ig170.1p119.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/da/da202.7p118.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/uh/uh192.7p116.7s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/fe/fe151.6p83.9s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/iw/iw178.0p108.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ut/ut174.5p100.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ey/ey161.1p96.8s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/wu/wu183.0p105.7s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/as/as189.6p102.1s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/yu/yu180.4p80.1s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/iv/iv141.3p135.4s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ku/ku174.5p100.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/re/re141.3p135.4s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/sa/sa137.0p104.3s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/on/on188.1p139.2s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/oz/oz170.0p109.7s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ho/ho170.0p109.7s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ih/ih202.7p118.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/en/en172.1p113.0s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/lo/lo184.8p115.1s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/og/og202.7p118.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/vu/vu137.0p104.3s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/iy/iy178.1p87.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/er/er178.0p108.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ur/ur153.0p108.1s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ye/ye174.5p110.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uh/uh161.1p96.8s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/um/um170.9p112.2s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/na/na174.9p113.0s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ri/ri171.5p113.1s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/fe/fe170.0p109.7s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/un/un170.0p109.7s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ho/ho168.9p125.4s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ri/ri188.1p139.2s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/en/en170.1p119.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/iw/iw171.0p112.8s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/iw/iw167.4p133.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/oy/oy175.7p118.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ki/ki169.0p114.0s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/re/re165.7p116.2s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/is/is168.6p111.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/of/of155.5p123.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/od/od183.0p130.4s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/xe/xe188.1p139.2s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ti/ti173.5p115.0s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/zu/zu171.0p112.8s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/oy/oy148.8p128.8s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/fu/fu178.0p108.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ak/ak170.1p119.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ax/ax189.6p102.1s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/lo/lo172.4p109.3s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/wa/wa137.0p104.3s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ho/ho171.3p111.7s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ho/ho172.1p113.0s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ud/ud194.5p150.4s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/is/is174.5p110.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/di/di178.0p108.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/so/so171.3p111.7s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/at/at148.8p128.8s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ul/ul171.3p111.7s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ya/ya141.3p135.4s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/le/le171.0p112.8s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/el/el183.0p105.7s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/uw/uw176.1p94.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/nu/nu148.8p128.8s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/iy/iy175.7p118.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/si/si167.8p106.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/se/se161.1p96.8s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/eb/eb178.1p87.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ip/ip178.1p87.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/wa/wa172.4p111.9s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/le/le168.9p125.4s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/pu/pu192.7p116.7s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ya/ya180.4p80.1s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ik/ik169.0p114.0s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/we/we183.0p130.4s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ku/ku208.6p93.2s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/uh/uh173.3p105.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/hi/hi171.7p112.3s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/lo/lo174.5p100.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/uz/uz170.0p109.7s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ge/ge173.3p105.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ir/ir215.2p121.0s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/et/et178.1p87.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/pu/pu180.4p80.1s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ri/ri153.0p108.1s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ga/ga178.0p108.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/oy/oy192.7p116.7s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/so/so178.1p87.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ox/ox172.4p111.9s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/xo/xo173.3p105.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ok/ok137.0p104.3s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/se/se180.4p80.1s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ne/ne161.1p119.4s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ke/ke164.9p102.1s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/bu/bu194.5p150.4s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ev/ev172.5p112.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/iv/iv172.4p111.9s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ha/ha161.1p96.8s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ew/ew171.3p111.7s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/du/du171.7p112.3s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/vi/vi171.9p111.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ug/ug141.3p135.4s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/va/va169.0p114.0s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ur/ur170.9p112.2s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ka/ka141.3p135.4s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/bo/bo174.5p100.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/so/so208.6p93.2s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/gi/gi171.0p112.8s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/se/se148.8p128.8s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/mu/mu171.9p111.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/eh/eh183.0p130.4s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/uz/uz174.5p100.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/di/di174.5p100.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/za/za164.9p102.1s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ve/ve172.5p112.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/lu/lu189.6p102.1s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/uy/uy171.5p113.1s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ep/ep178.8p123.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ri/ri145.5p106.3s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/yu/yu172.5p112.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/im/im179.0p113.9s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/in/in184.8p115.1s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ex/ex171.3p111.7s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ko/ko165.7p116.2s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/zo/zo170.1p119.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ok/ok180.4p80.1s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ub/ub161.1p96.8s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/op/op164.7p110.8s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/oz/oz192.7p116.7s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ok/ok178.8p123.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ut/ut178.8p123.6s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/vo/vo148.8p128.8s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/xa/xa202.7p118.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/we/we164.9p102.1s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ik/ik171.7p112.3s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/be/be184.8p115.1s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/yo/yo172.4p109.3s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/fu/fu183.0p105.7s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/id/id151.6p83.9s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/et/et179.0p113.9s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/di/di184.8p115.1s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/za/za171.9p111.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/zi/zi164.9p102.1s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/pe/pe172.5p112.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/im/im171.9p111.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ru/ru178.0p108.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ih/ih170.9p112.2s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ad/ad176.1p94.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ag/ag183.0p105.7s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/so/so172.4p109.3s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ni/ni155.5p123.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/iv/iv171.0p115.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ge/ge171.9p111.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/po/po165.6p144.0s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/vu/vu180.4p80.1s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ad/ad170.0p109.7s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/hu/hu173.3p105.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ox/ox184.8p115.1s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ek/ek188.1p139.2s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/gi/gi175.7p118.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/iy/iy167.4p133.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/na/na137.0p104.3s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ti/ti172.5p112.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/wa/wa172.1p113.0s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ra/ra156.7p90.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ok/ok171.5p113.1s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ze/ze170.1p119.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/so/so202.7p118.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/pa/pa170.0p109.7s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/na/na173.3p105.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/zi/zi179.0p113.9s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ke/ke151.6p83.9s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/se/se164.7p110.8s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ri/ri165.7p116.2s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ot/ot164.9p102.1s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ne/ne174.9p113.0s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/xa/xa172.4p109.3s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/go/go169.0p114.0s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/og/og168.9p125.4s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/wo/wo171.3p111.7s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ot/ot167.4p133.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/oz/oz164.7p110.8s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/zu/zu164.7p110.8s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ur/ur171.3p111.7s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ex/ex151.6p83.9s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ey/ey163.4p157.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/gi/gi172.1p113.0s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/aw/aw172.4p109.3s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/pi/pi159.5p109.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/lo/lo172.5p112.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ob/ob174.5p110.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ar/ar173.5p115.0s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ux/ux178.0p108.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/nu/nu178.8p123.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ho/ho141.3p135.4s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ge/ge171.3p111.7s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/uf/uf178.0p108.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/gi/gi173.3p105.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/si/si171.7p112.3s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/su/su153.0p108.1s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/wi/wi173.3p105.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/wo/wo171.7p112.3s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/si/si172.4p111.9s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ut/ut164.7p110.8s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ag/ag178.1p87.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ig/ig179.0p113.9s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/xu/xu169.0p114.0s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ri/ri175.7p118.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ru/ru184.8p115.1s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ta/ta167.4p133.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/of/of174.5p110.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ep/ep165.6p144.0s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/tu/tu202.7p118.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/yi/yi180.4p80.1s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ed/ed171.7p112.3s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/so/so184.8p115.1s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/iz/iz137.0p104.3s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ha/ha184.8p115.1s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/he/he194.5p150.4s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ib/ib174.5p110.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ed/ed173.5p115.0s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/iy/iy169.0p114.0s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ir/ir171.0p112.8s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ad/ad172.5p112.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/xu/xu173.5p115.0s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ez/ez173.5p115.0s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ah/ah189.6p102.1s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/hi/hi170.9p112.2s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/si/si145.5p106.3s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ee/ee172.5p112.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/da/da153.0p108.1s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ig/ig192.7p116.7s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ki/ki178.0p108.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/se/se174.9p113.0s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/hu/hu194.5p150.4s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ak/ak171.3p111.7s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/eg/eg171.3p111.7s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/oy/oy172.1p113.0s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/be/be163.4p157.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ba/ba178.1p87.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/uz/uz215.2p121.0s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/om/om164.9p102.1s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ab/ab161.1p119.4s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ii/ii208.6p93.2s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/aa/aa153.0p108.1s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/so/so172.1p113.0s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ih/ih173.3p105.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ew/ew215.2p121.0s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/wu/wu168.6p111.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ih/ih171.0p115.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/se/se164.9p102.1s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/du/du183.0p130.4s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ee/ee189.6p102.1s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ok/ok183.0p130.4s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/an/an178.1p87.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/hi/hi180.4p80.1s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ob/ob184.8p115.1s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/da/da165.7p116.2s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/we/we167.4p133.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ze/ze175.7p118.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/no/no183.0p130.4s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ax/ax171.0p115.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ow/ow172.5p112.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/uk/uk148.8p128.8s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/of/of175.7p118.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/em/em171.9p111.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ki/ki173.3p105.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ru/ru172.4p109.3s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/du/du208.6p93.2s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ha/ha202.7p118.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/or/or137.0p104.3s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/zi/zi159.5p109.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ru/ru208.6p93.2s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ud/ud148.8p128.8s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ar/ar145.5p106.3s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/su/su172.4p109.3s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ov/ov172.4p109.3s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/du/du164.7p110.8s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/he/he171.5p113.1s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ii/ii172.5p112.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/xi/xi189.6p102.1s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ni/ni172.5p112.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/uz/uz167.4p133.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/sa/sa172.1p113.0s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/op/op167.8p106.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/te/te156.7p90.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/or/or170.9p112.2s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/is/is137.0p104.3s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/er/er172.4p109.3s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ko/ko183.0p105.7s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ob/ob141.3p135.4s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/it/it165.7p116.2s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/lu/lu173.3p105.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/if/if155.5p123.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ep/ep170.1p119.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/do/do145.5p106.3s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ob/ob171.0p112.8s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ow/ow194.5p150.4s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ri/ri183.0p105.7s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/na/na173.5p115.0s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/am/am171.0p115.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ed/ed153.0p108.1s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/os/os171.5p113.1s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xi/xi165.6p144.0s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/eb/eb169.0p114.0s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/wi/wi174.5p100.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/op/op176.1p94.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/xa/xa215.2p121.0s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ii/ii174.9p113.0s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ya/ya170.1p119.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ew/ew161.1p96.8s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/uu/uu171.9p111.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/sa/sa159.5p109.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ra/ra174.5p110.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ad/ad183.0p105.7s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ba/ba163.4p157.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/po/po168.9p125.4s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/bo/bo172.5p112.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/el/el173.3p105.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/om/om163.4p157.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ru/ru202.7p118.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/el/el192.7p116.7s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/yo/yo153.0p108.1s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/em/em194.5p150.4s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ii/ii171.5p113.1s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/vo/vo171.0p115.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ov/ov188.1p139.2s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/xa/xa178.1p87.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/fa/fa178.8p123.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/oy/oy173.3p105.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ha/ha167.4p133.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/he/he148.8p128.8s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/vi/vi165.7p116.2s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/eg/eg184.8p115.1s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/it/it178.8p123.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/at/at171.5p113.1s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ve/ve178.1p87.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/su/su173.3p105.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/on/on163.4p157.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ga/ga168.6p111.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ra/ra198.1p97.9s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/to/to192.7p116.7s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/aw/aw174.9p113.0s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ye/ye165.6p144.0s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/or/or180.4p80.1s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/si/si164.9p102.1s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/iy/iy178.8p123.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ro/ro159.5p109.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/oh/oh178.0p108.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/fu/fu165.7p116.2s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ok/ok159.5p109.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/av/av202.7p118.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/fa/fa164.7p110.8s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/on/on141.3p135.4s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/oh/oh192.7p116.7s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/am/am168.9p125.4s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ew/ew178.0p108.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/vo/vo174.5p110.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/na/na171.5p113.1s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/hi/hi173.5p115.0s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/og/og183.0p105.7s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ov/ov180.4p80.1s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/an/an171.0p115.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ku/ku179.0p113.9s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/uk/uk170.0p109.7s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/wi/wi161.1p119.4s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ni/ni178.1p87.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/yo/yo171.0p112.8s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/te/te171.9p111.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ux/ux172.4p109.3s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ay/ay198.1p97.9s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/hi/hi189.6p102.1s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ol/ol174.5p110.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/re/re189.6p102.1s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ii/ii137.0p104.3s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/av/av179.0p113.9s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ad/ad171.0p115.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/mu/mu167.8p106.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/zi/zi171.7p112.3s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ip/ip208.6p93.2s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ul/ul192.7p116.7s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ri/ri178.1p87.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/uk/uk171.3p111.7s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/og/og172.1p113.0s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ye/ye172.5p112.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/wi/wi170.9p112.2s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ag/ag171.5p113.1s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/az/az172.4p109.3s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ge/ge172.1p113.0s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/wo/wo183.0p130.4s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/iz/iz172.5p112.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ur/ur161.1p96.8s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ex/ex170.1p119.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ye/ye170.9p112.2s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/up/up179.0p113.9s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/bi/bi168.9p125.4s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/na/na174.5p100.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/fi/fi171.5p113.1s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/wa/wa183.0p105.7s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/te/te198.1p97.9s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ig/ig171.0p112.8s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/at/at161.1p119.4s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ya/ya189.6p102.1s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/xu/xu165.6p144.0s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/op/op171.0p115.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ol/ol171.3p111.7s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ya/ya163.4p157.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ed/ed194.5p150.4s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ig/ig183.0p105.7s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/is/is171.3p111.7s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/be/be178.1p87.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/uz/uz184.8p115.1s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/bu/bu189.6p102.1s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ew/ew171.0p112.8s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ax/ax180.4p80.1s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ol/ol155.5p123.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ax/ax161.1p96.8s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ro/ro155.5p123.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ox/ox137.0p104.3s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/eh/eh172.1p113.0s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ov/ov208.6p93.2s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/zu/zu163.4p157.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/on/on184.8p115.1s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ig/ig164.7p110.8s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/yu/yu172.4p109.3s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/tu/tu183.0p130.4s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/al/al172.4p111.9s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/aw/aw168.9p125.4s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/xa/xa163.4p157.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/di/di174.5p110.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ad/ad151.6p83.9s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/af/af183.0p130.4s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/in/in174.5p110.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/re/re174.9p113.0s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/fi/fi171.9p111.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ba/ba176.1p94.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ez/ez155.5p123.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ur/ur163.4p157.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ef/ef172.4p109.3s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ar/ar183.0p130.4s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/at/at208.6p93.2s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ix/ix176.1p94.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/en/en176.1p94.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/it/it202.7p118.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ev/ev172.4p111.9s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/pa/pa202.7p118.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ew/ew167.4p133.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ip/ip163.4p157.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/li/li174.5p100.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/te/te153.0p108.1s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/il/il179.0p113.9s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/pa/pa161.1p96.8s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/gi/gi167.8p106.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/il/il155.5p123.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/mu/mu156.7p90.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/pi/pi167.4p133.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ak/ak202.7p118.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/pe/pe148.8p128.8s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ev/ev165.6p144.0s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/yi/yi156.7p90.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/as/as171.0p115.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/gu/gu215.2p121.0s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/re/re164.7p110.8s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/wi/wi161.1p96.8s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/av/av183.0p130.4s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ba/ba208.6p93.2s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/yi/yi208.6p93.2s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/on/on170.1p119.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/oy/oy171.0p112.8s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/el/el151.6p83.9s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ez/ez164.7p110.8s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/oo/oo170.9p112.2s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/so/so161.1p96.8s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ul/ul189.6p102.1s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/iy/iy176.1p94.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/su/su156.7p90.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ra/ra161.1p96.8s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/et/et164.7p110.8s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/zo/zo192.7p116.7s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/em/em189.6p102.1s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/be/be192.7p116.7s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ik/ik170.9p112.2s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ki/ki178.1p87.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/mu/mu163.4p157.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/vi/vi156.7p90.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ud/ud170.0p109.7s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ti/ti171.5p113.1s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/si/si198.1p97.9s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ib/ib169.0p114.0s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ah/ah215.2p121.0s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/pu/pu164.7p110.8s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ii/ii183.0p105.7s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/fo/fo172.4p109.3s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/yo/yo171.9p111.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ne/ne202.7p118.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/en/en175.7p118.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ab/ab161.1p96.8s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/uu/uu168.6p111.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/af/af172.1p113.0s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ko/ko164.7p110.8s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ol/ol171.7p112.3s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/el/el208.6p93.2s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/bu/bu169.0p114.0s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ga/ga165.7p116.2s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/aa/aa174.5p100.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/oo/oo172.4p111.9s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ku/ku178.0p108.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/uu/uu188.1p139.2s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/le/le172.5p112.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/oh/oh156.7p90.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/re/re188.1p139.2s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ke/ke159.5p109.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/na/na170.9p112.2s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ka/ka178.0p108.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/xi/xi170.1p119.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ye/ye178.1p87.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/us/us171.0p115.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/on/on164.7p110.8s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ba/ba172.4p109.3s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/es/es178.8p123.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/oo/oo165.7p116.2s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/li/li215.2p121.0s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ep/ep184.8p115.1s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/uv/uv159.5p109.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/em/em178.8p123.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/eh/eh153.0p108.1s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ul/ul178.1p87.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/de/de215.2p121.0s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ri/ri161.1p96.8s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/wu/wu180.4p80.1s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/xa/xa141.3p135.4s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/me/me145.5p106.3s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/hi/hi171.9p111.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ow/ow159.5p109.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ah/ah172.5p112.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ik/ik183.0p105.7s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/vi/vi168.6p111.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/fe/fe145.5p106.3s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/nu/nu165.7p116.2s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ex/ex178.8p123.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/fi/fi148.8p128.8s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ux/ux174.5p110.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ix/ix174.5p110.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/le/le151.6p83.9s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/we/we183.0p105.7s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ku/ku202.7p118.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ag/ag165.7p116.2s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ha/ha165.7p116.2s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/gu/gu169.0p114.0s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/xa/xa156.7p90.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/uw/uw163.4p157.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/se/se192.7p116.7s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/re/re165.6p144.0s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ul/ul172.1p113.0s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/eb/eb170.9p112.2s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ib/ib179.0p113.9s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ti/ti167.8p106.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/va/va178.1p87.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ug/ug156.7p90.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ez/ez202.7p118.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ah/ah151.6p83.9s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/bi/bi192.7p116.7s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/eg/eg176.1p94.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ub/ub183.0p105.7s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/hi/hi174.9p113.0s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/er/er179.0p113.9s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/yo/yo141.3p135.4s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ak/ak165.7p116.2s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/yu/yu202.7p118.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/eb/eb215.2p121.0s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/em/em170.9p112.2s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ep/ep183.0p105.7s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/su/su171.0p115.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/pe/pe167.8p106.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/xa/xa184.8p115.1s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/va/va165.6p144.0s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/uf/uf172.1p113.0s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ow/ow176.1p94.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/oh/oh137.0p104.3s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/so/so179.0p113.9s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/wi/wi172.4p111.9s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ke/ke178.0p108.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/di/di183.0p105.7s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/iw/iw208.6p93.2s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/na/na159.5p109.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/da/da151.6p83.9s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/no/no184.8p115.1s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/et/et145.5p106.3s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/uk/uk168.9p125.4s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/eh/eh171.0p112.8s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/um/um172.1p113.0s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/di/di192.7p116.7s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/pi/pi170.9p112.2s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/al/al184.8p115.1s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/uw/uw171.9p111.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/xo/xo170.1p119.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ig/ig173.3p105.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/yo/yo169.0p114.0s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/iv/iv175.7p118.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ka/ka174.9p113.0s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ho/ho173.5p115.0s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/uy/uy174.5p110.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ab/ab175.7p118.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/og/og183.0p130.4s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/we/we171.3p111.7s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/id/id165.7p116.2s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/us/us153.0p108.1s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/oz/oz208.6p93.2s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/zi/zi198.1p97.9s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/su/su180.4p80.1s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ep/ep159.5p109.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/vu/vu172.4p109.3s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/oz/oz163.4p157.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ma/ma174.5p100.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/uk/uk164.9p102.1s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/it/it179.0p113.9s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/le/le184.8p115.1s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/os/os202.7p118.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ho/ho171.0p115.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ee/ee148.8p128.8s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ob/ob168.6p111.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/zo/zo164.9p102.1s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/lo/lo183.0p105.7s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/fo/fo172.1p113.0s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ne/ne165.6p144.0s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/wa/wa169.0p114.0s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ow/ow178.1p87.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/uu/uu141.3p135.4s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/us/us165.7p116.2s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ni/ni178.0p108.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/gi/gi215.2p121.0s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/lu/lu167.4p133.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ta/ta174.5p110.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/te/te180.4p80.1s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ad/ad183.0p130.4s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/su/su172.5p112.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/iv/iv194.5p150.4s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/fi/fi202.7p118.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ot/ot198.1p97.9s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ye/ye171.0p112.8s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uv/uv171.3p111.7s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ez/ez173.3p105.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ub/ub161.1p119.4s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/as/as178.1p87.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ur/ur183.0p105.7s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/do/do178.8p123.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/un/un163.4p157.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/wo/wo170.9p112.2s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/id/id170.9p112.2s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ix/ix189.6p102.1s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/um/um168.6p111.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/eg/eg171.9p111.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/oo/oo155.5p123.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/el/el174.5p110.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/re/re174.5p110.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ve/ve168.6p111.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/uv/uv171.5p113.1s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/gu/gu171.9p111.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/de/de175.7p118.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/xa/xa171.3p111.7s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/iz/iz215.2p121.0s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/en/en171.5p113.1s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/pa/pa148.8p128.8s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ux/ux165.6p144.0s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/no/no171.0p112.8s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/eh/eh183.0p105.7s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/aw/aw183.0p105.7s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/om/om171.0p112.8s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/bu/bu174.9p113.0s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ri/ri171.0p112.8s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/og/og168.6p111.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ut/ut145.5p106.3s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ew/ew174.9p113.0s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/la/la183.0p105.7s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/em/em161.1p119.4s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/fo/fo170.1p119.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/lu/lu170.0p109.7s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/oh/oh141.3p135.4s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ok/ok192.7p116.7s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ev/ev151.6p83.9s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ur/ur198.1p97.9s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ir/ir165.6p144.0s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/bo/bo156.7p90.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/wi/wi173.5p115.0s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ow/ow183.0p130.4s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/af/af184.8p115.1s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ne/ne169.0p114.0s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ve/ve174.5p110.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ox/ox165.7p116.2s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ag/ag141.3p135.4s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/za/za168.6p111.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ra/ra171.3p111.7s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ip/ip174.9p113.0s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ew/ew165.7p116.2s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/te/te171.3p111.7s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ne/ne161.1p96.8s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ok/ok171.0p115.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/va/va164.9p102.1s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ib/ib167.8p106.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/xi/xi208.6p93.2s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/av/av170.0p109.7s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/du/du148.8p128.8s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/mo/mo175.7p118.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ed/ed169.0p114.0s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/xo/xo164.7p110.8s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ad/ad188.1p139.2s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/al/al167.8p106.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/wo/wo153.0p108.1s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ub/ub141.3p135.4s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/zu/zu171.0p115.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/uf/uf163.4p157.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/su/su161.1p119.4s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/pi/pi169.0p114.0s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/wu/wu145.5p106.3s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ve/ve172.4p109.3s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/zi/zi167.8p106.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ik/ik168.6p111.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/pu/pu174.9p113.0s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/uz/uz174.5p110.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/go/go173.5p115.0s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ab/ab208.6p93.2s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/po/po194.5p150.4s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/va/va171.0p112.8s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ay/ay161.1p119.4s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/be/be172.4p109.3s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ki/ki172.4p111.9s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/re/re153.0p108.1s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/et/et165.6p144.0s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/hi/hi155.5p123.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ih/ih178.8p123.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ah/ah170.1p119.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ib/ib153.0p108.1s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/eg/eg170.1p119.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/zi/zi173.3p105.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ez/ez215.2p121.0s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/li/li163.4p157.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/fa/fa180.4p80.1s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/os/os161.1p96.8s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/xu/xu153.0p108.1s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ep/ep156.7p90.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ti/ti171.9p111.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/mu/mu172.5p112.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/iw/iw171.3p111.7s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/wi/wi189.6p102.1s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/fa/fa171.0p112.8s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ed/ed171.9p111.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ug/ug171.3p111.7s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ux/ux155.5p123.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/iz/iz163.4p157.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ef/ef164.9p102.1s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/xo/xo183.0p105.7s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/om/om173.5p115.0s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/un/un170.9p112.2s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/il/il192.7p116.7s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ra/ra172.4p109.3s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/yi/yi171.3p111.7s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ap/ap173.3p105.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/zo/zo183.0p105.7s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/bo/bo170.9p112.2s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/il/il215.2p121.0s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/iv/iv159.5p109.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/el/el175.7p118.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/iv/iv188.1p139.2s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/fu/fu165.6p144.0s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/mu/mu137.0p104.3s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/se/se151.6p83.9s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ir/ir173.3p105.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ii/ii169.0p114.0s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ug/ug178.0p108.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/la/la148.8p128.8s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ro/ro176.1p94.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/zo/zo180.4p80.1s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/wo/wo194.5p150.4s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/vo/vo159.5p109.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/uh/uh173.5p115.0s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/up/up183.0p105.7s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ix/ix163.4p157.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ii/ii167.4p133.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ax/ax183.0p105.7s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ba/ba164.7p110.8s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ba/ba145.5p106.3s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/zo/zo153.0p108.1s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/id/id180.4p80.1s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/hu/hu165.6p144.0s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ra/ra172.1p113.0s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/yi/yi172.5p112.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/id/id155.5p123.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/so/so176.1p94.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ni/ni171.0p112.8s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ee/ee155.5p123.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/os/os178.1p87.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ow/ow174.5p100.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ak/ak215.2p121.0s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/nu/nu171.5p113.1s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/wu/wu189.6p102.1s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/we/we165.6p144.0s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/er/er151.6p83.9s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/in/in169.0p114.0s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/uu/uu171.0p112.8s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/lo/lo178.8p123.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/lu/lu171.9p111.5s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ii/ii172.1p113.0s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/zi/zi173.5p115.0s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/be/be178.0p108.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/mu/mu173.5p115.0s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ga/ga151.6p83.9s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/sa/sa156.7p90.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/of/of141.3p135.4s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ek/ek164.9p102.1s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ki/ki172.5p112.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/et/et172.4p111.9s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/uk/uk208.6p93.2s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ye/ye156.7p90.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ee/ee208.6p93.2s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ek/ek169.0p114.0s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ha/ha171.3p111.7s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/am/am178.1p87.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/hu/hu137.0p104.3s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/iv/iv171.5p113.1s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/si/si137.0p104.3s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/so/so165.6p144.0s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ta/ta153.0p108.1s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/eb/eb156.7p90.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/va/va163.4p157.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/se/se202.7p118.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/da/da176.1p94.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/uk/uk172.4p111.9s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ni/ni175.7p118.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/xu/xu198.1p97.9s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/uk/uk137.0p104.3s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/az/az178.1p87.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ru/ru164.7p110.8s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/mu/mu184.8p115.1s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ma/ma164.7p110.8s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/eb/eb179.0p113.9s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/nu/nu171.0p112.8s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/na/na148.8p128.8s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/na/na179.0p113.9s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/an/an170.1p119.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ir/ir178.1p87.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/il/il175.7p118.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/di/di173.3p105.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ra/ra183.0p105.7s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ow/ow171.9p111.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ek/ek164.7p110.8s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/av/av159.5p109.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/xa/xa189.6p102.1s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ne/ne171.3p111.7s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ih/ih171.0p112.8s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/be/be159.5p109.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/fi/fi141.3p135.4s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/uh/uh172.4p109.3s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/en/en174.9p113.0s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ru/ru163.4p157.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/vu/vu145.5p106.3s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ub/ub151.6p83.9s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ef/ef141.3p135.4s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/to/to184.8p115.1s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/am/am184.8p115.1s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ar/ar184.8p115.1s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ot/ot172.4p111.9s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/pa/pa169.0p114.0s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ya/ya179.0p113.9s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/uk/uk192.7p116.7s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/af/af171.0p112.8s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/os/os198.1p97.9s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ur/ur176.1p94.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/fu/fu169.0p114.0s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/di/di137.0p104.3s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/us/us183.0p105.7s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/um/um215.2p121.0s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/uz/uz170.1p119.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ev/ev165.7p116.2s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/om/om178.0p108.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ow/ow172.1p113.0s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/do/do164.7p110.8s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ur/ur179.0p113.9s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/fi/fi183.0p105.7s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ek/ek170.9p112.2s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ye/ye192.7p116.7s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/if/if175.7p118.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/he/he174.5p100.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/pa/pa194.5p150.4s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ey/ey164.7p110.8s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/bo/bo172.1p113.0s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ap/ap174.5p110.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/yi/yi188.1p139.2s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ep/ep155.5p123.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/im/im188.1p139.2s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ro/ro168.9p125.4s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ii/ii171.7p112.3s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/uu/uu198.1p97.9s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/lu/lu171.5p113.1s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ve/ve137.0p104.3s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/mo/mo164.7p110.8s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ro/ro171.0p112.8s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ap/ap170.0p109.7s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/or/or168.6p111.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/iw/iw183.0p105.7s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ii/ii170.1p119.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/at/at145.5p106.3s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/an/an155.5p123.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/fe/fe183.0p105.7s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/bi/bi175.7p118.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/mu/mu171.0p112.8s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/iw/iw183.0p130.4s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/is/is176.1p94.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ti/ti175.7p118.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/fe/fe173.3p105.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/af/af174.5p110.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ed/ed156.7p90.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/xu/xu176.1p94.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/oz/oz189.6p102.1s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/im/im170.0p109.7s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/om/om168.6p111.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ud/ud178.0p108.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ro/ro198.1p97.9s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/aw/aw174.5p100.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ni/ni179.0p113.9s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ap/ap159.5p109.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ed/ed202.7p118.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ad/ad164.9p102.1s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/er/er163.4p157.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/pi/pi183.0p130.4s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ka/ka164.7p110.8s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/wo/wo180.4p80.1s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/at/at171.9p111.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/sa/sa172.4p109.3s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/xi/xi168.6p111.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/sa/sa153.0p108.1s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/vu/vu165.6p144.0s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ta/ta178.1p87.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/bu/bu153.0p108.1s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ap/ap161.1p119.4s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/oz/oz170.9p112.2s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ox/ox208.6p93.2s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ip/ip171.0p112.8s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/su/su168.9p125.4s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ef/ef215.2p121.0s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/op/op168.9p125.4s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/in/in198.1p97.9s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/li/li174.9p113.0s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ux/ux171.3p111.7s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/no/no172.5p112.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ah/ah175.7p118.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ep/ep141.3p135.4s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/iy/iy173.5p115.0s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ug/ug172.4p111.9s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/el/el176.1p94.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/se/se175.7p118.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ki/ki148.8p128.8s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/et/et170.1p119.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ok/ok165.6p144.0s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/su/su171.0p112.8s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/xi/xi172.4p109.3s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/et/et155.5p123.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/zi/zi165.7p116.2s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ku/ku161.1p96.8s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/eh/eh173.3p105.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/gi/gi178.1p87.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/em/em172.4p109.3s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/al/al171.5p113.1s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/fa/fa174.5p100.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ik/ik175.7p118.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/xe/xe151.6p83.9s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/uy/uy145.5p106.3s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/uw/uw180.4p80.1s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ut/ut169.0p114.0s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/av/av164.9p102.1s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ex/ex176.1p94.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/bo/bo176.1p94.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/pe/pe171.5p113.1s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/it/it169.0p114.0s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ni/ni194.5p150.4s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ag/ag161.1p119.4s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ig/ig202.7p118.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ii/ii153.0p108.1s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/os/os178.8p123.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ow/ow172.4p109.3s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ef/ef161.1p119.4s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/em/em137.0p104.3s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ox/ox163.4p157.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/pe/pe145.5p106.3s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/wa/wa188.1p139.2s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ba/ba175.7p118.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/lo/lo188.1p139.2s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/id/id168.6p111.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/xu/xu175.7p118.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/xa/xa192.7p116.7s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ap/ap172.4p111.9s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ay/ay156.7p90.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/eg/eg164.7p110.8s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ga/ga198.1p97.9s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/na/na167.4p133.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ez/ez164.9p102.1s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/uy/uy188.1p139.2s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/am/am174.5p100.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/mu/mu208.6p93.2s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ay/ay148.8p128.8s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/uu/uu167.4p133.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/wi/wi175.7p118.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ak/ak170.9p112.2s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ii/ii170.9p112.2s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/il/il172.4p111.9s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ni/ni164.9p102.1s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/am/am183.0p130.4s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/an/an184.8p115.1s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/wi/wi137.0p104.3s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/oo/oo180.4p80.1s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/at/at171.7p112.3s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/is/is156.7p90.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ru/ru175.7p118.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/uh/uh172.5p112.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ib/ib156.7p90.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ak/ak141.3p135.4s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ge/ge168.9p125.4s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/li/li175.7p118.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/vo/vo170.9p112.2s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/an/an198.1p97.9s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/uk/uk215.2p121.0s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ev/ev198.1p97.9s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ow/ow168.6p111.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/mu/mu153.0p108.1s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/tu/tu155.5p123.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/nu/nu180.4p80.1s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ta/ta156.7p90.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ap/ap172.1p113.0s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/it/it192.7p116.7s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/lo/lo164.7p110.8s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ve/ve184.8p115.1s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ta/ta168.9p125.4s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/og/og198.1p97.9s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/af/af170.9p112.2s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/bu/bu171.0p115.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ar/ar188.1p139.2s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/to/to171.0p115.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/tu/tu165.7p116.2s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/og/og172.4p111.9s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/os/os170.9p112.2s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/be/be174.5p110.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ir/ir178.8p123.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/pa/pa171.0p115.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ye/ye174.9p113.0s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ip/ip170.1p119.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ah/ah165.6p144.0s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/un/un164.9p102.1s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/vu/vu161.1p119.4s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ef/ef155.5p123.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ve/ve161.1p119.4s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/zu/zu179.0p113.9s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/fu/fu137.0p104.3s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/re/re208.6p93.2s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/si/si172.4p109.3s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ow/ow171.5p113.1s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/on/on145.5p106.3s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/zi/zi169.0p114.0s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ug/ug171.0p115.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ze/ze168.9p125.4s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/si/si170.1p119.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/fi/fi171.7p112.3s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ef/ef173.5p115.0s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/wa/wa192.7p116.7s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/do/do155.5p123.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/az/az208.6p93.2s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/im/im165.6p144.0s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/un/un159.5p109.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/op/op151.6p83.9s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ne/ne174.5p100.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ze/ze161.1p119.4s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/mi/mi172.4p111.9s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/va/va168.9p125.4s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ad/ad161.1p96.8s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ke/ke165.7p116.2s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/al/al178.1p87.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/uy/uy169.0p114.0s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/po/po141.3p135.4s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/os/os164.7p110.8s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/oh/oh188.1p139.2s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ad/ad163.4p157.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ab/ab156.7p90.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/wa/wa171.3p111.7s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ha/ha164.7p110.8s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/if/if168.6p111.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/zo/zo172.5p112.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/im/im174.9p113.0s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/so/so174.5p100.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ar/ar163.4p157.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ew/ew164.9p102.1s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/if/if171.3p111.7s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/xa/xa176.1p94.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ni/ni173.5p115.0s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ah/ah178.1p87.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/fo/fo183.0p105.7s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ow/ow171.3p111.7s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/om/om167.4p133.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/od/od164.7p110.8s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/li/li171.9p111.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/gi/gi170.1p119.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/wi/wi180.4p80.1s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ze/ze208.6p93.2s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/um/um167.8p106.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ux/ux164.7p110.8s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/um/um169.0p114.0s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/mu/mu198.1p97.9s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ki/ki171.7p112.3s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/be/be169.0p114.0s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ri/ri170.0p109.7s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/gu/gu156.7p90.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ke/ke198.1p97.9s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ha/ha172.4p111.9s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ah/ah171.0p112.8s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ib/ib155.5p123.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ge/ge189.6p102.1s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/us/us188.1p139.2s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/uw/uw148.8p128.8s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/gi/gi156.7p90.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/is/is161.1p96.8s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ox/ox180.4p80.1s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/in/in161.1p119.4s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/fa/fa173.5p115.0s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/on/on174.9p113.0s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/uh/uh156.7p90.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ux/ux192.7p116.7s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/is/is171.7p112.3s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/od/od174.5p100.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/zi/zi172.4p111.9s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ke/ke174.5p110.6s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/no/no183.0p105.7s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/zu/zu171.7p112.3s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/zu/zu173.3p105.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/so/so170.9p112.2s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/to/to172.1p113.0s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/it/it174.5p110.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/un/un180.4p80.1s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/el/el170.0p109.7s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ed/ed148.8p128.8s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/og/og159.5p109.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/pe/pe172.4p111.9s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/fo/fo175.7p118.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ih/ih178.0p108.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ho/ho153.0p108.1s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ud/ud192.7p116.7s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/en/en167.8p106.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ev/ev161.1p96.8s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/fa/fa165.7p116.2s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/fu/fu215.2p121.0s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/to/to148.8p128.8s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/vo/vo173.3p105.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/oo/oo137.0p104.3s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/wa/wa175.7p118.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ip/ip168.6p111.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/im/im172.5p112.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/om/om141.3p135.4s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/oh/oh172.5p112.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/iw/iw172.1p113.0s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/mu/mu178.1p87.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/il/il171.5p113.1s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/we/we189.6p102.1s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/uk/uk163.4p157.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/us/us184.8p115.1s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ix/ix165.7p116.2s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ir/ir176.1p94.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/an/an169.0p114.0s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/el/el198.1p97.9s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ti/ti180.4p80.1s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ib/ib161.1p119.4s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/go/go172.4p111.9s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ke/ke170.0p109.7s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/wu/wu165.6p144.0s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ho/ho171.5p113.1s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/oh/oh153.0p108.1s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/op/op175.7p118.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ti/ti170.9p112.2s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/mi/mi183.0p130.4s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ge/ge178.8p123.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/er/er170.1p119.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/be/be168.9p125.4s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ob/ob172.5p112.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/if/if171.9p111.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/im/im175.7p118.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/da/da164.9p102.1s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/le/le159.5p109.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ab/ab165.6p144.0s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ub/ub170.9p112.2s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/fi/fi180.4p80.1s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ol/ol171.0p112.8s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/xu/xu178.1p87.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ni/ni183.0p130.4s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ud/ud198.1p97.9s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/id/id178.8p123.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ni/ni178.8p123.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ow/ow170.0p109.7s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/iz/iz164.7p110.8s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/pu/pu137.0p104.3s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/xu/xu174.5p110.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ez/ez178.8p123.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ub/ub165.6p144.0s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/za/za165.7p116.2s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ek/ek178.0p108.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/si/si202.7p118.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/aw/aw171.3p111.7s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/el/el165.7p116.2s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/vi/vi167.4p133.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/aw/aw151.6p83.9s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/va/va192.7p116.7s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ex/ex164.7p110.8s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/um/um153.0p108.1s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/su/su202.7p118.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/vi/vi178.1p87.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ku/ku183.0p105.7s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/do/do167.8p106.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/da/da156.7p90.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/te/te145.5p106.3s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/up/up145.5p106.3s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/yi/yi172.4p111.9s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/iz/iz159.5p109.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/bu/bu172.4p111.9s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/od/od183.0p105.7s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/of/of183.0p130.4s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/uz/uz179.0p113.9s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ri/ri180.4p80.1s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ur/ur172.4p109.3s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ke/ke188.1p139.2s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/be/be178.8p123.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ez/ez194.5p150.4s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/eh/eh167.8p106.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/mo/mo171.3p111.7s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/wi/wi215.2p121.0s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/no/no171.0p115.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/zu/zu167.4p133.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/he/he153.0p108.1s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/mu/mu151.6p83.9s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ne/ne165.7p116.2s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/mo/mo171.7p112.3s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ik/ik167.8p106.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/us/us173.3p105.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ug/ug174.5p110.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/de/de179.0p113.9s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/po/po179.0p113.9s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/fu/fu171.5p113.1s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/on/on165.6p144.0s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/eh/eh170.9p112.2s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/up/up174.5p110.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ar/ar171.9p111.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/op/op174.5p110.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/va/va167.8p106.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ul/ul175.7p118.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ma/ma153.0p108.1s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/pa/pa165.7p116.2s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/es/es153.0p108.1s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/lo/lo194.5p150.4s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/wo/wo174.5p110.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/oo/oo165.6p144.0s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ip/ip161.1p96.8s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ya/ya178.0p108.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/mu/mu176.1p94.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/na/na172.5p112.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ka/ka173.5p115.0s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/bu/bu171.5p113.1s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ba/ba172.5p112.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/uy/uy171.3p111.7s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/al/al168.9p125.4s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/gi/gi171.9p111.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ib/ib151.6p83.9s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ma/ma180.4p80.1s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/un/un174.5p110.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ul/ul165.7p116.2s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/zo/zo194.5p150.4s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ot/ot145.5p106.3s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/es/es180.4p80.1s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/eh/eh145.5p106.3s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ah/ah167.8p106.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/zu/zu153.0p108.1s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ap/ap173.5p115.0s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/na/na171.0p112.8s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ig/ig174.9p113.0s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ig/ig215.2p121.0s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ve/ve151.6p83.9s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ni/ni174.5p110.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/of/of167.8p106.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ye/ye161.1p96.8s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/pi/pi148.8p128.8s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/as/as161.1p119.4s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ob/ob188.1p139.2s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/od/od172.5p112.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/zo/zo168.9p125.4s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/nu/nu175.7p118.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ud/ud179.0p113.9s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/la/la172.4p109.3s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/fo/fo173.5p115.0s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/aw/aw155.5p123.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/hu/hu167.8p106.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/te/te171.5p113.1s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/em/em163.4p157.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/eb/eb168.9p125.4s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/og/og176.1p94.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/at/at173.3p105.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ib/ib180.4p80.1s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ik/ik165.6p144.0s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/is/is168.9p125.4s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ig/ig178.8p123.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/uk/uk168.6p111.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ra/ra155.5p123.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/sa/sa172.4p111.9s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/go/go165.7p116.2s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ra/ra171.0p115.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/yo/yo171.5p113.1s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/to/to151.6p83.9s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/vu/vu170.9p112.2s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/og/og170.9p112.2s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ve/ve169.0p114.0s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ix/ix183.0p105.7s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/te/te164.9p102.1s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/im/im168.9p125.4s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/gu/gu170.9p112.2s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/le/le179.0p113.9s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ak/ak183.0p105.7s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/aw/aw161.1p96.8s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ir/ir171.0p115.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ux/ux178.1p87.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/aa/aa174.9p113.0s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ip/ip188.1p139.2s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ot/ot151.6p83.9s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ko/ko137.0p104.3s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ko/ko172.1p113.0s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/fi/fi168.9p125.4s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/wa/wa141.3p135.4s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/bu/bu174.5p110.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/wi/wi167.4p133.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/hu/hu176.1p94.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/if/if148.8p128.8s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ir/ir183.0p105.7s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ro/ro184.8p115.1s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ub/ub168.6p111.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ot/ot192.7p116.7s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/iv/iv167.4p133.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/il/il174.5p100.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/yu/yu183.0p105.7s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/om/om156.7p90.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/or/or178.0p108.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ub/ub178.1p87.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/om/om171.0p115.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/iv/iv165.6p144.0s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/uy/uy171.0p112.8s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/su/su208.6p93.2s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/of/of168.9p125.4s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ru/ru161.1p119.4s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/oz/oz167.8p106.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/vo/vo192.7p116.7s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/em/em168.6p111.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ax/ax175.7p118.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/yo/yo164.7p110.8s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ag/ag155.5p123.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/pi/pi172.5p112.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/it/it170.0p109.7s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ob/ob171.5p113.1s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/bo/bo208.6p93.2s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ah/ah141.3p135.4s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/af/af167.4p133.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ep/ep194.5p150.4s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ud/ud188.1p139.2s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ku/ku153.0p108.1s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ir/ir167.8p106.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ip/ip171.5p113.1s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/uv/uv183.0p130.4s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/av/av151.6p83.9s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/iw/iw153.0p108.1s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/tu/tu170.0p109.7s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ep/ep180.4p80.1s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/im/im171.0p112.8s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/yi/yi164.9p102.1s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/po/po167.4p133.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ed/ed170.1p119.5s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/wo/wo169.0p114.0s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/xe/xe156.7p90.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/hu/hu161.1p96.8s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/fi/fi167.4p133.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/oh/oh159.5p109.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ko/ko174.9p113.0s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/of/of163.4p157.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/im/im208.6p93.2s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/vi/vi167.8p106.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ew/ew202.7p118.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ek/ek167.4p133.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ve/ve188.1p139.2s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/pi/pi194.5p150.4s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ih/ih156.7p90.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ti/ti161.1p119.4s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ri/ri171.7p112.3s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/fu/fu155.5p123.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/hi/hi172.4p109.3s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ad/ad171.0p112.8s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/wu/wu163.4p157.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/pu/pu168.6p111.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/is/is141.3p135.4s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/xa/xa170.1p119.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/hu/hu167.4p133.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ar/ar165.6p144.0s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ok/ok175.7p118.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ru/ru194.5p150.4s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/it/it168.6p111.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ga/ga189.6p102.1s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/uy/uy189.6p102.1s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/oy/oy171.0p115.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/li/li192.7p116.7s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ha/ha178.8p123.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ir/ir145.5p106.3s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ro/ro137.0p104.3s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/of/of174.9p113.0s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/el/el184.8p115.1s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/hu/hu184.8p115.1s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/iz/iz165.7p116.2s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/as/as171.9p111.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/re/re178.0p108.5s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ya/ya175.7p118.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/eb/eb174.5p100.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/pa/pa172.5p112.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/uu/uu171.3p111.7s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/si/si178.8p123.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/mo/mo174.5p110.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/da/da172.4p111.9s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ko/ko208.6p93.2s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/yo/yo164.9p102.1s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ah/ah171.3p111.7s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ex/ex161.1p119.4s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/xe/xe168.9p125.4s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/oz/oz194.5p150.4s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/uz/uz178.0p108.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/eh/eh141.3p135.4s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/or/or202.7p118.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ay/ay173.3p105.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ru/ru137.0p104.3s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/xe/xe179.0p113.9s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ge/ge169.0p114.0s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/iy/iy148.8p128.8s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/av/av198.1p97.9s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ef/ef172.4p111.9s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ax/ax173.3p105.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/aw/aw169.0p114.0s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ap/ap169.0p114.0s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/wi/wi174.5p110.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/es/es161.1p96.8s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/et/et159.5p109.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/xo/xo148.8p128.8s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/uw/uw171.0p115.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ku/ku192.7p116.7s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/no/no174.5p110.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/fu/fu188.1p139.2s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ru/ru167.8p106.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/oh/oh172.1p113.0s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ib/ib178.8p123.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ol/ol176.1p94.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ti/ti164.7p110.8s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/fi/fi189.6p102.1s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ur/ur208.6p93.2s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ip/ip172.4p109.3s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/eh/eh137.0p104.3s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/im/im178.1p87.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ti/ti161.1p96.8s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ni/ni172.1p113.0s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ay/ay171.0p115.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/uk/uk198.1p97.9s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ug/ug164.7p110.8s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/as/as168.9p125.4s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/vi/vi164.9p102.1s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ib/ib172.4p109.3s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ni/ni170.9p112.2s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ye/ye137.0p104.3s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/bo/bo215.2p121.0s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/oy/oy202.7p118.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/vu/vu151.6p83.9s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/iy/iy145.5p106.3s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/is/is178.0p108.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/to/to159.5p109.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/mo/mo161.1p119.4s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/na/na174.5p110.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ni/ni163.4p157.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/uv/uv208.6p93.2s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ax/ax170.9p112.2s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/uk/uk179.0p113.9s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ab/ab172.1p113.0s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ep/ep171.0p112.8s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/og/og184.8p115.1s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/uw/uw170.9p112.2s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/az/az164.9p102.1s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/so/so141.3p135.4s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ar/ar176.1p94.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ro/ro170.9p112.2s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/eb/eb155.5p123.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/uz/uz171.5p113.1s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/xa/xa198.1p97.9s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ak/ak167.8p106.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ho/ho178.0p108.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ed/ed171.0p112.8s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ar/ar159.5p109.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/iz/iz155.5p123.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ed/ed173.3p105.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ig/ig161.1p119.4s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/it/it172.1p113.0s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/az/az174.5p110.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ro/ro178.1p87.6s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/uw/uw141.3p135.4s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/oz/oz174.5p100.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/yo/yo171.7p112.3s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/oy/oy169.0p114.0s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/eh/eh178.1p87.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/sa/sa170.9p112.2s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/so/so171.7p112.3s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/es/es178.1p87.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ah/ah169.0p114.0s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/op/op163.4p157.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/iw/iw178.8p123.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/am/am137.0p104.3s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/se/se183.0p130.4s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/gu/gu178.0p108.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ol/ol168.6p111.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/er/er171.3p111.7s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/go/go192.7p116.7s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ix/ix178.1p87.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/vu/vu161.1p96.8s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/em/em174.5p110.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ku/ku159.5p109.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/xo/xo178.0p108.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/vu/vu163.4p157.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/za/za202.7p118.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/na/na164.9p102.1s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ru/ru171.5p113.1s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/az/az179.0p113.9s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/li/li161.1p119.4s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/pa/pa208.6p93.2s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/lo/lo189.6p102.1s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ru/ru141.3p135.4s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/xa/xa164.9p102.1s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ri/ri156.7p90.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ag/ag208.6p93.2s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/am/am178.8p123.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ti/ti176.1p94.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/fa/fa215.2p121.0s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/at/at202.7p118.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ek/ek172.5p112.5s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/fo/fo183.0p130.4s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/hi/hi198.1p97.9s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/oz/oz169.0p114.0s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ep/ep165.7p116.2s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/yu/yu161.1p119.4s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/is/is215.2p121.0s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ye/ye170.1p119.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ed/ed164.7p110.8s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/iy/iy183.0p130.4s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/si/si215.2p121.0s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ey/ey170.0p109.7s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/us/us163.4p157.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/bo/bo198.1p97.9s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/iw/iw151.6p83.9s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/po/po176.1p94.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/un/un172.4p111.9s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/uf/uf184.8p115.1s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ha/ha164.9p102.1s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ob/ob189.6p102.1s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/hu/hu151.6p83.9s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/su/su178.1p87.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/lo/lo178.1p87.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/tu/tu148.8p128.8s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/fa/fa159.5p109.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ir/ir141.3p135.4s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/il/il172.1p113.0s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/eh/eh194.5p150.4s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ih/ih165.7p116.2s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/fi/fi159.5p109.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/fa/fa178.0p108.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/se/se178.8p123.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/uy/uy208.6p93.2s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ah/ah171.7p112.3s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/oy/oy172.5p112.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/or/or151.6p83.9s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/es/es169.0p114.0s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ov/ov198.1p97.9s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ii/ii171.0p115.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/eh/eh164.7p110.8s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/yu/yu215.2p121.0s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/re/re163.4p157.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/an/an175.7p118.5s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/oy/oy161.1p96.8s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/og/og167.8p106.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/me/me183.0p130.4s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/es/es178.0p108.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/af/af192.7p116.7s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/zu/zu183.0p105.7s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/po/po180.4p80.1s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/iy/iy165.6p144.0s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/uk/uk155.5p123.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ox/ox164.7p110.8s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ew/ew137.0p104.3s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/vi/vi172.4p111.9s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/fo/fo137.0p104.3s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/gu/gu168.9p125.4s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/od/od145.5p106.3s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ur/ur172.1p113.0s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ed/ed215.2p121.0s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/em/em164.9p102.1s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/eb/eb148.8p128.8s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/yo/yo165.7p116.2s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/de/de171.0p112.8s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ud/ud172.4p111.9s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/xe/xe175.7p118.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/il/il184.8p115.1s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/te/te172.4p109.3s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/li/li194.5p150.4s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/eb/eb198.1p97.9s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/mi/mi192.7p116.7s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ro/ro171.3p111.7s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/uk/uk183.0p105.7s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/uu/uu137.0p104.3s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/we/we161.1p96.8s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/om/om155.5p123.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/il/il137.0p104.3s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/wi/wi170.1p119.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/du/du178.1p87.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ke/ke161.1p119.4s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/el/el163.4p157.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ak/ak184.8p115.1s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/am/am172.5p112.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ge/ge155.5p123.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/pi/pi172.4p111.9s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ya/ya148.8p128.8s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/il/il188.1p139.2s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/wo/wo172.4p111.9s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/bo/bo170.0p109.7s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/mu/mu145.5p106.3s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/go/go183.0p130.4s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/is/is171.9p111.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/bi/bi141.3p135.4s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/zi/zi178.0p108.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/it/it168.9p125.4s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/bu/bu163.4p157.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/pi/pi171.9p111.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/el/el183.0p130.4s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ex/ex165.7p116.2s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/wu/wu165.7p116.2s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/xo/xo174.9p113.0s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/po/po198.1p97.9s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/im/im163.4p157.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/iw/iw145.5p106.3s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/zu/zu167.8p106.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/av/av178.1p87.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/az/az180.4p80.1s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ek/ek174.9p113.0s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ip/ip137.0p104.3s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/aw/aw171.5p113.1s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/in/in159.5p109.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/nu/nu178.0p108.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ob/ob164.7p110.8s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/pu/pu178.8p123.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/en/en171.3p111.7s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/gu/gu145.5p106.3s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/da/da172.1p113.0s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/eb/eb180.4p80.1s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ir/ir178.0p108.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/en/en188.1p139.2s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/fa/fa172.5p112.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/li/li208.6p93.2s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/de/de208.6p93.2s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/en/en171.0p112.8s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/li/li172.1p113.0s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/il/il165.6p144.0s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/pi/pi179.0p113.9s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/hu/hu178.8p123.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/xu/xu170.9p112.2s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/xa/xa168.6p111.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ab/ab202.7p118.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ze/ze171.0p115.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/am/am176.1p94.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/xe/xe145.5p106.3s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ok/ok194.5p150.4s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ya/ya171.0p112.8s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ot/ot159.5p109.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/er/er170.0p109.7s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/we/we165.7p116.2s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/fo/fo171.9p111.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/vi/vi194.5p150.4s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ta/ta208.6p93.2s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/uu/uu169.0p114.0s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ra/ra164.7p110.8s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/xu/xu208.6p93.2s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/em/em176.1p94.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/or/or175.7p118.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/vo/vo188.1p139.2s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/og/og170.0p109.7s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/az/az184.8p115.1s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ey/ey167.8p106.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/bi/bi171.5p113.1s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/xa/xa179.0p113.9s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ar/ar178.1p87.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ir/ir169.0p114.0s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ik/ik172.5p112.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ka/ka168.9p125.4s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/is/is183.0p105.7s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/aw/aw165.7p116.2s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/of/of165.7p116.2s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/wo/wo172.4p109.3s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/aw/aw180.4p80.1s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ap/ap171.0p115.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ih/ih168.6p111.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/si/si173.5p115.0s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/si/si208.6p93.2s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/um/um168.9p125.4s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ot/ot169.0p114.0s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/oy/oy172.4p109.3s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/zu/zu198.1p97.9s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/un/un141.3p135.4s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/zu/zu141.3p135.4s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ag/ag171.3p111.7s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/pe/pe179.0p113.9s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ox/ox171.5p113.1s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/es/es176.1p94.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/fa/fa170.1p119.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/mi/mi175.7p118.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/go/go194.5p150.4s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ov/ov161.1p119.4s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/an/an171.7p112.3s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ya/ya194.5p150.4s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ez/ez172.5p112.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/pu/pu145.5p106.3s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/da/da178.8p123.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/za/za198.1p97.9s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ob/ob161.1p96.8s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/fo/fo174.9p113.0s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ub/ub153.0p108.1s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ek/ek159.5p109.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/iy/iy184.8p115.1s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/od/od163.4p157.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ep/ep171.9p111.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ka/ka167.8p106.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ib/ib183.0p130.4s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ip/ip171.3p111.7s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ig/ig153.0p108.1s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/su/su171.7p112.3s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/me/me178.1p87.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/no/no173.3p105.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/mo/mo172.4p111.9s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/av/av171.3p111.7s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/do/do165.7p116.2s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/il/il176.1p94.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ev/ev178.8p123.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/da/da174.5p100.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ar/ar164.7p110.8s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ag/ag178.0p108.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/we/we172.1p113.0s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/xo/xo172.1p113.0s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ud/ud167.8p106.5s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ov/ov170.0p109.7s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/xi/xi153.0p108.1s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/in/in151.6p83.9s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/we/we153.0p108.1s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ef/ef170.0p109.7s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ho/ho165.7p116.2s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ug/ug175.7p118.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ig/ig208.6p93.2s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ax/ax165.6p144.0s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ur/ur175.7p118.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ar/ar173.3p105.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/of/of173.5p115.0s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ag/ag174.5p110.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/de/de156.7p90.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ok/ok174.9p113.0s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/an/an172.4p109.3s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/di/di153.0p108.1s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ba/ba155.5p123.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/wo/wo148.8p128.8s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/su/su175.7p118.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/pu/pu161.1p96.8s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ho/ho145.5p106.3s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/zo/zo168.6p111.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/we/we161.1p119.4s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/tu/tu164.9p102.1s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ii/ii174.5p110.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/oh/oh170.0p109.7s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/em/em169.0p114.0s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/se/se165.7p116.2s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ge/ge171.7p112.3s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/fi/fi165.6p144.0s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/er/er155.5p123.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/xu/xu194.5p150.4s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/av/av167.8p106.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/du/du153.0p108.1s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ip/ip179.0p113.9s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ve/ve171.0p112.8s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/aw/aw165.6p144.0s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/el/el202.7p118.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/to/to171.9p111.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/id/id145.5p106.3s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ar/ar168.9p125.4s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ag/ag151.6p83.9s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ro/ro179.0p113.9s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/im/im164.7p110.8s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/xu/xu164.9p102.1s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/il/il164.9p102.1s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ne/ne183.0p130.4s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/yo/yo167.8p106.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/um/um167.4p133.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ox/ox155.5p123.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ap/ap170.9p112.2s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ek/ek156.7p90.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/fe/fe189.6p102.1s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/am/am188.1p139.2s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/em/em173.3p105.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ep/ep179.0p113.9s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/bu/bu170.0p109.7s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/er/er171.0p112.8s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/od/od171.0p115.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ov/ov164.9p102.1s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/oo/oo164.7p110.8s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/we/we184.8p115.1s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/an/an174.9p113.0s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/pi/pi184.8p115.1s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/xa/xa171.9p111.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ga/ga194.5p150.4s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ko/ko161.1p119.4s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ri/ri184.8p115.1s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ze/ze171.5p113.1s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/in/in171.0p115.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/se/se174.5p100.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ap/ap164.7p110.8s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/os/os145.5p106.3s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/os/os172.4p111.9s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/po/po173.5p115.0s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/em/em183.0p130.4s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/fi/fi173.3p105.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/du/du145.5p106.3s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ew/ew174.5p100.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/hu/hu170.9p112.2s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ug/ug171.9p111.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/su/su198.1p97.9s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/de/de161.1p119.4s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/aa/aa165.7p116.2s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/if/if172.4p109.3s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/im/im172.4p111.9s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/uf/uf137.0p104.3s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/pa/pa137.0p104.3s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/zi/zi176.1p94.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/az/az164.7p110.8s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/od/od153.0p108.1s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/zu/zu188.1p139.2s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/id/id137.0p104.3s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/fi/fi170.1p119.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/or/or165.7p116.2s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/yu/yu171.5p113.1s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/du/du178.0p108.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/of/of161.1p96.8s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ne/ne170.0p109.7s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/wi/wi171.0p112.8s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/wu/wu194.5p150.4s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/gu/gu174.9p113.0s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ko/ko194.5p150.4s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/de/de168.9p125.4s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/am/am202.7p118.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/go/go170.0p109.7s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ug/ug172.5p112.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/bo/bo183.0p130.4s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/of/of151.6p83.9s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/bo/bo184.8p115.1s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/pa/pa173.5p115.0s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ur/ur180.4p80.1s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/id/id168.9p125.4s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ub/ub180.4p80.1s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/pu/pu168.9p125.4s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/yi/yi171.0p112.8s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ya/ya178.1p87.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ix/ix148.8p128.8s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ox/ox169.0p114.0s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/un/un171.3p111.7s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ri/ri194.5p150.4s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ot/ot175.7p118.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/de/de159.5p109.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/af/af171.7p112.3s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/su/su159.5p109.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ad/ad178.0p108.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/uh/uh155.5p123.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ta/ta178.0p108.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ve/ve174.5p100.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/uk/uk172.1p113.0s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ay/ay175.7p118.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/sa/sa192.7p116.7s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/fu/fu164.7p110.8s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/we/we170.0p109.7s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ag/ag171.0p115.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ok/ok170.1p119.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/yu/yu168.9p125.4s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ap/ap184.8p115.1s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ug/ug178.8p123.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/uw/uw172.1p113.0s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/mi/mi169.0p114.0s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/he/he178.1p87.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ew/ew208.6p93.2s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/do/do148.8p128.8s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/he/he174.5p110.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ig/ig168.6p111.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/aa/aa145.5p106.3s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ba/ba151.6p83.9s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ga/ga171.0p115.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/if/if170.1p119.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/li/li170.1p119.5s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/va/va173.5p115.0s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ox/ox168.9p125.4s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/mo/mo170.0p109.7s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/tu/tu161.1p96.8s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ho/ho184.8p115.1s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/og/og151.6p83.9s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ri/ri202.7p118.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/oo/oo202.7p118.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ha/ha173.5p115.0s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/am/am172.1p113.0s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ra/ra159.5p109.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ov/ov171.7p112.3s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ar/ar178.8p123.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/go/go215.2p121.0s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/um/um183.0p130.4s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/al/al173.5p115.0s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ra/ra171.9p111.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ik/ik163.4p157.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ge/ge172.4p109.3s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ii/ii156.7p90.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ep/ep145.5p106.3s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/iw/iw194.5p150.4s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/om/om167.8p106.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ho/ho172.5p112.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ta/ta161.1p96.8s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ey/ey164.9p102.1s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/li/li169.0p114.0s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/la/la171.3p111.7s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ge/ge165.6p144.0s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/el/el180.4p80.1s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/oh/oh183.0p130.4s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/iy/iy159.5p109.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/vi/vi183.0p105.7s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/be/be208.6p93.2s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ur/ur215.2p121.0s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/og/og173.5p115.0s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ve/ve164.7p110.8s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ib/ib175.7p118.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/te/te172.4p111.9s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ib/ib159.5p109.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/us/us148.8p128.8s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/la/la188.1p139.2s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/wu/wu170.1p119.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/oh/oh151.6p83.9s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/oh/oh175.7p118.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/te/te178.8p123.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/za/za171.7p112.3s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/la/la171.7p112.3s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/il/il174.9p113.0s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/as/as165.6p144.0s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/eg/eg168.6p111.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/di/di172.1p113.0s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/gi/gi171.3p111.7s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ak/ak178.1p87.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/wa/wa178.1p87.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/xi/xi169.0p114.0s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ex/ex165.6p144.0s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ix/ix172.1p113.0s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/iv/iv171.3p111.7s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/fe/fe179.0p113.9s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/zu/zu176.1p94.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ta/ta175.7p118.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/na/na183.0p105.7s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/nu/nu141.3p135.4s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/if/if163.4p157.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/sa/sa175.7p118.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ow/ow153.0p108.1s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/is/is163.4p157.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ex/ex167.4p133.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/da/da172.4p109.3s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/af/af173.3p105.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/pi/pi165.7p116.2s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ud/ud173.5p115.0s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ya/ya174.9p113.0s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/hi/hi141.3p135.4s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ax/ax167.4p133.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/be/be161.1p96.8s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ha/ha163.4p157.6s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/es/es165.6p144.0s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/mo/mo194.5p150.4s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/aw/aw161.1p119.4s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/iw/iw168.9p125.4s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/la/la167.8p106.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/at/at174.5p110.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ve/ve153.0p108.1s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/zi/zi172.5p112.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/zo/zo171.0p115.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ve/ve171.3p111.7s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ad/ad172.1p113.0s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ek/ek168.6p111.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/uy/uy159.5p109.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/un/un168.9p125.4s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/po/po175.7p118.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/du/du198.1p97.9s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ar/ar202.7p118.6s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/go/go174.5p110.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/iz/iz178.8p123.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/fe/fe174.9p113.0s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ke/ke168.9p125.4s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ag/ag168.6p111.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ru/ru165.6p144.0s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/eh/eh174.9p113.0s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ed/ed178.8p123.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ku/ku188.1p139.2s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ba/ba179.0p113.9s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ip/ip156.7p90.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ir/ir172.5p112.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/tu/tu168.9p125.4s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/eh/eh163.4p157.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ur/ur164.7p110.8s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/pa/pa215.2p121.0s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/go/go198.1p97.9s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/uf/uf161.1p119.4s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/wi/wi178.8p123.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/po/po170.9p112.2s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ra/ra174.5p100.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/of/of169.0p114.0s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ka/ka172.1p113.0s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ay/ay171.5p113.1s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/on/on171.0p115.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ab/ab173.3p105.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ol/ol145.5p106.3s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/pa/pa153.0p108.1s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/fi/fi161.1p119.4s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/un/un173.5p115.0s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/iy/iy179.0p113.9s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ub/ub194.5p150.4s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/la/la171.9p111.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ot/ot180.4p80.1s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/zi/zi151.6p83.9s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/le/le161.1p96.8s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ah/ah184.8p115.1s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/uk/uk174.5p110.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/an/an141.3p135.4s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/az/az215.2p121.0s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/uu/uu176.1p94.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ey/ey170.9p112.2s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/be/be183.0p130.4s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/lu/lu169.0p114.0s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/yu/yu174.5p110.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/tu/tu178.0p108.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/hu/hu173.5p115.0s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/um/um172.4p111.9s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/be/be141.3p135.4s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/de/de165.6p144.0s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ab/ab168.6p111.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/pi/pi174.5p110.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/un/un173.3p105.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ni/ni173.3p105.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/bi/bi167.8p106.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/am/am167.8p106.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ot/ot165.7p116.2s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ki/ki174.5p110.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/an/an208.6p93.2s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/al/al174.5p100.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/zi/zi168.6p111.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ki/ki167.4p133.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/bo/bo178.8p123.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/fo/fo198.1p97.9s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/mo/mo189.6p102.1s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/mo/mo167.8p106.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ip/ip173.5p115.0s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ru/ru159.5p109.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/uw/uw171.7p112.3s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ex/ex180.4p80.1s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ev/ev153.0p108.1s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/po/po189.6p102.1s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ax/ax179.0p113.9s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/be/be164.9p102.1s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/wu/wu168.9p125.4s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/es/es141.3p135.4s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/af/af180.4p80.1s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/et/et151.6p83.9s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ag/ag153.0p108.1s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ur/ur167.4p133.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ug/ug171.7p112.3s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ko/ko171.9p111.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ix/ix151.6p83.9s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/xi/xi170.9p112.2s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/es/es179.0p113.9s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ek/ek172.4p111.9s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/we/we173.3p105.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/te/te178.0p108.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/bi/bi164.9p102.1s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/xa/xa183.0p130.4s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/bu/bu164.9p102.1s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/za/za183.0p130.4s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ep/ep164.9p102.1s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/na/na165.6p144.0s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ma/ma165.6p144.0s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/fa/fa183.0p105.7s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ra/ra165.6p144.0s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/oo/oo173.5p115.0s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/as/as174.5p100.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ef/ef180.4p80.1s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ow/ow161.1p119.4s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ko/ko171.0p112.8s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ih/ih171.7p112.3s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/bi/bi178.0p108.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/pi/pi173.5p115.0s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/yi/yi215.2p121.0s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/en/en170.0p109.7s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/es/es145.5p106.3s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ke/ke165.6p144.0s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ev/ev173.5p115.0s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/xa/xa174.5p100.6s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/uy/uy174.5p100.6s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ig/ig172.1p113.0s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ex/ex168.9p125.4s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/fe/fe178.1p87.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/bi/bi189.6p102.1s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ef/ef198.1p97.9s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/si/si169.0p114.0s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/xo/xo179.0p113.9s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ix/ix198.1p97.9s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/in/in171.0p112.8s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/en/en192.7p116.7s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/od/od198.1p97.9s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/mo/mo168.6p111.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ar/ar170.1p119.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ee/ee183.0p105.7s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/lu/lu172.4p109.3s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/fe/fe168.6p111.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ko/ko168.9p125.4s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ux/ux176.1p94.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/us/us155.5p123.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ix/ix171.5p113.1s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/du/du175.7p118.5s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/um/um145.5p106.3s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/uf/uf170.1p119.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ot/ot148.8p128.8s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/et/et168.6p111.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/in/in192.7p116.7s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ti/ti163.4p157.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/gi/gi174.5p100.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/pu/pu151.6p83.9s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/yu/yu172.1p113.0s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/mi/mi174.5p110.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ex/ex174.5p100.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ve/ve178.8p123.6s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ze/ze172.4p111.9s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ek/ek183.0p130.4s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ho/ho183.0p105.7s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/uz/uz183.0p130.4s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/vo/vo171.9p111.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/do/do171.0p115.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ke/ke189.6p102.1s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ze/ze184.8p115.1s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/nu/nu172.4p109.3s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/av/av176.1p94.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/od/od173.5p115.0s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/de/de184.8p115.1s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/de/de174.5p100.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/nu/nu170.1p119.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/em/em145.5p106.3s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/it/it170.9p112.2s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/pa/pa174.9p113.0s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ho/ho176.1p94.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/nu/nu167.8p106.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/me/me167.8p106.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/te/te173.5p115.0s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/re/re172.4p109.3s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/po/po172.4p111.9s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/aa/aa161.1p119.4s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/nu/nu172.1p113.0s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/lo/lo168.9p125.4s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/un/un155.5p123.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ox/ox179.0p113.9s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ez/ez175.7p118.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/op/op178.0p108.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/eg/eg178.0p108.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ze/ze202.7p118.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/fi/fi137.0p104.3s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/xa/xa167.8p106.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/gi/gi178.0p108.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/aw/aw171.9p111.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ey/ey184.8p115.1s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/po/po153.0p108.1s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/lo/lo174.9p113.0s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/xe/xe215.2p121.0s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ax/ax172.5p112.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/va/va171.0p115.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/is/is167.4p133.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/me/me161.1p119.4s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/iv/iv165.7p116.2s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/se/se198.1p97.9s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/uz/uz202.7p118.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/hu/hu172.1p113.0s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ye/ye164.9p102.1s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/de/de172.4p109.3s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/we/we198.1p97.9s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/pe/pe184.8p115.1s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ru/ru173.3p105.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/az/az159.5p109.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/eh/eh180.4p80.1s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ix/ix141.3p135.4s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/os/os171.0p112.8s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ke/ke167.8p106.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ba/ba173.5p115.0s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ok/ok141.3p135.4s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/em/em167.4p133.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ah/ah153.0p108.1s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/va/va183.0p130.4s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/sa/sa215.2p121.0s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/wu/wu169.0p114.0s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ov/ov161.1p96.8s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/te/te137.0p104.3s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/at/at215.2p121.0s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/oo/oo173.3p105.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/gi/gi183.0p130.4s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/iz/iz172.4p109.3s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ve/ve172.1p113.0s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/if/if159.5p109.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/mo/mo176.1p94.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/bi/bi194.5p150.4s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ha/ha168.9p125.4s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/fa/fa151.6p83.9s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/xa/xa171.7p112.3s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/mi/mi161.1p96.8s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/do/do174.5p100.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/eg/eg189.6p102.1s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/of/of170.1p119.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/vu/vu170.1p119.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ka/ka172.4p111.9s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/pa/pa170.1p119.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/si/si184.8p115.1s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ze/ze172.4p109.3s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ug/ug169.0p114.0s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/za/za174.5p110.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ov/ov153.0p108.1s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/de/de164.7p110.8s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ke/ke170.1p119.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/di/di170.0p109.7s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/yu/yu179.0p113.9s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/pu/pu172.4p109.3s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ud/ud169.0p114.0s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ga/ga171.9p111.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/di/di178.1p87.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/nu/nu179.0p113.9s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ew/ew148.8p128.8s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/it/it183.0p130.4s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/nu/nu170.0p109.7s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ke/ke167.4p133.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/de/de172.1p113.0s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/xo/xo156.7p90.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/lu/lu174.9p113.0s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ee/ee178.0p108.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/xo/xo194.5p150.4s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/do/do170.0p109.7s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ux/ux168.6p111.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/tu/tu167.4p133.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/uh/uh145.5p106.3s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/to/to165.7p116.2s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/up/up171.0p112.8s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/xi/xi171.7p112.3s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ak/ak180.4p80.1s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/we/we174.5p110.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/uu/uu161.1p119.4s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ed/ed163.4p157.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/av/av171.0p115.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/bi/bi174.5p100.6s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/vu/vu170.0p109.7s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ya/ya161.1p119.4s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/di/di176.1p94.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/uv/uv171.9p111.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/uu/uu178.1p87.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/te/te159.5p109.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/fo/fo208.6p93.2s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/wo/wo176.1p94.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/hu/hu155.5p123.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/en/en163.4p157.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/re/re164.9p102.1s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/on/on167.8p106.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/uz/uz155.5p123.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/wi/wi194.5p150.4s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/wi/wi169.0p114.0s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/fe/fe180.4p80.1s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/up/up174.5p100.6s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/is/is172.1p113.0s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ii/ii148.8p128.8s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/tu/tu141.3p135.4s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/fa/fa172.4p111.9s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ke/ke173.5p115.0s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/po/po174.5p110.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/bo/bo171.0p115.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ba/ba161.1p119.4s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/im/im178.0p108.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/at/at170.1p119.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/la/la161.1p119.4s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ak/ak174.5p100.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ew/ew178.1p87.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ig/ig137.0p104.3s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/uk/uk176.1p94.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ye/ye189.6p102.1s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uf/uf188.1p139.2s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ha/ha180.4p80.1s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/uk/uk151.6p83.9s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ib/ib194.5p150.4s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ep/ep173.3p105.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/wa/wa194.5p150.4s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ul/ul137.0p104.3s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/te/te202.7p118.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/uh/uh175.7p118.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/id/id179.0p113.9s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/wo/wo215.2p121.0s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ex/ex171.0p112.8s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/fo/fo145.5p106.3s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ur/ur189.6p102.1s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/up/up175.7p118.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/gi/gi151.6p83.9s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/wa/wa171.5p113.1s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/yo/yo189.6p102.1s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/op/op174.5p100.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/pe/pe178.1p87.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ko/ko189.6p102.1s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ve/ve165.6p144.0s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/vu/vu171.0p112.8s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ut/ut170.1p119.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/wa/wa171.7p112.3s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ro/ro208.6p93.2s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ha/ha161.1p119.4s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ur/ur202.7p118.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ey/ey215.2p121.0s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ig/ig155.5p123.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/fe/fe198.1p97.9s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ut/ut172.4p109.3s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/uz/uz173.3p105.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/et/et184.8p115.1s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ew/ew184.8p115.1s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/uz/uz172.4p111.9s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/am/am161.1p119.4s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ut/ut171.5p113.1s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ef/ef171.7p112.3s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/al/al192.7p116.7s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/in/in171.9p111.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/as/as156.7p90.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/wi/wi172.5p112.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ya/ya172.4p109.3s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/xi/xi184.8p115.1s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/eb/eb208.6p93.2s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/if/if183.0p130.4s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/xe/xe167.4p133.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/xe/xe174.5p110.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/uz/uz188.1p139.2s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ga/ga170.1p119.5s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ni/ni167.4p133.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ef/ef171.9p111.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/eb/eb173.5p115.0s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/yo/yo178.1p87.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/se/se170.9p112.2s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/an/an148.8p128.8s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/eg/eg167.4p133.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ih/ih174.5p110.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/pu/pu198.1p97.9s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/eh/eh202.7p118.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/iz/iz192.7p116.7s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ze/ze165.7p116.2s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/xu/xu171.0p112.8s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/bo/bo168.6p111.6s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/xo/xo164.9p102.1s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ih/ih192.7p116.7s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ev/ev202.7p118.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/go/go168.9p125.4s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ig/ig188.1p139.2s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/el/el171.5p113.1s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ta/ta171.9p111.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/bu/bu161.1p119.4s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ir/ir155.5p123.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/hi/hi164.9p102.1s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/gu/gu188.1p139.2s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/od/od176.1p94.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ko/ko179.0p113.9s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/be/be174.9p113.0s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/to/to188.1p139.2s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/et/et165.7p116.2s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/so/so178.0p108.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/uw/uw168.9p125.4s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/zu/zu169.0p114.0s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/za/za178.0p108.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ur/ur183.0p130.4s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/as/as180.4p80.1s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/xo/xo171.3p111.7s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ob/ob173.5p115.0s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/il/il171.0p112.8s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/gi/gi168.6p111.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/be/be202.7p118.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ev/ev174.9p113.0s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/uu/uu171.0p115.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ne/ne189.6p102.1s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/vo/vo141.3p135.4s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/uv/uv183.0p105.7s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/bi/bi184.8p115.1s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/vi/vi189.6p102.1s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/re/re178.1p87.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ig/ig165.7p116.2s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/tu/tu161.1p119.4s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ra/ra170.0p109.7s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uz/uz183.0p105.7s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ma/ma164.9p102.1s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/da/da208.6p93.2s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ra/ra178.8p123.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uy/uy167.8p106.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ix/ix156.7p90.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ek/ek202.7p118.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/le/le189.6p102.1s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/at/at164.7p110.8s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/aw/aw189.6p102.1s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/oh/oh165.6p144.0s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ve/ve145.5p106.3s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/mi/mi168.6p111.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/we/we137.0p104.3s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ne/ne172.5p112.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ux/ux174.9p113.0s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/hi/hi192.7p116.7s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/iw/iw171.5p113.1s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/uw/uw170.0p109.7s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/al/al172.5p112.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/eh/eh171.5p113.1s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ab/ab167.8p106.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/or/or173.3p105.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ev/ev173.3p105.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/xi/xi202.7p118.6s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/uz/uz156.7p90.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/om/om189.6p102.1s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/si/si183.0p130.4s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/na/na172.4p109.3s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/mi/mi208.6p93.2s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ap/ap174.9p113.0s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/su/su194.5p150.4s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/uy/uy137.0p104.3s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/va/va167.4p133.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ap/ap165.7p116.2s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/on/on172.5p112.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/mu/mu188.1p139.2s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ne/ne145.5p106.3s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ya/ya167.4p133.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/mu/mu179.0p113.9s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/wu/wu137.0p104.3s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/os/os183.0p130.4s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/un/un188.1p139.2s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/zo/zo176.1p94.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/le/le198.1p97.9s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ee/ee165.7p116.2s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/uu/uu172.1p113.0s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/up/up137.0p104.3s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ov/ov171.0p115.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/uu/uu148.8p128.8s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/de/de178.8p123.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ox/ox172.5p112.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/re/re173.3p105.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/uf/uf170.9p112.2s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/li/li137.0p104.3s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ba/ba170.0p109.7s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/if/if202.7p118.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/if/if189.6p102.1s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/lu/lu192.7p116.7s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ii/ii155.5p123.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ma/ma171.5p113.1s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/er/er171.7p112.3s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/gu/gu174.5p110.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/up/up141.3p135.4s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/am/am208.6p93.2s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/pu/pu167.4p133.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/eg/eg156.7p90.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/of/of156.7p90.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ob/ob173.3p105.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/iy/iy172.4p109.3s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/tu/tu171.9p111.5s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ob/ob194.5p150.4s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/pi/pi175.7p118.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/az/az192.7p116.7s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/eg/eg174.5p110.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/uz/uz171.9p111.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/uh/uh171.7p112.3s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/un/un161.1p119.4s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/we/we171.9p111.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/mo/mo163.4p157.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ho/ho175.7p118.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/fe/fe168.9p125.4s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/bo/bo141.3p135.4s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ho/ho137.0p104.3s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/wu/wu170.0p109.7s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/og/og161.1p96.8s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/me/me171.0p112.8s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ug/ug170.0p109.7s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ax/ax155.5p123.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ee/ee169.0p114.0s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/wa/wa176.1p94.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ge/ge178.0p108.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/xu/xu172.1p113.0s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/zu/zu178.0p108.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/za/za141.3p135.4s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/or/or184.8p115.1s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/yi/yi175.7p118.5s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/he/he156.7p90.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ze/ze169.0p114.0s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/zu/zu172.4p109.3s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ay/ay159.5p109.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ip/ip155.5p123.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ak/ak188.1p139.2s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/le/le171.5p113.1s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/wo/wo137.0p104.3s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/de/de198.1p97.9s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/be/be215.2p121.0s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/di/di167.8p106.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/se/se171.0p112.8s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ih/ih163.4p157.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/bu/bu165.7p116.2s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/me/me164.7p110.8s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/yu/yu188.1p139.2s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/le/le176.1p94.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/lu/lu180.4p80.1s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ti/ti194.5p150.4s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/wa/wa171.0p112.8s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/di/di141.3p135.4s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/vu/vu172.4p111.9s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/de/de165.7p116.2s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ki/ki174.9p113.0s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/bu/bu167.4p133.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/id/id173.5p115.0s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/am/am173.3p105.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ba/ba171.9p111.5s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ya/ya176.1p94.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ti/ti151.6p83.9s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/za/za178.1p87.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/hi/hi137.0p104.3s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/re/re156.7p90.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/iz/iz164.9p102.1s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/iv/iv170.9p112.2s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/xo/xo183.0p130.4s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ki/ki161.1p96.8s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/im/im167.4p133.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/aa/aa189.6p102.1s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ih/ih164.9p102.1s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ak/ak163.4p157.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/os/os168.9p125.4s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/as/as192.7p116.7s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/we/we170.1p119.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/en/en178.8p123.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ov/ov178.8p123.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/va/va183.0p105.7s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ga/ga188.1p139.2s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ba/ba183.0p105.7s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/ko/ko178.0p108.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ek/ek189.6p102.1s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ux/ux151.6p83.9s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/is/is164.7p110.8s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ak/ak198.1p97.9s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ig/ig176.1p94.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/zo/zo148.8p128.8s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/hu/hu156.7p90.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ru/ru188.1p139.2s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/oy/oy178.8p123.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/az/az172.5p112.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ot/ot188.1p139.2s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ye/ye141.3p135.4s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/oo/oo189.6p102.1s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/op/op215.2p121.0s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/fa/fa145.5p106.3s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ep/ep151.6p83.9s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/mu/mu169.0p114.0s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/aw/aw173.3p105.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/eh/eh171.3p111.7s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/gi/gi194.5p150.4s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/li/li198.1p97.9s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/il/il194.5p150.4s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/wu/wu151.6p83.9s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ha/ha171.0p115.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ab/ab174.5p100.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/du/du183.0p105.7s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ka/ka194.5p150.4s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/to/to178.8p123.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ew/ew174.5p110.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/as/as155.5p123.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/og/og156.7p90.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/az/az161.1p96.8s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ek/ek171.5p113.1s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ip/ip174.5p100.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/um/um161.1p119.4s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/on/on170.0p109.7s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/iv/iv171.7p112.3s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/do/do172.5p112.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/lo/lo170.1p119.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/no/no202.7p118.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/od/od178.0p108.5s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/mo/mo171.5p113.1s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/lo/lo172.4p111.9s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/nu/nu167.4p133.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/do/do169.0p114.0s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ok/ok151.6p83.9s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/eb/eb165.6p144.0s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ka/ka202.7p118.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/hi/hi167.8p106.5s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ga/ga156.7p90.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ro/ro164.7p110.8s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/iw/iw163.4p157.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/yu/yu148.8p128.8s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/aa/aa170.9p112.2s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ra/ra178.0p108.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/fa/fa192.7p116.7s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/fa/fa172.1p113.0s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ub/ub172.4p111.9s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ad/ad174.5p110.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ub/ub176.1p94.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/uu/uu215.2p121.0s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ii/ii202.7p118.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ov/ov168.6p111.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/xe/xe208.6p93.2s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/iw/iw215.2p121.0s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/wi/wi178.0p108.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/pu/pu215.2p121.0s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ni/ni192.7p116.7s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ye/ye198.1p97.9s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ud/ud183.0p130.4s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/wo/wo189.6p102.1s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/is/is178.1p87.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/zi/zi170.9p112.2s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ag/ag192.7p116.7s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ed/ed174.9p113.0s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ew/ew155.5p123.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/aw/aw173.5p115.0s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/pu/pu163.4p157.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/yu/yu170.1p119.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ya/ya184.8p115.1s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/lu/lu183.0p105.7s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/up/up148.8p128.8s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/if/if188.1p139.2s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/uu/uu202.7p118.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ye/ye173.3p105.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ab/ab171.0p115.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ox/ox198.1p97.9s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/fe/fe178.8p123.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ez/ez169.0p114.0s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/of/of202.7p118.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/oy/oy183.0p105.7s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/wo/wo168.9p125.4s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/if/if164.7p110.8s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/uy/uy148.8p128.8s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ex/ex183.0p105.7s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/am/am171.7p112.3s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/fa/fa167.8p106.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/vi/vi151.6p83.9s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/mu/mu148.8p128.8s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/if/if180.4p80.1s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/od/od179.0p113.9s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/iv/iv148.8p128.8s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/na/na184.8p115.1s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ah/ah174.5p100.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ab/ab170.1p119.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ok/ok155.5p123.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/en/en151.6p83.9s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ri/ri172.5p112.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ax/ax171.3p111.7s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/eb/eb173.3p105.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ub/ub198.1p97.9s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/yi/yi173.3p105.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/af/af183.0p105.7s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ud/ud151.6p83.9s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ud/ud165.7p116.2s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/mi/mi141.3p135.4s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/wo/wo173.3p105.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/pe/pe194.5p150.4s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/uh/uh165.7p116.2s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ag/ag168.9p125.4s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/da/da184.8p115.1s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ve/ve170.1p119.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/hi/hi161.1p119.4s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ow/ow184.8p115.1s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/lu/lu171.0p112.8s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/fu/fu192.7p116.7s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/el/el167.8p106.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/up/up172.4p109.3s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/wu/wu148.8p128.8s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/me/me178.0p108.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/wi/wi172.4p109.3s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/vo/vo163.4p157.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/eh/eh161.1p119.4s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ha/ha198.1p97.9s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/eb/eb178.0p108.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ef/ef172.1p113.0s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/av/av170.9p112.2s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/aa/aa171.3p111.7s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ku/ku155.5p123.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/xe/xe192.7p116.7s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/oh/oh161.1p96.8s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/vu/vu171.3p111.7s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/su/su145.5p106.3s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/oo/oo172.1p113.0s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ey/ey159.5p109.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/og/og169.0p114.0s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/uw/uw175.7p118.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ey/ey189.6p102.1s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ki/ki194.5p150.4s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/aw/aw153.0p108.1s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/we/we179.0p113.9s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/oh/oh194.5p150.4s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/wa/wa153.0p108.1s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/is/is174.9p113.0s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ul/ul180.4p80.1s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ma/ma167.8p106.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/al/al161.1p119.4s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/im/im165.7p116.2s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/eg/eg155.5p123.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/po/po183.0p130.4s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ad/ad170.9p112.2s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ax/ax148.8p128.8s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/gu/gu161.1p119.4s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/go/go171.0p112.8s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ke/ke179.0p113.9s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/le/le188.1p139.2s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ul/ul183.0p130.4s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ud/ud178.8p123.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/us/us175.7p118.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/zo/zo170.9p112.2s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/be/be174.5p100.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/im/im173.5p115.0s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ap/ap171.5p113.1s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ay/ay179.0p113.9s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/al/al183.0p105.7s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ih/ih173.5p115.0s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ha/ha171.9p111.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/uf/uf171.9p111.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/oo/oo159.5p109.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/az/az165.6p144.0s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/uv/uv173.5p115.0s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ev/ev164.7p110.8s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ii/ii165.7p116.2s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ge/ge208.6p93.2s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/iy/iy178.0p108.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/uz/uz169.0p114.0s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/mo/mo208.6p93.2s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/va/va176.1p94.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/no/no189.6p102.1s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/lu/lu164.7p110.8s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/le/le173.5p115.0s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/fo/fo178.1p87.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/le/le171.7p112.3s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/es/es156.7p90.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/pi/pi137.0p104.3s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/om/om169.0p114.0s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ew/ew170.1p119.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ti/ti165.6p144.0s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/xo/xo170.0p109.7s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/on/on173.5p115.0s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ih/ih174.9p113.0s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/et/et171.9p111.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/pe/pe183.0p105.7s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/et/et153.0p108.1s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ki/ki189.6p102.1s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ay/ay176.1p94.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ul/ul163.4p157.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/su/su164.7p110.8s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/ir/ir174.5p100.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/pa/pa172.4p111.9s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ya/ya165.7p116.2s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ho/ho174.5p100.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/xe/xe173.5p115.0s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/om/om151.6p83.9s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/te/te172.5p112.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/em/em173.5p115.0s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/eb/eb184.8p115.1s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/fi/fi169.0p114.0s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/do/do183.0p105.7s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/fo/fo192.7p116.7s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/do/do175.7p118.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/uv/uv172.5p112.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/hi/hi183.0p105.7s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/uw/uw184.8p115.1s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/do/do171.9p111.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/fo/fo148.8p128.8s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/pa/pa171.3p111.7s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/go/go156.7p90.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ol/ol167.4p133.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/te/te165.7p116.2s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ew/ew178.8p123.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/re/re171.3p111.7s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ol/ol161.1p96.8s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ez/ez148.8p128.8s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/if/if137.0p104.3s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/gi/gi198.1p97.9s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ii/ii192.7p116.7s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/xo/xo215.2p121.0s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/da/da175.7p118.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/uf/uf208.6p93.2s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ol/ol151.6p83.9s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ih/ih161.1p96.8s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/fi/fi172.4p109.3s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/eb/eb174.5p110.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/es/es167.8p106.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/aw/aw183.0p130.4s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ek/ek163.4p157.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/pu/pu153.0p108.1s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/bi/bi161.1p96.8s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/mu/mu170.1p119.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ul/ul164.7p110.8s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/av/av173.5p115.0s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/no/no168.6p111.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/uu/uu156.7p90.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ok/ok198.1p97.9s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ey/ey202.7p118.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ka/ka183.0p130.4s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/si/si174.5p100.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/oz/oz159.5p109.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/fo/fo174.5p100.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ma/ma175.7p118.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ex/ex173.5p115.0s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/po/po172.4p109.3s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/uf/uf171.5p113.1s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ub/ub171.0p115.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/is/is155.5p123.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ap/ap179.0p113.9s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/mu/mu168.6p111.6s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ul/ul188.1p139.2s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ay/ay167.8p106.5s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/na/na192.7p116.7s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ip/ip153.0p108.1s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/fe/fe192.7p116.7s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/oz/oz178.1p87.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/iw/iw172.5p112.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ud/ud156.7p90.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/so/so194.5p150.4s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/so/so168.6p111.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/uv/uv180.4p80.1s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/el/el174.9p113.0s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ed/ed171.5p113.1s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/iy/iy165.7p116.2s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ya/ya171.0p115.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ba/ba192.7p116.7s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/an/an171.0p112.8s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/bu/bu172.1p113.0s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/id/id215.2p121.0s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ap/ap137.0p104.3s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/uu/uu168.9p125.4s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/is/is171.0p112.8s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/im/im183.0p105.7s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/hi/hi178.1p87.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ut/ut172.1p113.0s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/se/se165.6p144.0s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/us/us194.5p150.4s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/og/og178.8p123.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ib/ib173.3p105.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/si/si163.4p157.6s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/zu/zu183.0p130.4s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/iv/iv168.9p125.4s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ro/ro148.8p128.8s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/fu/fu174.9p113.0s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/su/su165.7p116.2s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/xu/xu171.3p111.7s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ki/ki172.1p113.0s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/zu/zu178.1p87.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ne/ne178.8p123.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/eb/eb168.6p111.6s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/pa/pa155.5p123.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ol/ol172.4p109.3s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/la/la176.1p94.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/op/op170.1p119.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ta/ta148.8p128.8s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ma/ma183.0p130.4s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ud/ud202.7p118.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/am/am198.1p97.9s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ik/ik184.8p115.1s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/iv/iv183.0p130.4s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/em/em192.7p116.7s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/oy/oy208.6p93.2s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ar/ar161.1p96.8s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/no/no194.5p150.4s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/pa/pa171.9p111.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/if/if172.1p113.0s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/af/af151.6p83.9s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/li/li165.6p144.0s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/hi/hi170.0p109.7s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/wi/wi156.7p90.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/fo/fo161.1p96.8s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/xe/xe171.0p115.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ve/ve172.4p111.9s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/vu/vu156.7p90.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/as/as178.0p108.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/vi/vi172.1p113.0s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/oh/oh171.3p111.7s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/op/op194.5p150.4s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ug/ug183.0p130.4s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/zi/zi155.5p123.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ad/ad172.4p111.9s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ar/ar172.1p113.0s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ze/ze176.1p94.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/so/so163.4p157.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/na/na178.0p108.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ko/ko171.3p111.7s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/to/to172.4p111.9s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/op/op173.3p105.6s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/de/de202.7p118.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/uk/uk161.1p96.8s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ah/ah194.5p150.4s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/si/si178.0p108.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/og/og174.5p100.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/er/er156.7p90.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/oo/oo215.2p121.0s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/iz/iz170.0p109.7s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/na/na189.6p102.1s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ni/ni174.9p113.0s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ab/ab198.1p97.9s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ov/ov172.5p112.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/pu/pu183.0p105.7s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/di/di208.6p93.2s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ug/ug170.9p112.2s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ux/ux215.2p121.0s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ar/ar141.3p135.4s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/of/of178.8p123.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ef/ef179.0p113.9s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/wo/wo155.5p123.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/yo/yo173.5p115.0s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/pi/pi198.1p97.9s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ho/ho161.1p119.4s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/of/of208.6p93.2s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ze/ze173.5p115.0s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ro/ro167.8p106.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/iw/iw165.7p116.2s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ve/ve170.9p112.2s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ef/ef145.5p106.3s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/id/id172.4p109.3s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/fa/fa137.0p104.3s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ox/ox161.1p119.4s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ax/ax168.9p125.4s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/bi/bi198.1p97.9s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/pi/pi208.6p93.2s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/yi/yi194.5p150.4s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/il/il165.7p116.2s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ee/ee173.5p115.0s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/os/os165.6p144.0s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ay/ay163.4p157.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/zu/zu171.9p111.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/to/to215.2p121.0s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/om/om194.5p150.4s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ik/ik170.0p109.7s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/zu/zu180.4p80.1s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ul/ul159.5p109.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/pu/pu165.7p116.2s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/de/de171.9p111.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/bi/bi137.0p104.3s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ih/ih172.4p109.3s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ku/ku171.5p113.1s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/oy/oy151.6p83.9s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/er/er165.7p116.2s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/aa/aa192.7p116.7s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/sa/sa171.5p113.1s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/uz/uz170.9p112.2s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/si/si171.0p112.8s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/re/re179.0p113.9s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/wa/wa202.7p118.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ib/ib171.0p112.8s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/vu/vu175.7p118.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/wi/wi155.5p123.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/op/op198.1p97.9s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ar/ar153.0p108.1s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ol/ol192.7p116.7s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/zi/zi163.4p157.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/xe/xe184.8p115.1s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/vi/vi174.5p100.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ti/ti183.0p105.7s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/fe/fe170.1p119.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/mi/mi178.0p108.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/uu/uu192.7p116.7s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/av/av165.7p116.2s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/zu/zu172.5p112.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/be/be172.1p113.0s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/uh/uh176.1p94.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/un/un168.6p111.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/uk/uk167.4p133.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ir/ir159.5p109.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/us/us161.1p119.4s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/iz/iz171.0p115.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ev/ev171.3p111.7s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ot/ot164.7p110.8s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/if/if161.1p119.4s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ni/ni172.4p111.9s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ge/ge174.5p100.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/bo/bo192.7p116.7s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/id/id159.5p109.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/on/on155.5p123.5s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/iy/iy163.4p157.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/id/id198.1p97.9s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ga/ga172.4p111.9s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ir/ir184.8p115.1s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/uz/uz172.5p112.5s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/vu/vu148.8p128.8s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/em/em165.7p116.2s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ul/ul173.3p105.6s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/mu/mu168.9p125.4s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/it/it141.3p135.4s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/fi/fi151.6p83.9s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/le/le170.0p109.7s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/wa/wa183.0p130.4s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/op/op165.6p144.0s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/om/om168.9p125.4s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/xa/xa170.0p109.7s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/zo/zo165.6p144.0s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/da/da148.8p128.8s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ba/ba170.9p112.2s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/fi/fi178.1p87.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/iw/iw169.0p114.0s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/hi/hi171.3p111.7s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/yo/yo171.3p111.7s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/gi/gi145.5p106.3s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/vi/vi171.7p112.3s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ig/ig156.7p90.6s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/si/si172.1p113.0s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/un/un189.6p102.1s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ig/ig184.8p115.1s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ot/ot179.0p113.9s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ed/ed174.5p100.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/um/um192.7p116.7s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/eg/eg188.1p139.2s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ad/ad174.5p100.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/pe/pe172.4p109.3s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ah/ah178.0p108.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/oh/oh167.8p106.5s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/sa/sa171.0p115.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/vi/vi168.9p125.4s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ye/ye215.2p121.0s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ha/ha208.6p93.2s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/av/av215.2p121.0s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/zu/zu173.5p115.0s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ek/ek165.6p144.0s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/is/is188.1p139.2s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/wi/wi168.6p111.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/us/us169.0p114.0s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ze/ze178.0p108.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ku/ku178.1p87.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/gu/gu168.6p111.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/lu/lu163.4p157.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/od/od164.9p102.1s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/iy/iy164.7p110.8s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ke/ke172.1p113.0s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/pa/pa164.9p102.1s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/da/da161.1p119.4s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ag/ag172.4p109.3s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ru/ru167.4p133.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ud/ud161.1p96.8s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/vo/vo180.4p80.1s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ze/ze178.8p123.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/vo/vo175.7p118.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ze/ze171.7p112.3s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/uh/uh178.0p108.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/la/la141.3p135.4s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/se/se167.8p106.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/im/im171.3p111.7s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ga/ga174.5p100.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/zo/zo145.5p106.3s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/xu/xu174.5p100.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/bi/bi171.0p115.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ob/ob175.7p118.5s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/uz/uz151.6p83.9s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/el/el171.0p115.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ag/ag172.1p113.0s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/za/za159.5p109.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ru/ru176.1p94.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ih/ih215.2p121.0s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/he/he164.7p110.8s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/in/in179.0p113.9s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/et/et192.7p116.7s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/uu/uu151.6p83.9s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/es/es208.6p93.2s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/am/am180.4p80.1s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/do/do192.7p116.7s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/po/po171.5p113.1s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/xa/xa171.0p112.8s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ko/ko188.1p139.2s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ol/ol170.0p109.7s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/ti/ti215.2p121.0s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/fa/fa173.3p105.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/wo/wo188.1p139.2s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ek/ek148.8p128.8s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/hi/hi161.1p96.8s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/gu/gu153.0p108.1s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/to/to183.0p130.4s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/lo/lo156.7p90.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/et/et171.5p113.1s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ku/ku137.0p104.3s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/hi/hi159.5p109.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/un/un208.6p93.2s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ri/ri141.3p135.4s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/em/em178.0p108.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/wu/wu164.9p102.1s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/li/li174.5p110.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/du/du173.5p115.0s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/eg/eg145.5p106.3s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/og/og173.3p105.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/en/en173.3p105.6s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ot/ot174.5p110.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/on/on161.1p96.8s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/la/la145.5p106.3s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/iy/iy170.1p119.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/pa/pa145.5p106.3s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ok/ok164.9p102.1s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/oy/oy171.5p113.1s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ik/ik189.6p102.1s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ev/ev159.5p109.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/aw/aw141.3p135.4s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/im/im148.8p128.8s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ni/ni188.1p139.2s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/oh/oh179.0p113.9s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/is/is184.8p115.1s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ta/ta170.0p109.7s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ov/ov170.1p119.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/iy/iy151.6p83.9s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/al/al137.0p104.3s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/uk/uk172.5p112.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ef/ef137.0p104.3s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/uy/uy170.0p109.7s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ya/ya145.5p106.3s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ku/ku170.1p119.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ab/ab151.6p83.9s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ay/ay165.6p144.0s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/oo/oo174.9p113.0s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/es/es155.5p123.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/fe/fe163.4p157.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/os/os163.4p157.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/we/we163.4p157.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/up/up194.5p150.4s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/wi/wi192.7p116.7s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/xe/xe137.0p104.3s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/nu/nu168.9p125.4s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ih/ih170.1p119.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/fo/fo170.0p109.7s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/me/me189.6p102.1s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/sa/sa161.1p119.4s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ep/ep167.8p106.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/be/be172.4p111.9s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/am/am165.6p144.0s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ar/ar194.5p150.4s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ab/ab194.5p150.4s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/av/av184.8p115.1s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ub/ub172.4p109.3s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ur/ur145.5p106.3s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/ud/ud164.7p110.8s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/xi/xi167.4p133.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/vi/vi145.5p106.3s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ov/ov172.4p111.9s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/vi/vi174.5p110.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/mi/mi178.8p123.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/bu/bu171.7p112.3s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ez/ez171.0p115.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ab/ab171.5p113.1s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/re/re168.9p125.4s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/af/af175.7p118.5s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/re/re170.9p112.2s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/os/os167.8p106.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/aa/aa172.5p112.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/fe/fe164.9p102.1s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ap/ap165.6p144.0s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ge/ge170.9p112.2s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ne/ne184.8p115.1s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/bo/bo165.7p116.2s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ep/ep188.1p139.2s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ra/ra174.9p113.0s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/zo/zo183.0p130.4s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/gu/gu172.4p109.3s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/av/av148.8p128.8s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ug/ug161.1p96.8s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/hi/hi174.5p110.6s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/zi/zi172.4p109.3s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/uu/uu175.7p118.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ho/ho208.6p93.2s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ep/ep174.5p110.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/et/et170.0p109.7s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/og/og178.1p87.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/up/up153.0p108.1s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/am/am170.9p112.2s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/da/da155.5p123.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/yi/yi161.1p119.4s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ad/ad171.3p111.7s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ok/ok168.9p125.4s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ke/ke169.0p114.0s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/da/da179.0p113.9s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/fu/fu183.0p130.4s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ak/ak172.5p112.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/zu/zu174.5p110.6s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/eh/eh189.6p102.1s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/uw/uw137.0p104.3s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ub/ub173.5p115.0s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/lo/lo173.5p115.0s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ge/ge173.5p115.0s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/zo/zo137.0p104.3s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/uw/uw145.5p106.3s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/yi/yi168.9p125.4s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ex/ex171.0p115.5s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ug/ug180.4p80.1s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ir/ir179.0p113.9s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ru/ru174.9p113.0s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ot/ot168.9p125.4s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ra/ra153.0p108.1s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/uf/uf178.8p123.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/wa/wa148.8p128.8s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ab/ab155.5p123.5s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/ox/ox171.0p115.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/zu/zu208.6p93.2s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ex/ex183.0p130.4s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ev/ev156.7p90.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/xo/xo192.7p116.7s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/aw/aw170.9p112.2s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/at/at141.3p135.4s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/at/at155.5p123.5s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ar/ar148.8p128.8s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/af/af137.0p104.3s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ah/ah188.1p139.2s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ak/ak148.8p128.8s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/no/no173.5p115.0s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/iz/iz178.1p87.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ha/ha176.1p94.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ee/ee171.0p112.8s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/li/li179.0p113.9s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/uf/uf173.3p105.6s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/as/as141.3p135.4s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/up/up171.9p111.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/al/al174.5p110.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/us/us179.0p113.9s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ak/ak153.0p108.1s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/pi/pi178.0p108.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/et/et178.8p123.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ax/ax202.7p118.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/og/og171.5p113.1s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ne/ne159.5p109.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ow/ow137.0p104.3s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/id/id164.7p110.8s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ab/ab170.9p112.2s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/gu/gu155.5p123.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/we/we159.5p109.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ru/ru151.6p83.9s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ga/ga159.5p109.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ne/ne178.1p87.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/si/si170.0p109.7s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ug/ug189.6p102.1s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ya/ya172.4p111.9s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/uu/uu170.1p119.5s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/ey/ey169.0p114.0s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/im/im194.5p150.4s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/zo/zo174.5p110.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/is/is189.6p102.1s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/sa/sa180.4p80.1s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/mo/mo183.0p105.7s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ev/ev176.1p94.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ow/ow169.0p114.0s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ku/ku165.7p116.2s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/le/le178.1p87.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ug/ug165.7p116.2s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/un/un175.7p118.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/vo/vo137.0p104.3s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ip/ip164.9p102.1s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/eg/eg174.5p100.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ux/ux170.1p119.5s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/wi/wi202.7p118.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/yo/yo183.0p105.7s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ni/ni137.0p104.3s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/em/em151.6p83.9s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/fo/fo172.4p111.9s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/da/da178.1p87.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ak/ak176.1p94.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/it/it178.1p87.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/ib/ib148.8p128.8s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ti/ti153.0p108.1s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/iv/iv167.8p106.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ii/ii176.1p94.5s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/no/no141.3p135.4s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/pu/pu188.1p139.2s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ix/ix167.4p133.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/op/op137.0p104.3s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/mo/mo165.6p144.0s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/wo/wo183.0p105.7s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/or/or183.0p105.7s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/do/do151.6p83.9s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/gu/gu170.0p109.7s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ir/ir156.7p90.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/va/va173.3p105.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ax/ax208.6p93.2s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ik/ik194.5p150.4s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/iv/iv189.6p102.1s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/up/up161.1p119.4s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ab/ab171.3p111.7s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/nu/nu171.9p111.5s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/go/go208.6p93.2s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/va/va178.8p123.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ro/ro180.4p80.1s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/af/af172.4p109.3s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/fe/fe165.7p116.2s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ta/ta171.3p111.7s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/fu/fu168.6p111.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/se/se215.2p121.0s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ad/ad178.1p87.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/fo/fo163.4p157.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ko/ko161.1p96.8s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/wi/wi153.0p108.1s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/on/on183.0p130.4s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/vo/vo171.3p111.7s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ut/ut183.0p130.4s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/me/me198.1p97.9s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/os/os184.8p115.1s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/bo/bo180.4p80.1s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ub/ub179.0p113.9s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/or/or167.8p106.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/we/we202.7p118.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/as/as173.3p105.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ik/ik165.7p116.2s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/uf/uf155.5p123.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ip/ip145.5p106.3s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ag/ag165.6p144.0s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/uk/uk171.5p113.1s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/if/if172.4p111.9s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/bu/bu151.6p83.9s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/up/up172.4p111.9s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/en/en172.5p112.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/aw/aw215.2p121.0s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/pe/pe171.0p115.5s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ga/ga178.1p87.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/og/og174.5p110.6s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/os/os178.0p108.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/as/as172.4p109.3s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ki/ki171.0p115.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ey/ey192.7p116.7s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/uv/uv194.5p150.4s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/oo/oo174.5p110.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ay/ay183.0p105.7s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/xi/xi171.0p112.8s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/xi/xi194.5p150.4s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ib/ib167.4p133.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/os/os165.7p116.2s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/is/is178.8p123.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/uz/uz141.3p135.4s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/us/us170.9p112.2s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/od/od151.6p83.9s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/ah/ah159.5p109.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/we/we174.5p100.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/yo/yo159.5p109.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/fe/fe171.0p115.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/if/if178.8p123.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/da/da171.0p115.5s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/du/du174.5p100.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/aw/aw198.1p97.9s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/em/em170.1p119.5s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ni/ni174.5p100.6s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/eg/eg172.4p109.3s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ek/ek170.0p109.7s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/vo/vo151.6p83.9s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/et/et174.5p110.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ov/ov137.0p104.3s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ig/ig194.5p150.4s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ux/ux208.6p93.2s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ed/ed159.5p109.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/uu/uu173.3p105.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/wi/wi171.0p115.5s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/fu/fu175.7p118.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/va/va170.0p109.7s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/zu/zu174.9p113.0s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/mi/mi173.3p105.6s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/uf/uf167.8p106.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/po/po178.1p87.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/at/at174.5p100.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ro/ro171.7p112.3s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ib/ib161.1p96.8s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/el/el172.5p112.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/am/am169.0p114.0s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/yo/yo156.7p90.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/uh/uh171.3p111.7s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/up/up171.0p115.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ba/ba165.7p116.2s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/du/du170.9p112.2s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ad/ad202.7p118.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/go/go171.7p112.3s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/un/un148.8p128.8s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/zi/zi202.7p118.6s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/yu/yu165.7p116.2s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ov/ov175.7p118.5s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/su/su170.1p119.5s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/an/an188.1p139.2s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/te/te174.5p100.6s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/bi/bi215.2p121.0s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/pe/pe163.4p157.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/uz/uz171.0p112.8s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ux/ux156.7p90.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/am/am145.5p106.3s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/et/et171.0p115.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/en/en189.6p102.1s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ir/ir189.6p102.1s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/wa/wa165.7p116.2s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/zi/zi167.4p133.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/vi/vi173.3p105.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ya/ya169.0p114.0s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ee/ee161.1p96.8s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ex/ex172.4p111.9s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ut/ut179.0p113.9s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/du/du194.5p150.4s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/do/do194.5p150.4s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/me/me179.0p113.9s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/uh/uh168.9p125.4s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/oh/oh168.9p125.4s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/iw/iw171.9p111.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/he/he178.8p123.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/fa/fa170.9p112.2s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/ru/ru171.7p112.3s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/to/to161.1p96.8s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/or/or171.3p111.7s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/yo/yo173.3p105.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/uh/uh170.1p119.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ex/ex178.1p87.6s100.0t+000itd.lab"'
+sil
+ex
+sil
+.
+'"snr+30dB/features/ha/ha172.4p109.3s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ev/ev171.9p111.5s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/pe/pe164.9p102.1s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ho/ho174.9p113.0s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/im/im159.5p109.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/wi/wi159.5p109.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ne/ne156.7p90.6s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/go/go171.0p115.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ko/ko173.5p115.0s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ho/ho174.5p110.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/es/es171.9p111.5s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/si/si171.9p111.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ko/ko171.5p113.1s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/en/en215.2p121.0s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/eh/eh198.1p97.9s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ya/ya174.5p110.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/tu/tu169.0p114.0s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/uw/uw171.5p113.1s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/op/op145.5p106.3s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ut/ut168.9p125.4s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ra/ra175.7p118.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ku/ku174.9p113.0s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/as/as175.7p118.5s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/de/de145.5p106.3s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ez/ez167.8p106.5s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/uz/uz168.6p111.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ee/ee145.5p106.3s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ev/ev192.7p116.7s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/ru/ru171.9p111.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/or/or179.0p113.9s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ol/ol178.0p108.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/da/da164.7p110.8s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/na/na161.1p96.8s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/el/el194.5p150.4s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/eb/eb137.0p104.3s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/zo/zo171.0p112.8s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/gu/gu171.0p115.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/as/as169.0p114.0s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/do/do174.9p113.0s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/uw/uw164.7p110.8s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ta/ta167.8p106.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/of/of168.6p111.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/zu/zu189.6p102.1s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/op/op171.5p113.1s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/po/po137.0p104.3s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/gi/gi171.0p115.5s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/vo/vo171.5p113.1s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ef/ef171.3p111.7s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ey/ey175.7p118.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/an/an215.2p121.0s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/oz/oz184.8p115.1s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/wo/wo178.0p108.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/si/si172.5p112.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/it/it145.5p106.3s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/le/le172.1p113.0s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/lu/lu148.8p128.8s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/af/af198.1p97.9s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ye/ye155.5p123.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/we/we171.7p112.3s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/ew/ew161.1p119.4s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/oo/oo175.7p118.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/is/is172.4p111.9s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/no/no192.7p116.7s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/in/in168.6p111.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/zo/zo215.2p121.0s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/uw/uw153.0p108.1s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/sa/sa171.0p112.8s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/az/az171.0p115.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/pa/pa167.4p133.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ef/ef192.7p116.7s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ti/ti171.7p112.3s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ga/ga174.9p113.0s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/in/in171.3p111.7s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/it/it171.3p111.7s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/re/re168.6p111.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/er/er173.5p115.0s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/eh/eh169.0p114.0s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/zi/zi194.5p150.4s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ed/ed188.1p139.2s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/un/un176.1p94.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/nu/nu164.9p102.1s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ti/ti208.6p93.2s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ar/ar171.7p112.3s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ga/ga164.9p102.1s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/da/da174.5p110.6s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/fo/fo168.9p125.4s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/yi/yi179.0p113.9s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/an/an183.0p130.4s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/na/na151.6p83.9s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/zi/zi168.9p125.4s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/uh/uh171.0p115.5s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/le/le169.0p114.0s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/as/as184.8p115.1s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ah/ah168.9p125.4s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/do/do202.7p118.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ik/ik183.0p130.4s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/uz/uz178.8p123.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ov/ov168.9p125.4s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ma/ma159.5p109.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/eh/eh155.5p123.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ki/ki202.7p118.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ta/ta168.6p111.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ef/ef156.7p90.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/es/es183.0p130.4s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ix/ix168.6p111.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/id/id171.3p111.7s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/mi/mi183.0p105.7s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ti/ti189.6p102.1s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/po/po170.1p119.5s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/wo/wo202.7p118.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/fi/fi176.1p94.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ug/ug137.0p104.3s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ne/ne155.5p123.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/os/os188.1p139.2s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/pe/pe174.9p113.0s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ah/ah183.0p130.4s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/wo/wo168.6p111.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ma/ma171.7p112.3s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ow/ow163.4p157.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ip/ip165.7p116.2s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/et/et176.1p94.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ah/ah165.7p116.2s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ow/ow178.8p123.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ye/ye178.0p108.5s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/em/em184.8p115.1s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/as/as194.5p150.4s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/me/me172.5p112.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ak/ak145.5p106.3s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/yo/yo176.1p94.5s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/yi/yi165.7p116.2s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/vi/vi170.0p109.7s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ra/ra167.4p133.5s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/av/av171.9p111.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ta/ta170.9p112.2s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/pa/pa165.6p144.0s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/or/or167.4p133.5s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ze/ze164.7p110.8s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/or/or145.5p106.3s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/yo/yo163.4p157.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/ri/ri170.1p119.5s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/xi/xi171.5p113.1s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ik/ik145.5p106.3s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ku/ku194.5p150.4s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/pu/pu171.0p112.8s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/fe/fe175.7p118.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/fo/fo176.1p94.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ya/ya167.8p106.5s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/uz/uz198.1p97.9s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ed/ed183.0p130.4s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ud/ud172.1p113.0s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/do/do173.3p105.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/yi/yi172.4p109.3s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/of/of161.1p119.4s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/op/op169.0p114.0s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ku/ku169.0p114.0s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/me/me167.4p133.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/gu/gu170.1p119.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/oy/oy174.9p113.0s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/no/no164.7p110.8s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ve/ve171.7p112.3s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ew/ew172.1p113.0s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ap/ap192.7p116.7s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/am/am141.3p135.4s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/li/li170.9p112.2s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/po/po156.7p90.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ey/ey171.0p115.5s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/do/do170.1p119.5s100.0t+000itd.lab"'
+sil
+do
+sil
+.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/test_rand.scp	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,9065 @@
+'snr+30dB/features/am/am171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/us/us168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/el/el173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/si/si161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/on/on170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/li/li188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/se/se178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/od/od148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/os/os170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/as/as161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/go/go164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/se/se174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/en/en171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/af/af156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/id/id174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/go/go178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/et/et215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/un/un183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/or/or172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/se/se173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/in/in172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/or/or163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/re/re170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/un/un137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/da/da189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/id/id171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/du/du171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/od/od169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/or/or172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/la/la170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/al/al183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/as/as171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/be/be167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/es/es161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/za/za169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/an/an167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/we/we141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/in/in170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/um/um173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/un/un167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/to/to168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/um/um180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/im/im184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/za/za167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/le/le153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/op/op171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/re/re176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/os/os155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/af/af171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/af/af178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/az/az168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/li/li172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/be/be171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/po/po174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/or/or161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/to/to171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/na/na161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/se/se167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/re/re172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/be/be137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/se/se172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/il/il178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/in/in175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/la/la174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/az/az171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/of/of189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/od/od192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/si/si175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/do/do172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/od/od171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/af/af141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/se/se172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/su/su170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/os/os194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/an/an167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/or/or170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/su/su174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/up/up172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/na/na168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/na/na156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/le/le171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/us/us167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/un/un165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/im/im169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/di/di172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/id/id141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/er/er171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/as/as165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/od/od194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/es/es198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/es/es174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/as/as183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/su/su167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/be/be165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/or/or168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/in/in178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/su/su176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/el/el161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/de/de161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/es/es183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/of/of171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/en/en153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/se/se137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/di/di171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/us/us198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/it/it189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/al/al164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/re/re174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/us/us141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/da/da168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/if/if208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/im/im167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/do/do153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/es/es189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/us/us151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/um/um137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/im/im170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/se/se168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/es/es137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/is/is165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/le/le178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/id/id171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/el/el179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/te/te174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/al/al175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/be/be151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/om/om170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/to/to198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/al/al171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/di/di172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/al/al176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/di/di159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/og/og215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/up/up192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/it/it172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/po/po164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/at/at167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/od/od171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/at/at172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/on/on161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/at/at165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/af/af188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/om/om174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/li/li180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/of/of198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/us/us171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/am/am151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/en/en168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/li/li167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/li/li148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/an/an170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/el/el161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/si/si165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/an/an189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/en/en202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/on/on183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/to/to171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/as/as170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/az/az171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/az/az171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/um/um171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/il/il208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/er/er198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/me/me176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/es/es192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/to/to170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/li/li178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/he/he169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/id/id175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/is/is169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/su/su151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/me/me188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/is/is148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/on/on172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/id/id169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/en/en172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/po/po178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/so/so137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/na/na180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/al/al171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/af/af179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/va/va164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/le/le174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/we/we188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/es/es171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/za/za175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/up/up188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/as/as164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/et/et178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/en/en161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/er/er194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/za/za171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/om/om188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/on/on202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/re/re192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/he/he188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/es/es171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/da/da141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/il/il174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/if/if173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/se/se170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/us/us180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/at/at169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/na/na208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/te/te194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/on/on159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/af/af172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/de/de183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/po/po174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/on/on169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/im/im183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/az/az148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/am/am170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/we/we171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/un/un153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/il/il164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/et/et156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/li/li178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/he/he208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/le/le172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/id/id161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/up/up215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/so/so161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/si/si192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/li/li145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/si/si189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/os/os141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/om/om183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/az/az174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/la/la165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/of/of171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/os/os171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/le/le165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/im/im180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/it/it176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/im/im173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/te/te167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/be/be189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/et/et180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/di/di171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/or/or208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/to/to167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/it/it174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/az/az137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/he/he159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/te/te171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/of/of194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/do/do189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/go/go180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/at/at167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/to/to179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/op/op170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/su/su169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/os/os171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/on/on171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/on/on171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/el/el168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/er/er164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/um/um159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/op/op168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/is/is198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/og/og175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/us/us164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/go/go172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/me/me169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/an/an163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/it/it165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/in/in167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/at/at176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/op/op184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/we/we178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/we/we148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/on/on178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/im/im171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/we/we167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/om/om153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/le/le183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/of/of184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/te/te168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/od/od167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/di/di148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/go/go165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/on/on175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/re/re169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/om/om175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/og/og164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/en/en155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/de/de176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/es/es194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/in/in215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/to/to168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/al/al170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/te/te183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/is/is151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/so/so159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/av/av208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/la/la167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/az/az174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/os/os189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/po/po215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/al/al178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/um/um171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/os/os173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/le/le167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/de/de171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/go/go164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/te/te176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/up/up171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/we/we175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/su/su178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/es/es164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/it/it198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/za/za174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/go/go161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/un/un183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/if/if171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/az/az178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/og/og163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/it/it151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/za/za215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/va/va172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/es/es172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/re/re171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/do/do180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/el/el165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/as/as171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/og/og165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/li/li189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/id/id161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/il/il172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/er/er192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/to/to183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/de/de170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/us/us165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/om/om137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/de/de183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/la/la178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/da/da183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/da/da167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/er/er188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/or/or172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/le/le163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/la/la151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/es/es159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/li/li141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/of/of165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/go/go170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/il/il172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/od/od171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/od/od174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/we/we172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/er/er170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/to/to194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/il/il171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/af/af171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/se/se173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/up/up174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/es/es215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/up/up167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/na/na172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/il/il171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/af/af159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/if/if192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/od/od170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/up/up170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/er/er159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/er/er171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/us/us164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/an/an164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/as/as174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/or/or171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/or/or171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/af/af194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/be/be171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/id/id172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/az/az167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/an/an164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/we/we170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/el/el178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/en/en137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/at/at188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/an/an151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/da/da173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/du/du171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/it/it148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/si/si171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/er/er153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/az/az173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/el/el145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/er/er215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/is/is167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/li/li171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/za/za148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/va/va178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/er/er172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/re/re170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/am/am174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/to/to172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/it/it164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/un/un198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/go/go148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/er/er174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/im/im141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/og/og145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/up/up178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/we/we145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/up/up167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/be/be180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/up/up176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/he/he172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/if/if171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/if/if178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/og/og171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/be/be156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/up/up165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/os/os215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/af/af163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/va/va179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/it/it167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/da/da170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/od/od215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/is/is194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/en/en164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/we/we178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/on/on137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/di/di167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/it/it167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/op/op183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/me/me178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/as/as164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/la/la172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/it/it155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/va/va171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/od/od141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/he/he176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/up/up168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/za/za178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/af/af168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/if/if170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/at/at183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/up/up171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/at/at172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/me/me184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/me/me164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/so/so167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/al/al165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/se/se183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/me/me172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/va/va208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/an/an179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/di/di173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/si/si179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/it/it188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/it/it159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/av/av145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/at/at192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/et/et194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/os/os137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/me/me156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/em/em175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/un/un164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/go/go167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/at/at175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/di/di178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/go/go151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/se/se155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/as/as170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/de/de169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/me/me215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/od/od184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/on/on174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/em/em171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/da/da192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/op/op164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/da/da170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/de/de168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/da/da165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/im/im170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/va/va145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/za/za161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/da/da183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/po/po161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/or/or156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/it/it171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/op/op173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/es/es170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/es/es172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/er/er167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/as/as167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/as/as178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/od/od172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/in/in174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/di/di198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/up/up159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/du/du170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/po/po208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/al/al174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/im/im164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/za/za153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/up/up170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/er/er174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/os/os161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/om/om174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/er/er164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/of/of172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/we/we180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/no/no168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/af/af170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/up/up184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/am/am183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/di/di202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/it/it172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/od/od178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/il/il163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/id/id156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/za/za170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/et/et173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/so/so155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/be/be179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/on/on167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/va/va165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/un/un172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/to/to141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/az/az167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/al/al172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/af/af173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/id/id167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/it/it164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/si/si168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/te/te188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/di/di155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/om/om178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/we/we215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/do/do173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/if/if151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/su/su172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/me/me194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/on/on156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/te/te173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/at/at184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/og/og172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/um/um174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/te/te175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/en/en172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/is/is180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/na/na167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/az/az170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/od/od161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/em/em172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/id/id171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/er/er208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/an/an174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/if/if165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/da/da174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/az/az178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/it/it137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/le/le180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/er/er172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/it/it171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/we/we173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/an/an192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/or/or174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/od/od178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/os/os172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/of/of171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/di/di189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/id/id178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/it/it183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/te/te167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/us/us137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/na/na183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/er/er167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/al/al145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/at/at156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/li/li202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/so/so156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/li/li176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/be/be167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/av/av183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/of/of164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/de/de155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/om/om215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/am/am171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/su/su179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/og/og170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/te/te192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/de/de172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/he/he189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/od/od168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/id/id174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/or/or178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/su/su171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/du/du156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/um/um141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/or/or159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/za/za180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/if/if174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/za/za194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/va/va161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/it/it178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/er/er178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/li/li170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/om/om173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/it/it180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/as/as176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/su/su174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/os/os156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/me/me175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/se/se161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/if/if153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/re/re167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/at/at137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/on/on151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/da/da178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/so/so174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/if/if198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/va/va171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/up/up161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/et/et174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/on/on194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/za/za171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/af/af165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/en/en156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/go/go141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/es/es168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/la/la183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/az/az168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/be/be172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/he/he171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/va/va171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/or/or170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/le/le175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/me/me173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/me/me180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/id/id194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/od/od180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/op/op153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/en/en161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/li/li168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/at/at178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/op/op178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/av/av174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/et/et208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/an/an137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/is/is171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/te/te179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/la/la155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/im/im171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/er/er175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/su/su171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/um/um178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/al/al171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/be/be171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/es/es167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/se/se171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/di/di170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/or/or155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/na/na194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/in/in172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/as/as137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/za/za163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/up/up189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/to/to180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/in/in167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/um/um176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/og/og137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/og/og188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/az/az145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/du/du172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/is/is164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/os/os172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/il/il183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/me/me161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/to/to189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/li/li167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/og/og208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/za/za172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/id/id171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/us/us208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/od/od189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/du/du172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/at/at179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/at/at172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/la/la170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/og/og171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/id/id183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/az/az169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/az/az202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/or/or215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/du/du164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/de/de148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/es/es170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/in/in189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/te/te148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/be/be183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/va/va161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/it/it171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/of/of137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/re/re155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/up/up168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/af/af164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/od/od156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/si/si170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/to/to164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/il/il159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/er/er183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/as/as215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/na/na141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/un/un161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/va/va189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/we/we156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/za/za145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/li/li159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/er/er202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/al/al208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/la/la163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/up/up208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/la/la161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/go/go173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/za/za170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/he/he179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/od/od137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/if/if171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/di/di175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/du/du167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/at/at178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/it/it171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/na/na171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/us/us170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/se/se153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/po/po172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/te/te161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/om/om171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/if/if169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/si/si188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/va/va180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/or/or172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/is/is183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/za/za137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/az/az188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/in/in165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/le/le145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/po/po151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/id/id184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/se/se159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/af/af170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/he/he168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/su/su183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/da/da172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/he/he172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/od/od208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/er/er184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/im/im155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/da/da180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/za/za151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/he/he172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/me/me202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/so/so183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/in/in156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/do/do163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/us/us172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/le/le202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/un/un151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/im/im192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/at/at171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/om/om170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/go/go170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/er/er173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/no/no171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/os/os173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/om/om164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/as/as189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/on/on188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/og/og202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/na/na174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/un/un170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/is/is168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/is/is174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/at/at148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/le/le171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/we/we183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/du/du171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/se/se148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/in/in184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/op/op164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/be/be184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/id/id151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/et/et179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/di/di184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/so/so172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/na/na173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/se/se164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/go/go169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/og/og168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/su/su153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/si/si172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/si/si145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/be/be163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/da/da165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/we/we167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/of/of175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/su/su172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/he/he171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/is/is137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/er/er172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/na/na173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/em/em194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/it/it178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/on/on163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/to/to192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/or/or180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/on/on141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/am/am168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/og/og183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/an/an171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/te/te171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/og/og172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/az/az172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/up/up179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/na/na174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/te/te198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/at/at161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/is/is171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/be/be178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/on/on184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/al/al172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/af/af183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/in/in174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/at/at208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/li/li174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/il/il179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/av/av183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/be/be192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/af/af172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/el/el208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/on/on164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/li/li215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/me/me145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/we/we183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/re/re165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/er/er179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/su/su171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/na/na159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/no/no184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/al/al184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/we/we171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/id/id165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/us/us153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/su/su180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/it/it179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/us/us165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/su/su172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/as/as178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/id/id170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/en/en171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/za/za168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/te/te171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/av/av170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/du/du148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/al/al167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/po/po194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/be/be172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/re/re153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/li/li163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/il/il192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/il/il215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/el/el175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/id/id180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/er/er151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/in/in169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/be/be178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/am/am178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/so/so165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/az/az178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/av/av159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/be/be159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/en/en174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/to/to184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/af/af171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/os/os198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/us/us183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/um/um215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/om/om178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/if/if175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/or/or168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/an/an155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/is/is176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/af/af174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/at/at171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/su/su168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/in/in198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/li/li174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/no/no172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/su/su171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/et/et155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/it/it169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/os/os178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/id/id168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/na/na167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/am/am174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/il/il172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/at/at171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/is/is156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/an/an198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/it/it192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/af/af170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/to/to171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/og/og172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/os/os170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/re/re208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/si/si172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/im/im165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/va/va168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/al/al178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/os/os164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/so/so174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/li/li171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/um/um167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/be/be169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/us/us188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/on/on174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/is/is171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/od/od174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/to/to172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/it/it174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/el/el170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/en/en167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/to/to148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/om/om141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/go/go172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/op/op175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/le/le159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/id/id178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/el/el165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/va/va192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/up/up145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/od/od183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/of/of183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/po/po179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/up/up174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/es/es153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/al/al168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/un/un174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/na/na171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/la/la172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/em/em163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/is/is168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/go/go165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/to/to151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/og/og170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/te/te164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/su/su208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/of/of168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/av/av151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/of/of174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/as/as171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/si/si178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/av/av198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/no/no174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/im/im178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/as/as168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/is/is178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/na/na174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/az/az164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/az/az174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/op/op163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/go/go192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/em/em174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/az/az179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/li/li161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/am/am178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/at/at202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/is/is215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/us/us163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/po/po176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/su/su178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/il/il172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/es/es169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/po/po180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/od/od145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/de/de171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/te/te172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/li/li194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/we/we161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/om/om155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/el/el163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/il/il188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/go/go183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/is/is171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/el/el183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/im/im163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/de/de208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/en/en171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/li/li172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/il/il165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/we/we165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/em/em176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/og/og170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/az/az184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/is/is183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/of/of165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/si/si208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/um/um168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/un/un141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/es/es176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/da/da178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/od/od163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/me/me178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/av/av171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/il/il176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/we/we153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/an/an172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/di/di153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/su/su175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/em/em169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/se/se165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/er/er155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/av/av167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/im/im164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/il/il164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/em/em173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/er/er171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/od/od171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/we/we184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/an/an174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/in/in171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/os/os145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/os/os172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/po/po173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/if/if172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/im/im172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/od/od153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/id/id137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/de/de168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/am/am202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/of/of151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/id/id168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/af/af171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/su/su159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/we/we170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/do/do148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/he/he174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/li/li170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/og/og151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/um/um183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/al/al173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/om/om167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/li/li169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/la/la171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/be/be208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/og/og173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/la/la188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/la/la171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/il/il174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/if/if163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/af/af173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/la/la167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/po/po175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/go/go198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/la/la171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/az/az215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/um/um172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/be/be141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/de/de165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/an/an208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/al/al174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/be/be164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/es/es141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/et/et151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/es/es179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/we/we173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/na/na165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/en/en170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/es/es145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/si/si169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/in/in171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/od/od198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/us/us155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/et/et168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/de/de174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/it/it170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/po/po172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/se/se198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/de/de172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/we/we198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/os/os171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/te/te137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/at/at215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/if/if159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/do/do174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/of/of170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/de/de164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/it/it183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/do/do170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/up/up171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/di/di176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/up/up174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/im/im178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/te/te202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/up/up175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/op/op174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/am/am161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/as/as156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/if/if183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/an/an148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/el/el171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/be/be174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/to/to188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/et/et165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/as/as180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/il/il171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/re/re178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/da/da208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/at/at164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/al/al172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/na/na172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/su/su194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/va/va167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/on/on172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/os/os183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/un/un188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/de/de178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/li/li137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/if/if202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/am/am208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/un/un161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/we/we171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/og/og161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/me/me171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/za/za141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/de/de198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/be/be215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/se/se171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/me/me164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/di/di141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/de/de165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/za/za178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/re/re156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/im/im167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/as/as192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/we/we170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/is/is164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/op/op215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/il/il194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/to/to178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/on/on170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/do/do172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/od/od178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/up/up148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/of/of202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/if/if164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/am/am171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/od/od179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/af/af183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/da/da184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/el/el167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/up/up172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/me/me178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/su/su145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/we/we179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/im/im165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/go/go171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/im/im173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/al/al183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/va/va176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/le/le173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/es/es156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/om/om169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/on/on173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/et/et153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/su/su164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/te/te172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/go/go156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/av/av173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/so/so194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/so/so168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/el/el174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/an/an171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/id/id215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/is/is171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/im/im183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/se/se165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/us/us194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/og/og178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/su/su165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/la/la176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/no/no194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/af/af151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/li/li165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/op/op194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/to/to172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/op/op173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/na/na189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/di/di208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/of/of178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/of/of208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/id/id172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/il/il165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/os/os165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/de/de171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/er/er165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/si/si171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/re/re179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/av/av165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/if/if161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/id/id159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/on/on155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/em/em165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/op/op165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/om/om168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/av/av215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/is/is188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/od/od164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/da/da161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/se/se167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/el/el171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/za/za159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/in/in179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/et/et192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/es/es208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/am/am180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/do/do192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/po/po171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/to/to183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/em/em178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/li/li174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/du/du173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/og/og173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/en/en173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/on/on161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/la/la145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/im/im148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/is/is184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/al/al137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/es/es155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/me/me189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/am/am165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/av/av184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/re/re168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/os/os167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/av/av148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/og/og178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/up/up153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/da/da155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/da/da179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/at/at141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/at/at155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/af/af137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/no/no173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/li/li179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/up/up171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/al/al174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/id/id164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/im/im194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/le/le178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/un/un175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/em/em151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/da/da178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/or/or183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/va/va173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/up/up161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/va/va178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/af/af172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/me/me198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/os/os184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/or/or167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/up/up172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/en/en172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/as/as172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/is/is178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/us/us170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/od/od151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/du/du174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/em/em170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/et/et174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/am/am169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/up/up171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/du/du170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/un/un148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/te/te174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/et/et171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/du/du194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/do/do194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/me/me179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/to/to161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/or/or171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ex/ex178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/im/im159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/en/en215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/op/op145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/de/de145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/or/or179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/da/da164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/as/as169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/op/op171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/it/it145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/le/le172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/af/af198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/no/no192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/az/az171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/in/in171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/it/it171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/re/re168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/un/un176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/da/da174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/an/an183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/na/na151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/as/as184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/do/do202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/po/po170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/et/et176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/as/as194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/me/me172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/or/or167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/or/or145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/of/of161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/op/op169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/me/me167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/am/am141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/po/po156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do170.1p119.5s100.0t+000itd.htk'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/test_syllables	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,9065 @@
+am
+aa
+uv
+fo
+ux
+oz
+fa
+ig
+ix
+ox
+pu
+bi
+bo
+uk
+us
+vu
+aa
+bo
+ee
+fu
+el
+ko
+lu
+di
+ro
+ot
+eb
+xu
+ya
+ab
+si
+on
+ki
+uk
+pu
+li
+se
+iv
+di
+ko
+aa
+ak
+re
+um
+me
+ox
+va
+du
+et
+ve
+iy
+ib
+zi
+wa
+ba
+an
+eh
+ka
+op
+ir
+ur
+vo
+ed
+xu
+ri
+od
+mo
+ay
+fu
+ax
+aw
+eb
+lo
+zi
+ol
+ni
+ta
+ob
+xe
+iz
+ma
+wo
+he
+os
+ir
+ag
+wa
+ub
+ax
+ad
+ug
+ib
+ib
+ug
+un
+as
+oz
+fe
+vu
+ge
+ut
+nu
+am
+iz
+gi
+fe
+go
+se
+ig
+en
+ug
+ih
+oh
+gu
+fo
+vu
+od
+um
+ok
+mu
+fa
+go
+ov
+od
+aw
+ro
+ka
+ey
+af
+ra
+hu
+ut
+ta
+ig
+av
+id
+ze
+ep
+ix
+tu
+gu
+ze
+hi
+ep
+ho
+go
+xu
+et
+uv
+uh
+wa
+eh
+oy
+ii
+fu
+in
+xo
+un
+iw
+ab
+or
+xi
+se
+in
+or
+an
+yi
+up
+ib
+pe
+az
+ob
+re
+iv
+ep
+ki
+am
+yo
+un
+ex
+ye
+am
+za
+wa
+in
+da
+in
+ba
+ig
+lu
+om
+ut
+ab
+ox
+id
+oo
+la
+ve
+il
+el
+to
+en
+ob
+iw
+es
+ow
+ev
+as
+ir
+ix
+ob
+du
+uf
+la
+od
+oz
+uy
+ta
+uk
+ow
+mu
+ez
+or
+wo
+we
+ok
+la
+fe
+al
+as
+no
+be
+eh
+ze
+ak
+es
+oh
+za
+ik
+ur
+wa
+ni
+ap
+eb
+ir
+no
+pa
+fa
+ox
+oy
+wa
+uh
+xe
+ut
+xa
+yu
+iv
+ta
+ha
+un
+ex
+el
+ev
+fa
+ih
+ox
+as
+ki
+iw
+ye
+gu
+op
+ob
+ga
+fe
+vo
+ki
+oz
+ni
+ko
+gu
+ep
+an
+hi
+uz
+we
+es
+in
+ap
+um
+fo
+el
+un
+uf
+so
+to
+ke
+za
+um
+on
+xa
+av
+ul
+fe
+im
+bi
+za
+ob
+du
+hi
+eg
+es
+us
+le
+fe
+ih
+ak
+pa
+ag
+mu
+ex
+ma
+ra
+ip
+lo
+ra
+op
+ru
+re
+vi
+ew
+do
+zu
+va
+os
+bu
+zu
+ew
+af
+ey
+os
+iy
+pa
+ex
+ni
+ov
+xe
+oo
+pa
+to
+af
+iz
+ke
+pu
+ye
+ep
+ot
+az
+nu
+il
+ab
+eh
+iw
+li
+iw
+me
+fi
+be
+vi
+ot
+xe
+zi
+ux
+zo
+aa
+ox
+vi
+wi
+po
+bu
+or
+ex
+lo
+mu
+ab
+gu
+vu
+pi
+ip
+ba
+ex
+ux
+ra
+ud
+oh
+pu
+le
+to
+ko
+bu
+na
+xa
+se
+li
+ew
+ex
+fe
+eh
+eb
+za
+fe
+al
+ub
+ha
+fa
+ak
+ab
+do
+oh
+av
+ix
+ta
+uz
+iv
+he
+ii
+fa
+re
+oz
+yo
+po
+vi
+mu
+he
+ye
+iw
+fa
+op
+be
+ax
+ug
+al
+se
+il
+tu
+fe
+sa
+ir
+in
+el
+ru
+we
+la
+up
+in
+bu
+be
+ef
+yo
+ii
+ah
+az
+of
+ra
+lu
+od
+si
+oo
+ga
+oz
+un
+do
+od
+wa
+la
+ox
+xu
+ov
+po
+af
+iw
+ru
+uy
+ku
+vi
+uy
+xu
+se
+ah
+to
+fu
+eh
+ah
+ur
+ge
+su
+os
+iy
+iz
+og
+ed
+oh
+ul
+ab
+yu
+se
+an
+nu
+fo
+iv
+ey
+or
+ha
+ad
+su
+os
+ur
+bo
+xe
+fe
+iz
+uv
+po
+ii
+aa
+up
+iz
+az
+ir
+in
+eg
+wa
+ex
+iy
+on
+na
+xu
+wu
+ih
+aw
+go
+ey
+ag
+na
+pu
+um
+sa
+ha
+oz
+ke
+if
+uk
+ux
+xi
+te
+iy
+hu
+uy
+um
+le
+af
+us
+ok
+bu
+ga
+tu
+du
+xo
+am
+uv
+un
+vi
+he
+ah
+oy
+oh
+za
+ne
+im
+yi
+zo
+di
+id
+vu
+ii
+ak
+pe
+uv
+er
+ub
+ah
+uz
+uw
+as
+on
+ew
+wa
+oz
+an
+me
+xe
+ik
+uf
+ay
+od
+eh
+es
+es
+ki
+et
+ad
+ol
+ak
+wu
+ow
+ek
+ux
+ka
+as
+ex
+lu
+ex
+ek
+ux
+su
+se
+pi
+be
+no
+in
+av
+or
+lo
+ke
+ug
+la
+so
+ta
+va
+ow
+li
+xe
+ub
+ur
+in
+zu
+ya
+os
+ne
+su
+gi
+uk
+eg
+me
+fe
+su
+ay
+el
+ee
+bu
+ar
+de
+es
+hi
+ne
+is
+el
+ov
+ed
+ub
+xa
+li
+li
+xe
+ee
+la
+of
+iz
+on
+wa
+od
+ke
+ob
+ev
+en
+um
+xo
+pe
+ma
+vi
+ii
+si
+se
+vo
+ob
+ok
+oy
+aw
+ot
+ra
+ev
+ek
+vo
+ag
+ye
+ap
+di
+ix
+fo
+us
+it
+ep
+am
+ke
+al
+mo
+ga
+uy
+ya
+pi
+ku
+im
+hi
+lo
+of
+re
+ix
+us
+ni
+ev
+hi
+ub
+ub
+xi
+ve
+xe
+ix
+oo
+ox
+og
+av
+fu
+ma
+uz
+ez
+fi
+za
+du
+uu
+oo
+da
+du
+ap
+ki
+op
+fa
+er
+eh
+uz
+ug
+ex
+if
+im
+az
+ez
+ba
+fi
+xi
+ud
+om
+xe
+ub
+ka
+do
+es
+us
+mo
+hi
+ii
+un
+um
+im
+ho
+ot
+he
+eg
+bu
+ta
+fi
+oy
+pe
+zo
+on
+ug
+se
+mo
+ta
+es
+se
+de
+wa
+uh
+za
+is
+uk
+ab
+fa
+le
+ya
+ko
+ox
+re
+ix
+se
+id
+pe
+oo
+tu
+be
+fo
+el
+gi
+gu
+xe
+ap
+he
+vu
+te
+du
+av
+uv
+od
+ey
+ti
+re
+uw
+vo
+al
+ip
+op
+aa
+pu
+er
+aa
+af
+ne
+ne
+xe
+er
+be
+eb
+ro
+ur
+ey
+ir
+yi
+ze
+om
+to
+zi
+ze
+ar
+re
+al
+so
+ur
+gi
+pu
+uw
+ti
+yi
+vi
+ap
+su
+ol
+za
+ga
+ku
+sa
+ku
+oh
+ma
+di
+oo
+ew
+ez
+al
+ed
+ne
+wo
+di
+ez
+op
+yo
+it
+og
+xu
+fe
+es
+xe
+te
+up
+fo
+do
+ru
+ol
+aw
+it
+ab
+po
+at
+ut
+pe
+ih
+yu
+wa
+mi
+od
+at
+ka
+su
+on
+oy
+fe
+bi
+pi
+is
+ar
+nu
+at
+af
+om
+ix
+ti
+no
+ri
+at
+ul
+di
+po
+li
+ig
+of
+ri
+bo
+yu
+us
+wi
+ga
+mi
+so
+lu
+ee
+ah
+mo
+za
+ot
+ov
+am
+ma
+ar
+en
+bi
+lo
+oo
+ay
+ev
+uv
+si
+et
+li
+an
+li
+an
+el
+ep
+me
+si
+re
+la
+bi
+an
+ig
+nu
+em
+lo
+ig
+af
+oz
+re
+iw
+ov
+uv
+iz
+en
+on
+ub
+iz
+hi
+wo
+ep
+to
+ii
+xu
+ex
+as
+af
+ur
+tu
+ed
+te
+pu
+of
+of
+wa
+ti
+ye
+ov
+gu
+vo
+ru
+ax
+uv
+uy
+ya
+uw
+ka
+gu
+uv
+aa
+el
+il
+ve
+yi
+de
+az
+el
+az
+ik
+om
+do
+ow
+ol
+iv
+ge
+uy
+vu
+ef
+um
+oy
+al
+of
+il
+er
+xa
+ud
+ab
+me
+uh
+be
+um
+bo
+ef
+eg
+ze
+xa
+ma
+ef
+ap
+on
+ii
+ha
+du
+ye
+vi
+ab
+du
+pu
+xo
+ex
+an
+aa
+ey
+ax
+ki
+xi
+es
+tu
+go
+eb
+mi
+so
+bo
+wu
+to
+fi
+ul
+um
+uf
+ig
+li
+mo
+gu
+si
+he
+ev
+it
+ut
+uf
+op
+pu
+ax
+wu
+ho
+na
+yi
+ra
+ma
+si
+vo
+lo
+iv
+ik
+va
+ox
+bo
+ba
+eh
+xu
+id
+in
+is
+pe
+yo
+oo
+im
+su
+ru
+eb
+ez
+ed
+ha
+ar
+ek
+yo
+xo
+il
+ib
+pi
+no
+me
+is
+ay
+go
+eb
+ku
+eg
+uw
+om
+za
+ik
+ze
+zu
+on
+an
+lu
+ox
+pu
+ev
+eg
+ev
+lo
+ux
+xe
+ez
+ob
+ke
+ol
+is
+re
+ed
+uk
+ew
+uw
+be
+hu
+or
+ni
+ib
+id
+en
+po
+de
+so
+ba
+na
+am
+an
+ge
+ri
+if
+al
+iz
+ug
+og
+tu
+yu
+af
+ag
+pa
+ay
+ut
+ti
+ba
+lu
+bu
+ut
+za
+ga
+hu
+ev
+wu
+ih
+ad
+ip
+ak
+va
+ro
+aa
+am
+pe
+le
+op
+us
+we
+zo
+du
+ib
+es
+za
+ii
+es
+ut
+xu
+xu
+ho
+iw
+ta
+fi
+iv
+oo
+iv
+it
+up
+wu
+fo
+pe
+aw
+po
+at
+xu
+ef
+if
+ka
+te
+pa
+aa
+ed
+eb
+aw
+im
+as
+bi
+fe
+lu
+ir
+et
+ef
+uf
+os
+xi
+eg
+ho
+ih
+ud
+du
+en
+pe
+he
+ge
+ed
+mi
+er
+an
+at
+za
+gu
+om
+ig
+ka
+ke
+ax
+ah
+xu
+xu
+wu
+of
+la
+on
+hu
+aa
+ri
+ob
+re
+ud
+ez
+de
+re
+pi
+zi
+uf
+oy
+na
+oh
+it
+ey
+os
+fu
+oh
+ug
+ay
+it
+ii
+ow
+ip
+nu
+oy
+ay
+uf
+te
+aa
+em
+fo
+ho
+he
+uu
+vi
+un
+ow
+li
+us
+es
+ov
+da
+up
+za
+da
+ti
+ee
+ti
+ha
+ux
+et
+im
+ze
+uf
+op
+ef
+ag
+zo
+il
+yi
+un
+if
+ik
+ka
+mo
+aw
+to
+pi
+ul
+zo
+fe
+ta
+tu
+lu
+ud
+oz
+of
+oz
+vi
+ip
+no
+ok
+oy
+ve
+af
+iz
+wo
+ne
+mi
+xo
+ok
+gi
+in
+up
+of
+ob
+se
+ez
+ho
+un
+ab
+pa
+tu
+zi
+oz
+ot
+ta
+ro
+ok
+eh
+ra
+we
+us
+at
+lo
+um
+na
+ak
+ko
+te
+on
+ar
+ut
+ir
+af
+um
+ek
+ya
+xa
+ef
+ay
+va
+if
+em
+bu
+aa
+ve
+ob
+ak
+de
+bu
+af
+iy
+ev
+aw
+ur
+ho
+ad
+zo
+ru
+po
+la
+bi
+ro
+mo
+de
+ki
+ma
+iv
+vu
+ib
+ig
+ga
+ud
+ta
+ku
+ul
+um
+ye
+on
+ep
+lo
+at
+iz
+im
+li
+aw
+uv
+om
+az
+ee
+in
+iw
+ga
+bu
+am
+we
+ra
+du
+az
+we
+gu
+oz
+zo
+es
+un
+su
+xu
+gi
+er
+il
+nu
+ad
+wa
+ag
+yo
+up
+no
+pu
+ve
+ip
+et
+uz
+mo
+ap
+uw
+uf
+aw
+ni
+li
+or
+el
+he
+nu
+uz
+ga
+ul
+ev
+ow
+ap
+ob
+op
+bu
+ad
+he
+iw
+uu
+te
+et
+ru
+xu
+li
+oh
+na
+eg
+ob
+pu
+is
+ee
+le
+yu
+ro
+ge
+iz
+hu
+ya
+yi
+ut
+di
+yo
+li
+ig
+ma
+id
+ru
+ov
+ay
+xu
+hi
+wa
+ez
+ar
+up
+fu
+ef
+ef
+ki
+uy
+up
+so
+iw
+ag
+ey
+og
+si
+ro
+ig
+gi
+es
+ip
+oo
+li
+si
+os
+xi
+os
+xo
+om
+az
+yi
+ot
+fu
+an
+po
+ge
+la
+pi
+ze
+ib
+mu
+of
+os
+av
+ih
+ot
+ko
+ay
+ni
+ok
+pu
+ku
+le
+ma
+so
+ku
+aw
+pu
+la
+ii
+im
+bo
+ka
+gu
+xi
+wo
+it
+ur
+eb
+ov
+ok
+zu
+lo
+mi
+ay
+ev
+aa
+fe
+en
+ew
+vi
+fa
+ko
+im
+en
+mi
+ek
+te
+bi
+ut
+ze
+be
+ow
+bu
+to
+et
+ot
+ay
+iz
+ow
+ze
+or
+ir
+ma
+ii
+hu
+ge
+ik
+ih
+pa
+fa
+aa
+wu
+mi
+pi
+se
+lu
+eg
+uy
+me
+in
+ut
+ov
+ii
+et
+di
+ku
+ev
+or
+xe
+do
+pi
+lo
+ra
+xo
+iv
+xo
+ul
+to
+mu
+of
+ux
+ix
+pa
+ka
+uu
+od
+as
+ef
+ak
+eg
+yi
+ig
+xi
+wo
+ir
+it
+ya
+ur
+ep
+yu
+yi
+ke
+no
+iz
+zo
+oz
+da
+ke
+um
+az
+oz
+he
+me
+uu
+ne
+ux
+sa
+ku
+di
+ef
+he
+ul
+to
+te
+of
+do
+ah
+ax
+ug
+pe
+ro
+an
+el
+ko
+ur
+ze
+ud
+nu
+ul
+uf
+pe
+id
+go
+uf
+ba
+ye
+te
+ud
+at
+sa
+do
+on
+al
+as
+ke
+um
+ay
+uv
+eg
+to
+gu
+ag
+ub
+pe
+wo
+vu
+ar
+vo
+hi
+ye
+ov
+fe
+im
+uf
+ki
+mo
+op
+ox
+uy
+ti
+no
+mi
+ot
+hu
+zo
+ba
+zo
+uv
+se
+ta
+sa
+or
+uk
+ew
+su
+la
+oo
+ve
+ur
+pu
+ed
+xa
+os
+ix
+lu
+ne
+ke
+ol
+ed
+vi
+ov
+ik
+ho
+ad
+on
+ke
+ta
+oy
+ag
+ko
+pi
+on
+ov
+uk
+en
+ag
+ab
+ve
+hu
+xi
+ag
+iw
+en
+ni
+ip
+ke
+eb
+ey
+ko
+ee
+el
+eb
+ir
+ri
+or
+fo
+ro
+uu
+er
+ha
+fo
+um
+ha
+op
+ul
+is
+og
+af
+ha
+aw
+ya
+gi
+us
+bo
+vo
+ab
+ob
+ox
+za
+uh
+go
+em
+me
+ma
+ma
+an
+ek
+to
+ox
+iz
+uw
+in
+ri
+zi
+xu
+ke
+an
+up
+im
+iv
+xe
+xu
+it
+ew
+wo
+re
+vu
+uf
+ko
+fu
+xa
+ih
+in
+an
+le
+at
+oy
+po
+ap
+oz
+me
+gu
+ba
+wi
+on
+ep
+aw
+zi
+ax
+ix
+hi
+re
+op
+xa
+te
+la
+we
+ey
+ak
+we
+on
+mo
+em
+nu
+iw
+pi
+vo
+im
+uk
+al
+ok
+id
+uv
+ya
+he
+is
+ah
+no
+no
+mi
+ar
+ow
+ho
+el
+un
+ek
+ey
+we
+at
+uh
+ru
+os
+oh
+om
+pe
+xi
+le
+ik
+hu
+le
+ga
+of
+nu
+us
+na
+ok
+vi
+ef
+ba
+eh
+mi
+ax
+oz
+ma
+ab
+ku
+ko
+da
+av
+hi
+to
+mo
+xu
+od
+zi
+ke
+te
+ro
+ap
+od
+ub
+of
+ok
+ol
+ne
+eh
+ak
+ek
+uw
+ih
+na
+ot
+eg
+ez
+ma
+ta
+lo
+di
+go
+mo
+ut
+ok
+on
+pa
+ab
+ro
+so
+oz
+re
+as
+ii
+nu
+ya
+om
+ri
+ne
+en
+ba
+og
+as
+do
+eh
+ut
+ya
+xu
+id
+bi
+mo
+ap
+ip
+oo
+yo
+fa
+en
+ub
+de
+iy
+ew
+ip
+et
+es
+in
+ub
+bu
+to
+pu
+ax
+od
+ge
+vo
+al
+ne
+bi
+mu
+ti
+xe
+bi
+va
+gu
+uy
+te
+he
+af
+ge
+gi
+ta
+ek
+sa
+uu
+ez
+ya
+wu
+gi
+ye
+gi
+bu
+bu
+ub
+hu
+uf
+pi
+te
+wu
+fa
+uk
+ob
+ti
+oh
+gi
+ze
+ok
+ol
+og
+mu
+ke
+is
+so
+uw
+av
+xi
+oo
+la
+hi
+ka
+il
+am
+oo
+ex
+uv
+ta
+ir
+az
+tu
+ek
+lo
+ap
+vu
+os
+ye
+iw
+ug
+en
+ad
+xu
+oo
+ok
+ri
+po
+al
+ma
+ih
+ub
+ot
+la
+ev
+ut
+xo
+ih
+ki
+di
+is
+uh
+zo
+um
+os
+le
+xo
+fa
+ga
+ut
+an
+ap
+ho
+ol
+ya
+le
+eb
+tu
+na
+de
+os
+go
+ay
+eh
+uh
+wo
+xo
+an
+ru
+ta
+bo
+pe
+te
+up
+bi
+we
+di
+xi
+en
+ri
+ey
+al
+si
+ve
+il
+ar
+ta
+eg
+ow
+ex
+id
+iy
+nu
+ed
+pu
+su
+nu
+la
+ap
+zi
+lo
+es
+eg
+zo
+fu
+ux
+ap
+ah
+ef
+eh
+ul
+ol
+it
+sa
+to
+du
+ba
+yu
+if
+zu
+za
+se
+oz
+no
+el
+vo
+nu
+ik
+ii
+ga
+iz
+ug
+ho
+ot
+lo
+lu
+lo
+in
+yi
+ot
+tu
+ad
+pi
+aa
+fi
+ow
+na
+uh
+ye
+zo
+fo
+zu
+ew
+ur
+ev
+en
+iw
+ul
+ev
+ey
+ig
+iy
+uy
+lo
+po
+za
+nu
+ro
+em
+yo
+go
+wi
+ki
+ah
+ex
+gi
+pu
+no
+or
+zu
+ax
+un
+lu
+uz
+im
+ov
+sa
+og
+if
+tu
+ob
+oh
+le
+un
+di
+nu
+go
+az
+na
+mo
+iz
+il
+aa
+ap
+uu
+ef
+ko
+ob
+hu
+og
+wa
+ee
+av
+he
+bu
+en
+ex
+am
+wo
+ak
+ob
+ba
+of
+va
+zu
+pa
+or
+ex
+ra
+ob
+lu
+ed
+uz
+ab
+me
+it
+wi
+ee
+za
+uz
+ba
+ur
+xi
+va
+iy
+es
+ni
+og
+ve
+so
+oz
+xi
+ga
+ol
+uy
+uh
+ga
+ro
+re
+be
+pi
+su
+ke
+ku
+ad
+uu
+do
+in
+en
+ef
+af
+el
+ge
+ta
+ek
+op
+ez
+ka
+as
+og
+li
+wu
+gi
+aa
+pa
+ku
+ut
+mi
+ey
+fu
+id
+ak
+ob
+ew
+nu
+oo
+iw
+fo
+il
+ir
+ak
+hi
+er
+ip
+to
+uh
+ye
+ne
+ed
+ti
+uw
+uf
+pu
+ti
+vu
+ne
+uz
+xa
+de
+on
+uf
+ho
+us
+du
+mo
+om
+de
+la
+ta
+da
+ee
+yo
+du
+ba
+eb
+da
+xe
+li
+xi
+iv
+ap
+ek
+er
+ey
+in
+em
+ib
+iz
+so
+el
+gu
+or
+ge
+ah
+be
+ov
+ew
+ye
+yo
+ku
+ga
+fe
+ah
+ux
+ba
+da
+ew
+ga
+ex
+if
+ro
+et
+ur
+mo
+ri
+in
+ed
+ez
+ol
+mi
+ub
+le
+bi
+um
+an
+et
+ez
+la
+ix
+zi
+ki
+es
+ge
+ev
+ux
+if
+go
+iv
+mi
+uu
+ot
+li
+ve
+pa
+wu
+an
+vu
+yi
+ek
+no
+of
+go
+ix
+oy
+sa
+il
+pu
+ro
+xi
+ob
+ra
+uh
+no
+fe
+yi
+oo
+ip
+va
+od
+en
+hi
+vo
+ar
+eb
+di
+wo
+ni
+od
+do
+od
+be
+ta
+hu
+zi
+uu
+yo
+uf
+we
+ka
+ov
+aa
+xi
+ek
+af
+pi
+ig
+ud
+er
+ra
+to
+ho
+il
+ti
+we
+ok
+uf
+af
+xu
+ad
+se
+pi
+on
+al
+it
+is
+ik
+ub
+ag
+el
+ig
+ob
+ra
+uk
+ub
+ze
+ok
+oo
+aa
+bi
+ga
+up
+pi
+xo
+es
+iw
+ii
+ox
+sa
+ik
+as
+ve
+ef
+yi
+hi
+vo
+ez
+wu
+eg
+up
+ok
+ov
+ib
+vo
+ah
+ay
+na
+ko
+se
+iv
+uv
+il
+op
+vu
+af
+ef
+fi
+za
+ap
+ed
+fi
+wu
+zo
+ot
+ik
+ug
+yo
+yi
+ox
+ik
+hu
+if
+od
+ku
+ki
+up
+pa
+oz
+em
+zo
+ba
+ut
+yu
+he
+no
+er
+ar
+ev
+ew
+er
+bu
+xa
+on
+oy
+le
+uh
+uu
+la
+aw
+ni
+xe
+mi
+xa
+pe
+xa
+ey
+xi
+uf
+if
+et
+pe
+ka
+de
+aa
+ka
+et
+us
+an
+ti
+ay
+as
+wi
+ay
+or
+ba
+as
+ef
+uz
+or
+ab
+ru
+hi
+ar
+ne
+do
+em
+us
+ah
+aa
+ki
+af
+ab
+be
+ak
+ze
+ey
+et
+lo
+id
+uk
+az
+mu
+of
+ib
+iy
+hi
+gu
+mi
+ho
+ra
+du
+an
+ro
+id
+hi
+xi
+me
+vi
+aa
+ay
+ip
+xo
+ug
+we
+el
+ak
+am
+uv
+fo
+en
+at
+an
+da
+ha
+ut
+iw
+lu
+du
+uv
+ba
+ap
+va
+di
+it
+ol
+ga
+ye
+pe
+we
+si
+ki
+mo
+ib
+ib
+ta
+ii
+yu
+oz
+er
+et
+ni
+az
+xu
+so
+hu
+va
+mi
+ig
+om
+ol
+el
+uv
+ul
+ee
+er
+ko
+ta
+ka
+ul
+de
+yo
+ah
+uk
+is
+ko
+pi
+ru
+ap
+li
+za
+ox
+ku
+om
+xe
+oz
+wu
+yu
+va
+ok
+ho
+hi
+mu
+iz
+xe
+ma
+ye
+er
+ex
+da
+ke
+vo
+re
+yu
+az
+iw
+ve
+yi
+uv
+ev
+wo
+du
+yi
+am
+to
+ho
+um
+gu
+pi
+it
+un
+gi
+ba
+xo
+ih
+uv
+sa
+xe
+de
+ed
+lu
+gu
+ug
+ay
+ra
+bu
+il
+be
+ra
+ti
+ru
+sa
+et
+ab
+ox
+tu
+ix
+ro
+go
+ir
+ot
+ev
+fe
+oo
+ol
+fu
+mi
+ok
+la
+ot
+oy
+vu
+bi
+mu
+eb
+ah
+er
+iw
+ik
+ey
+ot
+go
+zo
+wo
+ez
+im
+aa
+og
+up
+ve
+we
+up
+fe
+va
+ey
+be
+up
+ut
+si
+he
+do
+wu
+mu
+yi
+pu
+fu
+uw
+mo
+if
+id
+us
+le
+fo
+uw
+pe
+av
+id
+uf
+ay
+ya
+oh
+xi
+ey
+oo
+wa
+lu
+yi
+ow
+ih
+bo
+ol
+ak
+ul
+ar
+ov
+aa
+ri
+ok
+oo
+if
+ek
+il
+xi
+ur
+ar
+do
+re
+yo
+ez
+hi
+ef
+ab
+pu
+ri
+ip
+ba
+zu
+ax
+ek
+do
+ad
+le
+es
+ud
+te
+pu
+ak
+ah
+ez
+ep
+og
+id
+ze
+zo
+us
+og
+ha
+it
+ma
+uw
+bu
+al
+vi
+bo
+be
+bo
+ot
+on
+up
+os
+ti
+le
+ri
+li
+ov
+ya
+xi
+in
+yo
+iz
+le
+af
+id
+ze
+ux
+gi
+pa
+wu
+ux
+va
+tu
+it
+ze
+do
+da
+uh
+xo
+ab
+ka
+ho
+al
+yi
+al
+ol
+fa
+ze
+ef
+or
+ba
+in
+od
+sa
+ra
+bi
+ko
+is
+vu
+ud
+ov
+de
+wo
+eb
+fi
+ar
+oy
+uy
+wo
+im
+us
+ux
+ag
+re
+iy
+ot
+du
+as
+ge
+ad
+ee
+uw
+ik
+oz
+ot
+re
+ez
+xu
+pe
+ga
+ul
+ba
+xi
+ik
+zu
+en
+nu
+am
+ul
+we
+wi
+uh
+uk
+pa
+aw
+pa
+pi
+ma
+ul
+no
+ik
+ab
+ii
+yo
+gi
+ag
+ih
+on
+av
+eg
+ku
+hi
+ta
+fi
+ee
+di
+bu
+it
+uy
+xi
+wi
+ki
+uy
+aa
+if
+yi
+po
+no
+we
+at
+iy
+av
+op
+me
+mi
+ki
+vo
+ru
+uz
+ka
+ul
+or
+ah
+vo
+as
+uk
+ep
+ka
+la
+it
+aw
+wa
+ur
+ve
+va
+ye
+od
+he
+da
+bu
+up
+ze
+zu
+bi
+so
+oz
+id
+la
+ik
+tu
+fi
+ih
+za
+oy
+af
+yo
+go
+if
+at
+oo
+ix
+zi
+on
+ey
+lo
+up
+we
+om
+ho
+ow
+pe
+ad
+ox
+bi
+vu
+me
+ih
+iw
+at
+hu
+so
+xu
+ve
+at
+bo
+ef
+ek
+me
+um
+vo
+ag
+nu
+ru
+ok
+av
+aa
+va
+ek
+ag
+il
+oz
+ot
+ef
+me
+iy
+ek
+gi
+ox
+so
+iy
+ga
+ip
+so
+zu
+ne
+ep
+ya
+ri
+gi
+yi
+ep
+sa
+nu
+ta
+vo
+al
+up
+uu
+do
+se
+me
+ge
+ee
+va
+wi
+an
+di
+si
+iy
+wu
+ve
+ut
+am
+ga
+wo
+zu
+de
+ow
+lo
+it
+iy
+ol
+ho
+ee
+ew
+en
+iv
+it
+wi
+so
+yu
+av
+ox
+no
+at
+iw
+zi
+ov
+lu
+ob
+oy
+us
+ge
+zu
+et
+ex
+ob
+re
+ki
+go
+ed
+mi
+al
+zu
+uu
+or
+ul
+no
+uy
+iw
+zi
+ba
+or
+ur
+os
+da
+sa
+uu
+ka
+go
+hu
+ta
+ii
+ni
+me
+ox
+em
+yi
+al
+ta
+ge
+me
+un
+ex
+xo
+la
+oz
+pa
+ez
+ep
+go
+li
+ix
+ov
+ak
+iy
+fa
+uz
+aw
+ee
+ko
+ze
+at
+eb
+yo
+gu
+uu
+up
+ir
+bi
+ba
+ku
+go
+ay
+di
+re
+go
+iy
+bi
+ow
+se
+en
+ru
+lu
+yu
+ru
+xo
+ha
+ut
+xa
+ii
+ne
+bi
+el
+ub
+fo
+xo
+as
+de
+ul
+me
+od
+oy
+on
+fo
+ih
+im
+uw
+am
+di
+fi
+ok
+em
+ak
+us
+gu
+da
+op
+ev
+ev
+da
+iy
+ep
+ri
+ow
+em
+ri
+uf
+an
+gu
+bi
+ek
+oz
+fu
+do
+ko
+de
+ka
+li
+uz
+oh
+fa
+da
+im
+ux
+fu
+ip
+ar
+vu
+ee
+ag
+ip
+va
+za
+ux
+vu
+ew
+da
+ra
+uu
+ku
+po
+xi
+im
+ul
+ix
+of
+ke
+ib
+to
+or
+ur
+pa
+ha
+ak
+eb
+he
+fi
+de
+ef
+ib
+ah
+oy
+it
+ra
+ha
+ka
+op
+es
+ek
+vu
+ni
+ez
+ge
+ib
+ep
+ve
+ez
+es
+ra
+uk
+yu
+eh
+ug
+uy
+ey
+ox
+bo
+xu
+er
+zu
+eg
+aa
+ew
+lo
+ot
+os
+as
+gu
+as
+ix
+si
+od
+vi
+ig
+wu
+ud
+ne
+fu
+uy
+uh
+us
+ab
+si
+ub
+of
+ud
+si
+in
+ki
+go
+bu
+ye
+yu
+en
+ki
+wo
+bi
+pa
+oh
+lu
+ox
+er
+di
+up
+uy
+uu
+eg
+du
+wu
+po
+ed
+xo
+xo
+fu
+ee
+al
+ye
+ba
+im
+fe
+zu
+fu
+ba
+za
+vo
+iy
+vu
+up
+ef
+bu
+et
+tu
+ah
+el
+op
+az
+er
+us
+od
+ka
+ik
+fi
+mi
+ip
+hi
+uy
+ba
+hu
+bu
+ye
+uv
+ub
+vo
+xo
+ze
+ib
+ut
+fi
+uk
+os
+sa
+ip
+mo
+aw
+ex
+uw
+om
+et
+ra
+er
+su
+lu
+gi
+ve
+oh
+du
+ex
+oz
+un
+eg
+si
+of
+ee
+ru
+we
+va
+ir
+aa
+ir
+ox
+gu
+no
+ig
+ii
+do
+ye
+uw
+id
+ru
+af
+uu
+op
+ek
+up
+do
+fa
+em
+oo
+ee
+ul
+oh
+ud
+xi
+re
+ge
+eh
+uk
+uf
+am
+di
+hu
+we
+ah
+po
+it
+oh
+bi
+go
+ay
+la
+ah
+ak
+od
+hu
+fu
+ho
+il
+ka
+ut
+id
+ig
+ax
+uw
+ge
+ek
+za
+et
+ha
+ho
+em
+as
+so
+od
+uu
+ow
+eh
+fa
+it
+ud
+ek
+pi
+ad
+ay
+ir
+be
+tu
+us
+tu
+ap
+ti
+iv
+ol
+xi
+de
+ri
+ux
+ux
+on
+en
+na
+ip
+wi
+yi
+ir
+va
+un
+xu
+ux
+ol
+fu
+to
+ew
+ad
+et
+mo
+vo
+le
+az
+di
+ez
+zo
+gi
+vu
+mi
+po
+ep
+al
+af
+ri
+el
+ve
+id
+av
+es
+it
+ov
+si
+mi
+te
+di
+em
+uy
+om
+uf
+bi
+zo
+eb
+we
+da
+la
+ep
+ro
+fe
+ik
+xo
+so
+yu
+ix
+oh
+om
+xo
+ay
+tu
+ga
+ed
+do
+vo
+iw
+ek
+wa
+ub
+uu
+us
+ni
+ri
+go
+da
+mi
+do
+he
+eh
+ox
+az
+na
+ki
+ka
+af
+vo
+ha
+if
+su
+du
+ut
+sa
+el
+ok
+me
+ew
+on
+su
+ay
+yo
+ef
+ko
+ge
+no
+te
+do
+ex
+at
+vo
+ix
+ro
+ok
+he
+in
+vi
+og
+ii
+ig
+oh
+so
+wu
+az
+xi
+um
+vu
+lu
+ip
+ay
+ed
+pa
+ax
+ke
+ud
+eg
+oy
+ul
+ey
+po
+zu
+ye
+he
+zi
+iz
+fa
+ed
+ye
+un
+eb
+mi
+ah
+ev
+pe
+ye
+ga
+te
+uf
+wa
+uh
+en
+is
+na
+at
+ke
+xu
+wa
+on
+ee
+az
+na
+ow
+ih
+ze
+vu
+aw
+oz
+yo
+ra
+ku
+hi
+uw
+el
+ek
+ee
+va
+od
+vi
+og
+as
+em
+me
+sa
+ri
+ma
+lo
+ik
+zu
+ko
+be
+fi
+tu
+ii
+if
+ik
+om
+id
+ne
+er
+an
+mi
+ek
+at
+ix
+yo
+oz
+uk
+lu
+be
+if
+aa
+da
+xa
+bu
+um
+mu
+ti
+ag
+az
+it
+yu
+oz
+fe
+uy
+sa
+le
+su
+ig
+iv
+mu
+ma
+xo
+ix
+oz
+er
+de
+ud
+eb
+ga
+bo
+uh
+it
+wa
+su
+so
+ax
+lu
+la
+pe
+no
+ok
+as
+we
+an
+or
+ey
+ut
+ta
+av
+od
+hi
+ag
+yu
+wi
+us
+du
+xe
+ro
+xo
+pi
+si
+ig
+uy
+us
+gu
+ep
+os
+uk
+fe
+ar
+fo
+of
+su
+ur
+ol
+ak
+di
+et
+ig
+om
+ep
+eb
+fo
+ih
+ux
+ha
+ek
+ed
+ko
+ya
+yo
+in
+ur
+ad
+ah
+yu
+hu
+ab
+ih
+aa
+id
+de
+ey
+ay
+ku
+it
+oz
+ob
+ri
+mo
+el
+zi
+ha
+ip
+ru
+sa
+go
+go
+be
+id
+zi
+mi
+wo
+ra
+di
+wa
+ak
+ik
+xa
+ex
+zi
+ga
+uv
+ha
+ru
+zu
+nu
+ka
+ip
+ot
+te
+mo
+hu
+ub
+ux
+al
+mu
+li
+ob
+or
+ki
+eh
+us
+na
+em
+av
+mu
+ru
+ti
+aw
+iz
+an
+uf
+av
+yu
+lu
+yo
+ew
+en
+ku
+ma
+xe
+le
+er
+iw
+al
+wi
+at
+im
+ul
+fo
+fo
+li
+ak
+so
+hu
+us
+vo
+iz
+ap
+oy
+ki
+lu
+iv
+lo
+bi
+ep
+ix
+ro
+li
+ir
+fe
+ak
+up
+al
+ma
+wi
+da
+be
+ad
+eg
+av
+ap
+ut
+ul
+uw
+of
+yo
+ew
+ki
+ib
+yu
+ow
+de
+az
+tu
+do
+ib
+la
+ih
+uu
+de
+pi
+pe
+ha
+te
+he
+ik
+ug
+iy
+ye
+uy
+iz
+bo
+ka
+vi
+po
+ex
+om
+ap
+oz
+ev
+do
+mu
+wu
+he
+it
+ut
+ve
+ee
+aa
+uz
+em
+bo
+im
+iv
+am
+ez
+ik
+in
+su
+ev
+ee
+am
+ep
+ix
+pu
+ex
+ab
+ge
+og
+se
+va
+wo
+uh
+no
+ne
+pe
+wo
+ap
+ay
+hi
+te
+de
+he
+od
+wo
+ud
+yi
+id
+eh
+or
+az
+mu
+le
+ne
+at
+uf
+uu
+om
+od
+su
+ki
+du
+ub
+vu
+um
+ag
+ut
+uh
+ix
+ab
+or
+ap
+wo
+ow
+ab
+uv
+iz
+iv
+ti
+ez
+xi
+od
+so
+za
+aa
+if
+is
+vi
+re
+su
+ob
+iz
+ii
+wa
+ho
+xa
+za
+it
+ri
+du
+le
+da
+yi
+ub
+oo
+va
+wu
+it
+ag
+tu
+na
+ye
+uv
+er
+li
+in
+an
+lo
+fi
+zo
+ba
+tu
+uf
+ir
+oo
+ii
+le
+ay
+uv
+wo
+om
+vu
+ux
+gu
+ot
+ve
+vu
+ak
+ba
+po
+ah
+lu
+oy
+it
+la
+ur
+ez
+zi
+sa
+as
+og
+su
+da
+yu
+uy
+pu
+os
+nu
+eg
+is
+ux
+xi
+ee
+ro
+ub
+oy
+ex
+fu
+wa
+lu
+me
+wu
+mu
+se
+ye
+ve
+ne
+if
+ne
+uw
+ix
+ku
+og
+re
+ex
+ig
+ri
+en
+pa
+do
+ed
+od
+oh
+lu
+mi
+la
+oo
+zo
+mo
+ke
+ef
+fa
+ip
+sa
+mu
+ka
+ha
+ux
+ob
+eb
+na
+ir
+em
+oy
+ee
+fu
+at
+ku
+lo
+on
+da
+xi
+so
+we
+if
+ko
+be
+ro
+iv
+hu
+uf
+ar
+bu
+fu
+va
+up
+vo
+pi
+em
+vi
+ar
+di
+eb
+af
+ho
+su
+ir
+et
+tu
+ur
+on
+ud
+os
+ex
+ex
+aw
+ez
+xi
+ex
+me
+ag
+ix
+ra
+uk
+er
+ro
+di
+du
+ov
+za
+ov
+aw
+pi
+ga
+oo
+ar
+fa
+ih
+lo
+wu
+iv
+ug
+po
+ni
+ow
+ar
+af
+fa
+ar
+uw
+ki
+uu
+en
+el
+gu
+ek
+zi
+iv
+wi
+go
+xa
+es
+uz
+eh
+la
+az
+be
+ro
+uy
+if
+ge
+iw
+uh
+af
+ad
+he
+yo
+hu
+ok
+yi
+oh
+el
+uh
+iv
+va
+em
+pe
+or
+iv
+le
+al
+mi
+me
+ze
+me
+ne
+ed
+eg
+id
+od
+uk
+aa
+uy
+ye
+op
+en
+ay
+li
+at
+he
+iv
+ix
+wu
+ak
+xu
+on
+op
+ev
+fa
+ot
+ow
+fo
+pa
+ol
+av
+sa
+iw
+ax
+ad
+ve
+ni
+vu
+et
+hu
+ew
+sa
+bu
+uv
+xi
+ad
+am
+an
+es
+is
+te
+la
+ez
+vu
+ax
+nu
+uz
+im
+er
+su
+su
+su
+vu
+ta
+fa
+do
+be
+ii
+et
+ar
+uu
+ag
+ag
+mu
+aw
+in
+um
+bo
+ha
+ap
+al
+ey
+zo
+ux
+be
+na
+iv
+xu
+te
+ih
+om
+es
+si
+ne
+ur
+se
+ik
+ah
+di
+zu
+uv
+ri
+or
+or
+en
+eb
+iz
+bi
+na
+no
+du
+ud
+ri
+in
+ux
+un
+sa
+as
+bo
+ol
+yi
+uw
+ri
+ka
+pu
+ve
+ey
+ge
+yu
+xa
+zu
+ul
+to
+fu
+oh
+yo
+oo
+no
+ah
+ka
+vo
+op
+op
+za
+ay
+ab
+up
+to
+ku
+lu
+in
+ro
+ap
+um
+la
+os
+so
+ve
+eg
+xu
+le
+bo
+ey
+og
+og
+uz
+uw
+um
+az
+al
+so
+fu
+ko
+ee
+oy
+fe
+xe
+oh
+xa
+li
+ix
+zi
+du
+ad
+hu
+zi
+ri
+of
+el
+ur
+wu
+is
+pe
+vu
+eh
+ox
+zo
+ut
+yi
+ug
+ii
+ak
+wo
+ne
+ik
+ef
+ma
+en
+ut
+lu
+pi
+iv
+os
+uz
+ut
+de
+il
+pe
+me
+ob
+ma
+ow
+eg
+fi
+ka
+lu
+ax
+vu
+aa
+to
+uf
+ul
+gi
+ze
+li
+ib
+ar
+mi
+og
+za
+za
+iy
+at
+po
+af
+eb
+ye
+ez
+id
+ux
+ay
+ex
+xe
+gi
+xa
+ol
+bo
+wi
+ez
+gi
+ha
+us
+ra
+ow
+an
+at
+ku
+vo
+gi
+ey
+xe
+nu
+ko
+ev
+od
+su
+ux
+he
+fu
+za
+du
+hi
+ok
+de
+no
+of
+at
+at
+la
+uk
+mu
+og
+mo
+lu
+vi
+oy
+mu
+id
+eg
+mo
+fi
+pu
+ul
+pe
+wa
+ul
+pu
+xu
+ip
+ve
+yi
+hu
+es
+an
+wi
+ta
+uh
+is
+az
+pu
+vu
+ux
+im
+az
+pi
+xi
+et
+yu
+ux
+os
+xo
+ez
+hi
+be
+uy
+uf
+ma
+us
+ug
+ha
+bo
+am
+uh
+iy
+or
+zi
+xo
+da
+si
+ne
+ob
+le
+ot
+ro
+ti
+ep
+uw
+du
+ab
+de
+es
+bo
+iv
+eh
+ii
+in
+ow
+no
+te
+tu
+ud
+wi
+wi
+an
+ok
+ek
+mo
+ee
+ar
+il
+pe
+et
+am
+ha
+fu
+be
+va
+ge
+ve
+ov
+ub
+it
+of
+eg
+ya
+uf
+hu
+xo
+ey
+em
+xe
+lo
+re
+um
+up
+yu
+af
+me
+iy
+ar
+ed
+vo
+ke
+me
+ax
+ak
+er
+es
+ev
+sa
+ok
+it
+ok
+ro
+an
+od
+ko
+da
+si
+uv
+to
+il
+si
+tu
+ze
+ez
+ug
+lu
+pa
+lo
+ex
+ro
+ka
+ze
+om
+er
+ek
+ne
+oy
+ax
+us
+om
+as
+am
+ox
+ga
+uf
+na
+xa
+gi
+og
+un
+ev
+ut
+ep
+uh
+ya
+ma
+as
+ya
+yo
+af
+ed
+ur
+uy
+ee
+or
+ix
+va
+ki
+ur
+op
+li
+we
+uh
+zo
+za
+ga
+tu
+mo
+ma
+ay
+ud
+ig
+ar
+ov
+ed
+li
+de
+op
+ga
+ap
+ve
+bo
+er
+oy
+ey
+ya
+oh
+to
+uh
+ib
+al
+la
+ee
+ne
+up
+la
+go
+ul
+ob
+am
+if
+og
+ig
+ik
+ad
+um
+ek
+ul
+ol
+bu
+eh
+za
+hu
+iy
+se
+iw
+on
+op
+vi
+ud
+he
+hi
+sa
+av
+va
+ro
+ni
+fa
+eb
+ri
+pi
+iw
+ni
+ke
+ip
+mi
+gi
+ke
+xe
+od
+if
+bi
+oo
+es
+ul
+ga
+or
+us
+di
+ub
+du
+uy
+ta
+av
+ke
+uk
+oz
+so
+ki
+iy
+du
+ro
+ha
+at
+le
+to
+ux
+ka
+ez
+uv
+or
+it
+na
+us
+ho
+se
+mi
+xe
+nu
+po
+wi
+te
+zu
+uw
+if
+om
+ma
+if
+as
+du
+aa
+yo
+ox
+ok
+fa
+ha
+hi
+on
+si
+ka
+fu
+al
+ov
+sa
+ev
+oh
+sa
+mo
+ih
+ix
+fe
+iz
+wi
+lu
+ez
+ha
+uy
+yu
+em
+so
+uw
+tu
+op
+ew
+iz
+ov
+va
+la
+po
+hi
+ay
+ir
+iv
+xu
+ru
+ro
+or
+ex
+zi
+is
+nu
+ti
+av
+ee
+za
+so
+iw
+si
+ga
+uh
+za
+az
+ik
+ir
+iz
+to
+bu
+go
+fi
+fu
+ge
+ni
+in
+uu
+le
+yi
+mu
+as
+xe
+ag
+ib
+al
+fa
+ni
+ni
+ef
+il
+re
+po
+eb
+gu
+ke
+ke
+il
+wo
+ey
+no
+yi
+uk
+ig
+fi
+so
+id
+me
+se
+hu
+od
+fo
+pi
+ez
+vo
+sa
+af
+fu
+he
+vi
+tu
+al
+pe
+ex
+ur
+xa
+as
+su
+xe
+fo
+da
+eg
+he
+yu
+ey
+bo
+ob
+ev
+ta
+ab
+ug
+un
+ge
+ad
+ib
+od
+er
+wa
+uy
+on
+uz
+im
+va
+ah
+da
+ug
+in
+ku
+ux
+ut
+oz
+zo
+vu
+ke
+ux
+ux
+oh
+ib
+za
+he
+bo
+ma
+bo
+ya
+la
+yo
+ge
+me
+su
+li
+ip
+sa
+so
+ep
+bi
+om
+if
+ri
+gi
+ug
+em
+yu
+gi
+ib
+ad
+ah
+if
+bo
+ev
+av
+ax
+es
+in
+of
+ay
+oh
+ik
+ol
+ge
+ih
+av
+us
+oy
+do
+il
+vi
+ol
+hu
+at
+ef
+vo
+yi
+di
+us
+pu
+ha
+pa
+ay
+ix
+ge
+mi
+le
+as
+un
+im
+bu
+to
+ov
+pa
+eg
+uf
+no
+vi
+ez
+at
+so
+ox
+uv
+ol
+fo
+ho
+fi
+ma
+yi
+va
+aw
+hu
+ak
+ox
+oy
+ot
+af
+oh
+om
+fi
+ee
+ev
+ad
+aa
+pi
+vi
+nu
+go
+wu
+of
+ay
+ow
+er
+mo
+er
+on
+no
+pe
+ko
+xa
+os
+xi
+om
+ez
+ig
+da
+uh
+fe
+iw
+ut
+ey
+wu
+as
+yu
+iv
+ku
+re
+sa
+on
+oz
+ho
+ih
+en
+lo
+og
+vu
+iy
+er
+ur
+ye
+uh
+um
+na
+ri
+fe
+un
+ho
+ri
+en
+iw
+iw
+oy
+ki
+re
+is
+of
+od
+xe
+ti
+zu
+oy
+fu
+ak
+ax
+lo
+wa
+ho
+ho
+ud
+is
+di
+so
+at
+ul
+ya
+le
+el
+uw
+nu
+iy
+si
+se
+eb
+ip
+wa
+le
+pu
+ya
+ik
+we
+ku
+uh
+hi
+lo
+uz
+ge
+ir
+et
+pu
+ri
+ga
+oy
+so
+ox
+xo
+ok
+se
+ne
+ke
+bu
+ev
+iv
+ha
+ew
+du
+vi
+ug
+va
+ur
+ka
+bo
+so
+gi
+se
+mu
+eh
+uz
+di
+za
+ve
+lu
+uy
+ep
+ri
+yu
+im
+in
+ex
+ko
+zo
+ok
+ub
+op
+oz
+ok
+ut
+vo
+xa
+we
+ik
+be
+yo
+fu
+id
+et
+di
+za
+zi
+pe
+im
+ru
+ih
+ad
+ag
+so
+ni
+iv
+ge
+po
+vu
+ad
+hu
+ox
+ek
+gi
+iy
+na
+ti
+wa
+ra
+ok
+ze
+so
+pa
+na
+zi
+ke
+se
+ri
+ot
+ne
+xa
+go
+og
+wo
+ot
+oz
+zu
+ur
+ex
+ey
+gi
+aw
+pi
+lo
+ob
+ar
+ux
+nu
+ho
+ge
+uf
+gi
+si
+su
+wi
+wo
+si
+ut
+ag
+ig
+xu
+ri
+ru
+ta
+of
+ep
+tu
+yi
+ed
+so
+iz
+ha
+he
+ib
+ed
+iy
+ir
+ad
+xu
+ez
+ah
+hi
+si
+ee
+da
+ig
+ki
+se
+hu
+ak
+eg
+oy
+be
+ba
+uz
+om
+ab
+ii
+aa
+so
+ih
+ew
+wu
+ih
+se
+du
+ee
+ok
+an
+hi
+ob
+da
+we
+ze
+no
+ax
+ow
+uk
+of
+em
+ki
+ru
+du
+ha
+or
+zi
+ru
+ud
+ar
+su
+ov
+du
+he
+ii
+xi
+ni
+uz
+sa
+op
+te
+or
+is
+er
+ko
+ob
+it
+lu
+if
+ep
+do
+ob
+ow
+ri
+na
+am
+ed
+os
+xi
+eb
+wi
+op
+xa
+ii
+ya
+ew
+uu
+sa
+ra
+ad
+ba
+po
+bo
+el
+om
+ru
+el
+yo
+em
+ii
+vo
+ov
+xa
+fa
+oy
+ha
+he
+vi
+eg
+it
+at
+ve
+su
+on
+ga
+ra
+to
+aw
+ye
+or
+si
+iy
+ro
+oh
+fu
+ok
+av
+fa
+on
+oh
+am
+ew
+vo
+na
+hi
+og
+ov
+an
+ku
+uk
+wi
+ni
+yo
+te
+ux
+ay
+hi
+ol
+re
+ii
+av
+ad
+mu
+zi
+ip
+ul
+ri
+uk
+og
+ye
+wi
+ag
+az
+ge
+wo
+iz
+ur
+ex
+ye
+up
+bi
+na
+fi
+wa
+te
+ig
+at
+ya
+xu
+op
+ol
+ya
+ed
+ig
+is
+be
+uz
+bu
+ew
+ax
+ol
+ax
+ro
+ox
+eh
+ov
+zu
+on
+ig
+yu
+tu
+al
+aw
+xa
+di
+ad
+af
+in
+re
+fi
+ba
+ez
+ur
+ef
+ar
+at
+ix
+en
+it
+ev
+pa
+ew
+ip
+li
+te
+il
+pa
+gi
+il
+mu
+pi
+ak
+pe
+ev
+yi
+as
+gu
+re
+wi
+av
+ba
+yi
+on
+oy
+el
+ez
+oo
+so
+ul
+iy
+su
+ra
+et
+zo
+em
+be
+ik
+ki
+mu
+vi
+ud
+ti
+si
+ib
+ah
+pu
+ii
+fo
+yo
+ne
+en
+ab
+uu
+af
+ko
+ol
+el
+bu
+ga
+aa
+oo
+ku
+uu
+le
+oh
+re
+ke
+na
+ka
+xi
+ye
+us
+on
+ba
+es
+oo
+li
+ep
+uv
+em
+eh
+ul
+de
+ri
+wu
+xa
+me
+hi
+ow
+ah
+ik
+vi
+fe
+nu
+ex
+fi
+ux
+ix
+le
+we
+ku
+ag
+ha
+gu
+xa
+uw
+se
+re
+ul
+eb
+ib
+ti
+va
+ug
+ez
+ah
+bi
+eg
+ub
+hi
+er
+yo
+ak
+yu
+eb
+em
+ep
+su
+pe
+xa
+va
+uf
+ow
+oh
+so
+wi
+ke
+di
+iw
+na
+da
+no
+et
+uk
+eh
+um
+di
+pi
+al
+uw
+xo
+ig
+yo
+iv
+ka
+ho
+uy
+ab
+og
+we
+id
+us
+oz
+zi
+su
+ep
+vu
+oz
+ma
+uk
+it
+le
+os
+ho
+ee
+ob
+zo
+lo
+fo
+ne
+wa
+ow
+uu
+us
+ni
+gi
+lu
+ta
+te
+ad
+su
+iv
+fi
+ot
+ye
+uv
+ez
+ub
+as
+ur
+do
+un
+wo
+id
+ix
+um
+eg
+oo
+el
+re
+ve
+uv
+gu
+de
+xa
+iz
+en
+pa
+ux
+no
+eh
+aw
+om
+bu
+ri
+og
+ut
+ew
+la
+em
+fo
+lu
+oh
+ok
+ev
+ur
+ir
+bo
+wi
+ow
+af
+ne
+ve
+ox
+ag
+za
+ra
+ip
+ew
+te
+ne
+ok
+va
+ib
+xi
+av
+du
+mo
+ed
+xo
+ad
+al
+wo
+ub
+zu
+uf
+su
+pi
+wu
+ve
+zi
+ik
+pu
+uz
+go
+ab
+po
+va
+ay
+be
+ki
+re
+et
+hi
+ih
+ah
+ib
+eg
+zi
+ez
+li
+fa
+os
+xu
+ep
+ti
+mu
+iw
+wi
+fa
+ed
+ug
+ux
+iz
+ef
+xo
+om
+un
+il
+ra
+yi
+ap
+zo
+bo
+il
+iv
+el
+iv
+fu
+mu
+se
+ir
+ii
+ug
+la
+ro
+zo
+wo
+vo
+uh
+up
+ix
+ii
+ax
+ba
+ba
+zo
+id
+hu
+ra
+yi
+id
+so
+ni
+ee
+os
+ow
+ak
+nu
+wu
+we
+er
+in
+uu
+lo
+lu
+ii
+zi
+be
+mu
+ga
+sa
+of
+ek
+ki
+et
+uk
+ye
+ee
+ek
+ha
+am
+hu
+iv
+si
+so
+ta
+eb
+va
+se
+da
+uk
+ni
+xu
+uk
+az
+ru
+mu
+ma
+eb
+nu
+na
+na
+an
+ir
+il
+di
+ra
+ow
+ek
+av
+xa
+ne
+ih
+be
+fi
+uh
+en
+ru
+vu
+ub
+ef
+to
+am
+ar
+ot
+pa
+ya
+uk
+af
+os
+ur
+fu
+di
+us
+um
+uz
+ev
+om
+ow
+do
+ur
+fi
+ek
+ye
+if
+he
+pa
+ey
+bo
+ap
+yi
+ep
+im
+ro
+ii
+uu
+lu
+ve
+mo
+ro
+ap
+or
+iw
+ii
+at
+an
+fe
+bi
+mu
+iw
+is
+ti
+fe
+af
+ed
+xu
+oz
+im
+om
+ud
+ro
+aw
+ni
+ap
+ed
+ad
+er
+pi
+ka
+wo
+at
+sa
+xi
+sa
+vu
+ta
+bu
+ap
+oz
+ox
+ip
+su
+ef
+op
+in
+li
+ux
+no
+ah
+ep
+iy
+ug
+el
+se
+ki
+et
+ok
+su
+xi
+et
+zi
+ku
+eh
+gi
+em
+al
+fa
+ik
+xe
+uy
+uw
+ut
+av
+ex
+bo
+pe
+it
+ni
+ag
+ig
+ii
+os
+ow
+ef
+em
+ox
+pe
+wa
+ba
+lo
+id
+xu
+xa
+ap
+ay
+eg
+ga
+na
+ez
+uy
+am
+mu
+ay
+uu
+wi
+ak
+ii
+il
+ni
+am
+an
+wi
+oo
+at
+is
+ru
+uh
+ib
+ak
+ge
+li
+vo
+an
+uk
+ev
+ow
+mu
+tu
+nu
+ta
+ap
+it
+lo
+ve
+ta
+og
+af
+bu
+ar
+to
+tu
+og
+os
+be
+ir
+pa
+ye
+ip
+ah
+un
+vu
+ef
+ve
+zu
+fu
+re
+si
+ow
+on
+zi
+ug
+ze
+si
+fi
+ef
+wa
+do
+az
+im
+un
+op
+ne
+ze
+mi
+va
+ad
+ke
+al
+uy
+po
+os
+oh
+ad
+ab
+wa
+ha
+if
+zo
+im
+so
+ar
+ew
+if
+xa
+ni
+ah
+fo
+ow
+om
+od
+li
+gi
+wi
+ze
+um
+ux
+um
+mu
+ki
+be
+ri
+gu
+ke
+ha
+ah
+ib
+ge
+us
+uw
+gi
+is
+ox
+in
+fa
+on
+uh
+ux
+is
+od
+zi
+ke
+no
+zu
+zu
+so
+to
+it
+un
+el
+ed
+og
+pe
+fo
+ih
+ho
+ud
+en
+ev
+fa
+fu
+to
+vo
+oo
+wa
+ip
+im
+om
+oh
+iw
+mu
+il
+we
+uk
+us
+ix
+ir
+an
+el
+ti
+ib
+go
+ke
+wu
+ho
+oh
+op
+ti
+mi
+ge
+er
+be
+ob
+if
+im
+da
+le
+ab
+ub
+fi
+ol
+xu
+ni
+ud
+id
+ni
+ow
+iz
+pu
+xu
+ez
+ub
+za
+ek
+si
+aw
+el
+vi
+aw
+va
+ex
+um
+su
+vi
+ku
+do
+da
+te
+up
+yi
+iz
+bu
+od
+of
+uz
+ri
+ur
+ke
+be
+ez
+eh
+mo
+wi
+no
+zu
+he
+mu
+ne
+mo
+ik
+us
+ug
+de
+po
+fu
+on
+eh
+up
+ar
+op
+va
+ul
+ma
+pa
+es
+lo
+wo
+oo
+ip
+ya
+mu
+na
+ka
+bu
+ba
+uy
+al
+gi
+ib
+ma
+un
+ul
+zo
+ot
+es
+eh
+ah
+zu
+ap
+na
+ig
+ig
+ve
+ni
+of
+ye
+pi
+as
+ob
+od
+zo
+nu
+ud
+la
+fo
+aw
+hu
+te
+em
+eb
+og
+at
+ib
+ik
+is
+ig
+uk
+ra
+sa
+go
+ra
+yo
+to
+vu
+og
+ve
+ix
+te
+im
+gu
+le
+ak
+aw
+ir
+ux
+aa
+ip
+ot
+ko
+ko
+fi
+wa
+bu
+wi
+hu
+if
+ir
+ro
+ub
+ot
+iv
+il
+yu
+om
+or
+ub
+om
+iv
+uy
+su
+of
+ru
+oz
+vo
+em
+ax
+yo
+ag
+pi
+it
+ob
+bo
+ah
+af
+ep
+ud
+ku
+ir
+ip
+uv
+av
+iw
+tu
+ep
+im
+yi
+po
+ed
+wo
+xe
+hu
+fi
+oh
+ko
+of
+im
+vi
+ew
+ek
+ve
+pi
+ih
+ti
+ri
+fu
+hi
+ad
+wu
+pu
+is
+xa
+hu
+ar
+ok
+ru
+it
+ga
+uy
+oy
+li
+ha
+ir
+ro
+of
+el
+hu
+iz
+as
+re
+ya
+eb
+pa
+uu
+si
+mo
+da
+ko
+yo
+ah
+ex
+xe
+oz
+uz
+eh
+or
+ay
+ru
+xe
+ge
+iy
+av
+ef
+ax
+aw
+ap
+wi
+es
+et
+xo
+uw
+ku
+no
+fu
+ru
+oh
+ib
+ol
+ti
+fi
+ur
+ip
+eh
+im
+ti
+ni
+ay
+uk
+ug
+as
+vi
+ib
+ni
+ye
+bo
+oy
+vu
+iy
+is
+to
+mo
+na
+ni
+uv
+ax
+uk
+ab
+ep
+og
+uw
+az
+so
+ar
+ro
+eb
+uz
+xa
+ak
+ho
+ed
+ar
+iz
+ed
+ig
+it
+az
+ro
+uw
+oz
+yo
+oy
+eh
+sa
+so
+es
+ah
+op
+iw
+am
+se
+gu
+ol
+er
+go
+ix
+vu
+em
+ku
+xo
+vu
+za
+na
+ru
+az
+li
+pa
+lo
+ru
+xa
+ri
+ag
+am
+ti
+fa
+at
+ek
+fo
+hi
+oz
+ep
+yu
+is
+ye
+ed
+iy
+si
+ey
+us
+bo
+iw
+po
+un
+uf
+ha
+ob
+hu
+su
+lo
+tu
+fa
+ir
+il
+eh
+ih
+fi
+fa
+se
+uy
+ah
+oy
+or
+es
+ov
+ii
+eh
+yu
+re
+an
+oy
+og
+me
+es
+af
+zu
+po
+iy
+uk
+ox
+ew
+vi
+fo
+gu
+od
+ur
+ed
+em
+eb
+yo
+de
+ud
+xe
+il
+te
+li
+eb
+mi
+ro
+uk
+uu
+we
+om
+il
+wi
+du
+ke
+el
+ak
+am
+ge
+pi
+ya
+il
+wo
+bo
+mu
+go
+is
+bi
+zi
+it
+bu
+pi
+el
+ex
+wu
+xo
+po
+im
+iw
+zu
+av
+az
+ek
+ip
+aw
+in
+nu
+ob
+pu
+en
+gu
+da
+eb
+ir
+en
+fa
+li
+de
+en
+li
+il
+pi
+hu
+xu
+xa
+ab
+ze
+am
+xe
+ok
+ya
+ot
+er
+we
+fo
+vi
+ta
+uu
+ra
+xu
+em
+or
+vo
+og
+az
+ey
+bi
+xa
+ar
+ir
+ik
+ka
+is
+aw
+of
+wo
+aw
+ap
+ih
+si
+si
+um
+ot
+oy
+zu
+un
+zu
+ag
+pe
+ox
+es
+fa
+mi
+go
+ov
+an
+ya
+ez
+pu
+da
+za
+ob
+fo
+ub
+ek
+iy
+od
+ep
+ka
+ib
+ip
+ig
+su
+me
+no
+mo
+av
+do
+il
+ev
+da
+ar
+ag
+we
+xo
+ud
+ov
+xi
+in
+we
+ef
+ho
+ug
+ig
+ax
+ur
+ar
+of
+ag
+de
+ok
+an
+di
+ba
+wo
+su
+pu
+ho
+zo
+we
+tu
+ii
+oh
+em
+se
+ge
+fi
+er
+xu
+av
+du
+ip
+ve
+aw
+el
+to
+id
+ar
+ag
+ro
+im
+xu
+il
+ne
+yo
+um
+ox
+ap
+ek
+fe
+am
+em
+ep
+bu
+er
+od
+ov
+oo
+we
+an
+pi
+xa
+ga
+ko
+ri
+ze
+in
+se
+ap
+os
+os
+po
+em
+fi
+du
+ew
+hu
+ug
+su
+de
+aa
+if
+im
+uf
+pa
+zi
+az
+od
+zu
+id
+fi
+or
+yu
+du
+of
+ne
+wi
+wu
+gu
+ko
+de
+am
+go
+ug
+bo
+of
+bo
+pa
+ur
+id
+ub
+pu
+yi
+ya
+ix
+ox
+un
+ri
+ot
+de
+af
+su
+ad
+uh
+ta
+ve
+uk
+ay
+sa
+fu
+we
+ag
+ok
+yu
+ap
+ug
+uw
+mi
+he
+ew
+do
+he
+ig
+aa
+ba
+ga
+if
+li
+va
+ox
+mo
+tu
+ho
+og
+ri
+oo
+ha
+am
+ra
+ov
+ar
+go
+um
+al
+ra
+ik
+ge
+ii
+ep
+iw
+om
+ho
+ta
+ey
+li
+la
+ge
+el
+oh
+iy
+vi
+be
+ur
+og
+ve
+ib
+te
+ib
+us
+la
+wu
+oh
+oh
+te
+za
+la
+il
+as
+eg
+di
+gi
+ak
+wa
+xi
+ex
+ix
+iv
+fe
+zu
+ta
+na
+nu
+if
+sa
+ow
+is
+ex
+da
+af
+pi
+ud
+ya
+hi
+ax
+be
+ha
+es
+mo
+aw
+iw
+la
+at
+ve
+zi
+zo
+ve
+ad
+ek
+uy
+un
+po
+du
+ar
+go
+iz
+fe
+ke
+ag
+ru
+eh
+ed
+ku
+ba
+ip
+ir
+tu
+eh
+ur
+pa
+go
+uf
+wi
+po
+ra
+of
+ka
+ay
+on
+ab
+ol
+pa
+fi
+un
+iy
+ub
+la
+ot
+zi
+le
+ah
+uk
+an
+az
+uu
+ey
+be
+lu
+yu
+tu
+hu
+um
+be
+de
+ab
+pi
+un
+ni
+bi
+am
+ot
+ki
+an
+al
+zi
+ki
+bo
+fo
+mo
+mo
+ip
+ru
+uw
+ex
+ev
+po
+ax
+be
+wu
+es
+af
+et
+ag
+ur
+ug
+ko
+ix
+xi
+es
+ek
+we
+te
+bi
+xa
+bu
+za
+ep
+na
+ma
+fa
+ra
+oo
+as
+ef
+ow
+ko
+ih
+bi
+pi
+yi
+en
+es
+ke
+ev
+xa
+uy
+ig
+ex
+fe
+bi
+ef
+si
+xo
+ix
+in
+en
+od
+mo
+ar
+ee
+lu
+fe
+ko
+ux
+us
+ix
+du
+um
+uf
+ot
+et
+in
+ti
+gi
+pu
+yu
+mi
+ex
+ve
+ze
+ek
+ho
+uz
+vo
+do
+ke
+ze
+nu
+av
+od
+de
+de
+nu
+em
+it
+pa
+ho
+nu
+me
+te
+re
+po
+aa
+nu
+lo
+un
+ox
+ez
+op
+eg
+ze
+fi
+xa
+gi
+aw
+ey
+po
+lo
+xe
+ax
+va
+is
+me
+iv
+se
+uz
+hu
+ye
+de
+we
+pe
+ru
+az
+eh
+ix
+os
+ke
+ba
+ok
+em
+ah
+va
+sa
+wu
+ov
+te
+at
+oo
+gi
+iz
+ve
+if
+mo
+bi
+ha
+fa
+xa
+mi
+do
+eg
+of
+vu
+ka
+pa
+si
+ze
+ug
+za
+ov
+de
+ke
+di
+yu
+pu
+ud
+ga
+di
+nu
+ew
+it
+nu
+ke
+de
+xo
+lu
+ee
+xo
+do
+ux
+tu
+uh
+to
+up
+xi
+ak
+we
+uu
+ed
+av
+bi
+vu
+ya
+di
+uv
+uu
+te
+fo
+wo
+hu
+en
+re
+on
+uz
+wi
+wi
+fe
+up
+is
+ii
+tu
+fa
+ke
+po
+bo
+ba
+im
+at
+la
+ak
+ew
+ig
+uk
+ye
+uf
+ha
+uk
+ib
+ep
+wa
+ul
+te
+uh
+id
+wo
+ex
+fo
+ur
+up
+gi
+wa
+yo
+op
+pe
+ko
+ve
+vu
+ut
+wa
+ro
+ha
+ur
+ey
+ig
+fe
+ut
+uz
+et
+ew
+uz
+am
+ut
+ef
+al
+in
+as
+wi
+ya
+xi
+eb
+if
+xe
+xe
+uz
+ga
+ni
+ef
+eb
+yo
+se
+an
+eg
+ih
+pu
+eh
+iz
+ze
+xu
+bo
+xo
+ih
+ev
+go
+ig
+el
+ta
+bu
+ir
+hi
+gu
+od
+ko
+be
+to
+et
+so
+uw
+zu
+za
+ur
+as
+xo
+ob
+il
+gi
+be
+ev
+uu
+ne
+vo
+uv
+bi
+vi
+re
+ig
+tu
+ra
+uz
+ma
+da
+ra
+uy
+ix
+ek
+le
+at
+aw
+oh
+ve
+mi
+we
+ne
+ux
+hi
+iw
+uw
+al
+eh
+ab
+or
+ev
+xi
+uz
+om
+si
+na
+mi
+ap
+su
+uy
+va
+ap
+on
+mu
+ne
+ya
+mu
+wu
+os
+un
+zo
+le
+ee
+uu
+up
+ov
+uu
+de
+ox
+re
+uf
+li
+ba
+if
+if
+lu
+ii
+ma
+er
+gu
+up
+am
+pu
+eg
+of
+ob
+iy
+tu
+ob
+pi
+az
+eg
+uz
+uh
+un
+we
+mo
+ho
+fe
+bo
+ho
+wu
+og
+me
+ug
+ax
+ee
+wa
+ge
+xu
+zu
+za
+or
+yi
+he
+ze
+zu
+ay
+ip
+ak
+le
+wo
+de
+be
+di
+se
+ih
+bu
+me
+yu
+le
+lu
+ti
+wa
+di
+vu
+de
+ki
+bu
+id
+am
+ba
+ya
+ti
+za
+hi
+re
+iz
+iv
+xo
+ki
+im
+aa
+ih
+ak
+os
+as
+we
+en
+ov
+va
+ga
+ba
+ko
+ek
+ux
+is
+ak
+ig
+zo
+hu
+ru
+oy
+az
+ot
+ye
+oo
+op
+fa
+ep
+mu
+aw
+eh
+gi
+li
+il
+wu
+ha
+ab
+du
+ka
+to
+ew
+as
+og
+az
+ek
+ip
+um
+on
+iv
+do
+lo
+no
+od
+mo
+lo
+nu
+do
+ok
+eb
+ka
+hi
+ga
+ro
+iw
+yu
+aa
+ra
+fa
+fa
+ub
+ad
+ub
+uu
+ii
+ov
+xe
+iw
+wi
+pu
+ni
+ye
+ud
+wo
+is
+zi
+ag
+ed
+ew
+aw
+pu
+yu
+ya
+lu
+up
+if
+uu
+ye
+ab
+ox
+fe
+ez
+of
+oy
+wo
+if
+uy
+ex
+am
+fa
+vi
+mu
+if
+od
+iv
+na
+ah
+ab
+ok
+en
+ri
+ax
+eb
+ub
+yi
+af
+ud
+ud
+mi
+wo
+pe
+uh
+ag
+da
+ve
+hi
+ow
+lu
+fu
+el
+up
+wu
+me
+wi
+vo
+eh
+ha
+eb
+ef
+av
+aa
+ku
+xe
+oh
+vu
+su
+oo
+ey
+og
+uw
+ey
+ki
+aw
+we
+oh
+wa
+is
+ul
+ma
+al
+im
+eg
+po
+ad
+ax
+gu
+go
+ke
+le
+ul
+ud
+us
+zo
+be
+im
+ap
+ay
+al
+ih
+ha
+uf
+oo
+az
+uv
+ev
+ii
+ge
+iy
+uz
+mo
+va
+no
+lu
+le
+fo
+le
+es
+pi
+om
+ew
+ti
+xo
+on
+ih
+et
+pe
+et
+ki
+ay
+ul
+su
+ir
+pa
+ya
+ho
+xe
+om
+te
+em
+eb
+fi
+do
+fo
+do
+uv
+hi
+uw
+do
+fo
+pa
+go
+ol
+te
+ew
+re
+ol
+ez
+if
+gi
+ii
+xo
+da
+uf
+ol
+ih
+fi
+eb
+es
+aw
+ek
+pu
+bi
+mu
+ul
+av
+no
+uu
+ok
+ey
+ka
+si
+oz
+fo
+ma
+ex
+po
+uf
+ub
+is
+ap
+mu
+ul
+ay
+na
+ip
+fe
+oz
+iw
+ud
+so
+so
+uv
+el
+ed
+iy
+ya
+ba
+an
+bu
+id
+ap
+uu
+is
+im
+hi
+ut
+se
+us
+og
+ib
+si
+zu
+iv
+ro
+fu
+su
+xu
+ki
+zu
+ne
+eb
+pa
+ol
+la
+op
+ta
+ma
+ud
+am
+ik
+iv
+em
+oy
+ar
+no
+pa
+if
+af
+li
+hi
+wi
+fo
+xe
+ve
+vu
+as
+vi
+oh
+op
+ug
+zi
+ad
+ar
+ze
+so
+na
+ko
+to
+op
+de
+uk
+ah
+si
+og
+er
+oo
+iz
+na
+ni
+ab
+ov
+pu
+di
+ug
+ux
+ar
+of
+ef
+wo
+yo
+pi
+ho
+of
+ze
+ro
+iw
+ve
+ef
+id
+fa
+ox
+ax
+bi
+pi
+yi
+il
+ee
+os
+ay
+zu
+to
+om
+ik
+zu
+ul
+pu
+de
+bi
+ih
+ku
+oy
+er
+aa
+sa
+uz
+si
+re
+wa
+ib
+vu
+wi
+op
+ar
+ol
+zi
+xe
+vi
+ti
+fe
+mi
+uu
+av
+zu
+be
+uh
+un
+uk
+ir
+us
+iz
+ev
+ot
+if
+ni
+ge
+bo
+id
+on
+iy
+id
+ga
+ir
+uz
+vu
+em
+ul
+mu
+it
+fi
+le
+wa
+op
+om
+xa
+zo
+da
+ba
+fi
+iw
+hi
+yo
+gi
+vi
+ig
+si
+un
+ig
+ot
+ed
+um
+eg
+ad
+pe
+ah
+oh
+sa
+vi
+ye
+ha
+av
+zu
+ek
+is
+wi
+us
+ze
+ku
+gu
+lu
+od
+iy
+ke
+pa
+da
+ag
+ru
+ud
+vo
+ze
+vo
+ze
+uh
+la
+se
+im
+ga
+zo
+xu
+bi
+ob
+uz
+el
+ag
+za
+ru
+ih
+he
+in
+et
+uu
+es
+am
+do
+po
+xa
+ko
+ol
+ti
+fa
+wo
+ek
+hi
+gu
+to
+lo
+et
+ku
+hi
+un
+ri
+em
+wu
+li
+du
+eg
+og
+en
+ot
+on
+la
+iy
+pa
+ok
+oy
+ik
+ev
+aw
+im
+ni
+oh
+is
+ta
+ov
+iy
+al
+uk
+ef
+uy
+ya
+ku
+ab
+ay
+oo
+es
+fe
+os
+we
+up
+wi
+xe
+nu
+ih
+fo
+me
+sa
+ep
+be
+am
+ar
+ab
+av
+ub
+ur
+ud
+xi
+vi
+ov
+vi
+mi
+bu
+ez
+ab
+re
+af
+re
+os
+aa
+fe
+ap
+ge
+ne
+bo
+ep
+ra
+zo
+gu
+av
+ug
+hi
+zi
+uu
+ho
+ep
+et
+og
+up
+am
+da
+yi
+ad
+ok
+ke
+da
+fu
+ak
+zu
+eh
+uw
+ub
+lo
+ge
+zo
+uw
+yi
+ex
+ug
+ir
+ru
+ot
+ra
+uf
+wa
+ab
+ox
+zu
+ex
+ev
+xo
+aw
+at
+at
+ar
+af
+ah
+ak
+no
+iz
+ha
+ee
+li
+uf
+as
+up
+al
+us
+ak
+pi
+et
+ax
+og
+ne
+ow
+id
+ab
+gu
+we
+ru
+ga
+ne
+si
+ug
+ya
+uu
+ey
+im
+zo
+is
+sa
+mo
+ev
+ow
+ku
+le
+ug
+un
+vo
+ip
+eg
+ux
+wi
+yo
+ni
+em
+fo
+da
+ak
+it
+ib
+ti
+iv
+ii
+no
+pu
+ix
+op
+mo
+wo
+or
+do
+gu
+ir
+va
+ax
+ik
+iv
+up
+ab
+nu
+go
+va
+ro
+af
+fe
+ta
+fu
+se
+ad
+fo
+ko
+wi
+on
+vo
+ut
+me
+os
+bo
+ub
+or
+we
+as
+ik
+uf
+ip
+ag
+uk
+if
+bu
+up
+en
+aw
+pe
+ga
+og
+os
+as
+ki
+ey
+uv
+oo
+ay
+xi
+xi
+ib
+os
+is
+uz
+us
+od
+ah
+we
+yo
+fe
+if
+da
+du
+aw
+em
+ni
+eg
+ek
+vo
+et
+ov
+ig
+ux
+ed
+uu
+wi
+fu
+va
+zu
+mi
+uf
+po
+at
+ro
+ib
+el
+am
+yo
+uh
+up
+ba
+du
+ad
+go
+un
+zi
+yu
+ov
+su
+an
+te
+bi
+pe
+uz
+ux
+am
+et
+en
+ir
+wa
+zi
+vi
+ya
+ee
+ex
+ut
+du
+do
+me
+uh
+oh
+iw
+he
+fa
+ru
+to
+or
+yo
+uh
+ex
+ha
+ev
+pe
+ho
+im
+wi
+ne
+go
+ko
+ho
+es
+si
+ko
+en
+eh
+ya
+tu
+uw
+op
+ut
+ra
+ku
+as
+de
+ez
+uz
+ee
+ev
+ru
+or
+ol
+da
+na
+el
+eb
+zo
+gu
+as
+do
+uw
+ta
+of
+zu
+op
+po
+gi
+vo
+ef
+ey
+an
+oz
+wo
+si
+it
+le
+lu
+af
+ye
+we
+ew
+oo
+is
+no
+in
+zo
+uw
+sa
+az
+pa
+ef
+ti
+ga
+in
+it
+re
+er
+eh
+zi
+ed
+un
+nu
+ti
+ar
+ga
+da
+fo
+yi
+an
+na
+zi
+uh
+le
+as
+ah
+do
+ik
+uz
+ov
+ma
+eh
+ki
+ta
+ef
+es
+ix
+id
+mi
+ti
+po
+wo
+fi
+ug
+ne
+os
+pe
+ah
+wo
+ma
+ow
+ip
+et
+ah
+ow
+ye
+em
+as
+me
+ak
+yo
+yi
+vi
+ra
+av
+ta
+pa
+or
+ze
+or
+yo
+ri
+xi
+ik
+ku
+pu
+fe
+fo
+ya
+uz
+ed
+ud
+do
+yi
+of
+op
+ku
+me
+gu
+oy
+no
+ve
+ew
+ap
+am
+li
+po
+ey
+do
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/train_rand.mlf	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,7401 @@
+#!MLF!#
+'"snr+30dB/features/uz/uz208.6p93.2s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/su/su184.8p115.1s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/gi/gi179.0p113.9s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/re/re180.4p80.1s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/il/il167.4p133.5s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ap/ap145.5p106.3s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/os/os169.0p114.0s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/is/is172.5p112.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/az/az153.0p108.1s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/pu/pu170.0p109.7s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/op/op208.6p93.2s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/du/du169.0p114.0s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ii/ii198.1p97.9s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/xi/xi145.5p106.3s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/go/go171.3p111.7s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ad/ad145.5p106.3s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/aa/aa178.8p123.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/um/um171.7p112.3s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ir/ir188.1p139.2s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ne/ne141.3p135.4s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/bi/bi145.5p106.3s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/al/al163.4p157.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/et/et183.0p130.4s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ku/ku141.3p135.4s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/mu/mu164.9p102.1s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/eg/eg175.7p118.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/fa/fa172.4p109.3s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/du/du179.0p113.9s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/xa/xa169.0p114.0s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/gu/gu175.7p118.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/go/go176.1p94.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ub/ub215.2p121.0s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/oo/oo178.0p108.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/uv/uv145.5p106.3s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ov/ov156.7p90.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/bi/bi148.8p128.8s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/oy/oy165.6p144.0s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/vo/vo164.7p110.8s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ko/ko167.8p106.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/uv/uv164.7p110.8s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/aa/aa178.0p108.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/go/go183.0p105.7s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/in/in164.9p102.1s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/if/if215.2p121.0s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ha/ha183.0p105.7s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ur/ur155.5p123.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/pa/pa178.0p108.5s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/di/di151.6p83.9s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/fe/fe176.1p94.5s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ux/ux179.0p113.9s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/zi/zi172.1p113.0s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ul/ul194.5p150.4s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/aw/aw171.0p112.8s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ib/ib173.5p115.0s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/no/no170.0p109.7s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/um/um148.8p128.8s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ob/ob165.7p116.2s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/fo/fo173.3p105.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/xu/xu137.0p104.3s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/be/be168.6p111.6s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ar/ar155.5p123.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ut/ut178.0p108.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/eh/eh178.0p108.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/ob/ob148.8p128.8s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ot/ot161.1p96.8s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ef/ef174.9p113.0s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ya/ya161.1p96.8s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/en/en178.0p108.5s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/pa/pa188.1p139.2s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ti/ti164.9p102.1s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/it/it215.2p121.0s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/gi/gi172.4p111.9s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ye/ye151.6p83.9s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/na/na145.5p106.3s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/zu/zu164.9p102.1s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/is/is175.7p118.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/is/is171.0p115.5s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/um/um172.4p109.3s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/su/su192.7p116.7s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/un/un165.6p144.0s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ab/ab159.5p109.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/il/il168.6p111.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/uz/uz180.4p80.1s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/eg/eg183.0p130.4s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/zo/zo208.6p93.2s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ha/ha137.0p104.3s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ik/ik155.5p123.5s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/sa/sa173.5p115.0s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/he/he171.7p112.3s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ol/ol172.4p111.9s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/mo/mo202.7p118.6s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/iz/iz179.0p113.9s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ox/ox171.7p112.3s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/oz/oz165.7p116.2s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/fo/fo174.5p110.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/se/se169.0p114.0s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ub/ub137.0p104.3s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/al/al167.4p133.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/oz/oz178.0p108.5s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/iv/iv170.1p119.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ra/ra165.7p116.2s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/bo/bo169.0p114.0s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/lo/lo180.4p80.1s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/uk/uk174.9p113.0s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/zo/zo189.6p102.1s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ii/ii164.7p110.8s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/ku/ku163.4p157.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/te/te183.0p130.4s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/wu/wu159.5p109.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/al/al159.5p109.6s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/yu/yu168.6p111.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/om/om165.6p144.0s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/pu/pu161.1p119.4s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ad/ad172.4p109.3s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/te/te172.1p113.0s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/es/es168.9p125.4s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ma/ma145.5p106.3s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/uh/uh183.0p130.4s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/gi/gi163.4p157.6s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/vi/vi215.2p121.0s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/bo/bo164.9p102.1s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/pe/pe173.5p115.0s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/mu/mu171.3p111.7s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ot/ot170.0p109.7s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/uu/uu172.4p109.3s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/af/af165.6p144.0s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/re/re183.0p130.4s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/if/if164.9p102.1s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/he/he167.8p106.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/xe/xe171.5p113.1s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/as/as171.0p112.8s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/up/up169.0p114.0s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/he/he165.7p116.2s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ka/ka155.5p123.5s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/oo/oo192.7p116.7s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/fo/fo151.6p83.9s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/hu/hu141.3p135.4s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/fu/fu161.1p119.4s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ho/ho170.1p119.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/me/me170.9p112.2s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/do/do179.0p113.9s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ek/ek141.3p135.4s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/si/si141.3p135.4s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ob/ob165.6p144.0s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/bo/bo148.8p128.8s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ih/ih188.1p139.2s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ka/ka215.2p121.0s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/av/av171.7p112.3s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ka/ka178.8p123.6s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ob/ob202.7p118.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ih/ih145.5p106.3s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/xo/xo167.4p133.5s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/so/so173.5p115.0s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/el/el148.8p128.8s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/da/da188.1p139.2s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ud/ud174.5p100.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ta/ta172.4p109.3s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/se/se176.1p94.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/no/no175.7p118.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/wa/wa161.1p119.4s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/bi/bi171.9p111.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ub/ub184.8p115.1s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/es/es171.5p113.1s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/og/og171.0p115.5s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/iz/iz176.1p94.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/yu/yu171.9p111.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/os/os176.1p94.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/te/te155.5p123.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/um/um163.4p157.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/fe/fe164.7p110.8s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/az/az189.6p102.1s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/xi/xi183.0p130.4s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/he/he164.9p102.1s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ak/ak167.4p133.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/up/up151.6p83.9s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ix/ix171.0p112.8s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/na/na163.4p157.6s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/av/av167.4p133.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ok/ok161.1p119.4s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/vo/vo189.6p102.1s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/uk/uk145.5p106.3s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/du/du172.4p109.3s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ti/ti165.7p116.2s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/te/te151.6p83.9s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/no/no178.8p123.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/sa/sa171.9p111.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/op/op174.9p113.0s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/un/un194.5p150.4s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/li/li173.5p115.0s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/ki/ki170.0p109.7s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/wo/wo171.0p112.8s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/po/po192.7p116.7s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ne/ne170.1p119.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/si/si174.9p113.0s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ri/ri192.7p116.7s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/wo/wo178.1p87.6s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ur/ur172.4p111.9s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/xu/xu183.0p130.4s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/iv/iv180.4p80.1s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/su/su161.1p96.8s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/zi/zi183.0p130.4s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ik/ik171.3p111.7s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ze/ze171.0p112.8s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/us/us202.7p118.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ya/ya173.3p105.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ax/ax198.1p97.9s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/on/on192.7p116.7s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/gi/gi153.0p108.1s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/um/um155.5p123.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ud/ud215.2p121.0s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/pa/pa171.0p112.8s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ax/ax170.1p119.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/wu/wu161.1p96.8s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/nu/nu173.3p105.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/eg/eg167.8p106.5s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/im/im176.1p94.5s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/lo/lo176.1p94.5s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/uy/uy172.1p113.0s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ri/ri172.4p111.9s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/is/is172.4p109.3s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ix/ix164.9p102.1s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/fa/fa156.7p90.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/vi/vi164.7p110.8s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ee/ee164.7p110.8s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ul/ul178.0p108.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/fe/fe171.3p111.7s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/go/go153.0p108.1s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/bi/bi155.5p123.5s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ey/ey180.4p80.1s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/me/me163.4p157.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/pi/pi172.4p109.3s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/zo/zo202.7p118.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/am/am153.0p108.1s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ra/ra179.0p113.9s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ra/ra189.6p102.1s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/go/go137.0p104.3s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/bu/bu178.8p123.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/te/te189.6p102.1s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/uk/uk159.5p109.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/za/za208.6p93.2s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ov/ov171.3p111.7s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/xe/xe169.0p114.0s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/te/te208.6p93.2s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/hu/hu170.1p119.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/vi/vi163.4p157.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/oy/oy170.1p119.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ad/ad175.7p118.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ov/ov174.5p110.6s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/pu/pu172.5p112.5s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ap/ap171.7p112.3s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/la/la171.0p112.8s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/se/se188.1p139.2s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/iy/iy189.6p102.1s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/fe/fe165.6p144.0s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ud/ud173.3p105.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ra/ra145.5p106.3s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/mu/mu189.6p102.1s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/va/va171.5p113.1s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ab/ab148.8p128.8s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/fi/fi168.6p111.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/sa/sa164.9p102.1s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ib/ib208.6p93.2s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/xo/xo168.6p111.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ey/ey141.3p135.4s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/um/um165.7p116.2s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/za/za189.6p102.1s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/si/si176.1p94.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/va/va153.0p108.1s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ho/ho164.9p102.1s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ib/ib178.0p108.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/me/me168.9p125.4s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/wa/wa208.6p93.2s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ee/ee176.1p94.5s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ok/ok148.8p128.8s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/uw/uw198.1p97.9s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ku/ku174.5p110.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/bu/bu165.6p144.0s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/eh/eh168.9p125.4s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/iw/iw176.1p94.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/um/um171.0p115.5s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/zi/zi161.1p96.8s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ma/ma174.5p110.6s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ih/ih170.0p109.7s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/nu/nu165.6p144.0s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ge/ge168.6p111.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/pa/pa164.7p110.8s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/el/el171.9p111.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/zi/zi171.0p115.5s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ii/ii163.4p157.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/to/to153.0p108.1s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/iz/iz167.8p106.5s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ug/ug151.6p83.9s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/nu/nu202.7p118.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/pi/pi156.7p90.6s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/ip/ip198.1p97.9s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/lo/lo192.7p116.7s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ed/ed171.3p111.7s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/gu/gu208.6p93.2s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/us/us178.1p87.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ax/ax163.4p157.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ti/ti167.4p133.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/iy/iy208.6p93.2s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/da/da169.0p114.0s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/re/re171.7p112.3s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ug/ug155.5p123.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ru/ru172.1p113.0s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/sa/sa188.1p139.2s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/un/un156.7p90.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/at/at159.5p109.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/al/al164.7p110.8s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ba/ba174.9p113.0s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/eh/eh172.5p112.5s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/la/la215.2p121.0s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/mo/mo188.1p139.2s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/se/se178.1p87.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/to/to173.5p115.0s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ku/ku171.3p111.7s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/du/du174.5p110.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ro/ro165.7p116.2s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/iy/iy161.1p119.4s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/of/of173.3p105.6s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/vi/vi208.6p93.2s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ze/ze167.4p133.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/bo/bo183.0p105.7s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/on/on173.3p105.6s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ir/ir164.9p102.1s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/fu/fu141.3p135.4s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/af/af172.4p111.9s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/of/of215.2p121.0s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ul/ul170.9p112.2s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ze/ze183.0p130.4s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/iy/iy171.0p112.8s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/um/um179.0p113.9s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ax/ax164.9p102.1s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ya/ya188.1p139.2s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/li/li168.6p111.6s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/fi/fi194.5p150.4s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/xe/xe176.1p94.5s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ew/ew172.5p112.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/if/if176.1p94.5s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ef/ef202.7p118.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/oh/oh148.8p128.8s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ag/ag198.1p97.9s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/id/id208.6p93.2s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ab/ab174.5p110.6s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/os/os179.0p113.9s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/wu/wu155.5p123.5s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/mi/mi168.9p125.4s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/vu/vu189.6p102.1s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ho/ho172.4p109.3s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ra/ra168.6p111.6s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/fi/fi172.4p111.9s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/er/er174.5p100.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/we/we172.4p109.3s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/wi/wi145.5p106.3s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/he/he202.7p118.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ho/ho156.7p90.6s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/nu/nu174.9p113.0s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/le/le148.8p128.8s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/up/up170.0p109.7s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ag/ag172.4p111.9s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/tu/tu137.0p104.3s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/fu/fu167.4p133.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/eh/eh215.2p121.0s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/we/we168.6p111.6s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/si/si151.6p83.9s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/az/az173.5p115.0s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/bu/bu170.1p119.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/an/an145.5p106.3s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/xe/xe198.1p97.9s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ew/ew156.7p90.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ib/ib184.8p115.1s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ze/ze161.1p96.8s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/at/at183.0p130.4s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ri/ri173.3p105.6s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/bo/bo167.8p106.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ad/ad171.9p111.5s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/gu/gu171.3p111.7s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/as/as208.6p93.2s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/zo/zo170.0p109.7s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/or/or169.0p114.0s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/on/on198.1p97.9s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/op/op183.0p105.7s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/an/an153.0p108.1s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/aw/aw202.7p118.6s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ma/ma194.5p150.4s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/oy/oy172.4p111.9s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/mu/mu172.4p109.3s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ev/ev168.6p111.6s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/no/no156.7p90.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/do/do171.7p112.3s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ib/ib165.7p116.2s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ko/ko167.4p133.5s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ok/ok171.3p111.7s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/if/if178.1p87.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/si/si167.4p133.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/ef/ef171.5p113.1s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ug/ug215.2p121.0s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ee/ee215.2p121.0s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/uy/uy179.0p113.9s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/pe/pe153.0p108.1s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/un/un170.1p119.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/mo/mo174.9p113.0s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ko/ko164.9p102.1s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/eg/eg178.8p123.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ah/ah176.1p94.5s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/fo/fo161.1p119.4s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/it/it175.7p118.5s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/fo/fo167.4p133.5s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/ro/ro178.0p108.5s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ew/ew159.5p109.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/me/me141.3p135.4s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/xe/xe170.0p109.7s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/na/na164.7p110.8s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/uu/uu170.0p109.7s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/oo/oo171.0p115.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ug/ug164.9p102.1s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/la/la153.0p108.1s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ev/ev183.0p130.4s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/oy/oy153.0p108.1s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/le/le208.6p93.2s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/im/im137.0p104.3s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ow/ow155.5p123.5s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/uw/uw179.0p113.9s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ze/ze180.4p80.1s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/so/so171.0p115.5s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/ot/ot176.1p94.5s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/vo/vo178.1p87.6s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/re/re202.7p118.6s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ze/ze145.5p106.3s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/se/se172.4p111.9s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/oh/oh208.6p93.2s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/di/di171.0p115.5s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/lu/lu156.7p90.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/pe/pe202.7p118.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/az/az161.1p119.4s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/up/up172.1p113.0s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/em/em172.1p113.0s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/iz/iz171.5p113.1s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ti/ti171.0p112.8s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/xe/xe163.4p157.6s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/of/of148.8p128.8s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/bi/bi172.1p113.0s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/og/og194.5p150.4s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/va/va159.5p109.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ox/ox178.0p108.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/lo/lo137.0p104.3s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ta/ta173.3p105.6s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ye/ye179.0p113.9s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/am/am168.6p111.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ol/ol175.7p118.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/og/og141.3p135.4s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ru/ru180.4p80.1s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/mi/mi189.6p102.1s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ba/ba161.1p96.8s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/tu/tu172.4p111.9s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ih/ih172.5p112.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/uv/uv215.2p121.0s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/oh/oh171.7p112.3s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ta/ta161.1p119.4s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/ri/ri170.9p112.2s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/xe/xe161.1p119.4s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/iv/iv169.0p114.0s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ik/ik161.1p96.8s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/vo/vo198.1p97.9s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/ot/ot137.0p104.3s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ga/ga170.0p109.7s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ho/ho167.8p106.5s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/xa/xa151.6p83.9s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/zo/zo184.8p115.1s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/ag/ag170.9p112.2s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/uv/uv170.9p112.2s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/mi/mi171.9p111.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/go/go145.5p106.3s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ov/ov148.8p128.8s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/ap/ap198.1p97.9s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/se/se179.0p113.9s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/os/os174.5p110.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ut/ut172.5p112.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ma/ma171.0p115.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/um/um171.0p112.8s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ro/ro153.0p108.1s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ax/ax169.0p114.0s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ee/ee202.7p118.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/iv/iv208.6p93.2s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/gu/gu194.5p150.4s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ik/ik164.7p110.8s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ox/ox164.9p102.1s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/mu/mu171.5p113.1s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/ku/ku148.8p128.8s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/es/es173.5p115.0s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/ab/ab183.0p105.7s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/hu/hu174.5p110.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ol/ol179.0p113.9s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/xe/xe174.9p113.0s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/ew/ew165.6p144.0s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/po/po169.0p114.0s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/oo/oo172.4p109.3s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/uu/uu179.0p113.9s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/al/al170.1p119.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/fe/fe173.5p115.0s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/ob/ob183.0p130.4s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/iy/iy171.9p111.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/bu/bu137.0p104.3s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/al/al171.0p115.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/az/az172.4p111.9s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/vo/vo145.5p106.3s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/uw/uw202.7p118.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/bo/bo188.1p139.2s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/ed/ed151.6p83.9s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/to/to176.1p94.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/xu/xu148.8p128.8s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/ru/ru145.5p106.3s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/yu/yu171.0p112.8s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/pu/pu156.7p90.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ga/ga168.9p125.4s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/at/at174.9p113.0s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/na/na170.0p109.7s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/iv/iv156.7p90.6s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ap/ap180.4p80.1s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/ni/ni171.3p111.7s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ip/ip192.7p116.7s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/an/an194.5p150.4s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/ak/ak156.7p90.6s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ne/ne176.1p94.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/fu/fu202.7p118.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ih/ih165.6p144.0s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/mo/mo171.0p115.5s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/xo/xo165.6p144.0s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ge/ge164.7p110.8s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ki/ki171.9p111.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/wa/wa159.5p109.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/av/av137.0p104.3s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ga/ga184.8p115.1s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/er/er161.1p119.4s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/du/du163.4p157.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/er/er178.1p87.6s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/id/id153.0p108.1s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/to/to155.5p123.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/ed/ed172.4p109.3s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/et/et172.1p113.0s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/fi/fi184.8p115.1s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ug/ug170.1p119.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/oh/oh174.9p113.0s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/el/el164.9p102.1s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/eb/eb188.1p139.2s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/os/os174.5p100.6s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/zi/zi208.6p93.2s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/ma/ma172.4p111.9s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ee/ee180.4p80.1s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ee/ee164.9p102.1s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/wo/wo171.0p115.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ag/ag202.7p118.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ro/ro183.0p130.4s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ar/ar171.3p111.7s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ax/ax170.0p109.7s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/wu/wu208.6p93.2s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/eh/eh165.7p116.2s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/wu/wu178.1p87.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/la/la172.5p112.5s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/eh/eh151.6p83.9s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/vi/vi175.7p118.5s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/uw/uw188.1p139.2s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ka/ka170.0p109.7s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ha/ha169.0p114.0s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ud/ud171.3p111.7s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/uu/uu172.4p111.9s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/iw/iw159.5p109.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ir/ir172.4p111.9s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/gi/gi168.9p125.4s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ta/ta155.5p123.5s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/eg/eg163.4p157.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ot/ot156.7p90.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ol/ol163.4p157.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/we/we194.5p150.4s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/he/he198.1p97.9s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ka/ka165.6p144.0s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/to/to173.3p105.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/xu/xu171.0p115.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/et/et167.4p133.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/os/os174.9p113.0s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/tu/tu173.5p115.0s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/av/av178.0p108.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/za/za172.4p111.9s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/uh/uh189.6p102.1s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/na/na170.1p119.5s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/le/le161.1p119.4s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ki/ki163.4p157.6s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/za/za172.5p112.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/uv/uv137.0p104.3s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ru/ru170.1p119.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/lo/lo171.0p112.8s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ra/ra194.5p150.4s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/be/be170.1p119.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/iy/iy192.7p116.7s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ad/ad178.8p123.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/uf/uf215.2p121.0s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/av/av192.7p116.7s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/me/me174.5p100.6s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/xo/xo180.4p80.1s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ad/ad198.1p97.9s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ko/ko174.5p100.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/fa/fa168.6p111.6s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/mi/mi188.1p139.2s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/uh/uh178.8p123.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/we/we176.1p94.5s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/me/me165.6p144.0s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/de/de174.5p110.6s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/in/in208.6p93.2s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ru/ru179.0p113.9s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/or/or188.1p139.2s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ut/ut165.7p116.2s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/so/so188.1p139.2s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/at/at163.4p157.6s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/iz/iz202.7p118.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/av/av156.7p90.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ma/ma148.8p128.8s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ok/ok172.5p112.5s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/nu/nu215.2p121.0s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/em/em171.5p113.1s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/oh/oh174.5p100.6s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/da/da161.1p96.8s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/da/da198.1p97.9s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/bi/bi170.9p112.2s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ub/ub163.4p157.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/po/po172.1p113.0s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ti/ti173.3p105.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/ol/ol189.6p102.1s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/er/er169.0p114.0s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ge/ge179.0p113.9s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/xa/xa172.4p111.9s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/er/er171.5p113.1s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/tu/tu180.4p80.1s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ag/ag137.0p104.3s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/mu/mu180.4p80.1s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/hu/hu163.4p157.6s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ke/ke148.8p128.8s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/en/en164.7p110.8s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ag/ag173.3p105.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/he/he161.1p119.4s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ki/ki168.9p125.4s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/af/af169.0p114.0s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ki/ki155.5p123.5s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/na/na172.4p111.9s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/mi/mi165.6p144.0s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/hu/hu171.0p115.5s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/mi/mi171.3p111.7s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/il/il153.0p108.1s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/me/me153.0p108.1s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/va/va174.5p100.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/wa/wa173.5p115.0s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ov/ov183.0p130.4s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/up/up198.1p97.9s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/vu/vu174.5p110.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/om/om174.5p100.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ko/ko170.9p112.2s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ub/ub174.5p110.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ga/ga179.0p113.9s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/id/id172.4p111.9s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ma/ma198.1p97.9s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ey/ey171.7p112.3s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ne/ne173.5p115.0s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/uk/uk189.6p102.1s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/vu/vu174.9p113.0s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/uk/uk173.3p105.6s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ni/ni170.0p109.7s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/uv/uv163.4p157.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/wi/wi164.7p110.8s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/gu/gu178.8p123.6s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/pe/pe172.1p113.0s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/ud/ud159.5p109.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/xo/xo171.5p113.1s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ed/ed198.1p97.9s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/ox/ox183.0p130.4s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/el/el156.7p90.6s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/go/go155.5p123.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/ix/ix159.5p109.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/um/um189.6p102.1s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/di/di145.5p106.3s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/wu/wu172.4p109.3s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/il/il178.1p87.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/zo/zo171.7p112.3s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/oy/oy174.5p110.6s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ti/ti170.0p109.7s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/zu/zu170.1p119.5s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/at/at168.9p125.4s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/to/to174.9p113.0s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/uw/uw183.0p130.4s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ge/ge176.1p94.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ib/ib141.3p135.4s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/uy/uy215.2p121.0s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ep/ep168.6p111.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/vu/vu202.7p118.6s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/ma/ma174.9p113.0s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ug/ug188.1p139.2s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/sa/sa171.3p111.7s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/am/am179.0p113.9s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/iw/iw170.1p119.5s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/is/is192.7p116.7s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/bi/bi183.0p130.4s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ke/ke171.0p115.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/to/to169.0p114.0s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/gu/gu165.7p116.2s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ye/ye168.6p111.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/pu/pu173.3p105.6s100.0t+000itd.lab"'
+sil
+pu
+sil
+.
+'"snr+30dB/features/ee/ee168.9p125.4s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/uw/uw189.6p102.1s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/fo/fo165.6p144.0s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/wa/wa174.5p110.6s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ge/ge172.4p111.9s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/em/em148.8p128.8s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/di/di180.4p80.1s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/av/av174.5p100.6s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ur/ur178.1p87.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/iw/iw156.7p90.6s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/di/di164.9p102.1s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/ab/ab137.0p104.3s100.0t+000itd.lab"'
+sil
+ab
+sil
+.
+'"snr+30dB/features/di/di163.4p157.6s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/lo/lo168.6p111.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/la/la179.0p113.9s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/is/is165.6p144.0s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ay/ay168.6p111.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/be/be175.7p118.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/fi/fi172.5p112.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/lu/lu145.5p106.3s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/gu/gu167.4p133.5s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/ki/ki137.0p104.3s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ax/ax174.5p110.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/de/de180.4p80.1s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/uh/uh183.0p105.7s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/tu/tu194.5p150.4s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/el/el170.1p119.5s100.0t+000itd.lab"'
+sil
+el
+sil
+.
+'"snr+30dB/features/ox/ox174.5p100.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/ax/ax174.5p100.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/do/do174.5p110.6s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/ik/ik208.6p93.2s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ol/ol171.0p115.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/be/be161.1p119.4s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/os/os151.6p83.9s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ti/ti172.4p109.3s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/uv/uv172.4p111.9s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/il/il202.7p118.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ho/ho188.1p139.2s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/ez/ez145.5p106.3s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/hu/hu169.0p114.0s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/xo/xo171.0p112.8s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ob/ob180.4p80.1s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/al/al151.6p83.9s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/fe/fe174.5p100.6s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/em/em172.4p111.9s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ma/ma171.9p111.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/os/os175.7p118.5s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/ub/ub167.8p106.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/to/to178.1p87.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/vi/vi171.3p111.7s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ti/ti148.8p128.8s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/xi/xi175.7p118.5s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/em/em171.7p112.3s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ya/ya168.6p111.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ni/ni171.5p113.1s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/yi/yi148.8p128.8s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ev/ev137.0p104.3s100.0t+000itd.lab"'
+sil
+ev
+sil
+.
+'"snr+30dB/features/wa/wa164.9p102.1s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/ix/ix192.7p116.7s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ah/ah173.3p105.6s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/aw/aw179.0p113.9s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ih/ih176.1p94.5s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/uz/uz178.1p87.6s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/aw/aw145.5p106.3s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ut/ut167.4p133.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ir/ir175.7p118.5s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/uh/uh198.1p97.9s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ee/ee159.5p109.6s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/or/or141.3p135.4s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/op/op172.5p112.5s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/gu/gu173.5p115.0s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/aa/aa175.7p118.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/uv/uv184.8p115.1s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ob/ob156.7p90.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/ka/ka179.0p113.9s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/la/la164.9p102.1s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ir/ir163.4p157.6s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/iy/iy174.9p113.0s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/me/me173.5p115.0s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ug/ug173.3p105.6s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/mo/mo180.4p80.1s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ri/ri164.9p102.1s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/up/up155.5p123.5s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ug/ug183.0p105.7s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ne/ne188.1p139.2s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ot/ot178.1p87.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/ar/ar171.0p112.8s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/az/az170.9p112.2s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ah/ah161.1p119.4s100.0t+000itd.lab"'
+sil
+ah
+sil
+.
+'"snr+30dB/features/ra/ra208.6p93.2s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/lo/lo202.7p118.6s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ki/ki183.0p105.7s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/in/in172.4p109.3s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/fu/fu173.3p105.6s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/em/em178.1p87.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/ib/ib170.1p119.5s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/im/im202.7p118.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/ul/ul165.6p144.0s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/di/di172.4p109.3s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/si/si155.5p123.5s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/il/il141.3p135.4s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/xu/xu170.1p119.5s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/nu/nu173.5p115.0s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/pe/pe161.1p96.8s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/in/in145.5p106.3s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/de/de167.8p106.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/fa/fa194.5p150.4s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/oo/oo171.9p111.5s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/he/he215.2p121.0s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ed/ed178.1p87.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/lo/lo170.0p109.7s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/ud/ud171.7p112.3s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/wu/wu188.1p139.2s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/yu/yu172.4p111.9s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/xo/xo171.7p112.3s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ur/ur156.7p90.6s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/av/av172.1p113.0s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ee/ee194.5p150.4s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/oo/oo151.6p83.9s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/wa/wa168.9p125.4s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/gu/gu137.0p104.3s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/xo/xo165.7p116.2s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/um/um178.8p123.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/tu/tu173.3p105.6s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/pi/pi170.1p119.5s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/hi/hi169.0p114.0s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ro/ro165.6p144.0s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/zu/zu165.6p144.0s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ub/ub170.1p119.5s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/yu/yu173.3p105.6s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/yi/yi174.5p110.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ni/ni170.1p119.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/lu/lu174.5p110.6s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ti/ti145.5p106.3s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/oo/oo161.1p96.8s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ti/ti141.3p135.4s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/os/os164.9p102.1s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/yo/yo174.5p110.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/wo/wo167.4p133.5s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/fi/fi164.7p110.8s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/pa/pa174.5p110.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ye/ye178.8p123.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ub/ub170.0p109.7s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/yu/yu194.5p150.4s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/mo/mo171.0p112.8s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ne/ne167.4p133.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/re/re148.8p128.8s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/bu/bu171.9p111.5s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ew/ew179.0p113.9s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ku/ku173.5p115.0s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ot/ot189.6p102.1s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/wu/wu153.0p108.1s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/so/so215.2p121.0s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/tu/tu174.9p113.0s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ut/ut161.1p96.8s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ez/ez174.5p110.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/la/la202.7p118.6s100.0t+000itd.lab"'
+sil
+la
+sil
+.
+'"snr+30dB/features/ra/ra173.5p115.0s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/ke/ke172.4p111.9s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ve/ve148.8p128.8s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/tu/tu192.7p116.7s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/su/su172.4p111.9s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/fa/fa153.0p108.1s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/he/he163.4p157.6s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/zu/zu170.9p112.2s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/uz/uz194.5p150.4s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ba/ba174.5p100.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/er/er176.1p94.5s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/az/az175.7p118.5s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ep/ep172.1p113.0s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/iv/iv172.5p112.5s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/bi/bi171.7p112.3s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ew/ew173.3p105.6s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ir/ir174.9p113.0s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ow/ow179.0p113.9s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ow/ow148.8p128.8s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/en/en194.5p150.4s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/at/at172.4p111.9s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ur/ur172.5p112.5s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/eb/eb141.3p135.4s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/vo/vo155.5p123.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/xa/xa172.5p112.5s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/en/en165.6p144.0s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/uy/uy164.7p110.8s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/bo/bo179.0p113.9s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/eb/eb151.6p83.9s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/aw/aw172.1p113.0s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/un/un178.0p108.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/id/id165.6p144.0s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/et/et202.7p118.6s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ba/ba141.3p135.4s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/im/im172.4p109.3s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/sa/sa202.7p118.6s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ez/ez159.5p109.6s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/oy/oy137.0p104.3s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ih/ih178.1p87.6s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/di/di164.7p110.8s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/eb/eb183.0p130.4s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/to/to165.6p144.0s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/av/av189.6p102.1s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/eb/eb172.5p112.5s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/bi/bi183.0p105.7s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/ig/ig164.9p102.1s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/as/as145.5p106.3s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/uk/uk183.0p130.4s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/nu/nu172.4p111.9s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/uw/uw178.8p123.6s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ow/ow188.1p139.2s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/il/il156.7p90.6s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/oz/oz156.7p90.6s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ve/ve171.0p115.5s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/ob/ob172.4p111.9s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/aa/aa170.0p109.7s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/og/og165.6p144.0s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/nu/nu192.7p116.7s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/ru/ru172.5p112.5s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ii/ii174.5p100.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/lu/lu194.5p150.4s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/of/of192.7p116.7s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/bi/bi151.6p83.9s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/re/re172.1p113.0s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ma/ma176.1p94.5s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/zo/zo165.7p116.2s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/fi/fi188.1p139.2s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/uv/uv168.9p125.4s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ni/ni171.9p111.5s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ag/ag170.1p119.5s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ik/ik178.1p87.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ge/ge137.0p104.3s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/uf/uf148.8p128.8s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/fu/fu184.8p115.1s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/uf/uf192.7p116.7s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/od/od161.1p119.4s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/il/il189.6p102.1s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/oo/oo156.7p90.6s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/ep/ep178.0p108.5s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/do/do165.6p144.0s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/uy/uy175.7p118.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/uz/uz165.7p116.2s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/mo/mo170.9p112.2s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/oy/oy161.1p119.4s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ip/ip172.4p111.9s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/af/af202.7p118.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/le/le174.5p100.6s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/as/as153.0p108.1s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/mi/mi172.4p109.3s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/ya/ya170.0p109.7s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/vu/vu155.5p123.5s100.0t+000itd.lab"'
+sil
+vu
+sil
+.
+'"snr+30dB/features/af/af178.8p123.6s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/if/if174.9p113.0s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/oz/oz165.6p144.0s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ir/ir161.1p96.8s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ug/ug173.5p115.0s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/fu/fu172.1p113.0s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/he/he170.1p119.5s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/ed/ed165.6p144.0s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/al/al171.7p112.3s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/he/he171.0p112.8s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/un/un167.4p133.5s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/of/of171.9p111.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/af/af164.7p110.8s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/ed/ed174.5p110.6s100.0t+000itd.lab"'
+sil
+ed
+sil
+.
+'"snr+30dB/features/uw/uw167.4p133.5s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/su/su164.9p102.1s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/uh/uh184.8p115.1s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/uw/uw173.5p115.0s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/ay/ay202.7p118.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ki/ki198.1p97.9s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/bu/bu178.1p87.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ad/ad168.6p111.6s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/ik/ik188.1p139.2s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/oy/oy178.0p108.5s100.0t+000itd.lab"'
+sil
+oy
+sil
+.
+'"snr+30dB/features/ol/ol172.1p113.0s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/if/if156.7p90.6s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/ax/ax176.1p94.5s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ol/ol194.5p150.4s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/uh/uh161.1p119.4s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/ha/ha179.0p113.9s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/ze/ze189.6p102.1s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/al/al155.5p123.5s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/ko/ko178.1p87.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ke/ke183.0p105.7s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ta/ta184.8p115.1s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/re/re198.1p97.9s100.0t+000itd.lab"'
+sil
+re
+sil
+.
+'"snr+30dB/features/ib/ib178.1p87.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/xo/xo159.5p109.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/ta/ta151.6p83.9s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/me/me171.5p113.1s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/fu/fu176.1p94.5s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/es/es184.8p115.1s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/za/za155.5p123.5s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ow/ow183.0p105.7s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ig/ig171.3p111.7s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/un/un145.5p106.3s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/no/no176.1p94.5s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/fi/fi170.9p112.2s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ut/ut171.9p111.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ye/ye202.7p118.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/ow/ow173.3p105.6s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/te/te171.0p115.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/av/av170.1p119.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/ye/ye172.4p109.3s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/uv/uv173.3p105.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/se/se141.3p135.4s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/an/an168.6p111.6s100.0t+000itd.lab"'
+sil
+an
+sil
+.
+'"snr+30dB/features/og/og171.7p112.3s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/mo/mo141.3p135.4s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/ef/ef165.7p116.2s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/ka/ka184.8p115.1s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ka/ka137.0p104.3s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/op/op171.7p112.3s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/pi/pi153.0p108.1s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/yo/yo180.4p80.1s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/xe/xe172.1p113.0s100.0t+000itd.lab"'
+sil
+xe
+sil
+.
+'"snr+30dB/features/bo/bo171.7p112.3s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/bo/bo167.4p133.5s100.0t+000itd.lab"'
+sil
+bo
+sil
+.
+'"snr+30dB/features/up/up180.4p80.1s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/il/il183.0p105.7s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/er/er168.9p125.4s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ap/ap156.7p90.6s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/or/or183.0p130.4s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/ux/ux173.3p105.6s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/et/et172.4p109.3s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ki/ki208.6p93.2s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/li/li165.7p116.2s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/be/be171.5p113.1s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/if/if161.1p96.8s100.0t+000itd.lab"'
+sil
+if
+sil
+.
+'"snr+30dB/features/pi/pi189.6p102.1s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/en/en170.9p112.2s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/ag/ag171.0p112.8s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/og/og189.6p102.1s100.0t+000itd.lab"'
+sil
+og
+sil
+.
+'"snr+30dB/features/ge/ge156.7p90.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/vi/vi202.7p118.6s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/ew/ew153.0p108.1s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/aa/aa171.9p111.5s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ze/ze172.5p112.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ux/ux171.7p112.3s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/ve/ve141.3p135.4s100.0t+000itd.lab"'
+sil
+ve
+sil
+.
+'"snr+30dB/features/it/it172.4p109.3s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/mu/mu174.9p113.0s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/bu/bu164.7p110.8s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/gi/gi169.0p114.0s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ma/ma208.6p93.2s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/ox/ox171.3p111.7s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/om/om172.5p112.5s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ee/ee153.0p108.1s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/ef/ef172.5p112.5s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/em/em153.0p108.1s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/mi/mi167.8p106.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/xu/xu202.7p118.6s100.0t+000itd.lab"'
+sil
+xu
+sil
+.
+'"snr+30dB/features/me/me170.1p119.5s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/ha/ha215.2p121.0s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/tu/tu172.1p113.0s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/tu/tu171.0p112.8s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ko/ko215.2p121.0s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/oz/oz168.9p125.4s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/ya/ya202.7p118.6s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ni/ni145.5p106.3s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/uz/uz153.0p108.1s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ru/ru192.7p116.7s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/li/li172.4p111.9s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/yu/yu208.6p93.2s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/of/of170.9p112.2s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/nu/nu161.1p119.4s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/zo/zo171.9p111.5s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/yi/yi137.0p104.3s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ol/ol159.5p109.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/po/po184.8p115.1s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/xi/xi179.0p113.9s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/ud/ud180.4p80.1s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ur/ur170.0p109.7s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/fu/fu194.5p150.4s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/in/in176.1p94.5s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/wo/wo145.5p106.3s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/xa/xa153.0p108.1s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/to/to178.0p108.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/sa/sa176.1p94.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ud/ud170.9p112.2s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ok/ok178.1p87.6s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/fo/fo159.5p109.6s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/me/me172.4p111.9s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/yu/yu167.4p133.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/na/na198.1p97.9s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/yu/yu164.9p102.1s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/ni/ni151.6p83.9s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ud/ud189.6p102.1s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/ep/ep174.5p100.6s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/om/om208.6p93.2s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/gu/gu180.4p80.1s100.0t+000itd.lab"'
+sil
+gu
+sil
+.
+'"snr+30dB/features/on/on180.4p80.1s100.0t+000itd.lab"'
+sil
+on
+sil
+.
+'"snr+30dB/features/ik/ik141.3p135.4s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/pe/pe178.8p123.6s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/se/se208.6p93.2s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/ha/ha155.5p123.5s100.0t+000itd.lab"'
+sil
+ha
+sil
+.
+'"snr+30dB/features/er/er189.6p102.1s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ya/ya215.2p121.0s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/li/li161.1p96.8s100.0t+000itd.lab"'
+sil
+li
+sil
+.
+'"snr+30dB/features/lu/lu171.3p111.7s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/hu/hu165.7p116.2s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/fo/fo184.8p115.1s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/yi/yi178.1p87.6s100.0t+000itd.lab"'
+sil
+yi
+sil
+.
+'"snr+30dB/features/ez/ez153.0p108.1s100.0t+000itd.lab"'
+sil
+ez
+sil
+.
+'"snr+30dB/features/ma/ma141.3p135.4s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/za/za173.3p105.6s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/ne/ne171.5p113.1s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/ax/ax178.8p123.6s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/of/of172.4p111.9s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/ar/ar178.0p108.5s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/ep/ep153.0p108.1s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/zo/zo156.7p90.6s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/fo/fo179.0p113.9s100.0t+000itd.lab"'
+sil
+fo
+sil
+.
+'"snr+30dB/features/az/az141.3p135.4s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/fu/fu171.0p112.8s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ke/ke172.5p112.5s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/id/id171.9p111.5s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/va/va156.7p90.6s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/ow/ow172.4p111.9s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/ot/ot161.1p119.4s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/wu/wu198.1p97.9s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/es/es172.4p111.9s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/uz/uz172.4p109.3s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/me/me165.7p116.2s100.0t+000itd.lab"'
+sil
+me
+sil
+.
+'"snr+30dB/features/il/il168.9p125.4s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/uh/uh178.1p87.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/av/av172.5p112.5s100.0t+000itd.lab"'
+sil
+av
+sil
+.
+'"snr+30dB/features/tu/tu179.0p113.9s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/eg/eg172.1p113.0s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ow/ow173.5p115.0s100.0t+000itd.lab"'
+sil
+ow
+sil
+.
+'"snr+30dB/features/il/il169.0p114.0s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/iv/iv184.8p115.1s100.0t+000itd.lab"'
+sil
+iv
+sil
+.
+'"snr+30dB/features/ya/ya137.0p104.3s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/se/se172.5p112.5s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/em/em159.5p109.6s100.0t+000itd.lab"'
+sil
+em
+sil
+.
+'"snr+30dB/features/te/te170.0p109.7s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/id/id173.3p105.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/fa/fa171.9p111.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/uh/uh164.7p110.8s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/vi/vi165.6p144.0s100.0t+000itd.lab"'
+sil
+vi
+sil
+.
+'"snr+30dB/features/to/to172.5p112.5s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/fe/fe171.7p112.3s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/zi/zi171.0p112.8s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/at/at189.6p102.1s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/im/im156.7p90.6s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/as/as202.7p118.6s100.0t+000itd.lab"'
+sil
+as
+sil
+.
+'"snr+30dB/features/ub/ub192.7p116.7s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/uv/uv202.7p118.6s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/uf/uf145.5p106.3s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/om/om171.5p113.1s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ok/ok171.7p112.3s100.0t+000itd.lab"'
+sil
+ok
+sil
+.
+'"snr+30dB/features/ol/ol173.3p105.6s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/yu/yu189.6p102.1s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/mo/mo172.1p113.0s100.0t+000itd.lab"'
+sil
+mo
+sil
+.
+'"snr+30dB/features/it/it208.6p93.2s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/yo/yo172.1p113.0s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/do/do168.9p125.4s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/da/da215.2p121.0s100.0t+000itd.lab"'
+sil
+da
+sil
+.
+'"snr+30dB/features/ob/ob178.1p87.6s100.0t+000itd.lab"'
+sil
+ob
+sil
+.
+'"snr+30dB/features/id/id172.1p113.0s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/ag/ag163.4p157.6s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/oh/oh171.0p112.8s100.0t+000itd.lab"'
+sil
+oh
+sil
+.
+'"snr+30dB/features/ko/ko159.5p109.6s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ag/ag161.1p96.8s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/wi/wi141.3p135.4s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ux/ux145.5p106.3s100.0t+000itd.lab"'
+sil
+ux
+sil
+.
+'"snr+30dB/features/zu/zu151.6p83.9s100.0t+000itd.lab"'
+sil
+zu
+sil
+.
+'"snr+30dB/features/ef/ef161.1p96.8s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/wu/wu174.5p100.6s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ho/ho148.8p128.8s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/he/he141.3p135.4s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/us/us174.9p113.0s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/no/no171.3p111.7s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/fi/fi208.6p93.2s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/uv/uv174.9p113.0s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/xo/xo174.5p110.6s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/am/am156.7p90.6s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ek/ek173.3p105.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/no/no151.6p83.9s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/uy/uy165.7p116.2s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ud/ud184.8p115.1s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/du/du171.3p111.7s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/op/op179.0p113.9s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/ay/ay184.8p115.1s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/ba/ba172.4p111.9s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/uv/uv176.1p94.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ib/ib163.4p157.6s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/ye/ye163.4p157.6s100.0t+000itd.lab"'
+sil
+ye
+sil
+.
+'"snr+30dB/features/pi/pi161.1p119.4s100.0t+000itd.lab"'
+sil
+pi
+sil
+.
+'"snr+30dB/features/il/il180.4p80.1s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ka/ka192.7p116.7s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/ip/ip172.5p112.5s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/uy/uy176.1p94.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ke/ke141.3p135.4s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/xa/xa183.0p105.7s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ey/ey174.5p100.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/of/of172.5p112.5s100.0t+000itd.lab"'
+sil
+of
+sil
+.
+'"snr+30dB/features/fu/fu168.9p125.4s100.0t+000itd.lab"'
+sil
+fu
+sil
+.
+'"snr+30dB/features/ay/ay174.5p110.6s100.0t+000itd.lab"'
+sil
+ay
+sil
+.
+'"snr+30dB/features/aa/aa163.4p157.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ge/ge174.5p110.6s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ni/ni168.9p125.4s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ix/ix175.7p118.5s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/eg/eg192.7p116.7s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/eh/eh159.5p109.6s100.0t+000itd.lab"'
+sil
+eh
+sil
+.
+'"snr+30dB/features/mi/mi170.1p119.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/id/id163.4p157.6s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/es/es163.4p157.6s100.0t+000itd.lab"'
+sil
+es
+sil
+.
+'"snr+30dB/features/at/at173.5p115.0s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/at/at165.7p116.2s100.0t+000itd.lab"'
+sil
+at
+sil
+.
+'"snr+30dB/features/ri/ri198.1p97.9s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ih/ih194.5p150.4s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/ax/ax172.4p109.3s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/iz/iz183.0p130.4s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/uu/uu163.4p157.6s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/si/si153.0p108.1s100.0t+000itd.lab"'
+sil
+si
+sil
+.
+'"snr+30dB/features/he/he165.6p144.0s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/pe/pe168.9p125.4s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/iz/iz141.3p135.4s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ta/ta164.7p110.8s100.0t+000itd.lab"'
+sil
+ta
+sil
+.
+'"snr+30dB/features/uf/uf151.6p83.9s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/ge/ge170.1p119.5s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/ul/ul171.0p115.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/fi/fi163.4p157.6s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ak/ak155.5p123.5s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/sa/sa170.0p109.7s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/ze/ze167.8p106.5s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ad/ad194.5p150.4s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/po/po202.7p118.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ew/ew145.5p106.3s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/uy/uy153.0p108.1s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/im/im153.0p108.1s100.0t+000itd.lab"'
+sil
+im
+sil
+.
+'"snr+30dB/features/uz/uz164.7p110.8s100.0t+000itd.lab"'
+sil
+uz
+sil
+.
+'"snr+30dB/features/ii/ii170.0p109.7s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/us/us183.0p130.4s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/mu/mu171.0p115.5s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/we/we208.6p93.2s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/wo/wo172.1p113.0s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ti/ti171.0p115.5s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/va/va170.1p119.5s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/od/od170.0p109.7s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/do/do137.0p104.3s100.0t+000itd.lab"'
+sil
+do
+sil
+.
+'"snr+30dB/features/yu/yu175.7p118.5s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/eb/eb171.3p111.7s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/fe/fe183.0p130.4s100.0t+000itd.lab"'
+sil
+fe
+sil
+.
+'"snr+30dB/features/no/no171.5p113.1s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/iw/iw188.1p139.2s100.0t+000itd.lab"'
+sil
+iw
+sil
+.
+'"snr+30dB/features/ax/ax192.7p116.7s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/os/os180.4p80.1s100.0t+000itd.lab"'
+sil
+os
+sil
+.
+'"snr+30dB/features/pe/pe137.0p104.3s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/le/le171.9p111.5s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/ga/ga171.7p112.3s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/eg/eg178.1p87.6s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/mi/mi167.4p133.5s100.0t+000itd.lab"'
+sil
+mi
+sil
+.
+'"snr+30dB/features/eb/eb192.7p116.7s100.0t+000itd.lab"'
+sil
+eb
+sil
+.
+'"snr+30dB/features/ey/ey198.1p97.9s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ak/ak172.1p113.0s100.0t+000itd.lab"'
+sil
+ak
+sil
+.
+'"snr+30dB/features/ox/ox176.1p94.5s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/nu/nu168.6p111.6s100.0t+000itd.lab"'
+sil
+nu
+sil
+.
+'"snr+30dB/features/wu/wu183.0p130.4s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/aa/aa173.3p105.6s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ib/ib170.9p112.2s100.0t+000itd.lab"'
+sil
+ib
+sil
+.
+'"snr+30dB/features/uf/uf167.4p133.5s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/hi/hi172.4p111.9s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/ir/ir153.0p108.1s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/ud/ud174.9p113.0s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/du/du173.3p105.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/is/is179.0p113.9s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/le/le194.5p150.4s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/va/va172.4p109.3s100.0t+000itd.lab"'
+sil
+va
+sil
+.
+'"snr+30dB/features/di/di168.9p125.4s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/oz/oz171.0p112.8s100.0t+000itd.lab"'
+sil
+oz
+sil
+.
+'"snr+30dB/features/we/we168.9p125.4s100.0t+000itd.lab"'
+sil
+we
+sil
+.
+'"snr+30dB/features/bu/bu168.6p111.6s100.0t+000itd.lab"'
+sil
+bu
+sil
+.
+'"snr+30dB/features/ga/ga173.3p105.6s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ek/ek178.1p87.6s100.0t+000itd.lab"'
+sil
+ek
+sil
+.
+'"snr+30dB/features/ee/ee161.1p119.4s100.0t+000itd.lab"'
+sil
+ee
+sil
+.
+'"snr+30dB/features/um/um170.0p109.7s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ey/ey172.4p111.9s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/so/so178.8p123.6s100.0t+000itd.lab"'
+sil
+so
+sil
+.
+'"snr+30dB/features/us/us168.6p111.6s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/ix/ix171.3p111.7s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/tu/tu198.1p97.9s100.0t+000itd.lab"'
+sil
+tu
+sil
+.
+'"snr+30dB/features/ax/ax145.5p106.3s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/de/de164.9p102.1s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/lu/lu164.9p102.1s100.0t+000itd.lab"'
+sil
+lu
+sil
+.
+'"snr+30dB/features/ew/ew189.6p102.1s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/um/um178.1p87.6s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/ut/ut171.3p111.7s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ut/ut155.5p123.5s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ug/ug167.8p106.5s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/wa/wa172.4p109.3s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/us/us171.9p111.5s100.0t+000itd.lab"'
+sil
+us
+sil
+.
+'"snr+30dB/features/un/un202.7p118.6s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/op/op148.8p128.8s100.0t+000itd.lab"'
+sil
+op
+sil
+.
+'"snr+30dB/features/za/za171.5p113.1s100.0t+000itd.lab"'
+sil
+za
+sil
+.
+'"snr+30dB/features/er/er141.3p135.4s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ox/ox156.7p90.6s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/wi/wi170.0p109.7s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/uv/uv167.4p133.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/wa/wa172.5p112.5s100.0t+000itd.lab"'
+sil
+wa
+sil
+.
+'"snr+30dB/features/he/he183.0p105.7s100.0t+000itd.lab"'
+sil
+he
+sil
+.
+'"snr+30dB/features/iy/iy172.5p112.5s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/ad/ad165.7p116.2s100.0t+000itd.lab"'
+sil
+ad
+sil
+.
+'"snr+30dB/features/in/in168.9p125.4s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/or/or189.6p102.1s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/az/az171.3p111.7s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/di/di165.7p116.2s100.0t+000itd.lab"'
+sil
+di
+sil
+.
+'"snr+30dB/features/aw/aw176.1p94.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/wi/wi178.1p87.6s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/az/az183.0p130.4s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/er/er145.5p106.3s100.0t+000itd.lab"'
+sil
+er
+sil
+.
+'"snr+30dB/features/ax/ax215.2p121.0s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ku/ku171.0p115.5s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/ka/ka171.5p113.1s100.0t+000itd.lab"'
+sil
+ka
+sil
+.
+'"snr+30dB/features/am/am165.7p116.2s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/go/go175.7p118.5s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/uu/uu164.7p110.8s100.0t+000itd.lab"'
+sil
+uu
+sil
+.
+'"snr+30dB/features/om/om159.5p109.6s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ro/ro170.0p109.7s100.0t+000itd.lab"'
+sil
+ro
+sil
+.
+'"snr+30dB/features/ug/ug171.0p112.8s100.0t+000itd.lab"'
+sil
+ug
+sil
+.
+'"snr+30dB/features/ov/ov171.0p112.8s100.0t+000itd.lab"'
+sil
+ov
+sil
+.
+'"snr+30dB/features/se/se163.4p157.6s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/iy/iy174.5p100.6s100.0t+000itd.lab"'
+sil
+iy
+sil
+.
+'"snr+30dB/features/lo/lo165.6p144.0s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/en/en183.0p130.4s100.0t+000itd.lab"'
+sil
+en
+sil
+.
+'"snr+30dB/features/um/um151.6p83.9s100.0t+000itd.lab"'
+sil
+um
+sil
+.
+'"snr+30dB/features/zi/zi184.8p115.1s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/gi/gi171.7p112.3s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/ol/ol171.5p113.1s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/or/or174.5p110.6s100.0t+000itd.lab"'
+sil
+or
+sil
+.
+'"snr+30dB/features/de/de171.0p115.5s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ig/ig198.1p97.9s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/ap/ap170.1p119.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/uh/uh159.5p109.6s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/od/od202.7p118.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/te/te170.9p112.2s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/yu/yu183.0p130.4s100.0t+000itd.lab"'
+sil
+yu
+sil
+.
+'"snr+30dB/features/fa/fa171.0p115.5s100.0t+000itd.lab"'
+sil
+fa
+sil
+.
+'"snr+30dB/features/od/od173.3p105.6s100.0t+000itd.lab"'
+sil
+od
+sil
+.
+'"snr+30dB/features/om/om172.1p113.0s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/xo/xo208.6p93.2s100.0t+000itd.lab"'
+sil
+xo
+sil
+.
+'"snr+30dB/features/yo/yo168.6p111.6s100.0t+000itd.lab"'
+sil
+yo
+sil
+.
+'"snr+30dB/features/uh/uh215.2p121.0s100.0t+000itd.lab"'
+sil
+uh
+sil
+.
+'"snr+30dB/features/su/su168.6p111.6s100.0t+000itd.lab"'
+sil
+su
+sil
+.
+'"snr+30dB/features/xi/xi148.8p128.8s100.0t+000itd.lab"'
+sil
+xi
+sil
+.
+'"snr+30dB/features/aa/aa171.0p112.8s100.0t+000itd.lab"'
+sil
+aa
+sil
+.
+'"snr+30dB/features/ul/ul169.0p114.0s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/am/am148.8p128.8s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ut/ut161.1p119.4s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/ho/ho179.0p113.9s100.0t+000itd.lab"'
+sil
+ho
+sil
+.
+'"snr+30dB/features/al/al165.7p116.2s100.0t+000itd.lab"'
+sil
+al
+sil
+.
+'"snr+30dB/features/uw/uw215.2p121.0s100.0t+000itd.lab"'
+sil
+uw
+sil
+.
+'"snr+30dB/features/iz/iz168.6p111.6s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/id/id188.1p139.2s100.0t+000itd.lab"'
+sil
+id
+sil
+.
+'"snr+30dB/features/du/du168.6p111.6s100.0t+000itd.lab"'
+sil
+du
+sil
+.
+'"snr+30dB/features/ru/ru169.0p114.0s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/uk/uk171.0p115.5s100.0t+000itd.lab"'
+sil
+uk
+sil
+.
+'"snr+30dB/features/ne/ne171.9p111.5s100.0t+000itd.lab"'
+sil
+ne
+sil
+.
+'"snr+30dB/features/pa/pa168.6p111.6s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/ew/ew171.9p111.5s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/ku/ku173.3p105.6s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/na/na153.0p108.1s100.0t+000itd.lab"'
+sil
+na
+sil
+.
+'"snr+30dB/features/ew/ew183.0p105.7s100.0t+000itd.lab"'
+sil
+ew
+sil
+.
+'"snr+30dB/features/iz/iz169.0p114.0s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/ti/ti174.5p110.6s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/om/om165.7p116.2s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ra/ra180.4p80.1s100.0t+000itd.lab"'
+sil
+ra
+sil
+.
+'"snr+30dB/features/om/om179.0p113.9s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/ig/ig183.0p130.4s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/up/up164.7p110.8s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/po/po159.5p109.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/wu/wu184.8p115.1s100.0t+000itd.lab"'
+sil
+wu
+sil
+.
+'"snr+30dB/features/ni/ni215.2p121.0s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/ba/ba159.5p109.6s100.0t+000itd.lab"'
+sil
+ba
+sil
+.
+'"snr+30dB/features/po/po163.4p157.6s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ap/ap176.1p94.5s100.0t+000itd.lab"'
+sil
+ap
+sil
+.
+'"snr+30dB/features/hu/hu171.7p112.3s100.0t+000itd.lab"'
+sil
+hu
+sil
+.
+'"snr+30dB/features/ya/ya168.9p125.4s100.0t+000itd.lab"'
+sil
+ya
+sil
+.
+'"snr+30dB/features/ut/ut194.5p150.4s100.0t+000itd.lab"'
+sil
+ut
+sil
+.
+'"snr+30dB/features/wi/wi151.6p83.9s100.0t+000itd.lab"'
+sil
+wi
+sil
+.
+'"snr+30dB/features/ar/ar172.4p111.9s100.0t+000itd.lab"'
+sil
+ar
+sil
+.
+'"snr+30dB/features/zo/zo174.9p113.0s100.0t+000itd.lab"'
+sil
+zo
+sil
+.
+'"snr+30dB/features/up/up183.0p130.4s100.0t+000itd.lab"'
+sil
+up
+sil
+.
+'"snr+30dB/features/ol/ol171.9p111.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/xa/xa145.5p106.3s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/ip/ip189.6p102.1s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ul/ul167.4p133.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/ii/ii159.5p109.6s100.0t+000itd.lab"'
+sil
+ii
+sil
+.
+'"snr+30dB/features/hi/hi165.7p116.2s100.0t+000itd.lab"'
+sil
+hi
+sil
+.
+'"snr+30dB/features/az/az163.4p157.6s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/af/af161.1p96.8s100.0t+000itd.lab"'
+sil
+af
+sil
+.
+'"snr+30dB/features/go/go168.6p111.6s100.0t+000itd.lab"'
+sil
+go
+sil
+.
+'"snr+30dB/features/to/to202.7p118.6s100.0t+000itd.lab"'
+sil
+to
+sil
+.
+'"snr+30dB/features/fi/fi171.0p115.5s100.0t+000itd.lab"'
+sil
+fi
+sil
+.
+'"snr+30dB/features/ti/ti183.0p130.4s100.0t+000itd.lab"'
+sil
+ti
+sil
+.
+'"snr+30dB/features/aw/aw175.7p118.5s100.0t+000itd.lab"'
+sil
+aw
+sil
+.
+'"snr+30dB/features/ku/ku170.0p109.7s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/eg/eg164.9p102.1s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/be/be171.9p111.5s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/il/il148.8p128.8s100.0t+000itd.lab"'
+sil
+il
+sil
+.
+'"snr+30dB/features/ga/ga161.1p96.8s100.0t+000itd.lab"'
+sil
+ga
+sil
+.
+'"snr+30dB/features/ef/ef168.6p111.6s100.0t+000itd.lab"'
+sil
+ef
+sil
+.
+'"snr+30dB/features/in/in174.5p100.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/no/no170.9p112.2s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/ul/ul170.1p119.5s100.0t+000itd.lab"'
+sil
+ul
+sil
+.
+'"snr+30dB/features/oo/oo194.5p150.4s100.0t+000itd.lab"'
+sil
+oo
+sil
+.
+'"snr+30dB/features/de/de171.7p112.3s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ni/ni169.0p114.0s100.0t+000itd.lab"'
+sil
+ni
+sil
+.
+'"snr+30dB/features/de/de153.0p108.1s100.0t+000itd.lab"'
+sil
+de
+sil
+.
+'"snr+30dB/features/ip/ip170.0p109.7s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ik/ik173.3p105.6s100.0t+000itd.lab"'
+sil
+ik
+sil
+.
+'"snr+30dB/features/ol/ol170.1p119.5s100.0t+000itd.lab"'
+sil
+ol
+sil
+.
+'"snr+30dB/features/pe/pe198.1p97.9s100.0t+000itd.lab"'
+sil
+pe
+sil
+.
+'"snr+30dB/features/uv/uv167.8p106.5s100.0t+000itd.lab"'
+sil
+uv
+sil
+.
+'"snr+30dB/features/ru/ru168.6p111.6s100.0t+000itd.lab"'
+sil
+ru
+sil
+.
+'"snr+30dB/features/ep/ep172.4p111.9s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ko/ko151.6p83.9s100.0t+000itd.lab"'
+sil
+ko
+sil
+.
+'"snr+30dB/features/ep/ep173.5p115.0s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/ep/ep161.1p119.4s100.0t+000itd.lab"'
+sil
+ep
+sil
+.
+'"snr+30dB/features/lo/lo215.2p121.0s100.0t+000itd.lab"'
+sil
+lo
+sil
+.
+'"snr+30dB/features/gi/gi174.9p113.0s100.0t+000itd.lab"'
+sil
+gi
+sil
+.
+'"snr+30dB/features/uy/uy171.9p111.5s100.0t+000itd.lab"'
+sil
+uy
+sil
+.
+'"snr+30dB/features/ge/ge183.0p130.4s100.0t+000itd.lab"'
+sil
+ge
+sil
+.
+'"snr+30dB/features/it/it163.4p157.6s100.0t+000itd.lab"'
+sil
+it
+sil
+.
+'"snr+30dB/features/iz/iz168.9p125.4s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/am/am170.1p119.5s100.0t+000itd.lab"'
+sil
+am
+sil
+.
+'"snr+30dB/features/ag/ag180.4p80.1s100.0t+000itd.lab"'
+sil
+ag
+sil
+.
+'"snr+30dB/features/ku/ku171.0p112.8s100.0t+000itd.lab"'
+sil
+ku
+sil
+.
+'"snr+30dB/features/sa/sa170.1p119.5s100.0t+000itd.lab"'
+sil
+sa
+sil
+.
+'"snr+30dB/features/is/is202.7p118.6s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ki/ki165.6p144.0s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/ma/ma171.0p112.8s100.0t+000itd.lab"'
+sil
+ma
+sil
+.
+'"snr+30dB/features/pa/pa151.6p83.9s100.0t+000itd.lab"'
+sil
+pa
+sil
+.
+'"snr+30dB/features/om/om172.4p111.9s100.0t+000itd.lab"'
+sil
+om
+sil
+.
+'"snr+30dB/features/xa/xa172.1p113.0s100.0t+000itd.lab"'
+sil
+xa
+sil
+.
+'"snr+30dB/features/no/no163.4p157.6s100.0t+000itd.lab"'
+sil
+no
+sil
+.
+'"snr+30dB/features/zi/zi183.0p105.7s100.0t+000itd.lab"'
+sil
+zi
+sil
+.
+'"snr+30dB/features/is/is208.6p93.2s100.0t+000itd.lab"'
+sil
+is
+sil
+.
+'"snr+30dB/features/ri/ri172.4p109.3s100.0t+000itd.lab"'
+sil
+ri
+sil
+.
+'"snr+30dB/features/ih/ih151.6p83.9s100.0t+000itd.lab"'
+sil
+ih
+sil
+.
+'"snr+30dB/features/le/le192.7p116.7s100.0t+000itd.lab"'
+sil
+le
+sil
+.
+'"snr+30dB/features/in/in178.1p87.6s100.0t+000itd.lab"'
+sil
+in
+sil
+.
+'"snr+30dB/features/ey/ey156.7p90.6s100.0t+000itd.lab"'
+sil
+ey
+sil
+.
+'"snr+30dB/features/ox/ox183.0p105.7s100.0t+000itd.lab"'
+sil
+ox
+sil
+.
+'"snr+30dB/features/wo/wo170.0p109.7s100.0t+000itd.lab"'
+sil
+wo
+sil
+.
+'"snr+30dB/features/ke/ke194.5p150.4s100.0t+000itd.lab"'
+sil
+ke
+sil
+.
+'"snr+30dB/features/ax/ax151.6p83.9s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ig/ig175.7p118.5s100.0t+000itd.lab"'
+sil
+ig
+sil
+.
+'"snr+30dB/features/vo/vo176.1p94.5s100.0t+000itd.lab"'
+sil
+vo
+sil
+.
+'"snr+30dB/features/po/po188.1p139.2s100.0t+000itd.lab"'
+sil
+po
+sil
+.
+'"snr+30dB/features/ub/ub156.7p90.6s100.0t+000itd.lab"'
+sil
+ub
+sil
+.
+'"snr+30dB/features/ax/ax174.9p113.0s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ax/ax172.4p111.9s100.0t+000itd.lab"'
+sil
+ax
+sil
+.
+'"snr+30dB/features/ip/ip202.7p118.6s100.0t+000itd.lab"'
+sil
+ip
+sil
+.
+'"snr+30dB/features/ir/ir170.9p112.2s100.0t+000itd.lab"'
+sil
+ir
+sil
+.
+'"snr+30dB/features/eg/eg171.5p113.1s100.0t+000itd.lab"'
+sil
+eg
+sil
+.
+'"snr+30dB/features/ze/ze156.7p90.6s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/be/be164.7p110.8s100.0t+000itd.lab"'
+sil
+be
+sil
+.
+'"snr+30dB/features/ix/ix174.5p100.6s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/te/te170.1p119.5s100.0t+000itd.lab"'
+sil
+te
+sil
+.
+'"snr+30dB/features/ix/ix169.0p114.0s100.0t+000itd.lab"'
+sil
+ix
+sil
+.
+'"snr+30dB/features/ur/ur137.0p104.3s100.0t+000itd.lab"'
+sil
+ur
+sil
+.
+'"snr+30dB/features/un/un169.0p114.0s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/az/az165.7p116.2s100.0t+000itd.lab"'
+sil
+az
+sil
+.
+'"snr+30dB/features/ot/ot174.5p100.6s100.0t+000itd.lab"'
+sil
+ot
+sil
+.
+'"snr+30dB/features/uf/uf171.0p112.8s100.0t+000itd.lab"'
+sil
+uf
+sil
+.
+'"snr+30dB/features/mu/mu192.7p116.7s100.0t+000itd.lab"'
+sil
+mu
+sil
+.
+'"snr+30dB/features/un/un171.0p112.8s100.0t+000itd.lab"'
+sil
+un
+sil
+.
+'"snr+30dB/features/ze/ze192.7p116.7s100.0t+000itd.lab"'
+sil
+ze
+sil
+.
+'"snr+30dB/features/ki/ki173.5p115.0s100.0t+000itd.lab"'
+sil
+ki
+sil
+.
+'"snr+30dB/features/se/se171.5p113.1s100.0t+000itd.lab"'
+sil
+se
+sil
+.
+'"snr+30dB/features/bi/bi165.7p116.2s100.0t+000itd.lab"'
+sil
+bi
+sil
+.
+'"snr+30dB/features/iz/iz165.6p144.0s100.0t+000itd.lab"'
+sil
+iz
+sil
+.
+'"snr+30dB/features/et/et167.8p106.5s100.0t+000itd.lab"'
+sil
+et
+sil
+.
+'"snr+30dB/features/ud/ud168.6p111.6s100.0t+000itd.lab"'
+sil
+ud
+sil
+.
+'"snr+30dB/features/un/un171.5p113.1s100.0t+000itd.lab"'
+sil
+un
+sil
+.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/train_rand.scp	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,1480 @@
+'snr+30dB/features/uz/uz208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/su/su184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/re/re180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/il/il167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/os/os169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/is/is172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/op/op208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/du/du169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/go/go171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/di/di151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/um/um148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/be/be168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/it/it215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/na/na145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/is/is175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/su/su192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/un/un165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/il/il168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/te/te172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/es/es168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/af/af165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/if/if164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/as/as171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/up/up169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/do/do179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/si/si141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/so/so173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/da/da188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/no/no175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/es/es171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/og/og171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/te/te155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/az/az189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/he/he164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/up/up151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/na/na163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/du/du172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/te/te151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/no/no178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/op/op174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/li/li173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/po/po192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/si/si174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/su/su161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/us/us202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/on/on192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/is/is172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/go/go153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/go/go137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/te/te208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/la/la171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/se/se188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/um/um165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/za/za189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/si/si176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/el/el171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/us/us178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/da/da169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/re/re171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/un/un156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/al/al164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/la/la215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/se/se178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/du/du174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/of/of173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/on/on173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/of/of215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/um/um179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/li/li168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/if/if176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/id/id208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/os/os179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/er/er174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/he/he202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/le/le148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/up/up170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/we/we168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/az/az173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/an/an145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/at/at183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/as/as208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/or/or169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/on/on198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/op/op183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/an/an153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/if/if178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/un/un170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/na/na164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/la/la153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/le/le208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/im/im137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/re/re202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/di/di171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/up/up172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/og/og194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/am/am168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/og/og141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/go/go145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/se/se179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/os/os174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/um/um171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/es/es173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/po/po169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/al/al170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/al/al171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/to/to176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/at/at174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/na/na170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/an/an194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/du/du163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/to/to155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/et/et172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/el/el164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/os/os174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/he/he198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/to/to173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/et/et167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/za/za172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/na/na170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/le/le161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/za/za172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/be/be170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/me/me174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/we/we176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/me/me165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/or/or188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/so/so188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/at/at163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/em/em171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/da/da161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/da/da198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/er/er171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/he/he161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/af/af169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/il/il153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/me/me153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/va/va174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/up/up198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/id/id172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/el/el156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/go/go155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/um/um189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/di/di145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/il/il178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/at/at168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/to/to174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/am/am179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/pu/pu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/em/em148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/di/di180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/av/av174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ab/ab137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/di/di163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/is/is165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/el/el170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/do/do174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/be/be161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/os/os151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/il/il202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/al/al151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/os/os175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/to/to178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ev/ev137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/op/op172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/la/la164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/me/me173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/up/up155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/az/az170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ah/ah161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/em/em178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/im/im202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/di/di172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/si/si155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/in/in145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/de/de167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/um/um178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/os/os164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/re/re148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/so/so215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/la/la202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/su/su172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/er/er176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/az/az175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/en/en194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/at/at172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/en/en165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/un/un178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/im/im172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/di/di164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/to/to165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/av/av189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/as/as145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/il/il156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/og/og165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/of/of192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/re/re172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/od/od161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/il/il189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/do/do165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/af/af202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/le/le174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/vu/vu155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/if/if174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/he/he170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/al/al171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/he/he171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/un/un167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/of/of171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/af/af164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ed/ed174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/su/su164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/oy/oy178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/if/if156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/al/al155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/re/re198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/me/me171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/es/es184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/za/za155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/un/un145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/no/no176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/av/av170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/an/an168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/og/og171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/op/op171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/xe/xe172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/bo/bo167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/up/up180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/il/il183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/er/er168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/or/or183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/et/et172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/li/li165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/be/be171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/if/if161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/en/en170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/og/og189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ve/ve141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/om/om172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/xu/xu202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/li/li172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/of/of170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/in/in176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/to/to178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/me/me172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/na/na198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/gu/gu180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/on/on180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/se/se208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ha/ha155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/er/er189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/li/li161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/yi/yi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ez/ez153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/za/za173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar178.0p108.5s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/fo/fo179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/az/az141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/es/es172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/me/me165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/il/il168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/av/av172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ow/ow173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/il/il169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/iv/iv184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/se/se172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/em/em159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/id/id173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/vi/vi165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/to/to172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/at/at189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/as/as202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/om/om171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ok/ok171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/mo/mo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/it/it208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/do/do168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/da/da215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ob/ob178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/oh/oh171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ux/ux145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/zu/zu151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/he/he141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/us/us174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/am/am156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/du/du171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/op/op179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ye/ye163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/pi/pi161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/il/il180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/of/of172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/fu/fu168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ay/ay174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/eh/eh159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/id/id163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/es/es163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/at/at173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/at/at165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/si/si153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/he/he165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ta/ta164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/po/po202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/im/im153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/uz/uz164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/us/us183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/we/we208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/va/va170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/do/do137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/fe/fe183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/no/no171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/iw/iw188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/os/os180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/le/le171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/mi/mi167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/eb/eb192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ak/ak172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/nu/nu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ib/ib170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/du/du173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/is/is179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/va/va172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/di/di168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/oz/oz171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/we/we168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/bu/bu168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ek/ek178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ee/ee161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/um/um170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/so/so178.8p123.6s100.0t+000itd.htk'
+'snr+30dB/features/us/us168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/tu/tu198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/de/de164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/lu/lu164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/um/um178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut155.5p123.5s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/us/us171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/un/un202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/op/op148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/za/za171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/er/er141.3p135.4s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/wa/wa172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/he/he183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy172.5p112.5s100.0t+000itd.htk'
+'snr+30dB/features/ad/ad165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/in/in168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/or/or189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/az/az171.3p111.7s100.0t+000itd.htk'
+'snr+30dB/features/di/di165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/az/az183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/er/er145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ka/ka171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/am/am165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/go/go175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/uu/uu164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/om/om159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/ro/ro170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ug/ug171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ov/ov171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/se/se163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iy/iy174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/en/en183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/um/um151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/or/or174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/de/de171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/od/od202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/yu/yu183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/fa/fa171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/od/od173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/xo/xo208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/yo/yo168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/uh/uh215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/su/su168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/xi/xi148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/aa/aa171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/am/am148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/ho/ho179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/al/al165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/uw/uw215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/id/id188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/du/du168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/uk/uk171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ne/ne171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/na/na153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ew/ew183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti174.5p110.6s100.0t+000itd.htk'
+'snr+30dB/features/om/om165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ra/ra180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/om/om179.0p113.9s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/up/up164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/po/po159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/wu/wu184.8p115.1s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/ba/ba159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/po/po163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/ap/ap176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/hu/hu171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ya/ya168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/ut/ut194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/wi/wi151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ar/ar172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/zo/zo174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/up/up183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa145.5p106.3s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip189.6p102.1s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul167.4p133.5s100.0t+000itd.htk'
+'snr+30dB/features/ii/ii159.5p109.6s100.0t+000itd.htk'
+'snr+30dB/features/hi/hi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/az/az163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/af/af161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/go/go168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/to/to202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/fi/fi171.0p115.5s100.0t+000itd.htk'
+'snr+30dB/features/ti/ti183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/aw/aw175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg164.9p102.1s100.0t+000itd.htk'
+'snr+30dB/features/be/be171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/il/il148.8p128.8s100.0t+000itd.htk'
+'snr+30dB/features/ga/ga161.1p96.8s100.0t+000itd.htk'
+'snr+30dB/features/ef/ef168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/in/in174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/no/no170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/ul/ul170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/oo/oo194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/de/de171.7p112.3s100.0t+000itd.htk'
+'snr+30dB/features/ni/ni169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/de/de153.0p108.1s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ik/ik173.3p105.6s100.0t+000itd.htk'
+'snr+30dB/features/ol/ol170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/pe/pe198.1p97.9s100.0t+000itd.htk'
+'snr+30dB/features/uv/uv167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ru/ru168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ko/ko151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/ep/ep161.1p119.4s100.0t+000itd.htk'
+'snr+30dB/features/lo/lo215.2p121.0s100.0t+000itd.htk'
+'snr+30dB/features/gi/gi174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/uy/uy171.9p111.5s100.0t+000itd.htk'
+'snr+30dB/features/ge/ge183.0p130.4s100.0t+000itd.htk'
+'snr+30dB/features/it/it163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz168.9p125.4s100.0t+000itd.htk'
+'snr+30dB/features/am/am170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ag/ag180.4p80.1s100.0t+000itd.htk'
+'snr+30dB/features/ku/ku171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/sa/sa170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/is/is202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/ma/ma171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/pa/pa151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/om/om172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/xa/xa172.1p113.0s100.0t+000itd.htk'
+'snr+30dB/features/no/no163.4p157.6s100.0t+000itd.htk'
+'snr+30dB/features/zi/zi183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/is/is208.6p93.2s100.0t+000itd.htk'
+'snr+30dB/features/ri/ri172.4p109.3s100.0t+000itd.htk'
+'snr+30dB/features/ih/ih151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/le/le192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/in/in178.1p87.6s100.0t+000itd.htk'
+'snr+30dB/features/ey/ey156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ox/ox183.0p105.7s100.0t+000itd.htk'
+'snr+30dB/features/wo/wo170.0p109.7s100.0t+000itd.htk'
+'snr+30dB/features/ke/ke194.5p150.4s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax151.6p83.9s100.0t+000itd.htk'
+'snr+30dB/features/ig/ig175.7p118.5s100.0t+000itd.htk'
+'snr+30dB/features/vo/vo176.1p94.5s100.0t+000itd.htk'
+'snr+30dB/features/po/po188.1p139.2s100.0t+000itd.htk'
+'snr+30dB/features/ub/ub156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax174.9p113.0s100.0t+000itd.htk'
+'snr+30dB/features/ax/ax172.4p111.9s100.0t+000itd.htk'
+'snr+30dB/features/ip/ip202.7p118.6s100.0t+000itd.htk'
+'snr+30dB/features/ir/ir170.9p112.2s100.0t+000itd.htk'
+'snr+30dB/features/eg/eg171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze156.7p90.6s100.0t+000itd.htk'
+'snr+30dB/features/be/be164.7p110.8s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/te/te170.1p119.5s100.0t+000itd.htk'
+'snr+30dB/features/ix/ix169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/ur/ur137.0p104.3s100.0t+000itd.htk'
+'snr+30dB/features/un/un169.0p114.0s100.0t+000itd.htk'
+'snr+30dB/features/az/az165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/ot/ot174.5p100.6s100.0t+000itd.htk'
+'snr+30dB/features/uf/uf171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/mu/mu192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/un/un171.0p112.8s100.0t+000itd.htk'
+'snr+30dB/features/ze/ze192.7p116.7s100.0t+000itd.htk'
+'snr+30dB/features/ki/ki173.5p115.0s100.0t+000itd.htk'
+'snr+30dB/features/se/se171.5p113.1s100.0t+000itd.htk'
+'snr+30dB/features/bi/bi165.7p116.2s100.0t+000itd.htk'
+'snr+30dB/features/iz/iz165.6p144.0s100.0t+000itd.htk'
+'snr+30dB/features/et/et167.8p106.5s100.0t+000itd.htk'
+'snr+30dB/features/ud/ud168.6p111.6s100.0t+000itd.htk'
+'snr+30dB/features/un/un171.5p113.1s100.0t+000itd.htk'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/random_syllables/train_syllables	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,1480 @@
+uz
+su
+gi
+re
+il
+ap
+os
+is
+az
+pu
+op
+du
+ii
+xi
+go
+ad
+aa
+um
+ir
+ne
+bi
+al
+et
+ku
+mu
+eg
+fa
+du
+xa
+gu
+go
+ub
+oo
+uv
+ov
+bi
+oy
+vo
+ko
+uv
+aa
+go
+in
+if
+ha
+ur
+pa
+di
+fe
+ux
+zi
+ul
+aw
+ib
+no
+um
+ob
+fo
+xu
+be
+ar
+ut
+eh
+ob
+ot
+ef
+ya
+en
+pa
+ti
+it
+gi
+ye
+na
+zu
+is
+is
+um
+su
+un
+ab
+il
+uz
+eg
+zo
+ha
+ik
+sa
+he
+ol
+mo
+iz
+ox
+oz
+fo
+se
+ub
+al
+oz
+iv
+ra
+bo
+lo
+uk
+zo
+ii
+ku
+te
+wu
+al
+yu
+om
+pu
+ad
+te
+es
+ma
+uh
+gi
+vi
+bo
+pe
+mu
+ot
+uu
+af
+re
+if
+he
+xe
+as
+up
+he
+ka
+oo
+fo
+hu
+fu
+ho
+me
+do
+ek
+si
+ob
+bo
+ih
+ka
+av
+ka
+ob
+ih
+xo
+so
+el
+da
+ud
+ta
+se
+no
+wa
+bi
+ub
+es
+og
+iz
+yu
+os
+te
+um
+fe
+az
+xi
+he
+ak
+up
+ix
+na
+av
+ok
+vo
+uk
+du
+ti
+te
+no
+sa
+op
+un
+li
+ki
+wo
+po
+ne
+si
+ri
+wo
+ur
+xu
+iv
+su
+zi
+ik
+ze
+us
+ya
+ax
+on
+gi
+um
+ud
+pa
+ax
+wu
+nu
+eg
+im
+lo
+uy
+ri
+is
+ix
+fa
+vi
+ee
+ul
+fe
+go
+bi
+ey
+me
+pi
+zo
+am
+ra
+ra
+go
+bu
+te
+uk
+za
+ov
+xe
+te
+hu
+vi
+oy
+ad
+ov
+pu
+ap
+la
+se
+iy
+fe
+ud
+ra
+mu
+va
+ab
+fi
+sa
+ib
+xo
+ey
+um
+za
+si
+va
+ho
+ib
+me
+wa
+ee
+ok
+uw
+ku
+bu
+eh
+iw
+um
+zi
+ma
+ih
+nu
+ge
+pa
+el
+zi
+ii
+to
+iz
+ug
+nu
+pi
+ip
+lo
+ed
+gu
+us
+ax
+ti
+iy
+da
+re
+ug
+ru
+sa
+un
+at
+al
+ba
+eh
+la
+mo
+se
+to
+ku
+du
+ro
+iy
+of
+vi
+ze
+bo
+on
+ir
+fu
+af
+of
+ul
+ze
+iy
+um
+ax
+ya
+li
+fi
+xe
+ew
+if
+ef
+oh
+ag
+id
+ab
+os
+wu
+mi
+vu
+ho
+ra
+fi
+er
+we
+wi
+he
+ho
+nu
+le
+up
+ag
+tu
+fu
+eh
+we
+si
+az
+bu
+an
+xe
+ew
+ib
+ze
+at
+ri
+bo
+ad
+gu
+as
+zo
+or
+on
+op
+an
+aw
+ma
+oy
+mu
+ev
+no
+do
+ib
+ko
+ok
+if
+si
+ef
+ug
+ee
+uy
+pe
+un
+mo
+ko
+eg
+ah
+fo
+it
+fo
+ro
+ew
+me
+xe
+na
+uu
+oo
+ug
+la
+ev
+oy
+le
+im
+ow
+uw
+ze
+so
+ot
+vo
+re
+ze
+se
+oh
+di
+lu
+pe
+az
+up
+em
+iz
+ti
+xe
+of
+bi
+og
+va
+ox
+lo
+ta
+ye
+am
+ol
+og
+ru
+mi
+ba
+tu
+ih
+uv
+oh
+ta
+ri
+xe
+iv
+ik
+vo
+ot
+ga
+ho
+xa
+zo
+ag
+uv
+mi
+go
+ov
+ap
+se
+os
+ut
+ma
+um
+ro
+ax
+ee
+iv
+gu
+ik
+ox
+mu
+ku
+es
+ab
+hu
+ol
+xe
+ew
+po
+oo
+uu
+al
+fe
+ob
+iy
+bu
+al
+az
+vo
+uw
+bo
+ed
+to
+xu
+ru
+yu
+pu
+ga
+at
+na
+iv
+ap
+ni
+ip
+an
+ak
+ne
+fu
+ih
+mo
+xo
+ge
+ki
+wa
+av
+ga
+er
+du
+er
+id
+to
+ed
+et
+fi
+ug
+oh
+el
+eb
+os
+zi
+ma
+ee
+ee
+wo
+ag
+ro
+ar
+ax
+wu
+eh
+wu
+la
+eh
+vi
+uw
+ka
+ha
+ud
+uu
+iw
+ir
+gi
+ta
+eg
+ot
+ol
+we
+he
+ka
+to
+xu
+et
+os
+tu
+av
+za
+uh
+na
+le
+ki
+za
+uv
+ru
+lo
+ra
+be
+iy
+ad
+uf
+av
+me
+xo
+ad
+ko
+fa
+mi
+uh
+we
+me
+de
+in
+ru
+or
+ut
+so
+at
+iz
+av
+ma
+ok
+nu
+em
+oh
+da
+da
+bi
+ub
+po
+ti
+ol
+er
+ge
+xa
+er
+tu
+ag
+mu
+hu
+ke
+en
+ag
+he
+ki
+af
+ki
+na
+mi
+hu
+mi
+il
+me
+va
+wa
+ov
+up
+vu
+om
+ko
+ub
+ga
+id
+ma
+ey
+ne
+uk
+vu
+uk
+ni
+uv
+wi
+gu
+pe
+ud
+xo
+ed
+ox
+el
+go
+ix
+um
+di
+wu
+il
+zo
+oy
+ti
+zu
+at
+to
+uw
+ge
+ib
+uy
+ep
+vu
+ma
+ug
+sa
+am
+iw
+is
+bi
+ke
+to
+gu
+ye
+pu
+ee
+uw
+fo
+wa
+ge
+em
+di
+av
+ur
+iw
+di
+ab
+di
+lo
+la
+is
+ay
+be
+fi
+lu
+gu
+ki
+ax
+de
+uh
+tu
+el
+ox
+ax
+do
+ik
+ol
+be
+os
+ti
+uv
+il
+ho
+ez
+hu
+xo
+ob
+al
+fe
+em
+ma
+os
+ub
+to
+vi
+ti
+xi
+em
+ya
+ni
+yi
+ev
+wa
+ix
+ah
+aw
+ih
+uz
+aw
+ut
+ir
+uh
+ee
+or
+op
+gu
+aa
+uv
+ob
+ka
+la
+ir
+iy
+me
+ug
+mo
+ri
+up
+ug
+ne
+ot
+ar
+az
+ah
+ra
+lo
+ki
+in
+fu
+em
+ib
+im
+ul
+di
+si
+il
+xu
+nu
+pe
+in
+de
+fa
+oo
+he
+ed
+lo
+ud
+wu
+yu
+xo
+ur
+av
+ee
+oo
+wa
+gu
+xo
+um
+tu
+pi
+hi
+ro
+zu
+ub
+yu
+yi
+ni
+lu
+ti
+oo
+ti
+os
+yo
+wo
+fi
+pa
+ye
+ub
+yu
+mo
+ne
+re
+bu
+ew
+ku
+ot
+wu
+so
+tu
+ut
+ez
+la
+ra
+ke
+ve
+tu
+su
+fa
+he
+zu
+uz
+ba
+er
+az
+ep
+iv
+bi
+ew
+ir
+ow
+ow
+en
+at
+ur
+eb
+vo
+xa
+en
+uy
+bo
+eb
+aw
+un
+id
+et
+ba
+im
+sa
+ez
+oy
+ih
+di
+eb
+to
+av
+eb
+bi
+ig
+as
+uk
+nu
+uw
+ow
+il
+oz
+ve
+ob
+aa
+og
+nu
+ru
+ii
+lu
+of
+bi
+re
+ma
+zo
+fi
+uv
+ni
+ag
+ik
+ge
+uf
+fu
+uf
+od
+il
+oo
+ep
+do
+uy
+uz
+mo
+oy
+ip
+af
+le
+as
+mi
+ya
+vu
+af
+if
+oz
+ir
+ug
+fu
+he
+ed
+al
+he
+un
+of
+af
+ed
+uw
+su
+uh
+uw
+ay
+ki
+bu
+ad
+ik
+oy
+ol
+if
+ax
+ol
+uh
+ha
+ze
+al
+ko
+ke
+ta
+re
+ib
+xo
+ta
+me
+fu
+es
+za
+ow
+ig
+un
+no
+fi
+ut
+ye
+ow
+te
+av
+ye
+uv
+se
+an
+og
+mo
+ef
+ka
+ka
+op
+pi
+yo
+xe
+bo
+bo
+up
+il
+er
+ap
+or
+ux
+et
+ki
+li
+be
+if
+pi
+en
+ag
+og
+ge
+vi
+ew
+aa
+ze
+ux
+ve
+it
+mu
+bu
+gi
+ma
+ox
+om
+ee
+ef
+em
+mi
+xu
+me
+ha
+tu
+tu
+ko
+oz
+ya
+ni
+uz
+ru
+li
+yu
+of
+nu
+zo
+yi
+ol
+po
+xi
+ud
+ur
+fu
+in
+wo
+xa
+to
+sa
+ud
+ok
+fo
+me
+yu
+na
+yu
+ni
+ud
+ep
+om
+gu
+on
+ik
+pe
+se
+ha
+er
+ya
+li
+lu
+hu
+fo
+yi
+ez
+ma
+za
+ne
+ax
+of
+ar
+ep
+zo
+fo
+az
+fu
+ke
+id
+va
+ow
+ot
+wu
+es
+uz
+me
+il
+uh
+av
+tu
+eg
+ow
+il
+iv
+ya
+se
+em
+te
+id
+fa
+uh
+vi
+to
+fe
+zi
+at
+im
+as
+ub
+uv
+uf
+om
+ok
+ol
+yu
+mo
+it
+yo
+do
+da
+ob
+id
+ag
+oh
+ko
+ag
+wi
+ux
+zu
+ef
+wu
+ho
+he
+us
+no
+fi
+uv
+xo
+am
+ek
+no
+uy
+ud
+du
+op
+ay
+ba
+uv
+ib
+ye
+pi
+il
+ka
+ip
+uy
+ke
+xa
+ey
+of
+fu
+ay
+aa
+ge
+ni
+ix
+eg
+eh
+mi
+id
+es
+at
+at
+ri
+ih
+ax
+iz
+uu
+si
+he
+pe
+iz
+ta
+uf
+ge
+ul
+fi
+ak
+sa
+ze
+ad
+po
+ew
+uy
+im
+uz
+ii
+us
+mu
+we
+wo
+ti
+va
+od
+do
+yu
+eb
+fe
+no
+iw
+ax
+os
+pe
+le
+ga
+eg
+mi
+eb
+ey
+ak
+ox
+nu
+wu
+aa
+ib
+uf
+hi
+ir
+ud
+du
+is
+le
+va
+di
+oz
+we
+bu
+ga
+ek
+ee
+um
+ey
+so
+us
+ix
+tu
+ax
+de
+lu
+ew
+um
+ut
+ut
+ug
+wa
+us
+un
+op
+za
+er
+ox
+wi
+uv
+wa
+he
+iy
+ad
+in
+or
+az
+di
+aw
+wi
+az
+er
+ax
+ku
+ka
+am
+go
+uu
+om
+ro
+ug
+ov
+se
+iy
+lo
+en
+um
+zi
+gi
+ol
+or
+de
+ig
+ap
+uh
+od
+te
+yu
+fa
+od
+om
+xo
+yo
+uh
+su
+xi
+aa
+ul
+am
+ut
+ho
+al
+uw
+iz
+id
+du
+ru
+uk
+ne
+pa
+ew
+ku
+na
+ew
+iz
+ti
+om
+ra
+om
+ig
+up
+po
+wu
+ni
+ba
+po
+ap
+hu
+ya
+ut
+wi
+ar
+zo
+up
+ol
+xa
+ip
+ul
+ii
+hi
+az
+af
+go
+to
+fi
+ti
+aw
+ku
+eg
+be
+il
+ga
+ef
+in
+no
+ul
+oo
+de
+ni
+de
+ip
+ik
+ol
+pe
+uv
+ru
+ep
+ko
+ep
+ep
+lo
+gi
+uy
+ge
+it
+iz
+am
+ag
+ku
+sa
+is
+ki
+ma
+pa
+om
+xa
+no
+zi
+is
+ri
+ih
+le
+in
+ey
+ox
+wo
+ke
+ax
+ig
+vo
+po
+ub
+ax
+ax
+ip
+ir
+eg
+ze
+be
+ix
+te
+ix
+ur
+un
+az
+ot
+uf
+mu
+un
+ze
+ki
+se
+bi
+iz
+et
+ud
+un
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/train_on_central.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,75 @@
+#!/bin/bash
+# Copyright 2010 Thomas Walters 
+#
+# Generate a list of filenames from the syllables spoke pattern.
+# The first argument is the filname for the training talkers, the second
+# argument is the filename for the testing talkers.
+
+TRAIN_TALKERS=$1
+TEST_TALKERS=$2
+
+# Training talkers are the central talker and the 8 talkers around the
+# central ring closest to the central talker.
+cat <<"EOF" > $TRAIN_TALKERS
+170.9p112.2s
+171.0p112.8s	
+171.3p111.7s	
+171.5p113.1s	
+171.9p111.5s	
+172.1p113.0s	
+172.4p111.9s	
+172.5p112.5s
+171.7p112.3s	
+EOF
+
+# Testing talkers are all other talkers in the spoke pattern.
+cat <<"EOF" > $TEST_TALKERS
+137.0p104.3s	
+141.3p135.4s	
+145.5p106.3s	
+148.8p128.8s	
+151.6p83.9s	
+153.0p108.1s	
+155.5p123.5s	
+156.7p90.6s	
+159.5p109.6s	
+161.1p119.4s	
+161.1p96.8s	
+163.4p157.6s	
+164.7p110.8s	
+164.9p102.1s	
+165.6p144.0s	
+165.7p116.2s	
+167.4p133.5s	
+167.8p106.5s	
+168.6p111.6s	
+168.9p125.4s	
+169.0p114.0s	
+170.0p109.7s	
+170.1p119.5s	
+171.0p115.5s	
+172.4p109.3s	
+173.3p105.6s	
+173.5p115.0s	
+174.5p100.6s	
+174.5p110.6s	
+174.9p113.0s	
+175.7p118.5s	
+176.1p94.5s	
+178.0p108.5s	
+178.1p87.6s	
+178.8p123.6s	
+179.0p113.9s	
+180.4p80.1s	
+183.0p105.7s	
+183.0p130.4s	
+184.8p115.1s	
+188.1p139.2s	
+189.6p102.1s	
+192.7p116.7s	
+194.5p150.4s	
+198.1p97.9s	
+202.7p118.6s	
+208.6p93.2s	
+215.2p121.0s
+EOF
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/cnbh-syllables/run_training_and_testing/train_test_sets/train_on_extrema.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,76 @@
+#!/bin/bash
+# Copyright 2010 Thomas Walters 
+#
+# Generate a list of filenames from the syllables spoke pattern.
+# The first argument is the filname for the training talkers, the second
+# argument is the filename for the testing talkers.
+
+TRAIN_TALKERS=$1
+TEST_TALKERS=$2
+
+# Training talkers are the 8 talkers around the furthest out ring from the
+# centre
+cat <<"EOF" > $TRAIN_TALKERS
+137.0p104.3s
+151.6p83.9s
+180.4p80.1s
+208.6p93.2s
+215.2p121.0s
+194.5p150.4s
+163.4p157.6s
+141.3p135.4s
+EOF
+
+# Testing talkers are all other talkers in the spoke pattern, including the
+# central talker.
+cat <<"EOF" > $TEST_TALKERS
+145.5p106.3s
+156.7p90.6s
+178.1p87.6s
+198.1p97.9s
+202.7p118.6s
+188.1p139.2s
+165.6p144.0s
+148.8p128.8s
+153.0p108.1s
+161.1p96.8s
+176.1p94.5s
+189.6p102.1s
+192.7p116.7s
+183.0p130.4s
+167.4p133.5s
+155.5p123.5s
+159.5p109.6s
+164.9p102.1s
+174.5p100.6s
+183.0p105.7s
+184.8p115.1s
+178.8p123.6s
+168.9p125.4s
+161.1p119.4s
+164.7p110.8s
+167.8p106.5s
+173.3p105.6s
+178.0p108.5s
+179.0p113.9s
+175.7p118.5s
+170.1p119.5s
+165.7p116.2s
+168.6p111.6s
+170.0p109.7s
+172.4p109.3s
+174.5p110.6s
+174.9p113.0s
+173.5p115.0s
+171.0p115.5s
+169.0p114.0s
+170.9p112.2s
+171.3p111.7s
+171.9p111.5s
+172.4p111.9s
+172.5p112.5s
+172.1p113.0s
+171.5p113.1s
+171.0p112.8s
+171.7p112.3s
+EOF
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/master.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,95 @@
+#!/bin/bash
+# Copyright 2010 Thomas Walters <tom@acousticscale.org>
+#
+# Run a series of experiments which compare MFCC features generated by HTK to
+# AIM features generated using AIM-C using a series of syllable recogntiton
+# tasks.
+# This script expects the HTK binaries and AIM-C AIMCopy binary to be present
+# in the PATH.
+
+# Set these to be the location of your input database, and desired output
+# locations.
+SYLLABLES_DATABASE_TAR=/media/sounds/cnbh-syllables.tar
+SOUNDS_ROOT=/mnt/experiments/sounds/
+FEATURES_ROOT=/mnt/experiments/features/
+HMMS_ROOT=/mnt/experiments/hmms/
+
+# Number of cores on the experimental machine. Various scripts will try to use
+# this if it's set.
+NUMBER_OF_CORES=2
+
+# Fail if any command fails
+set -e
+
+# Fail if any variable is unset
+set -u
+
+if [ ! -d $SOUNDS_ROOT ]; then
+  mkdir -p $SOUNDS_ROOT
+fi
+
+# Untar the CNBH syllables database, and convert the files from FLAC to WAV
+if [ ! -e $SOUNDS_ROOT/.untar_db_success ]; then
+  tar -x -C $SOUNDS_ROOT -f $SYLLABLES_DATABASE_TAR
+  touch $SOUNDS_ROOT/.untar_db_success
+fi
+
+# Convert the database to .WAV format and place it in $SOUNDS_ROOT/clean
+./cnbh-syllables/convert_flac_to_wave.sh $SOUNDS_ROOT
+
+# Generate versions of the CNBH syllables spoke pattern with a range of
+# signal-to-noise ratios (SNRs). The versions are put in the directory
+# ${SOUNDS_ROOT}/${SNR}_dB/ for each SNR in $SNRS.
+SNRS="30 27 24 21 18 15 12 9 6 3 0"
+./cnbh-syllables/pink_noise.sh $SOUNDS_ROOT/clean/ $SNRS
+
+# Make the list of all feature drectories
+FEATURE_DIRS="clean"
+for SNR in $SNRS; do
+  FEATURE_DIRS="$FEATURE_DIRS snr_${SNR}dB"
+done
+
+# Generate feature sets (for the full range of SNRs in $FEATURE_DIRS)
+# 1. Standard MFCC features
+# 2. AIM features
+# 3. MFCC features with optimal VTLN 
+for SOURCE_SNR in $FEATURE_DIRS; do
+  
+  if [ ! -e $FEATURES_ROOT/mfcc/$SOURCE_SNR/.make_mfcc_features_success]
+  then
+    mkdir -p $FEATURES_ROOT/mfcc/$SOURCE_SNR/
+    # Generate the list of files to convert
+    ./cnbh-syllables/feature_generation/gen_hcopy_aimcopy_script.sh $FEATURES_ROOT/mfcc/$SOURCE_SNR/ $SOUNDS_ROOT/$SOURCE_SNR/
+    # Run the conversion
+    ./cnbh-syllables/feature_generation/run_hcopy.sh $FEATURES_ROOT/mfcc/$SOURCE_SNR/ $NUMBER_OF_CORES
+    touch $FEATURES_ROOT/mfcc/$SOURCE_SNR/.make_mfcc_features_success
+  done
+
+  if [ ! -e $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/.make_mfcc_vtln_features_success]
+  then
+    mkdir -p $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/
+    # Generate the file list and run the conversion (all one step, since this
+    # version uses a different configuraiton for each talker)
+    ./cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/ $SOUNDS_ROOT/$SOURCE_SNR/
+    touch $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/.make_mfcc_vtln_features_success
+  done
+
+  if [ ! -e $FEATURES_ROOT/aim/$SOURCE_SNR/.make_aim_features_success]
+  then
+    mkdir -p $FEATURES_ROOT/aim/$SOURCE_SNR/ 
+    ./cnbh-syllables/feature_generation/gen_hcopy_aimcopy_script.sh $FEATURES_ROOT/aim/$SOURCE_SNR/ $SOUNDS_ROOT/$SOURCE_SNR/
+    # Run the conversion
+    ./cnbh-syllables/feature_generation/run_aimcopy.sh $FEATURES_ROOT/aim/$SOURCE_SNR/ $NUMBER_OF_CORES
+    touch $FEATURES_ROOT/aim/$SOURCE_SNR/.make_aim_features_success
+  done
+done 
+
+# Now run a bunch of experiments.
+# For each of the feature types, we want to run HMMs with a bunch of
+# parameters.
+TRAINING_ITERATIONS="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20"
+TESTING_ITERATIONS="1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20"
+HMM_STATES="3 4 5 6 7 8"
+HMM_OUTPUT_COMPONENTS=""
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/experiments/scripts/setup_aws_instance.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -0,0 +1,4 @@
+#!/bin/bash
+# Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone 
+sudo apt-get -y update
+sudo apt-get -y install subversion scons pkg-config libsndfile-dev build-essential libboost-dev libc6-dev-i386 python