eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Product.wxs 129KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?define ProductName = "eSpeak NG Text-to-Speech" ?>
  3. <?define ProductVendor = "espeak-ng contributors" ?>
  4. <?define ProductVersion = "1.51.0" ?>
  5. <?define CLSID_TtsEngine = "{61D23633-CE59-4101-8158-569FC6B51B49}" ?>
  6. <?if $(var.Platform) = x64 ?>
  7. <?define ProductDisplayName = "$(var.ProductName) 64-bit" ?>
  8. <?define Win64 = "yes" ?>
  9. <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
  10. <?else ?>
  11. <?define ProductDisplayName = "$(var.ProductName)" ?>
  12. <?define Win64 = "no" ?>
  13. <?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
  14. <?endif ?>
  15. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  16. <Product Id="3DA6DF03-E5CD-4A93-B06F-707484742BAB" Name="$(var.ProductDisplayName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="eSpeak Community" UpgradeCode="B4F779EB-AC6C-49D2-A12D-4871E4520C0F">
  17. <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="$(var.Platform)" />
  18. <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
  19. <MediaTemplate EmbedCab="yes"/>
  20. <UIRef Id="WixUI_FeatureTree"/>
  21. <WixVariable Id="WixUILicenseRtf" Value="License_GPLv3.rtf"/>
  22. <Feature Id="All" Title="eSpeak NG" Level="1">
  23. <ComponentGroupRef Id="CoreComponents"/>
  24. <ComponentGroupRef Id="Data"/>
  25. </Feature>
  26. <!--
  27. <Feature Id="sapi" Title="SAPI Voices">
  28. <Feature Id="sapi_en" Title="English" Level="1">
  29. <ComponentGroupRef Id="LangEnglish"/>
  30. <ComponentGroupRef Id="SapiEnglish"/>
  31. </Feature>
  32. </Feature>
  33. -->
  34. </Product>
  35. <Fragment>
  36. <Directory Id="TARGETDIR" Name="SourceDir">
  37. <Directory Id="$(var.PlatformProgramFilesFolder)">
  38. <Directory Id="INSTALLDIR" Name="eSpeak NG">
  39. <Component Id="espeak_ng_EXE" Win64="$(var.Win64)" Guid="220D42BC-89CD-4230-A458-CD31285EB152">
  40. <File Name="$(var.espeak-ng.TargetFileName)" Source="$(var.espeak-ng.TargetPath)" KeyPath="yes"/>
  41. </Component>
  42. <Component Id="libespeak_ng_DLL" Win64="$(var.Win64)" Guid="AFDF57DE-D7E9-4781-BA0F-5D92FD56B045">
  43. <File Name="$(var.libespeak-ng.TargetFileName)" Source="$(var.libespeak-ng.TargetPath)" KeyPath="yes"/>
  44. <RegistryKey Root="HKLM" Key="SOFTWARE\eSpeak NG">
  45. <RegistryValue Name="Path" Type="string" Value="[INSTALLDIR]"/>
  46. </RegistryKey>
  47. <RegistryKey Root="HKLM" Key="Software\Classes\CLSID\$(var.CLSID_TtsEngine)">
  48. <RegistryValue Type="string" Value="eSpeakNG.TtsEngine"/>
  49. <RegistryKey Key="InprocServer32">
  50. <RegistryValue Type="string" Value="[INSTALLDIR]$(var.libespeak-ng.TargetFileName)"/>
  51. <RegistryValue Name="ThreadingModel" Type="string" Value="Both"/>
  52. </RegistryKey>
  53. </RegistryKey>
  54. </Component>
  55. <Component Id="AddToEnv" Guid="EBBBAC5D-22BA-41EB-A30A-EF1A04FEBA08" KeyPath="yes">
  56. <Environment Id="PATH" Name="PATH" Value="[INSTALLDIR]" Permanent="yes" Part="last" Action="set" System="yes"/>
  57. </Component>
  58. <Directory Id="espeak_ng_data" Name="espeak-ng-data">
  59. <Component Id="af_dict" Guid="96E3E35D-F41E-4BD7-BEDD-AA063E8CD2D3">
  60. <File Id="af_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\af_dict " />
  61. </Component>
  62. <Component Id="am_dict" Guid="D213585E-DE66-452E-90D6-44B73F7AD2C6">
  63. <File Id="am_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\am_dict" />
  64. </Component>
  65. <Component Id="an_dict" Guid="398D043F-2306-4465-AF86-0E71B8919E82">
  66. <File Id="an_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\an_dict" />
  67. </Component>
  68. <Component Id="ar_dict" Guid="DA018A76-E180-413D-A4FC-DC42822EE9DC">
  69. <File Id="ar_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ar_dict" />
  70. </Component>
  71. <Component Id="as_dict" Guid="F414CBF2-A37F-4B20-8568-E02F0005E5AC">
  72. <File Id="as_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\as_dict" />
  73. </Component>
  74. <Component Id="az_dict" Guid="A926DD44-BDB9-4A53-917D-ECA0293872D7">
  75. <File Id="az_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\az_dict" />
  76. </Component>
  77. <Component Id="ba_dict" Guid="089C7742-4635-4F56-9820-52623C760202">
  78. <File Id="ba_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ba_dict" />
  79. </Component>
  80. <Component Id="be_dict" Guid="C19B5995-7818-4B96-85F6-BBA3DE7AA75A">
  81. <File Id="be_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\be_dict" />
  82. </Component>
  83. <Component Id="bg_dict" Guid="0B2E7774-C8C2-48F2-8D13-95AD69EA4A71">
  84. <File Id="bg_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bg_dict" />
  85. </Component>
  86. <Component Id="bn_dict" Guid="38C26D99-1922-41A1-A788-A9FAB755AEF4">
  87. <File Id="bn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bn_dict" />
  88. </Component>
  89. <Component Id="bpy_dict" Guid="B6A11280-D76D-4735-B90E-5B8C595E53DD">
  90. <File Id="bpy_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bpy_dict" />
  91. </Component>
  92. <Component Id="bs_dict" Guid="BCF82A6D-1F9B-4B15-ADC8-245CEB3BBAEF">
  93. <File Id="bs_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bs_dict" />
  94. </Component>
  95. <Component Id="ca_dict" Guid="AC6A9AE4-23B3-466E-975C-E7E6FC25D274">
  96. <File Id="ca_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ca_dict" />
  97. </Component>
  98. <Component Id="chr_dict" Guid="70DEE74E-3024-44A4-A009-87D2D1AF6378">
  99. <File Id="chr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\chr_dict" />
  100. </Component>
  101. <Component Id="cmn_dict" Guid="891DC9D9-8F91-4C7F-BCF7-61404FE252D2">
  102. <File Id="cmn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cmn_dict" />
  103. </Component>
  104. <Component Id="cs_dict" Guid="6241B32C-5008-4B8D-AA40-9191D6DF8433">
  105. <File Id="cs_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cs_dict" />
  106. </Component>
  107. <Component Id="cv_dict" Guid="7393C1FB-CC90-451D-B5C8-9203F1E6D18E">
  108. <File Id="cv_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cv_dict" />
  109. </Component>
  110. <Component Id="cy_dict" Guid="B4992394-7591-455A-9A27-35A8FF15F8FC">
  111. <File Id="cy_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cy_dict" />
  112. </Component>
  113. <Component Id="da_dict" Guid="DCC767A1-1C42-493F-9A70-021027F7B35D">
  114. <File Id="da_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\da_dict" />
  115. </Component>
  116. <Component Id="de_dict" Guid="234BEB24-6700-4B54-A440-04087FF684E0">
  117. <File Id="de_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\de_dict" />
  118. </Component>
  119. <Component Id="el_dict" Guid="6C3D7FE8-6145-45D3-ABAF-2B8F834BC734">
  120. <File Id="el_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\el_dict" />
  121. </Component>
  122. <Component Id="en_dict" Guid="F8F205DE-8EA5-4D9A-9060-1596DE7E4FCF">
  123. <File Id="en_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\en_dict" />
  124. </Component>
  125. <Component Id="eo_dict" Guid="3570C736-2E4F-4D07-B141-B4051B838642">
  126. <File Id="eo_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\eo_dict" />
  127. </Component>
  128. <Component Id="es_dict" Guid="D2DB0675-7B70-4735-AECE-0D0D5FD28C49">
  129. <File Id="es_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\es_dict" />
  130. </Component>
  131. <Component Id="et_dict" Guid="04F68611-1A5C-4A49-B14A-DF1C9C0DA8BB">
  132. <File Id="et_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\et_dict" />
  133. </Component>
  134. <Component Id="eu_dict" Guid="1DBBEECB-5911-48EE-9F97-24C1CD8343A4">
  135. <File Id="eu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\eu_dict" />
  136. </Component>
  137. <Component Id="fa_dict" Guid="B99ED99B-B7EC-4E2F-AE81-516D62CCA1FE">
  138. <File Id="fa_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fa_dict" />
  139. </Component>
  140. <Component Id="fi_dict" Guid="A940BAEF-840D-4A76-AF8E-1971E88F9057">
  141. <File Id="fi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fi_dict" />
  142. </Component>
  143. <Component Id="fo_dict" Guid="68CBDAF4-8D0E-44CC-8523-3E0CF5343024">
  144. <File Id="fo_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fo_dict" />
  145. </Component>
  146. <Component Id="fr_dict" Guid="437EC744-1AF9-49CF-8058-BEBDE579EF79">
  147. <File Id="fr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fr_dict" />
  148. </Component>
  149. <Component Id="ga_dict" Guid="8534BC20-1A67-4441-A5B7-981594B944CA">
  150. <File Id="ga_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ga_dict" />
  151. </Component>
  152. <Component Id="gd_dict" Guid="C2C6B6B6-2B02-4149-A422-49F9F644167B">
  153. <File Id="gd_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\gd_dict" />
  154. </Component>
  155. <Component Id="gn_dict" Guid="FF844F5D-6BF4-4D40-B62B-51EE22099BA4">
  156. <File Id="gn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\gn_dict" />
  157. </Component>
  158. <Component Id="grc_dict" Guid="85E08D93-0165-4428-AECA-A4E56CF86E4B">
  159. <File Id="grc_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\grc_dict" />
  160. </Component>
  161. <Component Id="gu_dict" Guid="4A22E64F-11DC-4E08-8C25-302CC315902A">
  162. <File Id="gu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\gu_dict" />
  163. </Component>
  164. <Component Id="hak_dict" Guid="2D93A632-B1E5-4B06-B1D6-3319FED6271F">
  165. <File Id="hak_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hak_dict" />
  166. </Component>
  167. <Component Id="haw_dict" Guid="70502414-E92A-4F26-BEDB-53ADCBDFB3A8">
  168. <File Id="haw_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\haw_dict" />
  169. </Component>
  170. <Component Id="he_dict" Guid="D5DC2F0B-6B51-4DEA-884B-4801A6D14574">
  171. <File Id="he_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\he_dict" />
  172. </Component>
  173. <Component Id="hi_dict" Guid="0E9BC2B4-6970-4CC7-97AD-FDA4675845E9">
  174. <File Id="hi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hi_dict" />
  175. </Component>
  176. <Component Id="hr_dict" Guid="136AB162-F5D3-4DDE-9A3B-29D169C03BF9">
  177. <File Id="hr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hr_dict" />
  178. </Component>
  179. <Component Id="ht_dict" Guid="060C81DC-1FC4-4694-BD1F-53B42F7C06B0">
  180. <File Id="ht_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ht_dict" />
  181. </Component>
  182. <Component Id="hu_dict" Guid="3796AA20-E908-4290-8A39-77274E98B954">
  183. <File Id="hu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hu_dict" />
  184. </Component>
  185. <Component Id="hy_dict" Guid="6DB4B241-5CCF-42C3-923F-C476599EDD95">
  186. <File Id="hy_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hy_dict" />
  187. </Component>
  188. <Component Id="ia_dict" Guid="17EAEDC8-0C87-4773-A82E-6F010F08D05A">
  189. <File Id="ia_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ia_dict" />
  190. </Component>
  191. <Component Id="id_dict" Guid="D2C395C1-6D1A-48D2-A57D-AE1F1DCD5C07">
  192. <File Id="id_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\id_dict" />
  193. </Component>
  194. <Component Id="intonations" Guid="4AFE394B-A81B-497F-A166-DB0CD307586E">
  195. <File Id="intonations" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\intonations" />
  196. </Component>
  197. <Component Id="io_dict" Guid="C5168DAB-D36E-4BEC-AB1E-47B01984C308">
  198. <File Id="io_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\io_dict" />
  199. </Component>
  200. <Component Id="is_dict" Guid="F77A95D1-D8A9-431A-B4B9-C0A87E82B654">
  201. <File Id="is_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\is_dict" />
  202. </Component>
  203. <Component Id="it_dict" Guid="C049B40A-EC5C-4FFF-A2A8-1385DAA36911">
  204. <File Id="it_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\it_dict" />
  205. </Component>
  206. <Component Id="ja_dict" Guid="8E8FBD98-4E18-467A-B314-9E9AB52D3FE1">
  207. <File Id="ja_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ja_dict" />
  208. </Component>
  209. <Component Id="jbo_dict" Guid="AC2FD60E-AED8-4F6C-9D22-1C3D373CC225">
  210. <File Id="jbo_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\jbo_dict" />
  211. </Component>
  212. <Component Id="ka_dict" Guid="BAEF98BA-2780-402B-B952-B5A87DF7AD04">
  213. <File Id="ka_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ka_dict" />
  214. </Component>
  215. <Component Id="kk_dict" Guid="7269A02E-C520-4BDA-B294-7D8FF839459D">
  216. <File Id="kk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kk_dict" />
  217. </Component>
  218. <Component Id="kl_dict" Guid="699E632B-F32A-40F1-BDE6-F20ABF868867">
  219. <File Id="kl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kl_dict" />
  220. </Component>
  221. <Component Id="kn_dict" Guid="B3767ED6-6E99-493B-9DB2-7053647B5470">
  222. <File Id="kn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kn_dict" />
  223. </Component>
  224. <Component Id="kok_dict" Guid="F55D68A3-9773-494F-A07B-82BE3FB5FFAB">
  225. <File Id="kok_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kok_dict" />
  226. </Component>
  227. <Component Id="ko_dict" Guid="C6E554D6-E8D8-47E8-8A37-8E54E25D433F">
  228. <File Id="ko_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ko_dict" />
  229. </Component>
  230. <Component Id="ku_dict" Guid="995C348A-9E93-41FA-9A88-9E8369ED0CD9">
  231. <File Id="ku_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ku_dict" />
  232. </Component>
  233. <Component Id="ky_dict" Guid="8241951E-8B3A-4C2F-BBAF-E7E7B65DA21A">
  234. <File Id="ky_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ky_dict" />
  235. </Component>
  236. <Component Id="la_dict" Guid="B8617ECB-CF84-4871-9DC3-DF4609E7068D">
  237. <File Id="la_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\la_dict" />
  238. </Component>
  239. <Component Id="lb_dict" Guid="A993047D-46B2-47D8-A90B-375CEDA0253E">
  240. <File Id="lb_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lb_dict" />
  241. </Component>
  242. <Component Id="lfn_dict" Guid="749C464E-717E-4A31-8C55-677E4636E4C4">
  243. <File Id="lfn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lfn_dict" />
  244. </Component>
  245. <Component Id="lt_dict" Guid="11903A63-EB24-4408-8716-E639D2B5CBC6">
  246. <File Id="lt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lt_dict" />
  247. </Component>
  248. <Component Id="lv_dict" Guid="CFF1C80C-D076-493C-9989-A255D1F7DFFE">
  249. <File Id="lv_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lv_dict" />
  250. </Component>
  251. <Component Id="mi_dict" Guid="4E7460AB-A111-4541-B2D7-1F68F377592F">
  252. <File Id="mi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mi_dict" />
  253. </Component>
  254. <Component Id="mk_dict" Guid="45BACB16-CA0B-40AE-94ED-A24DC6E2B556">
  255. <File Id="mk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mk_dict" />
  256. </Component>
  257. <Component Id="ml_dict" Guid="33F94564-B146-47E3-A089-0D39395AC584">
  258. <File Id="ml_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ml_dict" />
  259. </Component>
  260. <Component Id="mr_dict" Guid="FBFF9BA8-D389-4AEC-8874-75FFA07B9D32">
  261. <File Id="mr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mr_dict" />
  262. </Component>
  263. <Component Id="ms_dict" Guid="EF7DAE55-A7AA-4509-A6CD-1EE6507DC889">
  264. <File Id="ms_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ms_dict" />
  265. </Component>
  266. <Component Id="mt_dict" Guid="392EDB58-BE84-4802-884B-0CA82A525CE9">
  267. <File Id="mt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mt_dict" />
  268. </Component>
  269. <Component Id="my_dict" Guid="E3F14B70-E369-4A25-84C2-66253578B347">
  270. <File Id="my_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\my_dict" />
  271. </Component>
  272. <Component Id="nci_dict" Guid="9D847F10-19CE-489B-B5CE-21F7BFBC7889">
  273. <File Id="nci_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\nci_dict" />
  274. </Component>
  275. <Component Id="ne_dict" Guid="DD2A9DC1-D454-459A-A258-18CB00B5221D">
  276. <File Id="ne_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ne_dict" />
  277. </Component>
  278. <Component Id="nl_dict" Guid="33CFC749-B41C-46E0-90DF-E3D514EAD981">
  279. <File Id="nl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\nl_dict" />
  280. </Component>
  281. <Component Id="nog_dict" Guid="8FD0D487-A467-44A3-82EF-73A80E9725AE">
  282. <File Id="nog_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\nog_dict" />
  283. </Component>
  284. <Component Id="no_dict" Guid="2FE4CA63-FFC4-4126-B052-EA56C18BC42C">
  285. <File Id="no_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\no_dict" />
  286. </Component>
  287. <Component Id="om_dict" Guid="727B5536-3971-4208-A165-5752D0F341FC">
  288. <File Id="om_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\om_dict" />
  289. </Component>
  290. <Component Id="or_dict" Guid="9A387E1C-C38B-4B45-A113-2E841B46CE2A">
  291. <File Id="or_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\or_dict" />
  292. </Component>
  293. <Component Id="pap_dict" Guid="8BB115DC-8DD5-4416-9AF9-5D7D336BD1BB">
  294. <File Id="pap_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pap_dict" />
  295. </Component>
  296. <Component Id="pa_dict" Guid="FDA7D6A7-E6A2-4856-AC71-E66BE74F27DC">
  297. <File Id="pa_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pa_dict" />
  298. </Component>
  299. <Component Id="phondata" Guid="F5C42DBD-4994-4341-B195-9F714AE19EF9">
  300. <File Id="phondata" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phondata" />
  301. </Component>
  302. <Component Id="phondata_manifest" Guid="251F6F6C-EDE4-4272-BBB6-FACFD8029D62">
  303. <File Id="phondata_manifest" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phondata-manifest" />
  304. </Component>
  305. <Component Id="phonindex" Guid="0923E3B1-6D4F-4770-817C-55FF0A777ED6">
  306. <File Id="phonindex" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phonindex" />
  307. </Component>
  308. <Component Id="phontab" Guid="2D398D99-57E2-452C-9F26-A8BCACD9BB0C">
  309. <File Id="phontab" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phontab" />
  310. </Component>
  311. <Component Id="piqd_dict" Guid="8F96D172-7594-49F3-A398-6775851D9646">
  312. <File Id="piqd_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\piqd_dict" />
  313. </Component>
  314. <Component Id="pl_dict" Guid="A441D588-10F6-473C-862B-9D1713D759B2">
  315. <File Id="pl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pl_dict" />
  316. </Component>
  317. <Component Id="pt_dict" Guid="CBE0AC31-DA27-4FDD-8C10-F41C8049542E">
  318. <File Id="pt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pt_dict" />
  319. </Component>
  320. <Component Id="py_dict" Guid="4F02880E-B755-4C12-9002-9BAE416ED6E4">
  321. <File Id="py_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\py_dict" />
  322. </Component>
  323. <Component Id="qdb_dict" Guid="B87FBA57-35FA-4309-A7B9-57377DBBCFF6">
  324. <File Id="qdb_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\qdb_dict" />
  325. </Component>
  326. <Component Id="quc_dict" Guid="FEDF70F7-6AB1-4A56-A9BF-C5A25959E620">
  327. <File Id="quc_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\quc_dict" />
  328. </Component>
  329. <Component Id="qu_dict" Guid="73B54531-4334-418D-99F1-8109F0A7A6B2">
  330. <File Id="qu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\qu_dict" />
  331. </Component>
  332. <Component Id="qya_dict" Guid="575744A7-772E-450F-ACF2-3AA18FF3C8FF">
  333. <File Id="qya_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\qya_dict" />
  334. </Component>
  335. <Component Id="ro_dict" Guid="6E8848A2-2CB1-48E2-9345-23C664A36071">
  336. <File Id="ro_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ro_dict" />
  337. </Component>
  338. <Component Id="ru_dict" Guid="A243A313-6904-4396-B75A-082695CF3990">
  339. <File Id="ru_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ru_dict" />
  340. </Component>
  341. <Component Id="sd_dict" Guid="4DE21FF9-00D6-4897-B92F-D7F77B6B48CB">
  342. <File Id="sd_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sd_dict" />
  343. </Component>
  344. <Component Id="shn_dict" Guid="2719B6AB-2D64-47D6-AA4F-5DDF771CFF35">
  345. <File Id="shn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\shn_dict" />
  346. </Component>
  347. <Component Id="si_dict" Guid="CF87CBF4-33C5-4148-B5D7-267B40E316EC">
  348. <File Id="si_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\si_dict" />
  349. </Component>
  350. <Component Id="sjn_dict" Guid="B0DA5A50-17B2-435E-81D9-391421E8E388">
  351. <File Id="sjn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sjn_dict" />
  352. </Component>
  353. <Component Id="sk_dict" Guid="A8289579-E81A-41C7-912B-8777A92A0E0F">
  354. <File Id="sk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sk_dict" />
  355. </Component>
  356. <Component Id="sl_dict" Guid="D9AFE76F-5B93-451F-AE07-3D570F31BF49">
  357. <File Id="sl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sl_dict" />
  358. </Component>
  359. <Component Id="smj_dict" Guid="14DFEC9D-6FC4-4D5B-BEAA-19DBAB09A1C0">
  360. <File Id="smj_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\smj_dict" />
  361. </Component>
  362. <Component Id="sq_dict" Guid="E2BFD167-EA47-4CBD-BD69-3400119A6168">
  363. <File Id="sq_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sq_dict" />
  364. </Component>
  365. <Component Id="sr_dict" Guid="05664320-EA02-4A0D-8557-37C69EDD6E4E">
  366. <File Id="sr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sr_dict" />
  367. </Component>
  368. <Component Id="sv_dict" Guid="88F68D8E-A947-49F0-85AF-B0A0C346441C">
  369. <File Id="sv_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sv_dict" />
  370. </Component>
  371. <Component Id="sw_dict" Guid="261EB115-1E47-4CEC-A55B-C1193ED26092">
  372. <File Id="sw_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sw_dict" />
  373. </Component>
  374. <Component Id="ta_dict" Guid="9EBC11A7-D7C9-488C-84F8-3DD8701534C8">
  375. <File Id="ta_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ta_dict" />
  376. </Component>
  377. <Component Id="te_dict" Guid="5AF4321F-78F0-4556-A913-2FD7E4AD152F">
  378. <File Id="te_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\te_dict" />
  379. </Component>
  380. <Component Id="th_dict" Guid="8515EA75-0778-4B7A-871C-54FD76A13BA6">
  381. <File Id="th_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\th_dict" />
  382. </Component>
  383. <Component Id="tk_dict" Guid="BD52736C-B58D-4175-BEC2-231367F4FE19">
  384. <File Id="tk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tk_dict" />
  385. </Component>
  386. <Component Id="tn_dict" Guid="3FE9487F-A026-47BC-BFD4-6BE7B2D0128D">
  387. <File Id="tn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tn_dict" />
  388. </Component>
  389. <Component Id="tr_dict" Guid="AE3F9023-88DB-4C18-877C-03C76EAA37C2">
  390. <File Id="tr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tr_dict" />
  391. </Component>
  392. <Component Id="tt_dict" Guid="D596648A-39AB-40C8-BAB0-6EB6782AC12C">
  393. <File Id="tt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tt_dict" />
  394. </Component>
  395. <Component Id="ug_dict" Guid="05906E9D-46B5-4048-BC3D-72A412F98A2C">
  396. <File Id="ug_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ug_dict" />
  397. </Component>
  398. <Component Id="uk_dict" Guid="0FD5C9B5-7CFC-46B7-B883-3FF350F0026B">
  399. <File Id="uk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\uk_dict" />
  400. </Component>
  401. <Component Id="ur_dict" Guid="AA83B417-B7FB-4171-A0CC-001CCF983F3C">
  402. <File Id="ur_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ur_dict" />
  403. </Component>
  404. <Component Id="uz_dict" Guid="2A819F07-AA5A-4AE1-95EA-E8351F9B0E3B">
  405. <File Id="uz_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\uz_dict" />
  406. </Component>
  407. <Component Id="vi_dict" Guid="46201B14-8E47-479C-BEDC-EE354E9E81C4">
  408. <File Id="vi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\vi_dict" />
  409. </Component>
  410. <Component Id="yue_dict" Guid="2C041C10-226A-404A-AB22-C771ACB9C00B">
  411. <File Id="yue_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\yue_dict" />
  412. </Component>
  413. <Directory Id="lang" Name="lang">
  414. <Component Id="eu" Guid="8CF0DE06-B30B-448A-A51A-A6078A0C8687">
  415. <File Id="eu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\eu" />
  416. </Component>
  417. <Component Id="ko" Guid="A3B2FDDE-20D4-4F8D-BCBF-E665A836DBB5">
  418. <File Id="ko" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ko" />
  419. </Component>
  420. <Component Id="qu" Guid="3AD78EE5-7419-4C9D-B19E-E1FD73805C6B">
  421. <File Id="qu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\qu" />
  422. </Component>
  423. <Directory Id="aav" Name="aav">
  424. <Component Id="vi" Guid="3B01BDDB-CBFC-4EDD-BD5F-797E041E8C5D">
  425. <File Id="vi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\aav\vi" />
  426. </Component>
  427. <Component Id="vi_VN_x_central" Guid="01969BD6-E3A8-488B-9B37-A6120B98E81C">
  428. <File Id="vi_VN_x_central" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\aav\vi-VN-x-central" />
  429. </Component>
  430. <Component Id="vi_VN_x_south" Guid="615728B3-6705-48BF-9F3B-3A71252EDB9E">
  431. <File Id="vi_VN_x_south" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\aav\vi-VN-x-south" />
  432. </Component>
  433. </Directory>
  434. <Directory Id="art" Name="art">
  435. <Component Id="eo" Guid="C94420E1-4665-41E7-9DD7-104BDE1BDCB0">
  436. <File Id="eo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\eo" />
  437. </Component>
  438. <Component Id="ia" Guid="163AA4B5-DAFE-4A9B-9EE2-A432D26EAC64">
  439. <File Id="ia" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\ia" />
  440. </Component>
  441. <Component Id="io" Guid="1ECA468A-2A31-4361-AE5D-BE682C643187">
  442. <File Id="io" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\io" />
  443. </Component>
  444. <Component Id="jbo" Guid="3F6D7B56-821B-46AA-8CFD-2991636A568A">
  445. <File Id="jbo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\jbo" />
  446. </Component>
  447. <Component Id="lfn" Guid="7DE77E02-AAAD-4191-853D-AF73942CAE30">
  448. <File Id="lfn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\lfn" />
  449. </Component>
  450. <Component Id="piqd" Guid="C1AB16B4-4D4F-4372-88BF-F60D9899EA72">
  451. <File Id="piqd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\piqd" />
  452. </Component>
  453. <Component Id="py" Guid="DA8E0699-6A19-4858-B298-4E6ED34F340B">
  454. <File Id="py" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\py" />
  455. </Component>
  456. <Component Id="qdb" Guid="C20B83FB-35BB-488D-A0F3-7CBFB8EC6E8F">
  457. <File Id="qdb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\qdb" />
  458. </Component>
  459. <Component Id="qya" Guid="4FFFE9FC-8EDC-48BF-867E-127F17229FAB">
  460. <File Id="qya" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\qya" />
  461. </Component>
  462. <Component Id="sjn" Guid="FD9E9053-4FB3-4B44-B914-2BE0F24E15A1">
  463. <File Id="sjn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\sjn" />
  464. </Component>
  465. </Directory>
  466. <Directory Id="azc" Name="azc">
  467. <Component Id="nci" Guid="52DC9A36-7615-4A11-B0D4-3D7DB7D00635">
  468. <File Id="nci" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\azc\nci" />
  469. </Component>
  470. </Directory>
  471. <Directory Id="bat" Name="bat">
  472. <Component Id="lt" Guid="4A03A0CB-E03F-430F-AC0A-F617F73BA54C">
  473. <File Id="lt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bat\lt" />
  474. </Component>
  475. <Component Id="ltg" Guid="2DD75859-2F64-4FEC-B2D7-C64475FB3F94">
  476. <File Id="ltg" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bat\ltg" />
  477. </Component>
  478. <Component Id="lv" Guid="5399C28A-5494-4DF6-935B-1CD74B203896">
  479. <File Id="lv" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bat\lv" />
  480. </Component>
  481. </Directory>
  482. <Directory Id="bnt" Name="bnt">
  483. <Component Id="sw" Guid="C7D2ACE2-1C5B-4790-91F7-D8714DD49F89">
  484. <File Id="sw" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bnt\sw" />
  485. </Component>
  486. <Component Id="tn" Guid="61A557AB-F0FE-4FB7-B381-54B971F1B947">
  487. <File Id="tn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bnt\tn" />
  488. </Component>
  489. </Directory>
  490. <Directory Id="ccs" Name="ccs">
  491. <Component Id="ka" Guid="4298217B-9E53-4FBD-8472-AB2C51223E73">
  492. <File Id="ka" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ccs\ka" />
  493. </Component>
  494. </Directory>
  495. <Directory Id="cel" Name="cel">
  496. <Component Id="cy" Guid="6741BF0A-A24F-4E26-B5F9-77E9B7D190F2">
  497. <File Id="cy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cel\cy" />
  498. </Component>
  499. <Component Id="ga" Guid="DE1B08AC-D7A3-4D8D-B1D2-3C27297060E2">
  500. <File Id="ga" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cel\ga" />
  501. </Component>
  502. <Component Id="gd" Guid="F2204BD3-E6FB-4A1B-A3DA-7C199947F884">
  503. <File Id="gd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cel\gd" />
  504. </Component>
  505. </Directory>
  506. <Directory Id="cus" Name="cus">
  507. <Component Id="om" Guid="1DEFB10B-EA36-4E45-935A-67DE0F273C82">
  508. <File Id="om" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cus\om" />
  509. </Component>
  510. </Directory>
  511. <Directory Id="dra" Name="dra">
  512. <Component Id="kn" Guid="DB5CD707-6BD7-4874-A8EB-F6D09A9EC3C6">
  513. <File Id="kn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\kn" />
  514. </Component>
  515. <Component Id="ml" Guid="2E9A0DEE-46B2-4830-9919-CB33D881B712">
  516. <File Id="ml" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\ml" />
  517. </Component>
  518. <Component Id="ta" Guid="BBBBEF2D-AA4F-4EF3-A659-5FEFC27B0DFA">
  519. <File Id="ta" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\ta" />
  520. </Component>
  521. <Component Id="te" Guid="DBD32203-B0B5-456A-B7BA-A45DECB29B06">
  522. <File Id="te" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\te" />
  523. </Component>
  524. </Directory>
  525. <Directory Id="esx" Name="esx">
  526. <Component Id="kl" Guid="013AE1F1-8F25-4029-B901-FEF792C83B39">
  527. <File Id="kl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\esx\kl" />
  528. </Component>
  529. </Directory>
  530. <Directory Id="gmq" Name="gmq">
  531. <Component Id="da" Guid="F2056D5A-95BE-4141-9884-BDECCD20911F">
  532. <File Id="da" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\da" />
  533. </Component>
  534. <Component Id="fo" Guid="0786F902-D75C-4A41-956B-A6D2F25180A2">
  535. <File Id="fo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\fo" />
  536. </Component>
  537. <Component Id="is" Guid="D77DC66C-17BA-425C-A1E4-18D9CAC03284">
  538. <File Id="is" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\is" />
  539. </Component>
  540. <Component Id="nb" Guid="C9D76C5F-E516-4D5E-8781-F5AB32B62266">
  541. <File Id="nb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\nb" />
  542. </Component>
  543. <Component Id="sv" Guid="D62F2BC0-B756-4FF2-80D5-DB08C956F61B">
  544. <File Id="sv" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\sv" />
  545. </Component>
  546. </Directory>
  547. <Directory Id="gmw" Name="gmw">
  548. <Component Id="af" Guid="3437CBE5-6E0F-4C67-A54F-DC622B6E5B80">
  549. <File Id="af" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\af" />
  550. </Component>
  551. <Component Id="de" Guid="C7325DAB-EEA2-4B0D-B0CD-265EAF3451EA">
  552. <File Id="de" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\de" />
  553. </Component>
  554. <Component Id="en" Guid="B5F3096F-AA8B-4738-9F27-A62059075FAC">
  555. <File Id="en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en" />
  556. </Component>
  557. <Component Id="en_029" Guid="93BBA099-F3A1-4FDA-808D-A01D0810D393">
  558. <File Id="en_029" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-029" />
  559. </Component>
  560. <Component Id="en_GB_scotland" Guid="F1721566-ECF7-4DB9-BC55-13562F7AB0EA">
  561. <File Id="en_GB_scotland" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-scotland" />
  562. </Component>
  563. <Component Id="en_GB_x_gbclan" Guid="4CF60966-0F63-410B-AE90-1416FCC0DEDC">
  564. <File Id="en_GB_x_gbclan" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-x-gbclan" />
  565. </Component>
  566. <Component Id="en_GB_x_gbcwmd" Guid="488FBB43-90E4-4980-B401-885FE1CF94E1">
  567. <File Id="en_GB_x_gbcwmd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-x-gbcwmd" />
  568. </Component>
  569. <Component Id="en_GB_x_rp" Guid="110A2283-ED67-4E79-9E4C-619668C47003">
  570. <File Id="en_GB_x_rp" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-x-rp" />
  571. </Component>
  572. <Component Id="en_US" Guid="63BD47E1-007B-444D-8905-83CDA350F128">
  573. <File Id="en_US" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-US" />
  574. </Component>
  575. <Component Id="en_US_nyc" Guid="68EFE72E-57F1-410E-BDD9-BF44D2215E14">
  576. <File Id="en_US_nyc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-US-nyc" />
  577. </Component>
  578. <Component Id="lb" Guid="4DD5E812-3CCB-4578-8FBB-37C44E4C4025">
  579. <File Id="lb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\lb" />
  580. </Component>
  581. <Component Id="nl" Guid="955629E7-5DA1-4EB4-9DC3-E94F6DCB496B">
  582. <File Id="nl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\nl" />
  583. </Component>
  584. </Directory>
  585. <Directory Id="grk" Name="grk">
  586. <Component Id="el" Guid="2CFBEFD8-C391-4B17-9274-F7AACD3F9FE5">
  587. <File Id="el" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\grk\el" />
  588. </Component>
  589. <Component Id="grc" Guid="F6B10EF2-7FE5-40F9-ACA9-54CD3F6BA05E">
  590. <File Id="grc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\grk\grc" />
  591. </Component>
  592. </Directory>
  593. <Directory Id="inc" Name="inc">
  594. <Component Id="as" Guid="B54C6216-A7F7-45D3-BA4A-4E075CCE39C2">
  595. <File Id="as" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\as" />
  596. </Component>
  597. <Component Id="bn" Guid="5513AA32-3D65-4507-936A-7F691384377A">
  598. <File Id="bn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\bn" />
  599. </Component>
  600. <Component Id="bpy" Guid="7E0F05D8-8450-45D0-8286-618C1F0A47BA">
  601. <File Id="bpy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\bpy" />
  602. </Component>
  603. <Component Id="gu" Guid="84B0100C-7335-43C3-842F-3D719B6F56BB">
  604. <File Id="gu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\gu" />
  605. </Component>
  606. <Component Id="hi" Guid="4075519D-69C3-42CE-B4B8-0FC92B64940E">
  607. <File Id="hi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\hi" />
  608. </Component>
  609. <Component Id="kok" Guid="627D0A1E-1B37-4079-89FC-72161F2799F4">
  610. <File Id="kok" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\kok" />
  611. </Component>
  612. <Component Id="mr" Guid="3C69F5F9-5CF0-4854-8180-4BAF2CD41C29">
  613. <File Id="mr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\mr" />
  614. </Component>
  615. <Component Id="ne" Guid="DCD32DD9-92FB-4095-8AAC-332460B9E160">
  616. <File Id="ne" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\ne" />
  617. </Component>
  618. <Component Id="or" Guid="3A276EB0-C831-4053-8EE8-E6B412E3D84F">
  619. <File Id="or" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\or" />
  620. </Component>
  621. <Component Id="pa" Guid="1BB2F249-89F7-4105-AF71-3A2B63ADA9E3">
  622. <File Id="pa" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\pa" />
  623. </Component>
  624. <Component Id="sd" Guid="322BD663-BF22-4878-9C53-4393997994BB">
  625. <File Id="sd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\sd" />
  626. </Component>
  627. <Component Id="si" Guid="D0874B38-EE58-4622-8F38-F8F3341F82F7">
  628. <File Id="si" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\si" />
  629. </Component>
  630. <Component Id="ur" Guid="870A31A7-166D-4955-89CF-CD9F4B34685A">
  631. <File Id="ur" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\ur" />
  632. </Component>
  633. </Directory>
  634. <Directory Id="ine" Name="ine">
  635. <Component Id="hy" Guid="2D8114EA-1C7B-4CF7-98EF-D5CAC50860DE">
  636. <File Id="hy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ine\hy" />
  637. </Component>
  638. <Component Id="hyw" Guid="84E12C8E-6163-4133-B6E1-FA74E13CF4BB">
  639. <File Id="hyw" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ine\hyw" />
  640. </Component>
  641. <Component Id="sq" Guid="53770E4C-20EE-4F2E-A7D5-CD66D8E1DDD3">
  642. <File Id="sq" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ine\sq" />
  643. </Component>
  644. </Directory>
  645. <Directory Id="ira" Name="ira">
  646. <Component Id="fa" Guid="D890839B-B666-48FE-B64A-6E823531AB27">
  647. <File Id="fa" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ira\fa" />
  648. </Component>
  649. <Component Id="fa_Latn" Guid="A0AA1BDE-BD6D-4A9F-8C9E-6594D30EC8FC">
  650. <File Id="fa_Latn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ira\fa-Latn" />
  651. </Component>
  652. <Component Id="ku" Guid="39999CF4-FAC1-473F-93D4-E5D6AEE932BC">
  653. <File Id="ku" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ira\ku" />
  654. </Component>
  655. </Directory>
  656. <Directory Id="iro" Name="iro">
  657. <Component Id="chr" Guid="CCBB2BA0-3B31-47A6-B56B-FC4F14FD1D71">
  658. <File Id="chr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\iro\chr" />
  659. </Component>
  660. </Directory>
  661. <Directory Id="itc" Name="itc">
  662. <Component Id="la" Guid="10FC0F27-EEBA-4CDE-AAE9-87729D359209">
  663. <File Id="la" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\itc\la" />
  664. </Component>
  665. </Directory>
  666. <Directory Id="jpx" Name="jpx">
  667. <Component Id="ja" Guid="7ABA8C52-C0FE-403B-9C12-F13C3E7E0555">
  668. <File Id="ja" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\jpx\ja" />
  669. </Component>
  670. </Directory>
  671. <Directory Id="map" Name="map">
  672. <Component Id="haw" Guid="9628A804-89DF-419F-B046-36A6355FF1DF">
  673. <File Id="haw" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\map\haw" />
  674. </Component>
  675. </Directory>
  676. <Directory Id="myn" Name="myn">
  677. <Component Id="quc" Guid="B4355970-32BD-4439-9D7C-718FF6C7038C">
  678. <File Id="quc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\myn\quc" />
  679. </Component>
  680. </Directory>
  681. <Directory Id="poz" Name="poz">
  682. <Component Id="id" Guid="7A41E12C-504F-47C8-AD77-8F85637947D1">
  683. <File Id="id" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\poz\id" />
  684. </Component>
  685. <Component Id="mi" Guid="203D2628-983E-49A6-B023-B648809E9757">
  686. <File Id="mi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\poz\mi" />
  687. </Component>
  688. <Component Id="ms" Guid="80E22B61-F278-44AB-BD66-5013E6568A26">
  689. <File Id="ms" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\poz\ms" />
  690. </Component>
  691. </Directory>
  692. <Directory Id="roa" Name="roa">
  693. <Component Id="an" Guid="42AC8747-DD2B-4920-A67E-9DBDA5D2EF33">
  694. <File Id="an" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\an" />
  695. </Component>
  696. <Component Id="ca" Guid="8187F172-4B7A-490D-BA86-BE13DA1E6C65">
  697. <File Id="ca" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\ca" />
  698. </Component>
  699. <Component Id="es" Guid="36C1DADC-170F-4611-AFEC-2E544A8C9F96">
  700. <File Id="es" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\es" />
  701. </Component>
  702. <Component Id="es_419" Guid="17C0944D-7ABF-42B5-85EC-CE2EB91C9AB5">
  703. <File Id="es_419" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\es-419" />
  704. </Component>
  705. <Component Id="fr" Guid="F3824207-52D4-4E51-96AE-A8FFD5CAD1E1">
  706. <File Id="fr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\fr" />
  707. </Component>
  708. <Component Id="fr_BE" Guid="85B6B211-2F7A-4106-BDAB-699117FB4B84">
  709. <File Id="fr_BE" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\fr-BE" />
  710. </Component>
  711. <Component Id="fr_CH" Guid="9A1A4DE6-010C-4259-A697-776B75FCDB40">
  712. <File Id="fr_CH" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\fr-CH" />
  713. </Component>
  714. <Component Id="ht" Guid="FCB5A219-4EE2-41AF-AD85-169C530F5CD9">
  715. <File Id="ht" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\ht" />
  716. </Component>
  717. <Component Id="it" Guid="58A5BA0E-31D4-483F-B831-54B369B9B073">
  718. <File Id="it" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\it" />
  719. </Component>
  720. <Component Id="pap" Guid="749E2C04-3EF0-4A57-AF06-93D660828953">
  721. <File Id="pap" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\pap" />
  722. </Component>
  723. <Component Id="pt" Guid="ECF954E0-CDB3-4373-887C-EFF5B7D21C97">
  724. <File Id="pt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\pt" />
  725. </Component>
  726. <Component Id="pt_BR" Guid="3E595176-0A9C-4AB3-8497-F84BC343BADF">
  727. <File Id="pt_BR" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\pt-BR" />
  728. </Component>
  729. <Component Id="ro" Guid="F385AB6D-24E9-4227-B316-2FD91A0EA899">
  730. <File Id="ro" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\ro" />
  731. </Component>
  732. </Directory>
  733. <Directory Id="sai" Name="sai">
  734. <Component Id="gn" Guid="06220892-0A83-4E69-AD2C-B5D3FBE740BF">
  735. <File Id="gn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sai\gn" />
  736. </Component>
  737. </Directory>
  738. <Directory Id="sem" Name="sem">
  739. <Component Id="am" Guid="6DC9AEC3-4C3F-4C46-B10A-765AEDFD95BE">
  740. <File Id="am" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\am" />
  741. </Component>
  742. <Component Id="ar" Guid="B7B2CAC1-7B02-4F3D-BA32-D278439278A1">
  743. <File Id="ar" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\ar" />
  744. </Component>
  745. <Component Id="he" Guid="40CD0730-60BE-4B57-89B7-AFCF1215D717">
  746. <File Id="he" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\he" />
  747. </Component>
  748. <Component Id="mt" Guid="A600B30F-A930-4E33-B390-26D41F220BFE">
  749. <File Id="mt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\mt" />
  750. </Component>
  751. </Directory>
  752. <Directory Id="sit" Name="sit">
  753. <Component Id="cmn" Guid="42CF004D-30ED-442B-A6CD-91A1CED79C27">
  754. <File Id="cmn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\cmn" />
  755. </Component>
  756. <Component Id="cmn_Latn_pinyin" Guid="CE5CEAED-BF64-4E18-8539-8EA94A38C3D7">
  757. <File Id="cmn_Latn_pinyin" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\cmn-Latn-pinyin" />
  758. </Component>
  759. <Component Id="hak" Guid="C0DB2AB9-F39F-4A7F-8189-1DF13C0A3A65">
  760. <File Id="hak" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\hak" />
  761. </Component>
  762. <Component Id="my" Guid="901B4428-EC3A-4A98-8C21-F32529EDA2B3">
  763. <File Id="my" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\my" />
  764. </Component>
  765. <Component Id="yue" Guid="9A2C2F50-29EC-4AD9-B736-4505C4D0700F">
  766. <File Id="yue" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\yue" />
  767. </Component>
  768. <Component Id="yue_Latn_jyutping" Guid="DF022D37-B298-43A4-ACEF-70716A15C3FD">
  769. <File Id="yue_Latn_jyutping" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\yue-Latn-jyutping" />
  770. </Component>
  771. </Directory>
  772. <Directory Id="tai" Name="tai">
  773. <Component Id="shn" Guid="29EDF1C7-5B78-49E2-8763-FA3354CF47D7">
  774. <File Id="shn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\tai\shn" />
  775. </Component>
  776. <Component Id="th" Guid="1BB579C1-8FE0-4482-8819-7C284B70950C">
  777. <File Id="th" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\tai\th" />
  778. </Component>
  779. </Directory>
  780. <Directory Id="trk" Name="trk">
  781. <Component Id="az" Guid="31AAD787-65CE-478B-B289-5D444E78DC53">
  782. <File Id="az" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\az" />
  783. </Component>
  784. <Component Id="ba" Guid="4A74E02A-0A85-4A38-98B4-F54A827CCA6D">
  785. <File Id="ba" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\ba" />
  786. </Component>
  787. <Component Id="cv" Guid="287D1768-4E9F-4AE6-AB86-510510B65FA4">
  788. <File Id="cv" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\cv" />
  789. </Component>
  790. <Component Id="kk" Guid="41F2F76C-B2EB-49D4-B561-0F41CB08A07A">
  791. <File Id="kk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\kk" />
  792. </Component>
  793. <Component Id="ky" Guid="88DE7140-43D1-4BB8-978D-EF1543CC69EB">
  794. <File Id="ky" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\ky" />
  795. </Component>
  796. <Component Id="nog" Guid="940334D7-CD9B-4C7F-B0B1-2B671E0DA030">
  797. <File Id="nog" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\nog" />
  798. </Component>
  799. <Component Id="tk" Guid="949D4ECA-DD14-49CC-8E03-46186ECC566A">
  800. <File Id="tk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\tk" />
  801. </Component>
  802. <Component Id="tr" Guid="1A1BEAC6-2637-42FC-B1FA-786EA70D536F">
  803. <File Id="tr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\tr" />
  804. </Component>
  805. <Component Id="tt" Guid="F4FA3162-C887-41CE-B284-746A3CBBED96">
  806. <File Id="tt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\tt" />
  807. </Component>
  808. <Component Id="ug" Guid="0B2F17E3-A03B-44F5-94AF-BD0A4A728140">
  809. <File Id="ug" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\ug" />
  810. </Component>
  811. <Component Id="uz" Guid="31D32EAA-D712-452C-A894-81A86B95334D">
  812. <File Id="uz" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\uz" />
  813. </Component>
  814. </Directory>
  815. <Directory Id="urj" Name="urj">
  816. <Component Id="et" Guid="0E36F905-5D08-4903-AB2A-9246D7F9F4F7">
  817. <File Id="et" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\et" />
  818. </Component>
  819. <Component Id="fi" Guid="5B3222E3-7A38-4565-9DD5-4DE52CB8FCC2">
  820. <File Id="fi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\fi" />
  821. </Component>
  822. <Component Id="hu" Guid="82E27CF9-D070-429B-82C3-A10170AEAACC">
  823. <File Id="hu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\hu" />
  824. </Component>
  825. <Component Id="smj" Guid="A3404020-693F-4FA7-A56D-3493BDA2D6E5">
  826. <File Id="smj" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\smj" />
  827. </Component>
  828. </Directory>
  829. <Directory Id="zle" Name="zle">
  830. <Component Id="be" Guid="3C273A69-CE1F-4B41-A3B9-ED0D664C8F8C">
  831. <File Id="be" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\be" />
  832. </Component>
  833. <Component Id="ru" Guid="BB9C4BD1-A029-4EF7-83BF-3A1C243E5D67">
  834. <File Id="ru" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\ru" />
  835. </Component>
  836. <Component Id="ru_LV" Guid="BD453DF9-EDA5-4521-B764-CDF25F76622D">
  837. <File Id="ru_LV" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\ru-LV" />
  838. </Component>
  839. <Component Id="uk" Guid="D99380DF-4E22-4EAD-85F7-72EA0DDA6C1E">
  840. <File Id="uk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\uk" />
  841. </Component>
  842. </Directory>
  843. <Directory Id="zls" Name="zls">
  844. <Component Id="bg" Guid="88C38DA6-3839-405F-BC2A-9A78DFE9E778">
  845. <File Id="bg" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\bg" />
  846. </Component>
  847. <Component Id="bs" Guid="E21649A3-2774-454F-A142-37C8F2CC70B8">
  848. <File Id="bs" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\bs" />
  849. </Component>
  850. <Component Id="hr" Guid="9E2D4565-5603-4F3D-9D15-B4D71017CBD5">
  851. <File Id="hr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\hr" />
  852. </Component>
  853. <Component Id="mk" Guid="3643B789-531E-480D-B4F1-FEF070079F56">
  854. <File Id="mk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\mk" />
  855. </Component>
  856. <Component Id="sl" Guid="EC3A1608-985D-4F7C-B2F0-65946A052E6B">
  857. <File Id="sl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\sl" />
  858. </Component>
  859. <Component Id="sr" Guid="7545049D-0B01-4974-8BCC-D8FFA683899B">
  860. <File Id="sr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\sr" />
  861. </Component>
  862. </Directory>
  863. <Directory Id="zlw" Name="zlw">
  864. <Component Id="cs" Guid="ACE8BA77-C1AB-4188-9D95-E47240C2B8B8">
  865. <File Id="cs" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zlw\cs" />
  866. </Component>
  867. <Component Id="pl" Guid="7BAF92A7-A1A5-4E05-8637-E3E21216093F">
  868. <File Id="pl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zlw\pl" />
  869. </Component>
  870. <Component Id="sk" Guid="0F177E56-D5E0-4F06-9EEA-605A63995BB1">
  871. <File Id="sk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zlw\sk" />
  872. </Component>
  873. </Directory>
  874. </Directory>
  875. <Directory Id="voices" Name="voices">
  876. <Directory Id="__v" Name="!v">
  877. <Component Id="adam" Guid="5117D3E3-7541-454B-A0BE-34DAF16C35B7">
  878. <File Id="adam" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\adam" />
  879. </Component>
  880. <Component Id="Alex" Guid="E27BF97C-9175-401D-98C9-5E3CA51881FB">
  881. <File Id="Alex" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Alex" />
  882. </Component>
  883. <Component Id="Alicia" Guid="6C6292EF-C70D-4FD4-A1D7-F93B692162B6">
  884. <File Id="Alicia" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Alicia" />
  885. </Component>
  886. <Component Id="Andrea" Guid="A64B61C5-F7E4-42DF-A9CF-39F4102939AF">
  887. <File Id="Andrea" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Andrea" />
  888. </Component>
  889. <Component Id="Andy" Guid="4D05372A-C142-4359-952B-E0E9B8AFB6D9">
  890. <File Id="Andy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Andy" />
  891. </Component>
  892. <Component Id="anika" Guid="F60C321F-7C67-49A4-AA2C-71CDDEFDC088">
  893. <File Id="anika" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\anika" />
  894. </Component>
  895. <Component Id="anikaRobot" Guid="05271529-1D3F-422E-97AD-A0EE2C09BFBC">
  896. <File Id="anikaRobot" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\anikaRobot" />
  897. </Component>
  898. <Component Id="Annie" Guid="811F44B4-D58D-4280-81B6-D84240DD8E8E">
  899. <File Id="Annie" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Annie" />
  900. </Component>
  901. <Component Id="announcer" Guid="73625D88-F812-4420-B86F-911F438C0F5C">
  902. <File Id="announcer" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\announcer" />
  903. </Component>
  904. <Component Id="antonio" Guid="0A4FD36E-BC9D-43E3-A990-B00ABEA83085">
  905. <File Id="antonio" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\antonio" />
  906. </Component>
  907. <Component Id="AnxiousAndy" Guid="E95EAF0D-0D1E-419B-BF09-9CE377025FAB">
  908. <File Id="AnxiousAndy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\AnxiousAndy" />
  909. </Component>
  910. <Component Id="aunty" Guid="63B29AEC-D7FD-4101-8D34-8B69D3995B13">
  911. <File Id="aunty" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\aunty" />
  912. </Component>
  913. <Component Id="belinda" Guid="CFB83283-041A-4FF5-BC66-11D839B88727">
  914. <File Id="belinda" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\belinda" />
  915. </Component>
  916. <Component Id="benjamin" Guid="D07455E0-1B76-42D8-859A-9E22FF7AFAB4">
  917. <File Id="benjamin" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\benjamin" />
  918. </Component>
  919. <Component Id="boris" Guid="63215C0C-A396-4E5A-8953-56DE6B0039B4">
  920. <File Id="boris" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\boris" />
  921. </Component>
  922. <Component Id="caleb" Guid="57A0C5E2-6085-4664-BE72-48AA1349E7EB">
  923. <File Id="caleb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\caleb" />
  924. </Component>
  925. <Component Id="croak" Guid="5C10754B-E477-4A04-BD68-492395D7D083">
  926. <File Id="croak" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\croak" />
  927. </Component>
  928. <Component Id="david" Guid="DAB51881-C72A-40BF-B156-016D8DE3997F">
  929. <File Id="david" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\david" />
  930. </Component>
  931. <Component Id="Demonic" Guid="145D0A4E-33F4-41B5-8A8A-202CC7C4FB6D">
  932. <File Id="Demonic" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Demonic" />
  933. </Component>
  934. <Component Id="Denis" Guid="FD6BA15B-011F-491E-BDB0-155DE8757287">
  935. <File Id="Denis" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Denis" />
  936. </Component>
  937. <Component Id="Diogo" Guid="D65CFF10-962F-4DDE-839D-17D1F26D089F">
  938. <File Id="Diogo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Diogo" />
  939. </Component>
  940. <Component Id="ed" Guid="D873739E-8F27-493B-9F59-D510E0E6522D">
  941. <File Id="ed" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\ed" />
  942. </Component>
  943. <Component Id="edward" Guid="121C1628-B371-4030-9196-F3D1CBEA88DB">
  944. <File Id="edward" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\edward" />
  945. </Component>
  946. <Component Id="edward2" Guid="B120747C-14BC-4371-9996-D3D1DB6E0F2E">
  947. <File Id="edward2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\edward2" />
  948. </Component>
  949. <Component Id="f1" Guid="945CDA6E-0638-4D9C-810D-8083B4E1BB5B">
  950. <File Id="f1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f1" />
  951. </Component>
  952. <Component Id="f2" Guid="8D19501F-29A8-4626-A49F-D62D6CD5E6EC">
  953. <File Id="f2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f2" />
  954. </Component>
  955. <Component Id="f3" Guid="E9E58435-559F-4C41-BC6F-9EC918004186">
  956. <File Id="f3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f3" />
  957. </Component>
  958. <Component Id="f4" Guid="3593F2AA-A3CC-4A87-BD47-91D62991B4CC">
  959. <File Id="f4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f4" />
  960. </Component>
  961. <Component Id="f5" Guid="8CC49D75-26D2-4158-94F8-99D48AB3C19A">
  962. <File Id="f5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f5" />
  963. </Component>
  964. <Component Id="fast" Guid="F228627B-95D7-452C-A044-47AF35D39F76">
  965. <File Id="fast" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\fast" />
  966. </Component>
  967. <Component Id="Gene" Guid="5EA8D917-58EE-48F6-9738-6B23422C68C6">
  968. <File Id="Gene" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Gene" />
  969. </Component>
  970. <Component Id="Gene2" Guid="C5DA3B74-FD6C-4A1E-B9A6-6A5414A711DF">
  971. <File Id="Gene2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Gene2" />
  972. </Component>
  973. <Component Id="grandma" Guid="AED908DD-8763-4B8B-8A3B-215A1586165E">
  974. <File Id="grandma" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\grandma" />
  975. </Component>
  976. <Component Id="grandpa" Guid="941C5745-D8BD-4F7F-B85A-B994B55DAEDB">
  977. <File Id="grandpa" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\grandpa" />
  978. </Component>
  979. <Component Id="gustave" Guid="353CD66B-AA8E-4E79-BB5C-9094FDBE2C72">
  980. <File Id="gustave" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\gustave" />
  981. </Component>
  982. <Component Id="Henrique" Guid="95362E4A-FFE5-4150-90A9-0191B79F58F2">
  983. <File Id="Henrique" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Henrique" />
  984. </Component>
  985. <Component Id="Hugo" Guid="D444D417-6ECF-4B5B-9C01-2BE2E7254F62">
  986. <File Id="Hugo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Hugo" />
  987. </Component>
  988. <Component Id="iven" Guid="1854A0F1-4F93-4296-8143-B2EE911E4937">
  989. <File Id="iven" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven" />
  990. </Component>
  991. <Component Id="iven2" Guid="9E31DCC3-600E-4047-BB59-08B0B6263A42">
  992. <File Id="iven2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven2" />
  993. </Component>
  994. <Component Id="iven3" Guid="3A349202-F8A1-45AE-9D41-7DAA0AA72E42">
  995. <File Id="iven3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven3" />
  996. </Component>
  997. <Component Id="iven4" Guid="44DA7344-4B71-4988-A543-EF36FB217983">
  998. <File Id="iven4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven4" />
  999. </Component>
  1000. <Component Id="Jacky" Guid="D23756FE-1FC9-4072-81F2-7D56A2BD230B">
  1001. <File Id="Jacky" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Jacky" />
  1002. </Component>
  1003. <Component Id="john" Guid="8971A207-35F8-448B-8C8D-E4625B68474A">
  1004. <File Id="john" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\john" />
  1005. </Component>
  1006. <Component Id="kaukovalta" Guid="4594E94C-8C15-4B5A-85D2-528D87223684">
  1007. <File Id="kaukovalta" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\kaukovalta" />
  1008. </Component>
  1009. <Component Id="klatt" Guid="6CCACDD3-0F8C-44C1-9D6C-DB98FE2BE980">
  1010. <File Id="klatt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt" />
  1011. </Component>
  1012. <Component Id="klatt2" Guid="EB285946-1F50-4387-A3C3-1FFADF911E38">
  1013. <File Id="klatt2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt2" />
  1014. </Component>
  1015. <Component Id="klatt3" Guid="42B718F8-0ECB-4037-84EB-A7F7052CC32F">
  1016. <File Id="klatt3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt3" />
  1017. </Component>
  1018. <Component Id="klatt4" Guid="5495496A-1BDF-42F9-B60A-60D8A1744E8D">
  1019. <File Id="klatt4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt4" />
  1020. </Component>
  1021. <Component Id="klatt5" Guid="94B7B378-1499-4277-A980-F42F727649AB">
  1022. <File Id="klatt5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt5" />
  1023. </Component>
  1024. <Component Id="klatt6" Guid="7735EC32-5764-41FC-85F5-48EB9D412513">
  1025. <File Id="klatt6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt6" />
  1026. </Component>
  1027. <Component Id="Lee" Guid="93D3D5E5-F7F7-45F8-AB0A-24B31DE161BC">
  1028. <File Id="Lee" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Lee" />
  1029. </Component>
  1030. <Component Id="linda" Guid="75FD1A45-F1D3-40D5-8B55-346A3D8D239B">
  1031. <File Id="linda" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\linda" />
  1032. </Component>
  1033. <Component Id="m1" Guid="1A5DED95-A4E0-4252-A09E-508C2AB6888D">
  1034. <File Id="m1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m1" />
  1035. </Component>
  1036. <Component Id="m2" Guid="D70FB6F6-4F5D-481B-BFCC-48961CF85E89">
  1037. <File Id="m2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m2" />
  1038. </Component>
  1039. <Component Id="m3" Guid="92921DA4-A1FF-42AC-B401-6C5E54D00983">
  1040. <File Id="m3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m3" />
  1041. </Component>
  1042. <Component Id="m4" Guid="B00DC3E5-A85D-402C-B257-06C8CDF3FD3E">
  1043. <File Id="m4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m4" />
  1044. </Component>
  1045. <Component Id="m5" Guid="E62668C9-8EBA-425A-A5DE-27124607A0F9">
  1046. <File Id="m5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m5" />
  1047. </Component>
  1048. <Component Id="m6" Guid="93A02349-2546-4ED4-A6EB-24ED1CBD6F4C">
  1049. <File Id="m6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m6" />
  1050. </Component>
  1051. <Component Id="m7" Guid="9EDEF7A1-24DC-4187-85C2-6FE45DF1B397">
  1052. <File Id="m7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m7" />
  1053. </Component>
  1054. <Component Id="m8" Guid="A739017B-99A4-4B38-AB4A-EEE31836B880">
  1055. <File Id="m8" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m8" />
  1056. </Component>
  1057. <Component Id="marcelo" Guid="029416F4-3909-4B8C-822D-7F49586CF4D3">
  1058. <File Id="marcelo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\marcelo" />
  1059. </Component>
  1060. <Component Id="Marco" Guid="445EFC56-1890-41B6-84B8-5D6C2F08235D">
  1061. <File Id="Marco" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Marco" />
  1062. </Component>
  1063. <Component Id="Mario" Guid="91863CB3-67AA-4973-9FF7-C2F62C17C5B8">
  1064. <File Id="Mario" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Mario" />
  1065. </Component>
  1066. <Component Id="max" Guid="F9DFE704-D5D9-4ABF-9E43-994C26320AAF">
  1067. <File Id="max" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\max" />
  1068. </Component>
  1069. <Component Id="Michael" Guid="88A39DCF-316D-416E-B3F4-303194583FA7">
  1070. <File Id="Michael" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Michael" />
  1071. </Component>
  1072. <Component Id="michel" Guid="39B3F4ED-E209-466A-AE48-8C834F48FBE3">
  1073. <File Id="michel" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\michel" />
  1074. </Component>
  1075. <Component Id="miguel" Guid="2D4FE98A-C6F4-4A32-B0B5-E85433F5F48C">
  1076. <File Id="miguel" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\miguel" />
  1077. </Component>
  1078. <Component Id="Mike" Guid="FE454A94-AC63-4123-A80D-2A332D61026A">
  1079. <File Id="Mike" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Mike" />
  1080. </Component>
  1081. <Component Id="Mr_serious" Guid="BD47608A-D514-434C-B8CE-AC4331360F67">
  1082. <File Id="Mr_serious" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Mr serious" />
  1083. </Component>
  1084. <Component Id="Nguyen" Guid="4C80ADC6-9CDE-4639-A1DD-D273291388C8">
  1085. <File Id="Nguyen" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Nguyen" />
  1086. </Component>
  1087. <Component Id="norbert" Guid="69584B5B-9090-4B32-858F-6A560F1E1FA6">
  1088. <File Id="norbert" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\norbert" />
  1089. </Component>
  1090. <Component Id="pablo" Guid="5AE5F60A-5863-40EF-8173-A8971A4EA9E5">
  1091. <File Id="pablo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\pablo" />
  1092. </Component>
  1093. <Component Id="paul" Guid="E6B2D96B-8C63-4161-811E-17910B7C505F">
  1094. <File Id="paul" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\paul" />
  1095. </Component>
  1096. <Component Id="pedro" Guid="D85830B1-38BC-4F81-995A-D94AD39E6D4A">
  1097. <File Id="pedro" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\pedro" />
  1098. </Component>
  1099. <Component Id="quincy" Guid="D4B07758-B80D-47E8-8DE8-E1A0F2372763">
  1100. <File Id="quincy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\quincy" />
  1101. </Component>
  1102. <Component Id="RicishayMax" Guid="BF7363D7-A93C-4941-B86D-A5918B483638">
  1103. <File Id="RicishayMax" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\RicishayMax" />
  1104. </Component>
  1105. <Component Id="RicishayMax2" Guid="5F4C7FD9-5820-4BF1-A495-44FB9B552FD2">
  1106. <File Id="RicishayMax2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\RicishayMax2" />
  1107. </Component>
  1108. <Component Id="RicishayMax3" Guid="DEAA1819-898F-497E-A6BE-9067A475EDCE">
  1109. <File Id="RicishayMax3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\RicishayMax3" />
  1110. </Component>
  1111. <Component Id="rob" Guid="30242C9F-CD34-4DC7-B357-5ABD3A4B62CC">
  1112. <File Id="rob" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\rob" />
  1113. </Component>
  1114. <Component Id="robert" Guid="FE1D472F-6792-4ED4-9737-296AE01D0B44">
  1115. <File Id="robert" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robert" />
  1116. </Component>
  1117. <Component Id="robosoft" Guid="E4D09087-D768-49FB-9BFB-6EB09DB14D29">
  1118. <File Id="robosoft" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft" />
  1119. </Component>
  1120. <Component Id="robosoft2" Guid="551D291F-BA87-4FD6-B438-3CBC8B8FAD76">
  1121. <File Id="robosoft2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft2" />
  1122. </Component>
  1123. <Component Id="robosoft3" Guid="56C309A1-EF3B-4D8E-B816-850044D0FD5E">
  1124. <File Id="robosoft3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft3" />
  1125. </Component>
  1126. <Component Id="robosoft4" Guid="0F3B7EC5-9000-48BF-9872-FF834BFF56E9">
  1127. <File Id="robosoft4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft4" />
  1128. </Component>
  1129. <Component Id="robosoft5" Guid="3C390381-E733-4972-B56D-F3168F55B358">
  1130. <File Id="robosoft5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft5" />
  1131. </Component>
  1132. <Component Id="robosoft6" Guid="52494AEC-75EF-43D2-A3F6-3D2CCE2F1C39">
  1133. <File Id="robosoft6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft6" />
  1134. </Component>
  1135. <Component Id="robosoft7" Guid="EDE82C4A-0EAF-400A-8981-2874A685AC38">
  1136. <File Id="robosoft7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft7" />
  1137. </Component>
  1138. <Component Id="robosoft8" Guid="A8B8DAED-0D81-4133-9D73-F3C3E7D694E5">
  1139. <File Id="robosoft8" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft8" />
  1140. </Component>
  1141. <Component Id="sandro" Guid="0E98498B-3293-40FD-B3DD-9C5AF03D9B19">
  1142. <File Id="sandro" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\sandro" />
  1143. </Component>
  1144. <Component Id="shelby" Guid="AB269E0E-A3D5-4D14-AB02-245A40BED069">
  1145. <File Id="shelby" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\shelby" />
  1146. </Component>
  1147. <Component Id="steph" Guid="6B0170FC-8A73-4150-94A5-0322D5FEFAB9">
  1148. <File Id="steph" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\steph" />
  1149. </Component>
  1150. <Component Id="steph2" Guid="873EF224-032C-4D8D-AF4D-B522AE81FC56">
  1151. <File Id="steph2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\steph2" />
  1152. </Component>
  1153. <Component Id="steph3" Guid="0B7E9E38-A1A6-4414-A5F3-81E290CB1358">
  1154. <File Id="steph3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\steph3" />
  1155. </Component>
  1156. <Component Id="Storm" Guid="E18071B6-DF8B-4A97-969D-05CB050773BC">
  1157. <File Id="Storm" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Storm" />
  1158. </Component>
  1159. <Component Id="travis" Guid="A29DAC8A-92F8-401D-AB43-6CAA5BD22D4A">
  1160. <File Id="travis" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\travis" />
  1161. </Component>
  1162. <Component Id="Tweaky" Guid="3302CA6A-B5FF-49FA-BFB4-5569AE3BEA34">
  1163. <File Id="Tweaky" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Tweaky" />
  1164. </Component>
  1165. <Component Id="UniRobot" Guid="9E8589B5-5FFC-486E-8B4E-B9B121F9E44E">
  1166. <File Id="UniRobot" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\UniRobot" />
  1167. </Component>
  1168. <Component Id="victor" Guid="87F8F826-D383-406A-B4B8-37EA5D9A643E">
  1169. <File Id="victor" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\victor" />
  1170. </Component>
  1171. <Component Id="whisper" Guid="38BAB742-9FA9-4340-B7F8-620408FB2483">
  1172. <File Id="whisper" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\whisper" />
  1173. </Component>
  1174. <Component Id="whisperf" Guid="297BF3BB-9679-4213-B420-698796747E21">
  1175. <File Id="whisperf" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\whisperf" />
  1176. </Component>
  1177. <Component Id="zac" Guid="88E07FB1-A753-4090-AB42-2AFAE287E09C">
  1178. <File Id="zac" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\zac" />
  1179. </Component>
  1180. </Directory>
  1181. <Directory Id="mb" Name="mb">
  1182. <Component Id="mb_af1" Guid="EB86CF9F-2704-464A-B3BB-BB25DD3D1E03">
  1183. <File Id="mb_af1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-af1" />
  1184. </Component>
  1185. <Component Id="mb_af1_en" Guid="D547FE70-376B-437D-AF49-ACD813EB07DE">
  1186. <File Id="mb_af1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-af1-en" />
  1187. </Component>
  1188. <Component Id="mb_ar1" Guid="406FD48E-05BA-44DD-AA0E-1403C7B61C61">
  1189. <File Id="mb_ar1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ar1" />
  1190. </Component>
  1191. <Component Id="mb_ar2" Guid="8D612F42-4E20-48EB-8F85-B28287B2D174">
  1192. <File Id="mb_ar2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ar2" />
  1193. </Component>
  1194. <Component Id="mb_br1" Guid="5AED5E11-B4A5-4CBE-8AA6-1EC7869311FD">
  1195. <File Id="mb_br1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br1" />
  1196. </Component>
  1197. <Component Id="mb_br2" Guid="5B8FA948-9900-4185-9F66-F52C21A53E11">
  1198. <File Id="mb_br2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br2" />
  1199. </Component>
  1200. <Component Id="mb_br3" Guid="9D006A37-D31A-4555-97A6-1225735BFCF1">
  1201. <File Id="mb_br3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br3" />
  1202. </Component>
  1203. <Component Id="mb_br4" Guid="FFA44C2A-E102-4411-B9B2-8834A3F859BC">
  1204. <File Id="mb_br4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br4" />
  1205. </Component>
  1206. <Component Id="mb_ca1" Guid="3800FEBC-5FD6-4379-B4EF-4F5B1A4E624F">
  1207. <File Id="mb_ca1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ca1" />
  1208. </Component>
  1209. <Component Id="mb_ca2" Guid="B89A4307-5C76-4CFD-BFE8-123C8FC7B10F">
  1210. <File Id="mb_ca2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ca2" />
  1211. </Component>
  1212. <Component Id="mb_cn1" Guid="E6AF790B-D09E-445E-B95A-215C7AF4724D">
  1213. <File Id="mb_cn1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cn1" />
  1214. </Component>
  1215. <Component Id="mb_cr1" Guid="CEB21223-5D2D-42C2-95E4-4D193A5EE452">
  1216. <File Id="mb_cr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cr1" />
  1217. </Component>
  1218. <Component Id="mb_cz1" Guid="A107C17E-F57E-468D-A3BD-E90D60B90644">
  1219. <File Id="mb_cz1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cz1" />
  1220. </Component>
  1221. <Component Id="mb_cz2" Guid="39AF2D37-E735-4DA5-BE63-40DA1D90E557">
  1222. <File Id="mb_cz2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cz2" />
  1223. </Component>
  1224. <Component Id="mb_de1" Guid="4A777148-E22D-4934-9296-B49C16794DE3">
  1225. <File Id="mb_de1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de1" />
  1226. </Component>
  1227. <Component Id="mb_de1_en" Guid="D855F148-23FC-4236-9C6F-83CD0EC3694D">
  1228. <File Id="mb_de1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de1-en" />
  1229. </Component>
  1230. <Component Id="mb_de2" Guid="32E8B166-4E8E-484A-89D3-B3BA86AFAA81">
  1231. <File Id="mb_de2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de2" />
  1232. </Component>
  1233. <Component Id="mb_de2_en" Guid="60061818-B80E-4DB7-AE25-60E174DEADF8">
  1234. <File Id="mb_de2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de2-en" />
  1235. </Component>
  1236. <Component Id="mb_de3" Guid="4BD69D28-B565-49CE-AF19-5006BBB2C886">
  1237. <File Id="mb_de3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de3" />
  1238. </Component>
  1239. <Component Id="mb_de3_en" Guid="0661973C-118E-4200-9D23-BC8785468501">
  1240. <File Id="mb_de3_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de3-en" />
  1241. </Component>
  1242. <Component Id="mb_de4" Guid="FBB71B4D-3C4E-41D0-82A4-6D54F4BF74D4">
  1243. <File Id="mb_de4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de4" />
  1244. </Component>
  1245. <Component Id="mb_de4_en" Guid="7076ADF8-7B72-4BC6-B7C9-931209CF4E20">
  1246. <File Id="mb_de4_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de4-en" />
  1247. </Component>
  1248. <Component Id="mb_de5" Guid="EA506D25-2DF5-41A4-9E86-C803E2781884">
  1249. <File Id="mb_de5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de5" />
  1250. </Component>
  1251. <Component Id="mb_de5_en" Guid="BEC8CE07-AC0C-4FCA-A23E-3347D3AD41E1">
  1252. <File Id="mb_de5_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de5-en" />
  1253. </Component>
  1254. <Component Id="mb_de6" Guid="4F3AF058-C07B-49E3-8C43-C2690BD9B0E7">
  1255. <File Id="mb_de6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de6" />
  1256. </Component>
  1257. <Component Id="mb_de6_en" Guid="902BDAFF-EB53-499E-A8A6-8962BC45FBF8">
  1258. <File Id="mb_de6_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de6-en" />
  1259. </Component>
  1260. <Component Id="mb_de6_grc" Guid="4AD8446A-C7CD-4374-B6E3-9AE3DA70795C">
  1261. <File Id="mb_de6_grc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de6-grc" />
  1262. </Component>
  1263. <Component Id="mb_de7" Guid="F7ED78EF-6A88-4E5C-89F4-42EEC417F1F7">
  1264. <File Id="mb_de7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de7" />
  1265. </Component>
  1266. <Component Id="mb_de8" Guid="F8A28E4E-F027-4B0E-9D05-D681AA9D1058">
  1267. <File Id="mb_de8" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de8" />
  1268. </Component>
  1269. <Component Id="mb_ee1" Guid="ABB12AF4-19CA-43BD-A622-8E6474355818">
  1270. <File Id="mb_ee1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ee1" />
  1271. </Component>
  1272. <Component Id="mb_en1" Guid="F1B622B6-BDEF-48D6-99B5-2F5D564ED93E">
  1273. <File Id="mb_en1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-en1" />
  1274. </Component>
  1275. <Component Id="mb_es1" Guid="527A2630-0B84-4B98-AADF-EE64A4B9C762">
  1276. <File Id="mb_es1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es1" />
  1277. </Component>
  1278. <Component Id="mb_es2" Guid="A7ABDB54-3F9D-4B5C-93DF-E4BE6DCD0F7D">
  1279. <File Id="mb_es2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es2" />
  1280. </Component>
  1281. <Component Id="mb_es3" Guid="45915FAB-7C29-475A-AC51-347AB5CBBF0A">
  1282. <File Id="mb_es3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es3" />
  1283. </Component>
  1284. <Component Id="mb_es4" Guid="2D98798A-F199-44D6-883E-92537B662573">
  1285. <File Id="mb_es4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es4" />
  1286. </Component>
  1287. <Component Id="mb_fr1" Guid="075D469E-AA7D-40F4-B0A3-212F5351C19D">
  1288. <File Id="mb_fr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr1" />
  1289. </Component>
  1290. <Component Id="mb_fr1_en" Guid="49C4BD31-0340-484A-ADBF-8E5E70829F22">
  1291. <File Id="mb_fr1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr1-en" />
  1292. </Component>
  1293. <Component Id="mb_fr2" Guid="40DC1AD2-F16C-4E4C-BE95-F2BA2F13B651">
  1294. <File Id="mb_fr2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr2" />
  1295. </Component>
  1296. <Component Id="mb_fr3" Guid="C12DCADB-99A1-4EE0-8D68-46E18A199B9E">
  1297. <File Id="mb_fr3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr3" />
  1298. </Component>
  1299. <Component Id="mb_fr4" Guid="AB6EADDE-6E2C-4930-AF3E-1CAC07158D3F">
  1300. <File Id="mb_fr4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr4" />
  1301. </Component>
  1302. <Component Id="mb_fr4_en" Guid="F8393C3D-7C00-41C8-9E16-2F6D2DC90B5B">
  1303. <File Id="mb_fr4_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr4-en" />
  1304. </Component>
  1305. <Component Id="mb_fr5" Guid="3E32A179-93AE-4746-88B1-AC7B7814A423">
  1306. <File Id="mb_fr5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr5" />
  1307. </Component>
  1308. <Component Id="mb_fr6" Guid="79034F0B-9388-4595-A4D6-E7E9A4656BB2">
  1309. <File Id="mb_fr6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr6" />
  1310. </Component>
  1311. <Component Id="mb_fr7" Guid="482B0716-B315-42B0-8376-E1921B02D36F">
  1312. <File Id="mb_fr7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr7" />
  1313. </Component>
  1314. <Component Id="mb_gr1" Guid="759B5105-3860-4FF5-99A7-DF8D60D25F95">
  1315. <File Id="mb_gr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-gr1" />
  1316. </Component>
  1317. <Component Id="mb_gr2" Guid="DB08AB04-0BAB-43FB-84E2-8AC2A193CA91">
  1318. <File Id="mb_gr2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-gr2" />
  1319. </Component>
  1320. <Component Id="mb_gr2_en" Guid="05CEB19D-04C5-4429-AA74-F664EE95C7D1">
  1321. <File Id="mb_gr2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-gr2-en" />
  1322. </Component>
  1323. <Component Id="mb_hb1" Guid="9935789E-E1FC-43EB-82A6-85B489786E6B">
  1324. <File Id="mb_hb1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hb1" />
  1325. </Component>
  1326. <Component Id="mb_hb2" Guid="31E7B8D5-0EA6-473B-8B40-E323B2A0E2C8">
  1327. <File Id="mb_hb2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hb2" />
  1328. </Component>
  1329. <Component Id="mb_hu1" Guid="E54FCC43-8AF9-4B3C-97A7-A70CE7EFFF89">
  1330. <File Id="mb_hu1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hu1" />
  1331. </Component>
  1332. <Component Id="mb_hu1_en" Guid="D50F3196-CEF8-4ACB-BFD7-B0A7C1E0D029">
  1333. <File Id="mb_hu1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hu1-en" />
  1334. </Component>
  1335. <Component Id="mb_ic1" Guid="A649ECCB-7B16-46D5-BC0E-5709E6478ADC">
  1336. <File Id="mb_ic1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ic1" />
  1337. </Component>
  1338. <Component Id="mb_id1" Guid="3208F547-DEA9-4BFB-8885-6DDA8D5F6180">
  1339. <File Id="mb_id1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-id1" />
  1340. </Component>
  1341. <Component Id="mb_in1" Guid="D352FEE6-6E0B-4B4C-86C8-D2B51C2A7E19">
  1342. <File Id="mb_in1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-in1" />
  1343. </Component>
  1344. <Component Id="mb_in2" Guid="E0E162CA-205B-4CD7-8C8E-62B1C4442B1F">
  1345. <File Id="mb_in2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-in2" />
  1346. </Component>
  1347. <Component Id="mb_ir1" Guid="69AEB691-952F-4FA0-87F6-D3DCE64C27F9">
  1348. <File Id="mb_ir1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ir1" />
  1349. </Component>
  1350. <Component Id="mb_it1" Guid="4C559E7F-4140-4275-8C4A-51FF0E134A5A">
  1351. <File Id="mb_it1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it1" />
  1352. </Component>
  1353. <Component Id="mb_it2" Guid="65093A79-1664-49C4-BF4B-698FEFEA891E">
  1354. <File Id="mb_it2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it2" />
  1355. </Component>
  1356. <Component Id="mb_it3" Guid="BC95C260-687E-4A75-9D4C-A0B303AEFA1A">
  1357. <File Id="mb_it3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it3" />
  1358. </Component>
  1359. <Component Id="mb_it4" Guid="327956B4-501E-4EBB-B536-1AF4F58BD481">
  1360. <File Id="mb_it4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it4" />
  1361. </Component>
  1362. <Component Id="mb_jp1" Guid="2A330CD8-278B-4BDC-ACE5-9330E9A043E6">
  1363. <File Id="mb_jp1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-jp1" />
  1364. </Component>
  1365. <Component Id="mb_jp2" Guid="A48DF35E-3FCE-4077-B296-F2DD9A0FDD07">
  1366. <File Id="mb_jp2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-jp2" />
  1367. </Component>
  1368. <Component Id="mb_jp3" Guid="F61D2209-2008-4F17-8AD0-713F25600F63">
  1369. <File Id="mb_jp3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-jp3" />
  1370. </Component>
  1371. <Component Id="mb_la1" Guid="326AEF29-06A2-4EFE-AA1D-1ACBBCE185D2">
  1372. <File Id="mb_la1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-la1" />
  1373. </Component>
  1374. <Component Id="mb_lt1" Guid="19835690-A08D-4C00-8644-E1D996EB3093">
  1375. <File Id="mb_lt1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-lt1" />
  1376. </Component>
  1377. <Component Id="mb_lt2" Guid="82C66C2E-620A-4D55-B87A-3A1C0E12C1E2">
  1378. <File Id="mb_lt2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-lt2" />
  1379. </Component>
  1380. <Component Id="mb_ma1" Guid="D70A7558-D24B-4ECF-8240-B131BC5CD6E9">
  1381. <File Id="mb_ma1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ma1" />
  1382. </Component>
  1383. <Component Id="mb_mx1" Guid="5A2ACADB-0684-49FB-9F6F-281A0A7C1223">
  1384. <File Id="mb_mx1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-mx1" />
  1385. </Component>
  1386. <Component Id="mb_mx2" Guid="2A46ABBE-8B1A-4371-9EE6-3731A268440D">
  1387. <File Id="mb_mx2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-mx2" />
  1388. </Component>
  1389. <Component Id="mb_nl1" Guid="4476F97D-1A41-44F4-8AC6-BAD83C42A3B1">
  1390. <File Id="mb_nl1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl1" />
  1391. </Component>
  1392. <Component Id="mb_nl2" Guid="F382E3C1-AEE6-4269-A4BA-D7816EDC3ED3">
  1393. <File Id="mb_nl2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl2" />
  1394. </Component>
  1395. <Component Id="mb_nl2_en" Guid="EB4F48B1-379C-4DC1-9024-99512A55E1E4">
  1396. <File Id="mb_nl2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl2-en" />
  1397. </Component>
  1398. <Component Id="mb_nl3" Guid="059C8462-8D2E-437B-A174-D41B708E590E">
  1399. <File Id="mb_nl3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl3" />
  1400. </Component>
  1401. <Component Id="mb_nz1" Guid="E3C43402-45E9-4DDD-845D-A3E247DF97A8">
  1402. <File Id="mb_nz1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nz1" />
  1403. </Component>
  1404. <Component Id="mb_pl1" Guid="66A935A4-B295-492F-A7A1-6764731B8DAF">
  1405. <File Id="mb_pl1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-pl1" />
  1406. </Component>
  1407. <Component Id="mb_pl1_en" Guid="A175AB43-133D-4719-BA7E-098717BA6DF0">
  1408. <File Id="mb_pl1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-pl1-en" />
  1409. </Component>
  1410. <Component Id="mb_pt1" Guid="34C67C15-7AFE-40D9-BAB9-A43DE6B8EEE1">
  1411. <File Id="mb_pt1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-pt1" />
  1412. </Component>
  1413. <Component Id="mb_ro1" Guid="1DA58F89-2D7A-47EA-83D4-C9722506D6A1">
  1414. <File Id="mb_ro1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ro1" />
  1415. </Component>
  1416. <Component Id="mb_ro1_en" Guid="7AAD11A5-23FC-427E-B2B2-607BA1380B1C">
  1417. <File Id="mb_ro1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ro1-en" />
  1418. </Component>
  1419. <Component Id="mb_sw1" Guid="D50D8390-E5A6-487E-804A-15E4C2F30DE2">
  1420. <File Id="mb_sw1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw1" />
  1421. </Component>
  1422. <Component Id="mb_sw1_en" Guid="9414F31A-587C-44C8-969B-D58BB9EB03AE">
  1423. <File Id="mb_sw1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw1-en" />
  1424. </Component>
  1425. <Component Id="mb_sw2" Guid="6818448A-0D49-4EFF-BB40-181D984D72A2">
  1426. <File Id="mb_sw2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw2" />
  1427. </Component>
  1428. <Component Id="mb_sw2_en" Guid="D2B9D09F-7BD7-4BEE-9C53-318C61D9D07E">
  1429. <File Id="mb_sw2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw2-en" />
  1430. </Component>
  1431. <Component Id="mb_tl1" Guid="E092E627-0959-4D12-B727-CC721811A2DB">
  1432. <File Id="mb_tl1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-tl1" />
  1433. </Component>
  1434. <Component Id="mb_tr1" Guid="1F82E2E4-1263-4400-9183-5C000BE2E40A">
  1435. <File Id="mb_tr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-tr1" />
  1436. </Component>
  1437. <Component Id="mb_tr2" Guid="4F6D54B2-BD66-4480-9CFD-31CB52165CF6">
  1438. <File Id="mb_tr2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-tr2" />
  1439. </Component>
  1440. <Component Id="mb_us1" Guid="F3732A9A-A3F2-44DD-827D-164B79890017">
  1441. <File Id="mb_us1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-us1" />
  1442. </Component>
  1443. <Component Id="mb_us2" Guid="307BBE40-4A01-4F8D-81EE-6C5F218E7386">
  1444. <File Id="mb_us2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-us2" />
  1445. </Component>
  1446. <Component Id="mb_us3" Guid="E4A5B861-A56D-4C4C-9BA4-F6D4C987001F">
  1447. <File Id="mb_us3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-us3" />
  1448. </Component>
  1449. <Component Id="mb_vz1" Guid="64E3D67F-A74B-4DA3-A30B-BC7F01490ED8">
  1450. <File Id="mb_vz1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-vz1" />
  1451. </Component>
  1452. </Directory>
  1453. </Directory>
  1454. </Directory>
  1455. </Directory>
  1456. </Directory>
  1457. </Directory>
  1458. </Fragment>
  1459. <Fragment>
  1460. <ComponentGroup Id="CoreComponents">
  1461. <ComponentRef Id="espeak_ng_EXE"/>
  1462. <ComponentRef Id="libespeak_ng_DLL"/>
  1463. <ComponentRef Id="AddToEnv"/>
  1464. </ComponentGroup>
  1465. <ComponentGroup Id="Data">
  1466. <ComponentRef Id="af_dict" />
  1467. <ComponentRef Id="am_dict" />
  1468. <ComponentRef Id="an_dict" />
  1469. <ComponentRef Id="ar_dict" />
  1470. <ComponentRef Id="as_dict" />
  1471. <ComponentRef Id="az_dict" />
  1472. <ComponentRef Id="ba_dict" />
  1473. <ComponentRef Id="be_dict" />
  1474. <ComponentRef Id="bg_dict" />
  1475. <ComponentRef Id="bn_dict" />
  1476. <ComponentRef Id="bpy_dict" />
  1477. <ComponentRef Id="bs_dict" />
  1478. <ComponentRef Id="ca_dict" />
  1479. <ComponentRef Id="chr_dict" />
  1480. <ComponentRef Id="cmn_dict" />
  1481. <ComponentRef Id="cs_dict" />
  1482. <ComponentRef Id="cv_dict" />
  1483. <ComponentRef Id="cy_dict" />
  1484. <ComponentRef Id="da_dict" />
  1485. <ComponentRef Id="de_dict" />
  1486. <ComponentRef Id="el_dict" />
  1487. <ComponentRef Id="en_dict" />
  1488. <ComponentRef Id="eo_dict" />
  1489. <ComponentRef Id="es_dict" />
  1490. <ComponentRef Id="et_dict" />
  1491. <ComponentRef Id="eu_dict" />
  1492. <ComponentRef Id="fa_dict" />
  1493. <ComponentRef Id="fi_dict" />
  1494. <ComponentRef Id="fo_dict" />
  1495. <ComponentRef Id="fr_dict" />
  1496. <ComponentRef Id="ga_dict" />
  1497. <ComponentRef Id="gd_dict" />
  1498. <ComponentRef Id="gn_dict" />
  1499. <ComponentRef Id="grc_dict" />
  1500. <ComponentRef Id="gu_dict" />
  1501. <ComponentRef Id="hak_dict" />
  1502. <ComponentRef Id="haw_dict" />
  1503. <ComponentRef Id="he_dict" />
  1504. <ComponentRef Id="hi_dict" />
  1505. <ComponentRef Id="hr_dict" />
  1506. <ComponentRef Id="ht_dict" />
  1507. <ComponentRef Id="hu_dict" />
  1508. <ComponentRef Id="hy_dict" />
  1509. <ComponentRef Id="ia_dict" />
  1510. <ComponentRef Id="id_dict" />
  1511. <ComponentRef Id="intonations" />
  1512. <ComponentRef Id="io_dict" />
  1513. <ComponentRef Id="is_dict" />
  1514. <ComponentRef Id="it_dict" />
  1515. <ComponentRef Id="ja_dict" />
  1516. <ComponentRef Id="jbo_dict" />
  1517. <ComponentRef Id="ka_dict" />
  1518. <ComponentRef Id="kk_dict" />
  1519. <ComponentRef Id="kl_dict" />
  1520. <ComponentRef Id="kn_dict" />
  1521. <ComponentRef Id="kok_dict" />
  1522. <ComponentRef Id="ko_dict" />
  1523. <ComponentRef Id="ku_dict" />
  1524. <ComponentRef Id="ky_dict" />
  1525. <ComponentRef Id="la_dict" />
  1526. <ComponentRef Id="lb_dict" />
  1527. <ComponentRef Id="lfn_dict" />
  1528. <ComponentRef Id="lt_dict" />
  1529. <ComponentRef Id="lv_dict" />
  1530. <ComponentRef Id="mi_dict" />
  1531. <ComponentRef Id="mk_dict" />
  1532. <ComponentRef Id="ml_dict" />
  1533. <ComponentRef Id="mr_dict" />
  1534. <ComponentRef Id="ms_dict" />
  1535. <ComponentRef Id="mt_dict" />
  1536. <ComponentRef Id="my_dict" />
  1537. <ComponentRef Id="nci_dict" />
  1538. <ComponentRef Id="ne_dict" />
  1539. <ComponentRef Id="nl_dict" />
  1540. <ComponentRef Id="nog_dict" />
  1541. <ComponentRef Id="no_dict" />
  1542. <ComponentRef Id="om_dict" />
  1543. <ComponentRef Id="or_dict" />
  1544. <ComponentRef Id="pap_dict" />
  1545. <ComponentRef Id="pa_dict" />
  1546. <ComponentRef Id="phondata" />
  1547. <ComponentRef Id="phondata_manifest" />
  1548. <ComponentRef Id="phonindex" />
  1549. <ComponentRef Id="phontab" />
  1550. <ComponentRef Id="piqd_dict" />
  1551. <ComponentRef Id="pl_dict" />
  1552. <ComponentRef Id="pt_dict" />
  1553. <ComponentRef Id="py_dict" />
  1554. <ComponentRef Id="qdb_dict" />
  1555. <ComponentRef Id="quc_dict" />
  1556. <ComponentRef Id="qu_dict" />
  1557. <ComponentRef Id="qya_dict" />
  1558. <ComponentRef Id="ro_dict" />
  1559. <ComponentRef Id="ru_dict" />
  1560. <ComponentRef Id="sd_dict" />
  1561. <ComponentRef Id="shn_dict" />
  1562. <ComponentRef Id="si_dict" />
  1563. <ComponentRef Id="sjn_dict" />
  1564. <ComponentRef Id="sk_dict" />
  1565. <ComponentRef Id="sl_dict" />
  1566. <ComponentRef Id="smj_dict" />
  1567. <ComponentRef Id="sq_dict" />
  1568. <ComponentRef Id="sr_dict" />
  1569. <ComponentRef Id="sv_dict" />
  1570. <ComponentRef Id="sw_dict" />
  1571. <ComponentRef Id="ta_dict" />
  1572. <ComponentRef Id="te_dict" />
  1573. <ComponentRef Id="th_dict" />
  1574. <ComponentRef Id="tk_dict" />
  1575. <ComponentRef Id="tn_dict" />
  1576. <ComponentRef Id="tr_dict" />
  1577. <ComponentRef Id="tt_dict" />
  1578. <ComponentRef Id="ug_dict" />
  1579. <ComponentRef Id="uk_dict" />
  1580. <ComponentRef Id="ur_dict" />
  1581. <ComponentRef Id="uz_dict" />
  1582. <ComponentRef Id="vi_dict" />
  1583. <ComponentRef Id="yue_dict" />
  1584. <ComponentRef Id="eu" />
  1585. <ComponentRef Id="ko" />
  1586. <ComponentRef Id="qu" />
  1587. <ComponentRef Id="vi" />
  1588. <ComponentRef Id="vi_VN_x_central" />
  1589. <ComponentRef Id="vi_VN_x_south" />
  1590. <ComponentRef Id="eo" />
  1591. <ComponentRef Id="ia" />
  1592. <ComponentRef Id="io" />
  1593. <ComponentRef Id="jbo" />
  1594. <ComponentRef Id="lfn" />
  1595. <ComponentRef Id="piqd" />
  1596. <ComponentRef Id="py" />
  1597. <ComponentRef Id="qdb" />
  1598. <ComponentRef Id="qya" />
  1599. <ComponentRef Id="sjn" />
  1600. <ComponentRef Id="nci" />
  1601. <ComponentRef Id="lt" />
  1602. <ComponentRef Id="ltg" />
  1603. <ComponentRef Id="lv" />
  1604. <ComponentRef Id="sw" />
  1605. <ComponentRef Id="tn" />
  1606. <ComponentRef Id="ka" />
  1607. <ComponentRef Id="cy" />
  1608. <ComponentRef Id="ga" />
  1609. <ComponentRef Id="gd" />
  1610. <ComponentRef Id="om" />
  1611. <ComponentRef Id="kn" />
  1612. <ComponentRef Id="ml" />
  1613. <ComponentRef Id="ta" />
  1614. <ComponentRef Id="te" />
  1615. <ComponentRef Id="kl" />
  1616. <ComponentRef Id="da" />
  1617. <ComponentRef Id="is" />
  1618. <ComponentRef Id="nb" />
  1619. <ComponentRef Id="sv" />
  1620. <ComponentRef Id="af" />
  1621. <ComponentRef Id="de" />
  1622. <ComponentRef Id="en" />
  1623. <ComponentRef Id="en_029" />
  1624. <ComponentRef Id="en_GB_scotland" />
  1625. <ComponentRef Id="en_GB_x_gbclan" />
  1626. <ComponentRef Id="en_GB_x_gbcwmd" />
  1627. <ComponentRef Id="en_GB_x_rp" />
  1628. <ComponentRef Id="en_US" />
  1629. <ComponentRef Id="en_US_nyc" />
  1630. <ComponentRef Id="lb" />
  1631. <ComponentRef Id="nl" />
  1632. <ComponentRef Id="el" />
  1633. <ComponentRef Id="grc" />
  1634. <ComponentRef Id="as" />
  1635. <ComponentRef Id="bn" />
  1636. <ComponentRef Id="bpy" />
  1637. <ComponentRef Id="gu" />
  1638. <ComponentRef Id="hi" />
  1639. <ComponentRef Id="kok" />
  1640. <ComponentRef Id="mr" />
  1641. <ComponentRef Id="ne" />
  1642. <ComponentRef Id="or" />
  1643. <ComponentRef Id="pa" />
  1644. <ComponentRef Id="sd" />
  1645. <ComponentRef Id="si" />
  1646. <ComponentRef Id="ur" />
  1647. <ComponentRef Id="hy" />
  1648. <ComponentRef Id="hyw" />
  1649. <ComponentRef Id="sq" />
  1650. <ComponentRef Id="fa" />
  1651. <ComponentRef Id="fa_Latn" />
  1652. <ComponentRef Id="ku" />
  1653. <ComponentRef Id="chr" />
  1654. <ComponentRef Id="la" />
  1655. <ComponentRef Id="ja" />
  1656. <ComponentRef Id="haw" />
  1657. <ComponentRef Id="quc" />
  1658. <ComponentRef Id="id" />
  1659. <ComponentRef Id="mi" />
  1660. <ComponentRef Id="ms" />
  1661. <ComponentRef Id="an" />
  1662. <ComponentRef Id="ca" />
  1663. <ComponentRef Id="es" />
  1664. <ComponentRef Id="es_419" />
  1665. <ComponentRef Id="fr" />
  1666. <ComponentRef Id="fr_BE" />
  1667. <ComponentRef Id="fr_CH" />
  1668. <ComponentRef Id="ht" />
  1669. <ComponentRef Id="it" />
  1670. <ComponentRef Id="pap" />
  1671. <ComponentRef Id="pt" />
  1672. <ComponentRef Id="pt_BR" />
  1673. <ComponentRef Id="ro" />
  1674. <ComponentRef Id="gn" />
  1675. <ComponentRef Id="am" />
  1676. <ComponentRef Id="ar" />
  1677. <ComponentRef Id="he" />
  1678. <ComponentRef Id="mt" />
  1679. <ComponentRef Id="cmn" />
  1680. <ComponentRef Id="cmn_Latn_pinyin" />
  1681. <ComponentRef Id="hak" />
  1682. <ComponentRef Id="my" />
  1683. <ComponentRef Id="yue" />
  1684. <ComponentRef Id="yue_Latn_jyutping" />
  1685. <ComponentRef Id="shn" />
  1686. <ComponentRef Id="th" />
  1687. <ComponentRef Id="az" />
  1688. <ComponentRef Id="ba" />
  1689. <ComponentRef Id="cv" />
  1690. <ComponentRef Id="kk" />
  1691. <ComponentRef Id="ky" />
  1692. <ComponentRef Id="nog" />
  1693. <ComponentRef Id="tk" />
  1694. <ComponentRef Id="tr" />
  1695. <ComponentRef Id="tt" />
  1696. <ComponentRef Id="ug" />
  1697. <ComponentRef Id="uz" />
  1698. <ComponentRef Id="et" />
  1699. <ComponentRef Id="fi" />
  1700. <ComponentRef Id="fo" />
  1701. <ComponentRef Id="hu" />
  1702. <ComponentRef Id="smj" />
  1703. <ComponentRef Id="be" />
  1704. <ComponentRef Id="ru" />
  1705. <ComponentRef Id="ru_LV" />
  1706. <ComponentRef Id="uk" />
  1707. <ComponentRef Id="bg" />
  1708. <ComponentRef Id="bs" />
  1709. <ComponentRef Id="hr" />
  1710. <ComponentRef Id="mk" />
  1711. <ComponentRef Id="sl" />
  1712. <ComponentRef Id="sr" />
  1713. <ComponentRef Id="cs" />
  1714. <ComponentRef Id="pl" />
  1715. <ComponentRef Id="sk" />
  1716. <ComponentRef Id="adam" />
  1717. <ComponentRef Id="Alex" />
  1718. <ComponentRef Id="Alicia" />
  1719. <ComponentRef Id="Andrea" />
  1720. <ComponentRef Id="Andy" />
  1721. <ComponentRef Id="anika" />
  1722. <ComponentRef Id="anikaRobot" />
  1723. <ComponentRef Id="Annie" />
  1724. <ComponentRef Id="announcer" />
  1725. <ComponentRef Id="antonio" />
  1726. <ComponentRef Id="AnxiousAndy" />
  1727. <ComponentRef Id="aunty" />
  1728. <ComponentRef Id="belinda" />
  1729. <ComponentRef Id="benjamin" />
  1730. <ComponentRef Id="boris" />
  1731. <ComponentRef Id="caleb" />
  1732. <ComponentRef Id="croak" />
  1733. <ComponentRef Id="david" />
  1734. <ComponentRef Id="Demonic" />
  1735. <ComponentRef Id="Denis" />
  1736. <ComponentRef Id="Diogo" />
  1737. <ComponentRef Id="ed" />
  1738. <ComponentRef Id="edward" />
  1739. <ComponentRef Id="edward2" />
  1740. <ComponentRef Id="f1" />
  1741. <ComponentRef Id="f2" />
  1742. <ComponentRef Id="f3" />
  1743. <ComponentRef Id="f4" />
  1744. <ComponentRef Id="f5" />
  1745. <ComponentRef Id="fast" />
  1746. <ComponentRef Id="Gene" />
  1747. <ComponentRef Id="Gene2" />
  1748. <ComponentRef Id="grandma" />
  1749. <ComponentRef Id="grandpa" />
  1750. <ComponentRef Id="gustave" />
  1751. <ComponentRef Id="Henrique" />
  1752. <ComponentRef Id="Hugo" />
  1753. <ComponentRef Id="iven" />
  1754. <ComponentRef Id="iven2" />
  1755. <ComponentRef Id="iven3" />
  1756. <ComponentRef Id="iven4" />
  1757. <ComponentRef Id="Jacky" />
  1758. <ComponentRef Id="john" />
  1759. <ComponentRef Id="kaukovalta" />
  1760. <ComponentRef Id="klatt" />
  1761. <ComponentRef Id="klatt2" />
  1762. <ComponentRef Id="klatt3" />
  1763. <ComponentRef Id="klatt4" />
  1764. <ComponentRef Id="klatt5" />
  1765. <ComponentRef Id="klatt6" />
  1766. <ComponentRef Id="Lee" />
  1767. <ComponentRef Id="linda" />
  1768. <ComponentRef Id="m1" />
  1769. <ComponentRef Id="m2" />
  1770. <ComponentRef Id="m3" />
  1771. <ComponentRef Id="m4" />
  1772. <ComponentRef Id="m5" />
  1773. <ComponentRef Id="m6" />
  1774. <ComponentRef Id="m7" />
  1775. <ComponentRef Id="m8" />
  1776. <ComponentRef Id="marcelo" />
  1777. <ComponentRef Id="Marco" />
  1778. <ComponentRef Id="Mario" />
  1779. <ComponentRef Id="max" />
  1780. <ComponentRef Id="Michael" />
  1781. <ComponentRef Id="michel" />
  1782. <ComponentRef Id="miguel" />
  1783. <ComponentRef Id="Mike" />
  1784. <ComponentRef Id="Mr_serious" />
  1785. <ComponentRef Id="Nguyen" />
  1786. <ComponentRef Id="norbert" />
  1787. <ComponentRef Id="pablo" />
  1788. <ComponentRef Id="paul" />
  1789. <ComponentRef Id="pedro" />
  1790. <ComponentRef Id="quincy" />
  1791. <ComponentRef Id="RicishayMax" />
  1792. <ComponentRef Id="RicishayMax2" />
  1793. <ComponentRef Id="RicishayMax3" />
  1794. <ComponentRef Id="rob" />
  1795. <ComponentRef Id="robert" />
  1796. <ComponentRef Id="robosoft" />
  1797. <ComponentRef Id="robosoft2" />
  1798. <ComponentRef Id="robosoft3" />
  1799. <ComponentRef Id="robosoft4" />
  1800. <ComponentRef Id="robosoft5" />
  1801. <ComponentRef Id="robosoft6" />
  1802. <ComponentRef Id="robosoft7" />
  1803. <ComponentRef Id="robosoft8" />
  1804. <ComponentRef Id="sandro" />
  1805. <ComponentRef Id="shelby" />
  1806. <ComponentRef Id="steph" />
  1807. <ComponentRef Id="steph2" />
  1808. <ComponentRef Id="steph3" />
  1809. <ComponentRef Id="Storm" />
  1810. <ComponentRef Id="travis" />
  1811. <ComponentRef Id="Tweaky" />
  1812. <ComponentRef Id="UniRobot" />
  1813. <ComponentRef Id="victor" />
  1814. <ComponentRef Id="whisper" />
  1815. <ComponentRef Id="whisperf" />
  1816. <ComponentRef Id="zac" />
  1817. <ComponentRef Id="mb_af1" />
  1818. <ComponentRef Id="mb_af1_en" />
  1819. <ComponentRef Id="mb_ar1" />
  1820. <ComponentRef Id="mb_ar2" />
  1821. <ComponentRef Id="mb_br1" />
  1822. <ComponentRef Id="mb_br2" />
  1823. <ComponentRef Id="mb_br3" />
  1824. <ComponentRef Id="mb_br4" />
  1825. <ComponentRef Id="mb_ca1" />
  1826. <ComponentRef Id="mb_ca2" />
  1827. <ComponentRef Id="mb_cn1" />
  1828. <ComponentRef Id="mb_cr1" />
  1829. <ComponentRef Id="mb_cz1" />
  1830. <ComponentRef Id="mb_cz2" />
  1831. <ComponentRef Id="mb_de1" />
  1832. <ComponentRef Id="mb_de1_en" />
  1833. <ComponentRef Id="mb_de2" />
  1834. <ComponentRef Id="mb_de2_en" />
  1835. <ComponentRef Id="mb_de3" />
  1836. <ComponentRef Id="mb_de3_en" />
  1837. <ComponentRef Id="mb_de4" />
  1838. <ComponentRef Id="mb_de4_en" />
  1839. <ComponentRef Id="mb_de5" />
  1840. <ComponentRef Id="mb_de5_en" />
  1841. <ComponentRef Id="mb_de6" />
  1842. <ComponentRef Id="mb_de6_en" />
  1843. <ComponentRef Id="mb_de6_grc" />
  1844. <ComponentRef Id="mb_de7" />
  1845. <ComponentRef Id="mb_de8" />
  1846. <ComponentRef Id="mb_ee1" />
  1847. <ComponentRef Id="mb_en1" />
  1848. <ComponentRef Id="mb_es1" />
  1849. <ComponentRef Id="mb_es2" />
  1850. <ComponentRef Id="mb_es3" />
  1851. <ComponentRef Id="mb_es4" />
  1852. <ComponentRef Id="mb_fr1" />
  1853. <ComponentRef Id="mb_fr1_en" />
  1854. <ComponentRef Id="mb_fr2" />
  1855. <ComponentRef Id="mb_fr3" />
  1856. <ComponentRef Id="mb_fr4" />
  1857. <ComponentRef Id="mb_fr4_en" />
  1858. <ComponentRef Id="mb_fr5" />
  1859. <ComponentRef Id="mb_fr6" />
  1860. <ComponentRef Id="mb_fr7" />
  1861. <ComponentRef Id="mb_gr1" />
  1862. <ComponentRef Id="mb_gr2" />
  1863. <ComponentRef Id="mb_gr2_en" />
  1864. <ComponentRef Id="mb_hb1" />
  1865. <ComponentRef Id="mb_hb2" />
  1866. <ComponentRef Id="mb_hu1" />
  1867. <ComponentRef Id="mb_hu1_en" />
  1868. <ComponentRef Id="mb_ic1" />
  1869. <ComponentRef Id="mb_id1" />
  1870. <ComponentRef Id="mb_in1" />
  1871. <ComponentRef Id="mb_in2" />
  1872. <ComponentRef Id="mb_ir1" />
  1873. <ComponentRef Id="mb_it1" />
  1874. <ComponentRef Id="mb_it2" />
  1875. <ComponentRef Id="mb_it3" />
  1876. <ComponentRef Id="mb_it4" />
  1877. <ComponentRef Id="mb_jp1" />
  1878. <ComponentRef Id="mb_jp2" />
  1879. <ComponentRef Id="mb_jp3" />
  1880. <ComponentRef Id="mb_la1" />
  1881. <ComponentRef Id="mb_lt1" />
  1882. <ComponentRef Id="mb_lt2" />
  1883. <ComponentRef Id="mb_ma1" />
  1884. <ComponentRef Id="mb_mx1" />
  1885. <ComponentRef Id="mb_mx2" />
  1886. <ComponentRef Id="mb_nl1" />
  1887. <ComponentRef Id="mb_nl2" />
  1888. <ComponentRef Id="mb_nl2_en" />
  1889. <ComponentRef Id="mb_nl3" />
  1890. <ComponentRef Id="mb_nz1" />
  1891. <ComponentRef Id="mb_pl1" />
  1892. <ComponentRef Id="mb_pl1_en" />
  1893. <ComponentRef Id="mb_pt1" />
  1894. <ComponentRef Id="mb_ro1" />
  1895. <ComponentRef Id="mb_ro1_en" />
  1896. <ComponentRef Id="mb_sw1" />
  1897. <ComponentRef Id="mb_sw1_en" />
  1898. <ComponentRef Id="mb_sw2" />
  1899. <ComponentRef Id="mb_sw2_en" />
  1900. <ComponentRef Id="mb_tl1" />
  1901. <ComponentRef Id="mb_tr1" />
  1902. <ComponentRef Id="mb_tr2" />
  1903. <ComponentRef Id="mb_us1" />
  1904. <ComponentRef Id="mb_us2" />
  1905. <ComponentRef Id="mb_us3" />
  1906. <ComponentRef Id="mb_vz1" />
  1907. </ComponentGroup>
  1908. </Fragment>
  1909. </Wix>