en.xml 192 KB

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