├── DEVELOPER_NOTES.txt ├── README ├── VoxForgeDict ├── acoustic_model_files ├── LICENSE ├── hmmdefs ├── macros └── tiedlist ├── api.py ├── camera_stream.sh ├── config.ini ├── dict ├── dict.gz ├── dictionaries-1.tar.gz ├── dictionaries.tar.gz ├── dictionaries ├── adjective ├── adverb ├── adverb-comparative ├── adverb-superlative ├── comparative ├── conjunction ├── determiner ├── existential ├── foreign-word ├── interjection ├── list-item-marker ├── modal-auxiliary ├── noun-common-plural ├── noun-common-singular-or-mass ├── noun-proper-plural ├── noun-proper-singular ├── numeral ├── particle ├── possessive ├── pre-determiner ├── preposition ├── pronoun ├── superlative ├── to ├── verb-base-form ├── verb-past-participle ├── verb-past-tense ├── verb-present-participle ├── verb-present-tense-3rd-person-singular ├── verb-present-tense-not-3rd-person-singular ├── wh-adverb ├── wh-determiner ├── wh-pronoun └── wh-pronoun-possessive ├── getcommand.py ├── julian.jconf ├── meanings ├── run_kodi.sh ├── sample.dfa ├── sample.dict ├── sample.grammar ├── sample.term └── sample.voca /DEVELOPER_NOTES.txt: -------------------------------------------------------------------------------- 1 | sudo apt-get install julius 2 | 3 | sudo apt-get install festival 4 | sudo apt-get install festflex-cmu 5 | cd /usr/share/festival/voices/english/ 6 | sudo wget -c http://www.speech.cs.cmu.edu/cmu_arctic/packed/cmu_us_clb_arctic-0.95-release.tar.bz2 7 | sudo tar jxf cmu_us_clb_arctic-0.95-release.tar.bz2 8 | sudo ln -s cmu_us_clb_arctic cmu_us_clb_arctic_clunits 9 | sudo cp /etc/festival.scm /etc/festival.scm.backup 10 | sudo echo "(set! voice_default 'voice_cmu_us_clb_arctic_clunits)" >> /etc/festival.scm 11 | 12 | sudo apt-get install python-pip 13 | sudo pip install wikipedia 14 | sudo pip install PyUserInput 15 | sudo apt-get install python-xlib 16 | 17 | sudo apt-get install kodi 18 | sudo apt-get install xbmc-eventclients-xbmc-send 19 | #kodi --version 20 | #14.2 Git:7cc53a9 Media Center Kodi 21 | #Copyright (C) 2005-2013 Team Kodi - http://kodi.tv 22 | 23 | #Camera Stream: 24 | sudo apt-get install vlc-nox 25 | 26 | #Rendering a webpage and converting(First pdf second jpg): 27 | sudo apt-get install wkhtmltopdf 28 | sudo apt-get install imagemagick 29 | 30 | #For compiling .grammer and .voca files , it will generate .dict and .dfa files: 31 | mkdfa sample 32 | 33 | padsp julius -input mic -C julian.jconf | ./getcommand.py 34 | 35 | #April 21, 2015: I realised YouTube API v2 was deprecated. 36 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Example Grammar for Julius 2 | --------------------------------- 3 | 4 | In order to use VoxForge's acoustic models with Julius, you have to tell it 5 | what words you want it to recognize and it what context each of those can 6 | be found. You can do this by writting two files, a .grammar and a .term one, 7 | and generating .dfa and .dict files out of those. This file will explain you 8 | briefly how to achieve this. 9 | 10 | == QUICK START == 11 | 12 | First, copy the example files to a directory where you can write, like your 13 | home folder, and uncompress the gziped files: 14 | 15 | mkdir ~/julius-grammar 16 | cp /usr/share/doc/julius-voxforge/examples/* ~/julius-grammar 17 | cd ~/julius-grammar 18 | gunzip * 2>&1 | grep -v ignored 19 | 20 | Now let's run the following command (available from package "julius"): 21 | 22 | mkdfa sample 23 | 24 | This will generate the files "sample.dfa", "sample.dict" and "sample.term" out 25 | of the "sample.grammar" and "sample.voca" files. Once we have those, we can run 26 | Julius with the following command to try the example grammar out: 27 | 28 | julius -input mic -C julian.jconf 29 | 30 | Note that only some sentences are recognized, like for example "DIAL ONE TWO" 31 | or "PHONE STEVE". See the next part to learn how to add more words. 32 | 33 | In case your recognition rate is near zero, try replacing "mic" in the 34 | command above with "oss", "alsa" or "esd". 35 | 36 | == CREATING OUR OWN GRAMMAR == 37 | 38 | Now open up the files "sample.voca" and "sample.grammar" and have a look at 39 | them. The first one defines some categories (lines starting with "%") and lists 40 | some words, together with their phonetic representation. The .grammar file, 41 | which may look a bit more confusing, defines the context in which each word 42 | category can appear. 43 | 44 | Feel free to add new words to the existing categories in sample.voca or even 45 | create new ones (adding at least one rule mentioning them to sample.grammar), 46 | but don't forget to write their phonetic representation next to them. You can 47 | get a list of English words and their corresponding phonetic representation 48 | from ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/dictionaries/beep.tar.gz. 49 | 50 | About the .grammar file, you need to understand that the lines starting with 51 | "S :" are those which define the possible sentences and that they are formed 52 | by one or more category or variables names, between "NS_B " and " NS_E" (which 53 | most be defined in sample.voca and represent the silence at the end and at the 54 | start of the sentence). Variables, like we called them previously, are just 55 | another line in the .grammar file which list a sequence of categories or 56 | other variables, and, as you see in the sample file, they can have many 57 | different definitions. 58 | 59 | Once you finish playing with the files, you can generate their equivalents in 60 | Julian's native format again, by running the same command as in the quick start: 61 | 62 | mkdfa sample 63 | 64 | Then, run julius as showed above and if everything is right it should recognize 65 | your new vocabulary now. In the case you get an error about missing phonemes, 66 | you'll have to remove the words about which it complains, as the available 67 | acoustic models don't support them. 68 | 69 | == PRACTICAL UTILITY == 70 | 71 | As you will probably notice, the VoxForge acoustic model is still far away from 72 | being suitable for dictation applications and the like, so its utility right 73 | now is basically restricted to "command and control" applications. For an 74 | example of how to write a simple one in Python, look at the file command.py 75 | in /usr/share/doc/julius-voxforge/examples/controlapp/. 76 | 77 | == CONTRIBUTE == 78 | 79 | If you want to help contributing speech corpora for your language, see the 80 | project's main page at http://www.voxforge.org/. 81 | 82 | -- Siegfried-A. Gevatter . 19/06/2009 83 | -------------------------------------------------------------------------------- /acoustic_model_files/LICENSE: -------------------------------------------------------------------------------- 1 | License: 2 | 3 | Copyright (C) 2006-2011 MacLean 4 | 5 | These files are free software; you can redistribute them and/or 6 | modify them under the terms of the GNU General Public License 7 | as published by the Free Software Foundation; either version 2 8 | of the License, or (at your option) any later version. 9 | 10 | These files are distributed in the hope that they will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | -------------------------------------------------------------------------------- /acoustic_model_files/macros: -------------------------------------------------------------------------------- 1 | ~o 2 | 1 25 3 | 25 4 | ~v "varFloor1" 5 | 25 6 | 9.307868e-01 5.385545e-01 7.424478e-01 7.377487e-01 6.968985e-01 6.063431e-01 6.213419e-01 5.895683e-01 5.111430e-01 4.341753e-01 3.562474e-01 3.377892e-01 4.580524e-02 3.394542e-02 3.346715e-02 4.325148e-02 4.172141e-02 3.799692e-02 4.000035e-02 4.166449e-02 3.664051e-02 3.150772e-02 2.806384e-02 2.477897e-02 4.954330e-02 7 | -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import subprocess 3 | import time 4 | import os 5 | 6 | songRunning = False 7 | class Data: 8 | def __init__(self, com="", msg="", sp="False"): 9 | self.command = com 10 | self.message = msg 11 | self.speak = sp 12 | def interact(self,duration): 13 | #subprocess.Popen(["notify-send","Dragonfire", self.message]) 14 | os.system("xbmc-send --action=\"Notification(\"Dragonfire\"," + self.message + ")\"") 15 | if self.command != "": 16 | time.sleep(duration) 17 | subprocess.Popen(self.command,stdout=subprocess.PIPE) 18 | #if self.speak == True: 19 | # self.say(self.message) 20 | #else: 21 | def say(self,message): 22 | #if songRunning == True: 23 | # subprocess.Popen(["rhythmbox-client","--pause"]) 24 | proc = subprocess.Popen(["festival","--tts"],stdin=subprocess.PIPE) 25 | proc.stdin.write(message) 26 | proc.stdin.close() 27 | #proc.wait() 28 | #if songRunning == True: 29 | # subprocess.Popen(["rhythmbox-client","--play"]) 30 | def espeak(self,message): 31 | subprocess.Popen(["espeak","-v","en-uk-north",message]) 32 | -------------------------------------------------------------------------------- /camera_stream.sh: -------------------------------------------------------------------------------- 1 | #sudo apt-get install vlc-nox 2 | 3 | cvlc v4l2:// :v4l-vdev="/dev/video0" :v4l-adev="/dev/audio2" :v4l-norm=3 :v4l-frequency=-1 :v4l-caching=300 :v4l-chroma="" :v4l-fps=-1.000000 :v4l-samplerate=44100 :v4l-channel=0 :v4l-tuner=-1 :v4l-audio=-1 :v4l-stereo :v4l-width=640 :v4l-height=480 :v4l-brightness=-1 :v4l-colour=-1 :v4l-hue=-1 :v4l-contrast=-1 :no-v4l-mjpeg :v4l-decimation=1 :v4l-quality=100 --sout "#transcode{vcodec=mp1v,vb=1024,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file,mux=mpeg1,dst=/tmp/test.mpg}}" & 4 | -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [BasicUserData] 2 | prefix = Sir 3 | age = 18 4 | single = True 5 | 6 | -------------------------------------------------------------------------------- /dict.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Dragonfire-RaspberryPi/633c1860623ee2ca85881247a76cd35aad120ee8/dict.gz -------------------------------------------------------------------------------- /dictionaries-1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Dragonfire-RaspberryPi/633c1860623ee2ca85881247a76cd35aad120ee8/dictionaries-1.tar.gz -------------------------------------------------------------------------------- /dictionaries.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Dragonfire-RaspberryPi/633c1860623ee2ca85881247a76cd35aad120ee8/dictionaries.tar.gz -------------------------------------------------------------------------------- /dictionaries/adverb: -------------------------------------------------------------------------------- 1 | ABNORMALLY ae b n ao r m ax l iy 2 | ABROAD ax b r ao d 3 | ABRUPTLY ax b r ah p t l iy 4 | ABSENTLY ae b s ax n t l iy 5 | ABSOLUTELY ae b s ax l uw t l iy 6 | ABSURDLY ax b s er d l iy 7 | ABUNDANTLY ax b ah n d ax n t l iy 8 | ACCORDINGLY ax k ao r dx ix ng l iy 9 | ACCURATELY ae k y er ax t l iy 10 | ACTUALLY ae k ch ax w ax l iy 11 | ADEQUATELY ae dx ax k w ax t l iy 12 | ADMIRABLY ae d m er ax b l iy 13 | ADVISEDLY ae d v ay z ax d l iy 14 | AFOOT ax f uh t 15 | AFTERWARD ae f t er w er d 16 | AFTERWARDS ae f t er w er d z 17 | AGAIN ax g eh n 18 | AGO ax g ow 19 | AHEAD ax hh eh d 20 | AIMLESSLY ey m l ax s l iy 21 | ALIKE ax l ay k 22 | ALMOST ao l m ow s t 23 | ALOFT ax l ao f t 24 | ALONE ax l ow n 25 | ALOUD ax l aw d 26 | ALREADY ao l r eh dx iy 27 | ALSO ao l s ow 28 | ALTOGETHER ao l t ax g eh dh er 29 | ALWAYS ao l w ey z 30 | AMAZINGLY ax m ey z ix ng l iy 31 | ANCIENTLY ey n ch ax n t l iy 32 | ANEW ax n uw 33 | ANGRILY ae ng g r ax l iy 34 | ANNUALLY ae n y uw ax l iy 35 | ANYMORE eh n iy m ao r 36 | ANYTIME eh n iy t ay m 37 | ANYWAY eh n iy w ey 38 | ANYWHERE eh n iy w eh r 39 | APART ax p aa r t 40 | APPARENTLY ax p eh r ax n t l iy 41 | APTLY ae p t l iy 42 | ARBITRARILY aa r b ix t r eh r ax l iy 43 | ARTIFICIALLY aa r dx ax f ih sh ax l iy 44 | ARTISTICALLY aa r t ih s t ix k l iy 45 | ASHORE ax sh ao r 46 | ASIDE ax s ay d 47 | ASLEEP ax s l iy p 48 | ASSUREDLY ax sh uh r ax d l iy 49 | ATTENTIVELY ax t eh n t ix v l iy 50 | AUTOMATICALLY ao dx ax m ae dx ix k l iy 51 | AWAKE ax w ey k 52 | AWAY ax w ey 53 | AWFULLY aa f l iy 54 | AWHILE ax w ay l 55 | BACK b ae k 56 | BACKWARDS b ae k w er d z 57 | BADLY b ae d l iy 58 | BARELY b eh r l iy 59 | BEAUTIFULLY b y uw dx ax f l iy 60 | BLANDLY b l ae n d l iy 61 | BREATHLESSLY b r eh th l ax s l iy 62 | BRIEFLY b r iy f l iy 63 | BRILLIANTLY b r ih l y ax n t l iy 64 | BROADLY b r ao d l iy 65 | BUSILY b ih z ax l iy 66 | CALMLY k aa m l iy 67 | CAPITALLY k ae p ix dx ax l iy 68 | CAREFULLY k eh r f ax l iy 69 | CAUTIOUSLY k ao sh ax s l iy 70 | CERTAINLY s er t ax n l iy 71 | CHARMINGLY ch aa r m ix ng l iy 72 | CHEMICALLY k eh m ax k l iy 73 | CHIEFLY ch iy f l iy 74 | CHRONICALLY k r aa n ix k ax l iy 75 | CLEARLY k l ih r l iy 76 | CLEVERLY k l eh v er l iy 77 | CLOSE k l ow s 78 | CLOSELY k l ow s l iy 79 | COARSELY k ao r s l iy 80 | COMFORTABLY k ah m f er dx ax b l iy 81 | COMMONLY k aa m ax n l iy 82 | COMPARATIVELY k ax m p eh r ax dx ix v l iy 83 | COMPLETELY k ax m p l iy t l iy 84 | COMPOSEDLY k ax m p ow z ax d l iy 85 | CONCEIVABLY k ax n s iy v ax b l iy 86 | CONCLUSIVELY k ax n k l uw s ix v l iy 87 | CONFIDENTLY k aa n f ax d ax n t l iy 88 | CONSCIENTIOUSLY k aa n ch iy eh n ch ax s l iy 89 | CONSEQUENTLY k aa n s ax k w ax n t l iy 90 | CONSIDERABLY k ax n s ih dx er ax b l iy 91 | CONSTANTLY k aa n s t ax n t l iy 92 | CONSTITUTIONALLY k aa n s t ax t uw sh ax n ax l iy 93 | CONTINUALLY k ax n t ih n y uw ax l iy 94 | CONVENIENTLY k ax n v iy n y ax n t l iy 95 | CORRECTLY k er eh k t l iy 96 | CORRESPONDINGLY k ao r ax s p aa n d ix ng l iy 97 | COUNTER k aw n t er 98 | CUNNINGLY k ah n ih ng l iy 99 | CURIOUSLY k y uh r iy ax s l iy 100 | CURRENTLY k er ax n t l iy 101 | DARKLY d aa r k l iy 102 | DARNED d aa r n d 103 | DEAR d ih r 104 | DEARLY d ih r l iy 105 | DEEPLY d iy p l iy 106 | DEFINITELY d eh f ax n ax t l iy 107 | DELIBERATELY d ix l ih b er ax t l iy 108 | DELICATELY d eh l ax k ax t l iy 109 | DELICIOUSLY d ix l ih sh ax sh l iy 110 | DENSELY d eh n s l iy 111 | DESPONDENTLY d ix s p aa n d ax n t l iy 112 | DEXTEROUSLY d eh k s t r ax s l iy 113 | DIFFERENTLY d ih f r ax n t l iy 114 | DIGITALLY d ih jh ax dx ax l iy 115 | DIRECTLY d er eh k t l iy 116 | DISCREETLY d ix s k r iy t l iy 117 | DISCRIMINATINGLY d ix s k r ih m ax n ey dx ix ng l iy 118 | DISTINCTLY d ix s t ih ng k t l iy 119 | DOUBLE d ah b ax l 120 | DOUBLY d ah b l iy 121 | DOWN d aw n 122 | DRAMATICALLY d r ax m ae dx ix k l iy 123 | EAGERLY iy g er l iy 124 | EARNESTLY er n ax s t l iy 125 | EASILY iy z ax l iy 126 | EASTWARD iy s t w er d 127 | ECSTATICALLY eh k s t ae dx ix k l iy 128 | EFFECTIVELY ix f eh k t ix v l iy 129 | EFFICIENTLY ix f ih sh ax n t l iy 130 | ELABORATELY ix l ae b r ax t l iy 131 | ELSE eh l s 132 | ELSE'S eh l s ix z 133 | ELSEWHERE eh l s w eh r 134 | EMBRACINGLY eh m b r ey s ix ng l iy 135 | EMINENTLY eh m ax n ax n t l iy 136 | ENDURINGLY eh n d y uh r ix ng l iy 137 | ENOUGH ix n ah f 138 | ENTIRELY ix n t ay er l iy 139 | EQUALLY iy k w ax l iy 140 | ESPECIALLY ax s p eh sh l iy 141 | ESSENTIALLY ix s eh n sh ax l iy 142 | ETHICALLY eh th ix k ax l iy 143 | EVEN iy v ix n 144 | EVENLY iy v ax n l iy 145 | EVENTUALLY ix v eh n ch ax w ax l iy 146 | EVER eh v er 147 | EVERLASTINGLY eh v er l ae s t ix ng l iy 148 | EVERYWHERE eh v r iy w eh r 149 | EVIDENTLY eh v ax d ax n t l iy 150 | EXACTLY ix g z ae k t l iy 151 | EXCEEDINGLY ix k s iy dx ix ng l iy 152 | EXCEPTIONALLY ix k s eh p sh ax n ax l iy 153 | EXCESSIVELY ix k s eh s ix v l iy 154 | EXCLUSIVELY ix k s k l uw s ix v l iy 155 | EXPERIMENTALLY ix k s p eh r ax m eh n t ax l iy 156 | EXPLICITLY ix k s p l ih s ax t l iy 157 | EXPRESSLY eh k s p r eh s l iy 158 | EXQUISITELY eh k s k w ih z ix t l iy 159 | EXTENSIVELY ix k s t eh n s ix v l iy 160 | EXTRAORDINARILY ix k s t r ao r d ax n eh r ax l iy 161 | EXTREMELY ix k s t r iy m l iy 162 | FAINTLY f ey n t l iy 163 | FAIRLY f eh r l iy 164 | FAITHFULLY f ey th f ax l iy 165 | FAR f aa r 166 | FARTHER f aa r dh er 167 | FAST f ae s t 168 | FAVORABLY f ey v er ax b l iy 169 | FINALLY f ay n ax l iy 170 | FINELY f ay n l iy 171 | FIRMLY f er m l iy 172 | FIRSTLY f er s t l iy 173 | FITTINGLY f ih dx ix ng l iy 174 | FORCIBLY f ao r s ax b l iy 175 | FOREMOST f ao r m ow s t 176 | FOREVER f er eh v er 177 | FORMERLY f ao r m er l iy 178 | FORTH f ao r th 179 | FORTUNATELY f ao r ch ax n ax t l iy 180 | FORWARD f ao r w er d 181 | FORWARDS f ao r w er d z 182 | FRANTICALLY f r ae n t ax k ax l iy 183 | FREELY f r iy l iy 184 | FREQUENTLY f r iy k w ax n t l iy 185 | FRESHLY f r eh sh l iy 186 | FULLY f uh l iy 187 | FUNDAMENTALLY f ah n d ax m eh n t ax l iy 188 | GENERALLY jh eh n er ax l iy 189 | GENEROUSLY jh eh n er ax s l iy 190 | GENTLY jh eh n t l iy 191 | GEOMETRICALLY jh iy ax m eh t r ix k l iy 192 | GINGERLY jh ih n jh er l iy 193 | GLADLY g l ae d l iy 194 | GLORIOUSLY g l ao r iy ax s l iy 195 | GRACEFULLY g r ey s f ax l iy 196 | GRADUALLY g r ae jh uw ax l iy 197 | GRATUITOUSLY g r ax t uw ax dx ax s l iy 198 | GRAVELY g r ey v l iy 199 | GREATLY g r ey t l iy 200 | GREEDILY g r iy dx ax l iy 201 | GRIMLY g r ih m l iy 202 | HABITUALLY hh ax b ih ch uw ax l iy 203 | HANDSOMELY hh ae n s ax m l iy 204 | HAPPILY hh ae p ax l iy 205 | HARDLY hh aa r d l iy 206 | HASTILY hh ey s t ax l iy 207 | HEADLONG hh eh d l ao ng 208 | HEAVENLY hh eh v ax n l iy 209 | HEAVILY hh eh v ax l iy 210 | HELPLESSLY hh eh l p l ax s l iy 211 | HENCE hh eh n s 212 | HERE hh ih r 213 | HERE'S hh ih r z 214 | HEREAFTER hh ix r ae f t er 215 | HIDEOUSLY hh ih dx iy ax s l iy 216 | HIGHLY hh ay l iy 217 | HISTORICALLY hh ix s t ao r ix k ax l iy 218 | HITHER hh ih dh er 219 | HONOURABLY aa n er ax b l iy 220 | HOPEFULLY hh ow p f ax l iy 221 | HOPELESSLY hh ow p l ax s l iy 222 | HORIZONTALLY hh ao r ix z aa n t ax l iy 223 | HORRIBLY hh ao r ax b l iy 224 | HOSPITABLY hh aa s p ih dx ax b l iy 225 | HOTLY hh aa t l iy 226 | HOWEVER hh aw eh v er 227 | HURRIEDLY hh er iy d l iy 228 | IDEALLY ay d iy l iy 229 | IGNORANTLY ih g n er ax n t l iy 230 | ILLEGALLY ix l iy g ax l iy 231 | IMAGINABLY ix m ae jh ax n ax b l iy 232 | IMMEDIATELY ix m iy dx iy ax t l iy 233 | IMMENSELY ix m eh n s l iy 234 | IMPERFECTLY ix m p er f ix k t l iy 235 | IMPERIOUSLY ix m p ih r iy ax s l iy 236 | IMPRESSIVELY ix m p r eh s ix v l iy 237 | INCIDENTALLY ih n s ix d eh n t ax l iy 238 | INCREDIBLY ix n k r eh dx ax b l iy 239 | INDEED ix n d iy d 240 | INDEFINITELY ix n d eh f ax n ax t l iy 241 | INDIFFERENTLY ix n d ih f r ax n t l iy 242 | INDIRECTLY ix n d er eh k t l iy 243 | INDISCRIMINATELY ih n d ix s k r ih m ax n ax t l iy 244 | INDIVIDUALLY ih n d ix v ih jh uw ax l iy 245 | INDUBITABLY ix n d uw b ih dx ax b l iy 246 | INEVITABLY ix n eh v ax dx ax b l iy 247 | INFALLIBLY ih n f ae l ax b l iy 248 | INFINITELY ih n f ax n ax t l iy 249 | INFINITESIMALLY ih n f ix n ix t eh s ix m ax l iy 250 | INGENIOUSLY ix n jh iy n y ax s l iy 251 | INSEPARABLY ix n s eh p er ax b l iy 252 | INSINUATINGLY ix n s ih n y uw ey dx ix ng l iy 253 | INSTANTLY ih n s t ax n t l iy 254 | INSTEAD ix n s t eh d 255 | INTENTIONALLY ix n t eh n sh ax n ax l iy 256 | INTIMATELY ih n t ax m ax t l iy 257 | INTRINSICALLY ix n t r ih n s ix k ax l iy 258 | INVARIABLY ix n v eh r iy ax b l iy 259 | INVERSELY ix n v er s l iy 260 | INVITINGLY ih n v ay dx ih ng l iy 261 | INVOLUNTARILY ih n v ow l ah n t er ih l iy 262 | INWARD ih n w er d 263 | INWARDLY ih n w er d l iy 264 | IRREPRESSIBLY ix r ax p r eh s ax b l iy 265 | IRRESPONSIBLY ix r ax s p aa n s ax b l iy 266 | JEERINGLY jh ih r ix ng l iy 267 | JUDGMATICALLY jh ah jh m ae dx ix k l iy 268 | JUDICIOUSLY jh uw d ih sh ix s l iy 269 | JUST jh ah s t 270 | KEENLY k iy n l iy 271 | KINDLY k ay n d l iy 272 | KINGLY k ih ng l iy 273 | LABORIOUSLY l ax b ao r iy ax s l iy 274 | LARGELY l aa r jh l iy 275 | LASTLY l ae s t l iy 276 | LATE l ey t 277 | LATELY l ey t l iy 278 | LATER l ey dx er 279 | LAVISHLY l ae v ix sh l iy 280 | LIGHTLY l ay t l iy 281 | LIKEWISE l ay k w ay z 282 | LITERALLY l ih dx er ax l iy 283 | LOGICALLY l aa jh ix k l iy 284 | LONG l ao ng 285 | LONGER l ao ng g er 286 | LOOSELY l uw s l iy 287 | LOUDLY l aw d l iy 288 | LOW l ow 289 | LUSTILY l ah s t ax l iy 290 | MADLY m ae d l iy 291 | MAINLY m ey n l iy 292 | MANIFESTLY m ae n ax f eh s t l iy 293 | MARVELLOUSLY m aa r v ax l ax s l iy 294 | MAYBE m ey b iy 295 | MEANWHILE m iy n w ay l 296 | MECHANICALLY m ax k ae n ix k l iy 297 | MERCIFULLY m er s ix f ax l iy 298 | MERELY m ih r l iy 299 | MERRILY m eh r ax l iy 300 | METHODICALLY m ax th aa dx ix k ax l iy 301 | METICULOUSLY m ax t ih k y ax l ax s l iy 302 | MIGHTY m ay dx iy 303 | MINUTELY m ih n ax t l iy 304 | MISERABLY m ih z er ax b l iy 305 | MODERATELY m aa dx er ax t l iy 306 | MOMENTARILY m ow m ax n t eh r ax l iy 307 | MOREOVER m ao r ow v er 308 | MOSTLY m ow s t l iy 309 | MUCH m ah ch 310 | NAMELY n ey m l iy 311 | NATURALLY n ae ch er ax l iy 312 | NEARBY n ih r b ay 313 | NEARLY n ih r l iy 314 | NECESSARILY n eh s ax s eh r ax l iy 315 | NERVOUSLY n er v ax s l iy 316 | NEVER n eh v er 317 | NEVERTHELESS n eh v er dh ax l eh s 318 | NICELY n ay s l iy 319 | NO n ow 320 | NORMALLY n ao r m ax l iy 321 | NORTHWARD n ao r th w er d 322 | NORTHWEST n ao r th w eh s t 323 | NOT n aa t 324 | NOW n aw 325 | NOWADAYS n aw ax d ey z 326 | NOWHERE n ow w eh r 327 | O'CLOCK ax k l aa k 328 | OBEDIENTLY ow b iy dx iy ax n t l iy 329 | OBVIOUSLY aa b v iy ax s l iy 330 | OCCASIONALLY ax k ey zh ax n ax l iy 331 | ODDLY aa d l iy 332 | OFFICIALLY ax f ih sh ax l iy 333 | OFTEN ao f ax n 334 | ONCE w ah n s 335 | ONLY ow n l iy 336 | ORDINARILY ao r d ax n eh r ax l iy 337 | ORIGINALLY er ih jh ax n ax l iy 338 | OTHERWISE ah dh er w ay z 339 | OUTWARD aw t w er d 340 | OUTWARDLY aw t w er d l iy 341 | PARTICULARLY p aa r t ih k y ax l er l iy 342 | PARTLY p aa r t l iy 343 | PASSIONATELY p ae sh ax n ax t l iy 344 | PATIENTLY p ey sh ax n t l iy 345 | PEACEFULLY p iy s f ax l iy 346 | PECULIARLY p ix k y uw l y er l iy 347 | PERFECTLY p er f ax k t l iy 348 | PERHAPS p er hh ae p s 349 | PERMANENTLY p er m ax n ax n t l iy 350 | PERPENDICULARLY p er p ax n d ih k y ax l er l iy 351 | PERPETUALLY p er p eh ch uw ax l iy 352 | PERSISTENTLY p er s ih s t ax n t l iy 353 | PERSONALLY p er s ax n ax l iy 354 | PHYSICALLY f ih z ix k ax l iy 355 | PICTURESQUELY p ih k ch er ax s k l iy 356 | PIECEMEAL p iy s m iy l 357 | PLAINLY p l ey n l iy 358 | PLEASANTLY p l eh z ax n t l iy 359 | PLENTY p l eh n t iy 360 | POLITELY p ax l ay t l iy 361 | PORTLY p ao r t l iy 362 | POSITIVELY p aa z ax dx ix v l iy 363 | POSSIBLY p aa s ax b l iy 364 | POTENTIALLY p ax t eh n sh ax l iy 365 | PRACTICALLY p r ae k t ax k l iy 366 | PRECISELY p r ix s ay s l iy 367 | PRESENTLY p r eh z ax n t l iy 368 | PRESUMABLY p r ax z uw m ax b l iy 369 | PRETTY p r ih dx iy 370 | PREVIOUSLY p r iy v iy ax s l iy 371 | PRIMARILY p r ay m eh r ax l iy 372 | PRINCIPALLY p r ih n s ix p l iy 373 | PRIOR p r ay er 374 | PROBABLY p r aa b ax b l iy 375 | PROFITABLY p r aa f ax dx ax b l iy 376 | PROFOUNDLY p r ow f aw n d l iy 377 | PROMISINGLY p r aa m ax z ix ng l iy 378 | PROMPTLY p r aa m p t l iy 379 | PROPERLY p r aa p er l iy 380 | PROPORTIONALLY p r ax p ao r sh ax n ax l iy 381 | PROUDLY p r aw d l iy 382 | PRUDENTLY p r uw d ax n t l iy 383 | PURELY p y uh r l iy 384 | QUANTITATIVELY k w aa n t ix t ey dx ax v l iy 385 | QUICKLY k w ih k l iy 386 | QUIETLY k w ay ax t l iy 387 | QUITE k w ay t 388 | RAPIDLY r ae p ax d l iy 389 | RARELY r eh r l iy 390 | RATHER r ae dh er 391 | READILY r eh dx ax l iy 392 | REALLY r ih l iy 393 | REASONABLY r iy z ax n ax b l iy 394 | REBELLIOUSLY r ix b eh l y ax s l iy 395 | RECENTLY r iy s ax n t l iy 396 | REFLECTIVELY r ix f l eh k t ix v l iy 397 | REGULARLY r eh g y ax l er l iy 398 | RELATIVELY r eh l ax dx ix v l iy 399 | RELUCTANTLY r ix l ah k t ax n t l iy 400 | REMARKABLY r ix m aa r k ax b l iy 401 | REPEATEDLY r ix p iy dx ix d l iy 402 | RESPECTABLY r iy s p eh k t ax b l iy 403 | REVERENTIALLY r eh v er eh n ch ax l iy 404 | RICHLY r ih ch l iy 405 | RIGHT r ay t 406 | ROUGHLY r ah f l iy 407 | SADLY s ae d l iy 408 | SAFELY s ey f l iy 409 | SARCASTICALLY s aa r k ae s t ix k l iy 410 | SATISFACTORILY s ae dx ix s f ae k t r ax l iy 411 | SAVAGELY s ae v ix jh l iy 412 | SCARCELY s k eh r s l iy 413 | SCLUSIVELY s k l uw s ix v l iy 414 | SCRUCIATINGLY s k r uw sh iy ey dx ix ng l iy 415 | SECONDARILY s eh k ax n d eh r ax l iy 416 | SECONDLY s eh k ax n d l iy 417 | SECRETLY s iy k r ix t l iy 418 | SECURELY s ix k y uh r l iy 419 | SEEMINGLY s iy m ix ng l iy 420 | SELDOM s eh l d ax m 421 | SEPARATELY s eh p er ax t l iy 422 | SERIOUSLY s ih r iy ax s l iy 423 | SHARPLY sh aa r p l iy 424 | SHIMMERINGLY sh ih m er ix ng l iy 425 | SHORTLY sh ao r t l iy 426 | SHREWDLY sh r uw d l iy 427 | SIDEWAYS s ay d w ey z 428 | SIGNIFICANTLY s ix g n ih f ix k ax n t l iy 429 | SILENTLY s ay l ax n t l iy 430 | SIMPLY s ih m p l iy 431 | SIMULTANEOUSLY s ay m ax l t ey n iy ax s l iy 432 | SINGLY s ih ng g l iy 433 | SINGULARLY s ih ng g y ax l er l iy 434 | SLIGHTLY s l ay t l iy 435 | SLOWLY s l ow l iy 436 | SMACK s m ae k 437 | SMARTLY s m aa r t l iy 438 | SMOOTHLY s m uw dh l iy 439 | SNARLY s n aa r l iy 440 | SO s ow 441 | SOLELY s ow l l iy 442 | SOLEMNLY s ao l ax m l iy 443 | SOLO s ow l ow 444 | SOMEHOW s ah m hh aw 445 | SOMETIME s ah m t ay m 446 | SOMETIMES s ax m t ay m z 447 | SOMEWHAT s ah m w ah t 448 | SOMEWHERE s ah m w eh r 449 | SOON s uw n 450 | SPARSELY s p aa r s l iy 451 | SPECIALLY s p eh sh ax l iy 452 | SPECIFICALLY s p ax s ih f ix k l iy 453 | SPECTRALLY s p eh k t r ax l iy 454 | SPEEDILY s p iy dx ax l iy 455 | SPONTANEOUSLY s p aa n t ey n iy ax s l iy 456 | SQUARELY s k w eh r l iy 457 | STEADILY s t eh dx ax l iy 458 | STERNLY s t er n l iy 459 | STILL s t ih l 460 | STRICTLY s t r ih k t l iy 461 | STRIKINGLY s t r ay k ix ng l iy 462 | STRONGLY s t r ao ng l iy 463 | SUBSEQUENTLY s ah b s ax k w ax n t l iy 464 | SUBSTANTIALLY s ax b s t ae n sh ax l iy 465 | SUCCESSFULLY s ax k s eh s f ax l iy 466 | SUDDENLY s ah d ax n l iy 467 | SUFFICIENTLY s ax f ih sh ax n t l iy 468 | SUITABLY s uw dx ax b l iy 469 | SURELY sh uh r l iy 470 | SUSPICIOUSLY s ax s p ih sh ax s l iy 471 | SWIFTLY s w ih f t l iy 472 | SYMMETRICALLY s ax m eh t r ix k l iy 473 | TEMPORARILY t eh m p er eh r ax l iy 474 | TERRIBLY t eh r ax b l iy 475 | TERSELY t er s l iy 476 | THEN dh eh n 477 | THEORETICALLY th iy er eh dx ix k ax l iy 478 | THEREBY dh eh r b ay 479 | THEREFORE dh eh r f ao r 480 | THEREIN dh eh r ih n 481 | THEREOF th eh r ah v 482 | THIRDLY th er d l iy 483 | THOROUGHLY th er ow l iy 484 | THUS dh ah s 485 | TIDILY t ay dx ax l iy 486 | TIGHTLY t ay t l iy 487 | TOGETHER t ax g eh dh er 488 | TONIGHT t ax n ay t 489 | TOO t uw 490 | TOTALLY t ow dx ax l iy 491 | TRIFLE t r ay f ax l 492 | TRIUMPHANTLY t r ay ah m f ax n t l iy 493 | TRULY t r uw l iy 494 | TWICE t w ay s 495 | TYPICALLY t ih p ix k l iy 496 | ULTIMATELY ah l t ax m ax t l iy 497 | UNANIMOUSLY y uw n ae n ax m ax s l iy 498 | UNCEASINGLY ax n s iy s ix ng l iy 499 | UNCONSCIOUSLY ah n k aa n sh ax s l iy 500 | UNDOUBTEDLY ax n d aw dx ix d l iy 501 | UNFAIRLY ax n f eh r l iy 502 | UNFORTUNATELY ax n f ao r ch ax n ax t l iy 503 | UNFREQUENTLY ax n f r iy k w ax n t l iy 504 | UNIFORMLY y uw n ax f ao r m l iy 505 | UNINTENTIONALLY ah n ix n t eh n sh ax n ax l iy 506 | UNIVERSALLY y uw n ax v er s ax l iy 507 | UNJUSTLY ax n jh ah s t l iy 508 | UNOBTRUSIVELY ah n ax b t r uw s ix v l iy 509 | UNPRODUCTIVELY ah n p r ax d ah k t ix v l iy 510 | UNRESERVEDLY ax n r ix z er v ax d l iy 511 | UNSEASONABLY ax n s iy z ax n ax b l iy 512 | UNSIGHTLY ax n s ay t l iy 513 | UPSIDE ah p s ay d 514 | UPSTAIRS ax p s t eh r z 515 | UPWARD ah p w er d 516 | URGENTLY er jh ax n t l iy 517 | USUALLY y uw zh ax w ax l iy 518 | UTTERLY ah dx er l iy 519 | VAGUELY v ey g l iy 520 | VAINLY v ey n l iy 521 | VALIANTLY v ae l y ax n t l iy 522 | VASTLY v ae s t l iy 523 | VERBALLY v er b ae l iy 524 | VERSA v er s ax 525 | VERY v eh r iy 526 | VIGOROUSLY v ih g er ax s l iy 527 | VIRTUALLY v er ch uw ax l iy 528 | VIVIDLY v ih v ax d l iy 529 | WARMLY w ao r m l iy 530 | WEARILY w eh r ax l iy 531 | WELL w eh l 532 | WEST w eh s t 533 | WESTWARD w eh s t w er d 534 | WHATSOEVER w ah t s ow eh v er 535 | WHOLLY hh ow l iy 536 | WIDELY w ay d l iy 537 | WILDLY w ay l d l iy 538 | WILLINGLY w ih l ix ng l iy 539 | WISELY w ay z l iy 540 | WONDERFULLY w ah n d er f ax l iy 541 | WRONGFULLY r ao ng f ax l iy 542 | YARLY y aa r l iy 543 | YET y eh t 544 | ZEALOUSLY z iy l ax s l iy 545 | -------------------------------------------------------------------------------- /dictionaries/adverb-comparative: -------------------------------------------------------------------------------- 1 | CLOSER k l ow s er 2 | EARLIER er l iy er 3 | FASTER f ae s t er 4 | HARDER hh aa r dx er 5 | LOUDER l aw dx er 6 | SMARTER s m aa r dx er 7 | SOONER s uw n er 8 | -------------------------------------------------------------------------------- /dictionaries/adverb-superlative: -------------------------------------------------------------------------------- 1 | HARDEST hh aa r dx ax s t 2 | -------------------------------------------------------------------------------- /dictionaries/comparative: -------------------------------------------------------------------------------- 1 | BETTER b eh dx er 2 | BIGGER b ih g er 3 | BROADER b r ao dx er 4 | CHEAPER ch iy p er 5 | CLEARER k l ih r er 6 | COLDER k ow l d er 7 | COOLER k uw l er 8 | DARKER d aa r k er 9 | DEEPER d iy p er 10 | EASIER iy z iy er 11 | ELDER eh l d er 12 | FATTER f ae dx er 13 | FEWER f y uw er 14 | GREATER g r ey dx er 15 | HAPPIER hh ae p iy er 16 | HIGHER hh ay er 17 | LARGER l aa r jh er 18 | LESS l eh s 19 | LESSER l eh s er 20 | LOWER l ow er 21 | MORE m ao r 22 | NICER n ay s er 23 | OLDER ow l d er 24 | REDDER r eh dx er 25 | RICHER r ih ch er 26 | ROUGHER r ah f er 27 | SAFER s ey f er 28 | SHORTER sh ao r dx er 29 | SIMPLER s ih m p ax l er 30 | SLOWER s l ow er 31 | SMALLER s m ao l er 32 | SOFTER s aa f t er 33 | STRONGER s t r ao ng er 34 | TALLER t ao l er 35 | THICKER th ih k er 36 | THINNER th ih n er 37 | WARMER w ao r m er 38 | WIDER w ay dx er 39 | WORSE w er s 40 | YOUNGER y ah ng g er 41 | -------------------------------------------------------------------------------- /dictionaries/conjunction: -------------------------------------------------------------------------------- 1 | AND ae n d 2 | BUT b ah t 3 | EITHER iy dh er 4 | MINUS m ay n ax s 5 | NOR n ao r 6 | OR ao r 7 | PLUS p l ah s 8 | -------------------------------------------------------------------------------- /dictionaries/determiner: -------------------------------------------------------------------------------- 1 | A ax 2 | ALL ao l 3 | AN ae n 4 | ANOTHER ax n ah dh er 5 | ANOTHER'S ax n ah dh er z 6 | ANY eh n iy 7 | BOTH b ow th 8 | DEL d eh l 9 | EACH iy ch 10 | EVERY eh v er iy 11 | LE l ax 12 | NEITHER n iy dh er 13 | SOME s ah m 14 | THE dh ax 15 | THESE dh iy z 16 | THIS dh ih s 17 | THOSE dh ow z 18 | -------------------------------------------------------------------------------- /dictionaries/existential: -------------------------------------------------------------------------------- 1 | THERE dh eh r 2 | THERE'S dh eh r z 3 | -------------------------------------------------------------------------------- /dictionaries/foreign-word: -------------------------------------------------------------------------------- 1 | BELLE b eh l 2 | BONO b ow n ow 3 | DEI d ey 4 | ENTREE aa n t r ey 5 | ETC eh t s eh dx er ax 6 | EX eh k s 7 | THEATRE th iy ax dx er 8 | TROP t r ow 9 | -------------------------------------------------------------------------------- /dictionaries/interjection: -------------------------------------------------------------------------------- 1 | ALAS ax l ae s 2 | BOY b oy 3 | CONGRATULATIONS k ax n g r ae ch ax l ey sh ax n z 4 | DAMN d ae m 5 | ER er 6 | GAD g ae d 7 | HELL hh eh l 8 | HELLO hh ax l ow 9 | KAWEAH k ax w iy ax 10 | NOPE n ow p 11 | OH ow 12 | OK ow k ey 13 | WOW w aw 14 | XIAMEN z iy ey m ax n 15 | -------------------------------------------------------------------------------- /dictionaries/list-item-marker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Dragonfire-RaspberryPi/633c1860623ee2ca85881247a76cd35aad120ee8/dictionaries/list-item-marker -------------------------------------------------------------------------------- /dictionaries/modal-auxiliary: -------------------------------------------------------------------------------- 1 | CAN k ae n 2 | CAN'T k ae n t 3 | CANNOT k ae n aa t 4 | COULD k uh d 5 | COULDN'T k uh d ax n t 6 | MIGHT m ay t 7 | MUST m ah s t 8 | MUSTN'T m ah s ax n t 9 | OUGHT ao t 10 | SHALL sh ae l 11 | SHOULD sh uh d 12 | SHOULDN'T sh uh d ax n t 13 | WILL w ih l 14 | WON'T w ow n t 15 | WOULD w uh d 16 | WOULDN'T w uh d ax n t 17 | -------------------------------------------------------------------------------- /dictionaries/noun-common-plural: -------------------------------------------------------------------------------- 1 | ABILITIES ax b ih l ax dx iy z 2 | ACCENTS ae k s eh n t s 3 | ACCESSORIES ae k s eh s er iy z 4 | ACCIDENTS ae k s ax d ax n t s 5 | ACCOMPLISHMENTS ax k aa m p l ix sh m ax n t s 6 | ACCOUNTS ax k aw n t s 7 | ACHIEVEMENTS ax ch iy v m ax n t s 8 | ACIDS ae s ax d z 9 | ACORNS ey k ao r n z 10 | ACQUISITIONS ae k w ax z ih sh ax n z 11 | ACTIONS ae k sh ax n z 12 | ACTIVITIES ae k t ih v ax dx iy z 13 | ACTS ae k t s 14 | ADVANCES ax d v ae n s ax z 15 | ADVANTAGES ae d v ae n t ix jh ix z 16 | ADVENTURES ae d v eh n ch er z 17 | ADVOCATES ae d v ax k ax t s 18 | AFFAIRS ax f eh r z 19 | AFFECTIONS ax f eh k sh ax n z 20 | AFTERNOONS ae f t er n uw n z 21 | AGENCIES ey jh ax n s iy z 22 | AGENTS ey jh ax n t s 23 | AGES ey jh ax z 24 | AGGREGATES ae g r ax g ix t s 25 | AILS ey l z 26 | AIRLINES eh r l ay n z 27 | AIRPORTS eh r p ao r t s 28 | ALLEYS ae l iy z 29 | ALTERNATIVES ao l t er n ax dx ix v z 30 | AMOUNTS ax m aw n t s 31 | ANGLES ae ng g ax l z 32 | ANIMALS ae n ax m ax l z 33 | ANKLES ae ng k ax l z 34 | ANSWERS ae n s er z 35 | ANTECEDENTS ae n t ix s iy d ax n t s 36 | APARTMENTS ax p aa r t m ax n t s 37 | APPEALS ax p iy l z 38 | APPEARANCES ax p ih r ax n s ax z 39 | APPLES ae p ax l z 40 | APPLIANCES ax p l ay ax n s ax z 41 | APPLICATIONS ae p l ax k ey sh ax n z 42 | APPREHENSIONS ae p r ix hh eh n sh ax n z 43 | AREAS eh r iy ax z 44 | ARGUMENTS aa r g y ax m ax n t s 45 | ARMIES aa r m iy z 46 | ARMS aa r m z 47 | ARRANGEMENTS er ey n jh m ax n t s 48 | ARRESTS er eh s t s 49 | ARROWS ae r ow z 50 | ARTERIES aa r dx er iy z 51 | ARTICLES aa r dx ax k ax l z 52 | ARTISTS aa r dx ax s t s 53 | ARTS aa r t s 54 | ASHES ae sh ax z 55 | ASPECTS ae s p eh k t s 56 | ASSAULTS ax s ao l t s 57 | ASSEMBLIES ax s eh m b l iy z 58 | ASSISTANTS ax s ih s t ax n t s 59 | ASSOCIATIONS ax s ow s iy ey sh ax n z 60 | ASSURANCES ax sh uh r ax n s ix z 61 | ASTEROIDS ae s t er oy d z 62 | ATOMS ae dx ax m z 63 | ATTACKS ax t ae k s 64 | ATTEMPTS ax t eh m p t s 65 | ATTENDANTS ax t eh n d ax n t s 66 | ATTRACTIONS ax t r ae k sh ax n z 67 | ATTRIBUTES ae t r ax b y uw t s 68 | AUSPICES ao s p ix s ix z 69 | AUTHORITIES ax th ao r ax dx iy z 70 | AVENUES ae v ax n uw z 71 | AXIOMS ae k s iy ax m z 72 | BABIES b ey b iy z 73 | BACKGROUNDS b ae k g r aw n d z 74 | BACKS b ae k s 75 | BAGS b ae g z 76 | BALLS b ao l z 77 | BANANAS b ax n ae n ax z 78 | BANDS b ae n d z 79 | BANKERS b ae ng k er z 80 | BANKS b ae ng k s 81 | BARGAINS b aa r g ax n z 82 | BARS b aa r z 83 | BASES b ey s ax z 84 | BATHS b ae th s 85 | BATS b ae t s 86 | BEASTS b iy s t s 87 | BEDS b eh d z 88 | BEES b iy z 89 | BEGGARS b eh g er z 90 | BEINGS b iy ix ng z 91 | BELLS b eh l z 92 | BELTS b eh l t s 93 | BENCHES b eh n ch ix z 94 | BENEFITS b eh n ax f ix t s 95 | BIDDERS b ih dx er z 96 | BILLS b ih l z 97 | BIOLOGISTS b ay aa l ax jh ax s t s 98 | BIRDS b er d z 99 | BISCUITS b ih s k ax t s 100 | BITS b ih t s 101 | BLADES b l ey d z 102 | BLESSINGS b l eh s ix ng z 103 | BLOCKS b l aa k s 104 | BLOODS b l ah d z 105 | BLOSSOMS b l aa s ax m z 106 | BLOWS b l ow z 107 | BLUES b l uw z 108 | BOARDS b ao r d z 109 | BOATS b ow t s 110 | BODIES b aa dx iy z 111 | BONDS b aa n d z 112 | BONES b ow n z 113 | BOOKINGS b uh k ix ng z 114 | BOOKS b uh k s 115 | BOOTS b uw t s 116 | BORDERS b ao r dx er z 117 | BOTTLES b aa dx ax l z 118 | BOUNDARIES b aw n d er iy z 119 | BOUNDS b aw n d z 120 | BOXES b aa k s ax z 121 | BOYS b oy z 122 | BRAIDS b r ey d z 123 | BRAINS b r ey n z 124 | BRANCHES b r ae n ch ax z 125 | BREAKS b r ey k s 126 | BREASTS b r eh s t s 127 | BREEZES b r iy z ix z 128 | BRIBES b r ay b z 129 | BRICKS b r ih k s 130 | BROTHERS b r ah dh er z 131 | BUBBLES b ah b ax l z 132 | BUCKS b ah k s 133 | BUDS b ah d z 134 | BUILDINGS b ih l d ix ng z 135 | BULLETS b uh l ax t s 136 | BURSTS b er s t s 137 | BUSHES b uh sh ax z 138 | BUTTERFLIES b ah dx er f l ay z 139 | BUTTONS b ah t ax n z 140 | BUYERS b ay er z 141 | BYSTANDERS b ay s t ae n d er z 142 | CABINETS k ae b ax n ax t s 143 | CABLES k ey b ax l z 144 | CALCULATIONS k ae l k y ax l ey sh ax n z 145 | CALCULATORS k ae l k y ax l ey dx er z 146 | CALORIES k ae l er iy z 147 | CAMERAS k ae m er ax z 148 | CAMPS k ae m p s 149 | CANALS k ax n ae l z 150 | CANDIDATES k ae n d ax dx ey t s 151 | CANYONS k ae n y ax n z 152 | CAPS k ae p s 153 | CAPTIVES k ae p t ix v z 154 | CARDS k aa r d z 155 | CARS k aa r z 156 | CASES k ey s ax z 157 | CASINOS k ax s iy n ow z 158 | CATASTROPHES k ax t ae s t r ax f iy z 159 | CATS k ae t s 160 | CATTLE k ae dx ax l 161 | CAUSES k aa z ax z 162 | CELEBRITIES s ax l eh b r ix dx iy z 163 | CELLARS s eh l er z 164 | CELLS s eh l z 165 | CENTERS s eh n t er z 166 | CENTS s eh n t s 167 | CENTURIES s eh n ch er iy z 168 | CHAINS ch ey n z 169 | CHAIRS ch eh r z 170 | CHAMBERS ch ey m b er z 171 | CHANCES ch ae n s ax z 172 | CHANDELIERS sh ae n d ax l ih z 173 | CHANGES ch ey n jh ax z 174 | CHANNELS ch ae n ax l z 175 | CHAPTERS ch ae p t er z 176 | CHARACTERISTICS k eh r ax k t er ih s t ix k s 177 | CHARACTERS k ae r ix k t er z 178 | CHARGES ch aa r jh ax z 179 | CHECKS ch eh k s 180 | CHEERS ch ih r z 181 | CHEMICALS k eh m ix k ax l z 182 | CHEMISTS k eh m ax s t s 183 | CHIEFS ch iy f s 184 | CHILDREN ch ih l d r ax n 185 | CHILDREN'S ch ih l d r ax n z 186 | CHIPS ch ih p s 187 | CHOICES ch oy s ax z 188 | CHURCHES ch er ch ax z 189 | CIGARETTES s ih g er eh t s 190 | CIGARS s ix g aa r z 191 | CIRCLES s er k ax l z 192 | CIRCUITS s er k ax t s 193 | CIRCUMSTANCES s er k ax m s t ae n s ax z 194 | CITIES s ih dx iy z 195 | CITIZENS s ih dx ax z ax n z 196 | CLASSES k l ae s ax z 197 | CLIENTS k l ay ax n t s 198 | CLOTHES k l ow dh z 199 | CLOUDS k l aw d z 200 | CLUBS k l ah b z 201 | CLUSTERS k l ah s t er z 202 | COASTS k ow s t s 203 | COATS k ow t s 204 | CODES k ow d z 205 | COLLARS k aa l er z 206 | COLORS k ah l er z 207 | COLUMNS k aa l ax m z 208 | COMBINATIONS k aa m b ax n ey sh ax n z 209 | COMBINES k ax m b ay n z 210 | COMEDIES k aa m ax dx iy z 211 | COMESTIBLES k aa m eh s t ax b ax l z 212 | COMETS k aa m ax t s 213 | COMFORTS k ah m f er t s 214 | COMMENTS k aa m eh n t s 215 | COMMISSIONERS k ax m ih sh ax n er z 216 | COMMODITIES k ax m aa dx ax dx iy z 217 | COMPANIES k ah m p ax n iy z 218 | COMPANIONS k ax m p ae n y ax n z 219 | COMPENSATIONS k aa m p ax n s ey sh ax n z 220 | COMPLIMENTS k aa m p l ax m eh n t s 221 | COMPONENTS k ax m p ow n ax n t s 222 | COMPOSITIONS k aa m p ax z ih sh ax n z 223 | COMPUTERS k ax m p y uw dx er z 224 | CONCEPTIONS k ax n s eh p sh ax n z 225 | CONCEPTS k aa n s eh p t s 226 | CONCERNS k ax n s er n z 227 | CONCLUSIONS k ax n k l uw zh ax n z 228 | CONDITIONS k ax n d ih sh ax n z 229 | CONES k ow n z 230 | CONFESSIONS k ax n f eh sh ax n z 231 | CONFINES k aa n f ay n z 232 | CONSEQUENCES k aa n s ax k w eh n s ax z 233 | CONSIDERATIONS k ax n s ih dx er ey sh ax n z 234 | CONSTITUENTS k ax n s t ih ch uw ax n t s 235 | CONSULTATIONS k aa n s ax l t ey sh ax n z 236 | CONTEMPORARIES k ax n t eh m p er eh r iy z 237 | CONTENTS k aa n t eh n t s 238 | CONTROLS k ax n t r ow l z 239 | CONTROVERSIES k aa n t r ax v er s iy z 240 | CONVENTIONS k ax n v eh n sh ax n z 241 | CONVERSATIONS k aa n v er s ey sh ax n z 242 | COPIES k aa p iy z 243 | CORNERS k ao r n er z 244 | CORPORATIONS k ao r p er ey sh ax n z 245 | COSTUMES k aa s t uw m z 246 | COTTAGES k aa dx ix jh ix z 247 | COUNTERS k aw n t er z 248 | COUNTRIES k ah n t r iy z 249 | COUNTRYMEN k ah n t r iy m ix n 250 | COUPLES k ah p ax l z 251 | COURSES k ao r s ax z 252 | COURTESIES k er dx ax s iy z 253 | COUSINS k ah z ax n z 254 | COVENANTS k ah v ax n ax n t s 255 | CRAFTSMEN k r ae f t s m eh n 256 | CRANKS k r ae ng k s 257 | CREATURES k r iy ch er z 258 | CREVICES k r eh v ax s ix z 259 | CRIMES k r ay m z 260 | CRITERIA k r ay t ih r iy ax 261 | CROPS k r aa p s 262 | CROWDS k r aw d z 263 | CULTURES k ah l ch er z 264 | CURRENTS k er ax n t s 265 | CURSES k er s ix z 266 | CURTAINS k er t ax n z 267 | CUSTOMS k ah s t ax m z 268 | CUTTERS k ah dx er z 269 | DANGERS d ey n jh er z 270 | DATES d ey t s 271 | DAUGHTERS d ao dx er z 272 | DAYS d ey z 273 | DEALS d iy l z 274 | DEBTORS d eh dx er z 275 | DEBTS d eh t s 276 | DECADES d eh k ey d z 277 | DECKS d eh k s 278 | DECLARATIONS d eh k l er ey sh ax n z 279 | DECREASES d ix k r iy s ax z 280 | DEDUCTIONS d ix d ah k sh ax n z 281 | DEFINITIONS d eh f ax n ih sh ax n z 282 | DEGREES d ix g r iy z 283 | DELAYS d ix l ey z 284 | DELIBERATIONS d ix l ih b er ey sh ax n z 285 | DEMANDS d ix m ae n d z 286 | DEPARTMENTS d ix p aa r t m ax n t s 287 | DEPARTURES d ix p aa r ch er z 288 | DEPOSITS d ax p aa z ix t s 289 | DEPOTS d iy p ow z 290 | DEPTHS d eh p th s 291 | DEPUTIES d eh p y ax dx iy z 292 | DESCENDANTS d ix s eh n d ax n t s 293 | DESCRIPTIONS d ix s k r ih p sh ax n z 294 | DESERTS d eh z er t s 295 | DESIGNS d ix z ay n z 296 | DESIRES d ix z ay er z 297 | DESKS d eh s k s 298 | DESTINATIONS d eh s t ax n ey sh ax n z 299 | DETAILS d ix t ey l z 300 | DEVELOPMENTS d ix v eh l ax p m ax n t s 301 | DEVICES d ix v ay s ax z 302 | DEVOTEES d eh v ax t iy z 303 | DIFFERENCES d ih f er ax n s ix z 304 | DIFFICULTIES d ih f ax k ax l t iy z 305 | DIMENSIONS d ix m eh n sh ax n z 306 | DINNERS d ih n er z 307 | DIRECTIONS d er eh k sh ax n z 308 | DISAPPOINTMENTS d ix s ax p oy n t m ax n t s 309 | DISCOVERIES d ix s k ah v er iy z 310 | DISEASES d ix z iy z ax z 311 | DISGUISES d ix s g ay z ix z 312 | DISLOCATIONS d ix s l ow k ey sh ax n z 313 | DISORDERS d ix s ao r dx er z 314 | DISPUTES d ix s p y uw t s 315 | DISTANCES d ih s t ax n s ax z 316 | DISTORTIONS d ix s t ao r sh ax n z 317 | DISTRIBUTIONS d ih s t r ax b y uw sh ax n z 318 | DISTRICTS d ih s t r ix k t s 319 | DISTURBANCES d ix s t er b ax n s ax z 320 | DIVERS d ay v er z 321 | DIVERSIONS d ix v er zh ax n z 322 | DIVERSITIES d ay v er s ax dx iy z 323 | DOCTORS d aa k t er z 324 | DOCTRINES d aa k t r ax n z 325 | DOCUMENTS d aa k y ax m ax n t s 326 | DOGS d aa g z 327 | DOLDRUMS d ow l d r ax m z 328 | DOLLS d aa l z 329 | DOMES d ow m z 330 | DOORS d ao r z 331 | DOUBTS d aw t s 332 | DOZENS d ah z ax n z 333 | DRAWBACKS d r ao b ae k s 334 | DREAMS d r iy m z 335 | DRESSES d r eh s ax z 336 | DRINKS d r ih ng k s 337 | DRIVERS d r ay v er z 338 | DRIVES d r ay v z 339 | DROPS d r aa p s 340 | DUCKS d ah k s 341 | DUTIES d uw dx iy z 342 | DYNAMICS d ay n ae m ix k s 343 | EARNINGS er n ix ng z 344 | EARS ih r z 345 | EARTHQUAKES er th k w ey k s 346 | EAST iy s t 347 | EATERS iy dx er z 348 | ECCENTRICS ix k s eh n t r ix k s 349 | ECHOES eh k ow z 350 | EFFECTS ix f eh k t s 351 | EFFORTS eh f er t s 352 | EGGS eh g z 353 | ELBOWS eh l b ow z 354 | ELEMENTS eh l ax m ax n t s 355 | ELEPHANTS eh l ax f ax n t s 356 | EMOTIONS ix m ow sh ax n z 357 | EMPLOYEES eh m p l oy iy z 358 | EMPLOYERS eh m p l oy er z 359 | ENEMIES eh n ax m iy z 360 | ENERGIES eh n er jh iy z 361 | ENGAGEMENTS eh n g ey jh m ax n t s 362 | ENGINES eh n jh ax n z 363 | ENTERPRISES eh n t er p r ay z ix z 364 | ENTITIES eh n t ix dx iy z 365 | ENTRIES eh n t r iy z 366 | EQUIVALENTS ix k w ih v ax l ax n t s 367 | ERRORS eh r er z 368 | ESTABLISHMENTS eh s t ae b l ix sh m ax n t s 369 | ETHICS eh th ix k s 370 | EULOGISTS y uw l ax jh ix s t s 371 | EVENTS ix v eh n t s 372 | EXAMPLES ix g z ae m p ax l z 373 | EXCEPTIONS ix k s eh p sh ax n z 374 | EXCHANGES ix k s ch ey n jh ax z 375 | EXCURSIONS ix k s k er zh ax n z 376 | EXERCISES eh k s er s ay z ax z 377 | EXHIBITIONS eh k s ax b ih sh ax n z 378 | EXHIBITS ix g z ih b ax t s 379 | EXPECTATIONS eh k s p eh k t ey sh ax n z 380 | EXPERIENCES ix k s p ih r iy ax n s ix z 381 | EXPERIMENTS ix k s p eh r ax m ax n t s 382 | EXPLANATIONS eh k s p l ax n ey sh ax n z 383 | EXPRESSIONS ix k s p r eh sh ax n z 384 | EYES ay z 385 | FABRICS f ae b r ix k s 386 | FACTIONS f ae k sh ax n z 387 | FACTORIES f ae k t er iy z 388 | FACTORS f ae k t er z 389 | FACTS f ae k t s 390 | FAILINGS f ey l ix ng z 391 | FAMILIES f ae m ax l iy z 392 | FAMINES f ae m ax n z 393 | FANGS f ae ng z 394 | FANS f ae n z 395 | FARMERS f aa r m er z 396 | FASHIONS f ae sh ax n z 397 | FATHERS f aa dh er z 398 | FAUNA f ao n ax 399 | FEARS f ih r z 400 | FEATHERS f eh dh er z 401 | FEATURES f iy ch er z 402 | FEELINGS f iy l ix ng z 403 | FEET f iy t 404 | FELLOWS f eh l ow z 405 | FEMALES f iy m ey l z 406 | FIELDS f iy l d z 407 | FIGHTS f ay t s 408 | FIGURES f ih g y er z 409 | FILES f ay l z 410 | FINANCES f ix n ae n s ix z 411 | FINGERS f ih ng g er z 412 | FIREMEN f ay r m ax n 413 | FIRES f ay er z 414 | FISTS f ih s t s 415 | FLAGS f l ae g z 416 | FLAMES f l ey m z 417 | FLASHES f l ae sh ix z 418 | FLATS f l ae t s 419 | FLIGHTS f l ay t s 420 | FLOORS f l ao r z 421 | FLORA f l ao r ax 422 | FLOWERS f l aw er z 423 | FLUIDS f l uw ax d z 424 | FOES f ow z 425 | FOLKS f ow k s 426 | FOLLOWERS f aa l ow er z 427 | FOODS f uw d z 428 | FOOTHILLS f uh t hh ih l z 429 | FOOTSTEPS f uh t s t eh p s 430 | FORCES f ao r s ix z 431 | FOREFATHERS f ao r f aa dh er z 432 | FOREIGNERS f ao r ax n er z 433 | FORERUNNERS f ao r ah n er z 434 | FORESTS f ao r ax s t s 435 | FORMATS f ao r m ae t s 436 | FORMS f ao r m z 437 | FORTUNES f ao r ch ax n z 438 | FOUNDATIONS f aw n d ey sh ax n z 439 | FOUNDERS f aw n d er z 440 | FOUNTAINS f aw n t ax n z 441 | FOXES f aa k s ax z 442 | FRAGMENTS f r ae g m ax n t s 443 | FRAMES f r ey m z 444 | FRIENDS f r eh n d z 445 | FRINGES f r ih n jh ix z 446 | FROGS f r aa g z 447 | FRONDS f r aa n d z 448 | FRONTS f r ah n t s 449 | FRUITS f r uw t s 450 | FUGITIVES f y uw jh ix dx ix v z 451 | FUNCTIONS f ah ng k sh ax n z 452 | FUNDAMENTALS f ah n d ax m eh n t ax l z 453 | FUNGI f ah n jh ay 454 | FURS f er z 455 | GAINS g ey n z 456 | GAMBLERS g ae m b l er z 457 | GAMES g ey m z 458 | GARDENS g aa r d ax n z 459 | GARMENTS g aa r m ax n t s 460 | GASES g ae s ax z 461 | GATES g ey t s 462 | GENERATIONS jh eh n er ey sh ax n z 463 | GENTLEMEN jh eh n t ax l m ix n 464 | GEOLOGISTS jh iy aa l ax jh ix s t s 465 | GERMS jh er m z 466 | GESTURES jh eh s ch er z 467 | GHOSTS g ow s t s 468 | GIANTS jh ay ax n t s 469 | GIFTS g ih f t s 470 | GIRLS g er l z 471 | GLIMPSES g l ih m p s ix z 472 | GLOVES g l ah v z 473 | GOALS g ow l z 474 | GOODS g uh d z 475 | GOVERNMENTS g ah v er m ax n t s 476 | GOVERNORS g ah v er n er z 477 | GRAINS g r ey n z 478 | GREENS g r iy n z 479 | GROCERIES g r ow s er iy z 480 | GROUNDS g r aw n d z 481 | GROUPS g r uw p s 482 | GROWTHS g r ow th s 483 | GUARDS g aa r d z 484 | GUESTS g eh s t s 485 | GUIDELINES g ay d l ay n z 486 | GUIDES g ay d z 487 | GUYS g ay z 488 | GYMNASTICS jh ix m n ae s t ix k s 489 | HABITS hh ae b ax t s 490 | HANDBOOKS hh ae n d b uh k s 491 | HANDS hh ae n d z 492 | HARDSHIPS hh aa r d sh ix p s 493 | HATS hh ae t s 494 | HAUNTS hh ao n t s 495 | HEADS hh eh d z 496 | HEARTS hh aa r t s 497 | HEAVENS hh eh v ax n z 498 | HEELS hh iy l z 499 | HEIGHTS hh ay t s 500 | HEROES hh ih r ow z 501 | HERONS hh eh r ax n z 502 | HILLS hh ih l z 503 | HOLES hh ow l z 504 | HOLIDAYS hh aa l ax d ey z 505 | HOMES hh ow m z 506 | HOPES hh ow p s 507 | HORSES hh ao r s ax z 508 | HOSTILITIES hh aa s t ih l ax dx iy z 509 | HOSTS hh ow s t s 510 | HOTELS hh ow t eh l z 511 | HOURS aw er z 512 | HOUSES hh aw s ax z 513 | HUNDREDS hh ah n d r ax d z 514 | HUNTERS hh ah n t er z 515 | HURDLES hh er dx ax l z 516 | HUSBANDS hh ah z b ax n d z 517 | IDEALS ay d iy l z 518 | IDEAS ay d iy ax z 519 | ILLUSTRATIONS ih l ax s t r ey sh ax n z 520 | IMAGES ih m ax jh ax z 521 | IMPEDIMENTS ix m p eh dx ax m ax n t s 522 | IMPORTERS ix m p ao r dx er z 523 | IMPORTS ix m p ao r t s 524 | IMPROVEMENTS ix m p r uw v m ax n t s 525 | INCHES ih n ch ax z 526 | INCREASES ix n k r iy s ax z 527 | INDICATIONS ih n d ax k ey sh ax n z 528 | INDIVIDUALS ih n d ix v ih jh ax w ax l z 529 | INEQUALITIES ih n ax k w aa l ix dx iy z 530 | INFLUENCES ih n f l uw ax n s ix z 531 | INGREDIENTS ix n g r iy dx iy ax n t s 532 | INJURIES ih n jh er iy z 533 | INMATES ih n m ey t s 534 | INNS ih n z 535 | INPUTS ih n p uh t s 536 | INQUIRIES ix n k w ay er iy z 537 | INSECTS ih n s eh k t s 538 | INSTALLATIONS ih n s t ax l ey sh ax n z 539 | INSTANCES ih n s t ax n s ax z 540 | INSTINCTS ih n s t ix ng k t s 541 | INSTRUCTIONS ix n s t r ah k sh ax n z 542 | INSTRUMENTS ih n s t r ax m ax n t s 543 | INTENTIONS ix n t eh n ch ax n z 544 | INTENTS ix n t eh n t s 545 | INTERESTS ih n t r ax s t s 546 | INTERVALS ih n t er v ax l z 547 | INVADERS ix n v ey dx er z 548 | INVESTIGATIONS ix n v eh s t ax g ey sh ax n z 549 | INVESTIGATORS ix n v eh s t ax g ey dx er z 550 | INVITATIONS ih n v ix t ey sh ax n z 551 | IRONIES ay r ax n iy z 552 | IRREGULARITIES ix r eh g y ax l eh r ax dx iy z 553 | ISLANDS ay l ax n d z 554 | ITEMS ay dx ax m z 555 | JEWELS jh uw ax l z 556 | JOYS jh oy z 557 | JUDGES jh ah jh ix z 558 | JUICES jh uw s ax z 559 | JUMPS jh ah m p s 560 | JUNIORS jh uw n y er z 561 | KEYBOARDS k iy b ao r d z 562 | KICKS k ih k s 563 | KIDDIES k ih dx iy z 564 | KIDS k ih d z 565 | KINDS k ay n d z 566 | KINGS' k ih ng z 567 | KNEES n iy z 568 | LABELS l ey b ax l z 569 | LABORS l ey b er z 570 | LADIES l ey dx iy z 571 | LAGOONS l ax g uw n z 572 | LAMPS l ae m p s 573 | LANDS l ae n d z 574 | LANES l ey n z 575 | LANGUAGES l ae ng g w ax jh ax z 576 | LAURELS l ao r ax l z 577 | LAWS l ao z 578 | LEADERS l iy dx er z 579 | LEAGUES l iy g z 580 | LEAKS l iy k s 581 | LEAPS l iy p s 582 | LEGIONS l iy jh ax n z 583 | LEGS l eh g z 584 | LEMONS l eh m ax n z 585 | LESSONS l eh s ax n z 586 | LETTERS l eh dx er z 587 | LIGHTS l ay t s 588 | LIMBS l ih m z 589 | LIMITATIONS l ih m ix t ey sh ax n z 590 | LIMITS l ih m ax t s 591 | LINES l ay n z 592 | LINKS l ih ng k s 593 | LIONS l ay ax n z 594 | LIPS l ih p s 595 | LISTS l ih s t s 596 | LIVES l ih v z 597 | LOCALITIES l ow k ae l ix dx iy z 598 | LOCATIONS l ow k ey sh ax n z 599 | LODGINGS l aa jh ix ng z 600 | LORDS l ao r d z 601 | LOSERS l uw z er z 602 | LOTS l aa t s 603 | LOUIS l uw ix s 604 | LOVERS l ah v er z 605 | LUNGS l ah ng z 606 | LUXURIES l ah g zh er iy z 607 | MAGAZINES m ae g ax z iy n z 608 | MAKERS m ey k er z 609 | MALES m ey l z 610 | MANAGERS m ae n ax jh er z 611 | MANIFESTATIONS m ae n ax f eh s t ey sh ax n z 612 | MANNERS m ae n er z 613 | MANSIONS m ae n ch ax n z 614 | MANUFACTURERS m ae n y ax f ae k ch er er z 615 | MAPS m ae p s 616 | MARGINS m aa r jh ax n z 617 | MARKETS m aa r k ax t s 618 | MARKS m aa r k s 619 | MARSHES m aa r sh ax z 620 | MARVELS m aa r v ax l z 621 | MASSES m ae s ax z 622 | MASTERS m ae s t er z 623 | MATERIALS m ax t ih r iy ax l z 624 | MATHEMATICS m ae th ax m ae dx ix k s 625 | MATTERS m ae dx er z 626 | MEADOWS m eh d ow z 627 | MEALS m iy l z 628 | MEASUREMENTS m eh zh er m ax n t s 629 | MEASURES m eh zh er z 630 | MECHANICS m ax k ae n ix k s 631 | MEETINGS m iy dx ix ng z 632 | MEMBERS m eh m b er z 633 | MEMORIES m eh m er iy z 634 | MEN m eh n 635 | MEN'S m eh n z 636 | MERCHANTS m er ch ax n t s 637 | MESSAGES m eh s ax jh ax z 638 | METALS m eh dx ax l z 639 | METHODS m eh th ax d z 640 | MICROBES m ay k r ow b z 641 | MILES m ay l z 642 | MILLIONS m ih l y ax n z 643 | MILLISECONDS m ih l ix s eh k ax n d z 644 | MILLS m ih l z 645 | MINDS m ay n d z 646 | MINERALS m ih n er ax l z 647 | MINERS m ay n er z 648 | MINUTES m ih n ax t s 649 | MISSIONS m ih sh ax n z 650 | MISTAKES m ix s t ey k s 651 | MODELS m aa dx ax l z 652 | MODES m ow d z 653 | MODIFICATIONS m aa dx ax f ax k ey sh ax n z 654 | MOLECULES m aa l ax k y uw l z 655 | MOMENTS m ow m ax n t s 656 | MONOPOLIES m ax n aa p ax l iy z 657 | MONTHS m ah n th s 658 | MOONS m uw n z 659 | MORNINGS m ao r n ix ng z 660 | MORSELS m ao r s ax l z 661 | MOTHERS m ah dh er z 662 | MOTIONS m ow sh ax n z 663 | MOTIVES m ow dx ix v z 664 | MOUNTAINS m aw n t ax n z 665 | MOUTHS m aw dh z 666 | MOVEMENTS m uw v m ax n t s 667 | MOVIES m uw v iy z 668 | MULTIPLES m ah l t ax p ax l z 669 | MURDERERS m er dx er er z 670 | MUSCLES m ah s ax l z 671 | MUSICIANS m y uw z ih sh ax n z 672 | MYSTERIES m ih s t er iy z 673 | MYTHS m ih th s 674 | NAMES n ey m z 675 | NATIONS n ey sh ax n z 676 | NATIVES n ey dx ix v z 677 | NECESSITIES n ax s eh s ix dx iy z 678 | NEIGHBORS n ey b er z 679 | NEIGHBOURS n ey b er z 680 | NERVES n er v z 681 | NETS n eh t s 682 | NEWSPAPERS n uw z p ey p er z 683 | NICHES n ih ch ix z 684 | NIGHTS n ay t s 685 | NOSES n ow z ix z 686 | NOTES n ow t s 687 | NOTIFICATIONS n ow dx ax f ax k ey sh ax n z 688 | NOTIONS n ow sh ax n z 689 | NUMBERS n ah m b er z 690 | NUTS n ah t s 691 | OAKS ow k s 692 | OATS ow t s 693 | OBJECTS aa b jh eh k t s 694 | OBSERVATIONS aa b z er v ey sh ax n z 695 | OBSERVERS ax b z er v er z 696 | OBSTACLES aa b s t ax k ax l z 697 | OCCASIONS ax k ey zh ax n z 698 | OCEANS ow sh ax n z 699 | OFFERS ao f er z 700 | OFFICERS ao f ax s er z 701 | OFFICES ao f ax s ax z 702 | OMISSIONS ow m ih sh ax n z 703 | ONES w ah n z 704 | OPENINGS ow p ax n ix ng z 705 | OPERATIONS aa p er ey sh ax n z 706 | OPINIONS ax p ih n y ax n z 707 | OPPONENTS ax p ow n ax n t s 708 | OPTIONS aa p sh ax n z 709 | ORCHARDS ao r ch er d z 710 | ORDERS ao r dx er z 711 | ORGANISMS ao r g ax n ih z ax m z 712 | ORGANIZATIONS ao r g ax n ax z ey sh ax n z 713 | ORGANS ao r g ax n z 714 | ORNAMENTS ao r n ax m ax n t s 715 | ORPHANS ao r f ax n z 716 | OTHERS ah dh er z 717 | OUNCES aw n s ax z 718 | OUTSIDERS aw t s ay dx er z 719 | OVERTURES ow v er ch uh r z 720 | PACKAGES p ae k ax jh ax z 721 | PACKETS p ae k ix t s 722 | PACKS p ae k s 723 | PAGES p ey jh ax z 724 | PAINS p ey n z 725 | PAINTINGS p ey n t ix ng z 726 | PALMS p aa m z 727 | PALS p ae l z 728 | PAPERS p ey p er z 729 | PARALLELS p eh r ax l eh l z 730 | PARAMETERS p er ae m ax dx er z 731 | PARASITES p eh r ax s ay t s 732 | PARENTS p eh r ax n t s 733 | PARKS p aa r k s 734 | PARTICULARS p er t ih k y ax l er z 735 | PARTIES p aa r dx iy z 736 | PARTS p aa r t s 737 | PASSENGERS p ae s ax n jh er z 738 | PASSIONS p ae sh ax n z 739 | PATHS p ae dh z 740 | PATTERNS p ae dx er n z 741 | PEACHES p iy ch ax z 742 | PEAKS p iy k s 743 | PEAS p iy z 744 | PECULIARITIES p ix k y uw l iy eh r ax dx iy z 745 | PEERS p ih r z 746 | PENALTIES p eh n ax l t iy z 747 | PENCILS p eh n s ax l z 748 | PEOPLE p iy p ax l 749 | PEOPLE'S p iy p ax l z 750 | PEOPLES p iy p ax l z 751 | PERFORMANCES p er f ao r m ax n s ax z 752 | PERILS p eh r ax l z 753 | PERIODS p ih r iy ax d z 754 | PERSONALITIES p er s ax n ae l ix dx iy z 755 | PERSONS p er s ax n z 756 | PHENOMENA f ax n aa m ax n ax 757 | PHILOSOPHERS f ax l aa s ax f er z 758 | PHONES f ow n z 759 | PHOTOGRAPHS f ow dx ax g r ae f s 760 | PHOTOS f ow t ow z 761 | PHRASES f r ey z ax z 762 | PHYSICIANS f ax z ih sh ax n z 763 | PICKLES p ih k ax l z 764 | PICKS p ih k s 765 | PICTURES p ih k ch er z 766 | PIECES p iy s ax z 767 | PIGS p ih g z 768 | PILLARS p ih l er z 769 | PILLS p ih l z 770 | PINTS p ay n t s 771 | PIPES p ay p s 772 | PIRATES p ay r ax t s 773 | PISTOLS p ih s t ax l z 774 | PITS p ih t s 775 | PLACES p l ey s ax z 776 | PLAINS p l ey n z 777 | PLANETS p l ae n ax t s 778 | PLANKS p l ae ng k s 779 | PLANTS p l ae n t s 780 | PLEADINGS p l iy dx ix ng z 781 | PLEASURES p l eh zh er z 782 | POCKETS p aa k ax t s 783 | POINTS p oy n t s 784 | POLES p ow l z 785 | POLICE p ax l iy s 786 | POLITICS p aa l ax t ih k s 787 | POOLS p uw l z 788 | PORTIONS p ao r sh ax n z 789 | POSITIONS p ax z ih sh ax n z 790 | POSSESSIONS p ax z eh sh ax n z 791 | POSTS p ow s t s 792 | POTATOES p ax t ey dx ow z 793 | POUNDS p aw n d z 794 | POWERS p aw er z 795 | PRAIRIES p r ey r iy z 796 | PRAYERS p r eh r z 797 | PRECAUTIONS p r iy k ao sh ax n z 798 | PRECIPICES p r eh s ax p ax s ix z 799 | PREFERENCES p r eh f er ax n s ix z 800 | PREJUDICES p r eh jh ax dx ix s ix z 801 | PREMISES p r eh m ax s ax z 802 | PREPARATIONS p r eh p er ey sh ax n z 803 | PRESCRIPTIONS p r ax s k r ih p sh ax n z 804 | PRESIDENTS p r eh z ax d eh n t s 805 | PRICES p r ay s ax z 806 | PRIESTS p r iy s t s 807 | PRINCIPLES p r ih n s ax p ax l z 808 | PRISONERS p r ih z ax n er z 809 | PRIVILEGES p r ih v l ax jh ax z 810 | PROBLEMS p r aa b l ax m z 811 | PROCEDURES p r ax s iy jh er z 812 | PROCEEDS p r ax s iy d z 813 | PROCESSES p r aa s eh s ax z 814 | PRODUCTIONS p r ax d ah k sh ax n z 815 | PROFITS p r aa f ix t s 816 | PROGRAMS p r ow g r ae m z 817 | PROJECTIONS p r ax jh eh k sh ax n z 818 | PROJECTS p r aa jh eh k t s 819 | PROMISES p r aa m ax s ax z 820 | PROMOTERS p r ax m ow dx er z 821 | PROPORTIONS p r ax p ao r sh ax n z 822 | PROPOSALS p r ax p ow z ax l z 823 | PROPOSITIONS p r aa p ax z ih sh ax n z 824 | PROSPECTS p r aa s p eh k t s 825 | PROTESTERS p r ow t eh s t er z 826 | PROTESTS p r ow t eh s t s 827 | PROTOCOLS p r ow dx ax k ao l z 828 | PROVINCES p r aa v ax n s ax z 829 | PROVISIONS p r ax v ih zh ax n z 830 | PUBLICATIONS p ah b l ix k ey sh ax n z 831 | PURPOSES p er p ax s ax z 832 | PURSUITS p er s uw t s 833 | PUZZLES p ah z ax l z 834 | PYRAMIDS p ih r ax m ix d z 835 | QUALIFICATIONS k w aa l ax f ax k ey sh ax n z 836 | QUALITIES k w aa l ax dx iy z 837 | QUANTITIES k w aa n t ax dx iy z 838 | QUARTERS k w ao r dx er z 839 | QUESTIONS k w eh s ch ax n z 840 | QUOTATIONS k w ow t ey sh ax n z 841 | QUOTES k w ow t s 842 | RACES r ey s ax z 843 | RAFTERS r ae f t er z 844 | RAILS r ey l z 845 | RAINS r ey n z 846 | RANGES r ey n jh ax z 847 | RANKS r ae ng k s 848 | RATES r ey t s 849 | RATS r ae t s 850 | RATS' r ae t s 851 | RAVAGES r ae v ix jh ix z 852 | RAYS r ey z 853 | REACTIONS r iy ae k sh ax n z 854 | READERS r iy dx er z 855 | REASONS r iy z ax n z 856 | RECORDINGS r ix k ao r dx ix ng z 857 | RECORDS r ax k ao r d z 858 | REDUCTIONS r iy d ah k sh ax n z 859 | REEFS r iy f s 860 | REFERRALS r ix f er ax l z 861 | REGIONS r iy jh ax n z 862 | REGRETS r ix g r eh t s 863 | REGULATIONS r eh g y ax l ey sh ax n z 864 | REINS r ey n z 865 | RELATIONS r iy l ey sh ax n z 866 | RELATIVES r eh l ax dx ix v z 867 | REMARKS r ix m aa r k s 868 | REMEDIES r eh m ax dx iy z 869 | REMNANTS r eh m n ax n t s 870 | RENTS r eh n t s 871 | REPORTS r ix p ao r t s 872 | REPRESENTATIONS r eh p r ax z ax n t ey sh ax n z 873 | REPRESENTATIVES r eh p r ax z eh n t ax dx ix v z 874 | REQUESTS r ix k w eh s t s 875 | REQUIREMENTS r ix k w ay r m ax n t s 876 | RESEARCHERS r iy s er ch er z 877 | RESERVATIONS r eh z er v ey sh ax n z 878 | RESOLUTIONS r eh z ax l uw sh ax n z 879 | RESORTS r ix z ao r t s 880 | RESPONSES r ix s p aa n s ix z 881 | RESTAURANTS r eh s t er aa n t s 882 | RESTRICTIONS r iy s t r ih k sh ax n z 883 | RESULTS r ix z ah l t s 884 | RETORTS r ix t ao r t s 885 | RETREATS r iy t r iy t s 886 | RETURNS r ix t er n z 887 | REVOLUTIONISTS r eh v ax l uw sh ax n ix s t s 888 | REWARDS r ix w ao r d z 889 | RIDES r ay d z 890 | RIDGES r ih jh ax z 891 | RIFLES r ay f ax l z 892 | RIGHTS r ay t s 893 | RIGORS r ih g er z 894 | RINGS r ih ng z 895 | RISES r ay z ax z 896 | RITES r ay t s 897 | RIVALS r ay v ax l z 898 | RIVERS r ih v er z 899 | ROADS r ow d z 900 | ROBES r ow b z 901 | ROBOTS r ow b aa t s 902 | ROCKS r aa k s 903 | RODENTS r ow d ax n t s 904 | RODS r aa d z 905 | ROLES r ow l z 906 | ROLLS r ow l z 907 | ROOMS r uw m z 908 | ROOTS r uw t s 909 | ROSES r ow z ix z 910 | ROUTES r uw t s 911 | ROWS r ow z 912 | RUINS r uw ax n z 913 | RULES r uw l z 914 | RUMORS r uw m er z 915 | RUNNERS r ah n er z 916 | SACRIFICES s ae k r ax f ay s ix z 917 | SAGES s ey jh ix z 918 | SAILORS s ey l er z 919 | SAINTS s ey n t s 920 | SALARIES s ae l er iy z 921 | SALES s ey l z 922 | SANDS s ae n d z 923 | SANDWICHES s ae n d w ix ch ix z 924 | SAUCERS s ao s er z 925 | SCALES s k ey l z 926 | SCARS s k aa r z 927 | SCENES s iy n z 928 | SCENTS s eh n t s 929 | SCHEDULES s k eh jh uh l z 930 | SCHEMES s k iy m z 931 | SCHOLARS s k aa l er z 932 | SCHOOLMATES s k uw l m ey t s 933 | SCHOOLS s k uw l z 934 | SCIENCES s ay ax n s ax z 935 | SCORES s k ao r z 936 | SCOURGES s k er jh ix z 937 | SCREWS s k r uw z 938 | SCRIPTS s k r ih p t s 939 | SEALS s iy l z 940 | SEAS s iy z 941 | SEASONS s iy z ax n z 942 | SEATS s iy t s 943 | SECONDS s eh k ax n d z 944 | SECRETS s iy k r ax t s 945 | SECTIONS s eh k sh ax n z 946 | SEEDS s iy d z 947 | SEGMENTS s eh g m ax n t s 948 | SELLERS s eh l er z 949 | SENSES s eh n s ix z 950 | SENSIBILITIES s eh n s ix b ih l ix dx iy z 951 | SENTENCES s eh n t ax n s ax z 952 | SENTIMENTS s eh n t ax m ax n t s 953 | SERVANTS s er v ax n t s 954 | SERVERS s er v er z 955 | SERVICES s er v ax s ax z 956 | SESSIONS s eh sh ax n z 957 | SETS s eh t s 958 | SETTINGS s eh dx ix ng z 959 | SHADOWS sh ae d ow z 960 | SHAREHOLDERS sh eh r hh ow l d er z 961 | SHARKS sh aa r k s 962 | SHEETS sh iy t s 963 | SHELLS sh eh l z 964 | SHIPS sh ih p s 965 | SHOES sh uw z 966 | SHOOTS sh uw t s 967 | SHORES sh ao r z 968 | SHORTS sh ao r t s 969 | SHOULDERS sh ow l d er z 970 | SHOVELS sh ah v ax l z 971 | SHOWS sh ow z 972 | SHRUBS sh r ah b z 973 | SHUTS sh ah t s 974 | SIDES s ay d z 975 | SIGHS s ay z 976 | SIGHTS s ay t s 977 | SIGNALS s ih g n ax l z 978 | SIGNS s ay n z 979 | SIMILARITIES s ih m ax l eh r ax dx iy z 980 | SINS s ih n z 981 | SISTERS s ih s t er z 982 | SITUATIONS s ih ch uw ey sh ax n z 983 | SIZES s ay z ax z 984 | SKIES s k ay z 985 | SKILLS s k ih l z 986 | SKINS s k ih n z 987 | SLEEVES s l iy v z 988 | SLOPES s l ow p s 989 | SMILES s m ay l z 990 | SNAKES s n ey k s 991 | SOCIETIES s ax s ay ax dx iy z 992 | SOCIOLOGISTS s ow s iy aa l ax jh ix s t s 993 | SOCKS s aa k s 994 | SOFAS s ow f ax z 995 | SOLDIERS s ow l jh er z 996 | SOLICITORS s ax l ih s ax dx er z 997 | SOLUTIONS s ax l uw sh ax n z 998 | SOMERSAULTS s ah m er s ao l t s 999 | SONGS s ao ng z 1000 | SONS s ah n z 1001 | SOUNDS s aw n d z 1002 | SOURCES s ao r s ax z 1003 | SPACES s p ey s ax z 1004 | SPECIALISTS s p eh sh ax l ax s t s 1005 | SPECIALS s p eh sh ax l z 1006 | SPECIES s p iy sh iy z 1007 | SPECIMENS s p eh s ax m ax n z 1008 | SPECTATORS s p eh k t ey dx er z 1009 | SPECULATIONS s p eh k y ax l ey sh ax n z 1010 | SPECULATORS s p eh k y ax l ey dx er z 1011 | SPEECHES s p iy ch ax z 1012 | SPEEDS s p iy d z 1013 | SPIRITS s p ih r ax t s 1014 | SPORTS s p ao r t s 1015 | SPORTSMEN s p ao r t s m ix n 1016 | SPOTS s p aa t s 1017 | SPRAYS s p r ey z 1018 | SPREADS s p r eh d z 1019 | SPURTS s p er t s 1020 | SQUARES s k w eh r z 1021 | STAGES s t ey jh ax z 1022 | STAINS s t ey n z 1023 | STAIRS s t eh r z 1024 | STARS s t aa r z 1025 | STARTS s t aa r t s 1026 | STATEMENTS s t ey t m ax n t s 1027 | STATES s t ey t s 1028 | STATESMEN s t ey t s m ix n 1029 | STATISTICS s t ax t ih s t ix k s 1030 | STAYS s t ey z 1031 | STEELS s t iy l z 1032 | STEPS s t eh p s 1033 | STICKS s t ih k s 1034 | STONES s t ow n z 1035 | STOPS s t aa p s 1036 | STORIES s t ao r iy z 1037 | STORMS s t ao r m z 1038 | STREAMS s t r iy m z 1039 | STREETS s t r iy t s 1040 | STRIDES s t r ay d z 1041 | STRIKES s t r ay k s 1042 | STRIPES s t r ay p s 1043 | STRONGHOLDS s t r ao ng hh ow l d z 1044 | STUDENTS s t uw d ax n t s 1045 | STUDIES s t ah dx iy z 1046 | SUBJECTS s ah b jh ix k t s 1047 | SUBSTANCES s ah b s t ax n s ax z 1048 | SUBURBS s ah b er b z 1049 | SUCCESSORS s ax k s eh s er z 1050 | SUGGESTIONS s ax g jh eh s ch ax n z 1051 | SUITES s w iy t s 1052 | SUITORS s uw dx er z 1053 | SUITS s uw t s 1054 | SUMMARIES s ah m er iy z 1055 | SUNSETS s ah n s eh t s 1056 | SUPERIORS s uw p ih r iy er z 1057 | SUPPLIES s ax p l ay z 1058 | SURPLUSES s er p l ax s ix z 1059 | SURPRISES s er p r ay z ix z 1060 | SURVEYS s er v ey z 1061 | SWEATERS s w eh dx er z 1062 | SWEEPS s w iy p s 1063 | SWEETS s w iy t s 1064 | SWINGS s w ih ng z 1065 | SYMBOLS s ih m b ax l z 1066 | SYMPTOMS s ih m p t ax m z 1067 | TABLES t ey b ax l z 1068 | TACTICS t ae k t ix k s 1069 | TAILS t ey l z 1070 | TALENTS t ae l ax n t s 1071 | TANKS t ae ng k s 1072 | TAPES t ey p s 1073 | TASKS t ae s k s 1074 | TASSELS t ae s ax l z 1075 | TEAMS t iy m z 1076 | TEARS t eh r z 1077 | TECHNIQUES t eh k n iy k s 1078 | TEETH t iy th 1079 | TEMPERATURES t eh m p r ax ch er z 1080 | TENDENCIES t eh n d ax n s iy z 1081 | TENETS t eh n ax t s 1082 | TENS t eh n z 1083 | TERMS t er m z 1084 | TERRITORIES t eh r ax t ao r iy z 1085 | TERRORISTS t eh r er ax s t s 1086 | TESTS t eh s t s 1087 | THANKS th ae ng k s 1088 | THEATERS th iy ax dx er z 1089 | THEORIES th ih r iy z 1090 | THIEVES th iy v z 1091 | THINGS th ih ng z 1092 | THIRDS th er d z 1093 | THOUGHTS th ao t s 1094 | THOUSANDS th aw z ax n d z 1095 | THREATS th r eh t s 1096 | THRUSTS th r ah s t s 1097 | THUMBS th ah m z 1098 | TIES t ay z 1099 | TIMES t ay m z 1100 | TIPS t ih p s 1101 | TISSUES t ih s y uw z 1102 | TITLES t ay dx ax l z 1103 | TOES t ow z 1104 | TOMATOES t ax m ey dx ow z 1105 | TONES t ow n z 1106 | TONS t ah n z 1107 | TOOLS t uw l z 1108 | TOPICS t aa p ix k s 1109 | TOPS t aa p s 1110 | TOUCHES t ah ch ax z 1111 | TOURISTS t uh r ax s t s 1112 | TOWNS t aw n z 1113 | TOYS t oy z 1114 | TRACES t r ey s ax z 1115 | TRACTS t r ae k t s 1116 | TRADERS t r ey dx er z 1117 | TRAGEDIES t r ae jh ax dx iy z 1118 | TRAINS t r ey n z 1119 | TRANSLATIONS t r ae n z l ey sh ax n z 1120 | TRANSMISSIONS t r ae n z m ih sh ax n z 1121 | TRANSPORTS t r ae n s p ao r t s 1122 | TRAPS t r ae p s 1123 | TREASURES t r eh zh er z 1124 | TREES t r iy z 1125 | TRIALS t r ay ax l z 1126 | TRICKS t r ih k s 1127 | TRIPS t r ih p s 1128 | TROOPS t r uw p s 1129 | TROUBLES t r ah b ax l z 1130 | TROUSERS t r aw z er z 1131 | TROUT t r aw t 1132 | TRUNKS t r ah ng k s 1133 | TRUTHS t r uw th s 1134 | TUBES t uw b z 1135 | TYPES t ay p s 1136 | ULCERS ah l s er z 1137 | UNCLES ah ng k ax l z 1138 | UNITS y uw n ax t s 1139 | USERS y uw z er z 1140 | VAGABONDS v ae g ax b aa n d z 1141 | VALUES v ae l y uw z 1142 | VARIABLES v eh r iy ax b ax l z 1143 | VARIATIONS v eh r iy ey sh ax n z 1144 | VEGETABLES v eh jh t ax b ax l z 1145 | VEHICLES v iy hh ix k ax l z 1146 | VICES v ay s ax z 1147 | VICISSITUDES v ix s ih s ix dx uw d z 1148 | VIEWS v y uw z 1149 | VILLAGES v ih l ax jh ax z 1150 | VIRTUES v er ch uw z 1151 | VISIONS v ih zh ax n z 1152 | VISITORS v ih z ax dx er z 1153 | VISITS v ih z ax t s 1154 | VOICES v oy s ax z 1155 | VOLUMES v aa l y uw m z 1156 | VOTES v ow t s 1157 | WAGES w ey jh ax z 1158 | WALLS w ao l z 1159 | WAREHOUSES w eh r hh aw z ix z 1160 | WARRIORS w ao r iy er z 1161 | WASTES w ey s t s 1162 | WATERFALLS w ao dx er f ao l z 1163 | WATERS w ao dx er z 1164 | WAVES w ey v z 1165 | WAYS w ey z 1166 | WEAPONS w eh p ax n z 1167 | WEDDINGS w eh dx ix ng z 1168 | WEEKS w iy k s 1169 | WEIGHTS w ey t s 1170 | WELLS w eh l z 1171 | WHALES w ey l z 1172 | WHEELS w iy l z 1173 | WHITES w ay t s 1174 | WILLS w ih l z 1175 | WINDOWS w ih n d ow z 1176 | WINDS w ih n d z 1177 | WINGS w ih ng z 1178 | WINS w ih n z 1179 | WISHES w ih sh ix z 1180 | WIVES w ay v z 1181 | WIZARDS w ih z er d z 1182 | WOLVES w uh l v z 1183 | WOMEN w ih m ax n 1184 | WOMEN'S w ih m ax n z 1185 | WONDERS w ah n d er z 1186 | WOODS w uh d z 1187 | WORDS w er d z 1188 | WORKERS w er k er z 1189 | WORKMEN w er k m ix n 1190 | WORKS w er k s 1191 | WORLDS w er l d z 1192 | WORRIES w er iy z 1193 | WOUNDS w uw n d z 1194 | WRAPPERS r ae p er z 1195 | WRESTLERS r eh s l er z 1196 | WRITERS r ay dx er z 1197 | WRITINGS r ay dx ix ng z 1198 | YARDS y aa r d z 1199 | YEARS y ih r z 1200 | YIELDS y iy l d z 1201 | YOUNGSTERS y ah ng s t er z 1202 | YOUTHS y uw dh z 1203 | ZONES z ow n z 1204 | -------------------------------------------------------------------------------- /dictionaries/noun-proper-plural: -------------------------------------------------------------------------------- 1 | ARCHIVES aa r k ay v z 2 | BACONIANS b ey k ow n iy ax n z 3 | CALLS k ao l z 4 | CARTESIANS k aa r t iy z iy ax n z 5 | CRANNIES k r ae n iy z 6 | DOLLARS d aa l er z 7 | EPHESIANS eh f iy zh ax n z 8 | GREEKS g r iy k s 9 | ICEBERGS ay s b er g z 10 | INDIANS ih n d iy ax n z 11 | ISRAELITES' ih z r ax l ay t s 12 | ITALIANS ix t ae l y ax n z 13 | PARTICLES p aa r dx ax k ax l z 14 | PLAYMATES p l ey m ey t s 15 | PROPERTIES p r aa p er dx iy z 16 | PROTESTANTS p r aa dx ax s t ax n t s 17 | PUTS p uh t s 18 | STANDARDS s t ae n d er d z 19 | SURROUNDS s er aw n d z 20 | TROPICS t r aa p ix k s 21 | VULGARIANS v ah l g eh r iy ax n z 22 | -------------------------------------------------------------------------------- /dictionaries/numeral: -------------------------------------------------------------------------------- 1 | EIGHT ey t 2 | FIRST f er s t 3 | FIVE f ay v 4 | FOUR f ao r 5 | FOURTEEN f ao r t iy n 6 | HUNDRED hh ah n d r ax d 7 | MILLION m ih l y ax n 8 | NINE n ay n 9 | NINETY n ay n t iy 10 | ONE w ah n 11 | ONE'S w ah n z 12 | SEVEN s eh v ax n 13 | SIX s ih k s 14 | THIRTY th er dx iy 15 | THOUSAND th aw z ax n d 16 | THREE th r iy 17 | TWELVE t w eh l v 18 | TWENTY t w eh n t iy 19 | TWO t uw 20 | ZERO z ih r ow 21 | -------------------------------------------------------------------------------- /dictionaries/particle: -------------------------------------------------------------------------------- 1 | UP ah p 2 | -------------------------------------------------------------------------------- /dictionaries/possessive: -------------------------------------------------------------------------------- 1 | HIS hh ih z 2 | ITS ih t s 3 | MY m ay 4 | OUR aw er 5 | THEIR dh eh r 6 | -------------------------------------------------------------------------------- /dictionaries/pre-determiner: -------------------------------------------------------------------------------- 1 | HALF hh ae f 2 | -------------------------------------------------------------------------------- /dictionaries/preposition: -------------------------------------------------------------------------------- 1 | ABOUT ax b aw t 2 | ABOVE ax b ah v 3 | ACROSS ax k r ao s 4 | AFTER ae f t er 5 | AGAINST ax g eh n s t 6 | ALONG ax l ao ng 7 | ALONGSIDE ax l ao ng s ay d 8 | ALTHOUGH ao l dh ow 9 | AMID ax m ih d 10 | AMONG ax m ah ng 11 | AMONGST ax m ah ng s t 12 | AROUND er aw n d 13 | ASTRIDE ax s t r ay d 14 | BECAUSE b ix k ao z 15 | BEFORE b ix f ao r 16 | BEHIND b ix hh ay n d 17 | BELOW b ix l ow 18 | BENEATH b ix n iy th 19 | BESIDE b ix s ay d 20 | BESIDES b ix s ay d z 21 | BETWEEN b ix t w iy n 22 | BEYOND b ix aa n d 23 | BY b ay 24 | DURING d uh r ix ng 25 | EXCEPT ix k s eh p t 26 | FOR f ao r 27 | FROM f r ah m 28 | IF ih f 29 | IN ix n 30 | INSIDE ix n s ay d 31 | INTO ix n t uw 32 | LEST l eh s t 33 | LIKE l ay k 34 | NEAR n ih r 35 | NEARER n ih r er 36 | NOTWITHSTANDING n aa t w ix th s t ae n d ix ng 37 | OF ah v 38 | OFF ao f 39 | ONTO aa n t uw 40 | OUT aw t 41 | OUTSIDE aw t s ay d 42 | OVER ow v er 43 | PER p er 44 | SINCE s ih n s 45 | THAN dh ae n 46 | THOUGH dh ow 47 | THROUGH th r uw 48 | THROUGHOUT th r uw aw t 49 | TILL t ih l 50 | TOWARD t ax w ao r d 51 | TOWARDS t ax w ao r d z 52 | UNDER ah n d er 53 | UNDERNEATH ah n d er n iy th 54 | UNLESS ax n l eh s 55 | UNLIKE ax n l ay k 56 | UNTIL ax n t ih l 57 | UNTO ah n t uw 58 | UPON ax p aa n 59 | VIA v ay ax 60 | WHEREAS w eh r ae z 61 | WHETHER w eh dh er 62 | WHILE w ay l 63 | WITH w ih dh 64 | WITHIN w ix dh ih n 65 | WITHOUT w ix th aw t 66 | -------------------------------------------------------------------------------- /dictionaries/pronoun: -------------------------------------------------------------------------------- 1 | HE hh iy 2 | HE'D hh iy d 3 | HE'LL hh iy l 4 | HE'S hh iy z 5 | HER hh er 6 | HERSELF hh er s eh l f 7 | HIM hh ih m 8 | HIMSELF hh ix m s eh l f 9 | I ay 10 | I'D ay d 11 | I'LL ay l 12 | I'M ay m 13 | I'VE ay v 14 | IT ih t 15 | IT'S ih t s 16 | ITSELF ix t s eh l f 17 | ME m iy 18 | MYSELF m ay s eh l f 19 | OURS aw er z 20 | OURSELVES aw er s eh l v z 21 | SHE sh iy 22 | SHE'D sh iy d 23 | SHE'S sh iy z 24 | THEIRS dh eh r z 25 | THEM dh eh m 26 | THEMSELVES dh eh m s eh l v z 27 | THEY dh ey 28 | THEY'D dh ey d 29 | THEY'RE dh eh r 30 | THEY'VE dh ey v 31 | US ah s 32 | WE w iy 33 | WE'D w iy d 34 | WE'LL w iy l 35 | WE'RE w iy r 36 | WE'VE w iy v 37 | YOU y uw 38 | YOU'D y uw d 39 | YOU'LL y uw l 40 | YOU'RE y uh r 41 | YOU'VE y uw v 42 | YOURSELF y er s eh l f 43 | -------------------------------------------------------------------------------- /dictionaries/superlative: -------------------------------------------------------------------------------- 1 | BEST b eh s t 2 | BIGGEST b ih g ax s t 3 | BOLDEST b ow l d ix s t 4 | BRIGHTEST b r ay dx ax s t 5 | CHEAPEST ch iy p ax s t 6 | CLOSEST k l ow s ax s t 7 | DEEPEST d iy p ax s t 8 | EARLIEST er l iy ax s t 9 | EASIEST iy z iy ax s t 10 | FARTHEST f aa r dh ax s t 11 | FINEST f ay n ax s t 12 | GREATEST g r ey dx ax s t 13 | HEAVIEST hh eh v iy ax s t 14 | HIGHEST hh ay ax s t 15 | LARGEST l aa r jh ax s t 16 | LATEST l ey dx ax s t 17 | LEAST l iy s t 18 | LIGHTEST l ay dx ax s t 19 | LONGEST l ao ng g ax s t 20 | LOWEST l ow ax s t 21 | MOST m ow s t 22 | NARROWEST n eh r ow ax s t 23 | NEAREST n ih r ax s t 24 | NEWEST n uw ax s t 25 | OLDEST ow l d ax s t 26 | QUICKEST k w ih k ix s t 27 | SAFEST s ey f ax s t 28 | SIMPLEST s ih m p l ax s t 29 | SLIGHTEST s l ay dx ax s t 30 | SMALLEST s m ao l ax s t 31 | SMARTEST s m aa r dx ax s t 32 | SOUTHWEST s aw th w eh s t 33 | STRONGEST s t r ao ng g ax s t 34 | STUPIDEST s t uw p ix dx ax s t 35 | TALLEST t ao l ix s t 36 | WORST w er s t 37 | YOUNGEST y ah ng g ax s t 38 | -------------------------------------------------------------------------------- /dictionaries/to: -------------------------------------------------------------------------------- 1 | TO t uw 2 | -------------------------------------------------------------------------------- /dictionaries/verb-base-form: -------------------------------------------------------------------------------- 1 | ABANDON ax b ae n d ax n 2 | ABOLISH ax b aa l ix sh 3 | ACCEPT ae k s eh p t 4 | ACCOMPANY ax k ah m p ax n iy 5 | ACCOMPLISH ax k aa m p l ix sh 6 | ACHIEVE ax ch iy v 7 | ACQUIRE ax k w ay er 8 | ADD ae d 9 | ADJUST ax jh ah s t 10 | ADMIT ax d m ih t 11 | ADVISE ae d v ay z 12 | AFFECT ax f eh k t 13 | AFFLICT ax f l ih k t 14 | AFFORD ax f ao r d 15 | AGREE ax g r iy 16 | ALLOW ax l aw 17 | ANALYZE ae n ax l ay z 18 | ANNOUNCE ax n aw n s 19 | ANTICIPATE ae n t ih s ax p ey t 20 | APOLOGIZE ax p aa l ax jh ay z 21 | APPEAR ax p ih r 22 | APPLY ax p l ay 23 | APPRECIATE ax p r iy sh iy ey t 24 | ARRANGE er ey n jh 25 | ARRIVE er ay v 26 | ARTICULATE aa r t ih k y ax l ey t 27 | ASK ae s k 28 | ASSEMBLE ax s eh m b ax l 29 | ASSERT ax s er t 30 | ASSIST ax s ih s t 31 | ASSUME ax s uw m 32 | ASSURE ax sh uh r 33 | ATTACH ax t ae ch 34 | ATTAIN ax t ey n 35 | ATTEND ax t eh n d 36 | ATTRACT ax t r ae k t 37 | AUGMENT ao g m eh n t 38 | AVENGE ax v eh n jh 39 | AVOID ax v oy d 40 | BANISH b ae n ix sh 41 | BE b iy 42 | BECOME b ix k ah m 43 | BEG b eh g 44 | BEGIN b ix g ih n 45 | BEHAVE b ix hh ey v 46 | BELONG b ix l ao ng 47 | BEND b eh n d 48 | BLESS b l eh s 49 | BOG b aa g 50 | BOLSTER b ow l s t er 51 | BORROW b aa r ow 52 | BOTHER b aa dh er 53 | BREAK b r ey k 54 | BREATHE b r iy dh 55 | BRING b r ih ng 56 | BUILD b ih l d 57 | BURN b er n 58 | BURY b eh r iy 59 | BUY b ay 60 | CALCULATE k ae l k y ax l ey t 61 | CANCEL k ae n s ax l 62 | CAPTURE k ae p ch er 63 | CARRY k ae r iy 64 | CATCH k ae ch 65 | CEASE s iy s 66 | CEDE s iy d 67 | CHAT ch ae t 68 | CHEW ch uw 69 | CHOOSE ch uw z 70 | CIRCULATE s er k y ax l ey t 71 | COLLECT k ax l eh k t 72 | COMBINE k aa m b ay n 73 | COME k ah m 74 | COMMIT k ax m ih t 75 | COMMUNICATE k ax m y uw n ax k ey t 76 | COMPARE k ax m p eh r 77 | COMPEL k ax m p eh l 78 | COMPENSATE k aa m p ax n s ey t 79 | COMPILE k ax m p ay l 80 | COMPLAIN k ax m p l ey n 81 | COMPRISE k ax m p r ay z 82 | COMPUTE k ax m p y uw t 83 | CONCEIVE k ax n s iy v 84 | CONCENTRATE k aa n s ax n t r ey t 85 | CONCLUDE k ax n k l uw d 86 | CONCUR k ax n k er 87 | CONDEMN k ax n d eh m 88 | CONFER k ax n f er 89 | CONFUSE k ax n f y uw z 90 | CONQUER k aa ng k er 91 | CONSIDER k ax n s ih dx er 92 | CONSIST k ax n s ih s t 93 | CONSTRUCT k ax n s t r ah k t 94 | CONSULT k ax n s ah l t 95 | CONTAIN k ax n t ey n 96 | CONTEMPLATE k aa n t ax m p l ey t 97 | CONTINUE k ax n t ih n y uw 98 | CONTRADICT k aa n t r ax d ih k t 99 | CONVERT k aa n v er t 100 | CONVINCE k ax n v ih n s 101 | COOPERATE k ow aa p er ey t 102 | COORDINATE k ow ao r d ax n ax t 103 | COUNTENANCE k aw n t ax n ax n s 104 | COUNTERACT k aw n t er ae k t 105 | COVER k ah v er 106 | CRAWL k r ao l 107 | CREAK k r iy k 108 | CREATE k r iy ey t 109 | CROSS k r ao s 110 | CRUMBLE k r ah m b ax l 111 | CURE k y uh r 112 | CURRY k ah r iy 113 | CUT k ah t 114 | DAMP d ae m p 115 | DARE d eh r 116 | DECIDE d ix s ay d 117 | DECLARE d ix k l eh r 118 | DEFEND d ix f eh n d 119 | DEFINE d ix f ay n 120 | DELETE d ix l iy t 121 | DELIVER d ix l ih v er 122 | DENY d ix n ay 123 | DEPART d ix p aa r t 124 | DEPEND d ix p eh n d 125 | DEPRESS d ix p r eh s 126 | DEPRIVE d ix p r ay v 127 | DESCRIBE d ix s k r ay b 128 | DESPISE d ix s p ay z 129 | DESTROY d ix s t r oy 130 | DETECT d ix t eh k t 131 | DETERMINE d ax t er m ax n 132 | DEVELOP d ix v eh l ax p 133 | DEVOTE d ix v ow t 134 | DICTATE d ix k t ey t 135 | DIE d ay 136 | DIFFER d ih f er 137 | DIGEST d ay jh eh s t 138 | DIMINISH d ix m ih n ix sh 139 | DISAPPEAR d ih s ax p ih r 140 | DISAPPOINT d ih s ax p oy n t 141 | DISCERN d ix s er n 142 | DISCHARGE d ix s ch aa r jh 143 | DISCONTINUE d ix s k ax n t ih n y uw 144 | DISCOVER d ix s k ah v er 145 | DISCUSS d ix s k ah s 146 | DISGUISE d ix s g ay z 147 | DISPEL d ix s p eh l 148 | DISPENSE d ix s p eh n s 149 | DISTINGUISH d ix s t ih ng g w ix sh 150 | DISTURB d ix s t er b 151 | DON d aa n 152 | DRAW d r ao 153 | DRIFT d r ih f t 154 | DRUM d r ah m 155 | DUMP d ah m p 156 | EASE iy z 157 | EAT iy t 158 | ECLIPSE ix k l ih p s 159 | ELABORATE ix l ae b r ax t 160 | EMBARK eh m b aa r k 161 | EMERGE ix m er jh 162 | EMPLOY eh m p l oy 163 | ENABLE eh n ey b ax l 164 | ENCOUNTER ix n k aw n t er 165 | ENCOURAGE eh n k er ix jh 166 | ENDURE eh n d y uh r 167 | ENGAGE eh n g ey jh 168 | ENJOY eh n jh oy 169 | ENTER eh n t er 170 | ENTERTAIN eh n t er t ey n 171 | ERASE ix r ey s 172 | ERECT ix r eh k t 173 | ESCAPE ix s k ey p 174 | ESTABLISH ix s t ae b l ix sh 175 | EXAGGERATE ix g z ae jh er ey t 176 | EXAMINE ix g z ae m ix n 177 | EXCITE ix k s ay t 178 | EXECUTE eh k s ax k y uw t 179 | EXERT ix g z er t 180 | EXHORT ix g z ao r t 181 | EXIST ix g z ih s t 182 | EXPAND ix k s p ae n d 183 | EXPIRE ix k s p ay r 184 | EXPLAIN ix k s p l ey n 185 | EXPLORE ix k s p l ao r 186 | EXPOSE ix k s p ow z 187 | EXPRESS ix k s p r eh s 188 | EXTEND ix k s t eh n d 189 | EXTINGUISH ix k s t ih ng g w ix sh 190 | EXTRACT ix k s t r ae k t 191 | FACILITATE f ax s ih l ax t ey t 192 | FAIL f ey l 193 | FEEL f iy l 194 | FETCH f eh ch 195 | FILE f ay l 196 | FILL f ih l 197 | FIND f ay n d 198 | FINISH f ih n ix sh 199 | FIX f ih k s 200 | FLEE f l iy 201 | FLOURISH f l er ix sh 202 | FLY f l ay 203 | FOLD f ow l d 204 | FOLLOW f aa l ow 205 | FORFEIT f ao r f ix t 206 | FORGET f er g eh t 207 | FORGIVE f er g ih v 208 | FORK f ao r k 209 | GASP g ae s p 210 | GATHER g ae dh er 211 | GENERATE jh eh n er ey t 212 | GET g eh t 213 | GO g ow 214 | GRASP g r ae s p 215 | GROW g r ow 216 | HACK hh ae k 217 | HANDLE hh ae n d ax l 218 | HANG hh ae ng 219 | HAPPEN hh ae p ax n 220 | HARP hh aa r p 221 | HEAR hh ih r 222 | HEDGE hh eh jh 223 | HELP hh eh l p 224 | HIDE hh ay d 225 | HIRE hh ay er 226 | HOLD hh ow l d 227 | IDENTIFY ay d eh n t ax f ay 228 | IGNORE ix g n ao r 229 | IMAGINE ix m ae jh ax n 230 | IMPART ix m p aa r t 231 | IMPEDE ix m p iy d 232 | IMPLEMENT ih m p l ax m ax n t 233 | IMPOSE ix m p ow z 234 | IMPRESS ix m p r eh s 235 | IMPROVE ix m p r uw v 236 | INCORPORATE ix n k ao r p er ey t 237 | INCUR ix n k er 238 | INDICATE ih n d ax k ey t 239 | INDULGE ix n d ah l jh 240 | INFORM ix n f ao r m 241 | INSPIRE ix n s p ay r 242 | INSTALL ix n s t ao l 243 | INSURE ix n sh uh r 244 | INTEGRATE ih n t ax g r ey t 245 | INTEND ix n t eh n d 246 | INTERFERE ih n t er f ih r 247 | INTERPRET ix n t er p r ax t 248 | INTERRUPT ih n t er ah p t 249 | INTRODUCE ih n t r ax d uw s 250 | INVEST ix n v eh s t 251 | INVITE ix n v ay t 252 | INVOLVE ix n v aa l v 253 | ISOLATE ay s ax l ey t 254 | JOIN jh oy n 255 | JUSTIFY jh ah s t ax f ay 256 | KEEP k iy p 257 | KILL k ih l 258 | KNOCK n aa k 259 | KNOW n ow 260 | LAUNCH l ao n ch 261 | LEAD l eh d 262 | LEARN l er n 263 | LEAVE l iy v 264 | LEND l eh n d 265 | LESSEN l eh s ax n 266 | LET l eh t 267 | LET'S l eh t s 268 | LIE l ay 269 | LIFT l ih f t 270 | LISTEN l ih s ax n 271 | LOCATE l ow k ey t 272 | LOCK l aa k 273 | LODGE l aa jh 274 | LOG l ao g 275 | LOOK l uh k 276 | LOOM l uw m 277 | LOSE l uw z 278 | MAINTAIN m ey n t ey n 279 | MAKE m ey k 280 | MANAGE m ae n ax jh 281 | MANIPULATE m ax n ih p y ax l ey t 282 | MANUFACTURE m ae n y ax f ae k ch er 283 | MARRY m eh r iy 284 | MATCH m ae ch 285 | MEAN m iy n 286 | MEET m iy t 287 | MELT m eh l t 288 | MENTION m eh n sh ax n 289 | MISS m ih s 290 | MODIFY m aa dx ax f ay 291 | MOUNT m aw n t 292 | MULTIPLY m ah l t ax p l ay 293 | NAVIGATE n ae v ax g ey t 294 | NORMALIZE n ao r m ax l ay z 295 | NOTE n ow t 296 | OBTAIN ax b t ey n 297 | OCCUPY aa k y ax p ay 298 | OCCUR ax k er 299 | OPERATE aa p er ey t 300 | ORIGINATE er ih jh ax n ey t 301 | OUTLINE aw t l ay n 302 | OVERCOME ow v er k ah m 303 | OVERLAP ow v er l ae p 304 | OVERTHROW ow v er th r ow 305 | PAN p ae n 306 | PARRY p eh r iy 307 | PARTICIPATE p aa r t ih s ax p ey t 308 | PASS p ae s 309 | PEER p ih r 310 | PENETRATE p eh n ax t r ey t 311 | PERFORM p er f ao r m 312 | PERSIST p er s ih s t 313 | PERSUADE p er s w ey d 314 | PICK p ih k 315 | PILE p ay l 316 | PIN p ih n 317 | PLAGUE p l ey g 318 | PLAY p l ey 319 | PLEASE p l iy z 320 | POSSESS p ax z eh s 321 | POSTPONE p ow s t p ow n 322 | POUR p ao r 323 | PREDICT p r ix d ih k t 324 | PREFER p r ax f er 325 | PREPARE p r iy p eh r 326 | PRESAGE p r eh s ix jh 327 | PRESERVE p r ax z er v 328 | PREVENT p r ix v eh n t 329 | PROCEED p r ax s iy d 330 | PROCLAIM p r ow k l ey m 331 | PRODUCE p r ax d uw s 332 | PROMOTE p r ax m ow t 333 | PROMPT p r aa m p t 334 | PROTECT p r ax t eh k t 335 | PROVE p r uw v 336 | PROVIDE p r ax v ay d 337 | PULL p uh l 338 | PUMP p ah m p 339 | PUNISH p ah n ix sh 340 | PURSUE p er s uw 341 | PUSH p uh sh 342 | PUT p uh t 343 | QUARREL k w ao r ax l 344 | RAISE r ey z 345 | REACH r iy ch 346 | READ r eh d 347 | REALIZE r iy l ay z 348 | RECALL r iy k ao l 349 | RECEIVE r ax s iy v 350 | RECKON r eh k ax n 351 | RECOGNIZE r eh k ax g n ay z 352 | RECOMMEND r eh k ax m eh n d 353 | RECONSIDER r iy k ax n s ih dx er 354 | RECOVER r ix k ah v er 355 | REDUCE r ax d uw s 356 | REFRAIN r ix f r ey n 357 | REGISTER r eh jh ix s t er 358 | REGULATE r eh g y ax l ey t 359 | RELAX r ix l ae k s 360 | REMAIN r ix m ey n 361 | REMEMBER r ix m eh m b er 362 | REMOVE r iy m uw v 363 | RENDER r eh n d er 364 | RENEW r ix n uw 365 | REPAY r iy p ey 366 | REPLACE r iy p l ey s 367 | REPRESENT r eh p r ax z eh n t 368 | REPRODUCE r iy p r ax d uw s 369 | REQUIRE r iy k w ay er 370 | RESEMBLE r ix z eh m b ax l 371 | RESIST r ix z ih s t 372 | RESOLVE r iy z aa l v 373 | RESPOND r ix s p aa n d 374 | RESTATE r iy s t ey t 375 | RESTORE r ix s t ao r 376 | RESTRICT r iy s t r ih k t 377 | RESUME r ix z uw m 378 | RETAIN r ix t ey n 379 | RETRIEVE r ix t r iy v 380 | REVEAL r ix v iy l 381 | REVERSE r ix v er s 382 | RID r ih d 383 | RUIN r uw ax n 384 | RUN r ah n 385 | SACRIFICE s ae k r ax f ay s 386 | SAP s ae p 387 | SATISFY s ae dx ax s f ay 388 | SAVE s ey v 389 | SCAN s k ae n 390 | SCARE s k eh r 391 | SCRAP s k r ae p 392 | SEEK s iy k 393 | SEIZE s iy z 394 | SELL s eh l 395 | SEND s eh n d 396 | SEQUESTER s ix k w eh s t er 397 | SERVE s er v 398 | SETTLE s eh dx ax l 399 | SHAKE sh ey k 400 | SHARPEN sh aa r p ax n 401 | SHAVE sh ey v 402 | SHED sh eh d 403 | SHIRK sh er k 404 | SHOOT sh uw t 405 | SHORE sh ao r 406 | SHOVE sh ah v 407 | SHOWER sh aw er 408 | SHRINK sh r ih ng k 409 | SIGNAL s ih g n ax l 410 | SIGNIFY s ih g n ax f ay 411 | SIMPLIFY s ih m p l ax f ay 412 | SING s ih ng 413 | SIT s ih t 414 | SKIM s k ih m 415 | SKIP s k ih p 416 | SLEEP s l iy p 417 | SNARE s n eh r 418 | SOB s aa b 419 | SOLVE s aa l v 420 | SOOTHE s uw dh 421 | SPEAK s p iy k 422 | SPECIFY s p eh s ax f ay 423 | SPECULATE s p eh k y ax l ey t 424 | SPELL s p eh l 425 | SPEND s p eh n d 426 | SPRUCE s p r uw s 427 | SPUR s p er 428 | STAND s t ae n d 429 | STAY s t ey 430 | STEAL s t iy l 431 | STEER s t ih r 432 | STICK s t ih k 433 | STIMULATE s t ih m y ax l ey t 434 | STIR s t er 435 | STOP s t aa p 436 | STRAIGHTEN s t r ey t ax n 437 | STROLL s t r ow l 438 | STUMBLE s t ah m b ax l 439 | SUBMIT s ax b m ih t 440 | SUCCEED s ax k s iy d 441 | SUFFER s ah f er 442 | SUMMARIZE s ah m er ay z 443 | SUPPRESS s ax p r eh s 444 | SURVIVE s er v ay v 445 | SUSPEND s ax s p eh n d 446 | SUSTAIN s ax s t ey n 447 | SWALLOW s w aa l ow 448 | SWAMP s w aa m p 449 | SWAY s w ey 450 | SWEAR s w eh r 451 | SWELL s w eh l 452 | TAKE t ey k 453 | TAKETH t ey k ax th 454 | TAP t ae p 455 | TEACH t iy ch 456 | TEAR t eh r 457 | TELL t eh l 458 | TERMINATE t er m ax n ey t 459 | TESTIFY t eh s t ax f ay 460 | THANK th ae ng k 461 | THREATEN th r eh t ax n 462 | THROW th r ow 463 | TOLERATE t aa l er ey t 464 | TRACE t r ey s 465 | TRANSFER t r ae n s f er 466 | TRANSLATE t r ae n z l ey t 467 | TRANSMIT t r ae n z m ih t 468 | TREAT t r iy t 469 | TRICKLE t r ih k ax l 470 | TRIM t r ih m 471 | TRY t r ay 472 | TURN t er n 473 | UNDERGO ah n d er g ow 474 | UNDERSTAND ah n d er s t ae n d 475 | UNDERTAKE ah n d er t ey k 476 | UNFOLD ax n f ow l d 477 | UNITE y uw n ay t 478 | UPDATE ax p d ey t 479 | VANISH v ae n ix sh 480 | VERIFY v eh r ax f ay 481 | VIOLATE v ay ax l ey t 482 | VITIATE v iy sh iy ey t 483 | WADE w ey d 484 | WAIL w ey l 485 | WAIT w ey t 486 | WALK w ao k 487 | WANDER w aa n d er 488 | WARD w ao r d 489 | WARN w ao r n 490 | WATCH w aa ch 491 | WEAKEN w iy k ax n 492 | WEAR w eh r 493 | WEIGH w ey 494 | WIELD w iy l d 495 | WIN w ih n 496 | WIPE w ay p 497 | WITHDRAW w ix dh d r ao 498 | WITHSTAND w ix th s t ae n d 499 | WORRY w er iy 500 | WRITE r ay t 501 | WRUNG r ah ng 502 | YIELD y iy l d 503 | -------------------------------------------------------------------------------- /dictionaries/verb-past-participle: -------------------------------------------------------------------------------- 1 | ABANDONED ax b ae n d ax n d 2 | ABETTED ax b eh dx ix d 3 | ABOLISHED ax b aa l ix sh t 4 | ABSORBED ax b z ao r b d 5 | ACCEPTED ae k s eh p t ix d 6 | ACCOMPANIED ax k ah m p ax n iy d 7 | ACCOMPLISHED ax k aa m p l ix sh t 8 | ACCRUED ax k r uw d 9 | ACCUMULATED ax k y uw m y ax l ey dx ix d 10 | ACCUSED ax k y uw z d 11 | ACHIEVED ax ch iy v d 12 | ACQUAINTED ax k w ey n t ix d 13 | ACQUIRED ax k w ay er d 14 | ADAPTED ax d ae p t ax d 15 | ADDRESSED ax d r eh s t 16 | ADMINISTERED ax d m ih n ax s t er d 17 | ADMIRED ax d m ay er d 18 | ADOPTED ax d aa p t ax d 19 | ADVERTISED ae d v er t ay z d 20 | AFFECTED ax f eh k t ax d 21 | AFFILIATED ax f ih l iy ey dx ax d 22 | AFFLICTED ax f l ih k t ax d 23 | AFFORDED ax f ao r dx ax d 24 | AGED ey jh d 25 | AGITATED ae jh ax t ey dx ax d 26 | AIDED ey dx ax d 27 | AIMED ey m d 28 | ALARMED ax l aa r m d 29 | ALLAYED ax l ey d 30 | ALLOWED ax l aw d 31 | ALTERED ao l t er d 32 | AMASSED ax m ae s t 33 | AMENDED ax m eh n d ax d 34 | AMUSED ax m y uw z d 35 | ANCHORED ae ng k er d 36 | ANSWERED ae n s er d 37 | ANTICIPATED ae n t ih s ax p ey dx ax d 38 | APPLIED ax p l ay d 39 | APPOINTED ax p oy n t ax d 40 | APPRECIATED ax p r iy sh iy ey dx ix d 41 | APPROACHED ax p r ow ch t 42 | AROUSED er aw z d 43 | ARRANGED er ey n jh d 44 | ARRESTED er eh s t ax d 45 | ASCRIBED ax s k r ay b d 46 | ASSEMBLED ax s eh m b ax l d 47 | ASSIGNED ax s ay n d 48 | ASSISTED ax s ih s t ax d 49 | ASSOCIATED ax s ow s iy ey dx ax d 50 | ASSUMED ax s uw m d 51 | ASSURED ax sh uh r d 52 | ATTACHED ax t ae ch t 53 | ATTACKED ax t ae k t 54 | ATTAINED ax t ey n d 55 | ATTEMPTED ax t eh m p t ax d 56 | ATTRACTED ax t r ae k t ax d 57 | AUTHORIZED ao th er ay z d 58 | AVERTED ax v er dx ax d 59 | BANISHED b ae n ix sh t 60 | BARRED b aa r d 61 | BASED b ey s t 62 | BATTERED b ae dx er d 63 | BEAMED b iy m d 64 | BEATEN b iy t ax n 65 | BEEN b ih n 66 | BEGUN b ix g ah n 67 | BELIEVED b ix l iy v d 68 | BESET b ix s eh t 69 | BESTOWED b ix s t ow d 70 | BEWITCHED b ix w ih ch t 71 | BITTEN b ih t ax n 72 | BLOCKED b l aa k t 73 | BLOWN b l ow n 74 | BLUNTED b l ah n t ax d 75 | BOASTED b ow s t ax d 76 | BOLTED b ow l t ax d 77 | BORDERED b ao r dx er d 78 | BORED b ao r d 79 | BORN b ao r n 80 | BORNE b ao r n 81 | BORROWED b aa r ow d 82 | BOUND b aw n d 83 | BRANCHED b r ae n ch t 84 | BRED b r eh d 85 | BRIGHTENED b r ay t ax n d 86 | BROKEN b r ow k ax n 87 | BROUGHT b r ao t 88 | BRUSHED b r ah sh t 89 | BUILT b ih l t 90 | BURIED b eh r iy d 91 | BURNED b er n d 92 | CALCULATED k ae l k y ax l ey dx ax d 93 | CALLED k ao l d 94 | CAPTURED k ae p ch er d 95 | CAUGHT k aa t 96 | CAUSED k aa z d 97 | CENTERED s eh n t er d 98 | CHALLENGED ch ae l ax jh d 99 | CHANGED ch ey n jh d 100 | CHARGED ch aa r jh d 101 | CHARRED ch aa r d 102 | CHASTISED ch ae s t ay z d 103 | CHECKED ch eh k t 104 | CHERISHED ch eh r ix sh t 105 | CHOKED ch ow k t 106 | CHOPPED ch aa p t 107 | CHOSEN ch ow z ax n 108 | CIRCULATED s er k y ax l ey dx ax d 109 | CLEARED k l ih r d 110 | CLUSTERED k l ah s t er d 111 | CODED k ow dx ix d 112 | COLLECTED k ax l eh k t ax d 113 | COLORED k ah l er d 114 | COMBINED k ax m b ay n d 115 | COMFORTED k ah m f er dx ix d 116 | COMMANDED k ax m ae n d ax d 117 | COMMITTED k ax m ih dx ax d 118 | COMMUNICATED k ax m y uw n ax k ey dx ix d 119 | COMPARED k ax m p eh r d 120 | COMPELLED k ax m p eh l d 121 | COMPILED k ax m p ay l d 122 | COMPLETED k ax m p l iy dx ax d 123 | COMPOSED k ax m p ow z d 124 | COMPRESSED k ax m p r eh s t 125 | COMPRISED k ax m p r ay z d 126 | CONCEIVED k ax n s iy v d 127 | CONCERNED k ax n s er n d 128 | CONDUCTED k ax n d ah k t ax d 129 | CONFINED k ax n f ay n d 130 | CONNECTED k ax n eh k t ax d 131 | CONSIDERED k ax n s ih dx er d 132 | CONSTRUCTED k ax n s t r ah k t ax d 133 | CONSUMED k ax n s uw m d 134 | CONTACTED k aa n t ae k t ix d 135 | CONTAINED k ax n t ey n d 136 | CONTEMPLATED k aa n t ax m p l ey dx ix d 137 | CONTESTED k ax n t eh s t ax d 138 | CONTINUED k ax n t ih n y uw d 139 | CONTROLLED k ax n t r ow l d 140 | CONVERTED k ax n v er dx ix d 141 | COOLED k uw l d 142 | CORRECTED k er eh k t ax d 143 | COUNTED k aw n t ax d 144 | COUPLED k ah p ax l d 145 | COVERED k ah v er d 146 | CRACKED k r ae k t 147 | CREATED k r iy ey dx ax d 148 | CREPT k r eh p t 149 | CRITICIZED k r ih dx ax s ay z d 150 | CROSSED k r ao s t 151 | CROWNED k r aw n d 152 | CRUSHED k r ah sh t 153 | CULTIVATED k ah l t ax v ey dx ax d 154 | CURTAILED k er t ey l d 155 | DASHED d ae sh t 156 | DATED d ey dx ix d 157 | DEBATED d ax b ey dx ix d 158 | DECORATED d eh k er ey dx ax d 159 | DECREED d ix k r iy d 160 | DEEMED d iy m d 161 | DEFINED d ix f ay n d 162 | DELIVERED d ix l ih v er d 163 | DEMONSTRATED d eh m ax n s t r ey dx ax d 164 | DENIED d ix n ay d 165 | DEPICTED d ix p ih k t ax d 166 | DEPRIVED d ix p r ay v d 167 | DERIVED d er ay v d 168 | DESCRIBED d ix s k r ay b d 169 | DESERTED d ix z er dx ix d 170 | DESIGNED d ix z ay n d 171 | DESIRED d ix z ay er d 172 | DESPISED d ix s p ay z d 173 | DESTINED d eh s t ix n d 174 | DESTROYED d ix s t r oy d 175 | DETECTED d ix t eh k t ax d 176 | DETERMINED d ix t er m ax n d 177 | DEVELOPED d ix v eh l ax p t 178 | DEVISED d ix v ay z d 179 | DEVOTED d ix v ow dx ax d 180 | DEVOURED d ix v aw er d 181 | DIMINISHED d ix m ih n ix sh t 182 | DINED d ay n d 183 | DIRECTED d er eh k t ax d 184 | DISCARDED d ix s k aa r dx ix d 185 | DISCHARGED d ix s ch aa r jh d 186 | DISCOURAGED d ix s k er ax jh d 187 | DISCOVERED d ix s k ah v er d 188 | DISCUSSED d ix s k ah s t 189 | DISGUISED d ix s g ay z d 190 | DISINCLINED d ih s ix n k l ay n d 191 | DISMISSED d ix s m ih s t 192 | DISPATCHED d ix s p ae ch t 193 | DISPLAYED d ix s p l ey d 194 | DISPUTED d ix s p y uw dx ax d 195 | DISSECTED d ay s eh k t ax d 196 | DISSENTED d ix s eh n t ix d 197 | DISSIPATED d ih s ax p ey dx ix d 198 | DISSOLVED d ix z aa l v d 199 | DISTRIBUTED d ix s t r ih b y ax dx ax d 200 | DISTURBED d ix s t er b d 201 | DIVIDED d ix v ay dx ax d 202 | DOCUMENTED d aa k y ax m eh n t ax d 203 | DOMINATED d aa m ax n ey dx ax d 204 | DONE d ah n 205 | DOOMED d uw m d 206 | DRAGGED d r ae g d 207 | DRAWN d r ao n 208 | DREADED d r eh dx ix d 209 | DREAMED d r iy m d 210 | DRESSED d r eh s t 211 | DRILLED d r ih l d 212 | DRIVEN d r ih v ax n 213 | DULLED d ah l d 214 | DWARFED d w ao r f t 215 | EATEN iy t ax n 216 | EDUCATED eh jh ax k ey dx ax d 217 | ELECTED ix l eh k t ax d 218 | ELIMINATED ix l ih m ax n ey dx ax d 219 | EMBEDDED eh m b eh dx ix d 220 | EMBODIED ix m b aa dx iy d 221 | EMITTED ix m ih dx ax d 222 | EMPLOYED eh m p l oy d 223 | EMPTIED eh m p t iy d 224 | ENABLED eh n ey b ax l d 225 | ENACTED eh n ae k t ax d 226 | ENCLOSED eh n k l ow z d 227 | ENCOURAGED eh n k er ix jh d 228 | ENCRUSTED eh n k r ah s t ix d 229 | ENDOWED eh n d aw d 230 | ENFORCED eh n f ao r s t 231 | ENGAGED eh n g ey jh d 232 | ENJOYED eh n jh oy d 233 | ENTAILED ix n t ey l d 234 | ENTERED eh n t er d 235 | ENTERTAINED eh n t er t ey n d 236 | ENTITLED eh n t ay dx ax l d 237 | ENTRUSTED eh n t r ah s t ix d 238 | EQUIPPED ix k w ih p t 239 | ERECTED ix r eh k t ax d 240 | ESTABLISHED ix s t ae b l ix sh t 241 | ESTIMATED eh s t ax m ey dx ax d 242 | EVALUATED ix v ae l y uw ey dx ax d 243 | EXCHANGED ix k s ch ey n jh d 244 | EXCLUDED ix k s k l uw dx ax d 245 | EXECUTED eh k s ax k y uw dx ax d 246 | EXEMPTED ix g z eh m p t ix d 247 | EXERTED ix g z er dx ix d 248 | EXHAUSTED ix g z ao s t ax d 249 | EXHIBITED ix g z ih b ax dx ax d 250 | EXPECTED ix k s p eh k t ax d 251 | EXPENDED ix k s p eh n d ix d 252 | EXPORTED ix k s p ao r dx ax d 253 | EXPOSED ix k s p ow z d 254 | EXTENDED ix k s t eh n d ax d 255 | EXTRACTED ix k s t r ae k t ax d 256 | FACED f ey s t 257 | FALLEN f aa l ax n 258 | FASCINATED f ae s ax n ey dx ax d 259 | FASHIONED f ae sh ax n d 260 | FAVORED f ey v er d 261 | FEARED f ih r d 262 | FEASTED f iy s t ix d 263 | FED f eh d 264 | FILLED f ih l d 265 | FINGERED f ih ng g er d 266 | FIRED f ay er d 267 | FIXED f ih k s t 268 | FLIRTED f l er dx ix d 269 | FLOURISHED f l er ix sh t 270 | FOLLOWED f aa l ow d 271 | FORBIDDEN f ao r b ix d ax n 272 | FORCED f ao r s t 273 | FORESEEN f ao r s iy n 274 | FORESHADOWED f ao r sh ae dx ow d 275 | FORGIVEN f er g ih v ax n 276 | FORGOT f er g aa t 277 | FORGOTTEN f er g aa t ax n 278 | FORMED f ao r m d 279 | FORMULATED f ao r m y ax l ey dx ax d 280 | FOUNDED f aw n d ax d 281 | FRAMED f r ey m d 282 | FRIED f r ay d 283 | FROZEN f r ow z ax n 284 | FURNISHED f er n ix sh t 285 | GATHERED g ae dh er d 286 | GENERATED jh eh n er ey dx ax d 287 | GIVEN g ih v ax n 288 | GLUED g l uw d 289 | GONE g ao n 290 | GOTTEN g aa t ax n 291 | GOVERNED g ah v er n d 292 | GRANTED g r ae n t ax d 293 | GREETED g r iy dx ax d 294 | GROUNDED g r aw n d ix d 295 | GROWN g r ow n 296 | GUARDED g aa r dx ax d 297 | GUIDED g ay dx ax d 298 | HALTED hh ao l t ax d 299 | HANDED hh ae n d ax d 300 | HANDLED hh ae n d ax l d 301 | HANGED hh ae ng d 302 | HASTENED hh ey s ax n d 303 | HATCHED hh ae ch t 304 | HAUNTED hh ao n t ax d 305 | HEADED hh eh dx ax d 306 | HEARD hh er d 307 | HEIGHTENED hh ay t ax n d 308 | HELD hh eh l d 309 | HEWN hh y uw n 310 | HIDDEN hh ih d ax n 311 | HIRED hh ay er d 312 | HIT hh ih t 313 | HOPED hh ow p t 314 | HUNTED hh ah n t ax d 315 | HURLED hh er l d 316 | HURT hh er t 317 | HYPNOTIZED hh ih p n ax t ay z d 318 | HYPOTHESIZED hh ay p aa th ax s ay z d 319 | IDENTIFIED ay d eh n t ax f ay d 320 | IGNITED ix g n ay dx ix d 321 | IGNORED ix g n ao r d 322 | ILLUSTRATED ih l ax s t r ey dx ax d 323 | IMPAIRED ix m p eh r d 324 | IMPLEMENTED ih m p l ax m eh n t ax d 325 | IMPLIED ix m p l ay d 326 | IMPORTED ix m p ao r dx ix d 327 | IMPOSED ix m p ow z d 328 | IMPRISONED ix m p r ih z ax n d 329 | IMPROVED ix m p r uw v d 330 | INAUGURATED ix n ao g er ey dx ix d 331 | INCLINED ix n k l ay n d 332 | INCORPORATED ix n k ao r p er ey dx ax d 333 | INCREASED ix n k r iy s t 334 | INFERRED ix n f er d 335 | INFLUENCED ih n f l uw ax n s t 336 | INFORMED ix n f ao r m d 337 | INHABITED ix n hh ae b ax dx ax d 338 | INITIATED ix n ih sh iy ey dx ax d 339 | INJURED ih n jh er d 340 | INSPIRED ix n s p ay er d 341 | INSTALLED ix n s t ao l d 342 | INSTITUTED ih n s t ax t uw dx ax d 343 | INSURED ix n sh uh r d 344 | INTEGRATED ih n t ax g r ey dx ax d 345 | INTENDED ix n t eh n d ax d 346 | INTERPRETED ix n t er p r ax dx ax d 347 | INTRODUCED ih n t r ax d uw s t 348 | INVESTIGATED ix n v eh s t ax g ey dx ax d 349 | INVITED ix n v ay dx ax d 350 | INVOLVED ix n v aa l v d 351 | ISOLATED ay s ax l ey dx ax d 352 | ISSUED ih sh uw d 353 | JAMMED jh ae m d 354 | JUDGED jh ah jh d 355 | KICKED k ih k t 356 | KIDNAPPED k ih d n ae p t 357 | KILLED k ih l d 358 | KNOWN n ow n 359 | LACED l ey s t 360 | LAID l ey d 361 | LASTED l ae s t ax d 362 | LAUNCHED l ao n ch t 363 | LEANED l iy n d 364 | LED l eh d 365 | LEFT l eh f t 366 | LENGTHENED l eh ng th ax n d 367 | LIFTED l ih f t ax d 368 | LIGHTED l ay dx ax d 369 | LINED l ay n d 370 | LINKED l ih ng k t 371 | LOADED l ow dx ax d 372 | LOCATED l ow k ey dx ax d 373 | LOCKED l aa k t 374 | LOST l ao s t 375 | MADE m ey d 376 | MAINTAINED m ey n t ey n d 377 | MANAGED m ae n ax jh d 378 | MANUFACTURED m ae n y ax f ae k ch er d 379 | MASTERED m ae s t er d 380 | MATCHED m ae ch t 381 | MEANT m eh n t 382 | MEASURED m eh zh er d 383 | MELLOWED m eh l ow d 384 | MENTIONED m eh n sh ax n d 385 | MET m eh t 386 | MINIATURIZED m ih n ix ch er ay z d 387 | MISSED m ih s t 388 | MODIFIED m aa dx ax f ay d 389 | MOLDED m ow l d ax d 390 | MURDERED m er dx er d 391 | NAILED n ey l d 392 | NAMED n ey m d 393 | NARROWED n eh r ow d 394 | NECESSITATED n ax s eh s ax t ey dx ax d 395 | NEEDED n iy dx ax d 396 | NEGLECTED n ax g l eh k t ax d 397 | NEGOTIATED n ax g ow sh iy ey dx ax d 398 | OBLIGED ax b l ay jh d 399 | OBTAINED ax b t ey n d 400 | OFFSET ao f s eh t 401 | OPERATED aa p er ey dx ax d 402 | OPPOSED ax p ow z d 403 | ORDAINED ao r d ey n d 404 | ORDERED ao r dx er d 405 | ORGANIZED ao r g ax n ay z d 406 | ORIGINATED er ih jh ax n ey dx ax d 407 | OVERLOOKED ow v er l uh k t 408 | OVERSTATED ow v er s t ey dx ix d 409 | OWED ow d 410 | OWNED ow n d 411 | PACKED p ae k t 412 | PAID p ey d 413 | PAINTED p ey n t ax d 414 | PARKED p aa r k t 415 | PASSED p ae s t 416 | PEELED p iy l d 417 | PERCEIVED p er s iy v d 418 | PERFORMED p er f ao r m d 419 | PERMITTED p er m ih dx ax d 420 | PERSUADED p er s w ey dx ax d 421 | PICKED p ih k t 422 | PICTURED p ih k ch er d 423 | PILED p ay l d 424 | PINCHED p ih n ch t 425 | PINNED p ih n d 426 | PITCHED p ih ch t 427 | PLACED p l ey s t 428 | PLANNED p l ae n d 429 | PLANTED p l ae n t ax d 430 | PLAYED p l ey d 431 | POISED p oy z d 432 | POUNDED p aw n d ix d 433 | POURED p ao r d 434 | PRECEDED p r ix s iy dx ix d 435 | PREOCCUPIED p r iy aa k y ax p ay d 436 | PREPARED p r iy p eh r d 437 | PRESCRIBED p r iy s k r ay b d 438 | PRESENTED p r iy z eh n t ax d 439 | PRESERVED p r ax z er v d 440 | PRESSED p r eh s t 441 | PREVENTED p r ix v eh n t ix d 442 | PRICED p r ay s t 443 | PRINTED p r ih n t ax d 444 | PRIZED p r ay z d 445 | PRODUCED p r ax d uw s t 446 | PROFESSED p r ax f eh s t 447 | PROGRAMMED p r ow g r ae m d 448 | PROMISED p r aa m ax s t 449 | PROMOTED p r ax m ow dx ax d 450 | PROPELLED p r ax p eh l d 451 | PROPOSED p r ax p ow z d 452 | PROSPERED p r aa s p er d 453 | PROTECTED p r ax t eh k t ax d 454 | PROVED p r uw v d 455 | PROVIDED p r ax v ay dx ax d 456 | PROVOKED p r ax v ow k t 457 | PUBLISHED p ah b l ix sh t 458 | PUNISHED p ah n ix sh t 459 | PURCHASED p er ch ax s t 460 | PURSUED p er s uw d 461 | PUSHED p uh sh t 462 | PUZZLED p ah z ax l d 463 | QUALIFIED k w aa l ax f ay d 464 | QUIETED k w ay ax dx ax d 465 | QUOTED k w ow dx ax d 466 | RAGED r ey jh d 467 | RAIDED r ey dx ix d 468 | RAISED r ey z d 469 | RAREFIED r eh r ax f ay d 470 | RATED r ey dx ax d 471 | REACHED r iy ch t 472 | RECEIVED r ax s iy v d 473 | RECLAIMED r iy k l ey m d 474 | RECOGNIZED r eh k ax g n ay z d 475 | RECORDED r ax k ao r dx ax d 476 | RECRUITED r ix k r uw dx ix d 477 | REDEEMED r ix d iy m d 478 | REDUCED r ax d uw s t 479 | REGAINED r iy g ey n d 480 | REGARDED r ax g aa r dx ax d 481 | REGISTERED r eh jh ix s t er d 482 | REGULATED r eh g y ax l ey dx ax d 483 | REJECTED r ix jh eh k t ix d 484 | RELATED r ix l ey dx ix d 485 | RELAXED r ix l ae k s t 486 | RELEASED r iy l iy s t 487 | RELIED r ix l ay d 488 | RELIEVED r ix l iy v d 489 | REMEMBERED r ix m eh m b er d 490 | REMOVED r iy m uw v d 491 | RENDERED r eh n d er d 492 | RENEWED r ix n uw d 493 | REPAIRED r ix p eh r d 494 | REPEATED r ix p iy dx ix d 495 | REPLACED r iy p l ey s t 496 | REQUESTED r ix k w eh s t ix d 497 | RESERVED r ix z er v d 498 | RESISTED r ix z ih s t ix d 499 | RESOLVED r iy z aa l v d 500 | RESPECTED r ix s p eh k t ix d 501 | RESTORED r ix s t ao r d 502 | RESTRICTED r iy s t r ih k t ax d 503 | RETAINED r ix t ey n d 504 | RETIRED r ix t ay r d 505 | RETRIEVED r iy t r iy v d 506 | RETURNED r ix t er n d 507 | REVIVED r ix v ay v d 508 | REWARDED r ix w ao r dx ix d 509 | RIGHTED r ay dx ix d 510 | RISEN r ih z ax n 511 | RIVETED r ih v ax dx ix d 512 | ROBBED r aa b d 513 | ROLLED r ow l d 514 | ROOTED r uw dx ax d 515 | ROUTED r uw dx ax d 516 | RUPTURED r ah p ch er d 517 | SATISFIED s ae dx ax s f ay d 518 | SATURATED s ae ch er ey dx ax d 519 | SAVED s ey v d 520 | SCARRED s k aa r d 521 | SCATTERED s k ae dx er d 522 | SCRATCHED s k r ae ch t 523 | SCUTTLED s k ah dx ax l d 524 | SEALED s iy l d 525 | SEATED s iy dx ax d 526 | SECURED s ix k y uh r d 527 | SEEDED s iy dx ax d 528 | SEEN s iy n 529 | SEIZED s iy z d 530 | SELECTED s ax l eh k t ax d 531 | SEPARATED s eh p er ey dx ax d 532 | SERVED s er v d 533 | SET s eh t 534 | SETTLED s eh dx ax l d 535 | SHAKEN sh ey k ax n 536 | SHAPED sh ey p t 537 | SHARED sh eh r d 538 | SHIFTED sh ih f t ax d 539 | SHIPPED sh ih p t 540 | SHOCKED sh aa k t 541 | SHOWN sh ow n 542 | SHRUNK sh r ah ng k 543 | SHUT sh ah t 544 | SIDED s ay dx ax d 545 | SIGNED s ay n d 546 | SITUATED s ih ch uw ey dx ix d 547 | SLAIN s l ey n 548 | SLAUGHTERED s l ao dx er d 549 | SMELT s m eh l t 550 | SNAPPED s n ae p t 551 | SOLD s ow l d 552 | SOLICITED s ax l ih s ix dx ix d 553 | SOLVED s aa l v d 554 | SOUGHT s ao t 555 | SPARED s p eh r d 556 | SPECIFIED s p eh s ax f ay d 557 | SPED s p eh d 558 | SPENT s p eh n t 559 | SPOKEN s p ow k ax n 560 | SPRUNG s p r ah ng 561 | SPUN s p ah n 562 | SQUARED s k w eh r d 563 | STARVED s t aa r v d 564 | STATED s t ey dx ax d 565 | STIMULATED s t ih m y ax l ey dx ax d 566 | STOLEN s t ow l ax n 567 | STRANDED s t r ae n d ax d 568 | STRAPPED s t r ae p t 569 | STRETCHED s t r eh ch t 570 | STREWN s t r uw n 571 | STRICKEN s t r ih k ax n 572 | STRIPPED s t r ih p t 573 | STUCK s t ah k 574 | STUDDED s t ah dx ix d 575 | STUDIED s t ah dx iy d 576 | STUNG s t ah ng 577 | STUNTED s t ah n t ix d 578 | SUBDUED s ax b d uw d 579 | SUBMITTED s ax b m ih dx ax d 580 | SUBSIDED s ax b s ay dx ix d 581 | SUCCEEDED s ax k s iy dx ax d 582 | SUED s uw d 583 | SUITED s uw dx ax d 584 | SUMMONED s ah m ax n d 585 | SUNG s ah ng 586 | SUNK s ah ng k 587 | SUPPLIED s ax p l ay d 588 | SUPPORTED s ax p ao r dx ax d 589 | SUPPOSED s ax p ow z d 590 | SUPPRESSED s ax p r eh s t 591 | SURPASSED s er p ae s t 592 | SURPRISED s er p r ay z d 593 | SURROUNDED s er aw n d ax d 594 | SURVEYED s er v ey d 595 | SURVIVED s er v ay v d 596 | SUSPECTED s ax s p eh k t ax d 597 | SUSPENDED s ax s p eh n d ax d 598 | SWALLOWED s w aa l ow d 599 | SWATHED s w aa dh d 600 | SWAYED s w ey d 601 | SWEPT s w eh p t 602 | SWITCHED s w ih ch t 603 | TAKEN t ey k ax n 604 | TALKED t ao k t 605 | TAPPED t ae p t 606 | TEMPERED t eh m p er d 607 | TEMPTED t eh m p t ax d 608 | TENDED t eh n d ax d 609 | TENDERED t eh n d er d 610 | TERRIFIED t eh r ax f ay d 611 | TESTED t eh s t ax d 612 | THREATENED th r eh t ax n d 613 | THRILLED th r ih l d 614 | THROWN th r ow n 615 | THWARTED th w ao r dx ax d 616 | TIED t ay d 617 | TOSSED t ao s t 618 | TOUCHED t ah ch t 619 | TRACKED t r ae k t 620 | TRAINED t r ey n d 621 | TRANSFERRED t r ae n s f er d 622 | TRANSFORMED t r ae n s f ao r m d 623 | TRANSMITTED t r ae n s m ih dx ix d 624 | TRANSPORTED t r ae n s p ao r dx ax d 625 | TRAPPED t r ae p t 626 | TREATED t r iy dx ax d 627 | TRIMMED t r ih m d 628 | TROTTED t r aa dx ax d 629 | TRUSTED t r ah s t ix d 630 | TUCKED t ah k t 631 | UNDERESTIMATED ah n d er eh s t ax m ey dx ix d 632 | UNDERGONE ah n d er g ao n 633 | UNDERSTOOD ah n d er s t uh d 634 | UNDERTAKEN ah n d er t ey k ax n 635 | UNDONE ax n d ah n 636 | UPDATED ax p d ey dx ax d 637 | URGED er jh d 638 | USED y uw z d 639 | VANISHED v ae n ix sh t 640 | VERIFIED v eh r ax f ay d 641 | VIEWED v y uw d 642 | WARMED w ao r m d 643 | WARRANTED w ao r ax n t ix d 644 | WASHED w aa sh t 645 | WASTED w ey s t ax d 646 | WATCHED w aa ch t 647 | WEDDED w eh dx ax d 648 | WELCOMED w eh l k ax m d 649 | WHIPPED w ih p t 650 | WHISPERED w ih s p er d 651 | WHISTLED w ih s ax l d 652 | WIPED w ay p t 653 | WISHED w ih sh t 654 | WITHDRAWN w ix th d r ao n 655 | WOUNDED w uw n d ax d 656 | WRAPPED r ae p t 657 | WRITTEN r ih t ax n 658 | WRONGED r ao ng d 659 | -------------------------------------------------------------------------------- /dictionaries/verb-past-tense: -------------------------------------------------------------------------------- 1 | ABOUNDED ax b aw n d ix d 2 | ACCELERATED ae k s eh l er ey dx ix d 3 | ACCOUNTED ax k aw n t ax d 4 | ACKNOWLEDGED ae k n aa l ix jh d 5 | ACTED ae k t ax d 6 | ADDED ae dx ax d 7 | ADMITTED ax d m ih dx ax d 8 | AFFIRMED ax f er m d 9 | AGREED ax g r iy d 10 | ALLIED ax l ay d 11 | ALLUDED ax l uw dx ax d 12 | ANNOUNCED ax n aw n s t 13 | APOLOGIZED ax p aa l ax jh ay z d 14 | APPEALED ax p iy l d 15 | APPEARED ax p ih r d 16 | APPLAUDED ax p l ao dx ax d 17 | APPROVED ax p r uw v d 18 | ARGUED aa r g y uw d 19 | AROSE er ow z 20 | ARRIVED er ay v d 21 | ASKED ae s k t 22 | ASSASSINATED ax s ae s ax n ey dx ax d 23 | ASSERTED ax s er dx ax d 24 | ATE ey t 25 | ATTENDED ax t eh n d ax d 26 | ATTRIBUTED ax t r ih b y ax dx ax d 27 | AVOIDED ax v oy dx ax d 28 | AWAITED ax w ey dx ax d 29 | BECAME b ix k ey m 30 | BEGAN b ix g ae n 31 | BEHAVED b ix hh ey v d 32 | BELONGED b ix l ao ng d 33 | BENEFITED b eh n ax f ih dx ix d 34 | BEQUEATHED b ax k w iy th t 35 | BLASTED b l ae s t ax d 36 | BLED b l eh d 37 | BLEW b l uw 38 | BLURRED b l er d 39 | BORE b ao r 40 | BOUGHT b aa t 41 | BOWED b aw d 42 | BRANDISHED b r ae n d ix sh t 43 | BREATHED b r iy dh d 44 | BROKE b r ow k 45 | CAME k ey m 46 | CAMPED k ae m p t 47 | CARED k eh r d 48 | CARRIED k ae r iy d 49 | CARTED k aa r dx ix d 50 | CEASED s iy s t 51 | CHASED ch ey s t 52 | CHEERED ch ih r d 53 | CHOSE ch ow z 54 | CLAMBERED k l ae m b er d 55 | CLIMBED k l ay m d 56 | CLOSED k l ow z d 57 | CLUBBED k l ah b d 58 | COMMENCED k ax m eh n s t 59 | COMPLAINED k ax m p l ey n d 60 | CONCLUDED k ax n k l uw dx ax d 61 | CONCURRED k ax n k er d 62 | CONFERRED k ax n f er d 63 | CONFESSED k ax n f eh s t 64 | CONFIRMED k ax n f er m d 65 | CONSENTED k ax n s eh n t ix d 66 | CONSISTED k ax n s ih s t ax d 67 | CONSTITUTED k aa n s t ax t uw dx ax d 68 | CONTENDED k ax n t eh n d ix d 69 | CONTRACTED k aa n t r ae k t ax d 70 | CONTRIBUTED k ax n t r ih b y uw dx ix d 71 | COOPERATED k ow aa p er ey dx ax d 72 | CRASHED k r ae sh t 73 | CRAWLED k r ao l d 74 | CROONED k r uw n d 75 | CROUCHED k r aw ch t 76 | CURLED k er l d 77 | DEALT d eh l t 78 | DECIDED d ix s ay dx ix d 79 | DECLARED d ix k l eh r d 80 | DECLINED d ix k l ay n d 81 | DEEPENED d iy p ax n d 82 | DEFENDED d ix f eh n d ax d 83 | DEMANDED d ix m ae n d ax d 84 | DESCENDED d ix s eh n d ax d 85 | DESERVED d ix z er v d 86 | DETAINED d ix t ey n d 87 | DEVIATED d iy v iy ey dx ix d 88 | DID d ih d 89 | DIDN'T d ih d ax n t 90 | DIED d ay d 91 | DIPPED d ih p t 92 | DISAPPEARED d ih s ax p ih r d 93 | DIVED d ay v d 94 | DOUBLED d ah b ax l d 95 | DOUBTED d aw dx ix d 96 | DREW d r uw 97 | DRIFTED d r ih f t ax d 98 | DROPPED d r aa p t 99 | DROVE d r ow v 100 | DUG d ah g 101 | DUMPED d ah m p t 102 | DUSTED d ah s t ix d 103 | EARNED er n d 104 | EDGED eh jh d 105 | ENCOUNTERED ix n k aw n t er d 106 | ENDED eh n d ax d 107 | ENDURED eh n d y uh r d 108 | ENSUED ix n s uw d 109 | ESCAPED ix s k ey p t 110 | EXAMINED ix g z ae m ax n d 111 | EXCEEDED ix k s iy dx ax d 112 | EXISTED ix g z ih s t ax d 113 | EXPLAINED ix k s p l ey n d 114 | EXPRESSED ix k s p r eh s t 115 | EYED ay d 116 | FAILED f ey l d 117 | FALTERED f aa l t er d 118 | FARED f eh r d 119 | FELL f eh l 120 | FELLED f eh l d 121 | FELT f eh l t 122 | FETCHED f eh ch t 123 | FIGURED f ih g y er d 124 | FINISHED f ih n ix sh t 125 | FLAMED f l ey m d 126 | FLASHED f l ae sh t 127 | FLED f l eh d 128 | FLEW f l uw 129 | FLOATED f l ow dx ax d 130 | FLOWED f l ow d 131 | FORESAW f ao r s ao 132 | FOUGHT f ao t 133 | FOUND f aw n d 134 | FREED f r iy d 135 | FROZE f r ow z 136 | FULFILLED f uh l f ih l d 137 | GAINED g ey n d 138 | GASPED g ae s p t 139 | GAVE g ey v 140 | GLANCED g l ae n s t 141 | GLOWED g l ow d 142 | GOT g aa t 143 | GRABBED g r ae b d 144 | GRADUATED g r ae jh uw ey dx ix d 145 | GREW g r uw 146 | GRIPPED g r ih p t 147 | GUESSED g eh s t 148 | HAD hh ae d 149 | HADN'T hh ae d ax n t 150 | HAPPENED hh ae p ax n d 151 | HAULED hh ao l d 152 | HEAPED hh iy p t 153 | HELPED hh eh l p t 154 | HID hh ih d 155 | HINDERED hh ih n d er d 156 | HUNG hh ah ng 157 | IMAGINED ix m ae jh ax n d 158 | INCLUDED ix n k l uw dx ax d 159 | INDICATED ih n d ax k ey dx ax d 160 | INQUIRED ix n k w ay er d 161 | INSISTED ix n s ih s t ax d 162 | INTERFERED ih n t er f ih r d 163 | INVADED ix n v ey dx ax d 164 | INVENTED ix n v eh n t ax d 165 | JOINED jh oy n d 166 | JUMPED jh ah m p t 167 | KEPT k eh p t 168 | KNEW n uw 169 | KNOCKED n aa k t 170 | LACKED l ae k t 171 | LANDED l ae n d ax d 172 | LAUGHED l ae f t 173 | LAY l ey 174 | LEAPED l eh p t 175 | LEAPT l eh p t 176 | LEARNED l er n d 177 | LECTURED l eh k ch er d 178 | LIED l ay d 179 | LIGHTENED l ay t ax n d 180 | LIKED l ay k t 181 | LIKENED l ay k ax n d 182 | LISTENED l ih s ax n d 183 | LIVED l ay v d 184 | LOOKED l uh k t 185 | LOVED l ah v d 186 | LOWERED l ow er d 187 | MARKED m aa r k t 188 | MASSED m ae s t 189 | MINDED m ay n d ax d 190 | MOUNTED m aw n t ax d 191 | MOUTHED m aw dh d 192 | MOVED m uw v d 193 | NOTED n ow dx ax d 194 | NOTICED n ow dx ax s t 195 | NUMBERED n ah m b er d 196 | OBSCURED ax b s k y uh r d 197 | OBSERVED ax b z er v d 198 | OCCURRED ax k er d 199 | OPENED ow p ax n d 200 | OVERTURNED ow v er t er n d 201 | PARTED p aa r dx ax d 202 | PAUSED p ao z d 203 | PEPPERED p eh p er d 204 | PERMEATED p er m iy ey dx ix d 205 | PERSISTED p er s ih s t ax d 206 | PETITIONED p ax t ih sh ax n d 207 | PLOTTED p l aa dx ax d 208 | PLUGGED p l ah g d 209 | PLUNGED p l ah n jh d 210 | POINTED p oy n t ax d 211 | POKED p ow k t 212 | POSSESSED p ax z eh s t 213 | POSTED p ow s t ix d 214 | PREDICTED p r ix d ih k t ix d 215 | PRESIDED p r ix z ay dx ix d 216 | PREVAILED p r ix v ey l d 217 | PROCEEDED p r ax s iy dx ax d 218 | PROCLAIMED p r ow k l ey m d 219 | PROGRESSED p r ax g r eh s t 220 | PROMPTED p r aa m p t ax d 221 | PROPPED p r aa p t 222 | PULLED p uh l d 223 | QUESTIONED k w eh s ch ax n d 224 | QUIT k w ih t 225 | RAINED r ey n d 226 | RAMBLED r ae m b ax l d 227 | RAN r ae n 228 | RANG r ae ng 229 | RANGED r ey n jh d 230 | RATTLED r ae dx ax l d 231 | RE-ENTERED r iy ih n t er d 232 | REALIZED r iy l ay z d 233 | REASONED r iy z ax n d 234 | REBELLED r ix b eh l d 235 | RECOVERED r ax k ah v er d 236 | REDEFINED r iy dx ix f ay n d 237 | REFERRED r ax f er d 238 | REFLECTED r ax f l eh k t ax d 239 | REFUSED r ax f y uw z d 240 | REIGNED r ey n d 241 | REMAINED r ix m ey n d 242 | REMARKED r ix m aa r k t 243 | REMINDED r iy m ay n d ax d 244 | REPLIED r ix p l ay d 245 | REPORTED r iy p ao r dx ax d 246 | REPRESENTED r eh p r ax z eh n t ax d 247 | REPRODUCED r iy p r ax d uw s t 248 | RESCUED r eh s k y uw d 249 | RESPONDED r ix s p aa n d ix d 250 | RESULTED r ix z ah l t ix d 251 | RESUMED r ix z uw m d 252 | REVEALED r ix v iy l d 253 | RODE r ow d 254 | ROSE r ow z 255 | RUBBED r ah b d 256 | RUSHED r ah sh t 257 | SAID s eh d 258 | SAILED s ey l d 259 | SALTED s ao l t ax d 260 | SANG s ae ng 261 | SANK s ae ng k 262 | SAW s ao 263 | SCOOPED s k uw p t 264 | SCORED s k ao r d 265 | SCREAMED s k r iy m d 266 | SEEMED s iy m d 267 | SENT s eh n t 268 | SHAVED sh ey v d 269 | SHELLED sh eh l d 270 | SHIED sh ay d 271 | SHOOK sh uh k 272 | SHOUTED sh aw dx ax d 273 | SHOVED sh ah v d 274 | SHOWED sh ow d 275 | SHRANK sh r ae ng k 276 | SHUFFLED sh ah f ax l d 277 | SHUNNED sh ah n d 278 | SIGHED s ay d 279 | SIGNIFIED s ih g n ax f ay d 280 | SIZED s ay z d 281 | SKIPPED s k ih p t 282 | SLAMMED s l ae m d 283 | SLAPPED s l ae p t 284 | SLASHED s l ae sh t 285 | SLEPT s l eh p t 286 | SLID s l ih d 287 | SLIPPED s l ih p t 288 | SMILED s m ay l d 289 | SMOKED s m ow k t 290 | SOILED s oy l d 291 | SOUNDED s aw n d ax d 292 | SPECULATED s p eh k y ax l ey dx ax d 293 | SPILLED s p ih l d 294 | SPOILED s p oy l d 295 | SPOKE s p ow k 296 | SPRANG s p r ae ng 297 | STARED s t eh r d 298 | STARTED s t aa r dx ax d 299 | STAYED s t ey d 300 | STEPPED s t eh p t 301 | STIRRED s t er d 302 | STOLE s t ow l 303 | STOOD s t uh d 304 | STOPPED s t aa p t 305 | STORED s t ao r d 306 | STORMED s t ao r m d 307 | STREAKED s t r iy k t 308 | STRESSED s t r eh s t 309 | STRUCK s t r ah k 310 | STRUGGLED s t r ah g ax l d 311 | STUFFED s t ah f t 312 | STUNNED s t ah n d 313 | SUBSTITUTED s ah b s t ax t uw dx ax d 314 | SUCCUMBED s ax k ah m d 315 | SUFFERED s ah f er d 316 | SUFFICED s ax f ay s t 317 | SUGGESTED s ax g jh eh s t ax d 318 | SWELLED s w eh l d 319 | SWUNG s w ah ng 320 | TACKED t ae k t 321 | TAUGHT t ao t 322 | TERMED t er m d 323 | TERMINATED t er m ax n ey dx ax d 324 | TESTIFIED t eh s t ax f ay d 325 | THANKED th ae ng k t 326 | THOUGHT th ao t 327 | THREW th r uw 328 | TIPPED t ih p t 329 | TOASTED t ow s t ix d 330 | TOLD t ow l d 331 | TOOK t uh k 332 | TORE t ao r 333 | TRAILED t r ey l d 334 | TRAVELED t r ae v ax l d 335 | TRIED t r ay d 336 | TURNED t er n d 337 | UNDERLINED ah n d er l ay n d 338 | UNFOLDED ax n f ow l d ax d 339 | UTTERED ah dx er d 340 | VIOLATED v ay ax l ey dx ix d 341 | VISITED v ih z ax dx ax d 342 | VOLUNTEERED v aa l ax n t ih r d 343 | VOTED v ow dx ax d 344 | WAITED w ey dx ax d 345 | WALKED w ao k t 346 | WANTED w aa n t ax d 347 | WARNED w ao r n d 348 | WAS w aa z 349 | WASN'T w aa z ax n t 350 | WATERED w ao dx er d 351 | WAVED w ey v d 352 | WEIGHED w ey d 353 | WENT w eh n t 354 | WEPT w eh p t 355 | WERE w er 356 | WEREN'T w er ax n t 357 | WOKE w ow k 358 | WON w ah n 359 | WONDERED w ah n d er d 360 | WORE w ao r 361 | WORKED w er k t 362 | WOUND w aw n d 363 | WRECKED r eh k t 364 | WROTE r ow t 365 | WROUGHT r ao t 366 | YELLED y eh l d 367 | YIELDED y iy l d ax d 368 | -------------------------------------------------------------------------------- /dictionaries/verb-present-participle: -------------------------------------------------------------------------------- 1 | ABETTING ax b eh dx ix ng 2 | ABOUNDING ax b aw n d ix ng 3 | ACCOMPANYING ax k ah m p ax n iy ix ng 4 | ACCORDING ax k ao r dx ix ng 5 | ACHING ey k ix ng 6 | ACQUIRING ax k w ay r ix ng 7 | ACTING ae k t ix ng 8 | ADDING ae dx ix ng 9 | ADDRESSING ax d r eh s ix ng 10 | ADVANCING ax d v ae n s ix ng 11 | ADVISING ae d v ay z ix ng 12 | AFFECTING ax f eh k t ix ng 13 | AIDING ey dx ix ng 14 | AIMING ey m ix ng 15 | ALLOWING ax l aw ix ng 16 | ALTERING ao l t er ix ng 17 | ALTERNATING ao l t er n ey dx ix ng 18 | APPEARING ax p ih r ix ng 19 | APPROACHING ax p r ow ch ix ng 20 | ARGUING aa r g y uw ix ng 21 | ARRIVING er ay v ix ng 22 | ASCENDING ax s eh n d ix ng 23 | ASCRIBING ax s k r ay b ix ng 24 | ASKING ae s k ix ng 25 | ASSISTING ax s ih s t ix ng 26 | ASSUMING ax s uw m ix ng 27 | ASSURING ax sh uh r ix ng 28 | ATTACHING ax t ae ch ix ng 29 | ATTACKING ax t ae k ix ng 30 | ATTEMPTING ax t eh m p t ix ng 31 | ATTENDING ax t eh n d ix ng 32 | AVOIDING ax v oy dx ix ng 33 | AWAITING ax w ey dx ix ng 34 | BACKING b ae k ix ng 35 | BALANCING b ae l ax n s ix ng 36 | BARKING b aa r k ix ng 37 | BARRING b aa r ix ng 38 | BEARING b eh r ix ng 39 | BEATING b iy dx ix ng 40 | BECOMING b ix k ah m ix ng 41 | BEGGING b eh g ix ng 42 | BEGINNING b ix g ih n ix ng 43 | BEHAVING b ix hh ey v ix ng 44 | BEING b iy ix ng 45 | BELIEVING b ix l iy v ix ng 46 | BELONGING b ix l ao ng ix ng 47 | BENDING b eh n d ix ng 48 | BEWITCHING b ix w ih ch ix ng 49 | BITING b ay dx ix ng 50 | BLAZING b l ey z ix ng 51 | BLEEDING b l iy dx ix ng 52 | BLOOMING b l uw m ix ng 53 | BOATING b ow dx ix ng 54 | BOILING b oy l ix ng 55 | BOTHERING b aa dh er ix ng 56 | BOUNDING b aw n d ix ng 57 | BRACING b r ey s ix ng 58 | BRAVING b r ey v ix ng 59 | BREAKING b r ey k ix ng 60 | BREATHING b r iy dh ix ng 61 | BREEDING b r iy dx ix ng 62 | BRIGHTENING b r ay t ax n ix ng 63 | BRINGING b r ih ng ix ng 64 | BROADENING b r ao d ax n ix ng 65 | BUDDING b ah dx ix ng 66 | BULGING b ah l jh ix ng 67 | BURNING b er n ix ng 68 | BUYING b ay ix ng 69 | CALCULATING k ae l k y ax l ey dx ix ng 70 | CALLING k ao l ix ng 71 | CAPTURING k ae p ch er ix ng 72 | CARING k eh r ix ng 73 | CARRYING k ae r iy ix ng 74 | CASTING k ae s t ix ng 75 | CATCHING k ae ch ix ng 76 | CAUSING k aa z ix ng 77 | CHANGING ch ey n jh ix ng 78 | CHARGING ch aa r jh ix ng 79 | CHASING ch ey s ix ng 80 | CHATTING ch ae dx ix ng 81 | CHECKING ch eh k ix ng 82 | CHEERING ch ih r ix ng 83 | CHEWING ch uw ix ng 84 | CHOKING ch ow k ix ng 85 | CHOOSING ch uw z ix ng 86 | CIRCULATING s er k y ax l ey dx ix ng 87 | CLAIMING k l ey m ix ng 88 | CLEANING k l iy n ix ng 89 | CLEARING k l ih r ix ng 90 | CLOSING k l ow z ix ng 91 | CLUTCHING k l ah ch ix ng 92 | COMBINING k ax m b ay n ix ng 93 | COMING k ah m ix ng 94 | COMMITTING k ax m ih dx ix ng 95 | COMPARING k ax m p eh r ix ng 96 | COMPETING k ax m p iy dx ix ng 97 | COMPILING k ax m p ay l ix ng 98 | CONCERNING k ax n s er n ix ng 99 | CONDUCTING k ax n d ah k t ix ng 100 | CONFERRING k ax n f er ix ng 101 | CONNECTING k ax n eh k t ix ng 102 | CONSIDERING k ax n s ih dx er ix ng 103 | CONSISTING k ax n s ih s t ix ng 104 | CONSULTING k ax n s ah l t ix ng 105 | CONTAINING k ax n t ey n ix ng 106 | CONTEMPLATING k aa n t ax m p l ey dx ix ng 107 | CONTENDING k ax n t eh n d ix ng 108 | CONTRADICTING k aa n t r ax d ih k t ix ng 109 | CONTRASTING k ax n t r ae s t ix ng 110 | CONTROLLING k ax n t r ow l ix ng 111 | COOLING k uw l ix ng 112 | COOPERATING k ow aa p er ey dx ix ng 113 | COORDINATING k ow ao r d ax n ey dx ix ng 114 | COUGHING k aa f ix ng 115 | COUNTING k aw n t ix ng 116 | COVERING k ah v er ix ng 117 | CRACKING k r ae k ix ng 118 | CREATING k r iy ey dx ix ng 119 | CREEPING k r iy p ix ng 120 | CROSSING k r ao s ix ng 121 | CRUISING k r uw z ix ng 122 | CRUMBLING k r ah m b ax l ix ng 123 | CRUSHING k r ah sh ix ng 124 | CULMINATING k ah l m ax n ey dx ix ng 125 | CURING k y uh r ix ng 126 | CUTTING k ah dx ix ng 127 | DANCING d ae n s ix ng 128 | DAWNING d ao n ix ng 129 | DEALING d iy l ix ng 130 | DECIDING d ax s ay dx ix ng 131 | DECLARING d ix k l eh r ix ng 132 | DECLINING d ix k l ay n ix ng 133 | DECREASING d ix k r iy s ix ng 134 | DEEPENING d iy p ax n ix ng 135 | DEMANDING d ix m ae n d ix ng 136 | DENYING d ix n ay ix ng 137 | DEPARTING d ix p aa r dx ix ng 138 | DEPENDING d ix p eh n d ix ng 139 | DEPRIVING d ix p r ay v ix ng 140 | DESCENDING d ix s eh n d ix ng 141 | DESTROYING d ix s t r oy ix ng 142 | DETERMINING d ix t er m ax n ix ng 143 | DIALING d ay ax l ix ng 144 | DIFFERING d ih f er ix ng 145 | DIGGING d ih g ix ng 146 | DINING d ay n ix ng 147 | DIPPING d ih p ix ng 148 | DISCUSSING d ix s k ah s ix ng 149 | DISINTEGRATING d ix s ih n t ax g r ey dx ix ng 150 | DISSOLVING d ix z ao l v ix ng 151 | DIVIDING d ix v ay dx ix ng 152 | DOING d uw ix ng 153 | DOUBLING d ah b ax l ix ng 154 | DRAGGING d r ae g ix ng 155 | DRAINING d r ey n ix ng 156 | DRAWING d r ao ix ng 157 | DREAMING d r iy m ix ng 158 | DRESSING d r eh s ix ng 159 | DRIFTING d r ih f t ix ng 160 | DRIPPING d r ih p ix ng 161 | DRIVING d r ay v ix ng 162 | DROPPING d r aa p ix ng 163 | DRUMMING d r ah m ix ng 164 | DUSTING d ah s t ix ng 165 | DWINDLING d w ih n d ax l ix ng 166 | DYING d ay ix ng 167 | EARNING er n ix ng 168 | EATING iy dx ix ng 169 | EMERGING ix m er jh ix ng 170 | EMPLOYING eh m p l oy ix ng 171 | ENABLING eh n ey b ax l ix ng 172 | ENCOURAGING eh n k er ix jh ix ng 173 | ENCROACHING ix n k r ow ch ix ng 174 | ENDING eh n d ix ng 175 | ENDURING eh n d y uh r ix ng 176 | ENJOYING eh n jh oy ix ng 177 | ENTERING eh n t er ix ng 178 | ENTICING eh n t ay s ix ng 179 | ESCAPING ix s k ey p ix ng 180 | ESTABLISHING ix s t ae b l ix sh ix ng 181 | ESTIMATING eh s t ax m ey dx ix ng 182 | EXAMINING ix g z ae m ix n ix ng 183 | EXCEEDING ix k s iy dx ix ng 184 | EXERTING ix g z er dx ix ng 185 | EXISTING ix g z ih s t ix ng 186 | EXPECTING ix k s p eh k t ix ng 187 | EXPERIENCING ix k s p ih r iy ax n s ix ng 188 | EXPIRING ix k s p ay r ix ng 189 | EXPLODING ix k s p l ow dx ix ng 190 | EXPLORING ix k s p l ao r ix ng 191 | EXTENDING ix k s t eh n d ix ng 192 | FACILITATING f ax s ih l ax t ey dx ix ng 193 | FACING f ey s ix ng 194 | FAILING f ey l ix ng 195 | FALLING f aa l ix ng 196 | FEARING f ih r ix ng 197 | FEEDING f iy dx ix ng 198 | FEELING f iy l ix ng 199 | FIGHTING f ay dx ix ng 200 | FIGURING f ih g y er ix ng 201 | FILLING f ih l ix ng 202 | FINDING f ay n d ix ng 203 | FINGERING f ih ng g er ix ng 204 | FIXING f ih k s ix ng 205 | FLASHING f l ae sh ix ng 206 | FLINGING f l ih ng ix ng 207 | FLIPPING f l ih p ix ng 208 | FLOATING f l ow dx ix ng 209 | FLOURISHING f l er ix sh ix ng 210 | FLOWING f l ow ix ng 211 | FLYING f l ay ix ng 212 | FOAMING f ow m ix ng 213 | FOLLOWING f aa l ow ix ng 214 | FOOTING f uh dx ix ng 215 | FORBIDDING f er b ih dx ix ng 216 | FORGETTING f er g eh dx ix ng 217 | FORMING f ao r m ix ng 218 | FOUNDING f aw n d ix ng 219 | FRETTING f r eh dx ix ng 220 | GAINING g ey n ix ng 221 | GATHERING g ae dh er ix ng 222 | GENERATING jh eh n er ey dx ix ng 223 | GETTING g eh dx ix ng 224 | GIVING g ih v ix ng 225 | GOING g ow ix ng 226 | GRATIFYING g r ae dx ax f ay ix ng 227 | GREETING g r iy dx ix ng 228 | GROWING g r ow ix ng 229 | GUARDING g aa r dx ix ng 230 | GUESSING g eh s ix ng 231 | GUIDING g ay dx ix ng 232 | HALTING hh ao l t ix ng 233 | HAMMERING hh ae m er ix ng 234 | HANDLING hh ae n d l ix ng 235 | HANGING hh ae ng ix ng 236 | HAPPENING hh ae p ax n ix ng 237 | HAVING hh ae v ix ng 238 | HEADING hh eh dx ix ng 239 | HELPING hh eh l p ix ng 240 | HIDING hh ay dx ix ng 241 | HITTING hh ih dx ix ng 242 | HOARDING hh ao r dx ix ng 243 | HOLDING hh ow l d ix ng 244 | HONORING aa n er ix ng 245 | HOPING hh ow p ix ng 246 | IGNORING ix g n ao r ix ng 247 | IMAGINING ix m ae jh ax n ix ng 248 | IMPLYING ix m p l ay ix ng 249 | IMPROVING ix m p r uw v ix ng 250 | INCLUDING ix n k l uw dx ix ng 251 | INCORPORATING ix n k ao r p er ey dx ix ng 252 | INCREASING ix n k r iy s ix ng 253 | INDICATING ih n d ax k ey dx ix ng 254 | INDULGING ix n d ah l jh ix ng 255 | INJURING ih n jh er ix ng 256 | INQUIRING ix n k w ay er ix ng 257 | INSINUATING ix n s ih n y uw ey dx ix ng 258 | INTEGRATING ih n t ax g r ey dx ix ng 259 | INTERRUPTING ih n t er ah p t ix ng 260 | INTRODUCING ih n t r ax d uw s ix ng 261 | INVESTING ix n v eh s t ix ng 262 | INVITING ix n v ay dx ix ng 263 | JOINING jh oy n ix ng 264 | JUDGING jh ah jh ix ng 265 | JUMPING jh ah m p ix ng 266 | JUTTING jh ah dx ix ng 267 | KEEPING k iy p ix ng 268 | KICKING k ih k ix ng 269 | KIDDING k ih dx ix ng 270 | KILLING k ih l ix ng 271 | KNOCKING n aa k ix ng 272 | KNOWING n ow ix ng 273 | LAGGING l ae g ix ng 274 | LAUGHING l ae f ix ng 275 | LEADING l iy dx ix ng 276 | LEANING l iy n ix ng 277 | LEAPING l iy p ix ng 278 | LEARNING l er n ix ng 279 | LEAVING l iy v ix ng 280 | LESSENING l eh s ax n ix ng 281 | LETTING l eh dx ix ng 282 | LICKING l ih k ix ng 283 | LIFTING l ih f t ix ng 284 | LIGHTENING l ay t ax n ix ng 285 | LIMITING l ih m ax dx ix ng 286 | LISTENING l ih s ax n ix ng 287 | LIVING l ih v ix ng 288 | LOOKING l uh k ix ng 289 | LOSING l uw z ix ng 290 | LYING l ay ix ng 291 | MAINTAINING m ey n t ey n ix ng 292 | MAKING m ey k ix ng 293 | MANAGING m ae n ax jh ix ng 294 | MANNING m ae n ix ng 295 | MARKING m aa r k ix ng 296 | MATCHING m ae ch ix ng 297 | MEANING m iy n ix ng 298 | MEASURING m eh zh er ix ng 299 | MEDDLING m eh dx ax l ix ng 300 | MELTING m eh l t ix ng 301 | MENTIONING m eh n sh ax n ix ng 302 | MILLING m ih l ix ng 303 | MISSING m ih s ix ng 304 | MISUNDERSTANDING m ih s ax n d er s t ae n d ix ng 305 | MIXING m ih k s ix ng 306 | MOCKING m aa k ix ng 307 | MODELING m aa dx ax l ix ng 308 | MODIFYING m aa dx ax f ay ix ng 309 | MORTIFYING m ao r dx ix f ay ix ng 310 | MOVING m uw v ix ng 311 | MURDERING m er dx er ix ng 312 | NEEDING n iy dx ix ng 313 | NEIGHBORING n ey b er ix ng 314 | NETTING n eh dx ix ng 315 | NIBBLING n ih b ax l ix ng 316 | OBSERVING ax b z er v ix ng 317 | OBTAINING ax b t ey n ix ng 318 | OCCUPYING aa k y ax p ay ix ng 319 | OCCURRING ax k er ix ng 320 | OOZING uw z ix ng 321 | OPENING ow p ax n ix ng 322 | OPERATING aa p er ey dx ix ng 323 | OPPOSING ax p ow z ix ng 324 | ORDERING ao r dx er ix ng 325 | ORIGINATING er ih jh ax n ey dx ix ng 326 | OVERFLOWING ow v er f l ow ix ng 327 | OVERLAPPING ow v er l ae p ix ng 328 | OVERLOOKING ow v er l uh k ix ng 329 | OWING ow ix ng 330 | PACKING p ae k ix ng 331 | PARTING p aa r dx ix ng 332 | PASSING p ae s ix ng 333 | PAUSING p ao z ix ng 334 | PAYING p ey ix ng 335 | PENETRATING p eh n ax t r ey dx ix ng 336 | PERFORMING p er f ao r m ix ng 337 | PICKING p ih k ix ng 338 | PICTURING p ih k ch er ix ng 339 | PLANNING p l ae n ix ng 340 | PLANTING p l ae n t ix ng 341 | PLAYING p l ey ix ng 342 | PLEASING p l iy z ix ng 343 | PLUNGING p l ah n jh ix ng 344 | POINTING p oy n t ix ng 345 | POSSESSING p ax z eh s ix ng 346 | POURING p ao r ix ng 347 | PRECEDING p r iy s iy dx ix ng 348 | PREFERRING p r ix f er ix ng 349 | PREPARING p r iy p eh r ix ng 350 | PRESENTING p r ix z eh n t ix ng 351 | PRESSING p r eh s ix ng 352 | PRETENDING p r iy t eh n d ix ng 353 | PREVAILING p r ix v ey l ix ng 354 | PREVENTING p r ix v eh n t ix ng 355 | PROCEEDING p r ax s iy dx ix ng 356 | PRODUCING p r ax d uw s ix ng 357 | PROJECTING p r ax jh eh k t ix ng 358 | PROMPTING p r aa m p t ix ng 359 | PROPELLING p r ax p eh l ix ng 360 | PROPOSING p r ax p ow z ix ng 361 | PROTECTING p r ax t eh k t ix ng 362 | PROVIDING p r ax v ay dx ix ng 363 | PROVING p r uw v ix ng 364 | PROVOKING p r ax v ow k ix ng 365 | PULLING p uh l ix ng 366 | PURCHASING p er ch ax s ix ng 367 | PURSUING p er s uw ix ng 368 | PUSHING p uh sh ix ng 369 | PUTTING p ah dx ix ng 370 | QUADRUPLING k w aa d r uw p ax l ix ng 371 | QUESTIONING k w eh s ch ax n ix ng 372 | QUITTING k w ih dx ix ng 373 | QUOTING k w ow dx ix ng 374 | RAGING r ey jh ix ng 375 | RAISING r ey z ix ng 376 | RATTLING r ae t l ix ng 377 | REACHING r iy ch ix ng 378 | REACTING r iy ae k t ix ng 379 | REAWAKENING r iy ax w ey k ax n ix ng 380 | REBOUNDING r iy b aw n d ix ng 381 | RECEIVING r ax s iy v ix ng 382 | RECOGNIZING r eh k ax g n ay z ix ng 383 | RECOVERING r ax k ah v er ix ng 384 | REDUCING r ax d uw s ix ng 385 | REFRESHING r ix f r eh sh ix ng 386 | REFUSING r ax f y uw z ix ng 387 | REGISTERING r eh jh ix s t er ix ng 388 | REGULATING r eh g y ax l ey dx ix ng 389 | RELATING r ix l ey dx ix ng 390 | RELAXING r ix l ae k s ix ng 391 | RELINQUISHING r iy l ih ng k w ix sh ix ng 392 | REMAINING r ix m ey n ix ng 393 | REMEMBERING r ix m eh m b er ix ng 394 | REMINDING r iy m ay n d ix ng 395 | REMOVING r iy m uw v ix ng 396 | REPLACING r ix p l ey s ix ng 397 | REPRESENTING r eh p r ix z eh n t ix ng 398 | REQUESTING r ix k w eh s t ix ng 399 | REQUIRING r iy k w ay er ix ng 400 | RESEMBLING r ix z eh m b ax l ix ng 401 | RESIDING r ix z ay dx ix ng 402 | RESISTING r ix z ih s t ix ng 403 | RESOLVING r iy z aa l v ix ng 404 | RESPONDING r ix s p aa n d ix ng 405 | RESULTING r ix z ah l t ix ng 406 | RESUMING r ix z uw m ix ng 407 | RETAINING r ix t ey n ix ng 408 | RETURNING r ix t er n ix ng 409 | REVEALING r ix v iy l ix ng 410 | REVERSING r ix v er s ix ng 411 | REVIEWING r iy v y uw ix ng 412 | RIDING r ay dx ix ng 413 | RINGING r ih ng ix ng 414 | RIPPLING r ih p ax l ix ng 415 | RISING r ay z ix ng 416 | ROARING r ao r ix ng 417 | ROBBING r aa b ix ng 418 | ROLLING r ow l ix ng 419 | RUINING r uw ix n ix ng 420 | RUNNING r ah n ix ng 421 | RUSHING r ah sh ix ng 422 | SAVING s ey v ix ng 423 | SAYING s ey ix ng 424 | SCARING s k eh r ix ng 425 | SCRATCHING s k r ae ch ix ng 426 | SCREAMING s k r iy m ix ng 427 | SEARCHING s er ch ix ng 428 | SECURING s ix k y uh r ix ng 429 | SEDUCING s ix d uw s ix ng 430 | SEEING s iy ix ng 431 | SEEKING s iy k ix ng 432 | SEIZING s iy z ix ng 433 | SELLING s eh l ix ng 434 | SENDING s eh n d ix ng 435 | SEPARATING s eh p er ey dx ix ng 436 | SERVING s er v ix ng 437 | SETTING s eh dx ix ng 438 | SETTLING s eh dx ax l ix ng 439 | SHAKING sh ey k ix ng 440 | SHAPING sh ey p ix ng 441 | SHARING sh eh r ix ng 442 | SHARPENING sh aa r p ax n ix ng 443 | SHIFTING sh ih f t ix ng 444 | SHINING sh ay n ix ng 445 | SHOOTING sh uw dx ix ng 446 | SHOULDERING sh ow l d er ix ng 447 | SHOUTING sh aw dx ix ng 448 | SHOWING sh ow ix ng 449 | SHRINKING sh r ih ng k ix ng 450 | SHUTTING sh ah dx ix ng 451 | SINGING s ih ng ix ng 452 | SINKING s ih ng k ix ng 453 | SITTING s ih dx ix ng 454 | SKETCHING s k eh ch ix ng 455 | SLEEPING s l iy p ix ng 456 | SLIDING s l ay dx ix ng 457 | SLIPPING s l ih p ix ng 458 | SMELLING s m eh l ix ng 459 | SMILING s m ay l ix ng 460 | SOLVING s aa l v ix ng 461 | SOUNDING s aw n d ix ng 462 | SPEAKING s p iy k ix ng 463 | SPORTING s p ao r dx ix ng 464 | SPREADING s p r eh dx ix ng 465 | SPRINGING s p r ih ng ix ng 466 | SQUEEZING s k w iy z ix ng 467 | STALKING s t ao k ix ng 468 | STANDING s t ae n d ix ng 469 | STARTING s t aa r dx ix ng 470 | STARVING s t aa r v ix ng 471 | STAYING s t ey ix ng 472 | STEALING s t iy l ix ng 473 | STEAMING s t iy m ix ng 474 | STEPPING s t eh p ix ng 475 | STICKING s t ih k ix ng 476 | STIFLING s t ay f l ix ng 477 | STIRRING s t er ix ng 478 | STOCKING s t aa k ix ng 479 | STOPPING s t aa p ix ng 480 | STREAMING s t r iy m ix ng 481 | STRENGTHENING s t r eh ng th ax n ix ng 482 | STRETCHING s t r eh ch ix ng 483 | STRIVING s t r ay v ix ng 484 | STRUGGLING s t r ah g ax l ix ng 485 | STUDYING s t ah dx iy ix ng 486 | STULTIFYING s t ah l t ax f ay ix ng 487 | STUMBLING s t ah m b ax l ix ng 488 | SUCCEEDING s ax k s iy dx ix ng 489 | SUFFERING s ah f er ix ng 490 | SUGGESTING s ax g jh eh s t ix ng 491 | SUPPLYING s ax p l ay ix ng 492 | SUPPORTING s ax p ao r dx ix ng 493 | SURRENDERING s er eh n d er ix ng 494 | SURROUNDING s er aw n d ix ng 495 | SURVIVING s er v ay v ix ng 496 | SUSPECTING s ax s p eh k t ix ng 497 | SWALLOWING s w aa l ow ix ng 498 | SWAPPING s w aa p ix ng 499 | SWAYING s w ey ix ng 500 | SWELLING s w eh l ix ng 501 | SWINGING s w ih ng ix ng 502 | SWITCHING s w ih ch ix ng 503 | TAKING t ey k ix ng 504 | TALKING t ao k ix ng 505 | TAPERING t ey p er ix ng 506 | TAPPING t ae p ix ng 507 | TEARING t eh r ix ng 508 | TELLING t eh l ix ng 509 | TERMINATING t er m ax n ey dx ix ng 510 | THINKING th ih ng k ix ng 511 | THREATENING th r eh t ax n ix ng 512 | THROWING th r ow ix ng 513 | THRUSTING th r ah s t ix ng 514 | THUMBING th ah m ix ng 515 | TOSSING t ao s ix ng 516 | TOUCHING t ah ch ix ng 517 | TOURING t uh r ix ng 518 | TOYING t oy ix ng 519 | TRACING t r ey s ix ng 520 | TRACKING t r ae k ix ng 521 | TRAILING t r ey l ix ng 522 | TRAVELING t r ae v ax l ix ng 523 | TREATING t r iy dx ix ng 524 | TRIMMING t r ih m ix ng 525 | TRYING t r ay ix ng 526 | TUMBLING t ah m b ax l ix ng 527 | TURNING t er n ix ng 528 | UNDERGOING ah n d er g ow ix ng 529 | UNDERLYING ah n d er l ay ix ng 530 | UNDERTAKING ah n d er t ey k ix ng 531 | URGING er jh ix ng 532 | USING y uw z ix ng 533 | UTTERING ah dx er ix ng 534 | VANISHING v ae n ix sh ix ng 535 | VARYING v eh r iy ix ng 536 | VIEWING v y uw ix ng 537 | VIOLATING v ay ax l ey dx ix ng 538 | VISUALIZING v ih zh w ax l ay z ix ng 539 | WAILING w ey l ix ng 540 | WAITING w ey dx ix ng 541 | WAKING w ey k ix ng 542 | WALKING w ao k ix ng 543 | WANDERING w aa n d er ix ng 544 | WANTING w aa n t ix ng 545 | WARNING w ao r n ix ng 546 | WASHING w aa sh ix ng 547 | WASTING w ey s t ix ng 548 | WATCHING w aa ch ix ng 549 | WAVERING w ey v er ix ng 550 | WAVING w ey v ix ng 551 | WEARING w eh r ix ng 552 | WEAVING w iy v ix ng 553 | WEEPING w iy p ix ng 554 | WELCOMING w eh l k ax m ix ng 555 | WHISPERING w ih s p er ix ng 556 | WHISTLING w ih s l ix ng 557 | WIELDING w iy l d ix ng 558 | WINKING w ih ng k ix ng 559 | WINNING w ih n ix ng 560 | WIPING w ay p ix ng 561 | WISHING w ih sh ix ng 562 | WONDERING w ah n d er ix ng 563 | WORKING w er k ix ng 564 | WRAPPING r ae p ix ng 565 | WRIGGLING r ih g ax l ix ng 566 | WRITING r ay dx ix ng 567 | YIELDING y iy l d ix ng 568 | -------------------------------------------------------------------------------- /dictionaries/verb-present-tense-3rd-person-singular: -------------------------------------------------------------------------------- 1 | ABOUNDS ax b aw n d z 2 | ABSORBS ax b z ao r b z 3 | ACCEPTS ae k s eh p t s 4 | ADMIRES ae d m ay r z 5 | AGREES ax g r iy z 6 | ALLOWS ax l aw z 7 | APOLOGIZES ax p aa l ax jh ay z ix z 8 | APPEARS ax p ih r z 9 | APPLIES ax p l ay z 10 | ARRIVES er ay v z 11 | ASSUMES ax s uw m z 12 | BEARS b eh r z 13 | BEATS b iy t s 14 | BECOMES b ix k ah m z 15 | BEGINS b ix g ih n z 16 | BELIEVES b ix l iy v z 17 | BELONGS b ix l ao ng z 18 | BLAMES b l ey m z 19 | BOASTS b ow s t s 20 | BOWLS b ow l z 21 | BRAGS b r ae g z 22 | BRINGS b r ih ng z 23 | CARES k eh r z 24 | CARRIES k ae r iy z 25 | CATCHES k ae ch ax z 26 | CHOOSES ch uw z ax z 27 | CHRONICLES k r aa n ix k ax l z 28 | CLAIMS k l ey m z 29 | CLIMBS k l ay m z 30 | COMES k ah m z 31 | COMPRISES k ax m p r ay z ax z 32 | CONDEMNS k ax n d eh m z 33 | CONFERS k ax n f er z 34 | CONNECTS k ax n eh k t s 35 | CONSIDERS k ax n s ih dx er z 36 | CONSISTS k ax n s ih s t s 37 | CONSTITUTES k aa n s t ax t uw t s 38 | CONTAINS k ax n t ey n z 39 | CONTRIBUTES k ax n t r ih b y uw t s 40 | CONVEYS k ax n v ey z 41 | COORDINATES k ow ao r d ax n ax t s 42 | COVERS k ah v er z 43 | CREATES k r iy ey t s 44 | CRIES k r ay z 45 | DECLARES d ix k l eh r z 46 | DEFIES d ix f ay z 47 | DELIGHTS d ix l ay t s 48 | DEMONSTRATES d eh m ax n s t r ey t s 49 | DEPENDS d ix p eh n d z 50 | DESCENDS d ix s eh n d z 51 | DESCRIBES d ix s k r ay b z 52 | DESERVES d ix z er v z 53 | DETERMINES d ax t er m ax n z 54 | DIES d ay z 55 | DIFFERS d ih f er z 56 | DIMINISHES d ix m ih n ix sh ix z 57 | DIRECTS d er eh k t s 58 | DISAPPEARS d ih s ax p ih r z 59 | DIVES d ay v z 60 | DIVIDES d ix v ay d z 61 | DOES d ah z 62 | DOESN'T d ah z ax n t 63 | DOTH d ao th 64 | DOUBLES d ah b ax l z 65 | DRAINS d r ey n z 66 | EATS iy t s 67 | EMPLOYS eh m p l oy z 68 | ENABLES eh n ey b ax l z 69 | ENDS eh n d z 70 | ENTERS eh n t er z 71 | EXCEEDS ix k s iy d z 72 | EXISTS ix g z ih s t s 73 | EXPECTS ix k s p eh k t s 74 | EXPRESSES ix k s p r eh s ax z 75 | EXTENDS ix k s t eh n d z 76 | FACES f ey s ax z 77 | FAILS f ey l z 78 | FALLS f ao l z 79 | FANCIES f ae n s iy z 80 | FAVORS f ey v er z 81 | FEELS f iy l z 82 | FILLS f ih l z 83 | FINDS f ay n d z 84 | FITS f ih t s 85 | FLIES f l ay z 86 | FOLLOWS f aa l ow z 87 | FORESEES f ao r s iy z 88 | FURROWS f er ow z 89 | FUSSES f ah s ix z 90 | GENERATES jh eh n er ey t s 91 | GETS g eh t s 92 | GIVES g ih v z 93 | GIVETH g ih v eh th 94 | GOES g ow z 95 | GROWS g r ow z 96 | HANDLES hh ae n d ax l z 97 | HAPPENS hh ae p ax n z 98 | HAS hh ae z 99 | HASN'T hh ae z ax n t 100 | HATES hh ey t s 101 | HEARS hh ih r z 102 | HELPS hh eh l p s 103 | HOLDS hh ow l d z 104 | HOOKS hh uh k s 105 | HURTS hh er t s 106 | IGNORES ix g n ao r z 107 | ILLUSTRATES ih l ax s t r ey t s 108 | IMPLEMENTS ih m p l ax m ax n t s 109 | IMPLIES ix m p l ay z 110 | IMPRESSES ix m p r eh s ix z 111 | INCLUDES ix n k l uw d z 112 | INDICATES ih n d ix k ey t s 113 | INDUCES ix n d uw s ix z 114 | INTERFERES ih n t er f ih r z 115 | INTRODUCES ih n t r ax d uw s ix z 116 | INVESTIGATES ix n v eh s t ax g ey t s 117 | INVOLVES ix n v aa l v z 118 | IRRITATES ih r ix t ey t s 119 | IS ih z 120 | ISN'T ih z ax n t 121 | KEEPS k iy p s 122 | KILLS k ih l z 123 | KNOWS n ow z 124 | LASTS l ae s t s 125 | LAYS l ey z 126 | LEADS l iy d z 127 | LEARNS l er n z 128 | LEAVES l iy v z 129 | LETS l eh t s 130 | LIES l ay z 131 | LIKES l ay k s 132 | LOOKS l uh k s 133 | LOOMS l uw m z 134 | LOSES l uw z ax z 135 | LOVES l ah v z 136 | MAKES m ey k s 137 | MANIPULATES m ax n ih p y ax l ey t s 138 | MATCHES m ae ch ax z 139 | MEANS m iy n z 140 | MEETS m iy t s 141 | MISSES m ih s ax z 142 | MOVES m uw v z 143 | NEEDS n iy d z 144 | OCCUPIES aa k y ax p ay z 145 | OCCURS ax k er z 146 | OPENS ow p ax n z 147 | OUTLINES aw t l ay n z 148 | OWES ow z 149 | PASSES p ae s ax z 150 | PLANS p l ae n z 151 | POSSESSES p ax z eh s ax z 152 | PRECEDES p r ix s iy d z 153 | PRECLUDES p r ix k l uw d z 154 | PRESENTS p r eh z ax n t s 155 | PRESERVES p r ax z er v z 156 | PREVENTS p r ix v eh n t s 157 | PROCLAIMS p r ow k l ey m z 158 | PRODUCES p r ax d uw s ax z 159 | PROFESSES p r ax f eh s ix z 160 | PROMPTS p r aa m p t s 161 | PROVES p r uw v z 162 | PROVIDES p r ax v ay d z 163 | PUSHES p uh sh ax z 164 | REACHES r iy ch ax z 165 | REALIZES r iy ax l ay z ix z 166 | RECEIVES r ax s iy v z 167 | REDUCES r ax d uw s ax z 168 | REFERS r ax f er z 169 | REFUSES r ax f y uw z ax z 170 | REGARDS r ix g aa r d z 171 | REMAINS r ix m ey n z 172 | REMEMBERS r ix m eh m b er z 173 | REMINDS r iy m ay n d z 174 | REPLIES r ix p l ay z 175 | REPRESENTS r eh p r ax z eh n t s 176 | REQUIRES r iy k w ay er z 177 | RESEARCHES r iy s er ch ix z 178 | RESEMBLES r ix z eh m b ax l z 179 | RESTS r eh s t s 180 | RETAINS r ix t ey n z 181 | RUNS r ah n z 182 | SAYS s eh z 183 | SEEKS s iy k s 184 | SEEMS s iy m z 185 | SEES s iy z 186 | SELLS s eh l z 187 | SENDS s eh n d z 188 | SERVES s er v z 189 | SHAKES sh ey k s 190 | SHOUTS sh aw t s 191 | SINGS s ih ng z 192 | SLIPS s l ih p s 193 | SMELLS s m eh l z 194 | SOLVES s aa l v z 195 | SPEAKS s p iy k s 196 | SPECIFIES s p eh s ax f ay z 197 | SPENDS s p eh n d z 198 | SPLITS s p l ih t s 199 | SPRINGS s p r ih ng z 200 | SPURS s p er z 201 | STANDS s t ae n d z 202 | STEMS s t eh m z 203 | STIRS s t er z 204 | STRUGGLES s t r ah g ax l z 205 | SUFFERS s ah f er z 206 | SUGGESTS s ax g jh eh s t s 207 | SUPPORTS s ax p ao r t s 208 | SURFACES s er f ax s ax z 209 | TAKES t ey k s 210 | TALKS t ao k s 211 | TEACHES t iy ch ax z 212 | TELLS t eh l z 213 | TEMPTS t eh m p t s 214 | TENDS t eh n d z 215 | THINKS th ih ng k s 216 | THRIVES th r ay v z 217 | THROWS th r ow z 218 | TRAILS t r ey l z 219 | TRAVELS t r ae v ax l z 220 | TREATS t r iy t s 221 | TRIGGERS t r ih g er z 222 | TURNS t er n z 223 | UNDERSTANDS ah n d er s t ae n d z 224 | USES y uw s ax z 225 | VANISHES v ae n ix sh ix z 226 | VARIES v eh r iy z 227 | WALKS w ao k s 228 | WANTS w aa n t s 229 | WEAKENS w iy k ax n z 230 | WEARS w eh r z 231 | WHIPS w ih p s 232 | WRAPS r ae p s 233 | YELLS y eh l z 234 | -------------------------------------------------------------------------------- /dictionaries/verb-present-tense-not-3rd-person-singular: -------------------------------------------------------------------------------- 1 | ABOUND ax b aw n d 2 | ACCUMULATE ax k y uw m y ax l ey t 3 | ACCUSE ax k y uw z 4 | ACKNOWLEDGE ae k n aa l ix jh 5 | AIN'T ey n t 6 | AMUSE ax m y uw z 7 | ARE aa r 8 | AREN'T aa r ax n t 9 | ARGUE aa r g y uw 10 | ARISE er ay z 11 | ASPIRE ax s p ay r 12 | AWAIT ax w ey t 13 | BELIEVE b ix l iy v 14 | CITE s ay t 15 | CONNECT k ax n eh k t 16 | CONSTITUTE k aa n s t ax t uw t 17 | CONTEND k ax n t eh n d 18 | CRAVE k r ey v 19 | DEFY d ix f ay 20 | DELIGHT d ix l ay t 21 | DESERVE d ix z er v 22 | DIVIDE d ix v ay d 23 | DO d uw 24 | DON'T d ow n t 25 | ECHO eh k ow 26 | EMBODY ix m b aa dx iy 27 | EXCEL ix k s eh l 28 | EXPECT ix k s p eh k t 29 | FALTER f ao l t er 30 | FORCE f ao r s 31 | FORESEE f ao r s iy 32 | GAZE g ey z 33 | GIVE g ih v 34 | GRUMBLE g r ah m b ax l 35 | GUESS g eh s 36 | HATE hh ey t 37 | HAVE hh ae v 38 | HAVEN'T hh ae v ax n t 39 | ILLUSTRATE ih l ax s t r ey t 40 | IMPLY ix m p l ay 41 | INCLUDE ix n k l uw d 42 | INSIST ix n s ih s t 43 | KICK k ih k 44 | MIRROR m ih r er 45 | NEEDN'T n iy d ax n t 46 | OBEY ow b ey 47 | OBSERVE ax b z er v 48 | OPPOSE ax p ow z 49 | OVERLOOK ow v er l uh k 50 | OWE ow 51 | PAINT p ey n t 52 | PECK p eh k 53 | PERPETUATE p er p eh ch ax w ey t 54 | PINE p ay n 55 | RECEDE r ix s iy d 56 | REFER r ax f er 57 | REFUSE r ax f y uw z 58 | RELATE r ix l ey t 59 | RESENT r ix z eh n t 60 | RIPEN r ay p ax n 61 | SAY s ey 62 | SCAMPER s k ae m p er 63 | SCOWL s k aw l 64 | SEE s iy 65 | SEEM s iy m 66 | SHUN sh ah n 67 | SPOIL s p oy l 68 | SPRINKLE s p r ih ng k ax l 69 | STARE s t eh r 70 | STRIVE s t r ay v 71 | SUGGEST s ax g jh eh s t 72 | SUPPOSE s ax p ow z 73 | SWIM s w ih m 74 | TEND t eh n d 75 | THINK th ih ng k 76 | TOIL t oy l 77 | UNDERSCORE ah n d er s k ao r 78 | UNLOCK ax n l aa k 79 | VARY v eh r iy 80 | WANT w aa n t 81 | WISH w ih sh 82 | WONDER w ah n d er 83 | WORK w er k 84 | WRACK r ae k 85 | -------------------------------------------------------------------------------- /dictionaries/wh-adverb: -------------------------------------------------------------------------------- 1 | HOW hh aw 2 | WHEN w eh n 3 | WHENEVER w eh n eh v er 4 | WHERE w eh r 5 | WHERE'S w eh r z 6 | WHEREVER w eh r eh v er 7 | WHY w ay 8 | -------------------------------------------------------------------------------- /dictionaries/wh-determiner: -------------------------------------------------------------------------------- 1 | THAT dh ae t 2 | THAT'LL dh ae dx ax l 3 | THAT'S dh ae t s 4 | WHATEVER w ah t eh v er 5 | WHICH w ih ch 6 | -------------------------------------------------------------------------------- /dictionaries/wh-pronoun: -------------------------------------------------------------------------------- 1 | WHAT w ah t 2 | WHAT'S w ah t s 3 | WHO hh uw 4 | WHO'S hh uw z 5 | WHOEVER hh uw eh v er 6 | WHOM hh uw m 7 | -------------------------------------------------------------------------------- /dictionaries/wh-pronoun-possessive: -------------------------------------------------------------------------------- 1 | WHOSE hh uw z 2 | -------------------------------------------------------------------------------- /getcommand.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | import sys 4 | import api 5 | from lxml import etree 6 | from api import Data 7 | from subprocess import call 8 | import time 9 | import subprocess 10 | import urllib.request, urllib.error, urllib.parse 11 | import wikipedia 12 | from random import randint 13 | import getpass 14 | import os 15 | import configparser 16 | import xml.etree.ElementTree as ET 17 | from pykeyboard import PyKeyboard 18 | import datetime 19 | 20 | def command(speech_object): 21 | previous_command = "" 22 | while(True): 23 | 24 | line = speech_object.readline() 25 | if(line.startswith("sentence1: ")): 26 | com = line[15:-6] 27 | #if (previous_command == com): 28 | # continue 29 | print(com) 30 | 31 | Config = configparser.ConfigParser() 32 | Config.read("config.ini") 33 | user_prefix = Config.get("BasicUserData","Prefix") 34 | 35 | if (com == "DRAGON FIRE"): 36 | tts_kill() 37 | userin = Data([" "]," ") 38 | words_dragonfire = { 39 | 0 : "Yes, " + user_prefix + ".", 40 | 1 : "Yes. I'm waiting.", 41 | 2 : "What is your orders?" 42 | } 43 | userin.say(words_dragonfire[randint(0,2)]) 44 | elif (com == "ENOUGH" or com == "OKAY"): 45 | tts_kill() 46 | elif (com == "STOP"): 47 | tts_kill() 48 | os.system("xbmc-send --action=\"Stop\"") 49 | elif (com == "WHO AM I" or com == "WHAT IS MY NAME"): 50 | tts_kill() 51 | user_full_name = os.popen("getent passwd $LOGNAME | cut -d: -f5 | cut -d, -f1").read() 52 | user_full_name = user_full_name[:-1] 53 | userin = Data(["echo"], user_full_name) 54 | userin.say("Your name is " + user_full_name + "," + user_prefix + ".") 55 | userin.interact(0) 56 | previous_command = com 57 | elif (com == "I'M A WOMAN" or com == "I'M A GIRL" or com == "I'M A LADY"): 58 | tts_kill() 59 | cfgfile = open("config.ini",'w') 60 | Config.set("BasicUserData","Prefix","My Lady") 61 | Config.write(cfgfile) 62 | cfgfile.close() 63 | userin = Data([" "]," ") 64 | userin.say("Pardon, My Lady.") 65 | elif (com == "I'M A MAN" or com == "I'M A BOY"): 66 | tts_kill() 67 | cfgfile = open("config.ini",'w') 68 | Config.set("BasicUserData","Prefix","Sir") 69 | Config.write(cfgfile) 70 | cfgfile.close() 71 | userin = Data([" "]," ") 72 | userin.say("Pardon, Sir.") 73 | elif (com == "WHAT IS YOUR NAME"): 74 | tts_kill() 75 | userin = Data([" "]," ") 76 | userin.say("My name is Dragon Fire.") 77 | previous_command = com 78 | elif (com == "WHAT IS YOUR GENDER"): 79 | tts_kill() 80 | userin = Data([" "]," ") 81 | userin.say("I have a female voice but I don't have a gender identity. I'm a computer program, " + user_prefix + ".") 82 | previous_command = com 83 | elif (com == "OPEN FILE MANAGER"): 84 | tts_kill() 85 | userin = Data(["pantheon-files"],"File Manager") 86 | userin.say("File Manager") 87 | userin.interact(0) 88 | previous_command = com 89 | elif (com == "OPEN WEB BROWSER"): 90 | tts_kill() 91 | userin = Data(["sensible-browser"],"Web Browser") 92 | userin.say("Web Browser") 93 | userin.interact(0) 94 | previous_command = com 95 | elif (com == "SHUT DOWN THE COMPUTER" or com == "SHUT DOWN THE HELMET"): 96 | tts_kill() 97 | #userin = Data(["sudo","poweroff"],"Shutting down") 98 | userin = Data(["echo"],"Shutting down") 99 | userin.say("Shutting down") 100 | userin.interact(0) 101 | time.sleep(3) 102 | os.system("xbmc-send --action=\"Powerdown\"") 103 | previous_command = com 104 | elif (com.startswith("WIKI PEDIA SEARCH FOR")): 105 | tts_kill() 106 | #userin = Data(["sensible-browser","http://en.wikipedia.org/wiki/"+com[22:].lower()],com[22:]) 107 | #userin.interact(0) 108 | print("wkhtmltopdf http://en.wikipedia.org/wiki/"+com[22:].lower().replace(" ", "%20")+" /tmp/dragonfire/"+com[22:].lower().replace(" ", "%20")+".pdf") 109 | os.system("wkhtmltopdf http://en.wikipedia.org/wiki/"+com[22:].lower().replace(" ", "%20")+" /tmp/dragonfire/"+com[22:].lower().replace(" ", "%20")+".pdf") 110 | #os.system("convert -density 300 oxford.pdf[0] oxford.jpg") 111 | os.system("convert -density 300 /tmp/dragonfire/"+com[22:].lower().replace(" ", "%20")+".pdf[0] /tmp/dragonfire/"+com[22:].lower().replace(" ", "%20")+".jpg") 112 | os.system("xbmc-send --action=\"ShowPicture(/tmp/dragonfire/"+com[22:].lower().replace(" ", "%20")+".jpg)\"") 113 | os.system("sleep 2 && xbmc-send --action=\"ZoomLevel3\"") 114 | try: 115 | wikipage = wikipedia.page(com[22:].lower()) 116 | wikicontent = "".join([i if ord(i) < 128 else ' ' for i in wikipage.content]) 117 | userin.say(wikicontent) 118 | previous_command = com 119 | except: 120 | pass 121 | elif (com.startswith("YOU TUBE SEARCH FOR")): 122 | tts_kill() 123 | root = ET.fromstring(urllib.request.urlopen("http://gdata.youtube.com/feeds/api/videos?vq=" + com[20:].lower().replace(" ", "%20") + "&racy=include&orderby=relevance&start-index=1&max-results=2").read()) 124 | 125 | for child in root[16]: 126 | if child.tag == "{http://www.w3.org/2005/Atom}title": 127 | youtube_title = child.text 128 | if child.tag == "{http://www.w3.org/2005/Atom}link": 129 | youtube_url = child.attrib["href"] 130 | break 131 | 132 | youtube_id = youtube_url.replace("http://www.youtube.com/watch?v=","").replace("&feature=youtube_gdata","") 133 | print(youtube_id) 134 | os.system("xbmc-send --action=\"ActivateWindow(Videos,plugin://plugin.video.youtube/kodion/search/query/?q=" + com[20:].lower().replace(" ", "%20") + ")\"") 135 | #userin = Data(["sensible-browser",youtube_url],youtube_title) 136 | userin = Data(["echo"],youtube_title) 137 | youtube_title = "".join([i if ord(i) < 128 else ' ' for i in youtube_title]) 138 | #k = PyKeyboard() 139 | #k.tap_key('space') 140 | time.sleep(5) 141 | os.system("xbmc-send --action=\"PlayMedia(plugin://plugin.video.youtube/play/?video_id=" + youtube_id + ")\"") 142 | userin.say(youtube_title) 143 | userin.interact(0) 144 | #k.tap_key(k.tab_key) 145 | #k.tap_key(k.tab_key) 146 | #k.tap_key(k.tab_key) 147 | #k.tap_key(k.tab_key) 148 | #k.tap_key('f') 149 | elif (com == "LEFT"): 150 | userin = Data([" "]," ") 151 | os.system("xbmc-send --action=\"Left\"") 152 | #userin.say("Left") 153 | previous_command = com 154 | elif (com == "RIGHT"): 155 | userin = Data([" "]," ") 156 | os.system("xbmc-send --action=\"Right\"") 157 | #userin.say("Right") 158 | previous_command = com 159 | elif (com == "UP"): 160 | userin = Data([" "]," ") 161 | os.system("xbmc-send --action=\"Up\"") 162 | #userin.say("Up") 163 | previous_command = com 164 | elif (com == "DOWN"): 165 | userin = Data([" "]," ") 166 | os.system("xbmc-send --action=\"Down\"") 167 | #userin.say("Down") 168 | previous_command = com 169 | elif (com == "SELECT"): 170 | tts_kill() 171 | userin = Data(["echo"],"Select") 172 | userin.interact(0) 173 | os.system("xbmc-send --action=\"Select\"") 174 | userin.say("Select") 175 | previous_command = com 176 | elif (com == "BACK"): 177 | tts_kill() 178 | userin = Data(["echo"],"Back") 179 | userin.interact(0) 180 | os.system("xbmc-send --action=\"back\"") 181 | userin.say("Back") 182 | previous_command = com 183 | elif (com == "GO TO HOME"): 184 | tts_kill() 185 | userin = Data(["echo"],"Home") 186 | userin.interact(0) 187 | os.system("xbmc-send --action=\"ActivateWindow(10000)\"") 188 | userin.say("Home") 189 | previous_command = com 190 | elif (com == "GO TO PROGRAMS"): 191 | tts_kill() 192 | userin = Data(["echo"],"Programs") 193 | userin.interact(0) 194 | os.system("xbmc-send --action=\"ActivateWindow(10001)\"") 195 | userin.say("Programs") 196 | previous_command = com 197 | elif (com == "GO TO PICTURES"): 198 | tts_kill() 199 | userin = Data(["echo"],"Pictures") 200 | userin.interact(0) 201 | os.system("xbmc-send --action=\"ActivateWindow(10002)\"") 202 | userin.say("Pictures") 203 | previous_command = com 204 | elif (com == "GO TO FILEMANAGER"): 205 | tts_kill() 206 | userin = Data(["echo"],"File manager") 207 | userin.interact(0) 208 | os.system("xbmc-send --action=\"ActivateWindow(10003)\"") 209 | userin.say("File manager") 210 | previous_command = com 211 | elif (com == "GO TO SETTINGS"): 212 | tts_kill() 213 | userin = Data(["echo"],"Settings") 214 | userin.interact(0) 215 | os.system("xbmc-send --action=\"ActivateWindow(10004)\"") 216 | userin.say("Settings") 217 | previous_command = com 218 | elif (com == "GO TO MUSIC"): 219 | tts_kill() 220 | userin = Data(["echo"],"Music") 221 | userin.interact(0) 222 | os.system("xbmc-send --action=\"ActivateWindow(10005)\"") 223 | userin.say("Music") 224 | previous_command = com 225 | elif (com == "GO TO VIDEO"): 226 | tts_kill() 227 | userin = Data(["echo"],"Video") 228 | userin.interact(0) 229 | os.system("xbmc-send --action=\"ActivateWindow(10006)\"") 230 | userin.say("Videos") 231 | previous_command = com 232 | 233 | else: 234 | tts_kill() 235 | userin = Data(["echo"],com + " ?") 236 | userin.say("Unrecognized command.") 237 | userin.interact(0) 238 | previous_command = com 239 | 240 | def tts_kill(): 241 | call(["pkill", "audsp"]) 242 | call(["pkill", "aplay"]) 243 | 244 | def dragon_greet(): 245 | time = datetime.datetime.now().time() 246 | 247 | Config = configparser.ConfigParser() 248 | Config.read("config.ini") 249 | user_prefix = Config.get("BasicUserData","Prefix") 250 | 251 | if time < datetime.time(12): 252 | userin = Data([" "],"Good morning " + user_prefix) 253 | userin.say("Good morning " + user_prefix) 254 | elif datetime.time(12) < time and time < datetime.time(18): 255 | userin = Data([" "],"Good afternoon " + user_prefix) 256 | userin.say("Good afternoon " + user_prefix) 257 | else: 258 | userin = Data([" "],"Good evening " + user_prefix) 259 | userin.say("Good evening " + user_prefix) 260 | 261 | if __name__ == '__main__': 262 | try: 263 | os.system("./run_kodi.sh") 264 | #os.system("./camera_stream.sh") 265 | #p = subprocess.Popen(['./camera_stream.sh'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 266 | #os.system("sleep 4 && xbmc-send --action=\"PlayMedia(/tmp/test.mpg)\" && sleep 2 && xbmc-send --action=\"SkipForward\"") 267 | dragon_greet() 268 | 269 | try: 270 | os.makedirs("/tmp/dragonfire") 271 | except OSError: 272 | if not os.path.isdir("/tmp/dragonfire"): 273 | raise 274 | command(sys.stdin) 275 | 276 | 277 | except KeyboardInterrupt: 278 | sys.exit(1) 279 | -------------------------------------------------------------------------------- /julian.jconf: -------------------------------------------------------------------------------- 1 | # Copyright (c) 1991-2005 Kawahara Lab., Kyoto University 2 | # Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology 3 | # Copyright (c) 2005 Julius project team, Nagoya Institute of Technology 4 | # All rights reserved 5 | # 6 | # Example of Runtime Configuration File for Julian rev.3.5 7 | # 8 | # 1) NOTICE: relative paths must be relative to THIS FILE. 9 | # Current working directory does not affect. 10 | # 2) Blank lines and comments after '#' are ignored. 11 | # Use `\#' to specify `#' in an argument, 12 | # 3) Each line should be shorter than 512 bytes. 13 | # 4) Syntax of each arguments are same as corresponding command options. 14 | # 5) The commented-out values in this file are default values in Julian. 15 | # 16 | 17 | ###################################################################### 18 | #### Files 19 | ###################################################################### 20 | ## 21 | ## Grammar definition file (DFA and dictionary) 22 | ## 23 | 24 | #### There are three ways to specify the grammar files. 25 | #### (1) and (2) can be used multiple times. 26 | 27 | #### (1) Specify by common prefix of .dfa and .dict files. Comma-separated 28 | #### prefixes can be specified for multiple grammar recognition 29 | #-gram /cdrom/testrun/sample_grammars/vfr/vfr 30 | 31 | #### (2) Or you can give Julian a text file which contains list of grammar 32 | #### prefixes one per line. 33 | #-gramlist file 34 | 35 | #### (3) Classic way to specify a grammar. 36 | -dfa sample.dfa 37 | -v sample.dict 38 | 39 | #### If you want to clear previously specified grammars, use this at the 40 | #### point. 41 | #-nogram 42 | 43 | ## 44 | ## Acoustic HMM file 45 | ## 46 | # support ascii hmmdefs or binary format (converted by "mkbinhmm") 47 | # format (ascii/binary) will be automatically detected 48 | -h acoustic_model_files/hmmdefs 49 | 50 | ## triphone model needs HMMList that maps logical triphone to physical ones. 51 | -hlist acoustic_model_files/tiedlist 52 | 53 | ###################################################################### 54 | #### Multiple grammar recognition 55 | ###################################################################### 56 | #-multigramout # Output results for each grammar 57 | 58 | ###################################################################### 59 | #### Language Model 60 | ###################################################################### 61 | ## 62 | ## word insertion penalty 63 | ## 64 | -penalty1 5.0 # first pass 65 | -penalty2 20.0 # second pass 66 | 67 | ###################################################################### 68 | #### Dictionary 69 | ###################################################################### 70 | ## 71 | ## do not giveup startup on error words 72 | ## 73 | #-forcedict 74 | 75 | ###################################################################### 76 | #### Acoustic Model 77 | ###################################################################### 78 | ## 79 | ## Context-dependency handling will be enabled according to the model type. 80 | ## Try below if julius wrongly detect the type of hmmdefs 81 | ## 82 | #-no_ccd # disable context-dependency handling 83 | #-force_ccd # enable context-dependency handling 84 | 85 | ## 86 | ## If julius go wrong with checking parameter type, try below. 87 | ## 88 | #-notypecheck 89 | # 90 | 91 | ## 92 | ## (PTM/triphone) switch computation method of IWCD on 1st pass 93 | ## 94 | #-iwcd1 best N # assign average of N-best likelihood of the same context 95 | -iwcd1 max # assign maximum likelihood of the same context 96 | #-iwcd1 avg # assign average likelihood of the same context (default) 97 | 98 | ###################################################################### 99 | #### Gaussian Pruning 100 | ###################################################################### 101 | ## Number of mixtures to select in a mixture pdf. 102 | ## This default value is optimized for IPA99's PTM, 103 | ## with 64 Gaussians per codebook 104 | #-tmix 2 105 | 106 | ## Select Gaussian pruning algorithm 107 | ## defulat: beam (standard setting), safe (others) 108 | #-gprune safe # safe pruning, accurate but slow 109 | #-gprune heuristic # heuristic pruning 110 | -gprune beam # beam pruning, fast but sensitive 111 | #-gprune none # no pruning 112 | 113 | ###################################################################### 114 | #### Gaussian Mixture Selection 115 | ###################################################################### 116 | #-gshmm hmmdefs # monophone HMM for GMS 117 | # (OFF when not specified) 118 | #-gsnum 24 # number of states to be selected on GMS 119 | 120 | ###################################################################### 121 | #### Search Parameters 122 | ###################################################################### 123 | #-b 400 # beam width on 1st pass (#nodes) for monophone 124 | #-b 800 # beam width on 1st pass (#nodes) for triphone,PTM 125 | #-b 1000 # beam width on 1st pass (#nodes) for triphone,PTM,engine=v2.1 126 | -b2 200 # beam width on 2nd pass (#words) 127 | -sb 200.0 # score beam envelope threshold 128 | #-s 500 # hypotheses stack size on 2nd pass (#hypo) 129 | #-m 2000 # hypotheses overflow threshold (#hypo) 130 | #-lookuprange 5 # lookup range for word expansion (#frame) 131 | #-n 1 # num of sentences to find (#sentence) 132 | #-n 10 # (default for 'standard' configuration) 133 | #-output 1 # num of found sentences to output (#sentence) 134 | #-looktrellis # search within only backtrellis words 135 | 136 | ###################################################################### 137 | #### Inter-word Short Pause Handling 138 | ###################################################################### 139 | ## 140 | ## Specify short pause model name to be treated as special 141 | ## 142 | -spmodel "sp" # HMM model name 143 | 144 | ## 145 | ## For insertion of context-free short-term inter-word pauses between words 146 | ## (multi-path version only) 147 | ## 148 | -iwsp # append a skippable sp model at all word ends 149 | -iwsppenalty -70.0 # transition penalty for the appenede sp models 150 | 151 | ###################################################################### 152 | #### Speech Input Source 153 | ###################################################################### 154 | ## select one (default: mfcfile) 155 | #-input mfcfile # MFCC file in HTK parameter file format 156 | #-input rawfile # raw wavefile (auto-detect format) 157 | # WAV(16bit) or 158 | # RAW(16bit(signed short),mono,big-endian) 159 | # AIFF,AU (with libsndfile extension) 160 | # other than 16kHz, sampling rate should be specified 161 | # by "-smpFreq" option 162 | #-input mic # direct microphone input 163 | # device name can be specified via env. val. "AUDIODEV" 164 | #-input netaudio -NA host:0 # direct input from DatLink(NetAudio) host 165 | #-input adinnet -adport portnum # via adinnet network client 166 | #-input stdin # from standard tty input (pipe) 167 | 168 | #-filelist filename # specify file list to be recognized in batch mode 169 | 170 | #-nostrip # switch OFF dropping of invalid input segment. 171 | # (default: strip off invalid segment (0 sequence etc.) 172 | #-zmean # enable DC offset removal (invalid for mfcfile input) 173 | 174 | ###################################################################### 175 | #### Recording 176 | ###################################################################### 177 | #-record directory # auto-save recognized speech data into the dir 178 | 179 | ###################################################################### 180 | #### GMM-based Input Verification and Rejection 181 | ###################################################################### 182 | #-gmm gmmdefs # specify GMM definition file in HTK format 183 | #-gmmnum 10 # num of Gaussians to be computed per mixture 184 | #-gmmreject "noise,laugh,cough" # list of GMM names to be rejected 185 | 186 | ###################################################################### 187 | #### Too Short Input Rejection 188 | ###################################################################### 189 | #-rejectshort 800 # reject input shorter than specified millisecond 190 | 191 | ###################################################################### 192 | #### Speech Detection 193 | ###################################################################### 194 | #-pausesegment # turn on speech detection by level and zero-cross 195 | #-nopausesegment # turn off speech detection by level and zero-cross 196 | # (default: on for mic or adinnet, off for file) 197 | #-lv 2000 # threshold of input level (0-32767) 198 | #-headmargin 300 # head margin of input segment (msec) 199 | #-tailmargin 400 # tail margin of input segment (msec) 200 | #-zc 60 # threshold of number of zero-cross in a second 201 | 202 | ###################################################################### 203 | #### Acoustic Analysis 204 | ###################################################################### 205 | -smpFreq 16000 # sampling rate (Hz) 206 | #-smpPeriod 625 # sampling period (ns) (= 10000000 / smpFreq) 207 | #-fsize 400 # window size (samples) 208 | #-fshift 160 # frame shift (samples) 209 | #-delwin 2 # delta window (frames) 210 | #-hifreq -1 # cut-off hi frequency (Hz) (-1: disable) 211 | #-lofreq -1 # cut-off low frequency (Hz) (-1: disable) 212 | #-cmnsave filename # save CMN param to file (update per input) 213 | #-cmnload filename # load initial CMN param from file on startup 214 | 215 | ###################################################################### 216 | #### Spectral Subtraction (SS) 217 | ###################################################################### 218 | #-sscalc # do SS using head silence (file input only) 219 | #-sscalclen 300 # length of head silence for SS (msec) 220 | #-ssload filename # load constant noise spectrum from file for SS 221 | #-ssalpha 2.0 # alpha coef. for SS 222 | #-ssfloor 0.5 # spectral floor for SS 223 | 224 | ###################################################################### 225 | #### Forced alignment 226 | ###################################################################### 227 | #-walign # do forced alignment with result per word 228 | #-palign # do forced alignment with result per phoneme 229 | #-salign # do forced alignment with result per HMM state 230 | 231 | ###################################################################### 232 | #### Word Confidence Scoring 233 | ###################################################################### 234 | #-cmalpha 0.05 # smoothing coef. alpha 235 | 236 | ###################################################################### 237 | #### Output 238 | ###################################################################### 239 | #-separatescore # output language and acoustic score separately 240 | #-progout # output partial result per a time interval 241 | #-proginterval 300 # time interval for "-progout" (msec) 242 | #-quiet # output minimal result 243 | #-demo # = "-progout -quiet", suitable for dictation demo 244 | #-debug # output full message for debug 245 | #-charconv from to # output character set conversion (see manual for 246 | # available code set name) 247 | 248 | ###################################################################### 249 | #### Server module mode 250 | ###################################################################### 251 | #-module # Run Julius on "Server module mode" 252 | #-module 5530 # (when using another port number for connection) 253 | #-outcode WLPSC # select output message toward module (WLPSCwlps) 254 | 255 | ###################################################################### 256 | #### Misc. 257 | ###################################################################### 258 | #-help # output help and exit 259 | #-setting # output engine configuration and exit 260 | #-C jconffile # expand other jconf file in its place 261 | 262 | ################################################################# end of file 263 | -------------------------------------------------------------------------------- /meanings: -------------------------------------------------------------------------------- 1 | $: dollar 2 | $ -$ --$ A$ C$ HK$ M$ NZ$ S$ U.S.$ US$ 3 | '': closing quotation mark 4 | ' '' 5 | (: opening parenthesis 6 | ( [ { 7 | ): closing parenthesis 8 | ) ] } 9 | ,: comma 10 | , 11 | --: dash 12 | -- 13 | .: sentence terminator 14 | . ! ? 15 | :: colon or ellipsis 16 | : ; ... 17 | CC: conjunction, coordinating 18 | & 'n and both but either et for less minus neither nor or plus so 19 | therefore times v. versus vs. whether yet 20 | CD: numeral, cardinal 21 | mid-1890 nine-thirty forty-two one-tenth ten million 0.5 one forty- 22 | seven 1987 twenty '79 zero two 78-degrees eighty-four IX '60s .025 23 | fifteen 271,124 dozen quintillion DM2,000 ... 24 | DT: determiner 25 | all an another any both del each either every half la many much nary 26 | neither no some such that the them these this those 27 | EX: existential there 28 | there 29 | FW: foreign word 30 | gemeinschaft hund ich jeux habeas Haementeria Herr K'ang-si vous 31 | lutihaw alai je jour objets salutaris fille quibusdam pas trop Monte 32 | terram fiche oui corporis ... 33 | IN: preposition or conjunction, subordinating 34 | astride among uppon whether out inside pro despite on by throughout 35 | below within for towards near behind atop around if like until below 36 | next into if beside ... 37 | JJ: adjective or numeral, ordinal 38 | third ill-mannered pre-war regrettable oiled calamitous first separable 39 | ectoplasmic battery-powered participatory fourth still-to-be-named 40 | multilingual multi-disciplinary ... 41 | JJR: adjective, comparative 42 | bleaker braver breezier briefer brighter brisker broader bumper busier 43 | calmer cheaper choosier cleaner clearer closer colder commoner costlier 44 | cozier creamier crunchier cuter ... 45 | JJS: adjective, superlative 46 | calmest cheapest choicest classiest cleanest clearest closest commonest 47 | corniest costliest crassest creepiest crudest cutest darkest deadliest 48 | dearest deepest densest dinkiest ... 49 | LS: list item marker 50 | A A. B B. C C. D E F First G H I J K One SP-44001 SP-44002 SP-44005 51 | SP-44007 Second Third Three Two * a b c d first five four one six three 52 | two 53 | MD: modal auxiliary 54 | can cannot could couldn't dare may might must need ought shall should 55 | shouldn't will would 56 | NN: noun, common, singular or mass 57 | common-carrier cabbage knuckle-duster Casino afghan shed thermostat 58 | investment slide humour falloff slick wind hyena override subhumanity 59 | machinist ... 60 | NNP: noun, proper, singular 61 | Motown Venneboerger Czestochwa Ranzer Conchita Trumplane Christos 62 | Oceanside Escobar Kreisler Sawyer Cougar Yvette Ervin ODI Darryl CTCA 63 | Shannon A.K.C. Meltex Liverpool ... 64 | NNPS: noun, proper, plural 65 | Americans Americas Amharas Amityvilles Amusements Anarcho-Syndicalists 66 | Andalusians Andes Andruses Angels Animals Anthony Antilles Antiques 67 | Apache Apaches Apocrypha ... 68 | NNS: noun, common, plural 69 | undergraduates scotches bric-a-brac products bodyguards facets coasts 70 | divestitures storehouses designs clubs fragrances averages 71 | subjectivists apprehensions muses factory-jobs ... 72 | PDT: pre-determiner 73 | all both half many quite such sure this 74 | POS: genitive marker 75 | ' 's 76 | PRP: pronoun, personal 77 | hers herself him himself hisself it itself me myself one oneself ours 78 | ourselves ownself self she thee theirs them themselves they thou thy us 79 | PRP$: pronoun, possessive 80 | her his mine my our ours their thy your 81 | RB: adverb 82 | occasionally unabatingly maddeningly adventurously professedly 83 | stirringly prominently technologically magisterially predominately 84 | swiftly fiscally pitilessly ... 85 | RBR: adverb, comparative 86 | further gloomier grander graver greater grimmer harder harsher 87 | healthier heavier higher however larger later leaner lengthier less- 88 | perfectly lesser lonelier longer louder lower more ... 89 | RBS: adverb, superlative 90 | best biggest bluntest earliest farthest first furthest hardest 91 | heartiest highest largest least less most nearest second tightest worst 92 | RP: particle 93 | aboard about across along apart around aside at away back before behind 94 | by crop down ever fast for forth from go high i.e. in into just later 95 | low more off on open out over per pie raising start teeth that through 96 | under unto up up-pp upon whole with you 97 | SYM: symbol 98 | % & ' '' ''. ) ). * + ,. < = > @ A[fj] U.S U.S.S.R * ** *** 99 | TO: "to" as preposition or infinitive marker 100 | to 101 | UH: interjection 102 | Goodbye Goody Gosh Wow Jeepers Jee-sus Hubba Hey Kee-reist Oops amen 103 | huh howdy uh dammit whammo shucks heck anyways whodunnit honey golly 104 | man baby diddle hush sonuvabitch ... 105 | VB: verb, base form 106 | ask assemble assess assign assume atone attention avoid bake balkanize 107 | bank begin behold believe bend benefit bevel beware bless boil bomb 108 | boost brace break bring broil brush build ... 109 | VBD: verb, past tense 110 | dipped pleaded swiped regummed soaked tidied convened halted registered 111 | cushioned exacted snubbed strode aimed adopted belied figgered 112 | speculated wore appreciated contemplated ... 113 | VBG: verb, present participle or gerund 114 | telegraphing stirring focusing angering judging stalling lactating 115 | hankerin' alleging veering capping approaching traveling besieging 116 | encrypting interrupting erasing wincing ... 117 | VBN: verb, past participle 118 | multihulled dilapidated aerosolized chaired languished panelized used 119 | experimented flourished imitated reunifed factored condensed sheared 120 | unsettled primed dubbed desired ... 121 | VBP: verb, present tense, not 3rd person singular 122 | predominate wrap resort sue twist spill cure lengthen brush terminate 123 | appear tend stray glisten obtain comprise detest tease attract 124 | emphasize mold postpone sever return wag ... 125 | VBZ: verb, present tense, 3rd person singular 126 | bases reconstructs marks mixes displeases seals carps weaves snatches 127 | slumps stretches authorizes smolders pictures emerges stockpiles 128 | seduces fizzes uses bolsters slaps speaks pleads ... 129 | WDT: WH-determiner 130 | that what whatever which whichever 131 | WP: WH-pronoun 132 | that what whatever whatsoever which who whom whosoever 133 | WP$: WH-pronoun, possessive 134 | whose 135 | WRB: Wh-adverb 136 | how however whence whenever where whereby whereever wherein whereof why 137 | ``: opening quotation mark 138 | ` `` 139 | 140 | -------------------------------------------------------------------------------- /run_kodi.sh: -------------------------------------------------------------------------------- 1 | #sudo apt-get install xbmc-eventclients-xbmc-send 2 | 3 | xbmc & (sleep 3 && xbmc-send --action="ToggleStereoMode") 4 | -------------------------------------------------------------------------------- /sample.dfa: -------------------------------------------------------------------------------- 1 | 0 1 1 0 0 2 | 1 2 2 0 0 3 | 1 5 3 0 0 4 | 1 12 4 0 0 5 | 1 22 5 0 0 6 | 1 26 6 0 0 7 | 1 29 7 0 0 8 | 1 35 8 0 0 9 | 1 38 2 0 0 10 | 1 41 9 0 0 11 | 1 42 10 0 0 12 | 2 0 11 0 0 13 | 3 4 2 0 0 14 | 4 9 12 0 0 15 | 5 21 13 0 0 16 | 6 25 14 0 0 17 | 7 28 15 0 0 18 | 8 34 16 0 0 19 | 8 35 8 0 0 20 | 9 40 17 0 0 21 | 10 18 18 0 0 22 | 10 36 19 0 0 23 | 11 -1 -1 1 0 24 | 12 6 2 0 0 25 | 13 20 2 0 0 26 | 14 24 20 0 0 27 | 15 43 21 0 0 28 | 16 33 22 0 0 29 | 17 39 2 0 0 30 | 18 10 12 0 0 31 | 19 7 2 0 0 32 | 20 23 2 0 0 33 | 21 16 23 0 0 34 | 22 31 24 0 0 35 | 22 32 25 0 0 36 | 23 11 26 0 0 37 | 24 30 2 0 0 38 | 25 14 2 0 0 39 | 26 27 27 0 0 40 | 27 19 28 0 0 41 | 28 37 29 0 0 42 | 29 12 30 0 0 43 | 30 9 31 0 0 44 | 31 14 32 0 0 45 | 32 13 33 0 0 46 | 33 8 34 0 0 47 | 34 17 35 0 0 48 | 35 15 36 0 0 49 | 36 3 2 0 0 50 | -------------------------------------------------------------------------------- /sample.dict: -------------------------------------------------------------------------------- 1 | 0 [] sil 2 | 1 [] sil 3 | 2 [OKAY] ow k ey 4 | 2 [ENOUGH] ix n ah f 5 | 2 [STOP] s t aa p 6 | 3 [GARBAGE] g aa r b ix jh 7 | 4 [DRAGON] d r ae g ax n 8 | 5 [FIRE] f ay er 9 | 6 [WHAT] w ah t 10 | 6 [WHO] hh uw 11 | 7 [I'M] ay m 12 | 8 [BE] b iy 13 | 9 [AM] ae m 14 | 10 [IS] ih z 15 | 11 [ARE] aa r 16 | 12 [I] ay 17 | 13 [ME] m iy 18 | 14 [YOU] y uw 19 | 15 [HE] hh iy 20 | 15 [HER] hh er 21 | 15 [HIM] hh ih m 22 | 15 [SHE] sh iy 23 | 15 [IT] ih t 24 | 16 [US] ah s 25 | 16 [WE] w iy 26 | 16 [THEY] dh ey 27 | 16 [THEM] dh eh m 28 | 16 [YOU] y uw 29 | 17 [ITSELF] ix t s eh l f 30 | 17 [HIMSELF] hh ix m s eh l f 31 | 17 [HERSELF] hh er s eh l f 32 | 17 [MYSELF] m ay s eh l f 33 | 17 [OURS] aw er z 34 | 17 [OURSELVES] aw er s eh l v z 35 | 17 [THEIRS] dh eh r z 36 | 17 [THEMSELVES] dh eh m s eh l v z 37 | 17 [YOURSELF] y er s eh l f 38 | 18 [MY] m ay 39 | 18 [YOUR] y ao r 40 | 19 [HER] hh er 41 | 19 [HIS] hh ih z 42 | 19 [ITS] ih t s 43 | 19 [MY] m ay 44 | 19 [MINE] m ay n 45 | 19 [OUR] aw er 46 | 19 [OURS] aw er z 47 | 19 [THEIR] dh eh r 48 | 19 [YOUR] y ao r 49 | 20 [OPEN] ow p ax n 50 | 21 [FILE] f ay l 51 | 21 [WEB] w eh b 52 | 22 [MANAGER] m ae n ax jh er 53 | 22 [BROWSER] b r aw z er 54 | 23 [SHUT] sh ah t 55 | 24 [DOWN] d aw n 56 | 25 [THE] dh ax 57 | 26 [HELMET] hh eh l m ax t 58 | 26 [COMPUTER] k ax m p y uw dx er 59 | 26 [GENDER] jh eh n d er 60 | 27 [MAKE] m ey k 61 | 28 [WIKI] w ih k iy 62 | 28 [YOU] y uw 63 | 28 [GOO] g uh 64 | 29 [PEDIA] p iy dx iy ax 65 | 29 [TUBE] t uw b 66 | 29 [GLE] g ax l 67 | 30 [WIKI] w ih k iy 68 | 31 [PEDIA] p iy dx iy ax 69 | 32 [TUBE] t uw b 70 | 33 [SEARCH] s er ch 71 | 34 [FOR] f ao r 72 | 35 [OXFORD] aa k s f er d 73 | 35 [UNIVERSITY] y uw n ax v er s ax dx iy 74 | 35 [BILL] b ih l 75 | 35 [GATES] g ey t s 76 | 36 [A] ax 77 | 37 [A] ax 78 | 37 [ALL] ao l 79 | 37 [AN] ae n 80 | 37 [ANOTHER] ax n ah dh er 81 | 37 [ANY] eh n iy 82 | 37 [BOTH] b ow th 83 | 37 [DEL] d eh l 84 | 37 [EACH] iy ch 85 | 37 [EVERY] eh v er iy 86 | 37 [LE] l ax 87 | 37 [NEITHER] n iy dh er 88 | 37 [SOME] s ah m 89 | 37 [THE] dh ax 90 | 37 [THESE] dh iy z 91 | 37 [THIS] dh ih s 92 | 37 [THOSE] dh ow z 93 | 38 [LEFT] l eh f t 94 | 38 [RIGHT] r ay t 95 | 38 [UP] ah p 96 | 38 [DOWN] d aw n 97 | 38 [SELECT] s ax l eh k t 98 | 38 [BACK] b ae k 99 | 39 [GO] g ow 100 | 40 [TO] t uw 101 | 41 [HOME] hh ow m 102 | 41 [PROGRAMS] p r ow g r ae m z 103 | 41 [PICTURES] p ih k ch er z 104 | 41 [SETTINGS] s eh dx ix ng z 105 | 41 [MUSIC] m y uw z ix k 106 | 41 [VIDEO] v ih dx iy ow 107 | 42 [GENDER] jh eh n d er 108 | 42 [BOY] b oy 109 | 42 [MAN] m ae n 110 | 42 [NAME] n ey m 111 | 42 [GIRL] g er l 112 | 42 [WOMAN] w uh m ax n 113 | 42 [LADY] l ey dx iy 114 | 43 [ABETTING] ax b eh dx ix ng 115 | 43 [ABOUNDING] ax b aw n d ix ng 116 | 43 [ACCOMPANYING] ax k ah m p ax n iy ix ng 117 | 43 [ACCORDING] ax k ao r dx ix ng 118 | 43 [ACHING] ey k ix ng 119 | 43 [ACQUIRING] ax k w ay r ix ng 120 | 43 [ACTING] ae k t ix ng 121 | 43 [ADDING] ae dx ix ng 122 | 43 [ADDRESSING] ax d r eh s ix ng 123 | 43 [ADVANCING] ax d v ae n s ix ng 124 | 43 [ADVISING] ae d v ay z ix ng 125 | 43 [AFFECTING] ax f eh k t ix ng 126 | 43 [AIDING] ey dx ix ng 127 | 43 [AIMING] ey m ix ng 128 | 43 [ALLOWING] ax l aw ix ng 129 | 43 [ALTERING] ao l t er ix ng 130 | 43 [ALTERNATING] ao l t er n ey dx ix ng 131 | 43 [APPEARING] ax p ih r ix ng 132 | 43 [APPROACHING] ax p r ow ch ix ng 133 | 43 [ARGUING] aa r g y uw ix ng 134 | 43 [ARRIVING] er ay v ix ng 135 | 43 [ASCENDING] ax s eh n d ix ng 136 | 43 [ASCRIBING] ax s k r ay b ix ng 137 | 43 [ASKING] ae s k ix ng 138 | 43 [ASSISTING] ax s ih s t ix ng 139 | 43 [ASSUMING] ax s uw m ix ng 140 | 43 [ASSURING] ax sh uh r ix ng 141 | 43 [ATTACHING] ax t ae ch ix ng 142 | 43 [ATTACKING] ax t ae k ix ng 143 | 43 [ATTEMPTING] ax t eh m p t ix ng 144 | 43 [ATTENDING] ax t eh n d ix ng 145 | 43 [AVOIDING] ax v oy dx ix ng 146 | 43 [AWAITING] ax w ey dx ix ng 147 | 43 [BACKING] b ae k ix ng 148 | 43 [BALANCING] b ae l ax n s ix ng 149 | 43 [BARKING] b aa r k ix ng 150 | 43 [BARRING] b aa r ix ng 151 | 43 [BEARING] b eh r ix ng 152 | 43 [BEATING] b iy dx ix ng 153 | 43 [BECOMING] b ix k ah m ix ng 154 | 43 [BEGGING] b eh g ix ng 155 | 43 [BEGINNING] b ix g ih n ix ng 156 | 43 [BEHAVING] b ix hh ey v ix ng 157 | 43 [BEING] b iy ix ng 158 | 43 [BELIEVING] b ix l iy v ix ng 159 | 43 [BELONGING] b ix l ao ng ix ng 160 | 43 [BENDING] b eh n d ix ng 161 | 43 [BEWITCHING] b ix w ih ch ix ng 162 | 43 [BITING] b ay dx ix ng 163 | 43 [BLAZING] b l ey z ix ng 164 | 43 [BLEEDING] b l iy dx ix ng 165 | 43 [BLOOMING] b l uw m ix ng 166 | 43 [BOATING] b ow dx ix ng 167 | 43 [BOILING] b oy l ix ng 168 | 43 [BOTHERING] b aa dh er ix ng 169 | 43 [BOUNDING] b aw n d ix ng 170 | 43 [BRACING] b r ey s ix ng 171 | 43 [BRAVING] b r ey v ix ng 172 | 43 [BREAKING] b r ey k ix ng 173 | 43 [BREATHING] b r iy dh ix ng 174 | 43 [BREEDING] b r iy dx ix ng 175 | 43 [BRIGHTENING] b r ay t ax n ix ng 176 | 43 [BRINGING] b r ih ng ix ng 177 | 43 [BROADENING] b r ao d ax n ix ng 178 | 43 [BUDDING] b ah dx ix ng 179 | 43 [BULGING] b ah l jh ix ng 180 | 43 [BURNING] b er n ix ng 181 | 43 [BUYING] b ay ix ng 182 | 43 [CALCULATING] k ae l k y ax l ey dx ix ng 183 | 43 [CALLING] k ao l ix ng 184 | 43 [CAPTURING] k ae p ch er ix ng 185 | 43 [CARING] k eh r ix ng 186 | 43 [CARRYING] k ae r iy ix ng 187 | 43 [CASTING] k ae s t ix ng 188 | 43 [CATCHING] k ae ch ix ng 189 | 43 [CAUSING] k aa z ix ng 190 | 43 [CHANGING] ch ey n jh ix ng 191 | 43 [CHARGING] ch aa r jh ix ng 192 | 43 [CHASING] ch ey s ix ng 193 | 43 [CHATTING] ch ae dx ix ng 194 | 43 [CHECKING] ch eh k ix ng 195 | 43 [CHEERING] ch ih r ix ng 196 | 43 [CHEWING] ch uw ix ng 197 | 43 [CHOKING] ch ow k ix ng 198 | 43 [CHOOSING] ch uw z ix ng 199 | 43 [CIRCULATING] s er k y ax l ey dx ix ng 200 | 43 [CLAIMING] k l ey m ix ng 201 | 43 [CLEANING] k l iy n ix ng 202 | 43 [CLEARING] k l ih r ix ng 203 | 43 [CLOSING] k l ow z ix ng 204 | 43 [CLUTCHING] k l ah ch ix ng 205 | 43 [COMBINING] k ax m b ay n ix ng 206 | 43 [COMING] k ah m ix ng 207 | 43 [COMMITTING] k ax m ih dx ix ng 208 | 43 [COMPARING] k ax m p eh r ix ng 209 | 43 [COMPETING] k ax m p iy dx ix ng 210 | 43 [COMPILING] k ax m p ay l ix ng 211 | 43 [CONCERNING] k ax n s er n ix ng 212 | 43 [CONDUCTING] k ax n d ah k t ix ng 213 | 43 [CONFERRING] k ax n f er ix ng 214 | 43 [CONNECTING] k ax n eh k t ix ng 215 | 43 [CONSIDERING] k ax n s ih dx er ix ng 216 | 43 [CONSISTING] k ax n s ih s t ix ng 217 | 43 [CONSULTING] k ax n s ah l t ix ng 218 | 43 [CONTAINING] k ax n t ey n ix ng 219 | 43 [CONTEMPLATING] k aa n t ax m p l ey dx ix ng 220 | 43 [CONTENDING] k ax n t eh n d ix ng 221 | 43 [CONTRADICTING] k aa n t r ax d ih k t ix ng 222 | 43 [CONTRASTING] k ax n t r ae s t ix ng 223 | 43 [CONTROLLING] k ax n t r ow l ix ng 224 | 43 [COOLING] k uw l ix ng 225 | 43 [COOPERATING] k ow aa p er ey dx ix ng 226 | 43 [COORDINATING] k ow ao r d ax n ey dx ix ng 227 | 43 [COUGHING] k aa f ix ng 228 | 43 [COUNTING] k aw n t ix ng 229 | 43 [COVERING] k ah v er ix ng 230 | 43 [CRACKING] k r ae k ix ng 231 | 43 [CREATING] k r iy ey dx ix ng 232 | 43 [CREEPING] k r iy p ix ng 233 | 43 [CROSSING] k r ao s ix ng 234 | 43 [CRUISING] k r uw z ix ng 235 | 43 [CRUMBLING] k r ah m b ax l ix ng 236 | 43 [CRUSHING] k r ah sh ix ng 237 | 43 [CULMINATING] k ah l m ax n ey dx ix ng 238 | 43 [CURING] k y uh r ix ng 239 | 43 [CUTTING] k ah dx ix ng 240 | 43 [DANCING] d ae n s ix ng 241 | 43 [DAWNING] d ao n ix ng 242 | 43 [DEALING] d iy l ix ng 243 | 43 [DECIDING] d ax s ay dx ix ng 244 | 43 [DECLARING] d ix k l eh r ix ng 245 | 43 [DECLINING] d ix k l ay n ix ng 246 | 43 [DECREASING] d ix k r iy s ix ng 247 | 43 [DEEPENING] d iy p ax n ix ng 248 | 43 [DEMANDING] d ix m ae n d ix ng 249 | 43 [DENYING] d ix n ay ix ng 250 | 43 [DEPARTING] d ix p aa r dx ix ng 251 | 43 [DEPENDING] d ix p eh n d ix ng 252 | 43 [DEPRIVING] d ix p r ay v ix ng 253 | 43 [DESCENDING] d ix s eh n d ix ng 254 | 43 [DESTROYING] d ix s t r oy ix ng 255 | 43 [DETERMINING] d ix t er m ax n ix ng 256 | 43 [DIALING] d ay ax l ix ng 257 | 43 [DIFFERING] d ih f er ix ng 258 | 43 [DIGGING] d ih g ix ng 259 | 43 [DINING] d ay n ix ng 260 | 43 [DIPPING] d ih p ix ng 261 | 43 [DISCUSSING] d ix s k ah s ix ng 262 | 43 [DISINTEGRATING] d ix s ih n t ax g r ey dx ix ng 263 | 43 [DISSOLVING] d ix z ao l v ix ng 264 | 43 [DIVIDING] d ix v ay dx ix ng 265 | 43 [DOING] d uw ix ng 266 | 43 [DOUBLING] d ah b ax l ix ng 267 | 43 [DRAGGING] d r ae g ix ng 268 | 43 [DRAINING] d r ey n ix ng 269 | 43 [DRAWING] d r ao ix ng 270 | 43 [DREAMING] d r iy m ix ng 271 | 43 [DRESSING] d r eh s ix ng 272 | 43 [DRIFTING] d r ih f t ix ng 273 | 43 [DRIPPING] d r ih p ix ng 274 | 43 [DRIVING] d r ay v ix ng 275 | 43 [DROPPING] d r aa p ix ng 276 | 43 [DRUMMING] d r ah m ix ng 277 | 43 [DUSTING] d ah s t ix ng 278 | 43 [DWINDLING] d w ih n d ax l ix ng 279 | 43 [DYING] d ay ix ng 280 | 43 [EARNING] er n ix ng 281 | 43 [EATING] iy dx ix ng 282 | 43 [EMERGING] ix m er jh ix ng 283 | 43 [EMPLOYING] eh m p l oy ix ng 284 | 43 [ENABLING] eh n ey b ax l ix ng 285 | 43 [ENCOURAGING] eh n k er ix jh ix ng 286 | 43 [ENCROACHING] ix n k r ow ch ix ng 287 | 43 [ENDING] eh n d ix ng 288 | 43 [ENDURING] eh n d y uh r ix ng 289 | 43 [ENJOYING] eh n jh oy ix ng 290 | 43 [ENTERING] eh n t er ix ng 291 | 43 [ENTICING] eh n t ay s ix ng 292 | 43 [ESCAPING] ix s k ey p ix ng 293 | 43 [ESTABLISHING] ix s t ae b l ix sh ix ng 294 | 43 [ESTIMATING] eh s t ax m ey dx ix ng 295 | 43 [EXAMINING] ix g z ae m ix n ix ng 296 | 43 [EXCEEDING] ix k s iy dx ix ng 297 | 43 [EXERTING] ix g z er dx ix ng 298 | 43 [EXISTING] ix g z ih s t ix ng 299 | 43 [EXPECTING] ix k s p eh k t ix ng 300 | 43 [EXPERIENCING] ix k s p ih r iy ax n s ix ng 301 | 43 [EXPIRING] ix k s p ay r ix ng 302 | 43 [EXPLODING] ix k s p l ow dx ix ng 303 | 43 [EXPLORING] ix k s p l ao r ix ng 304 | 43 [EXTENDING] ix k s t eh n d ix ng 305 | 43 [FACILITATING] f ax s ih l ax t ey dx ix ng 306 | 43 [FACING] f ey s ix ng 307 | 43 [FAILING] f ey l ix ng 308 | 43 [FALLING] f aa l ix ng 309 | 43 [FEARING] f ih r ix ng 310 | 43 [FEEDING] f iy dx ix ng 311 | 43 [FEELING] f iy l ix ng 312 | 43 [FIGHTING] f ay dx ix ng 313 | 43 [FIGURING] f ih g y er ix ng 314 | 43 [FILLING] f ih l ix ng 315 | 43 [FINDING] f ay n d ix ng 316 | 43 [FINGERING] f ih ng g er ix ng 317 | 43 [FIXING] f ih k s ix ng 318 | 43 [FLASHING] f l ae sh ix ng 319 | 43 [FLINGING] f l ih ng ix ng 320 | 43 [FLIPPING] f l ih p ix ng 321 | 43 [FLOATING] f l ow dx ix ng 322 | 43 [FLOURISHING] f l er ix sh ix ng 323 | 43 [FLOWING] f l ow ix ng 324 | 43 [FLYING] f l ay ix ng 325 | 43 [FOAMING] f ow m ix ng 326 | 43 [FOLLOWING] f aa l ow ix ng 327 | 43 [FOOTING] f uh dx ix ng 328 | 43 [FORBIDDING] f er b ih dx ix ng 329 | 43 [FORGETTING] f er g eh dx ix ng 330 | 43 [FORMING] f ao r m ix ng 331 | 43 [FOUNDING] f aw n d ix ng 332 | 43 [FRETTING] f r eh dx ix ng 333 | 43 [GAINING] g ey n ix ng 334 | 43 [GATHERING] g ae dh er ix ng 335 | 43 [GENERATING] jh eh n er ey dx ix ng 336 | 43 [GETTING] g eh dx ix ng 337 | 43 [GIVING] g ih v ix ng 338 | 43 [GOING] g ow ix ng 339 | 43 [GRATIFYING] g r ae dx ax f ay ix ng 340 | 43 [GREETING] g r iy dx ix ng 341 | 43 [GROWING] g r ow ix ng 342 | 43 [GUARDING] g aa r dx ix ng 343 | 43 [GUESSING] g eh s ix ng 344 | 43 [GUIDING] g ay dx ix ng 345 | 43 [HALTING] hh ao l t ix ng 346 | 43 [HAMMERING] hh ae m er ix ng 347 | 43 [HANDLING] hh ae n d l ix ng 348 | 43 [HANGING] hh ae ng ix ng 349 | 43 [HAPPENING] hh ae p ax n ix ng 350 | 43 [HAVING] hh ae v ix ng 351 | 43 [HEADING] hh eh dx ix ng 352 | 43 [HELPING] hh eh l p ix ng 353 | 43 [HIDING] hh ay dx ix ng 354 | 43 [HITTING] hh ih dx ix ng 355 | 43 [HOARDING] hh ao r dx ix ng 356 | 43 [HOLDING] hh ow l d ix ng 357 | 43 [HONORING] aa n er ix ng 358 | 43 [HOPING] hh ow p ix ng 359 | 43 [IGNORING] ix g n ao r ix ng 360 | 43 [IMAGINING] ix m ae jh ax n ix ng 361 | 43 [IMPLYING] ix m p l ay ix ng 362 | 43 [IMPROVING] ix m p r uw v ix ng 363 | 43 [INCLUDING] ix n k l uw dx ix ng 364 | 43 [INCORPORATING] ix n k ao r p er ey dx ix ng 365 | 43 [INCREASING] ix n k r iy s ix ng 366 | 43 [INDICATING] ih n d ax k ey dx ix ng 367 | 43 [INDULGING] ix n d ah l jh ix ng 368 | 43 [INJURING] ih n jh er ix ng 369 | 43 [INQUIRING] ix n k w ay er ix ng 370 | 43 [INSINUATING] ix n s ih n y uw ey dx ix ng 371 | 43 [INTEGRATING] ih n t ax g r ey dx ix ng 372 | 43 [INTERRUPTING] ih n t er ah p t ix ng 373 | 43 [INTRODUCING] ih n t r ax d uw s ix ng 374 | 43 [INVESTING] ix n v eh s t ix ng 375 | 43 [INVITING] ix n v ay dx ix ng 376 | 43 [JOINING] jh oy n ix ng 377 | 43 [JUDGING] jh ah jh ix ng 378 | 43 [JUMPING] jh ah m p ix ng 379 | 43 [JUTTING] jh ah dx ix ng 380 | 43 [KEEPING] k iy p ix ng 381 | 43 [KICKING] k ih k ix ng 382 | 43 [KIDDING] k ih dx ix ng 383 | 43 [KILLING] k ih l ix ng 384 | 43 [KNOCKING] n aa k ix ng 385 | 43 [KNOWING] n ow ix ng 386 | 43 [LAGGING] l ae g ix ng 387 | 43 [LAUGHING] l ae f ix ng 388 | 43 [LEADING] l iy dx ix ng 389 | 43 [LEANING] l iy n ix ng 390 | 43 [LEAPING] l iy p ix ng 391 | 43 [LEARNING] l er n ix ng 392 | 43 [LEAVING] l iy v ix ng 393 | 43 [LESSENING] l eh s ax n ix ng 394 | 43 [LETTING] l eh dx ix ng 395 | 43 [LICKING] l ih k ix ng 396 | 43 [LIFTING] l ih f t ix ng 397 | 43 [LIGHTENING] l ay t ax n ix ng 398 | 43 [LIMITING] l ih m ax dx ix ng 399 | 43 [LISTENING] l ih s ax n ix ng 400 | 43 [LIVING] l ih v ix ng 401 | 43 [LOOKING] l uh k ix ng 402 | 43 [LOSING] l uw z ix ng 403 | 43 [LYING] l ay ix ng 404 | 43 [MAINTAINING] m ey n t ey n ix ng 405 | 43 [MAKING] m ey k ix ng 406 | 43 [MANAGING] m ae n ax jh ix ng 407 | 43 [MANNING] m ae n ix ng 408 | 43 [MARKING] m aa r k ix ng 409 | 43 [MATCHING] m ae ch ix ng 410 | 43 [MEANING] m iy n ix ng 411 | 43 [MEASURING] m eh zh er ix ng 412 | 43 [MEDDLING] m eh dx ax l ix ng 413 | 43 [MELTING] m eh l t ix ng 414 | 43 [MENTIONING] m eh n sh ax n ix ng 415 | 43 [MILLING] m ih l ix ng 416 | 43 [MISSING] m ih s ix ng 417 | 43 [MISUNDERSTANDING] m ih s ax n d er s t ae n d ix ng 418 | 43 [MIXING] m ih k s ix ng 419 | 43 [MOCKING] m aa k ix ng 420 | 43 [MODELING] m aa dx ax l ix ng 421 | 43 [MODIFYING] m aa dx ax f ay ix ng 422 | 43 [MORTIFYING] m ao r dx ix f ay ix ng 423 | 43 [MOVING] m uw v ix ng 424 | 43 [MURDERING] m er dx er ix ng 425 | 43 [NEEDING] n iy dx ix ng 426 | 43 [NEIGHBORING] n ey b er ix ng 427 | 43 [NETTING] n eh dx ix ng 428 | 43 [NIBBLING] n ih b ax l ix ng 429 | 43 [OBSERVING] ax b z er v ix ng 430 | 43 [OBTAINING] ax b t ey n ix ng 431 | 43 [OCCUPYING] aa k y ax p ay ix ng 432 | 43 [OCCURRING] ax k er ix ng 433 | 43 [OOZING] uw z ix ng 434 | 43 [OPENING] ow p ax n ix ng 435 | 43 [OPERATING] aa p er ey dx ix ng 436 | 43 [OPPOSING] ax p ow z ix ng 437 | 43 [ORDERING] ao r dx er ix ng 438 | 43 [ORIGINATING] er ih jh ax n ey dx ix ng 439 | 43 [OVERFLOWING] ow v er f l ow ix ng 440 | 43 [OVERLAPPING] ow v er l ae p ix ng 441 | 43 [OVERLOOKING] ow v er l uh k ix ng 442 | 43 [OWING] ow ix ng 443 | 43 [PACKING] p ae k ix ng 444 | 43 [PARTING] p aa r dx ix ng 445 | 43 [PASSING] p ae s ix ng 446 | 43 [PAUSING] p ao z ix ng 447 | 43 [PAYING] p ey ix ng 448 | 43 [PENETRATING] p eh n ax t r ey dx ix ng 449 | 43 [PERFORMING] p er f ao r m ix ng 450 | 43 [PICKING] p ih k ix ng 451 | 43 [PICTURING] p ih k ch er ix ng 452 | 43 [PLANNING] p l ae n ix ng 453 | 43 [PLANTING] p l ae n t ix ng 454 | 43 [PLAYING] p l ey ix ng 455 | 43 [PLEASING] p l iy z ix ng 456 | 43 [PLUNGING] p l ah n jh ix ng 457 | 43 [POINTING] p oy n t ix ng 458 | 43 [POSSESSING] p ax z eh s ix ng 459 | 43 [POURING] p ao r ix ng 460 | 43 [PRECEDING] p r iy s iy dx ix ng 461 | 43 [PREFERRING] p r ix f er ix ng 462 | 43 [PREPARING] p r iy p eh r ix ng 463 | 43 [PRESENTING] p r ix z eh n t ix ng 464 | 43 [PRESSING] p r eh s ix ng 465 | 43 [PRETENDING] p r iy t eh n d ix ng 466 | 43 [PREVAILING] p r ix v ey l ix ng 467 | 43 [PREVENTING] p r ix v eh n t ix ng 468 | 43 [PROCEEDING] p r ax s iy dx ix ng 469 | 43 [PRODUCING] p r ax d uw s ix ng 470 | 43 [PROJECTING] p r ax jh eh k t ix ng 471 | 43 [PROMPTING] p r aa m p t ix ng 472 | 43 [PROPELLING] p r ax p eh l ix ng 473 | 43 [PROPOSING] p r ax p ow z ix ng 474 | 43 [PROTECTING] p r ax t eh k t ix ng 475 | 43 [PROVIDING] p r ax v ay dx ix ng 476 | 43 [PROVING] p r uw v ix ng 477 | 43 [PROVOKING] p r ax v ow k ix ng 478 | 43 [PULLING] p uh l ix ng 479 | 43 [PURCHASING] p er ch ax s ix ng 480 | 43 [PURSUING] p er s uw ix ng 481 | 43 [PUSHING] p uh sh ix ng 482 | 43 [PUTTING] p ah dx ix ng 483 | 43 [QUADRUPLING] k w aa d r uw p ax l ix ng 484 | 43 [QUESTIONING] k w eh s ch ax n ix ng 485 | 43 [QUITTING] k w ih dx ix ng 486 | 43 [QUOTING] k w ow dx ix ng 487 | 43 [RAGING] r ey jh ix ng 488 | 43 [RAISING] r ey z ix ng 489 | 43 [RATTLING] r ae t l ix ng 490 | 43 [REACHING] r iy ch ix ng 491 | 43 [REACTING] r iy ae k t ix ng 492 | 43 [REAWAKENING] r iy ax w ey k ax n ix ng 493 | 43 [REBOUNDING] r iy b aw n d ix ng 494 | 43 [RECEIVING] r ax s iy v ix ng 495 | 43 [RECOGNIZING] r eh k ax g n ay z ix ng 496 | 43 [RECOVERING] r ax k ah v er ix ng 497 | 43 [REDUCING] r ax d uw s ix ng 498 | 43 [REFRESHING] r ix f r eh sh ix ng 499 | 43 [REFUSING] r ax f y uw z ix ng 500 | 43 [REGISTERING] r eh jh ix s t er ix ng 501 | 43 [REGULATING] r eh g y ax l ey dx ix ng 502 | 43 [RELATING] r ix l ey dx ix ng 503 | 43 [RELAXING] r ix l ae k s ix ng 504 | 43 [RELINQUISHING] r iy l ih ng k w ix sh ix ng 505 | 43 [REMAINING] r ix m ey n ix ng 506 | 43 [REMEMBERING] r ix m eh m b er ix ng 507 | 43 [REMINDING] r iy m ay n d ix ng 508 | 43 [REMOVING] r iy m uw v ix ng 509 | 43 [REPLACING] r ix p l ey s ix ng 510 | 43 [REPRESENTING] r eh p r ix z eh n t ix ng 511 | 43 [REQUESTING] r ix k w eh s t ix ng 512 | 43 [REQUIRING] r iy k w ay er ix ng 513 | 43 [RESEMBLING] r ix z eh m b ax l ix ng 514 | 43 [RESIDING] r ix z ay dx ix ng 515 | 43 [RESISTING] r ix z ih s t ix ng 516 | 43 [RESOLVING] r iy z aa l v ix ng 517 | 43 [RESPONDING] r ix s p aa n d ix ng 518 | 43 [RESULTING] r ix z ah l t ix ng 519 | 43 [RESUMING] r ix z uw m ix ng 520 | 43 [RETAINING] r ix t ey n ix ng 521 | 43 [RETURNING] r ix t er n ix ng 522 | 43 [REVEALING] r ix v iy l ix ng 523 | 43 [REVERSING] r ix v er s ix ng 524 | 43 [REVIEWING] r iy v y uw ix ng 525 | 43 [RIDING] r ay dx ix ng 526 | 43 [RINGING] r ih ng ix ng 527 | 43 [RIPPLING] r ih p ax l ix ng 528 | 43 [RISING] r ay z ix ng 529 | 43 [ROARING] r ao r ix ng 530 | 43 [ROBBING] r aa b ix ng 531 | 43 [ROLLING] r ow l ix ng 532 | 43 [RUINING] r uw ix n ix ng 533 | 43 [RUNNING] r ah n ix ng 534 | 43 [RUSHING] r ah sh ix ng 535 | 43 [SAVING] s ey v ix ng 536 | 43 [SAYING] s ey ix ng 537 | 43 [SCARING] s k eh r ix ng 538 | 43 [SCRATCHING] s k r ae ch ix ng 539 | 43 [SCREAMING] s k r iy m ix ng 540 | 43 [SEARCHING] s er ch ix ng 541 | 43 [SECURING] s ix k y uh r ix ng 542 | 43 [SEDUCING] s ix d uw s ix ng 543 | 43 [SEEING] s iy ix ng 544 | 43 [SEEKING] s iy k ix ng 545 | 43 [SEIZING] s iy z ix ng 546 | 43 [SELLING] s eh l ix ng 547 | 43 [SENDING] s eh n d ix ng 548 | 43 [SEPARATING] s eh p er ey dx ix ng 549 | 43 [SERVING] s er v ix ng 550 | 43 [SETTING] s eh dx ix ng 551 | 43 [SETTLING] s eh dx ax l ix ng 552 | 43 [SHAKING] sh ey k ix ng 553 | 43 [SHAPING] sh ey p ix ng 554 | 43 [SHARING] sh eh r ix ng 555 | 43 [SHARPENING] sh aa r p ax n ix ng 556 | 43 [SHIFTING] sh ih f t ix ng 557 | 43 [SHINING] sh ay n ix ng 558 | 43 [SHOOTING] sh uw dx ix ng 559 | 43 [SHOULDERING] sh ow l d er ix ng 560 | 43 [SHOUTING] sh aw dx ix ng 561 | 43 [SHOWING] sh ow ix ng 562 | 43 [SHRINKING] sh r ih ng k ix ng 563 | 43 [SHUTTING] sh ah dx ix ng 564 | 43 [SINGING] s ih ng ix ng 565 | 43 [SINKING] s ih ng k ix ng 566 | 43 [SITTING] s ih dx ix ng 567 | 43 [SKETCHING] s k eh ch ix ng 568 | 43 [SLEEPING] s l iy p ix ng 569 | 43 [SLIDING] s l ay dx ix ng 570 | 43 [SLIPPING] s l ih p ix ng 571 | 43 [SMELLING] s m eh l ix ng 572 | 43 [SMILING] s m ay l ix ng 573 | 43 [SOLVING] s aa l v ix ng 574 | 43 [SOUNDING] s aw n d ix ng 575 | 43 [SPEAKING] s p iy k ix ng 576 | 43 [SPORTING] s p ao r dx ix ng 577 | 43 [SPREADING] s p r eh dx ix ng 578 | 43 [SPRINGING] s p r ih ng ix ng 579 | 43 [SQUEEZING] s k w iy z ix ng 580 | 43 [STALKING] s t ao k ix ng 581 | 43 [STANDING] s t ae n d ix ng 582 | 43 [STARTING] s t aa r dx ix ng 583 | 43 [STARVING] s t aa r v ix ng 584 | 43 [STAYING] s t ey ix ng 585 | 43 [STEALING] s t iy l ix ng 586 | 43 [STEAMING] s t iy m ix ng 587 | 43 [STEPPING] s t eh p ix ng 588 | 43 [STICKING] s t ih k ix ng 589 | 43 [STIFLING] s t ay f l ix ng 590 | 43 [STIRRING] s t er ix ng 591 | 43 [STOCKING] s t aa k ix ng 592 | 43 [STOPPING] s t aa p ix ng 593 | 43 [STREAMING] s t r iy m ix ng 594 | 43 [STRENGTHENING] s t r eh ng th ax n ix ng 595 | 43 [STRETCHING] s t r eh ch ix ng 596 | 43 [STRIVING] s t r ay v ix ng 597 | 43 [STRUGGLING] s t r ah g ax l ix ng 598 | 43 [STUDYING] s t ah dx iy ix ng 599 | 43 [STULTIFYING] s t ah l t ax f ay ix ng 600 | 43 [STUMBLING] s t ah m b ax l ix ng 601 | 43 [SUCCEEDING] s ax k s iy dx ix ng 602 | 43 [SUFFERING] s ah f er ix ng 603 | 43 [SUGGESTING] s ax g jh eh s t ix ng 604 | 43 [SUPPLYING] s ax p l ay ix ng 605 | 43 [SUPPORTING] s ax p ao r dx ix ng 606 | 43 [SURRENDERING] s er eh n d er ix ng 607 | 43 [SURROUNDING] s er aw n d ix ng 608 | 43 [SURVIVING] s er v ay v ix ng 609 | 43 [SUSPECTING] s ax s p eh k t ix ng 610 | 43 [SWALLOWING] s w aa l ow ix ng 611 | 43 [SWAPPING] s w aa p ix ng 612 | 43 [SWAYING] s w ey ix ng 613 | 43 [SWELLING] s w eh l ix ng 614 | 43 [SWINGING] s w ih ng ix ng 615 | 43 [SWITCHING] s w ih ch ix ng 616 | 43 [TAKING] t ey k ix ng 617 | 43 [TALKING] t ao k ix ng 618 | 43 [TAPERING] t ey p er ix ng 619 | 43 [TAPPING] t ae p ix ng 620 | 43 [TEARING] t eh r ix ng 621 | 43 [TELLING] t eh l ix ng 622 | 43 [TERMINATING] t er m ax n ey dx ix ng 623 | 43 [THINKING] th ih ng k ix ng 624 | 43 [THREATENING] th r eh t ax n ix ng 625 | 43 [THROWING] th r ow ix ng 626 | 43 [THRUSTING] th r ah s t ix ng 627 | 43 [THUMBING] th ah m ix ng 628 | 43 [TOSSING] t ao s ix ng 629 | 43 [TOUCHING] t ah ch ix ng 630 | 43 [TOURING] t uh r ix ng 631 | 43 [TOYING] t oy ix ng 632 | 43 [TRACING] t r ey s ix ng 633 | 43 [TRACKING] t r ae k ix ng 634 | 43 [TRAILING] t r ey l ix ng 635 | 43 [TRAVELING] t r ae v ax l ix ng 636 | 43 [TREATING] t r iy dx ix ng 637 | 43 [TRIMMING] t r ih m ix ng 638 | 43 [TRYING] t r ay ix ng 639 | 43 [TUMBLING] t ah m b ax l ix ng 640 | 43 [TURNING] t er n ix ng 641 | 43 [UNDERGOING] ah n d er g ow ix ng 642 | 43 [UNDERLYING] ah n d er l ay ix ng 643 | 43 [UNDERTAKING] ah n d er t ey k ix ng 644 | 43 [URGING] er jh ix ng 645 | 43 [USING] y uw z ix ng 646 | 43 [UTTERING] ah dx er ix ng 647 | 43 [VANISHING] v ae n ix sh ix ng 648 | 43 [VARYING] v eh r iy ix ng 649 | 43 [VIEWING] v y uw ix ng 650 | 43 [VIOLATING] v ay ax l ey dx ix ng 651 | 43 [VISUALIZING] v ih zh w ax l ay z ix ng 652 | 43 [WAILING] w ey l ix ng 653 | 43 [WAITING] w ey dx ix ng 654 | 43 [WAKING] w ey k ix ng 655 | 43 [WALKING] w ao k ix ng 656 | 43 [WANDERING] w aa n d er ix ng 657 | 43 [WANTING] w aa n t ix ng 658 | 43 [WARNING] w ao r n ix ng 659 | 43 [WASHING] w aa sh ix ng 660 | 43 [WASTING] w ey s t ix ng 661 | 43 [WATCHING] w aa ch ix ng 662 | 43 [WAVERING] w ey v er ix ng 663 | 43 [WAVING] w ey v ix ng 664 | 43 [WEARING] w eh r ix ng 665 | 43 [WEAVING] w iy v ix ng 666 | 43 [WEEPING] w iy p ix ng 667 | 43 [WELCOMING] w eh l k ax m ix ng 668 | 43 [WHISPERING] w ih s p er ix ng 669 | 43 [WHISTLING] w ih s l ix ng 670 | 43 [WIELDING] w iy l d ix ng 671 | 43 [WINKING] w ih ng k ix ng 672 | 43 [WINNING] w ih n ix ng 673 | 43 [WIPING] w ay p ix ng 674 | 43 [WISHING] w ih sh ix ng 675 | 43 [WONDERING] w ah n d er ix ng 676 | 43 [WORKING] w er k ix ng 677 | 43 [WRAPPING] r ae p ix ng 678 | 43 [WRIGGLING] r ih g ax l ix ng 679 | 43 [WRITING] r ay dx ix ng 680 | 43 [YIELDING] y iy l d ix ng 681 | -------------------------------------------------------------------------------- /sample.grammar: -------------------------------------------------------------------------------- 1 | S : NS_B ONE_WORD NS_E 2 | S : NS_B DRAGON FIRE NS_E 3 | S : NS_B XBMC_COMMANDS NS_E 4 | S : NS_B GO TO XBMC_WINDOWS NS_E 5 | S : NS_B GARBAGE PRP_SINGULAR PRP BE ME YOU AM I DT PRPS SEARCH_1 ARE PRP_PLURAL VBG SEARCH_2 SEARCH_3 NS_E 6 | S : NS_B I_M DT_1 NN NS_E 7 | S : NS_B I_M DT_1 NN NS_E 8 | S : NS_B WH AM I NS_E 9 | S : NS_B WH IS PRPS_1 NN NS_E 10 | S : NS_B S301 S302 S303 NS_E 11 | S : NS_B S401 S402 S403 S404 NS_E 12 | S : NS_B WIKI PEDIA SEARCH_4 SEARCH_5 SEARCH_WORDS_LOOP NS_E 13 | S : NS_B YOU TUBE SEARCH_4 SEARCH_5 SEARCH_WORDS_LOOP NS_E 14 | SEARCH_WORDS_LOOP : SEARCH_WORDS_LOOP SEARCH_WORDS 15 | SEARCH_WORDS_LOOP : SEARCH_WORDS 16 | -------------------------------------------------------------------------------- /sample.term: -------------------------------------------------------------------------------- 1 | 0 NS_B 2 | 1 NS_E 3 | 2 ONE_WORD 4 | 3 GARBAGE 5 | 4 DRAGON 6 | 5 FIRE 7 | 6 WH 8 | 7 I_M 9 | 8 BE 10 | 9 AM 11 | 10 IS 12 | 11 ARE 13 | 12 I 14 | 13 ME 15 | 14 YOU 16 | 15 PRP_SINGULAR 17 | 16 PRP_PLURAL 18 | 17 PRP 19 | 18 PRPS_1 20 | 19 PRPS 21 | 20 S301 22 | 21 S302 23 | 22 S303 24 | 23 S401 25 | 24 S402 26 | 25 S403 27 | 26 S404 28 | 27 SEARCH_1 29 | 28 SEARCH_2 30 | 29 SEARCH_3 31 | 30 WIKI 32 | 31 PEDIA 33 | 32 TUBE 34 | 33 SEARCH_4 35 | 34 SEARCH_5 36 | 35 SEARCH_WORDS 37 | 36 DT_1 38 | 37 DT 39 | 38 XBMC_COMMANDS 40 | 39 GO 41 | 40 TO 42 | 41 XBMC_WINDOWS 43 | 42 NN 44 | 43 VBG 45 | -------------------------------------------------------------------------------- /sample.voca: -------------------------------------------------------------------------------- 1 | % NS_B 2 | sil 3 | 4 | % NS_E 5 | sil 6 | 7 | % ONE_WORD 8 | OKAY ow k ey 9 | ENOUGH ix n ah f 10 | STOP s t aa p 11 | 12 | % GARBAGE 13 | GARBAGE g aa r b ix jh 14 | 15 | % DRAGON 16 | DRAGON d r ae g ax n 17 | 18 | % FIRE 19 | FIRE f ay er 20 | 21 | % WH 22 | WHAT w ah t 23 | WHO hh uw 24 | 25 | % I_M 26 | I'M ay m 27 | 28 | % BE 29 | BE b iy 30 | 31 | % AM 32 | AM ae m 33 | 34 | % IS 35 | IS ih z 36 | 37 | % ARE 38 | ARE aa r 39 | 40 | % I 41 | I ay 42 | 43 | % ME 44 | ME m iy 45 | 46 | % YOU 47 | YOU y uw 48 | 49 | % PRP_SINGULAR 50 | HE hh iy 51 | HER hh er 52 | HIM hh ih m 53 | SHE sh iy 54 | IT ih t 55 | 56 | % PRP_PLURAL 57 | US ah s 58 | WE w iy 59 | THEY dh ey 60 | THEM dh eh m 61 | YOU y uw 62 | 63 | % PRP 64 | ITSELF ix t s eh l f 65 | HIMSELF hh ix m s eh l f 66 | HERSELF hh er s eh l f 67 | MYSELF m ay s eh l f 68 | OURS aw er z 69 | OURSELVES aw er s eh l v z 70 | THEIRS dh eh r z 71 | THEMSELVES dh eh m s eh l v z 72 | YOURSELF y er s eh l f 73 | 74 | % PRPS_1 75 | MY m ay 76 | YOUR y ao r 77 | 78 | % PRPS 79 | HER hh er 80 | HIS hh ih z 81 | ITS ih t s 82 | MY m ay 83 | MINE m ay n 84 | OUR aw er 85 | OURS aw er z 86 | THEIR dh eh r 87 | YOUR y ao r 88 | 89 | % S301 90 | OPEN ow p ax n 91 | 92 | % S302 93 | FILE f ay l 94 | WEB w eh b 95 | 96 | % S303 97 | MANAGER m ae n ax jh er 98 | BROWSER b r aw z er 99 | 100 | % S401 101 | SHUT sh ah t 102 | 103 | % S402 104 | DOWN d aw n 105 | 106 | % S403 107 | THE dh ax 108 | 109 | % S404 110 | HELMET hh eh l m ax t 111 | COMPUTER k ax m p y uw dx er 112 | GENDER jh eh n d er 113 | 114 | % SEARCH_1 115 | MAKE m ey k 116 | 117 | % SEARCH_2 118 | WIKI w ih k iy 119 | YOU y uw 120 | GOO g uh 121 | 122 | % SEARCH_3 123 | PEDIA p iy dx iy ax 124 | TUBE t uw b 125 | GLE g ax l 126 | 127 | % WIKI 128 | WIKI w ih k iy 129 | 130 | % PEDIA 131 | PEDIA p iy dx iy ax 132 | 133 | % TUBE 134 | TUBE t uw b 135 | 136 | % SEARCH_4 137 | SEARCH s er ch 138 | 139 | % SEARCH_5 140 | FOR f ao r 141 | 142 | % SEARCH_WORDS 143 | OXFORD aa k s f er d 144 | UNIVERSITY y uw n ax v er s ax dx iy 145 | BILL b ih l 146 | GATES g ey t s 147 | 148 | % DT_1 149 | A ax 150 | 151 | % DT 152 | A ax 153 | ALL ao l 154 | AN ae n 155 | ANOTHER ax n ah dh er 156 | ANY eh n iy 157 | BOTH b ow th 158 | DEL d eh l 159 | EACH iy ch 160 | EVERY eh v er iy 161 | LE l ax 162 | NEITHER n iy dh er 163 | SOME s ah m 164 | THE dh ax 165 | THESE dh iy z 166 | THIS dh ih s 167 | THOSE dh ow z 168 | 169 | %XBMC_COMMANDS 170 | LEFT l eh f t 171 | RIGHT r ay t 172 | UP ah p 173 | DOWN d aw n 174 | SELECT s ax l eh k t 175 | BACK b ae k 176 | 177 | %GO 178 | GO g ow 179 | 180 | %TO 181 | TO t uw 182 | 183 | %XBMC_WINDOWS 184 | HOME hh ow m 185 | PROGRAMS p r ow g r ae m z 186 | PICTURES p ih k ch er z 187 | SETTINGS s eh dx ix ng z 188 | MUSIC m y uw z ix k 189 | VIDEO v ih dx iy ow 190 | 191 | % NN 192 | GENDER jh eh n d er 193 | BOY b oy 194 | MAN m ae n 195 | NAME n ey m 196 | GIRL g er l 197 | WOMAN w uh m ax n 198 | LADY l ey dx iy 199 | 200 | % VBG 201 | ABETTING ax b eh dx ix ng 202 | ABOUNDING ax b aw n d ix ng 203 | ACCOMPANYING ax k ah m p ax n iy ix ng 204 | ACCORDING ax k ao r dx ix ng 205 | ACHING ey k ix ng 206 | ACQUIRING ax k w ay r ix ng 207 | ACTING ae k t ix ng 208 | ADDING ae dx ix ng 209 | ADDRESSING ax d r eh s ix ng 210 | ADVANCING ax d v ae n s ix ng 211 | ADVISING ae d v ay z ix ng 212 | AFFECTING ax f eh k t ix ng 213 | AIDING ey dx ix ng 214 | AIMING ey m ix ng 215 | ALLOWING ax l aw ix ng 216 | ALTERING ao l t er ix ng 217 | ALTERNATING ao l t er n ey dx ix ng 218 | APPEARING ax p ih r ix ng 219 | APPROACHING ax p r ow ch ix ng 220 | ARGUING aa r g y uw ix ng 221 | ARRIVING er ay v ix ng 222 | ASCENDING ax s eh n d ix ng 223 | ASCRIBING ax s k r ay b ix ng 224 | ASKING ae s k ix ng 225 | ASSISTING ax s ih s t ix ng 226 | ASSUMING ax s uw m ix ng 227 | ASSURING ax sh uh r ix ng 228 | ATTACHING ax t ae ch ix ng 229 | ATTACKING ax t ae k ix ng 230 | ATTEMPTING ax t eh m p t ix ng 231 | ATTENDING ax t eh n d ix ng 232 | AVOIDING ax v oy dx ix ng 233 | AWAITING ax w ey dx ix ng 234 | BACKING b ae k ix ng 235 | BALANCING b ae l ax n s ix ng 236 | BARKING b aa r k ix ng 237 | BARRING b aa r ix ng 238 | BEARING b eh r ix ng 239 | BEATING b iy dx ix ng 240 | BECOMING b ix k ah m ix ng 241 | BEGGING b eh g ix ng 242 | BEGINNING b ix g ih n ix ng 243 | BEHAVING b ix hh ey v ix ng 244 | BEING b iy ix ng 245 | BELIEVING b ix l iy v ix ng 246 | BELONGING b ix l ao ng ix ng 247 | BENDING b eh n d ix ng 248 | BEWITCHING b ix w ih ch ix ng 249 | BITING b ay dx ix ng 250 | BLAZING b l ey z ix ng 251 | BLEEDING b l iy dx ix ng 252 | BLOOMING b l uw m ix ng 253 | BOATING b ow dx ix ng 254 | BOILING b oy l ix ng 255 | BOTHERING b aa dh er ix ng 256 | BOUNDING b aw n d ix ng 257 | BRACING b r ey s ix ng 258 | BRAVING b r ey v ix ng 259 | BREAKING b r ey k ix ng 260 | BREATHING b r iy dh ix ng 261 | BREEDING b r iy dx ix ng 262 | BRIGHTENING b r ay t ax n ix ng 263 | BRINGING b r ih ng ix ng 264 | BROADENING b r ao d ax n ix ng 265 | BUDDING b ah dx ix ng 266 | BULGING b ah l jh ix ng 267 | BURNING b er n ix ng 268 | BUYING b ay ix ng 269 | CALCULATING k ae l k y ax l ey dx ix ng 270 | CALLING k ao l ix ng 271 | CAPTURING k ae p ch er ix ng 272 | CARING k eh r ix ng 273 | CARRYING k ae r iy ix ng 274 | CASTING k ae s t ix ng 275 | CATCHING k ae ch ix ng 276 | CAUSING k aa z ix ng 277 | CHANGING ch ey n jh ix ng 278 | CHARGING ch aa r jh ix ng 279 | CHASING ch ey s ix ng 280 | CHATTING ch ae dx ix ng 281 | CHECKING ch eh k ix ng 282 | CHEERING ch ih r ix ng 283 | CHEWING ch uw ix ng 284 | CHOKING ch ow k ix ng 285 | CHOOSING ch uw z ix ng 286 | CIRCULATING s er k y ax l ey dx ix ng 287 | CLAIMING k l ey m ix ng 288 | CLEANING k l iy n ix ng 289 | CLEARING k l ih r ix ng 290 | CLOSING k l ow z ix ng 291 | CLUTCHING k l ah ch ix ng 292 | COMBINING k ax m b ay n ix ng 293 | COMING k ah m ix ng 294 | COMMITTING k ax m ih dx ix ng 295 | COMPARING k ax m p eh r ix ng 296 | COMPETING k ax m p iy dx ix ng 297 | COMPILING k ax m p ay l ix ng 298 | CONCERNING k ax n s er n ix ng 299 | CONDUCTING k ax n d ah k t ix ng 300 | CONFERRING k ax n f er ix ng 301 | CONNECTING k ax n eh k t ix ng 302 | CONSIDERING k ax n s ih dx er ix ng 303 | CONSISTING k ax n s ih s t ix ng 304 | CONSULTING k ax n s ah l t ix ng 305 | CONTAINING k ax n t ey n ix ng 306 | CONTEMPLATING k aa n t ax m p l ey dx ix ng 307 | CONTENDING k ax n t eh n d ix ng 308 | CONTRADICTING k aa n t r ax d ih k t ix ng 309 | CONTRASTING k ax n t r ae s t ix ng 310 | CONTROLLING k ax n t r ow l ix ng 311 | COOLING k uw l ix ng 312 | COOPERATING k ow aa p er ey dx ix ng 313 | COORDINATING k ow ao r d ax n ey dx ix ng 314 | COUGHING k aa f ix ng 315 | COUNTING k aw n t ix ng 316 | COVERING k ah v er ix ng 317 | CRACKING k r ae k ix ng 318 | CREATING k r iy ey dx ix ng 319 | CREEPING k r iy p ix ng 320 | CROSSING k r ao s ix ng 321 | CRUISING k r uw z ix ng 322 | CRUMBLING k r ah m b ax l ix ng 323 | CRUSHING k r ah sh ix ng 324 | CULMINATING k ah l m ax n ey dx ix ng 325 | CURING k y uh r ix ng 326 | CUTTING k ah dx ix ng 327 | DANCING d ae n s ix ng 328 | DAWNING d ao n ix ng 329 | DEALING d iy l ix ng 330 | DECIDING d ax s ay dx ix ng 331 | DECLARING d ix k l eh r ix ng 332 | DECLINING d ix k l ay n ix ng 333 | DECREASING d ix k r iy s ix ng 334 | DEEPENING d iy p ax n ix ng 335 | DEMANDING d ix m ae n d ix ng 336 | DENYING d ix n ay ix ng 337 | DEPARTING d ix p aa r dx ix ng 338 | DEPENDING d ix p eh n d ix ng 339 | DEPRIVING d ix p r ay v ix ng 340 | DESCENDING d ix s eh n d ix ng 341 | DESTROYING d ix s t r oy ix ng 342 | DETERMINING d ix t er m ax n ix ng 343 | DIALING d ay ax l ix ng 344 | DIFFERING d ih f er ix ng 345 | DIGGING d ih g ix ng 346 | DINING d ay n ix ng 347 | DIPPING d ih p ix ng 348 | DISCUSSING d ix s k ah s ix ng 349 | DISINTEGRATING d ix s ih n t ax g r ey dx ix ng 350 | DISSOLVING d ix z ao l v ix ng 351 | DIVIDING d ix v ay dx ix ng 352 | DOING d uw ix ng 353 | DOUBLING d ah b ax l ix ng 354 | DRAGGING d r ae g ix ng 355 | DRAINING d r ey n ix ng 356 | DRAWING d r ao ix ng 357 | DREAMING d r iy m ix ng 358 | DRESSING d r eh s ix ng 359 | DRIFTING d r ih f t ix ng 360 | DRIPPING d r ih p ix ng 361 | DRIVING d r ay v ix ng 362 | DROPPING d r aa p ix ng 363 | DRUMMING d r ah m ix ng 364 | DUSTING d ah s t ix ng 365 | DWINDLING d w ih n d ax l ix ng 366 | DYING d ay ix ng 367 | EARNING er n ix ng 368 | EATING iy dx ix ng 369 | EMERGING ix m er jh ix ng 370 | EMPLOYING eh m p l oy ix ng 371 | ENABLING eh n ey b ax l ix ng 372 | ENCOURAGING eh n k er ix jh ix ng 373 | ENCROACHING ix n k r ow ch ix ng 374 | ENDING eh n d ix ng 375 | ENDURING eh n d y uh r ix ng 376 | ENJOYING eh n jh oy ix ng 377 | ENTERING eh n t er ix ng 378 | ENTICING eh n t ay s ix ng 379 | ESCAPING ix s k ey p ix ng 380 | ESTABLISHING ix s t ae b l ix sh ix ng 381 | ESTIMATING eh s t ax m ey dx ix ng 382 | EXAMINING ix g z ae m ix n ix ng 383 | EXCEEDING ix k s iy dx ix ng 384 | EXERTING ix g z er dx ix ng 385 | EXISTING ix g z ih s t ix ng 386 | EXPECTING ix k s p eh k t ix ng 387 | EXPERIENCING ix k s p ih r iy ax n s ix ng 388 | EXPIRING ix k s p ay r ix ng 389 | EXPLODING ix k s p l ow dx ix ng 390 | EXPLORING ix k s p l ao r ix ng 391 | EXTENDING ix k s t eh n d ix ng 392 | FACILITATING f ax s ih l ax t ey dx ix ng 393 | FACING f ey s ix ng 394 | FAILING f ey l ix ng 395 | FALLING f aa l ix ng 396 | FEARING f ih r ix ng 397 | FEEDING f iy dx ix ng 398 | FEELING f iy l ix ng 399 | FIGHTING f ay dx ix ng 400 | FIGURING f ih g y er ix ng 401 | FILLING f ih l ix ng 402 | FINDING f ay n d ix ng 403 | FINGERING f ih ng g er ix ng 404 | FIXING f ih k s ix ng 405 | FLASHING f l ae sh ix ng 406 | FLINGING f l ih ng ix ng 407 | FLIPPING f l ih p ix ng 408 | FLOATING f l ow dx ix ng 409 | FLOURISHING f l er ix sh ix ng 410 | FLOWING f l ow ix ng 411 | FLYING f l ay ix ng 412 | FOAMING f ow m ix ng 413 | FOLLOWING f aa l ow ix ng 414 | FOOTING f uh dx ix ng 415 | FORBIDDING f er b ih dx ix ng 416 | FORGETTING f er g eh dx ix ng 417 | FORMING f ao r m ix ng 418 | FOUNDING f aw n d ix ng 419 | FRETTING f r eh dx ix ng 420 | GAINING g ey n ix ng 421 | GATHERING g ae dh er ix ng 422 | GENERATING jh eh n er ey dx ix ng 423 | GETTING g eh dx ix ng 424 | GIVING g ih v ix ng 425 | GOING g ow ix ng 426 | GRATIFYING g r ae dx ax f ay ix ng 427 | GREETING g r iy dx ix ng 428 | GROWING g r ow ix ng 429 | GUARDING g aa r dx ix ng 430 | GUESSING g eh s ix ng 431 | GUIDING g ay dx ix ng 432 | HALTING hh ao l t ix ng 433 | HAMMERING hh ae m er ix ng 434 | HANDLING hh ae n d l ix ng 435 | HANGING hh ae ng ix ng 436 | HAPPENING hh ae p ax n ix ng 437 | HAVING hh ae v ix ng 438 | HEADING hh eh dx ix ng 439 | HELPING hh eh l p ix ng 440 | HIDING hh ay dx ix ng 441 | HITTING hh ih dx ix ng 442 | HOARDING hh ao r dx ix ng 443 | HOLDING hh ow l d ix ng 444 | HONORING aa n er ix ng 445 | HOPING hh ow p ix ng 446 | IGNORING ix g n ao r ix ng 447 | IMAGINING ix m ae jh ax n ix ng 448 | IMPLYING ix m p l ay ix ng 449 | IMPROVING ix m p r uw v ix ng 450 | INCLUDING ix n k l uw dx ix ng 451 | INCORPORATING ix n k ao r p er ey dx ix ng 452 | INCREASING ix n k r iy s ix ng 453 | INDICATING ih n d ax k ey dx ix ng 454 | INDULGING ix n d ah l jh ix ng 455 | INJURING ih n jh er ix ng 456 | INQUIRING ix n k w ay er ix ng 457 | INSINUATING ix n s ih n y uw ey dx ix ng 458 | INTEGRATING ih n t ax g r ey dx ix ng 459 | INTERRUPTING ih n t er ah p t ix ng 460 | INTRODUCING ih n t r ax d uw s ix ng 461 | INVESTING ix n v eh s t ix ng 462 | INVITING ix n v ay dx ix ng 463 | JOINING jh oy n ix ng 464 | JUDGING jh ah jh ix ng 465 | JUMPING jh ah m p ix ng 466 | JUTTING jh ah dx ix ng 467 | KEEPING k iy p ix ng 468 | KICKING k ih k ix ng 469 | KIDDING k ih dx ix ng 470 | KILLING k ih l ix ng 471 | KNOCKING n aa k ix ng 472 | KNOWING n ow ix ng 473 | LAGGING l ae g ix ng 474 | LAUGHING l ae f ix ng 475 | LEADING l iy dx ix ng 476 | LEANING l iy n ix ng 477 | LEAPING l iy p ix ng 478 | LEARNING l er n ix ng 479 | LEAVING l iy v ix ng 480 | LESSENING l eh s ax n ix ng 481 | LETTING l eh dx ix ng 482 | LICKING l ih k ix ng 483 | LIFTING l ih f t ix ng 484 | LIGHTENING l ay t ax n ix ng 485 | LIMITING l ih m ax dx ix ng 486 | LISTENING l ih s ax n ix ng 487 | LIVING l ih v ix ng 488 | LOOKING l uh k ix ng 489 | LOSING l uw z ix ng 490 | LYING l ay ix ng 491 | MAINTAINING m ey n t ey n ix ng 492 | MAKING m ey k ix ng 493 | MANAGING m ae n ax jh ix ng 494 | MANNING m ae n ix ng 495 | MARKING m aa r k ix ng 496 | MATCHING m ae ch ix ng 497 | MEANING m iy n ix ng 498 | MEASURING m eh zh er ix ng 499 | MEDDLING m eh dx ax l ix ng 500 | MELTING m eh l t ix ng 501 | MENTIONING m eh n sh ax n ix ng 502 | MILLING m ih l ix ng 503 | MISSING m ih s ix ng 504 | MISUNDERSTANDING m ih s ax n d er s t ae n d ix ng 505 | MIXING m ih k s ix ng 506 | MOCKING m aa k ix ng 507 | MODELING m aa dx ax l ix ng 508 | MODIFYING m aa dx ax f ay ix ng 509 | MORTIFYING m ao r dx ix f ay ix ng 510 | MOVING m uw v ix ng 511 | MURDERING m er dx er ix ng 512 | NEEDING n iy dx ix ng 513 | NEIGHBORING n ey b er ix ng 514 | NETTING n eh dx ix ng 515 | NIBBLING n ih b ax l ix ng 516 | OBSERVING ax b z er v ix ng 517 | OBTAINING ax b t ey n ix ng 518 | OCCUPYING aa k y ax p ay ix ng 519 | OCCURRING ax k er ix ng 520 | OOZING uw z ix ng 521 | OPENING ow p ax n ix ng 522 | OPERATING aa p er ey dx ix ng 523 | OPPOSING ax p ow z ix ng 524 | ORDERING ao r dx er ix ng 525 | ORIGINATING er ih jh ax n ey dx ix ng 526 | OVERFLOWING ow v er f l ow ix ng 527 | OVERLAPPING ow v er l ae p ix ng 528 | OVERLOOKING ow v er l uh k ix ng 529 | OWING ow ix ng 530 | PACKING p ae k ix ng 531 | PARTING p aa r dx ix ng 532 | PASSING p ae s ix ng 533 | PAUSING p ao z ix ng 534 | PAYING p ey ix ng 535 | PENETRATING p eh n ax t r ey dx ix ng 536 | PERFORMING p er f ao r m ix ng 537 | PICKING p ih k ix ng 538 | PICTURING p ih k ch er ix ng 539 | PLANNING p l ae n ix ng 540 | PLANTING p l ae n t ix ng 541 | PLAYING p l ey ix ng 542 | PLEASING p l iy z ix ng 543 | PLUNGING p l ah n jh ix ng 544 | POINTING p oy n t ix ng 545 | POSSESSING p ax z eh s ix ng 546 | POURING p ao r ix ng 547 | PRECEDING p r iy s iy dx ix ng 548 | PREFERRING p r ix f er ix ng 549 | PREPARING p r iy p eh r ix ng 550 | PRESENTING p r ix z eh n t ix ng 551 | PRESSING p r eh s ix ng 552 | PRETENDING p r iy t eh n d ix ng 553 | PREVAILING p r ix v ey l ix ng 554 | PREVENTING p r ix v eh n t ix ng 555 | PROCEEDING p r ax s iy dx ix ng 556 | PRODUCING p r ax d uw s ix ng 557 | PROJECTING p r ax jh eh k t ix ng 558 | PROMPTING p r aa m p t ix ng 559 | PROPELLING p r ax p eh l ix ng 560 | PROPOSING p r ax p ow z ix ng 561 | PROTECTING p r ax t eh k t ix ng 562 | PROVIDING p r ax v ay dx ix ng 563 | PROVING p r uw v ix ng 564 | PROVOKING p r ax v ow k ix ng 565 | PULLING p uh l ix ng 566 | PURCHASING p er ch ax s ix ng 567 | PURSUING p er s uw ix ng 568 | PUSHING p uh sh ix ng 569 | PUTTING p ah dx ix ng 570 | QUADRUPLING k w aa d r uw p ax l ix ng 571 | QUESTIONING k w eh s ch ax n ix ng 572 | QUITTING k w ih dx ix ng 573 | QUOTING k w ow dx ix ng 574 | RAGING r ey jh ix ng 575 | RAISING r ey z ix ng 576 | RATTLING r ae t l ix ng 577 | REACHING r iy ch ix ng 578 | REACTING r iy ae k t ix ng 579 | REAWAKENING r iy ax w ey k ax n ix ng 580 | REBOUNDING r iy b aw n d ix ng 581 | RECEIVING r ax s iy v ix ng 582 | RECOGNIZING r eh k ax g n ay z ix ng 583 | RECOVERING r ax k ah v er ix ng 584 | REDUCING r ax d uw s ix ng 585 | REFRESHING r ix f r eh sh ix ng 586 | REFUSING r ax f y uw z ix ng 587 | REGISTERING r eh jh ix s t er ix ng 588 | REGULATING r eh g y ax l ey dx ix ng 589 | RELATING r ix l ey dx ix ng 590 | RELAXING r ix l ae k s ix ng 591 | RELINQUISHING r iy l ih ng k w ix sh ix ng 592 | REMAINING r ix m ey n ix ng 593 | REMEMBERING r ix m eh m b er ix ng 594 | REMINDING r iy m ay n d ix ng 595 | REMOVING r iy m uw v ix ng 596 | REPLACING r ix p l ey s ix ng 597 | REPRESENTING r eh p r ix z eh n t ix ng 598 | REQUESTING r ix k w eh s t ix ng 599 | REQUIRING r iy k w ay er ix ng 600 | RESEMBLING r ix z eh m b ax l ix ng 601 | RESIDING r ix z ay dx ix ng 602 | RESISTING r ix z ih s t ix ng 603 | RESOLVING r iy z aa l v ix ng 604 | RESPONDING r ix s p aa n d ix ng 605 | RESULTING r ix z ah l t ix ng 606 | RESUMING r ix z uw m ix ng 607 | RETAINING r ix t ey n ix ng 608 | RETURNING r ix t er n ix ng 609 | REVEALING r ix v iy l ix ng 610 | REVERSING r ix v er s ix ng 611 | REVIEWING r iy v y uw ix ng 612 | RIDING r ay dx ix ng 613 | RINGING r ih ng ix ng 614 | RIPPLING r ih p ax l ix ng 615 | RISING r ay z ix ng 616 | ROARING r ao r ix ng 617 | ROBBING r aa b ix ng 618 | ROLLING r ow l ix ng 619 | RUINING r uw ix n ix ng 620 | RUNNING r ah n ix ng 621 | RUSHING r ah sh ix ng 622 | SAVING s ey v ix ng 623 | SAYING s ey ix ng 624 | SCARING s k eh r ix ng 625 | SCRATCHING s k r ae ch ix ng 626 | SCREAMING s k r iy m ix ng 627 | SEARCHING s er ch ix ng 628 | SECURING s ix k y uh r ix ng 629 | SEDUCING s ix d uw s ix ng 630 | SEEING s iy ix ng 631 | SEEKING s iy k ix ng 632 | SEIZING s iy z ix ng 633 | SELLING s eh l ix ng 634 | SENDING s eh n d ix ng 635 | SEPARATING s eh p er ey dx ix ng 636 | SERVING s er v ix ng 637 | SETTING s eh dx ix ng 638 | SETTLING s eh dx ax l ix ng 639 | SHAKING sh ey k ix ng 640 | SHAPING sh ey p ix ng 641 | SHARING sh eh r ix ng 642 | SHARPENING sh aa r p ax n ix ng 643 | SHIFTING sh ih f t ix ng 644 | SHINING sh ay n ix ng 645 | SHOOTING sh uw dx ix ng 646 | SHOULDERING sh ow l d er ix ng 647 | SHOUTING sh aw dx ix ng 648 | SHOWING sh ow ix ng 649 | SHRINKING sh r ih ng k ix ng 650 | SHUTTING sh ah dx ix ng 651 | SINGING s ih ng ix ng 652 | SINKING s ih ng k ix ng 653 | SITTING s ih dx ix ng 654 | SKETCHING s k eh ch ix ng 655 | SLEEPING s l iy p ix ng 656 | SLIDING s l ay dx ix ng 657 | SLIPPING s l ih p ix ng 658 | SMELLING s m eh l ix ng 659 | SMILING s m ay l ix ng 660 | SOLVING s aa l v ix ng 661 | SOUNDING s aw n d ix ng 662 | SPEAKING s p iy k ix ng 663 | SPORTING s p ao r dx ix ng 664 | SPREADING s p r eh dx ix ng 665 | SPRINGING s p r ih ng ix ng 666 | SQUEEZING s k w iy z ix ng 667 | STALKING s t ao k ix ng 668 | STANDING s t ae n d ix ng 669 | STARTING s t aa r dx ix ng 670 | STARVING s t aa r v ix ng 671 | STAYING s t ey ix ng 672 | STEALING s t iy l ix ng 673 | STEAMING s t iy m ix ng 674 | STEPPING s t eh p ix ng 675 | STICKING s t ih k ix ng 676 | STIFLING s t ay f l ix ng 677 | STIRRING s t er ix ng 678 | STOCKING s t aa k ix ng 679 | STOPPING s t aa p ix ng 680 | STREAMING s t r iy m ix ng 681 | STRENGTHENING s t r eh ng th ax n ix ng 682 | STRETCHING s t r eh ch ix ng 683 | STRIVING s t r ay v ix ng 684 | STRUGGLING s t r ah g ax l ix ng 685 | STUDYING s t ah dx iy ix ng 686 | STULTIFYING s t ah l t ax f ay ix ng 687 | STUMBLING s t ah m b ax l ix ng 688 | SUCCEEDING s ax k s iy dx ix ng 689 | SUFFERING s ah f er ix ng 690 | SUGGESTING s ax g jh eh s t ix ng 691 | SUPPLYING s ax p l ay ix ng 692 | SUPPORTING s ax p ao r dx ix ng 693 | SURRENDERING s er eh n d er ix ng 694 | SURROUNDING s er aw n d ix ng 695 | SURVIVING s er v ay v ix ng 696 | SUSPECTING s ax s p eh k t ix ng 697 | SWALLOWING s w aa l ow ix ng 698 | SWAPPING s w aa p ix ng 699 | SWAYING s w ey ix ng 700 | SWELLING s w eh l ix ng 701 | SWINGING s w ih ng ix ng 702 | SWITCHING s w ih ch ix ng 703 | TAKING t ey k ix ng 704 | TALKING t ao k ix ng 705 | TAPERING t ey p er ix ng 706 | TAPPING t ae p ix ng 707 | TEARING t eh r ix ng 708 | TELLING t eh l ix ng 709 | TERMINATING t er m ax n ey dx ix ng 710 | THINKING th ih ng k ix ng 711 | THREATENING th r eh t ax n ix ng 712 | THROWING th r ow ix ng 713 | THRUSTING th r ah s t ix ng 714 | THUMBING th ah m ix ng 715 | TOSSING t ao s ix ng 716 | TOUCHING t ah ch ix ng 717 | TOURING t uh r ix ng 718 | TOYING t oy ix ng 719 | TRACING t r ey s ix ng 720 | TRACKING t r ae k ix ng 721 | TRAILING t r ey l ix ng 722 | TRAVELING t r ae v ax l ix ng 723 | TREATING t r iy dx ix ng 724 | TRIMMING t r ih m ix ng 725 | TRYING t r ay ix ng 726 | TUMBLING t ah m b ax l ix ng 727 | TURNING t er n ix ng 728 | UNDERGOING ah n d er g ow ix ng 729 | UNDERLYING ah n d er l ay ix ng 730 | UNDERTAKING ah n d er t ey k ix ng 731 | URGING er jh ix ng 732 | USING y uw z ix ng 733 | UTTERING ah dx er ix ng 734 | VANISHING v ae n ix sh ix ng 735 | VARYING v eh r iy ix ng 736 | VIEWING v y uw ix ng 737 | VIOLATING v ay ax l ey dx ix ng 738 | VISUALIZING v ih zh w ax l ay z ix ng 739 | WAILING w ey l ix ng 740 | WAITING w ey dx ix ng 741 | WAKING w ey k ix ng 742 | WALKING w ao k ix ng 743 | WANDERING w aa n d er ix ng 744 | WANTING w aa n t ix ng 745 | WARNING w ao r n ix ng 746 | WASHING w aa sh ix ng 747 | WASTING w ey s t ix ng 748 | WATCHING w aa ch ix ng 749 | WAVERING w ey v er ix ng 750 | WAVING w ey v ix ng 751 | WEARING w eh r ix ng 752 | WEAVING w iy v ix ng 753 | WEEPING w iy p ix ng 754 | WELCOMING w eh l k ax m ix ng 755 | WHISPERING w ih s p er ix ng 756 | WHISTLING w ih s l ix ng 757 | WIELDING w iy l d ix ng 758 | WINKING w ih ng k ix ng 759 | WINNING w ih n ix ng 760 | WIPING w ay p ix ng 761 | WISHING w ih sh ix ng 762 | WONDERING w ah n d er ix ng 763 | WORKING w er k ix ng 764 | WRAPPING r ae p ix ng 765 | WRIGGLING r ih g ax l ix ng 766 | WRITING r ay dx ix ng 767 | YIELDING y iy l d ix ng 768 | --------------------------------------------------------------------------------