en.xml 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <ldml>
  3. <identity>
  4. <version number="$Revision: 1.234 $"/>
  5. <generation date="$Date: 2009/06/17 16:15:14 $"/>
  6. <language type="en"/>
  7. </identity>
  8. <localeDisplayNames>
  9. <localeDisplayPattern>
  10. <localePattern>{0} ({1})</localePattern>
  11. <localeSeparator>, </localeSeparator>
  12. </localeDisplayPattern>
  13. <languages>
  14. <language type="aa">Afar</language>
  15. <language type="ab">Abkhazian</language>
  16. <language type="ace">Achinese</language>
  17. <language type="ach">Acoli</language>
  18. <language type="ada">Adangme</language>
  19. <language type="ady">Adyghe</language>
  20. <language type="ae">Avestan</language>
  21. <language type="af">Afrikaans</language>
  22. <language type="afa">Afro-Asiatic Language</language>
  23. <language type="afh">Afrihili</language>
  24. <language type="ain">Ainu</language>
  25. <language type="ak">Akan</language>
  26. <language type="akk">Akkadian</language>
  27. <language type="ale">Aleut</language>
  28. <language type="alg">Algonquian Language</language>
  29. <language type="alt">Southern Altai</language>
  30. <language type="am">Amharic</language>
  31. <language type="an">Aragonese</language>
  32. <language type="ang">Old English</language>
  33. <language type="anp">Angika</language>
  34. <language type="apa">Apache Language</language>
  35. <language type="ar">Arabic</language>
  36. <language type="arc">Aramaic</language>
  37. <language type="arn">Araucanian</language>
  38. <language type="arp">Arapaho</language>
  39. <language type="art">Artificial Language</language>
  40. <language type="arw">Arawak</language>
  41. <language type="as">Assamese</language>
  42. <language type="ast">Asturian</language>
  43. <language type="ath">Athapascan Language</language>
  44. <language type="aus">Australian Language</language>
  45. <language type="av">Avaric</language>
  46. <language type="awa">Awadhi</language>
  47. <language type="ay">Aymara</language>
  48. <language type="az">Azerbaijani</language>
  49. <language type="ba">Bashkir</language>
  50. <language type="bad">Banda</language>
  51. <language type="bai">Bamileke Language</language>
  52. <language type="bal">Baluchi</language>
  53. <language type="ban">Balinese</language>
  54. <language type="bas">Basa</language>
  55. <language type="bat">Baltic Language</language>
  56. <language type="be">Belarusian</language>
  57. <language type="bej">Beja</language>
  58. <language type="bem">Bemba</language>
  59. <language type="ber">Berber</language>
  60. <language type="bg">Bulgarian</language>
  61. <language type="bh">Bihari</language>
  62. <language type="bho">Bhojpuri</language>
  63. <language type="bi">Bislama</language>
  64. <language type="bik">Bikol</language>
  65. <language type="bin">Bini</language>
  66. <language type="bla">Siksika</language>
  67. <language type="bm">Bambara</language>
  68. <language type="bn">Bengali</language>
  69. <language type="bnt">Bantu</language>
  70. <language type="bo">Tibetan</language>
  71. <language type="br">Breton</language>
  72. <language type="bra">Braj</language>
  73. <language type="bs">Bosnian</language>
  74. <language type="btk">Batak</language>
  75. <language type="bua">Buriat</language>
  76. <language type="bug">Buginese</language>
  77. <language type="byn">Blin</language>
  78. <language type="ca">Catalan</language>
  79. <language type="cad">Caddo</language>
  80. <language type="cai">Central American Indian Language</language>
  81. <language type="car">Carib</language>
  82. <language type="cau">Caucasian Language</language>
  83. <language type="cch">Atsam</language>
  84. <language type="ce">Chechen</language>
  85. <language type="ceb">Cebuano</language>
  86. <language type="cel">Celtic Language</language>
  87. <language type="ch">Chamorro</language>
  88. <language type="chb">Chibcha</language>
  89. <language type="chg">Chagatai</language>
  90. <language type="chk">Chuukese</language>
  91. <language type="chm">Mari</language>
  92. <language type="chn">Chinook Jargon</language>
  93. <language type="cho">Choctaw</language>
  94. <language type="chp">Chipewyan</language>
  95. <language type="chr">Cherokee</language>
  96. <language type="chy">Cheyenne</language>
  97. <language type="cmc">Chamic Language</language>
  98. <language type="co">Corsican</language>
  99. <language type="cop">Coptic</language>
  100. <language type="cpe">English-based Creole or Pidgin</language>
  101. <language type="cpf">French-based Creole or Pidgin</language>
  102. <language type="cpp">Portuguese-based Creole or Pidgin</language>
  103. <language type="cr">Cree</language>
  104. <language type="crh">Crimean Turkish</language>
  105. <language type="crp">Creole or Pidgin</language>
  106. <language type="cs">Czech</language>
  107. <language type="csb">Kashubian</language>
  108. <language type="cu">Church Slavic</language>
  109. <language type="cus">Cushitic Language</language>
  110. <language type="cv">Chuvash</language>
  111. <language type="cy">Welsh</language>
  112. <language type="da">Danish</language>
  113. <language type="dak">Dakota</language>
  114. <language type="dar">Dargwa</language>
  115. <language type="day">Dayak</language>
  116. <language type="de">German</language>
  117. <language type="de_AT">Austrian German</language>
  118. <language type="de_CH">Swiss High German</language>
  119. <language type="del">Delaware</language>
  120. <language type="den">Slave</language>
  121. <language type="dgr">Dogrib</language>
  122. <language type="din">Dinka</language>
  123. <language type="doi">Dogri</language>
  124. <language type="dra">Dravidian Language</language>
  125. <language type="dsb">Lower Sorbian</language>
  126. <language type="dua">Duala</language>
  127. <language type="dum">Middle Dutch</language>
  128. <language type="dv">Divehi</language>
  129. <language type="dyu">Dyula</language>
  130. <language type="dz">Dzongkha</language>
  131. <language type="ee">Ewe</language>
  132. <language type="efi">Efik</language>
  133. <language type="egy">Ancient Egyptian</language>
  134. <language type="eka">Ekajuk</language>
  135. <language type="el">Greek</language>
  136. <language type="elx">Elamite</language>
  137. <language type="en">English</language>
  138. <language type="en_AU">Australian English</language>
  139. <language type="en_CA">Canadian English</language>
  140. <language type="en_GB">British English</language>
  141. <language type="en_US">U.S. English</language>
  142. <language type="enm">Middle English</language>
  143. <language type="eo">Esperanto</language>
  144. <language type="es">Spanish</language>
  145. <language type="es_419">Latin American Spanish</language>
  146. <language type="es_ES">Iberian Spanish</language>
  147. <language type="et">Estonian</language>
  148. <language type="eu">Basque</language>
  149. <language type="ewo">Ewondo</language>
  150. <language type="fa">Persian</language>
  151. <language type="fan">Fang</language>
  152. <language type="fat">Fanti</language>
  153. <language type="ff">Fulah</language>
  154. <language type="fi">Finnish</language>
  155. <language type="fil">Filipino</language>
  156. <language type="fiu">Finno-Ugrian Language</language>
  157. <language type="fj">Fijian</language>
  158. <language type="fo">Faroese</language>
  159. <language type="fon">Fon</language>
  160. <language type="fr">French</language>
  161. <language type="fr_CA">Canadian French</language>
  162. <language type="fr_CH">Swiss French</language>
  163. <language type="frm">Middle French</language>
  164. <language type="fro">Old French</language>
  165. <language type="frr">Northern Frisian</language>
  166. <language type="frs">Eastern Frisian</language>
  167. <language type="fur">Friulian</language>
  168. <language type="fy">Western Frisian</language>
  169. <language type="ga">Irish</language>
  170. <language type="gaa">Ga</language>
  171. <language type="gay">Gayo</language>
  172. <language type="gba">Gbaya</language>
  173. <language type="gd">Scottish Gaelic</language>
  174. <language type="gem">Germanic Language</language>
  175. <language type="gez">Geez</language>
  176. <language type="gil">Gilbertese</language>
  177. <language type="gl">Galician</language>
  178. <language type="gmh">Middle High German</language>
  179. <language type="gn">Guarani</language>
  180. <language type="goh">Old High German</language>
  181. <language type="gon">Gondi</language>
  182. <language type="gor">Gorontalo</language>
  183. <language type="got">Gothic</language>
  184. <language type="grb">Grebo</language>
  185. <language type="grc">Ancient Greek</language>
  186. <language type="gsw">Swiss German</language>
  187. <language type="gu">Gujarati</language>
  188. <language type="gv">Manx</language>
  189. <language type="gwi">Gwichʼin</language>
  190. <language type="ha">Hausa</language>
  191. <language type="hai">Haida</language>
  192. <language type="haw">Hawaiian</language>
  193. <language type="he">Hebrew</language>
  194. <language type="hi">Hindi</language>
  195. <language type="hil">Hiligaynon</language>
  196. <language type="him">Himachali</language>
  197. <language type="hit">Hittite</language>
  198. <language type="hmn">Hmong</language>
  199. <language type="ho">Hiri Motu</language>
  200. <language type="hr">Croatian</language>
  201. <language type="hsb">Upper Sorbian</language>
  202. <language type="ht">Haitian</language>
  203. <language type="hu">Hungarian</language>
  204. <language type="hup">Hupa</language>
  205. <language type="hy">Armenian</language>
  206. <language type="hz">Herero</language>
  207. <language type="ia">Interlingua</language>
  208. <language type="iba">Iban</language>
  209. <language type="id">Indonesian</language>
  210. <language type="ie">Interlingue</language>
  211. <language type="ig">Igbo</language>
  212. <language type="ii">Sichuan Yi</language>
  213. <language type="ijo">Ijo</language>
  214. <language type="ik">Inupiaq</language>
  215. <language type="ilo">Iloko</language>
  216. <language type="inc">Indic Language</language>
  217. <language type="ine">Indo-European Language</language>
  218. <language type="inh">Ingush</language>
  219. <language type="io">Ido</language>
  220. <language type="ira">Iranian Language</language>
  221. <language type="iro">Iroquoian Language</language>
  222. <language type="is">Icelandic</language>
  223. <language type="it">Italian</language>
  224. <language type="iu">Inuktitut</language>
  225. <language type="ja">Japanese</language>
  226. <language type="jbo">Lojban</language>
  227. <language type="jpr">Judeo-Persian</language>
  228. <language type="jrb">Judeo-Arabic</language>
  229. <language type="jv">Javanese</language>
  230. <language type="ka">Georgian</language>
  231. <language type="kaa">Kara-Kalpak</language>
  232. <language type="kab">Kabyle</language>
  233. <language type="kac">Kachin</language>
  234. <language type="kaj">Jju</language>
  235. <language type="kam">Kamba</language>
  236. <language type="kar">Karen</language>
  237. <language type="kaw">Kawi</language>
  238. <language type="kbd">Kabardian</language>
  239. <language type="kcg">Tyap</language>
  240. <language type="kfo">Koro</language>
  241. <language type="kg">Kongo</language>
  242. <language type="kha">Khasi</language>
  243. <language type="khi">Khoisan Language</language>
  244. <language type="kho">Khotanese</language>
  245. <language type="ki">Kikuyu</language>
  246. <language type="kj">Kuanyama</language>
  247. <language type="kk">Kazakh</language>
  248. <language type="kl">Kalaallisut</language>
  249. <language type="km">Khmer</language>
  250. <language type="kmb">Kimbundu</language>
  251. <language type="kn">Kannada</language>
  252. <language type="ko">Korean</language>
  253. <language type="kok">Konkani</language>
  254. <language type="kos">Kosraean</language>
  255. <language type="kpe">Kpelle</language>
  256. <language type="kr">Kanuri</language>
  257. <language type="krc">Karachay-Balkar</language>
  258. <language type="krl">Karelian</language>
  259. <language type="kro">Kru</language>
  260. <language type="kru">Kurukh</language>
  261. <language type="ks">Kashmiri</language>
  262. <language type="ku">Kurdish</language>
  263. <language type="kum">Kumyk</language>
  264. <language type="kut">Kutenai</language>
  265. <language type="kv">Komi</language>
  266. <language type="kw">Cornish</language>
  267. <language type="ky">Kirghiz</language>
  268. <language type="la">Latin</language>
  269. <language type="lad">Ladino</language>
  270. <language type="lah">Lahnda</language>
  271. <language type="lam">Lamba</language>
  272. <language type="lb">Luxembourgish</language>
  273. <language type="lez">Lezghian</language>
  274. <language type="lg">Ganda</language>
  275. <language type="li">Limburgish</language>
  276. <language type="ln">Lingala</language>
  277. <language type="lo">Lao</language>
  278. <language type="lol">Mongo</language>
  279. <language type="loz">Lozi</language>
  280. <language type="lt">Lithuanian</language>
  281. <language type="lu">Luba-Katanga</language>
  282. <language type="lua">Luba-Lulua</language>
  283. <language type="lui">Luiseno</language>
  284. <language type="lun">Lunda</language>
  285. <language type="luo">Luo</language>
  286. <language type="lus">Lushai</language>
  287. <language type="lv">Latvian</language>
  288. <language type="mad">Madurese</language>
  289. <language type="mag">Magahi</language>
  290. <language type="mai">Maithili</language>
  291. <language type="mak">Makasar</language>
  292. <language type="man">Mandingo</language>
  293. <language type="map">Austronesian Language</language>
  294. <language type="mas">Masai</language>
  295. <language type="mdf">Moksha</language>
  296. <language type="mdr">Mandar</language>
  297. <language type="men">Mende</language>
  298. <language type="mfe">Morisyen</language>
  299. <language type="mg">Malagasy</language>
  300. <language type="mga">Middle Irish</language>
  301. <language type="mh">Marshallese</language>
  302. <language type="mi">Maori</language>
  303. <language type="mic">Micmac</language>
  304. <language type="min">Minangkabau</language>
  305. <language type="mis">Miscellaneous Language</language>
  306. <language type="mk">Macedonian</language>
  307. <language type="mkh">Mon-Khmer Language</language>
  308. <language type="ml">Malayalam</language>
  309. <language type="mn">Mongolian</language>
  310. <language type="mnc">Manchu</language>
  311. <language type="mni">Manipuri</language>
  312. <language type="mno">Manobo Language</language>
  313. <language type="mo">Moldavian</language>
  314. <language type="moh">Mohawk</language>
  315. <language type="mos">Mossi</language>
  316. <language type="mr">Marathi</language>
  317. <language type="ms">Malay</language>
  318. <language type="mt">Maltese</language>
  319. <language type="mul">Multiple Languages</language>
  320. <language type="mun">Munda Language</language>
  321. <language type="mus">Creek</language>
  322. <language type="mwl">Mirandese</language>
  323. <language type="mwr">Marwari</language>
  324. <language type="my">Burmese</language>
  325. <language type="myn">Mayan Language</language>
  326. <language type="myv">Erzya</language>
  327. <language type="na">Nauru</language>
  328. <language type="nah">Nahuatl</language>
  329. <language type="nai">North American Indian Language</language>
  330. <language type="nap">Neapolitan</language>
  331. <language type="nb">Norwegian Bokmål</language>
  332. <language type="nd">North Ndebele</language>
  333. <language type="nds">Low German</language>
  334. <language type="ne">Nepali</language>
  335. <language type="new">Newari</language>
  336. <language type="ng">Ndonga</language>
  337. <language type="nia">Nias</language>
  338. <language type="nic">Niger-Kordofanian Language</language>
  339. <language type="niu">Niuean</language>
  340. <language type="nl">Dutch</language>
  341. <language type="nl_BE">Flemish</language>
  342. <language type="nn">Norwegian Nynorsk</language>
  343. <language type="no">Norwegian</language>
  344. <language type="nog">Nogai</language>
  345. <language type="non">Old Norse</language>
  346. <language type="nqo">N’Ko</language>
  347. <language type="nr">South Ndebele</language>
  348. <language type="nso">Northern Sotho</language>
  349. <language type="nub">Nubian Language</language>
  350. <language type="nv">Navajo</language>
  351. <language type="nwc">Classical Newari</language>
  352. <language type="ny">Nyanja</language>
  353. <language type="nym">Nyamwezi</language>
  354. <language type="nyn">Nyankole</language>
  355. <language type="nyo">Nyoro</language>
  356. <language type="nzi">Nzima</language>
  357. <language type="oc">Occitan</language>
  358. <language type="oj">Ojibwa</language>
  359. <language type="om">Oromo</language>
  360. <language type="or">Oriya</language>
  361. <language type="os">Ossetic</language>
  362. <language type="osa">Osage</language>
  363. <language type="ota">Ottoman Turkish</language>
  364. <language type="oto">Otomian Language</language>
  365. <language type="pa">Punjabi</language>
  366. <language type="paa">Papuan Language</language>
  367. <language type="pag">Pangasinan</language>
  368. <language type="pal">Pahlavi</language>
  369. <language type="pam">Pampanga</language>
  370. <language type="pap">Papiamento</language>
  371. <language type="pau">Palauan</language>
  372. <language type="peo">Old Persian</language>
  373. <language type="phi">Philippine Language</language>
  374. <language type="phn">Phoenician</language>
  375. <language type="pi">Pali</language>
  376. <language type="pl">Polish</language>
  377. <language type="pon">Pohnpeian</language>
  378. <language type="pra">Prakrit Language</language>
  379. <language type="pro">Old Provençal</language>
  380. <language type="ps">Pashto</language>
  381. <language type="pt">Portuguese</language>
  382. <language type="pt_BR">Brazilian Portuguese</language>
  383. <language type="pt_PT">Iberian Portuguese</language>
  384. <language type="qu">Quechua</language>
  385. <language type="raj">Rajasthani</language>
  386. <language type="rap">Rapanui</language>
  387. <language type="rar">Rarotongan</language>
  388. <language type="rm">Rhaeto-Romance</language>
  389. <language type="rn">Rundi</language>
  390. <language type="ro">Romanian</language>
  391. <language type="roa">Romance Language</language>
  392. <language type="rom">Romany</language>
  393. <language type="root">Root</language>
  394. <language type="ru">Russian</language>
  395. <language type="rup">Aromanian</language>
  396. <language type="rw">Kinyarwanda</language>
  397. <language type="sa">Sanskrit</language>
  398. <language type="sad">Sandawe</language>
  399. <language type="sah">Yakut</language>
  400. <language type="sai">South American Indian Language</language>
  401. <language type="sal">Salishan Language</language>
  402. <language type="sam">Samaritan Aramaic</language>
  403. <language type="sas">Sasak</language>
  404. <language type="sat">Santali</language>
  405. <language type="sc">Sardinian</language>
  406. <language type="scn">Sicilian</language>
  407. <language type="sco">Scots</language>
  408. <language type="sd">Sindhi</language>
  409. <language type="se">Northern Sami</language>
  410. <language type="sel">Selkup</language>
  411. <language type="sem">Semitic Language</language>
  412. <language type="sg">Sango</language>
  413. <language type="sga">Old Irish</language>
  414. <language type="sgn">Sign Language</language>
  415. <language type="sh">Serbo-Croatian</language>
  416. <language type="shn">Shan</language>
  417. <language type="si">Sinhala</language>
  418. <language type="sid">Sidamo</language>
  419. <language type="sio">Siouan Language</language>
  420. <language type="sit">Sino-Tibetan Language</language>
  421. <language type="sk">Slovak</language>
  422. <language type="sl">Slovenian</language>
  423. <language type="sla">Slavic Language</language>
  424. <language type="sm">Samoan</language>
  425. <language type="sma">Southern Sami</language>
  426. <language type="smi">Sami Language</language>
  427. <language type="smj">Lule Sami</language>
  428. <language type="smn">Inari Sami</language>
  429. <language type="sms">Skolt Sami</language>
  430. <language type="sn">Shona</language>
  431. <language type="snk">Soninke</language>
  432. <language type="so">Somali</language>
  433. <language type="sog">Sogdien</language>
  434. <language type="son">Songhai</language>
  435. <language type="sq">Albanian</language>
  436. <language type="sr">Serbian</language>
  437. <language type="srn">Sranan Tongo</language>
  438. <language type="srr">Serer</language>
  439. <language type="ss">Swati</language>
  440. <language type="ssa">Nilo-Saharan Language</language>
  441. <language type="st">Southern Sotho</language>
  442. <language type="su">Sundanese</language>
  443. <language type="suk">Sukuma</language>
  444. <language type="sus">Susu</language>
  445. <language type="sux">Sumerian</language>
  446. <language type="sv">Swedish</language>
  447. <language type="sw">Swahili</language>
  448. <language type="syc">Classical Syriac</language>
  449. <language type="syr">Syriac</language>
  450. <language type="ta">Tamil</language>
  451. <language type="tai">Tai Language</language>
  452. <language type="te">Telugu</language>
  453. <language type="tem">Timne</language>
  454. <language type="ter">Tereno</language>
  455. <language type="tet">Tetum</language>
  456. <language type="tg">Tajik</language>
  457. <language type="th">Thai</language>
  458. <language type="ti">Tigrinya</language>
  459. <language type="tig">Tigre</language>
  460. <language type="tiv">Tiv</language>
  461. <language type="tk">Turkmen</language>
  462. <language type="tkl">Tokelau</language>
  463. <language type="tl">Tagalog</language>
  464. <language type="tlh">Klingon</language>
  465. <language type="tli">Tlingit</language>
  466. <language type="tmh">Tamashek</language>
  467. <language type="tn">Tswana</language>
  468. <language type="to">Tonga</language>
  469. <language type="tog">Nyasa Tonga</language>
  470. <language type="tpi">Tok Pisin</language>
  471. <language type="tr">Turkish</language>
  472. <language type="trv">Taroko</language>
  473. <language type="ts">Tsonga</language>
  474. <language type="tsi">Tsimshian</language>
  475. <language type="tt">Tatar</language>
  476. <language type="tum">Tumbuka</language>
  477. <language type="tup">Tupi Language</language>
  478. <language type="tut">Altaic Language</language>
  479. <language type="tvl">Tuvalu</language>
  480. <language type="tw">Twi</language>
  481. <language type="ty">Tahitian</language>
  482. <language type="tyv">Tuvinian</language>
  483. <language type="udm">Udmurt</language>
  484. <language type="ug">Uighur</language>
  485. <language type="uga">Ugaritic</language>
  486. <language type="uk">Ukrainian</language>
  487. <language type="umb">Umbundu</language>
  488. <language type="und">Unknown or Invalid Language</language>
  489. <language type="ur">Urdu</language>
  490. <language type="uz">Uzbek</language>
  491. <language type="vai">Vai</language>
  492. <language type="ve">Venda</language>
  493. <language type="vi">Vietnamese</language>
  494. <language type="vo">Volapük</language>
  495. <language type="vot">Votic</language>
  496. <language type="wa">Walloon</language>
  497. <language type="wak">Wakashan Language</language>
  498. <language type="wal">Walamo</language>
  499. <language type="war">Waray</language>
  500. <language type="was">Washo</language>
  501. <language type="wen">Sorbian Language</language>
  502. <language type="wo">Wolof</language>
  503. <language type="xal">Kalmyk</language>
  504. <language type="xh">Xhosa</language>
  505. <language type="yao">Yao</language>
  506. <language type="yap">Yapese</language>
  507. <language type="yi">Yiddish</language>
  508. <language type="yo">Yoruba</language>
  509. <language type="ypk">Yupik Language</language>
  510. <language type="za">Zhuang</language>
  511. <language type="zap">Zapotec</language>
  512. <language type="zbl">Blissymbols</language>
  513. <language type="zen">Zenaga</language>
  514. <language type="zh">Chinese</language>
  515. <language type="zh_Hans">Simplified Chinese</language>
  516. <language type="zh_Hant">Traditional Chinese</language>
  517. <language type="znd">Zande</language>
  518. <language type="zu">Zulu</language>
  519. <language type="zun">Zuni</language>
  520. <language type="zxx">No linguistic content</language>
  521. <language type="zza">Zaza</language>
  522. </languages>
  523. <scripts>
  524. <script type="Arab">Arabic</script>
  525. <script type="Armi">Imperial Aramaic</script>
  526. <script type="Armn">Armenian</script>
  527. <script type="Avst">Avestan</script>
  528. <script type="Bali">Balinese</script>
  529. <script type="Batk">Batak</script>
  530. <script type="Beng">Bengali</script>
  531. <script type="Blis">Blissymbols</script>
  532. <script type="Bopo">Bopomofo</script>
  533. <script type="Brah">Brahmi</script>
  534. <script type="Brai">Braille</script>
  535. <script type="Bugi">Buginese</script>
  536. <script type="Buhd">Buhid</script>
  537. <script type="Cakm">Chakma</script>
  538. <script type="Cans">Unified Canadian Aboriginal Syllabics</script>
  539. <script type="Cari">Carian</script>
  540. <script type="Cham">Cham</script>
  541. <script type="Cher">Cherokee</script>
  542. <script type="Cirt">Cirth</script>
  543. <script type="Copt">Coptic</script>
  544. <script type="Cprt">Cypriot</script>
  545. <script type="Cyrl">Cyrillic</script>
  546. <script type="Cyrs">Old Church Slavonic Cyrillic</script>
  547. <script type="Deva">Devanagari</script>
  548. <script type="Dsrt">Deseret</script>
  549. <script type="Egyd">Egyptian demotic</script>
  550. <script type="Egyh">Egyptian hieratic</script>
  551. <script type="Egyp">Egyptian hieroglyphs</script>
  552. <script type="Ethi">Ethiopic</script>
  553. <script type="Geok">Georgian Khutsuri</script>
  554. <script type="Geor">Georgian</script>
  555. <script type="Glag">Glagolitic</script>
  556. <script type="Goth">Gothic</script>
  557. <script type="Grek">Greek</script>
  558. <script type="Gujr">Gujarati</script>
  559. <script type="Guru">Gurmukhi</script>
  560. <script type="Hang">Hangul</script>
  561. <script type="Hani">Han</script>
  562. <script type="Hano">Hanunoo</script>
  563. <script type="Hans">Simplified Han</script>
  564. <script type="Hant">Traditional Han</script>
  565. <script type="Hebr">Hebrew</script>
  566. <script type="Hira">Hiragana</script>
  567. <script type="Hmng">Pahawh Hmong</script>
  568. <script type="Hrkt">Katakana or Hiragana</script>
  569. <script type="Hung">Old Hungarian</script>
  570. <script type="Inds">Indus</script>
  571. <script type="Ital">Old Italic</script>
  572. <script type="Java">Javanese</script>
  573. <script type="Jpan">Japanese</script>
  574. <script type="Kali">Kayah Li</script>
  575. <script type="Kana">Katakana</script>
  576. <script type="Khar">Kharoshthi</script>
  577. <script type="Khmr">Khmer</script>
  578. <script type="Knda">Kannada</script>
  579. <script type="Kore">Korean</script>
  580. <script type="Kthi">Kaithi</script>
  581. <script type="Lana">Lanna</script>
  582. <script type="Laoo">Lao</script>
  583. <script type="Latf">Fraktur Latin</script>
  584. <script type="Latg">Gaelic Latin</script>
  585. <script type="Latn">Latin</script>
  586. <script type="Lepc">Lepcha</script>
  587. <script type="Limb">Limbu</script>
  588. <script type="Lina">Linear A</script>
  589. <script type="Linb">Linear B</script>
  590. <script type="Lyci">Lycian</script>
  591. <script type="Lydi">Lydian</script>
  592. <script type="Mand">Mandaean</script>
  593. <script type="Mani">Manichaean</script>
  594. <script type="Maya">Mayan hieroglyphs</script>
  595. <script type="Mero">Meroitic</script>
  596. <script type="Mlym">Malayalam</script>
  597. <script type="Mong">Mongolian</script>
  598. <script type="Moon">Moon</script>
  599. <script type="Mtei">Meitei Mayek</script>
  600. <script type="Mymr">Myanmar</script>
  601. <script type="Nkoo">N’Ko</script>
  602. <script type="Ogam">Ogham</script>
  603. <script type="Olck">Ol Chiki</script>
  604. <script type="Orkh">Orkhon</script>
  605. <script type="Orya">Oriya</script>
  606. <script type="Osma">Osmanya</script>
  607. <script type="Perm">Old Permic</script>
  608. <script type="Phag">Phags-pa</script>
  609. <script type="Phli">Inscriptional Pahlavi</script>
  610. <script type="Phlp">Psalter Pahlavi</script>
  611. <script type="Phlv">Book Pahlavi</script>
  612. <script type="Phnx">Phoenician</script>
  613. <script type="Plrd">Pollard Phonetic</script>
  614. <script type="Prti">Inscriptional Parthian</script>
  615. <script type="Qaai">Inherited</script>
  616. <script type="Rjng">Rejang</script>
  617. <script type="Roro">Rongorongo</script>
  618. <script type="Runr">Runic</script>
  619. <script type="Samr">Samaritan</script>
  620. <script type="Sara">Sarati</script>
  621. <script type="Saur">Saurashtra</script>
  622. <script type="Sgnw">SignWriting</script>
  623. <script type="Shaw">Shavian</script>
  624. <script type="Sinh">Sinhala</script>
  625. <script type="Sund">Sundanese</script>
  626. <script type="Sylo">Syloti Nagri</script>
  627. <script type="Syrc">Syriac</script>
  628. <script type="Syre">Estrangelo Syriac</script>
  629. <script type="Syrj">Western Syriac</script>
  630. <script type="Syrn">Eastern Syriac</script>
  631. <script type="Tagb">Tagbanwa</script>
  632. <script type="Tale">Tai Le</script>
  633. <script type="Talu">New Tai Lue</script>
  634. <script type="Taml">Tamil</script>
  635. <script type="Tavt">Tai Viet</script>
  636. <script type="Telu">Telugu</script>
  637. <script type="Teng">Tengwar</script>
  638. <script type="Tfng">Tifinagh</script>
  639. <script type="Tglg">Tagalog</script>
  640. <script type="Thaa">Thaana</script>
  641. <script type="Thai">Thai</script>
  642. <script type="Tibt">Tibetan</script>
  643. <script type="Ugar">Ugaritic</script>
  644. <script type="Vaii">Vai</script>
  645. <script type="Visp">Visible Speech</script>
  646. <script type="Xpeo">Old Persian</script>
  647. <script type="Xsux">Sumero-Akkadian Cuneiform</script>
  648. <script type="Yiii">Yi</script>
  649. <script type="Zmth">Mathematical Notation</script>
  650. <script type="Zsym">Symbols</script>
  651. <script type="Zxxx">Unwritten</script>
  652. <script type="Zyyy">Common</script>
  653. <script type="Zzzz">Unknown or Invalid Script</script>
  654. </scripts>
  655. <territories>
  656. <territory type="001">World</territory>
  657. <territory type="002">Africa</territory>
  658. <territory type="003">North America</territory>
  659. <territory type="005">South America</territory>
  660. <territory type="009">Oceania</territory>
  661. <territory type="011">Western Africa</territory>
  662. <territory type="013">Central America</territory>
  663. <territory type="014">Eastern Africa</territory>
  664. <territory type="015">Northern Africa</territory>
  665. <territory type="017">Middle Africa</territory>
  666. <territory type="018">Southern Africa</territory>
  667. <territory type="019">Americas</territory>
  668. <territory type="021">Northern America</territory>
  669. <territory type="029">Caribbean</territory>
  670. <territory type="030">Eastern Asia</territory>
  671. <territory type="034">Southern Asia</territory>
  672. <territory type="035">South-Eastern Asia</territory>
  673. <territory type="039">Southern Europe</territory>
  674. <territory type="053">Australia and New Zealand</territory>
  675. <territory type="054">Melanesia</territory>
  676. <territory type="057">Micronesian Region</territory>
  677. <territory type="061">Polynesia</territory>
  678. <territory type="062">South-Central Asia</territory>
  679. <territory type="142">Asia</territory>
  680. <territory type="143">Central Asia</territory>
  681. <territory type="145">Western Asia</territory>
  682. <territory type="150">Europe</territory>
  683. <territory type="151">Eastern Europe</territory>
  684. <territory type="154">Northern Europe</territory>
  685. <territory type="155">Western Europe</territory>
  686. <territory type="172">Commonwealth of Independent States</territory>
  687. <territory type="200">Czechoslovakia</territory>
  688. <territory type="419">Latin America and the Caribbean</territory>
  689. <territory type="830">Channel Islands</territory>
  690. <territory type="AD">Andorra</territory>
  691. <territory type="AE">United Arab Emirates</territory>
  692. <territory type="AF">Afghanistan</territory>
  693. <territory type="AG">Antigua and Barbuda</territory>
  694. <territory type="AI">Anguilla</territory>
  695. <territory type="AL">Albania</territory>
  696. <territory type="AM">Armenia</territory>
  697. <territory type="AN">Netherlands Antilles</territory>
  698. <territory type="AO">Angola</territory>
  699. <territory type="AQ">Antarctica</territory>
  700. <territory type="AR">Argentina</territory>
  701. <territory type="AS">American Samoa</territory>
  702. <territory type="AT">Austria</territory>
  703. <territory type="AU">Australia</territory>
  704. <territory type="AW">Aruba</territory>
  705. <territory type="AX">Åland Islands</territory>
  706. <territory type="AZ">Azerbaijan</territory>
  707. <territory type="BA">Bosnia and Herzegovina</territory>
  708. <territory type="BB">Barbados</territory>
  709. <territory type="BD">Bangladesh</territory>
  710. <territory type="BE">Belgium</territory>
  711. <territory type="BF">Burkina Faso</territory>
  712. <territory type="BG">Bulgaria</territory>
  713. <territory type="BH">Bahrain</territory>
  714. <territory type="BI">Burundi</territory>
  715. <territory type="BJ">Benin</territory>
  716. <territory type="BL">Saint Barthélemy</territory>
  717. <territory type="BM">Bermuda</territory>
  718. <territory type="BN">Brunei</territory>
  719. <territory type="BO">Bolivia</territory>
  720. <territory type="BQ">British Antarctic Territory</territory>
  721. <territory type="BR">Brazil</territory>
  722. <territory type="BS">Bahamas</territory>
  723. <territory type="BT">Bhutan</territory>
  724. <territory type="BV">Bouvet Island</territory>
  725. <territory type="BW">Botswana</territory>
  726. <territory type="BY">Belarus</territory>
  727. <territory type="BZ">Belize</territory>
  728. <territory type="CA">Canada</territory>
  729. <territory type="CC">Cocos [Keeling] Islands</territory>
  730. <territory type="CD">Congo - Kinshasa</territory>
  731. <territory type="CF">Central African Republic</territory>
  732. <territory type="CG">Congo - Brazzaville</territory>
  733. <territory type="CH">Switzerland</territory>
  734. <territory type="CI">Côte d’Ivoire</territory>
  735. <territory type="CK">Cook Islands</territory>
  736. <territory type="CL">Chile</territory>
  737. <territory type="CM">Cameroon</territory>
  738. <territory type="CN">China</territory>
  739. <territory type="CO">Colombia</territory>
  740. <territory type="CR">Costa Rica</territory>
  741. <territory type="CS">Serbia and Montenegro</territory>
  742. <territory type="CT">Canton and Enderbury Islands</territory>
  743. <territory type="CU">Cuba</territory>
  744. <territory type="CV">Cape Verde</territory>
  745. <territory type="CX">Christmas Island</territory>
  746. <territory type="CY">Cyprus</territory>
  747. <territory type="CZ">Czech Republic</territory>
  748. <territory type="DD">East Germany</territory>
  749. <territory type="DE">Germany</territory>
  750. <territory type="DJ">Djibouti</territory>
  751. <territory type="DK">Denmark</territory>
  752. <territory type="DM">Dominica</territory>
  753. <territory type="DO">Dominican Republic</territory>
  754. <territory type="DZ">Algeria</territory>
  755. <territory type="EC">Ecuador</territory>
  756. <territory type="EE">Estonia</territory>
  757. <territory type="EG">Egypt</territory>
  758. <territory type="EH">Western Sahara</territory>
  759. <territory type="ER">Eritrea</territory>
  760. <territory type="ES">Spain</territory>
  761. <territory type="ET">Ethiopia</territory>
  762. <territory type="FI">Finland</territory>
  763. <territory type="FJ">Fiji</territory>
  764. <territory type="FK">Falkland Islands</territory>
  765. <territory type="FM">Micronesia</territory>
  766. <territory type="FO">Faroe Islands</territory>
  767. <territory type="FQ">French Southern and Antarctic Territories</territory>
  768. <territory type="FR">France</territory>
  769. <territory type="FX">Metropolitan France</territory>
  770. <territory type="GA">Gabon</territory>
  771. <territory type="GB">United Kingdom</territory>
  772. <territory type="GD">Grenada</territory>
  773. <territory type="GE">Georgia</territory>
  774. <territory type="GF">French Guiana</territory>
  775. <territory type="GG">Guernsey</territory>
  776. <territory type="GH">Ghana</territory>
  777. <territory type="GI">Gibraltar</territory>
  778. <territory type="GL">Greenland</territory>
  779. <territory type="GM">Gambia</territory>
  780. <territory type="GN">Guinea</territory>
  781. <territory type="GP">Guadeloupe</territory>
  782. <territory type="GQ">Equatorial Guinea</territory>
  783. <territory type="GR">Greece</territory>
  784. <territory type="GS">South Georgia and the South Sandwich Islands</territory>
  785. <territory type="GT">Guatemala</territory>
  786. <territory type="GU">Guam</territory>
  787. <territory type="GW">Guinea-Bissau</territory>
  788. <territory type="GY">Guyana</territory>
  789. <territory type="HK">Hong Kong SAR China</territory>
  790. <territory type="HM">Heard Island and McDonald Islands</territory>
  791. <territory type="HN">Honduras</territory>
  792. <territory type="HR">Croatia</territory>
  793. <territory type="HT">Haiti</territory>
  794. <territory type="HU">Hungary</territory>
  795. <territory type="ID">Indonesia</territory>
  796. <territory type="IE">Ireland</territory>
  797. <territory type="IL">Israel</territory>
  798. <territory type="IM">Isle of Man</territory>
  799. <territory type="IN">India</territory>
  800. <territory type="IO">British Indian Ocean Territory</territory>
  801. <territory type="IQ">Iraq</territory>
  802. <territory type="IR">Iran</territory>
  803. <territory type="IS">Iceland</territory>
  804. <territory type="IT">Italy</territory>
  805. <territory type="JE">Jersey</territory>
  806. <territory type="JM">Jamaica</territory>
  807. <territory type="JO">Jordan</territory>
  808. <territory type="JP">Japan</territory>
  809. <territory type="JT">Johnston Island</territory>
  810. <territory type="KE">Kenya</territory>
  811. <territory type="KG">Kyrgyzstan</territory>
  812. <territory type="KH">Cambodia</territory>
  813. <territory type="KI">Kiribati</territory>
  814. <territory type="KM">Comoros</territory>
  815. <territory type="KN">Saint Kitts and Nevis</territory>
  816. <territory type="KP">North Korea</territory>
  817. <territory type="KR">South Korea</territory>
  818. <territory type="KW">Kuwait</territory>
  819. <territory type="KY">Cayman Islands</territory>
  820. <territory type="KZ">Kazakhstan</territory>
  821. <territory type="LA">Laos</territory>
  822. <territory type="LB">Lebanon</territory>
  823. <territory type="LC">Saint Lucia</territory>
  824. <territory type="LI">Liechtenstein</territory>
  825. <territory type="LK">Sri Lanka</territory>
  826. <territory type="LR">Liberia</territory>
  827. <territory type="LS">Lesotho</territory>
  828. <territory type="LT">Lithuania</territory>
  829. <territory type="LU">Luxembourg</territory>
  830. <territory type="LV">Latvia</territory>
  831. <territory type="LY">Libya</territory>
  832. <territory type="MA">Morocco</territory>
  833. <territory type="MC">Monaco</territory>
  834. <territory type="MD">Moldova</territory>
  835. <territory type="ME">Montenegro</territory>
  836. <territory type="MF">Saint Martin</territory>
  837. <territory type="MG">Madagascar</territory>
  838. <territory type="MH">Marshall Islands</territory>
  839. <territory type="MI">Midway Islands</territory>
  840. <territory type="MK">Macedonia</territory>
  841. <territory type="ML">Mali</territory>
  842. <territory type="MM">Myanmar [Burma]</territory>
  843. <territory type="MN">Mongolia</territory>
  844. <territory type="MO">Macau SAR China</territory>
  845. <territory type="MP">Northern Mariana Islands</territory>
  846. <territory type="MQ">Martinique</territory>
  847. <territory type="MR">Mauritania</territory>
  848. <territory type="MS">Montserrat</territory>
  849. <territory type="MT">Malta</territory>
  850. <territory type="MU">Mauritius</territory>
  851. <territory type="MV">Maldives</territory>
  852. <territory type="MW">Malawi</territory>
  853. <territory type="MX">Mexico</territory>
  854. <territory type="MY">Malaysia</territory>
  855. <territory type="MZ">Mozambique</territory>
  856. <territory type="NA">Namibia</territory>
  857. <territory type="NC">New Caledonia</territory>
  858. <territory type="NE">Niger</territory>
  859. <territory type="NF">Norfolk Island</territory>
  860. <territory type="NG">Nigeria</territory>
  861. <territory type="NI">Nicaragua</territory>
  862. <territory type="NL">Netherlands</territory>
  863. <territory type="NO">Norway</territory>
  864. <territory type="NP">Nepal</territory>
  865. <territory type="NQ">Dronning Maud Land</territory>
  866. <territory type="NR">Nauru</territory>
  867. <territory type="NT">Neutral Zone</territory>
  868. <territory type="NU">Niue</territory>
  869. <territory type="NZ">New Zealand</territory>
  870. <territory type="OM">Oman</territory>
  871. <territory type="PA">Panama</territory>
  872. <territory type="PC">Pacific Islands Trust Territory</territory>
  873. <territory type="PE">Peru</territory>
  874. <territory type="PF">French Polynesia</territory>
  875. <territory type="PG">Papua New Guinea</territory>
  876. <territory type="PH">Philippines</territory>
  877. <territory type="PK">Pakistan</territory>
  878. <territory type="PL">Poland</territory>
  879. <territory type="PM">Saint Pierre and Miquelon</territory>
  880. <territory type="PN">Pitcairn Islands</territory>
  881. <territory type="PR">Puerto Rico</territory>
  882. <territory type="PS">Palestinian Territories</territory>
  883. <territory type="PT">Portugal</territory>
  884. <territory type="PU">U.S. Miscellaneous Pacific Islands</territory>
  885. <territory type="PW">Palau</territory>
  886. <territory type="PY">Paraguay</territory>
  887. <territory type="PZ">Panama Canal Zone</territory>
  888. <territory type="QA">Qatar</territory>
  889. <territory type="QO">Outlying Oceania</territory>
  890. <territory type="QU">European Union</territory>
  891. <territory type="RE">Réunion</territory>
  892. <territory type="RO">Romania</territory>
  893. <territory type="RS">Serbia</territory>
  894. <territory type="RU">Russia</territory>
  895. <territory type="RW">Rwanda</territory>
  896. <territory type="SA">Saudi Arabia</territory>
  897. <territory type="SB">Solomon Islands</territory>
  898. <territory type="SC">Seychelles</territory>
  899. <territory type="SD">Sudan</territory>
  900. <territory type="SE">Sweden</territory>
  901. <territory type="SG">Singapore</territory>
  902. <territory type="SH">Saint Helena</territory>
  903. <territory type="SI">Slovenia</territory>
  904. <territory type="SJ">Svalbard and Jan Mayen</territory>
  905. <territory type="SK">Slovakia</territory>
  906. <territory type="SL">Sierra Leone</territory>
  907. <territory type="SM">San Marino</territory>
  908. <territory type="SN">Senegal</territory>
  909. <territory type="SO">Somalia</territory>
  910. <territory type="SR">Suriname</territory>
  911. <territory type="ST">São Tomé and Príncipe</territory>
  912. <territory type="SU">Union of Soviet Socialist Republics</territory>
  913. <territory type="SV">El Salvador</territory>
  914. <territory type="SY">Syria</territory>
  915. <territory type="SZ">Swaziland</territory>
  916. <territory type="TC">Turks and Caicos Islands</territory>
  917. <territory type="TD">Chad</territory>
  918. <territory type="TF">French Southern Territories</territory>
  919. <territory type="TG">Togo</territory>
  920. <territory type="TH">Thailand</territory>
  921. <territory type="TJ">Tajikistan</territory>
  922. <territory type="TK">Tokelau</territory>
  923. <territory type="TL">Timor-Leste</territory>
  924. <territory type="TM">Turkmenistan</territory>
  925. <territory type="TN">Tunisia</territory>
  926. <territory type="TO">Tonga</territory>
  927. <territory type="TR">Turkey</territory>
  928. <territory type="TT">Trinidad and Tobago</territory>
  929. <territory type="TV">Tuvalu</territory>
  930. <territory type="TW">Taiwan</territory>
  931. <territory type="TZ">Tanzania</territory>
  932. <territory type="UA">Ukraine</territory>
  933. <territory type="UG">Uganda</territory>
  934. <territory type="UM">U.S. Minor Outlying Islands</territory>
  935. <territory type="US">United States</territory>
  936. <territory type="UY">Uruguay</territory>
  937. <territory type="UZ">Uzbekistan</territory>
  938. <territory type="VA">Vatican City</territory>
  939. <territory type="VC">Saint Vincent and the Grenadines</territory>
  940. <territory type="VD">North Vietnam</territory>
  941. <territory type="VE">Venezuela</territory>
  942. <territory type="VG">British Virgin Islands</territory>
  943. <territory type="VI">U.S. Virgin Islands</territory>
  944. <territory type="VN">Vietnam</territory>
  945. <territory type="VU">Vanuatu</territory>
  946. <territory type="WF">Wallis and Futuna</territory>
  947. <territory type="WK">Wake Island</territory>
  948. <territory type="WS">Samoa</territory>
  949. <territory type="YD">People's Democratic Republic of Yemen</territory>
  950. <territory type="YE">Yemen</territory>
  951. <territory type="YT">Mayotte</territory>
  952. <territory type="ZA">South Africa</territory>
  953. <territory type="ZM">Zambia</territory>
  954. <territory type="ZW">Zimbabwe</territory>
  955. <territory type="ZZ">Unknown or Invalid Region</territory>
  956. </territories>
  957. <variants>
  958. <variant type="1901">Traditional German orthography</variant>
  959. <variant type="1994">Standardized Resian orthography</variant>
  960. <variant type="1996">German orthography of 1996</variant>
  961. <variant type="1606NICT">Late Middle French to 1606</variant>
  962. <variant type="1694ACAD">Early Modern French</variant>
  963. <variant type="1959ACAD">Academic</variant>
  964. <variant type="AREVELA">Eastern Armenian</variant>
  965. <variant type="AREVMDA">Western Armenian</variant>
  966. <variant type="BAKU1926">Unified Turkic Latin Alphabet</variant>
  967. <variant type="BISKE">San Giorgio/Bila dialect</variant>
  968. <variant type="BOONT">Boontling</variant>
  969. <variant type="FONIPA">IPA Phonetics</variant>
  970. <variant type="FONUPA">UPA Phonetics</variant>
  971. <variant type="KKCOR">Common Orthography</variant>
  972. <variant type="LIPAW">The Lipovaz dialect of Resian</variant>
  973. <variant type="MONOTON">Monotonic</variant>
  974. <variant type="NEDIS">Natisone dialect</variant>
  975. <variant type="NJIVA">Gniva/Njiva dialect</variant>
  976. <variant type="OSOJS">Oseacco/Osojane dialect</variant>
  977. <variant type="PINYIN">Pinyin Romanization</variant>
  978. <variant type="POLYTON">Polytonic</variant>
  979. <variant type="POSIX">Computer</variant>
  980. <variant type="REVISED">Revised Orthography</variant>
  981. <variant type="ROZAJ">Resian</variant>
  982. <variant type="SAAHO">Saho</variant>
  983. <variant type="SCOTLAND">Scottish Standard English</variant>
  984. <variant type="SCOUSE">Scouse</variant>
  985. <variant type="SOLBA">Stolvizza/Solbica dialect</variant>
  986. <variant type="TARASK">Taraskievica orthography</variant>
  987. <variant type="UCCOR">Unified Orthography</variant>
  988. <variant type="UCRCOR">Unified Revised Orthography</variant>
  989. <variant type="VALENCIA">Valencian</variant>
  990. <variant type="WADEGILE">Wade-Giles Romanization</variant>
  991. </variants>
  992. <types>
  993. <type type="arab" key="numbers">Arabic-Indic Digits</type>
  994. <type type="arabext" key="numbers">Extended Arabic-Indic Digits</type>
  995. <type type="armn" key="numbers">Armenian Numerals</type>
  996. <type type="armnlow" key="numbers">Armenian Lowercase Numerals</type>
  997. <type type="beng" key="numbers">Bengali Digits</type>
  998. <type type="big5han" key="collation">Traditional Chinese Sort Order - Big5</type>
  999. <type type="buddhist" key="calendar">Buddhist Calendar</type>
  1000. <type type="chinese" key="calendar">Chinese Calendar</type>
  1001. <type type="coptic" key="calendar">Coptic Calendar</type>
  1002. <type type="deva" key="numbers">Devanagari Digits</type>
  1003. <type type="direct" key="collation">Direct Sort Order</type>
  1004. <type type="ethi" key="numbers">Ethiopic Numerals</type>
  1005. <type type="ethiopic" key="calendar">Ethiopic Calendar</type>
  1006. <type type="ethiopic-amete-alem" key="calendar">Ethiopic Amete Alem Calendar</type>
  1007. <type type="fullwide" key="numbers">Full Width Digits</type>
  1008. <type type="gb2312han" key="collation">Simplified Chinese Sort Order - GB2312</type>
  1009. <type type="geor" key="numbers">Georgian Numerals</type>
  1010. <type type="gregorian" key="calendar">Gregorian Calendar</type>
  1011. <type type="grek" key="numbers">Greek Numerals</type>
  1012. <type type="greklow" key="numbers">Greek Lowercase Numerals</type>
  1013. <type type="gujr" key="numbers">Gujarati Digits</type>
  1014. <type type="guru" key="numbers">Gurmukhi Digits</type>
  1015. <type type="hans" key="numbers">Simplified Chinese Numerals</type>
  1016. <type type="hansfin" key="numbers">Simplified Chinese Financial Numerals</type>
  1017. <type type="hant" key="numbers">Traditional Chinese Numerals</type>
  1018. <type type="hantfin" key="numbers">Traditional Chinese Financial Numerals</type>
  1019. <type type="hebr" key="numbers">Hebrew Numerals</type>
  1020. <type type="hebrew" key="calendar">Hebrew Calendar</type>
  1021. <type type="indian" key="calendar">Indian National Calendar</type>
  1022. <type type="islamic" key="calendar">Islamic Calendar</type>
  1023. <type type="islamic-civil" key="calendar">Islamic-Civil Calendar</type>
  1024. <type type="japanese" key="calendar">Japanese Calendar</type>
  1025. <type type="jpan" key="numbers">Japanese Numerals</type>
  1026. <type type="jpanfin" key="numbers">Japanese Financial Numerals</type>
  1027. <type type="khmr" key="numbers">Khmer Digits</type>
  1028. <type type="knda" key="numbers">Kannada Digits</type>
  1029. <type type="laoo" key="numbers">Lao Digits</type>
  1030. <type type="latn" key="numbers">Western Digits</type>
  1031. <type type="mlym" key="numbers">Malayalam Digits</type>
  1032. <type type="mong" key="numbers">Mongolian Digits</type>
  1033. <type type="mymr" key="numbers">Myanmar Digits</type>
  1034. <type type="orya" key="numbers">Oriya Digits</type>
  1035. <type type="persian" key="calendar">Persian Calendar</type>
  1036. <type type="phonebook" key="collation">Phonebook Sort Order</type>
  1037. <type type="pinyin" key="collation">Simplified Chinese Pinyin Sort Order</type>
  1038. <type type="roc" key="calendar">Republic of China Calendar</type>
  1039. <type type="roman" key="numbers">Roman Numerals</type>
  1040. <type type="romanlow" key="numbers">Roman Lowercase Numerals</type>
  1041. <type type="stroke" key="collation">Traditional Chinese Stroke Sort Order</type>
  1042. <type type="taml" key="numbers">Tamil Numerals</type>
  1043. <type type="telu" key="numbers">Telugu Digits</type>
  1044. <type type="thai" key="numbers">Thai Digits</type>
  1045. <type type="tibt" key="numbers">Tibetan Digits</type>
  1046. <type type="traditional" key="collation">Traditional Sort Order</type>
  1047. </types>
  1048. <measurementSystemNames>
  1049. <measurementSystemName type="metric">Metric</measurementSystemName>
  1050. <measurementSystemName type="US">US</measurementSystemName>
  1051. </measurementSystemNames>
  1052. <codePatterns>
  1053. <codePattern type="language">Language: {0}</codePattern>
  1054. <codePattern type="script">Script: {0}</codePattern>
  1055. <codePattern type="territory">Region: {0}</codePattern>
  1056. </codePatterns>
  1057. </localeDisplayNames>
  1058. <characters>
  1059. <exemplarCharacters>[a-z]</exemplarCharacters>
  1060. <exemplarCharacters type="auxiliary">[á à ă â å ä ã ā æ ç é è ĕ ê ë ē í ì ĭ î ï ī ñ ó ò ŏ ô ö ø ō œ ß ú ù ŭ û ü ū ÿ]</exemplarCharacters>
  1061. <exemplarCharacters type="currencySymbol">[a-c č d-l ł m-z]</exemplarCharacters>
  1062. </characters>
  1063. <delimiters>
  1064. <quotationStart>“</quotationStart>
  1065. <quotationEnd>”</quotationEnd>
  1066. <alternateQuotationStart>‘</alternateQuotationStart>
  1067. <alternateQuotationEnd>’</alternateQuotationEnd>
  1068. </delimiters>
  1069. <dates>
  1070. <calendars>
  1071. <calendar type="gregorian">
  1072. <months>
  1073. <monthContext type="format">
  1074. <monthWidth type="abbreviated">
  1075. <month type="1">Jan</month>
  1076. <month type="2">Feb</month>
  1077. <month type="3">Mar</month>
  1078. <month type="4">Apr</month>
  1079. <month type="5">May</month>
  1080. <month type="6">Jun</month>
  1081. <month type="7">Jul</month>
  1082. <month type="8">Aug</month>
  1083. <month type="9">Sep</month>
  1084. <month type="10">Oct</month>
  1085. <month type="11">Nov</month>
  1086. <month type="12">Dec</month>
  1087. </monthWidth>
  1088. <monthWidth type="wide">
  1089. <month type="1">January</month>
  1090. <month type="2">February</month>
  1091. <month type="3">March</month>
  1092. <month type="4">April</month>
  1093. <month type="5">May</month>
  1094. <month type="6">June</month>
  1095. <month type="7">July</month>
  1096. <month type="8">August</month>
  1097. <month type="9">September</month>
  1098. <month type="10">October</month>
  1099. <month type="11">November</month>
  1100. <month type="12">December</month>
  1101. </monthWidth>
  1102. </monthContext>
  1103. <monthContext type="stand-alone">
  1104. <monthWidth type="narrow">
  1105. <month type="1">J</month>
  1106. <month type="2">F</month>
  1107. <month type="3">M</month>
  1108. <month type="4">A</month>
  1109. <month type="5">M</month>
  1110. <month type="6">J</month>
  1111. <month type="7">J</month>
  1112. <month type="8">A</month>
  1113. <month type="9">S</month>
  1114. <month type="10">O</month>
  1115. <month type="11">N</month>
  1116. <month type="12">D</month>
  1117. </monthWidth>
  1118. </monthContext>
  1119. </months>
  1120. <days>
  1121. <dayContext type="format">
  1122. <dayWidth type="abbreviated">
  1123. <day type="sun">Sun</day>
  1124. <day type="mon">Mon</day>
  1125. <day type="tue">Tue</day>
  1126. <day type="wed">Wed</day>
  1127. <day type="thu">Thu</day>
  1128. <day type="fri">Fri</day>
  1129. <day type="sat">Sat</day>
  1130. </dayWidth>
  1131. <dayWidth type="wide">
  1132. <day type="sun">Sunday</day>
  1133. <day type="mon">Monday</day>
  1134. <day type="tue">Tuesday</day>
  1135. <day type="wed">Wednesday</day>
  1136. <day type="thu">Thursday</day>
  1137. <day type="fri">Friday</day>
  1138. <day type="sat">Saturday</day>
  1139. </dayWidth>
  1140. </dayContext>
  1141. <dayContext type="stand-alone">
  1142. <dayWidth type="narrow">
  1143. <day type="sun">S</day>
  1144. <day type="mon">M</day>
  1145. <day type="tue">T</day>
  1146. <day type="wed">W</day>
  1147. <day type="thu">T</day>
  1148. <day type="fri">F</day>
  1149. <day type="sat">S</day>
  1150. </dayWidth>
  1151. </dayContext>
  1152. </days>
  1153. <quarters>
  1154. <quarterContext type="format">
  1155. <quarterWidth type="abbreviated">
  1156. <quarter type="1">Q1</quarter>
  1157. <quarter type="2">Q2</quarter>
  1158. <quarter type="3">Q3</quarter>
  1159. <quarter type="4">Q4</quarter>
  1160. </quarterWidth>
  1161. <quarterWidth type="wide">
  1162. <quarter type="1">1st quarter</quarter>
  1163. <quarter type="2">2nd quarter</quarter>
  1164. <quarter type="3">3rd quarter</quarter>
  1165. <quarter type="4">4th quarter</quarter>
  1166. </quarterWidth>
  1167. </quarterContext>
  1168. <quarterContext type="stand-alone">
  1169. <quarterWidth type="narrow">
  1170. <quarter type="1">1</quarter>
  1171. <quarter type="2">2</quarter>
  1172. <quarter type="3">3</quarter>
  1173. <quarter type="4">4</quarter>
  1174. </quarterWidth>
  1175. </quarterContext>
  1176. </quarters>
  1177. <am>AM</am>
  1178. <pm>PM</pm>
  1179. <eras>
  1180. <eraNames>
  1181. <era type="0">Before Christ</era>
  1182. <era type="1">Anno Domini</era>
  1183. </eraNames>
  1184. <eraAbbr>
  1185. <era type="0">BC</era>
  1186. <era type="1">AD</era>
  1187. </eraAbbr>
  1188. <eraNarrow>
  1189. <era type="0">B</era>
  1190. <era type="1">A</era>
  1191. </eraNarrow>
  1192. </eras>
  1193. <dateFormats>
  1194. <dateFormatLength type="full">
  1195. <dateFormat>
  1196. <pattern>EEEE, MMMM d, y</pattern>
  1197. </dateFormat>
  1198. </dateFormatLength>
  1199. <dateFormatLength type="long">
  1200. <dateFormat>
  1201. <pattern>MMMM d, y</pattern>
  1202. </dateFormat>
  1203. </dateFormatLength>
  1204. <dateFormatLength type="medium">
  1205. <dateFormat>
  1206. <pattern>MMM d, y</pattern>
  1207. </dateFormat>
  1208. </dateFormatLength>
  1209. <dateFormatLength type="short">
  1210. <dateFormat>
  1211. <pattern>M/d/yy</pattern>
  1212. </dateFormat>
  1213. </dateFormatLength>
  1214. </dateFormats>
  1215. <timeFormats>
  1216. <timeFormatLength type="full">
  1217. <timeFormat>
  1218. <pattern>h:mm:ss a zzzz</pattern>
  1219. </timeFormat>
  1220. </timeFormatLength>
  1221. <timeFormatLength type="long">
  1222. <timeFormat>
  1223. <pattern>h:mm:ss a z</pattern>
  1224. </timeFormat>
  1225. </timeFormatLength>
  1226. <timeFormatLength type="medium">
  1227. <timeFormat>
  1228. <pattern>h:mm:ss a</pattern>
  1229. </timeFormat>
  1230. </timeFormatLength>
  1231. <timeFormatLength type="short">
  1232. <timeFormat>
  1233. <pattern>h:mm a</pattern>
  1234. </timeFormat>
  1235. </timeFormatLength>
  1236. </timeFormats>
  1237. <dateTimeFormats>
  1238. <dateTimeFormatLength type="full">
  1239. <dateTimeFormat>
  1240. <pattern>{1} {0}</pattern>
  1241. </dateTimeFormat>
  1242. </dateTimeFormatLength>
  1243. <dateTimeFormatLength type="long">
  1244. <dateTimeFormat>
  1245. <pattern>{1} {0}</pattern>
  1246. </dateTimeFormat>
  1247. </dateTimeFormatLength>
  1248. <dateTimeFormatLength type="medium">
  1249. <dateTimeFormat>
  1250. <pattern>{1} {0}</pattern>
  1251. </dateTimeFormat>
  1252. </dateTimeFormatLength>
  1253. <dateTimeFormatLength type="short">
  1254. <dateTimeFormat>
  1255. <pattern>{1} {0}</pattern>
  1256. </dateTimeFormat>
  1257. </dateTimeFormatLength>
  1258. <availableFormats>
  1259. <dateFormatItem id="d">d</dateFormatItem>
  1260. <dateFormatItem id="EEEd">d EEE</dateFormatItem>
  1261. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1262. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  1263. <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
  1264. <dateFormatItem id="M">L</dateFormatItem>
  1265. <dateFormatItem id="Md">M/d</dateFormatItem>
  1266. <dateFormatItem id="MEd">E, M/d</dateFormatItem>
  1267. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1268. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  1269. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  1270. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  1271. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  1272. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1273. <dateFormatItem id="y">y</dateFormatItem>
  1274. <dateFormatItem id="yM">M/yyyy</dateFormatItem>
  1275. <dateFormatItem id="yMEd">EEE, M/d/yyyy</dateFormatItem>
  1276. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  1277. <dateFormatItem id="yMMMEd">EEE, MMM d, y</dateFormatItem>
  1278. <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
  1279. <dateFormatItem id="yQ">Q yyyy</dateFormatItem>
  1280. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1281. </availableFormats>
  1282. <intervalFormats>
  1283. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1284. <intervalFormatItem id="d">
  1285. <greatestDifference id="d">d–d</greatestDifference>
  1286. </intervalFormatItem>
  1287. <intervalFormatItem id="h">
  1288. <greatestDifference id="a">h a – h a</greatestDifference>
  1289. <greatestDifference id="h">h–h a</greatestDifference>
  1290. </intervalFormatItem>
  1291. <intervalFormatItem id="hm">
  1292. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1293. <greatestDifference id="h">h:mm–h:mm a</greatestDifference>
  1294. <greatestDifference id="m">h:mm–h:mm a</greatestDifference>
  1295. </intervalFormatItem>
  1296. <intervalFormatItem id="hmv">
  1297. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  1298. <greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
  1299. <greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
  1300. </intervalFormatItem>
  1301. <intervalFormatItem id="hv">
  1302. <greatestDifference id="a">h a – h a v</greatestDifference>
  1303. <greatestDifference id="h">h–h a v</greatestDifference>
  1304. </intervalFormatItem>
  1305. <intervalFormatItem id="M">
  1306. <greatestDifference id="M">M–M</greatestDifference>
  1307. </intervalFormatItem>
  1308. <intervalFormatItem id="Md">
  1309. <greatestDifference id="d">M/d – M/d</greatestDifference>
  1310. <greatestDifference id="M">M/d – M/d</greatestDifference>
  1311. </intervalFormatItem>
  1312. <intervalFormatItem id="MEd">
  1313. <greatestDifference id="d">E, M/d – E, M/d</greatestDifference>
  1314. <greatestDifference id="M">E, M/d – E, M/d</greatestDifference>
  1315. </intervalFormatItem>
  1316. <intervalFormatItem id="MMM">
  1317. <greatestDifference id="M">MMM–MMM</greatestDifference>
  1318. </intervalFormatItem>
  1319. <intervalFormatItem id="MMMd">
  1320. <greatestDifference id="d">MMM d–d</greatestDifference>
  1321. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  1322. </intervalFormatItem>
  1323. <intervalFormatItem id="MMMEd">
  1324. <greatestDifference id="d">E, MMM d – E, MMM d</greatestDifference>
  1325. <greatestDifference id="M">E, MMM d – E, MMM d</greatestDifference>
  1326. </intervalFormatItem>
  1327. <intervalFormatItem id="MMMM">
  1328. <greatestDifference id="M">LLLL-LLLL</greatestDifference>
  1329. </intervalFormatItem>
  1330. <intervalFormatItem id="y">
  1331. <greatestDifference id="y">y–y</greatestDifference>
  1332. </intervalFormatItem>
  1333. <intervalFormatItem id="yM">
  1334. <greatestDifference id="M">M/yy – M/yy</greatestDifference>
  1335. <greatestDifference id="y">M/yy – M/yy</greatestDifference>
  1336. </intervalFormatItem>
  1337. <intervalFormatItem id="yMd">
  1338. <greatestDifference id="d">M/d/yy – M/d/yy</greatestDifference>
  1339. <greatestDifference id="M">M/d/yy – M/d/yy</greatestDifference>
  1340. <greatestDifference id="y">M/d/yy – M/d/yy</greatestDifference>
  1341. </intervalFormatItem>
  1342. <intervalFormatItem id="yMEd">
  1343. <greatestDifference id="d">E, M/d/yy – E, M/d/yy</greatestDifference>
  1344. <greatestDifference id="M">E, M/d/yy – E, M/d/yy</greatestDifference>
  1345. <greatestDifference id="y">E, M/d/yy – E, M/d/yy</greatestDifference>
  1346. </intervalFormatItem>
  1347. <intervalFormatItem id="yMMM">
  1348. <greatestDifference id="M">MMM–MMM y</greatestDifference>
  1349. <greatestDifference id="y">MMM y – MMM y</greatestDifference>
  1350. </intervalFormatItem>
  1351. <intervalFormatItem id="yMMMd">
  1352. <greatestDifference id="d">MMM d–d, y</greatestDifference>
  1353. <greatestDifference id="M">MMM d – MMM d, y</greatestDifference>
  1354. <greatestDifference id="y">MMM d, y – MMM d, y</greatestDifference>
  1355. </intervalFormatItem>
  1356. <intervalFormatItem id="yMMMEd">
  1357. <greatestDifference id="d">E, MMM d – E, MMM d, y</greatestDifference>
  1358. <greatestDifference id="M">E, MMM d – E, MMM d, y</greatestDifference>
  1359. <greatestDifference id="y">E, MMM d, y – E, MMM d, y</greatestDifference>
  1360. </intervalFormatItem>
  1361. <intervalFormatItem id="yMMMM">
  1362. <greatestDifference id="M">MMMM–MMMM y</greatestDifference>
  1363. <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
  1364. </intervalFormatItem>
  1365. </intervalFormats>
  1366. </dateTimeFormats>
  1367. <fields>
  1368. <field type="era">
  1369. <displayName>Era</displayName>
  1370. </field>
  1371. <field type="year">
  1372. <displayName>Year</displayName>
  1373. </field>
  1374. <field type="month">
  1375. <displayName>Month</displayName>
  1376. </field>
  1377. <field type="week">
  1378. <displayName>Week</displayName>
  1379. </field>
  1380. <field type="day">
  1381. <displayName>Day</displayName>
  1382. <relative type="-1">Yesterday</relative>
  1383. <relative type="0">Today</relative>
  1384. <relative type="1">Tomorrow</relative>
  1385. </field>
  1386. <field type="weekday">
  1387. <displayName>Day of the Week</displayName>
  1388. </field>
  1389. <field type="dayperiod">
  1390. <displayName>AM/PM</displayName>
  1391. </field>
  1392. <field type="hour">
  1393. <displayName>Hour</displayName>
  1394. </field>
  1395. <field type="minute">
  1396. <displayName>Minute</displayName>
  1397. </field>
  1398. <field type="second">
  1399. <displayName>Second</displayName>
  1400. </field>
  1401. <field type="zone">
  1402. <displayName>Zone</displayName>
  1403. </field>
  1404. </fields>
  1405. </calendar>
  1406. </calendars>
  1407. <timeZoneNames>
  1408. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1409. <gmtFormat>GMT{0}</gmtFormat>
  1410. <regionFormat>{0} Time</regionFormat>
  1411. <fallbackFormat>{1} ({0})</fallbackFormat>
  1412. <zone type="Etc/Unknown">
  1413. <exemplarCity>Unknown</exemplarCity>
  1414. </zone>
  1415. <zone type="Antarctica/DumontDUrville">
  1416. <exemplarCity>Dumont d’Urville</exemplarCity>
  1417. </zone>
  1418. <zone type="Europe/London">
  1419. <long>
  1420. <daylight>British Summer Time</daylight>
  1421. </long>
  1422. <short>
  1423. <daylight>BST</daylight>
  1424. </short>
  1425. </zone>
  1426. <zone type="Europe/Dublin">
  1427. <long>
  1428. <daylight>Irish Summer Time</daylight>
  1429. </long>
  1430. <short>
  1431. <daylight>IST (Irish)</daylight>
  1432. </short>
  1433. </zone>
  1434. <metazone type="Acre">
  1435. <long>
  1436. <standard>Acre Time</standard>
  1437. <daylight>Acre Summer Time</daylight>
  1438. </long>
  1439. </metazone>
  1440. <metazone type="Afghanistan">
  1441. <long>
  1442. <standard>Afghanistan Time</standard>
  1443. </long>
  1444. </metazone>
  1445. <metazone type="Africa_Central">
  1446. <long>
  1447. <standard>Central Africa Time</standard>
  1448. </long>
  1449. </metazone>
  1450. <metazone type="Africa_Eastern">
  1451. <long>
  1452. <standard>East Africa Time</standard>
  1453. </long>
  1454. </metazone>
  1455. <metazone type="Africa_Southern">
  1456. <long>
  1457. <generic>South Africa Time</generic>
  1458. <standard>South Africa Standard Time</standard>
  1459. </long>
  1460. <short>
  1461. <generic>SAT</generic>
  1462. </short>
  1463. </metazone>
  1464. <metazone type="Africa_Western">
  1465. <long>
  1466. <standard>West Africa Time</standard>
  1467. <daylight>West Africa Summer Time</daylight>
  1468. </long>
  1469. </metazone>
  1470. <metazone type="Aktyubinsk">
  1471. <long>
  1472. <standard>Aktyubinsk Time</standard>
  1473. <daylight>Aktyubinsk Summer Time</daylight>
  1474. </long>
  1475. </metazone>
  1476. <metazone type="Alaska">
  1477. <long>
  1478. <generic>Alaska Time</generic>
  1479. <standard>Alaska Standard Time</standard>
  1480. <daylight>Alaska Daylight Time</daylight>
  1481. </long>
  1482. <short>
  1483. <generic>AKT</generic>
  1484. </short>
  1485. <commonlyUsed>true</commonlyUsed>
  1486. </metazone>
  1487. <metazone type="Alaska_Hawaii">
  1488. <long>
  1489. <generic>Alaska-Hawaii Time</generic>
  1490. <standard>Alaska-Hawaii Standard Time</standard>
  1491. <daylight>Alaska-Hawaii Daylight Time</daylight>
  1492. </long>
  1493. <short>
  1494. <generic>AHT</generic>
  1495. </short>
  1496. </metazone>
  1497. <metazone type="Almaty">
  1498. <long>
  1499. <standard>Almaty Time</standard>
  1500. <daylight>Almaty Summer Time</daylight>
  1501. </long>
  1502. </metazone>
  1503. <metazone type="Amazon">
  1504. <long>
  1505. <standard>Amazon Time</standard>
  1506. <daylight>Amazon Summer Time</daylight>
  1507. </long>
  1508. </metazone>
  1509. <metazone type="America_Central">
  1510. <long>
  1511. <generic>Central Time</generic>
  1512. <standard>Central Standard Time</standard>
  1513. <daylight>Central Daylight Time</daylight>
  1514. </long>
  1515. <short>
  1516. <generic>CT</generic>
  1517. </short>
  1518. <commonlyUsed>true</commonlyUsed>
  1519. </metazone>
  1520. <metazone type="America_Eastern">
  1521. <long>
  1522. <generic>Eastern Time</generic>
  1523. <standard>Eastern Standard Time</standard>
  1524. <daylight>Eastern Daylight Time</daylight>
  1525. </long>
  1526. <short>
  1527. <generic>ET</generic>
  1528. </short>
  1529. <commonlyUsed>true</commonlyUsed>
  1530. </metazone>
  1531. <metazone type="America_Mountain">
  1532. <long>
  1533. <generic>Mountain Time</generic>
  1534. <standard>Mountain Standard Time</standard>
  1535. <daylight>Mountain Daylight Time</daylight>
  1536. </long>
  1537. <short>
  1538. <generic>MT</generic>
  1539. </short>
  1540. <commonlyUsed>true</commonlyUsed>
  1541. </metazone>
  1542. <metazone type="America_Pacific">
  1543. <long>
  1544. <generic>Pacific Time</generic>
  1545. <standard>Pacific Standard Time</standard>
  1546. <daylight>Pacific Daylight Time</daylight>
  1547. </long>
  1548. <short>
  1549. <generic>PT</generic>
  1550. </short>
  1551. <commonlyUsed>true</commonlyUsed>
  1552. </metazone>
  1553. <metazone type="Anadyr">
  1554. <long>
  1555. <standard>Anadyr Time</standard>
  1556. <daylight>Anadyr Summer Time</daylight>
  1557. </long>
  1558. </metazone>
  1559. <metazone type="Aqtau">
  1560. <long>
  1561. <standard>Aqtau Time</standard>
  1562. <daylight>Aqtau Summer Time</daylight>
  1563. </long>
  1564. </metazone>
  1565. <metazone type="Aqtobe">
  1566. <long>
  1567. <standard>Aqtobe Time</standard>
  1568. <daylight>Aqtobe Summer Time</daylight>
  1569. </long>
  1570. </metazone>
  1571. <metazone type="Arabian">
  1572. <long>
  1573. <generic>Arabian Time</generic>
  1574. <standard>Arabian Standard Time</standard>
  1575. <daylight>Arabian Daylight Time</daylight>
  1576. </long>
  1577. <short>
  1578. <generic>AT (Arabian)</generic>
  1579. <standard>AST (Arabian)</standard>
  1580. <daylight>ADT (Arabian)</daylight>
  1581. </short>
  1582. </metazone>
  1583. <metazone type="Argentina">
  1584. <long>
  1585. <standard>Argentina Time</standard>
  1586. <daylight>Argentina Summer Time</daylight>
  1587. </long>
  1588. </metazone>
  1589. <metazone type="Argentina_Western">
  1590. <long>
  1591. <standard>Western Argentina Time</standard>
  1592. </long>
  1593. </metazone>
  1594. <metazone type="Armenia">
  1595. <long>
  1596. <standard>Armenia Time</standard>
  1597. <daylight>Armenia Summer Time</daylight>
  1598. </long>
  1599. <short>
  1600. <standard>AMT (Armenia)</standard>
  1601. <daylight>AMST (Armenia)</daylight>
  1602. </short>
  1603. </metazone>
  1604. <metazone type="Ashkhabad">
  1605. <long>
  1606. <standard>Ashkhabad Time</standard>
  1607. <daylight>Ashkhabad Summer Time</daylight>
  1608. </long>
  1609. </metazone>
  1610. <metazone type="Atlantic">
  1611. <long>
  1612. <generic>Atlantic Time</generic>
  1613. <standard>Atlantic Standard Time</standard>
  1614. <daylight>Atlantic Daylight Time</daylight>
  1615. </long>
  1616. <short>
  1617. <generic>AT</generic>
  1618. </short>
  1619. <commonlyUsed>true</commonlyUsed>
  1620. </metazone>
  1621. <metazone type="Australia_Central">
  1622. <long>
  1623. <generic>Central Australia Time</generic>
  1624. <standard>Australian Central Standard Time</standard>
  1625. <daylight>Australian Central Daylight Time</daylight>
  1626. </long>
  1627. <short>
  1628. <generic>ACT</generic>
  1629. </short>
  1630. </metazone>
  1631. <metazone type="Australia_CentralWestern">
  1632. <long>
  1633. <generic>Australian Central Western Time</generic>
  1634. <standard>Australian Central Western Standard Time</standard>
  1635. <daylight>Australian Central Western Daylight Time</daylight>
  1636. </long>
  1637. <short>
  1638. <generic>ACWT</generic>
  1639. </short>
  1640. </metazone>
  1641. <metazone type="Australia_Eastern">
  1642. <long>
  1643. <generic>Eastern Australia Time</generic>
  1644. <standard>Australian Eastern Standard Time</standard>
  1645. <daylight>Australian Eastern Daylight Time</daylight>
  1646. </long>
  1647. <short>
  1648. <generic>AET</generic>
  1649. </short>
  1650. </metazone>
  1651. <metazone type="Australia_Western">
  1652. <long>
  1653. <generic>Western Australia Time</generic>
  1654. <standard>Australian Western Standard Time</standard>
  1655. <daylight>Australian Western Daylight Time</daylight>
  1656. </long>
  1657. <short>
  1658. <generic>AWT</generic>
  1659. </short>
  1660. </metazone>
  1661. <metazone type="Azerbaijan">
  1662. <long>
  1663. <standard>Azerbaijan Time</standard>
  1664. <daylight>Azerbaijan Summer Time</daylight>
  1665. </long>
  1666. </metazone>
  1667. <metazone type="Azores">
  1668. <long>
  1669. <standard>Azores Time</standard>
  1670. <daylight>Azores Summer Time</daylight>
  1671. </long>
  1672. </metazone>
  1673. <metazone type="Baku">
  1674. <long>
  1675. <standard>Baku Time</standard>
  1676. <daylight>Baku Summer Time</daylight>
  1677. </long>
  1678. </metazone>
  1679. <metazone type="Bangladesh">
  1680. <long>
  1681. <standard>Bangladesh Time</standard>
  1682. <daylight>Bangladesh Summer Time</daylight>
  1683. </long>
  1684. </metazone>
  1685. <metazone type="Bering">
  1686. <long>
  1687. <generic>Bering Time</generic>
  1688. <standard>Bering Standard Time</standard>
  1689. <daylight>Bering Daylight Time</daylight>
  1690. </long>
  1691. <short>
  1692. <generic>BT (Bering)</generic>
  1693. </short>
  1694. </metazone>
  1695. <metazone type="Bhutan">
  1696. <long>
  1697. <standard>Bhutan Time</standard>
  1698. </long>
  1699. </metazone>
  1700. <metazone type="Bolivia">
  1701. <long>
  1702. <standard>Bolivia Time</standard>
  1703. </long>
  1704. </metazone>
  1705. <metazone type="Borneo">
  1706. <long>
  1707. <standard>Borneo Time</standard>
  1708. <daylight>Borneo Summer Time</daylight>
  1709. </long>
  1710. </metazone>
  1711. <metazone type="Brasilia">
  1712. <long>
  1713. <standard>Brasilia Time</standard>
  1714. <daylight>Brasilia Summer Time</daylight>
  1715. </long>
  1716. </metazone>
  1717. <metazone type="Brunei">
  1718. <long>
  1719. <standard>Brunei Darussalam Time</standard>
  1720. </long>
  1721. </metazone>
  1722. <metazone type="Cape_Verde">
  1723. <long>
  1724. <standard>Cape Verde Time</standard>
  1725. <daylight>Cape Verde Summer Time</daylight>
  1726. </long>
  1727. </metazone>
  1728. <metazone type="Chamorro">
  1729. <long>
  1730. <generic>Chamorro Time</generic>
  1731. <standard>Chamorro Standard Time</standard>
  1732. </long>
  1733. <short>
  1734. <generic>ChT</generic>
  1735. </short>
  1736. </metazone>
  1737. <metazone type="Changbai">
  1738. <long>
  1739. <standard>Changbai Time</standard>
  1740. </long>
  1741. </metazone>
  1742. <metazone type="Chatham">
  1743. <long>
  1744. <standard>Chatham Standard Time</standard>
  1745. <daylight>Chatham Daylight Time</daylight>
  1746. </long>
  1747. </metazone>
  1748. <metazone type="Chile">
  1749. <long>
  1750. <standard>Chile Time</standard>
  1751. <daylight>Chile Summer Time</daylight>
  1752. </long>
  1753. </metazone>
  1754. <metazone type="China">
  1755. <long>
  1756. <generic>China Time</generic>
  1757. <standard>China Standard Time</standard>
  1758. <daylight>China Daylight Time</daylight>
  1759. </long>
  1760. <short>
  1761. <generic>CT (China)</generic>
  1762. <standard>CST (China)</standard>
  1763. <daylight>CDT (China)</daylight>
  1764. </short>
  1765. </metazone>
  1766. <metazone type="Choibalsan">
  1767. <long>
  1768. <standard>Choibalsan Time</standard>
  1769. <daylight>Choibalsan Summer Time</daylight>
  1770. </long>
  1771. </metazone>
  1772. <metazone type="Christmas">
  1773. <long>
  1774. <standard>Christmas Island Time</standard>
  1775. </long>
  1776. </metazone>
  1777. <metazone type="Cocos">
  1778. <long>
  1779. <standard>Cocos Islands Time</standard>
  1780. </long>
  1781. </metazone>
  1782. <metazone type="Colombia">
  1783. <long>
  1784. <standard>Colombia Time</standard>
  1785. <daylight>Colombia Summer Time</daylight>
  1786. </long>
  1787. </metazone>
  1788. <metazone type="Cook">
  1789. <long>
  1790. <standard>Cook Islands Time</standard>
  1791. <daylight>Cook Islands Half Summer Time</daylight>
  1792. </long>
  1793. </metazone>
  1794. <metazone type="Cuba">
  1795. <long>
  1796. <generic>Cuba Time</generic>
  1797. <standard>Cuba Standard Time</standard>
  1798. <daylight>Cuba Daylight Time</daylight>
  1799. </long>
  1800. <short>
  1801. <standard>CST (Cuba)</standard>
  1802. <daylight>CDT (Cuba)</daylight>
  1803. </short>
  1804. </metazone>
  1805. <metazone type="Dacca">
  1806. <long>
  1807. <standard>Dacca Time</standard>
  1808. </long>
  1809. </metazone>
  1810. <metazone type="Davis">
  1811. <long>
  1812. <standard>Davis Time</standard>
  1813. </long>
  1814. </metazone>
  1815. <metazone type="DumontDUrville">
  1816. <long>
  1817. <standard>Dumont-d'Urville Time</standard>
  1818. </long>
  1819. </metazone>
  1820. <metazone type="Dushanbe">
  1821. <long>
  1822. <standard>Dushanbe Time</standard>
  1823. <daylight>Dushanbe Summer Time</daylight>
  1824. </long>
  1825. </metazone>
  1826. <metazone type="Dutch_Guiana">
  1827. <long>
  1828. <standard>Dutch Guiana Time</standard>
  1829. </long>
  1830. </metazone>
  1831. <metazone type="East_Timor">
  1832. <long>
  1833. <standard>East Timor Time</standard>
  1834. </long>
  1835. </metazone>
  1836. <metazone type="Easter">
  1837. <long>
  1838. <standard>Easter Island Time</standard>
  1839. <daylight>Easter Island Summer Time</daylight>
  1840. </long>
  1841. </metazone>
  1842. <metazone type="Ecuador">
  1843. <long>
  1844. <standard>Ecuador Time</standard>
  1845. </long>
  1846. </metazone>
  1847. <metazone type="Europe_Central">
  1848. <long>
  1849. <standard>Central European Time</standard>
  1850. <daylight>Central European Summer Time</daylight>
  1851. </long>
  1852. </metazone>
  1853. <metazone type="Europe_Eastern">
  1854. <long>
  1855. <standard>Eastern European Time</standard>
  1856. <daylight>Eastern European Summer Time</daylight>
  1857. </long>
  1858. </metazone>
  1859. <metazone type="Europe_Western">
  1860. <long>
  1861. <standard>Western European Time</standard>
  1862. <daylight>Western European Summer Time</daylight>
  1863. </long>
  1864. </metazone>
  1865. <metazone type="Falkland">
  1866. <long>
  1867. <standard>Falkland Islands Time</standard>
  1868. <daylight>Falkland Islands Summer Time</daylight>
  1869. </long>
  1870. </metazone>
  1871. <metazone type="Fiji">
  1872. <long>
  1873. <standard>Fiji Time</standard>
  1874. <daylight>Fiji Summer Time</daylight>
  1875. </long>
  1876. </metazone>
  1877. <metazone type="French_Guiana">
  1878. <long>
  1879. <standard>French Guiana Time</standard>
  1880. </long>
  1881. </metazone>
  1882. <metazone type="French_Southern">
  1883. <long>
  1884. <standard>French Southern and Antarctic Time</standard>
  1885. </long>
  1886. </metazone>
  1887. <metazone type="Frunze">
  1888. <long>
  1889. <standard>Frunze Time</standard>
  1890. <daylight>Frunze Summer Time</daylight>
  1891. </long>
  1892. </metazone>
  1893. <metazone type="Galapagos">
  1894. <long>
  1895. <standard>Galapagos Time</standard>
  1896. </long>
  1897. </metazone>
  1898. <metazone type="Gambier">
  1899. <long>
  1900. <standard>Gambier Time</standard>
  1901. </long>
  1902. </metazone>
  1903. <metazone type="Georgia">
  1904. <long>
  1905. <standard>Georgia Time</standard>
  1906. <daylight>Georgia Summer Time</daylight>
  1907. </long>
  1908. </metazone>
  1909. <metazone type="Gilbert_Islands">
  1910. <long>
  1911. <standard>Gilbert Islands Time</standard>
  1912. </long>
  1913. </metazone>
  1914. <metazone type="GMT">
  1915. <long>
  1916. <standard>Greenwich Mean Time</standard>
  1917. </long>
  1918. <commonlyUsed>true</commonlyUsed>
  1919. </metazone>
  1920. <metazone type="Greenland_Central">
  1921. <long>
  1922. <standard>Central Greenland Time</standard>
  1923. <daylight>Central Greenland Summer Time</daylight>
  1924. </long>
  1925. </metazone>
  1926. <metazone type="Greenland_Eastern">
  1927. <long>
  1928. <standard>East Greenland Time</standard>
  1929. <daylight>East Greenland Summer Time</daylight>
  1930. </long>
  1931. </metazone>
  1932. <metazone type="Greenland_Western">
  1933. <long>
  1934. <standard>West Greenland Time</standard>
  1935. <daylight>West Greenland Summer Time</daylight>
  1936. </long>
  1937. </metazone>
  1938. <metazone type="Guam">
  1939. <long>
  1940. <standard>Guam Standard Time</standard>
  1941. </long>
  1942. <short>
  1943. <standard>GST (Guam)</standard>
  1944. </short>
  1945. </metazone>
  1946. <metazone type="Gulf">
  1947. <long>
  1948. <generic>Gulf Time</generic>
  1949. <standard>Gulf Standard Time</standard>
  1950. </long>
  1951. <short>
  1952. <generic>GT</generic>
  1953. </short>
  1954. </metazone>
  1955. <metazone type="Guyana">
  1956. <long>
  1957. <standard>Guyana Time</standard>
  1958. </long>
  1959. </metazone>
  1960. <metazone type="Hawaii_Aleutian">
  1961. <long>
  1962. <standard>Hawaii-Aleutian Standard Time</standard>
  1963. </long>
  1964. <commonlyUsed>true</commonlyUsed>
  1965. </metazone>
  1966. <metazone type="Hong_Kong">
  1967. <long>
  1968. <standard>Hong Kong Time</standard>
  1969. <daylight>Hong Kong Summer Time</daylight>
  1970. </long>
  1971. </metazone>
  1972. <metazone type="Hovd">
  1973. <long>
  1974. <standard>Hovd Time</standard>
  1975. <daylight>Hovd Summer Time</daylight>
  1976. </long>
  1977. </metazone>
  1978. <metazone type="India">
  1979. <long>
  1980. <standard>India Standard Time</standard>
  1981. </long>
  1982. </metazone>
  1983. <metazone type="Indian_Ocean">
  1984. <long>
  1985. <standard>Indian Ocean Time</standard>
  1986. </long>
  1987. </metazone>
  1988. <metazone type="Indochina">
  1989. <long>
  1990. <standard>Indochina Time</standard>
  1991. </long>
  1992. </metazone>
  1993. <metazone type="Indonesia_Central">
  1994. <long>
  1995. <standard>Central Indonesia Time</standard>
  1996. </long>
  1997. </metazone>
  1998. <metazone type="Indonesia_Eastern">
  1999. <long>
  2000. <standard>Eastern Indonesia Time</standard>
  2001. </long>
  2002. </metazone>
  2003. <metazone type="Indonesia_Western">
  2004. <long>
  2005. <standard>Western Indonesia Time</standard>
  2006. </long>
  2007. </metazone>
  2008. <metazone type="Iran">
  2009. <long>
  2010. <standard>Iran Standard Time</standard>
  2011. <daylight>Iran Daylight Time</daylight>
  2012. </long>
  2013. </metazone>
  2014. <metazone type="Irkutsk">
  2015. <long>
  2016. <standard>Irkutsk Time</standard>
  2017. <daylight>Irkutsk Summer Time</daylight>
  2018. </long>
  2019. </metazone>
  2020. <metazone type="Israel">
  2021. <long>
  2022. <generic>Israel Time</generic>
  2023. <standard>Israel Standard Time</standard>
  2024. <daylight>Israel Daylight Time</daylight>
  2025. </long>
  2026. <short>
  2027. <standard>IST (Israel)</standard>
  2028. </short>
  2029. </metazone>
  2030. <metazone type="Japan">
  2031. <long>
  2032. <generic>Japan Time</generic>
  2033. <standard>Japan Standard Time</standard>
  2034. <daylight>Japan Daylight Time</daylight>
  2035. </long>
  2036. <short>
  2037. <generic>JT</generic>
  2038. </short>
  2039. </metazone>
  2040. <metazone type="Kamchatka">
  2041. <long>
  2042. <standard>Petropavlovsk-Kamchatski Time</standard>
  2043. <daylight>Petropavlovsk-Kamchatski Summer Time</daylight>
  2044. </long>
  2045. </metazone>
  2046. <metazone type="Karachi">
  2047. <long>
  2048. <standard>Karachi Time</standard>
  2049. </long>
  2050. </metazone>
  2051. <metazone type="Kashgar">
  2052. <long>
  2053. <standard>Kashgar Time</standard>
  2054. </long>
  2055. </metazone>
  2056. <metazone type="Kazakhstan_Eastern">
  2057. <long>
  2058. <generic>East Kazakhstan Time</generic>
  2059. <standard>East Kazakhstan Standard Time</standard>
  2060. </long>
  2061. </metazone>
  2062. <metazone type="Kazakhstan_Western">
  2063. <long>
  2064. <generic>West Kazakhstan Time</generic>
  2065. <standard>West Kazakhstan Standard Time</standard>
  2066. </long>
  2067. </metazone>
  2068. <metazone type="Kizilorda">
  2069. <long>
  2070. <standard>Kizilorda Time</standard>
  2071. <daylight>Kizilorda Summer Time</daylight>
  2072. </long>
  2073. </metazone>
  2074. <metazone type="Korea">
  2075. <long>
  2076. <generic>Korean Time</generic>
  2077. <standard>Korean Standard Time</standard>
  2078. <daylight>Korean Daylight Time</daylight>
  2079. </long>
  2080. <short>
  2081. <generic>KT</generic>
  2082. </short>
  2083. </metazone>
  2084. <metazone type="Kosrae">
  2085. <long>
  2086. <standard>Kosrae Time</standard>
  2087. </long>
  2088. </metazone>
  2089. <metazone type="Krasnoyarsk">
  2090. <long>
  2091. <standard>Krasnoyarsk Time</standard>
  2092. <daylight>Krasnoyarsk Summer Time</daylight>
  2093. </long>
  2094. </metazone>
  2095. <metazone type="Kuybyshev">
  2096. <long>
  2097. <standard>Kuybyshev Time</standard>
  2098. <daylight>Kuybyshev Summer Time</daylight>
  2099. </long>
  2100. </metazone>
  2101. <metazone type="Kwajalein">
  2102. <long>
  2103. <standard>Kwajalein Time</standard>
  2104. </long>
  2105. </metazone>
  2106. <metazone type="Kyrgystan">
  2107. <long>
  2108. <standard>Kyrgystan Time</standard>
  2109. </long>
  2110. </metazone>
  2111. <metazone type="Lanka">
  2112. <long>
  2113. <standard>Lanka Time</standard>
  2114. </long>
  2115. </metazone>
  2116. <metazone type="Line_Islands">
  2117. <long>
  2118. <standard>Line Islands Time</standard>
  2119. </long>
  2120. </metazone>
  2121. <metazone type="Long_Shu">
  2122. <long>
  2123. <standard>Long-Shu Time</standard>
  2124. </long>
  2125. </metazone>
  2126. <metazone type="Lord_Howe">
  2127. <long>
  2128. <generic>Lord Howe Time</generic>
  2129. <standard>Lord Howe Standard Time</standard>
  2130. <daylight>Lord Howe Daylight Time</daylight>
  2131. </long>
  2132. <short>
  2133. <generic>LHT</generic>
  2134. </short>
  2135. </metazone>
  2136. <metazone type="Macau">
  2137. <long>
  2138. <standard>Macau Time</standard>
  2139. <daylight>Macau Summer Time</daylight>
  2140. </long>
  2141. </metazone>
  2142. <metazone type="Magadan">
  2143. <long>
  2144. <standard>Magadan Time</standard>
  2145. <daylight>Magadan Summer Time</daylight>
  2146. </long>
  2147. </metazone>
  2148. <metazone type="Malaya">
  2149. <long>
  2150. <standard>Malaya Time</standard>
  2151. </long>
  2152. </metazone>
  2153. <metazone type="Malaysia">
  2154. <long>
  2155. <standard>Malaysia Time</standard>
  2156. </long>
  2157. </metazone>
  2158. <metazone type="Maldives">
  2159. <long>
  2160. <standard>Maldives Time</standard>
  2161. </long>
  2162. </metazone>
  2163. <metazone type="Marquesas">
  2164. <long>
  2165. <standard>Marquesas Time</standard>
  2166. </long>
  2167. </metazone>
  2168. <metazone type="Marshall_Islands">
  2169. <long>
  2170. <standard>Marshall Islands Time</standard>
  2171. </long>
  2172. </metazone>
  2173. <metazone type="Mauritius">
  2174. <long>
  2175. <standard>Mauritius Time</standard>
  2176. <daylight>Mauritius Summer Time</daylight>
  2177. </long>
  2178. </metazone>
  2179. <metazone type="Mawson">
  2180. <long>
  2181. <standard>Mawson Time</standard>
  2182. </long>
  2183. </metazone>
  2184. <metazone type="Mongolia">
  2185. <long>
  2186. <standard>Ulan Bator Time</standard>
  2187. <daylight>Ulan Bator Summer Time</daylight>
  2188. </long>
  2189. </metazone>
  2190. <metazone type="Moscow">
  2191. <long>
  2192. <generic>Moscow Time</generic>
  2193. <standard>Moscow Standard Time</standard>
  2194. <daylight>Moscow Summer Time</daylight>
  2195. </long>
  2196. </metazone>
  2197. <metazone type="Myanmar">
  2198. <long>
  2199. <standard>Myanmar Time</standard>
  2200. </long>
  2201. </metazone>
  2202. <metazone type="Nauru">
  2203. <long>
  2204. <standard>Nauru Time</standard>
  2205. </long>
  2206. </metazone>
  2207. <metazone type="Nepal">
  2208. <long>
  2209. <standard>Nepal Time</standard>
  2210. </long>
  2211. </metazone>
  2212. <metazone type="New_Caledonia">
  2213. <long>
  2214. <standard>New Caledonia Time</standard>
  2215. <daylight>New Caledonia Summer Time</daylight>
  2216. </long>
  2217. </metazone>
  2218. <metazone type="New_Zealand">
  2219. <long>
  2220. <generic>New Zealand Time</generic>
  2221. <standard>New Zealand Standard Time</standard>
  2222. <daylight>New Zealand Daylight Time</daylight>
  2223. </long>
  2224. <short>
  2225. <generic>NZT</generic>
  2226. </short>
  2227. </metazone>
  2228. <metazone type="Newfoundland">
  2229. <long>
  2230. <generic>Newfoundland Time</generic>
  2231. <standard>Newfoundland Standard Time</standard>
  2232. <daylight>Newfoundland Daylight Time</daylight>
  2233. </long>
  2234. <short>
  2235. <generic>NT</generic>
  2236. </short>
  2237. </metazone>
  2238. <metazone type="Niue">
  2239. <long>
  2240. <standard>Niue Time</standard>
  2241. </long>
  2242. </metazone>
  2243. <metazone type="Norfolk">
  2244. <long>
  2245. <standard>Norfolk Islands Time</standard>
  2246. </long>
  2247. </metazone>
  2248. <metazone type="Noronha">
  2249. <long>
  2250. <standard>Fernando de Noronha Time</standard>
  2251. <daylight>Fernando de Noronha Summer Time</daylight>
  2252. </long>
  2253. </metazone>
  2254. <metazone type="North_Mariana">
  2255. <long>
  2256. <standard>North Mariana Islands Time</standard>
  2257. </long>
  2258. </metazone>
  2259. <metazone type="Novosibirsk">
  2260. <long>
  2261. <standard>Novosibirsk Time</standard>
  2262. <daylight>Novosibirsk Summer Time</daylight>
  2263. </long>
  2264. </metazone>
  2265. <metazone type="Omsk">
  2266. <long>
  2267. <standard>Omsk Time</standard>
  2268. <daylight>Omsk Summer Time</daylight>
  2269. </long>
  2270. </metazone>
  2271. <metazone type="Pakistan">
  2272. <long>
  2273. <standard>Pakistan Time</standard>
  2274. <daylight>Pakistan Summer Time</daylight>
  2275. </long>
  2276. </metazone>
  2277. <metazone type="Palau">
  2278. <long>
  2279. <standard>Palau Time</standard>
  2280. </long>
  2281. </metazone>
  2282. <metazone type="Papua_New_Guinea">
  2283. <long>
  2284. <standard>Papua New Guinea Time</standard>
  2285. </long>
  2286. </metazone>
  2287. <metazone type="Paraguay">
  2288. <long>
  2289. <standard>Paraguay Time</standard>
  2290. <daylight>Paraguay Summer Time</daylight>
  2291. </long>
  2292. </metazone>
  2293. <metazone type="Peru">
  2294. <long>
  2295. <standard>Peru Time</standard>
  2296. <daylight>Peru Summer Time</daylight>
  2297. </long>
  2298. </metazone>
  2299. <metazone type="Philippines">
  2300. <long>
  2301. <standard>Philippine Time</standard>
  2302. <daylight>Philippine Summer Time</daylight>
  2303. </long>
  2304. </metazone>
  2305. <metazone type="Phoenix_Islands">
  2306. <long>
  2307. <standard>Phoenix Islands Time</standard>
  2308. </long>
  2309. </metazone>
  2310. <metazone type="Pierre_Miquelon">
  2311. <long>
  2312. <generic>Pierre and Miquelon Time</generic>
  2313. <standard>Pierre and Miquelon Standard Time</standard>
  2314. <daylight>Pierre and Miquelon Daylight Time</daylight>
  2315. </long>
  2316. <short>
  2317. <generic>PMT</generic>
  2318. </short>
  2319. </metazone>
  2320. <metazone type="Pitcairn">
  2321. <long>
  2322. <standard>Pitcairn Time</standard>
  2323. </long>
  2324. </metazone>
  2325. <metazone type="Ponape">
  2326. <long>
  2327. <standard>Ponape Time</standard>
  2328. </long>
  2329. </metazone>
  2330. <metazone type="Qyzylorda">
  2331. <long>
  2332. <standard>Qyzylorda Time</standard>
  2333. <daylight>Qyzylorda Summer Time</daylight>
  2334. </long>
  2335. </metazone>
  2336. <metazone type="Reunion">
  2337. <long>
  2338. <standard>Reunion Time</standard>
  2339. </long>
  2340. </metazone>
  2341. <metazone type="Rothera">
  2342. <long>
  2343. <standard>Rothera Time</standard>
  2344. </long>
  2345. </metazone>
  2346. <metazone type="Sakhalin">
  2347. <long>
  2348. <standard>Sakhalin Time</standard>
  2349. <daylight>Sakhalin Summer Time</daylight>
  2350. </long>
  2351. </metazone>
  2352. <metazone type="Samara">
  2353. <long>
  2354. <standard>Samara Time</standard>
  2355. <daylight>Samara Summer Time</daylight>
  2356. </long>
  2357. </metazone>
  2358. <metazone type="Samarkand">
  2359. <long>
  2360. <standard>Samarkand Time</standard>
  2361. <daylight>Samarkand Summer Time</daylight>
  2362. </long>
  2363. </metazone>
  2364. <metazone type="Samoa">
  2365. <long>
  2366. <standard>Samoa Standard Time</standard>
  2367. </long>
  2368. </metazone>
  2369. <metazone type="Seychelles">
  2370. <long>
  2371. <standard>Seychelles Time</standard>
  2372. </long>
  2373. </metazone>
  2374. <metazone type="Shevchenko">
  2375. <long>
  2376. <standard>Shevchenko Time</standard>
  2377. <daylight>Shevchenko Summer Time</daylight>
  2378. </long>
  2379. </metazone>
  2380. <metazone type="Singapore">
  2381. <long>
  2382. <standard>Singapore Standard Time</standard>
  2383. </long>
  2384. </metazone>
  2385. <metazone type="Solomon">
  2386. <long>
  2387. <standard>Solomon Islands Time</standard>
  2388. </long>
  2389. </metazone>
  2390. <metazone type="South_Georgia">
  2391. <long>
  2392. <standard>South Georgia Time</standard>
  2393. </long>
  2394. <short>
  2395. <standard>GST (S. Georgia)</standard>
  2396. </short>
  2397. </metazone>
  2398. <metazone type="Suriname">
  2399. <long>
  2400. <standard>Suriname Time</standard>
  2401. </long>
  2402. </metazone>
  2403. <metazone type="Sverdlovsk">
  2404. <long>
  2405. <standard>Sverdlovsk Time</standard>
  2406. <daylight>Sverdlovsk Summer Time</daylight>
  2407. </long>
  2408. </metazone>
  2409. <metazone type="Syowa">
  2410. <long>
  2411. <standard>Syowa Time</standard>
  2412. </long>
  2413. </metazone>
  2414. <metazone type="Tahiti">
  2415. <long>
  2416. <standard>Tahiti Time</standard>
  2417. </long>
  2418. </metazone>
  2419. <metazone type="Taipei">
  2420. <long>
  2421. <generic>Taipei Time</generic>
  2422. <standard>Taipei Standard Time</standard>
  2423. <daylight>Taipei Daylight Time</daylight>
  2424. </long>
  2425. <short>
  2426. <generic>CT (Taipei)</generic>
  2427. <standard>CST (Taipei)</standard>
  2428. <daylight>CDT (Taipei)</daylight>
  2429. </short>
  2430. </metazone>
  2431. <metazone type="Tajikistan">
  2432. <long>
  2433. <standard>Tajikistan Time</standard>
  2434. </long>
  2435. </metazone>
  2436. <metazone type="Tashkent">
  2437. <long>
  2438. <standard>Tashkent Time</standard>
  2439. <daylight>Tashkent Summer Time</daylight>
  2440. </long>
  2441. </metazone>
  2442. <metazone type="Tbilisi">
  2443. <long>
  2444. <standard>Tbilisi Time</standard>
  2445. <daylight>Tbilisi Summer Time</daylight>
  2446. </long>
  2447. </metazone>
  2448. <metazone type="Tokelau">
  2449. <long>
  2450. <standard>Tokelau Time</standard>
  2451. </long>
  2452. </metazone>
  2453. <metazone type="Tonga">
  2454. <long>
  2455. <standard>Tonga Time</standard>
  2456. <daylight>Tonga Summer Time</daylight>
  2457. </long>
  2458. </metazone>
  2459. <metazone type="Truk">
  2460. <long>
  2461. <standard>Truk Time</standard>
  2462. </long>
  2463. </metazone>
  2464. <metazone type="Turkey">
  2465. <long>
  2466. <standard>Turkey Time</standard>
  2467. <daylight>Turkey Summer Time</daylight>
  2468. </long>
  2469. </metazone>
  2470. <metazone type="Turkmenistan">
  2471. <long>
  2472. <standard>Turkmenistan Time</standard>
  2473. <daylight>Turkmenistan Summer Time</daylight>
  2474. </long>
  2475. </metazone>
  2476. <metazone type="Tuvalu">
  2477. <long>
  2478. <standard>Tuvalu Time</standard>
  2479. </long>
  2480. </metazone>
  2481. <metazone type="Uralsk">
  2482. <long>
  2483. <standard>Ural'sk Time</standard>
  2484. <daylight>Ural'sk Summer Time</daylight>
  2485. </long>
  2486. </metazone>
  2487. <metazone type="Uruguay">
  2488. <long>
  2489. <standard>Uruguay Time</standard>
  2490. <daylight>Uruguay Summer Time</daylight>
  2491. </long>
  2492. </metazone>
  2493. <metazone type="Urumqi">
  2494. <long>
  2495. <standard>Urumqi Time</standard>
  2496. </long>
  2497. </metazone>
  2498. <metazone type="Uzbekistan">
  2499. <long>
  2500. <standard>Uzbekistan Time</standard>
  2501. <daylight>Uzbekistan Summer Time</daylight>
  2502. </long>
  2503. </metazone>
  2504. <metazone type="Vanuatu">
  2505. <long>
  2506. <standard>Vanuatu Time</standard>
  2507. <daylight>Vanuatu Summer Time</daylight>
  2508. </long>
  2509. </metazone>
  2510. <metazone type="Venezuela">
  2511. <long>
  2512. <standard>Venezuela Time</standard>
  2513. </long>
  2514. </metazone>
  2515. <metazone type="Vladivostok">
  2516. <long>
  2517. <standard>Vladivostok Time</standard>
  2518. <daylight>Vladivostok Summer Time</daylight>
  2519. </long>
  2520. </metazone>
  2521. <metazone type="Volgograd">
  2522. <long>
  2523. <standard>Volgograd Time</standard>
  2524. <daylight>Volgograd Summer Time</daylight>
  2525. </long>
  2526. </metazone>
  2527. <metazone type="Vostok">
  2528. <long>
  2529. <standard>Vostok Time</standard>
  2530. </long>
  2531. </metazone>
  2532. <metazone type="Wake">
  2533. <long>
  2534. <standard>Wake Island Time</standard>
  2535. </long>
  2536. </metazone>
  2537. <metazone type="Wallis">
  2538. <long>
  2539. <standard>Wallis and Futuna Time</standard>
  2540. </long>
  2541. </metazone>
  2542. <metazone type="Yakutsk">
  2543. <long>
  2544. <standard>Yakutsk Time</standard>
  2545. <daylight>Yakutsk Summer Time</daylight>
  2546. </long>
  2547. </metazone>
  2548. <metazone type="Yekaterinburg">
  2549. <long>
  2550. <standard>Yekaterinburg Time</standard>
  2551. <daylight>Yekaterinburg Summer Time</daylight>
  2552. </long>
  2553. </metazone>
  2554. <metazone type="Yerevan">
  2555. <long>
  2556. <standard>Yerevan Time</standard>
  2557. <daylight>Yerevan Summer Time</daylight>
  2558. </long>
  2559. </metazone>
  2560. <metazone type="Yukon">
  2561. <long>
  2562. <generic>Yukon Time</generic>
  2563. <standard>Yukon Standard Time</standard>
  2564. <daylight>Yukon Daylight Time</daylight>
  2565. </long>
  2566. <short>
  2567. <generic>YT</generic>
  2568. </short>
  2569. </metazone>
  2570. </timeZoneNames>
  2571. </dates>
  2572. <numbers>
  2573. <symbols>
  2574. <decimal>.</decimal>
  2575. <group>,</group>
  2576. <list>;</list>
  2577. <percentSign>%</percentSign>
  2578. <nativeZeroDigit>0</nativeZeroDigit>
  2579. <patternDigit>#</patternDigit>
  2580. <plusSign>+</plusSign>
  2581. <minusSign>-</minusSign>
  2582. <exponential>E</exponential>
  2583. <perMille>‰</perMille>
  2584. <infinity>∞</infinity>
  2585. <nan>NaN</nan>
  2586. </symbols>
  2587. <decimalFormats>
  2588. <decimalFormatLength>
  2589. <decimalFormat>
  2590. <pattern>#,##0.###</pattern>
  2591. </decimalFormat>
  2592. </decimalFormatLength>
  2593. </decimalFormats>
  2594. <scientificFormats>
  2595. <scientificFormatLength>
  2596. <scientificFormat>
  2597. <pattern>#E0</pattern>
  2598. </scientificFormat>
  2599. </scientificFormatLength>
  2600. </scientificFormats>
  2601. <percentFormats>
  2602. <percentFormatLength>
  2603. <percentFormat>
  2604. <pattern>#,##0%</pattern>
  2605. </percentFormat>
  2606. </percentFormatLength>
  2607. </percentFormats>
  2608. <currencyFormats>
  2609. <currencyFormatLength>
  2610. <currencyFormat>
  2611. <pattern>¤#,##0.00;(¤#,##0.00)</pattern>
  2612. </currencyFormat>
  2613. </currencyFormatLength>
  2614. <unitPattern count="one">{0} {1}</unitPattern>
  2615. <unitPattern count="other">{0} {1}</unitPattern>
  2616. </currencyFormats>
  2617. <currencies>
  2618. <currency type="ADP">
  2619. <displayName>Andorran Peseta</displayName>
  2620. <displayName count="one">Andorran peseta</displayName>
  2621. <displayName count="other">Andorran pesetas</displayName>
  2622. </currency>
  2623. <currency type="AED">
  2624. <displayName>United Arab Emirates Dirham</displayName>
  2625. <displayName count="one">UAE dirham</displayName>
  2626. <displayName count="other">UAE dirhams</displayName>
  2627. </currency>
  2628. <currency type="AFA">
  2629. <displayName>Afghan Afghani (1927-2002)</displayName>
  2630. <displayName count="one">Afghan Afghani (AFA)</displayName>
  2631. <displayName count="other">Afghan Afghanis (AFA)</displayName>
  2632. </currency>
  2633. <currency type="AFN">
  2634. <displayName>Afghan Afghani</displayName>
  2635. <displayName count="one">Afghan Afghani</displayName>
  2636. <displayName count="other">Afghan Afghanis</displayName>
  2637. </currency>
  2638. <currency type="ALL">
  2639. <displayName>Albanian Lek</displayName>
  2640. <displayName count="one">Albanian lek</displayName>
  2641. <displayName count="other">Albanian lekë</displayName>
  2642. </currency>
  2643. <currency type="AMD">
  2644. <displayName>Armenian Dram</displayName>
  2645. <displayName count="one">Armenian dram</displayName>
  2646. <displayName count="other">Armenian drams</displayName>
  2647. </currency>
  2648. <currency type="ANG">
  2649. <displayName>Netherlands Antillean Guilder</displayName>
  2650. <displayName count="one">Netherlands Antillean guilder</displayName>
  2651. <displayName count="other">Netherlands Antillean guilders</displayName>
  2652. </currency>
  2653. <currency type="AOA">
  2654. <displayName>Angolan Kwanza</displayName>
  2655. <displayName count="one">Angolan kwanza</displayName>
  2656. <displayName count="other">Angolan kwanzas</displayName>
  2657. </currency>
  2658. <currency type="AOK">
  2659. <displayName>Angolan Kwanza (1977-1990)</displayName>
  2660. <displayName count="one">Angolan kwanza (AOK)</displayName>
  2661. <displayName count="other">Angolan kwanzas (AOK)</displayName>
  2662. </currency>
  2663. <currency type="AON">
  2664. <displayName>Angolan New Kwanza (1990-2000)</displayName>
  2665. <displayName count="one">Angolan new kwanza (AON)</displayName>
  2666. <displayName count="other">Angolan new kwanzas (AON)</displayName>
  2667. </currency>
  2668. <currency type="AOR">
  2669. <displayName>Angolan Kwanza Reajustado (1995-1999)</displayName>
  2670. <displayName count="one">Angolan kwanza reajustado (AOR)</displayName>
  2671. <displayName count="other">Angolan kwanzas reajustado (AOR)</displayName>
  2672. </currency>
  2673. <currency type="ARA">
  2674. <displayName>Argentine Austral</displayName>
  2675. <displayName count="one">Argentine austral</displayName>
  2676. <displayName count="other">Argentine australs</displayName>
  2677. </currency>
  2678. <currency type="ARL">
  2679. <displayName>Argentine Peso Ley</displayName>
  2680. <displayName count="one">Argentine peso ley</displayName>
  2681. <displayName count="other">Argentine pesos ley</displayName>
  2682. </currency>
  2683. <currency type="ARM">
  2684. <displayName>Argentine Peso Moneda Nacional</displayName>
  2685. <displayName count="one">Argentine peso moneda nacional</displayName>
  2686. <displayName count="other">Argentine pesos moneda nacional</displayName>
  2687. </currency>
  2688. <currency type="ARP">
  2689. <displayName>Argentine Peso (1983-1985)</displayName>
  2690. <displayName count="one">Argentine peso (ARP)</displayName>
  2691. <displayName count="other">Argentine pesos (ARP)</displayName>
  2692. </currency>
  2693. <currency type="ARS">
  2694. <displayName>Argentine Peso</displayName>
  2695. <displayName count="one">Argentine peso</displayName>
  2696. <displayName count="other">Argentine pesos</displayName>
  2697. </currency>
  2698. <currency type="ATS">
  2699. <displayName>Austrian Schilling</displayName>
  2700. <displayName count="one">Austrian schilling</displayName>
  2701. <displayName count="other">Austrian schillings</displayName>
  2702. </currency>
  2703. <currency type="AUD">
  2704. <displayName>Australian Dollar</displayName>
  2705. <displayName count="one">Australian dollar</displayName>
  2706. <displayName count="other">Australian dollars</displayName>
  2707. </currency>
  2708. <currency type="AWG">
  2709. <displayName>Aruban Florin</displayName>
  2710. <displayName count="one">Aruban florin</displayName>
  2711. <displayName count="other">Aruban florin</displayName>
  2712. </currency>
  2713. <currency type="AZM">
  2714. <displayName>Azerbaijani Manat (1993-2006)</displayName>
  2715. <displayName count="one">Azerbaijani manat (AZM)</displayName>
  2716. <displayName count="other">Azerbaijani manats (AZM)</displayName>
  2717. </currency>
  2718. <currency type="AZN">
  2719. <displayName>Azerbaijani Manat</displayName>
  2720. <displayName count="one">Azerbaijani manat</displayName>
  2721. <displayName count="other">Azerbaijani manats</displayName>
  2722. </currency>
  2723. <currency type="BAD">
  2724. <displayName>Bosnia-Herzegovina Dinar</displayName>
  2725. <displayName count="one">Bosnia-Herzegovina dinar</displayName>
  2726. <displayName count="other">Bosnia-Herzegovina dinars</displayName>
  2727. </currency>
  2728. <currency type="BAM">
  2729. <displayName>Bosnia-Herzegovina Convertible Mark</displayName>
  2730. <displayName count="one">Bosnia-Herzegovina convertible mark</displayName>
  2731. <displayName count="other">Bosnia-Herzegovina convertible marks</displayName>
  2732. </currency>
  2733. <currency type="BAN">
  2734. <displayName>Bosnia-Herzegovina New Dinar</displayName>
  2735. <displayName count="one">Bosnia-Herzegovina new dinar</displayName>
  2736. <displayName count="other">Bosnia-Herzegovina new dinars</displayName>
  2737. </currency>
  2738. <currency type="BBD">
  2739. <displayName>Barbadian Dollar</displayName>
  2740. <displayName count="one">Barbadian dollar</displayName>
  2741. <displayName count="other">Barbadian dollars</displayName>
  2742. </currency>
  2743. <currency type="BDT">
  2744. <displayName>Bangladeshi Taka</displayName>
  2745. <displayName count="one">Bangladeshi taka</displayName>
  2746. <displayName count="other">Bangladeshi takas</displayName>
  2747. </currency>
  2748. <currency type="BEC">
  2749. <displayName>Belgian Franc (convertible)</displayName>
  2750. <displayName count="one">Belgian franc (convertible)</displayName>
  2751. <displayName count="other">Belgian francs (convertible)</displayName>
  2752. </currency>
  2753. <currency type="BEF">
  2754. <displayName>Belgian Franc</displayName>
  2755. <displayName count="one">Belgian franc</displayName>
  2756. <displayName count="other">Belgian francs</displayName>
  2757. </currency>
  2758. <currency type="BEL">
  2759. <displayName>Belgian Franc (financial)</displayName>
  2760. <displayName count="one">Belgian franc (financial)</displayName>
  2761. <displayName count="other">Belgian francs (financial)</displayName>
  2762. </currency>
  2763. <currency type="BGL">
  2764. <displayName>Bulgarian Hard Lev</displayName>
  2765. <displayName count="one">Bulgarian hard lev</displayName>
  2766. <displayName count="other">Bulgarian hard leva</displayName>
  2767. </currency>
  2768. <currency type="BGM">
  2769. <displayName>Bulgarian Socialist Lev</displayName>
  2770. <displayName count="one">Bulgarian socialist lev</displayName>
  2771. <displayName count="other">Bulgarian socialist leva</displayName>
  2772. </currency>
  2773. <currency type="BGN">
  2774. <displayName>Bulgarian Lev</displayName>
  2775. <displayName count="one">Bulgarian lev</displayName>
  2776. <displayName count="other">Bulgarian leva</displayName>
  2777. </currency>
  2778. <currency type="BGO">
  2779. <displayName>Old Bulgarian Lev</displayName>
  2780. <displayName count="one">Old Bulgarian lev</displayName>
  2781. <displayName count="other">Old Bulgarian leva</displayName>
  2782. </currency>
  2783. <currency type="BHD">
  2784. <displayName>Bahraini Dinar</displayName>
  2785. <displayName count="one">Bahraini dinar</displayName>
  2786. <displayName count="other">Bahraini dinars</displayName>
  2787. </currency>
  2788. <currency type="BIF">
  2789. <displayName>Burundian Franc</displayName>
  2790. <displayName count="one">Burundian franc</displayName>
  2791. <displayName count="other">Burundian francs</displayName>
  2792. </currency>
  2793. <currency type="BMD">
  2794. <displayName>Bermudan Dollar</displayName>
  2795. <displayName count="one">Bermudan dollar</displayName>
  2796. <displayName count="other">Bermudan dollars</displayName>
  2797. </currency>
  2798. <currency type="BND">
  2799. <displayName>Brunei Dollar</displayName>
  2800. <displayName count="one">Brunei dollar</displayName>
  2801. <displayName count="other">Brunei dollars</displayName>
  2802. </currency>
  2803. <currency type="BOB">
  2804. <displayName>Bolivian Boliviano</displayName>
  2805. <displayName count="one">Bolivian boliviano</displayName>
  2806. <displayName count="other">Bolivian bolivianos</displayName>
  2807. </currency>
  2808. <currency type="BOL">
  2809. <displayName>Old Bolivian Boliviano</displayName>
  2810. <displayName count="one">Old Bolivian boliviano</displayName>
  2811. <displayName count="other">Old Bolivian bolivianos</displayName>
  2812. </currency>
  2813. <currency type="BOP">
  2814. <displayName>Bolivian Peso</displayName>
  2815. <displayName count="one">Bolivian peso</displayName>
  2816. <displayName count="other">Bolivian pesos</displayName>
  2817. </currency>
  2818. <currency type="BOV">
  2819. <displayName>Bolivian Mvdol</displayName>
  2820. <displayName count="one">Bolivian mvdol</displayName>
  2821. <displayName count="other">Bolivian mvdols</displayName>
  2822. </currency>
  2823. <currency type="BRB">
  2824. <displayName>Brazilian Cruzeiro Novo (1967-1986)</displayName>
  2825. <displayName count="one">Brazilian cruzeiro novo (BRB)</displayName>
  2826. <displayName count="other">Brazilian cruzeiros novo (BRB)</displayName>
  2827. </currency>
  2828. <currency type="BRC">
  2829. <displayName>Brazilian Cruzado</displayName>
  2830. <displayName count="one">Brazilian cruzado</displayName>
  2831. <displayName count="other">Brazilian cruzados</displayName>
  2832. </currency>
  2833. <currency type="BRE">
  2834. <displayName>Brazilian Cruzeiro (1990-1993)</displayName>
  2835. <displayName count="one">Brazilian cruzeiro (BRE)</displayName>
  2836. <displayName count="other">Brazilian cruzeiros (BRE)</displayName>
  2837. </currency>
  2838. <currency type="BRL">
  2839. <displayName>Brazilian Real</displayName>
  2840. <displayName count="one">Brazilian real</displayName>
  2841. <displayName count="other">Brazilian reals</displayName>
  2842. </currency>
  2843. <currency type="BRN">
  2844. <displayName>Brazilian Cruzado Novo</displayName>
  2845. <displayName count="one">Brazilian cruzado novo</displayName>
  2846. <displayName count="other">Brazilian cruzado novos</displayName>
  2847. </currency>
  2848. <currency type="BRR">
  2849. <displayName>Brazilian Cruzeiro</displayName>
  2850. <displayName count="one">Brazilian cruzeiro</displayName>
  2851. <displayName count="other">Brazilian cruzeiros</displayName>
  2852. </currency>
  2853. <currency type="BRZ">
  2854. <displayName>Old Brazilian Cruzeiro</displayName>
  2855. <displayName count="one">Old Brazilian cruzeiro</displayName>
  2856. <displayName count="other">Old Brazilian cruzeiros</displayName>
  2857. </currency>
  2858. <currency type="BSD">
  2859. <displayName>Bahamian Dollar</displayName>
  2860. <displayName count="one">Bahamian dollar</displayName>
  2861. <displayName count="other">Bahamian dollars</displayName>
  2862. </currency>
  2863. <currency type="BTN">
  2864. <displayName>Bhutanese Ngultrum</displayName>
  2865. <displayName count="one">Bhutanese ngultrum</displayName>
  2866. <displayName count="other">Bhutanese ngultrums</displayName>
  2867. </currency>
  2868. <currency type="BUK">
  2869. <displayName>Burmese Kyat</displayName>
  2870. <displayName count="one">Burmese kyat</displayName>
  2871. <displayName count="other">Burmese kyats</displayName>
  2872. </currency>
  2873. <currency type="BWP">
  2874. <displayName>Botswanan Pula</displayName>
  2875. <displayName count="one">Botswanan pula</displayName>
  2876. <displayName count="other">Botswanan pulas</displayName>
  2877. </currency>
  2878. <currency type="BYB">
  2879. <displayName>Belarusian New Ruble (1994-1999)</displayName>
  2880. <displayName count="one">Belarusian new ruble (BYB)</displayName>
  2881. <displayName count="other">Belarusian new rubles (BYB)</displayName>
  2882. </currency>
  2883. <currency type="BYR">
  2884. <displayName>Belarusian Ruble</displayName>
  2885. <displayName count="one">Belarusian ruble</displayName>
  2886. <displayName count="other">Belarusian rubles</displayName>
  2887. </currency>
  2888. <currency type="BZD">
  2889. <displayName>Belize Dollar</displayName>
  2890. <displayName count="one">Belize dollar</displayName>
  2891. <displayName count="other">Belize dollars</displayName>
  2892. </currency>
  2893. <currency type="CAD">
  2894. <displayName>Canadian Dollar</displayName>
  2895. <displayName count="one">Canadian dollar</displayName>
  2896. <displayName count="other">Canadian dollars</displayName>
  2897. </currency>
  2898. <currency type="CDF">
  2899. <displayName>Congolese Franc</displayName>
  2900. <displayName count="one">Congolese franc</displayName>
  2901. <displayName count="other">Congolese francs</displayName>
  2902. </currency>
  2903. <currency type="CHE">
  2904. <displayName>WIR Euro</displayName>
  2905. <displayName count="one">WIR euro</displayName>
  2906. <displayName count="other">WIR euros</displayName>
  2907. </currency>
  2908. <currency type="CHF">
  2909. <displayName>Swiss Franc</displayName>
  2910. <displayName count="one">Swiss franc</displayName>
  2911. <displayName count="other">Swiss francs</displayName>
  2912. </currency>
  2913. <currency type="CHW">
  2914. <displayName>WIR Franc</displayName>
  2915. <displayName count="one">WIR franc</displayName>
  2916. <displayName count="other">WIR francs</displayName>
  2917. </currency>
  2918. <currency type="CLE">
  2919. <displayName>Chilean Escudo</displayName>
  2920. <displayName count="one">Chilean escudo</displayName>
  2921. <displayName count="other">Chilean escudos</displayName>
  2922. </currency>
  2923. <currency type="CLF">
  2924. <displayName>Chilean Unidades de Fomento</displayName>
  2925. <displayName count="one">Chilean unidades de fomento</displayName>
  2926. <displayName count="other">Chilean unidades de fomentos</displayName>
  2927. </currency>
  2928. <currency type="CLP">
  2929. <displayName>Chilean Peso</displayName>
  2930. <displayName count="one">Chilean peso</displayName>
  2931. <displayName count="other">Chilean pesos</displayName>
  2932. </currency>
  2933. <currency type="CNY">
  2934. <displayName>Chinese Yuan Renminbi</displayName>
  2935. <displayName count="one">Chinese yuan</displayName>
  2936. <displayName count="other">Chinese yuan</displayName>
  2937. </currency>
  2938. <currency type="COP">
  2939. <displayName>Colombian Peso</displayName>
  2940. <displayName count="one">Colombian peso</displayName>
  2941. <displayName count="other">Colombian pesos</displayName>
  2942. </currency>
  2943. <currency type="COU">
  2944. <displayName>Unidad de Valor Real</displayName>
  2945. <displayName count="one">unidad de valor real</displayName>
  2946. <displayName count="other">unidad de valor reals</displayName>
  2947. </currency>
  2948. <currency type="CRC">
  2949. <displayName>Costa Rican Colón</displayName>
  2950. <displayName count="one">Costa Rican colón</displayName>
  2951. <displayName count="other">Costa Rican colóns</displayName>
  2952. </currency>
  2953. <currency type="CSD">
  2954. <displayName>Old Serbian Dinar</displayName>
  2955. <displayName count="one">Old Serbian dinar</displayName>
  2956. <displayName count="other">Old Serbian dinars</displayName>
  2957. </currency>
  2958. <currency type="CSK">
  2959. <displayName>Czechoslovak Hard Koruna</displayName>
  2960. <displayName count="one">Czechoslovak hard koruna</displayName>
  2961. <displayName count="other">Czechoslovak hard korunas</displayName>
  2962. </currency>
  2963. <currency type="CUC">
  2964. <displayName>Cuban Convertible Peso</displayName>
  2965. <displayName count="one">Cuban convertible peso</displayName>
  2966. <displayName count="other">Cuban convertible pesos</displayName>
  2967. </currency>
  2968. <currency type="CUP">
  2969. <displayName>Cuban Peso</displayName>
  2970. <displayName count="one">Cuban peso</displayName>
  2971. <displayName count="other">Cuban pesos</displayName>
  2972. </currency>
  2973. <currency type="CVE">
  2974. <displayName>Cape Verdean Escudo</displayName>
  2975. <displayName count="one">Cape Verdean escudo</displayName>
  2976. <displayName count="other">Cape Verdean escudos</displayName>
  2977. </currency>
  2978. <currency type="CYP">
  2979. <displayName>Cypriot Pound</displayName>
  2980. <displayName count="one">Cypriot pound</displayName>
  2981. <displayName count="other">Cypriot pounds</displayName>
  2982. </currency>
  2983. <currency type="CZK">
  2984. <displayName>Czech Republic Koruna</displayName>
  2985. <displayName count="one">Czech Republic koruna</displayName>
  2986. <displayName count="other">Czech Republic korunas</displayName>
  2987. </currency>
  2988. <currency type="DDM">
  2989. <displayName>East German Mark</displayName>
  2990. <displayName count="one">East German mark</displayName>
  2991. <displayName count="other">East German marks</displayName>
  2992. </currency>
  2993. <currency type="DEM">
  2994. <displayName>German Mark</displayName>
  2995. <displayName count="one">German mark</displayName>
  2996. <displayName count="other">German marks</displayName>
  2997. </currency>
  2998. <currency type="DJF">
  2999. <displayName>Djiboutian Franc</displayName>
  3000. <displayName count="one">Djiboutian franc</displayName>
  3001. <displayName count="other">Djiboutian francs</displayName>
  3002. </currency>
  3003. <currency type="DKK">
  3004. <displayName>Danish Krone</displayName>
  3005. <displayName count="one">Danish krone</displayName>
  3006. <displayName count="other">Danish kroner</displayName>
  3007. </currency>
  3008. <currency type="DOP">
  3009. <displayName>Dominican Peso</displayName>
  3010. <displayName count="one">Dominican peso</displayName>
  3011. <displayName count="other">Dominican pesos</displayName>
  3012. </currency>
  3013. <currency type="DZD">
  3014. <displayName>Algerian Dinar</displayName>
  3015. <displayName count="one">Algerian dinar</displayName>
  3016. <displayName count="other">Algerian dinars</displayName>
  3017. </currency>
  3018. <currency type="ECS">
  3019. <displayName>Ecuadorian Sucre</displayName>
  3020. <displayName count="one">Ecuadorian sucre</displayName>
  3021. <displayName count="other">Ecuadorian sucres</displayName>
  3022. </currency>
  3023. <currency type="ECV">
  3024. <displayName>Ecuadorian Unidad de Valor Constante (UVC)</displayName>
  3025. <displayName count="one">Ecuadorian unidad de valor Constante (UVC)</displayName>
  3026. <displayName count="other">Ecuadorian unidads de valor Constante (UVC)</displayName>
  3027. </currency>
  3028. <currency type="EEK">
  3029. <displayName>Estonian Kroon</displayName>
  3030. <displayName count="one">Estonian kroon</displayName>
  3031. <displayName count="other">Estonian kroons</displayName>
  3032. </currency>
  3033. <currency type="EGP">
  3034. <displayName>Egyptian Pound</displayName>
  3035. <displayName count="one">Egyptian pound</displayName>
  3036. <displayName count="other">Egyptian pounds</displayName>
  3037. </currency>
  3038. <currency type="ERN">
  3039. <displayName>Eritrean Nakfa</displayName>
  3040. <displayName count="one">Eritrean nakfa</displayName>
  3041. <displayName count="other">Eritrean nakfas</displayName>
  3042. </currency>
  3043. <currency type="ESA">
  3044. <displayName>Spanish Peseta (A account)</displayName>
  3045. <displayName count="one">Spanish peseta (A account)</displayName>
  3046. <displayName count="other">Spanish pesetas (A account)</displayName>
  3047. </currency>
  3048. <currency type="ESB">
  3049. <displayName>Spanish Peseta (convertible account)</displayName>
  3050. <displayName count="one">Spanish peseta (convertible account)</displayName>
  3051. <displayName count="other">Spanish pesetas (convertible account)</displayName>
  3052. </currency>
  3053. <currency type="ESP">
  3054. <displayName>Spanish Peseta</displayName>
  3055. <displayName count="one">Spanish peseta</displayName>
  3056. <displayName count="other">Spanish pesetas</displayName>
  3057. </currency>
  3058. <currency type="ETB">
  3059. <displayName>Ethiopian Birr</displayName>
  3060. <displayName count="one">Ethiopian birr</displayName>
  3061. <displayName count="other">Ethiopian birrs</displayName>
  3062. </currency>
  3063. <currency type="EUR">
  3064. <displayName>Euro</displayName>
  3065. <displayName count="one">euro</displayName>
  3066. <displayName count="other">euros</displayName>
  3067. </currency>
  3068. <currency type="FIM">
  3069. <displayName>Finnish Markka</displayName>
  3070. <displayName count="one">Finnish markka</displayName>
  3071. <displayName count="other">Finnish markkas</displayName>
  3072. </currency>
  3073. <currency type="FJD">
  3074. <displayName>Fijian Dollar</displayName>
  3075. <displayName count="one">Fijian dollar</displayName>
  3076. <displayName count="other">Fijian dollars</displayName>
  3077. </currency>
  3078. <currency type="FKP">
  3079. <displayName>Falkland Islands Pound</displayName>
  3080. <displayName count="one">Falkland Islands pound</displayName>
  3081. <displayName count="other">Falkland Islands pounds</displayName>
  3082. </currency>
  3083. <currency type="FRF">
  3084. <displayName>French Franc</displayName>
  3085. <displayName count="one">French franc</displayName>
  3086. <displayName count="other">French francs</displayName>
  3087. </currency>
  3088. <currency type="GBP">
  3089. <displayName>British Pound Sterling</displayName>
  3090. <displayName count="one">British pound sterling</displayName>
  3091. <displayName count="other">British pound sterlings</displayName>
  3092. </currency>
  3093. <currency type="GEK">
  3094. <displayName>Georgian Kupon Larit</displayName>
  3095. <displayName count="one">Georgian kupon larit</displayName>
  3096. <displayName count="other">Georgian kupon larits</displayName>
  3097. </currency>
  3098. <currency type="GEL">
  3099. <displayName>Georgian Lari</displayName>
  3100. <displayName count="one">Georgian lari</displayName>
  3101. <displayName count="other">Georgian laris</displayName>
  3102. </currency>
  3103. <currency type="GHC">
  3104. <displayName>Ghanaian Cedi (1979-2007)</displayName>
  3105. <displayName count="one">Ghanaian cedi (GHC)</displayName>
  3106. <displayName count="other">Ghanaian cedis (GHC)</displayName>
  3107. </currency>
  3108. <currency type="GHS">
  3109. <displayName>Ghanaian Cedi</displayName>
  3110. <displayName count="one">Ghanaian cedi</displayName>
  3111. <displayName count="other">Ghanaian cedis</displayName>
  3112. </currency>
  3113. <currency type="GIP">
  3114. <displayName>Gibraltar Pound</displayName>
  3115. <displayName count="one">Gibraltar pound</displayName>
  3116. <displayName count="other">Gibraltar pounds</displayName>
  3117. </currency>
  3118. <currency type="GMD">
  3119. <displayName>Gambian Dalasi</displayName>
  3120. <displayName count="one">Gambian dalasi</displayName>
  3121. <displayName count="other">Gambian dalasis</displayName>
  3122. </currency>
  3123. <currency type="GNF">
  3124. <displayName>Guinean Franc</displayName>
  3125. <displayName count="one">Guinean franc</displayName>
  3126. <displayName count="other">Guinean francs</displayName>
  3127. </currency>
  3128. <currency type="GNS">
  3129. <displayName>Guinean Syli</displayName>
  3130. <displayName count="one">Guinean syli</displayName>
  3131. <displayName count="other">Guinean sylis</displayName>
  3132. </currency>
  3133. <currency type="GQE">
  3134. <displayName>Equatorial Guinean Ekwele</displayName>
  3135. <displayName count="one">Equatorial Guinean ekwele</displayName>
  3136. <displayName count="other">Equatorial Guinean ekwele</displayName>
  3137. </currency>
  3138. <currency type="GRD">
  3139. <displayName>Greek Drachma</displayName>
  3140. <displayName count="one">Greek drachma</displayName>
  3141. <displayName count="other">Greek drachmas</displayName>
  3142. </currency>
  3143. <currency type="GTQ">
  3144. <displayName>Guatemalan Quetzal</displayName>
  3145. <displayName count="one">Guatemalan quetzal</displayName>
  3146. <displayName count="other">Guatemalan quetzals</displayName>
  3147. </currency>
  3148. <currency type="GWE">
  3149. <displayName>Portuguese Guinea Escudo</displayName>
  3150. <displayName count="one">Portuguese Guinea escudo</displayName>
  3151. <displayName count="other">Portuguese Guinea escudos</displayName>
  3152. </currency>
  3153. <currency type="GWP">
  3154. <displayName>Guinea-Bissau Peso</displayName>
  3155. <displayName count="one">Guinea-Bissau peso</displayName>
  3156. <displayName count="other">Guinea-Bissau pesos</displayName>
  3157. </currency>
  3158. <currency type="GYD">
  3159. <displayName>Guyanaese Dollar</displayName>
  3160. <displayName count="one">Guyanaese dollar</displayName>
  3161. <displayName count="other">Guyanaese dollars</displayName>
  3162. </currency>
  3163. <currency type="HKD">
  3164. <displayName>Hong Kong Dollar</displayName>
  3165. <displayName count="one">Hong Kong dollar</displayName>
  3166. <displayName count="other">Hong Kong dollars</displayName>
  3167. </currency>
  3168. <currency type="HNL">
  3169. <displayName>Honduran Lempira</displayName>
  3170. <displayName count="one">Honduran lempira</displayName>
  3171. <displayName count="other">Honduran lempiras</displayName>
  3172. </currency>
  3173. <currency type="HRD">
  3174. <displayName>Croatian Dinar</displayName>
  3175. <displayName count="one">Croatian dinar</displayName>
  3176. <displayName count="other">Croatian dinars</displayName>
  3177. </currency>
  3178. <currency type="HRK">
  3179. <displayName>Croatian Kuna</displayName>
  3180. <displayName count="one">Croatian kuna</displayName>
  3181. <displayName count="other">Croatian kunas</displayName>
  3182. </currency>
  3183. <currency type="HTG">
  3184. <displayName>Haitian Gourde</displayName>
  3185. <displayName count="one">Haitian gourde</displayName>
  3186. <displayName count="other">Haitian gourdes</displayName>
  3187. </currency>
  3188. <currency type="HUF">
  3189. <displayName>Hungarian Forint</displayName>
  3190. <displayName count="one">Hungarian forint</displayName>
  3191. <displayName count="other">Hungarian forints</displayName>
  3192. </currency>
  3193. <currency type="IDR">
  3194. <displayName>Indonesian Rupiah</displayName>
  3195. <displayName count="one">Indonesian rupiah</displayName>
  3196. <displayName count="other">Indonesian rupiahs</displayName>
  3197. </currency>
  3198. <currency type="IEP">
  3199. <displayName>Irish Pound</displayName>
  3200. <displayName count="one">Irish pound</displayName>
  3201. <displayName count="other">Irish pounds</displayName>
  3202. </currency>
  3203. <currency type="ILP">
  3204. <displayName>Israeli Pound</displayName>
  3205. <displayName count="one">Israeli pound</displayName>
  3206. <displayName count="other">Israeli pounds</displayName>
  3207. </currency>
  3208. <currency type="ILR">
  3209. <displayName>Old Israeli Sheqel</displayName>
  3210. <displayName count="one">Old Israeli sheqel</displayName>
  3211. <displayName count="other">Old Israeli sheqels</displayName>
  3212. </currency>
  3213. <currency type="ILS">
  3214. <displayName>Israeli New Sheqel</displayName>
  3215. <displayName count="one">Israeli new sheqel</displayName>
  3216. <displayName count="other">Israeli new sheqels</displayName>
  3217. </currency>
  3218. <currency type="INR">
  3219. <displayName>Indian Rupee</displayName>
  3220. <displayName count="one">Indian rupee</displayName>
  3221. <displayName count="other">Indian rupees</displayName>
  3222. </currency>
  3223. <currency type="IQD">
  3224. <displayName>Iraqi Dinar</displayName>
  3225. <displayName count="one">Iraqi dinar</displayName>
  3226. <displayName count="other">Iraqi dinars</displayName>
  3227. </currency>
  3228. <currency type="IRR">
  3229. <displayName>Iranian Rial</displayName>
  3230. <displayName count="one">Iranian rial</displayName>
  3231. <displayName count="other">Iranian rials</displayName>
  3232. </currency>
  3233. <currency type="ISJ">
  3234. <displayName>Old Icelandic Króna</displayName>
  3235. <displayName count="one">Old Icelandic króna</displayName>
  3236. <displayName count="other">Old Icelandic krónur</displayName>
  3237. </currency>
  3238. <currency type="ISK">
  3239. <displayName>Icelandic Króna</displayName>
  3240. <displayName count="one">Icelandic króna</displayName>
  3241. <displayName count="other">Icelandic krónur</displayName>
  3242. </currency>
  3243. <currency type="ITL">
  3244. <displayName>Italian Lira</displayName>
  3245. <displayName count="one">Italian lira</displayName>
  3246. <displayName count="other">Italian liras</displayName>
  3247. </currency>
  3248. <currency type="JMD">
  3249. <displayName>Jamaican Dollar</displayName>
  3250. <displayName count="one">Jamaican dollar</displayName>
  3251. <displayName count="other">Jamaican dollars</displayName>
  3252. </currency>
  3253. <currency type="JOD">
  3254. <displayName>Jordanian Dinar</displayName>
  3255. <displayName count="one">Jordanian dinar</displayName>
  3256. <displayName count="other">Jordanian dinars</displayName>
  3257. </currency>
  3258. <currency type="JPY">
  3259. <displayName>Japanese Yen</displayName>
  3260. <displayName count="one">Japanese yen</displayName>
  3261. <displayName count="other">Japanese yen</displayName>
  3262. <symbol>¥</symbol>
  3263. </currency>
  3264. <currency type="KES">
  3265. <displayName>Kenyan Shilling</displayName>
  3266. <displayName count="one">Kenyan shilling</displayName>
  3267. <displayName count="other">Kenyan shillings</displayName>
  3268. </currency>
  3269. <currency type="KGS">
  3270. <displayName>Kyrgystani Som</displayName>
  3271. <displayName count="one">Kyrgystani som</displayName>
  3272. <displayName count="other">Kyrgystani soms</displayName>
  3273. </currency>
  3274. <currency type="KHR">
  3275. <displayName>Cambodian Riel</displayName>
  3276. <displayName count="one">Cambodian riel</displayName>
  3277. <displayName count="other">Cambodian riels</displayName>
  3278. </currency>
  3279. <currency type="KMF">
  3280. <displayName>Comorian Franc</displayName>
  3281. <displayName count="one">Comorian franc</displayName>
  3282. <displayName count="other">Comorian francs</displayName>
  3283. </currency>
  3284. <currency type="KPW">
  3285. <displayName>North Korean Won</displayName>
  3286. <displayName count="one">North Korean won</displayName>
  3287. <displayName count="other">North Korean won</displayName>
  3288. </currency>
  3289. <currency type="KRH">
  3290. <displayName>South Korean Hwan</displayName>
  3291. <displayName count="one">South Korean hwan</displayName>
  3292. <displayName count="other">South Korean hwan</displayName>
  3293. </currency>
  3294. <currency type="KRO">
  3295. <displayName>Old South Korean Won</displayName>
  3296. <displayName count="one">Old South Korean won</displayName>
  3297. <displayName count="other">Old South Korean won</displayName>
  3298. </currency>
  3299. <currency type="KRW">
  3300. <displayName>South Korean Won</displayName>
  3301. <displayName count="one">South Korean won</displayName>
  3302. <displayName count="other">South Korean won</displayName>
  3303. </currency>
  3304. <currency type="KWD">
  3305. <displayName>Kuwaiti Dinar</displayName>
  3306. <displayName count="one">Kuwaiti dinar</displayName>
  3307. <displayName count="other">Kuwaiti dinars</displayName>
  3308. </currency>
  3309. <currency type="KYD">
  3310. <displayName>Cayman Islands Dollar</displayName>
  3311. <displayName count="one">Cayman Islands dollar</displayName>
  3312. <displayName count="other">Cayman Islands dollars</displayName>
  3313. </currency>
  3314. <currency type="KZT">
  3315. <displayName>Kazakhstan Tenge</displayName>
  3316. <displayName count="one">Kazakhstan tenge</displayName>
  3317. <displayName count="other">Kazakhstan tenges</displayName>
  3318. </currency>
  3319. <currency type="LAK">
  3320. <displayName>Laotian Kip</displayName>
  3321. <displayName count="one">Laotian kip</displayName>
  3322. <displayName count="other">Laotian kips</displayName>
  3323. </currency>
  3324. <currency type="LBP">
  3325. <displayName>Lebanese Pound</displayName>
  3326. <displayName count="one">Lebanese pound</displayName>
  3327. <displayName count="other">Lebanese pounds</displayName>
  3328. </currency>
  3329. <currency type="LKR">
  3330. <displayName>Sri Lanka Rupee</displayName>
  3331. <displayName count="one">Sri Lanka rupee</displayName>
  3332. <displayName count="other">Sri Lanka rupees</displayName>
  3333. </currency>
  3334. <currency type="LRD">
  3335. <displayName>Liberian Dollar</displayName>
  3336. <displayName count="one">Liberian dollar</displayName>
  3337. <displayName count="other">Liberian dollars</displayName>
  3338. </currency>
  3339. <currency type="LSL">
  3340. <displayName>Lesotho Loti</displayName>
  3341. <displayName count="one">Lesotho loti</displayName>
  3342. <displayName count="other">Lesotho lotis</displayName>
  3343. </currency>
  3344. <currency type="LTL">
  3345. <displayName>Lithuanian Litas</displayName>
  3346. <displayName count="one">Lithuanian litas</displayName>
  3347. <displayName count="other">Lithuanian litai</displayName>
  3348. </currency>
  3349. <currency type="LTT">
  3350. <displayName>Lithuanian Talonas</displayName>
  3351. <displayName count="one">Lithuanian talonas</displayName>
  3352. <displayName count="other">Lithuanian talonases</displayName>
  3353. </currency>
  3354. <currency type="LUC">
  3355. <displayName>Luxembourgian Convertible Franc</displayName>
  3356. <displayName count="one">Luxembourgian convertible franc</displayName>
  3357. <displayName count="other">Luxembourgian convertible francs</displayName>
  3358. </currency>
  3359. <currency type="LUF">
  3360. <displayName>Luxembourgian Franc</displayName>
  3361. <displayName count="one">Luxembourgian franc</displayName>
  3362. <displayName count="other">Luxembourgian francs</displayName>
  3363. </currency>
  3364. <currency type="LUL">
  3365. <displayName>Luxembourg Financial Franc</displayName>
  3366. <displayName count="one">Luxembourg financial franc</displayName>
  3367. <displayName count="other">Luxembourg financial francs</displayName>
  3368. </currency>
  3369. <currency type="LVL">
  3370. <displayName>Latvian Lats</displayName>
  3371. <displayName count="one">Latvian lats</displayName>
  3372. <displayName count="other">Latvian lati</displayName>
  3373. </currency>
  3374. <currency type="LVR">
  3375. <displayName>Latvian Ruble</displayName>
  3376. <displayName count="one">Latvian ruble</displayName>
  3377. <displayName count="other">Latvian rubles</displayName>
  3378. </currency>
  3379. <currency type="LYD">
  3380. <displayName>Libyan Dinar</displayName>
  3381. <displayName count="one">Libyan dinar</displayName>
  3382. <displayName count="other">Libyan dinars</displayName>
  3383. </currency>
  3384. <currency type="MAD">
  3385. <displayName>Moroccan Dirham</displayName>
  3386. <displayName count="one">Moroccan dirham</displayName>
  3387. <displayName count="other">Moroccan dirhams</displayName>
  3388. </currency>
  3389. <currency type="MAF">
  3390. <displayName>Moroccan Franc</displayName>
  3391. <displayName count="one">Moroccan franc</displayName>
  3392. <displayName count="other">Moroccan francs</displayName>
  3393. </currency>
  3394. <currency type="MCF">
  3395. <displayName>Monegasque Franc</displayName>
  3396. <displayName count="one">Monegasque franc</displayName>
  3397. <displayName count="other">Monegasque francs</displayName>
  3398. </currency>
  3399. <currency type="MDC">
  3400. <displayName>Moldovan Cupon</displayName>
  3401. <displayName count="one">Moldovan cupon</displayName>
  3402. <displayName count="other">Moldovan cupon</displayName>
  3403. </currency>
  3404. <currency type="MDL">
  3405. <displayName>Moldovan Leu</displayName>
  3406. <displayName count="one">Moldovan leu</displayName>
  3407. <displayName count="other">Moldovan lei</displayName>
  3408. </currency>
  3409. <currency type="MGA">
  3410. <displayName>Malagasy Ariary</displayName>
  3411. <displayName count="one">Malagasy Ariary</displayName>
  3412. <displayName count="other">Malagasy Ariaries</displayName>
  3413. </currency>
  3414. <currency type="MGF">
  3415. <displayName>Malagasy Franc</displayName>
  3416. <displayName count="one">Malagasy franc</displayName>
  3417. <displayName count="other">Malagasy francs</displayName>
  3418. </currency>
  3419. <currency type="MKD">
  3420. <displayName>Macedonian Denar</displayName>
  3421. <displayName count="one">Macedonian denar</displayName>
  3422. <displayName count="other">Macedonian denari</displayName>
  3423. </currency>
  3424. <currency type="MKN">
  3425. <displayName>Old Macedonian Denar</displayName>
  3426. <displayName count="one">Old Macedonian denar</displayName>
  3427. <displayName count="other">Old Macedonian denari</displayName>
  3428. </currency>
  3429. <currency type="MLF">
  3430. <displayName>Malian Franc</displayName>
  3431. <displayName count="one">Malian franc</displayName>
  3432. <displayName count="other">Malian francs</displayName>
  3433. </currency>
  3434. <currency type="MMK">
  3435. <displayName>Myanma Kyat</displayName>
  3436. <displayName count="one">Myanma kyat</displayName>
  3437. <displayName count="other">Myanma kyats</displayName>
  3438. </currency>
  3439. <currency type="MNT">
  3440. <displayName>Mongolian Tugrik</displayName>
  3441. <displayName count="one">Mongolian tugrik</displayName>
  3442. <displayName count="other">Mongolian tugriks</displayName>
  3443. </currency>
  3444. <currency type="MOP">
  3445. <displayName>Macanese Pataca</displayName>
  3446. <displayName count="one">Macanese pataca</displayName>
  3447. <displayName count="other">Macanese patacas</displayName>
  3448. </currency>
  3449. <currency type="MRO">
  3450. <displayName>Mauritanian Ouguiya</displayName>
  3451. <displayName count="one">Mauritanian ouguiya</displayName>
  3452. <displayName count="other">Mauritanian ouguiyas</displayName>
  3453. </currency>
  3454. <currency type="MTL">
  3455. <displayName>Maltese Lira</displayName>
  3456. <displayName count="one">Maltese lira</displayName>
  3457. <displayName count="other">Maltese lira</displayName>
  3458. </currency>
  3459. <currency type="MTP">
  3460. <displayName>Maltese Pound</displayName>
  3461. <displayName count="one">Maltese pound</displayName>
  3462. <displayName count="other">Maltese pounds</displayName>
  3463. </currency>
  3464. <currency type="MUR">
  3465. <displayName>Mauritian Rupee</displayName>
  3466. <displayName count="one">Mauritian rupee</displayName>
  3467. <displayName count="other">Mauritian rupees</displayName>
  3468. </currency>
  3469. <currency type="MVP">
  3470. <displayName>Maldivian Rupee</displayName>
  3471. <displayName count="one">Maldivian rupee</displayName>
  3472. <displayName count="other">Maldivian rupees</displayName>
  3473. </currency>
  3474. <currency type="MVR">
  3475. <displayName>Maldivian Rufiyaa</displayName>
  3476. <displayName count="one">Maldivian rufiyaa</displayName>
  3477. <displayName count="other">Maldivian rufiyaas</displayName>
  3478. </currency>
  3479. <currency type="MWK">
  3480. <displayName>Malawian Kwacha</displayName>
  3481. <displayName count="one">Malawian Kwacha</displayName>
  3482. <displayName count="other">Malawian Kwachas</displayName>
  3483. </currency>
  3484. <currency type="MXN">
  3485. <displayName>Mexican Peso</displayName>
  3486. <displayName count="one">Mexican peso</displayName>
  3487. <displayName count="other">Mexican pesos</displayName>
  3488. </currency>
  3489. <currency type="MXP">
  3490. <displayName>Mexican Silver Peso (1861-1992)</displayName>
  3491. <displayName count="one">Mexican silver peso (MXP)</displayName>
  3492. <displayName count="other">Mexican silver pesos (MXP)</displayName>
  3493. </currency>
  3494. <currency type="MXV">
  3495. <displayName>Mexican Unidad de Inversion (UDI)</displayName>
  3496. <displayName count="one">Mexican unidad de inversion (UDI)</displayName>
  3497. <displayName count="other">Mexican unidads de inversion (UDI)</displayName>
  3498. </currency>
  3499. <currency type="MYR">
  3500. <displayName>Malaysian Ringgit</displayName>
  3501. <displayName count="one">Malaysian ringgit</displayName>
  3502. <displayName count="other">Malaysian ringgits</displayName>
  3503. </currency>
  3504. <currency type="MZE">
  3505. <displayName>Mozambican Escudo</displayName>
  3506. <displayName count="one">Mozambican escudo</displayName>
  3507. <displayName count="other">Mozambican escudos</displayName>
  3508. </currency>
  3509. <currency type="MZM">
  3510. <displayName>Old Mozambican Metical</displayName>
  3511. <displayName count="one">Old Mozambican metical</displayName>
  3512. <displayName count="other">Old Mozambican meticals</displayName>
  3513. </currency>
  3514. <currency type="MZN">
  3515. <displayName>Mozambican Metical</displayName>
  3516. <displayName count="one">Mozambican metical</displayName>
  3517. <displayName count="other">Mozambican meticals</displayName>
  3518. </currency>
  3519. <currency type="NAD">
  3520. <displayName>Namibian Dollar</displayName>
  3521. <displayName count="one">Namibian dollar</displayName>
  3522. <displayName count="other">Namibian dollars</displayName>
  3523. </currency>
  3524. <currency type="NGN">
  3525. <displayName>Nigerian Naira</displayName>
  3526. <displayName count="one">Nigerian naira</displayName>
  3527. <displayName count="other">Nigerian nairas</displayName>
  3528. </currency>
  3529. <currency type="NIC">
  3530. <displayName>Nicaraguan Cordoba</displayName>
  3531. <displayName count="one">Nicaraguan cordoba</displayName>
  3532. <displayName count="other">Nicaraguan cordobas</displayName>
  3533. </currency>
  3534. <currency type="NIO">
  3535. <displayName>Nicaraguan Cordoba Oro</displayName>
  3536. <displayName count="one">Nicaraguan cordoba oro</displayName>
  3537. <displayName count="other">Nicaraguan cordobas oro</displayName>
  3538. </currency>
  3539. <currency type="NLG">
  3540. <displayName>Dutch Guilder</displayName>
  3541. <displayName count="one">Dutch guilder</displayName>
  3542. <displayName count="other">Dutch guilders</displayName>
  3543. </currency>
  3544. <currency type="NOK">
  3545. <displayName>Norwegian Krone</displayName>
  3546. <displayName count="one">Norwegian krone</displayName>
  3547. <displayName count="other">Norwegian kroner</displayName>
  3548. </currency>
  3549. <currency type="NPR">
  3550. <displayName>Nepalese Rupee</displayName>
  3551. <displayName count="one">Nepalese rupee</displayName>
  3552. <displayName count="other">Nepalese rupees</displayName>
  3553. </currency>
  3554. <currency type="NZD">
  3555. <displayName>New Zealand Dollar</displayName>
  3556. <displayName count="one">New Zealand dollar</displayName>
  3557. <displayName count="other">New Zealand dollars</displayName>
  3558. </currency>
  3559. <currency type="OMR">
  3560. <displayName>Omani Rial</displayName>
  3561. <displayName count="one">Omani rial</displayName>
  3562. <displayName count="other">Omani rials</displayName>
  3563. </currency>
  3564. <currency type="PAB">
  3565. <displayName>Panamanian Balboa</displayName>
  3566. <displayName count="one">Panamanian balboa</displayName>
  3567. <displayName count="other">Panamanian balboas</displayName>
  3568. </currency>
  3569. <currency type="PEI">
  3570. <displayName>Peruvian Inti</displayName>
  3571. <displayName count="one">Peruvian inti</displayName>
  3572. <displayName count="other">Peruvian intis</displayName>
  3573. </currency>
  3574. <currency type="PEN">
  3575. <displayName>Peruvian Nuevo Sol</displayName>
  3576. <displayName count="one">Peruvian nuevo sol</displayName>
  3577. <displayName count="other">Peruvian nuevos soles</displayName>
  3578. </currency>
  3579. <currency type="PES">
  3580. <displayName>Peruvian Sol</displayName>
  3581. <displayName count="one">Peruvian sol</displayName>
  3582. <displayName count="other">Peruvian soles</displayName>
  3583. </currency>
  3584. <currency type="PGK">
  3585. <displayName>Papua New Guinean Kina</displayName>
  3586. <displayName count="one">Papua New Guinean kina</displayName>
  3587. <displayName count="other">Papua New Guinean kina</displayName>
  3588. </currency>
  3589. <currency type="PHP">
  3590. <displayName>Philippine Peso</displayName>
  3591. <displayName count="one">Philippine peso</displayName>
  3592. <displayName count="other">Philippine pesos</displayName>
  3593. </currency>
  3594. <currency type="PKR">
  3595. <displayName>Pakistani Rupee</displayName>
  3596. <displayName count="one">Pakistani rupee</displayName>
  3597. <displayName count="other">Pakistani rupees</displayName>
  3598. </currency>
  3599. <currency type="PLN">
  3600. <displayName>Polish Zloty</displayName>
  3601. <displayName count="one">Polish zloty</displayName>
  3602. <displayName count="other">Polish zlotys</displayName>
  3603. </currency>
  3604. <currency type="PLZ">
  3605. <displayName>Polish Zloty (1950-1995)</displayName>
  3606. <displayName count="one">Polish zloty (PLZ)</displayName>
  3607. <displayName count="other">Polish zlotys (PLZ)</displayName>
  3608. </currency>
  3609. <currency type="PTE">
  3610. <displayName>Portuguese Escudo</displayName>
  3611. <displayName count="one">Portuguese escudo</displayName>
  3612. <displayName count="other">Portuguese escudos</displayName>
  3613. </currency>
  3614. <currency type="PYG">
  3615. <displayName>Paraguayan Guarani</displayName>
  3616. <displayName count="one">Paraguayan guarani</displayName>
  3617. <displayName count="other">Paraguayan guaranis</displayName>
  3618. </currency>
  3619. <currency type="QAR">
  3620. <displayName>Qatari Rial</displayName>
  3621. <displayName count="one">Qatari rial</displayName>
  3622. <displayName count="other">Qatari rials</displayName>
  3623. </currency>
  3624. <currency type="RHD">
  3625. <displayName>Rhodesian Dollar</displayName>
  3626. <displayName count="one">Rhodesian dollar</displayName>
  3627. <displayName count="other">Rhodesian dollars</displayName>
  3628. </currency>
  3629. <currency type="ROL">
  3630. <displayName>Old Romanian Leu</displayName>
  3631. <displayName count="one">Old Romanian leu</displayName>
  3632. <displayName count="other">Old Romanian Lei</displayName>
  3633. </currency>
  3634. <currency type="RON">
  3635. <displayName>Romanian Leu</displayName>
  3636. <displayName count="one">Romanian leu</displayName>
  3637. <displayName count="other">Romanian lei</displayName>
  3638. </currency>
  3639. <currency type="RSD">
  3640. <displayName>Serbian Dinar</displayName>
  3641. <displayName count="one">Serbian dinar</displayName>
  3642. <displayName count="other">Serbian dinars</displayName>
  3643. </currency>
  3644. <currency type="RUB">
  3645. <displayName>Russian Ruble</displayName>
  3646. <displayName count="one">Russian ruble</displayName>
  3647. <displayName count="other">Russian rubles</displayName>
  3648. </currency>
  3649. <currency type="RUR">
  3650. <displayName>Russian Ruble (1991-1998)</displayName>
  3651. <displayName count="one">Russian ruble (RUR)</displayName>
  3652. <displayName count="other">Russian rubles (RUR)</displayName>
  3653. </currency>
  3654. <currency type="RWF">
  3655. <displayName>Rwandan Franc</displayName>
  3656. <displayName count="one">Rwandan franc</displayName>
  3657. <displayName count="other">Rwandan francs</displayName>
  3658. </currency>
  3659. <currency type="SAR">
  3660. <displayName>Saudi Riyal</displayName>
  3661. <displayName count="one">Saudi riyal</displayName>
  3662. <displayName count="other">Saudi riyals</displayName>
  3663. </currency>
  3664. <currency type="SBD">
  3665. <displayName>Solomon Islands Dollar</displayName>
  3666. <displayName count="one">Solomon Islands dollar</displayName>
  3667. <displayName count="other">Solomon Islands dollars</displayName>
  3668. </currency>
  3669. <currency type="SCR">
  3670. <displayName>Seychellois Rupee</displayName>
  3671. <displayName count="one">Seychellois rupee</displayName>
  3672. <displayName count="other">Seychellois rupees</displayName>
  3673. </currency>
  3674. <currency type="SDD">
  3675. <displayName>Old Sudanese Dinar</displayName>
  3676. <displayName count="one">Old Sudanese dinar</displayName>
  3677. <displayName count="other">Old Sudanese dinars</displayName>
  3678. </currency>
  3679. <currency type="SDG">
  3680. <displayName>Sudanese Pound</displayName>
  3681. <displayName count="one">Sudanese pound</displayName>
  3682. <displayName count="other">Sudanese pounds</displayName>
  3683. </currency>
  3684. <currency type="SDP">
  3685. <displayName>Old Sudanese Pound</displayName>
  3686. <displayName count="one">Old Sudanese pound</displayName>
  3687. <displayName count="other">Old Sudanese pounds</displayName>
  3688. </currency>
  3689. <currency type="SEK">
  3690. <displayName>Swedish Krona</displayName>
  3691. <displayName count="one">Swedish krona</displayName>
  3692. <displayName count="other">Swedish kronor</displayName>
  3693. </currency>
  3694. <currency type="SGD">
  3695. <displayName>Singapore Dollar</displayName>
  3696. <displayName count="one">Singapore dollar</displayName>
  3697. <displayName count="other">Singapore dollars</displayName>
  3698. </currency>
  3699. <currency type="SHP">
  3700. <displayName>Saint Helena Pound</displayName>
  3701. <displayName count="one">Saint Helena pound</displayName>
  3702. <displayName count="other">Saint Helena pounds</displayName>
  3703. </currency>
  3704. <currency type="SIT">
  3705. <displayName>Slovenian Tolar</displayName>
  3706. <displayName count="one">Slovenian tolar</displayName>
  3707. <displayName count="other">Slovenian tolars</displayName>
  3708. </currency>
  3709. <currency type="SKK">
  3710. <displayName>Slovak Koruna</displayName>
  3711. <displayName count="one">Slovak koruna</displayName>
  3712. <displayName count="other">Slovak korunas</displayName>
  3713. </currency>
  3714. <currency type="SLL">
  3715. <displayName>Sierra Leonean Leone</displayName>
  3716. <displayName count="one">Sierra Leonean leone</displayName>
  3717. <displayName count="other">Sierra Leonean leones</displayName>
  3718. </currency>
  3719. <currency type="SOS">
  3720. <displayName>Somali Shilling</displayName>
  3721. <displayName count="one">Somali shilling</displayName>
  3722. <displayName count="other">Somali shillings</displayName>
  3723. </currency>
  3724. <currency type="SRD">
  3725. <displayName>Surinamese Dollar</displayName>
  3726. <displayName count="one">Surinamese dollar</displayName>
  3727. <displayName count="other">Surinamese dollars</displayName>
  3728. </currency>
  3729. <currency type="SRG">
  3730. <displayName>Suriname Guilder</displayName>
  3731. <displayName count="one">Suriname guilder</displayName>
  3732. <displayName count="other">Suriname guilders</displayName>
  3733. </currency>
  3734. <currency type="STD">
  3735. <displayName>São Tomé and Príncipe Dobra</displayName>
  3736. <displayName count="one">São Tomé and Príncipe dobra</displayName>
  3737. <displayName count="other">São Tomé and Príncipe dobras</displayName>
  3738. </currency>
  3739. <currency type="SUR">
  3740. <displayName>Soviet Rouble</displayName>
  3741. <displayName count="one">Soviet rouble</displayName>
  3742. <displayName count="other">Soviet roubles</displayName>
  3743. </currency>
  3744. <currency type="SVC">
  3745. <displayName>Salvadoran Colón</displayName>
  3746. <displayName count="one">Salvadoran colón</displayName>
  3747. <displayName count="other">Salvadoran colones</displayName>
  3748. </currency>
  3749. <currency type="SYP">
  3750. <displayName>Syrian Pound</displayName>
  3751. <displayName count="one">Syrian pound</displayName>
  3752. <displayName count="other">Syrian pounds</displayName>
  3753. </currency>
  3754. <currency type="SZL">
  3755. <displayName>Swazi Lilangeni</displayName>
  3756. <displayName count="one">Swazi lilangeni</displayName>
  3757. <displayName count="other">Swazi emalangeni</displayName>
  3758. </currency>
  3759. <currency type="THB">
  3760. <displayName>Thai Baht</displayName>
  3761. <displayName count="one">Thai baht</displayName>
  3762. <displayName count="other">Thai baht</displayName>
  3763. </currency>
  3764. <currency type="TJR">
  3765. <displayName>Tajikistani Ruble</displayName>
  3766. <displayName count="one">Tajikistani ruble</displayName>
  3767. <displayName count="other">Tajikistani rubles</displayName>
  3768. </currency>
  3769. <currency type="TJS">
  3770. <displayName>Tajikistani Somoni</displayName>
  3771. <displayName count="one">Tajikistani somoni</displayName>
  3772. <displayName count="other">Tajikistani somonis</displayName>
  3773. </currency>
  3774. <currency type="TMM">
  3775. <displayName>Turkmenistani Manat</displayName>
  3776. <displayName count="one">Turkmenistani manat</displayName>
  3777. <displayName count="other">Turkmenistani manat</displayName>
  3778. </currency>
  3779. <currency type="TMT">
  3780. <displayName>Turkmenistani New Manat</displayName>
  3781. <displayName count="one">Turkmenistani new manat</displayName>
  3782. <displayName count="other">Turkmenistani new manat</displayName>
  3783. </currency>
  3784. <currency type="TND">
  3785. <displayName>Tunisian Dinar</displayName>
  3786. <displayName count="one">Tunisian dinar</displayName>
  3787. <displayName count="other">Tunisian dinars</displayName>
  3788. </currency>
  3789. <currency type="TOP">
  3790. <displayName>Tongan Paʻanga</displayName>
  3791. <displayName count="one">Tongan paʻanga</displayName>
  3792. <displayName count="other">Tongan paʻanga</displayName>
  3793. </currency>
  3794. <currency type="TPE">
  3795. <displayName>Timorese Escudo</displayName>
  3796. <displayName count="one">Timorese escudo</displayName>
  3797. <displayName count="other">Timorese escudos</displayName>
  3798. </currency>
  3799. <currency type="TRL">
  3800. <displayName>Old Turkish Lira</displayName>
  3801. <displayName count="one">old Turkish lira</displayName>
  3802. <displayName count="other">Old Turkish Lira</displayName>
  3803. </currency>
  3804. <currency type="TRY">
  3805. <displayName>Turkish Lira</displayName>
  3806. <displayName count="one">Turkish lira</displayName>
  3807. <displayName count="other">Turkish Lira</displayName>
  3808. </currency>
  3809. <currency type="TTD">
  3810. <displayName>Trinidad and Tobago Dollar</displayName>
  3811. <displayName count="one">Trinidad and Tobago dollar</displayName>
  3812. <displayName count="other">Trinidad and Tobago dollars</displayName>
  3813. </currency>
  3814. <currency type="TWD">
  3815. <displayName>New Taiwan Dollar</displayName>
  3816. <displayName count="one">New Taiwan dollar</displayName>
  3817. <displayName count="other">New Taiwan dollars</displayName>
  3818. </currency>
  3819. <currency type="TZS">
  3820. <displayName>Tanzanian Shilling</displayName>
  3821. <displayName count="one">Tanzanian shilling</displayName>
  3822. <displayName count="other">Tanzanian shillings</displayName>
  3823. </currency>
  3824. <currency type="UAH">
  3825. <displayName>Ukrainian Hryvnia</displayName>
  3826. <displayName count="one">Ukrainian hryvnia</displayName>
  3827. <displayName count="other">Ukrainian hryvnias</displayName>
  3828. </currency>
  3829. <currency type="UAK">
  3830. <displayName>Ukrainian Karbovanets</displayName>
  3831. <displayName count="one">Ukrainian karbovanets</displayName>
  3832. <displayName count="other">Ukrainian karbovantsiv</displayName>
  3833. </currency>
  3834. <currency type="UGS">
  3835. <displayName>Ugandan Shilling (1966-1987)</displayName>
  3836. <displayName count="one">Ugandan shilling (UGS)</displayName>
  3837. <displayName count="other">Ugandan shillings (UGS)</displayName>
  3838. </currency>
  3839. <currency type="UGX">
  3840. <displayName>Ugandan Shilling</displayName>
  3841. <displayName count="one">Ugandan shilling</displayName>
  3842. <displayName count="other">Ugandan shillings</displayName>
  3843. </currency>
  3844. <currency type="USD">
  3845. <displayName>US Dollar</displayName>
  3846. <displayName count="one">US dollar</displayName>
  3847. <displayName count="other">US dollars</displayName>
  3848. <symbol>$</symbol>
  3849. </currency>
  3850. <currency type="USN">
  3851. <displayName>US Dollar (Next day)</displayName>
  3852. <displayName count="one">US dollar (next day)</displayName>
  3853. <displayName count="other">US dollars (next day)</displayName>
  3854. </currency>
  3855. <currency type="USS">
  3856. <displayName>US Dollar (Same day)</displayName>
  3857. <displayName count="one">US dollar (same day)</displayName>
  3858. <displayName count="other">US dollars (same day)</displayName>
  3859. </currency>
  3860. <currency type="UYI">
  3861. <displayName>Uruguayan Peso en Unidades Indexadas</displayName>
  3862. <displayName count="one">Uruguayan peso en unidades indexadas</displayName>
  3863. <displayName count="other">Uruguayan pesos en unidades indexadas</displayName>
  3864. </currency>
  3865. <currency type="UYP">
  3866. <displayName>Uruguayan Peso (1975-1993)</displayName>
  3867. <displayName count="one">Uruguayan peso (UYP)</displayName>
  3868. <displayName count="other">Uruguayan pesos (UYP)</displayName>
  3869. </currency>
  3870. <currency type="UYU">
  3871. <displayName>Uruguayan Peso</displayName>
  3872. <displayName count="one">Uruguayan peso</displayName>
  3873. <displayName count="other">Uruguayan pesos</displayName>
  3874. </currency>
  3875. <currency type="UZS">
  3876. <displayName>Uzbekistan Som</displayName>
  3877. <displayName count="one">Uzbekistan som</displayName>
  3878. <displayName count="other">Uzbekistan som</displayName>
  3879. </currency>
  3880. <currency type="VEB">
  3881. <displayName>Venezuelan Bolívar</displayName>
  3882. <displayName count="one">Venezuelan bolívar</displayName>
  3883. <displayName count="other">Venezuelan bolívars</displayName>
  3884. </currency>
  3885. <currency type="VEF">
  3886. <displayName>Venezuelan Bolívar Fuerte</displayName>
  3887. <displayName count="one">Venezuelan bolívar fuerte</displayName>
  3888. <displayName count="other">Venezuelan bolívars fuertes</displayName>
  3889. </currency>
  3890. <currency type="VND">
  3891. <displayName>Vietnamese Dong</displayName>
  3892. <displayName count="one">Vietnamese dong</displayName>
  3893. <displayName count="other">Vietnamese dong</displayName>
  3894. </currency>
  3895. <currency type="VNN">
  3896. <displayName>Old Vietnamese Dong</displayName>
  3897. <displayName count="one">Old Vietnamese dong</displayName>
  3898. <displayName count="other">Old Vietnamese dong</displayName>
  3899. </currency>
  3900. <currency type="VUV">
  3901. <displayName>Vanuatu Vatu</displayName>
  3902. <displayName count="one">Vanuatu vatu</displayName>
  3903. <displayName count="other">Vanuatu vatus</displayName>
  3904. </currency>
  3905. <currency type="WST">
  3906. <displayName>Samoan Tala</displayName>
  3907. <displayName count="one">Samoan tala</displayName>
  3908. <displayName count="other">Samoan tala</displayName>
  3909. </currency>
  3910. <currency type="XAF">
  3911. <displayName>CFA Franc BEAC</displayName>
  3912. <displayName count="one">CFA franc BEAC</displayName>
  3913. <displayName count="other">CFA francs BEAC</displayName>
  3914. </currency>
  3915. <currency type="XAG">
  3916. <displayName>Silver</displayName>
  3917. <displayName count="one">Silver</displayName>
  3918. </currency>
  3919. <currency type="XAU">
  3920. <displayName>Gold</displayName>
  3921. <displayName count="one">Gold</displayName>
  3922. </currency>
  3923. <currency type="XBA">
  3924. <displayName>European Composite Unit</displayName>
  3925. <displayName count="one">European composite unit</displayName>
  3926. <displayName count="other">European composite units</displayName>
  3927. </currency>
  3928. <currency type="XBB">
  3929. <displayName>European Monetary Unit</displayName>
  3930. <displayName count="one">European monetary unit</displayName>
  3931. <displayName count="other">European monetary units</displayName>
  3932. </currency>
  3933. <currency type="XBC">
  3934. <displayName>European Unit of Account (XBC)</displayName>
  3935. <displayName count="one">European unit of account (XBC)</displayName>
  3936. <displayName count="other">European units of account (XBC)</displayName>
  3937. </currency>
  3938. <currency type="XBD">
  3939. <displayName>European Unit of Account (XBD)</displayName>
  3940. <displayName count="one">European unit of account (XBD)</displayName>
  3941. <displayName count="other">European units of account (XBD)</displayName>
  3942. </currency>
  3943. <currency type="XCD">
  3944. <displayName>East Caribbean Dollar</displayName>
  3945. <displayName count="one">East Caribbean dollar</displayName>
  3946. <displayName count="other">East Caribbean dollars</displayName>
  3947. </currency>
  3948. <currency type="XDR">
  3949. <displayName>Special Drawing Rights</displayName>
  3950. <displayName count="one">special drawing rights</displayName>
  3951. <displayName count="other">special drawing rights</displayName>
  3952. </currency>
  3953. <currency type="XEU">
  3954. <displayName>European Currency Unit</displayName>
  3955. <displayName count="one">European currency unit</displayName>
  3956. <displayName count="other">European currency units</displayName>
  3957. </currency>
  3958. <currency type="XFO">
  3959. <displayName>French Gold Franc</displayName>
  3960. <displayName count="one">French gold franc</displayName>
  3961. <displayName count="other">French gold francs</displayName>
  3962. </currency>
  3963. <currency type="XFU">
  3964. <displayName>French UIC-Franc</displayName>
  3965. <displayName count="one">French UIC-franc</displayName>
  3966. <displayName count="other">French UIC-francs</displayName>
  3967. </currency>
  3968. <currency type="XOF">
  3969. <displayName>CFA Franc BCEAO</displayName>
  3970. <displayName count="one">CFA franc BCEAO</displayName>
  3971. <displayName count="other">CFA francs BCEAO</displayName>
  3972. </currency>
  3973. <currency type="XPD">
  3974. <displayName>Palladium</displayName>
  3975. <displayName count="one">Palladium</displayName>
  3976. </currency>
  3977. <currency type="XPF">
  3978. <displayName>CFP Franc</displayName>
  3979. <displayName count="one">CFP franc</displayName>
  3980. <displayName count="other">CFP francs</displayName>
  3981. </currency>
  3982. <currency type="XPT">
  3983. <displayName>Platinum</displayName>
  3984. <displayName count="one">Platinum</displayName>
  3985. </currency>
  3986. <currency type="XRE">
  3987. <displayName>RINET Funds</displayName>
  3988. <displayName count="one">RINET Funds</displayName>
  3989. </currency>
  3990. <currency type="XTS">
  3991. <displayName>Testing Currency Code</displayName>
  3992. <displayName count="one">Testing Currency Code</displayName>
  3993. </currency>
  3994. <currency type="XXX">
  3995. <displayName>Unknown or Invalid Currency</displayName>
  3996. <displayName count="one">unknown/invalid currency</displayName>
  3997. </currency>
  3998. <currency type="YDD">
  3999. <displayName>Yemeni Dinar</displayName>
  4000. <displayName count="one">Yemeni dinar</displayName>
  4001. <displayName count="other">Yemeni dinars</displayName>
  4002. </currency>
  4003. <currency type="YER">
  4004. <displayName>Yemeni Rial</displayName>
  4005. <displayName count="one">Yemeni rial</displayName>
  4006. <displayName count="other">Yemeni rials</displayName>
  4007. </currency>
  4008. <currency type="YUD">
  4009. <displayName>Yugoslavian Hard Dinar</displayName>
  4010. <displayName count="one">Yugoslavian hard dinar</displayName>
  4011. <displayName count="other">Yugoslavian hard dinars</displayName>
  4012. </currency>
  4013. <currency type="YUM">
  4014. <displayName>Yugoslavian Noviy Dinar</displayName>
  4015. <displayName count="one">Yugoslavian noviy dinar</displayName>
  4016. <displayName count="other">Yugoslavian Noviy dinars</displayName>
  4017. </currency>
  4018. <currency type="YUN">
  4019. <displayName>Yugoslavian Convertible Dinar</displayName>
  4020. <displayName count="one">Yugoslavian convertible dinar</displayName>
  4021. <displayName count="other">Yugoslavian convertible dinars</displayName>
  4022. </currency>
  4023. <currency type="YUR">
  4024. <displayName>Yugoslavian Reformed Dinar</displayName>
  4025. <displayName count="one">Yugoslavian reformed dinar</displayName>
  4026. <displayName count="other">Yugoslavian reformed dinars</displayName>
  4027. </currency>
  4028. <currency type="ZAL">
  4029. <displayName>South African Rand (financial)</displayName>
  4030. <displayName count="one">South African rand (financial)</displayName>
  4031. <displayName count="other">South African rands (financial)</displayName>
  4032. </currency>
  4033. <currency type="ZAR">
  4034. <displayName>South African Rand</displayName>
  4035. <displayName count="one">South African rand</displayName>
  4036. <displayName count="other">South African rand</displayName>
  4037. </currency>
  4038. <currency type="ZMK">
  4039. <displayName>Zambian Kwacha</displayName>
  4040. <displayName count="one">Zambian kwacha</displayName>
  4041. <displayName count="other">Zambian kwachas</displayName>
  4042. </currency>
  4043. <currency type="ZRN">
  4044. <displayName>Zairean New Zaire</displayName>
  4045. <displayName count="one">Zairean new zaire</displayName>
  4046. <displayName count="other">Zairean new zaires</displayName>
  4047. </currency>
  4048. <currency type="ZRZ">
  4049. <displayName>Zairean Zaire</displayName>
  4050. <displayName count="one">Zairean zaire</displayName>
  4051. <displayName count="other">Zairean zaires</displayName>
  4052. </currency>
  4053. <currency type="ZWD">
  4054. <displayName>Zimbabwean Dollar</displayName>
  4055. <displayName count="one">Zimbabwean dollar</displayName>
  4056. <displayName count="other">Zimbabwean dollars</displayName>
  4057. </currency>
  4058. <currency type="ZWL">
  4059. <displayName>Zimbabwean Dollar (2009)</displayName>
  4060. <displayName count="one">Zimbabwean dollar (2009)</displayName>
  4061. <displayName count="other">Zimbabwean dollars (2009)</displayName>
  4062. </currency>
  4063. <currency type="ZWR">
  4064. <displayName>Zimbabwean Dollar (2008)</displayName>
  4065. <displayName count="one">Zimbabwean dollar (2008)</displayName>
  4066. <displayName count="other">Zimbabwean dollars (2008)</displayName>
  4067. </currency>
  4068. </currencies>
  4069. </numbers>
  4070. <units>
  4071. <unit type="day">
  4072. <unitPattern count="one">{0} day</unitPattern>
  4073. <unitPattern count="other">{0} days</unitPattern>
  4074. </unit>
  4075. <unit type="hour">
  4076. <unitPattern count="one">{0} hour</unitPattern>
  4077. <unitPattern count="other">{0} hours</unitPattern>
  4078. </unit>
  4079. <unit type="minute">
  4080. <unitPattern count="one">{0} minute</unitPattern>
  4081. <unitPattern count="other">{0} minutes</unitPattern>
  4082. </unit>
  4083. <unit type="month">
  4084. <unitPattern count="one">{0} month</unitPattern>
  4085. <unitPattern count="other">{0} months</unitPattern>
  4086. </unit>
  4087. <unit type="second">
  4088. <unitPattern count="one">{0} second</unitPattern>
  4089. <unitPattern count="other">{0} seconds</unitPattern>
  4090. </unit>
  4091. <unit type="week">
  4092. <unitPattern count="one">{0} week</unitPattern>
  4093. <unitPattern count="other">{0} weeks</unitPattern>
  4094. </unit>
  4095. <unit type="year">
  4096. <unitPattern count="one">{0} year</unitPattern>
  4097. <unitPattern count="other">{0} years</unitPattern>
  4098. </unit>
  4099. </units>
  4100. <posix>
  4101. <messages>
  4102. <yesstr>yes:y</yesstr>
  4103. <nostr>no:n</nostr>
  4104. </messages>
  4105. </posix>
  4106. </ldml>