hy.xml 203 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971
  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: 9852 $"/>
  10. <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
  11. <language type="hy"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}, {1}</localeSeparator>
  17. <localeKeyTypePattern>{0}. {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="ab">աբխազերեն</language>
  21. <language type="af">աֆրիկաանս</language>
  22. <language type="am">ամհարերեն</language>
  23. <language type="ar">արաբերեն</language>
  24. <language type="ar_001">ժամանակակից ստանդարտ արաբերեն</language>
  25. <language type="as">ասամերեն</language>
  26. <language type="az">ադրբեջաներեն</language>
  27. <language type="be">բելառուսերեն</language>
  28. <language type="bg">բուլղարերեն</language>
  29. <language type="bn">բենգալերեն</language>
  30. <language type="bo">տիբեթերեն</language>
  31. <language type="br" draft="unconfirmed">Բրետոներեն</language>
  32. <language type="bs">բոսնիերեն</language>
  33. <language type="ca">կատալաներեն</language>
  34. <language type="cs">չեխերեն</language>
  35. <language type="cy">ուելսերեն</language>
  36. <language type="da">դանիերեն</language>
  37. <language type="de">գերմաներեն</language>
  38. <language type="de_AT">ավստրիական գերմաներեն</language>
  39. <language type="de_CH">շվեյցարական բարձր գերմաներեն</language>
  40. <language type="el">հունարեն</language>
  41. <language type="en">անգլերեն</language>
  42. <language type="en_AU">ավստրալական անգլերեն</language>
  43. <language type="en_CA">կանադական անգլերեն</language>
  44. <language type="en_GB">բրիտանական անգլերեն</language>
  45. <language type="en_GB" alt="short">անգլերեն (ՄԹ)</language>
  46. <language type="en_US">ամերիկյան անգլերեն</language>
  47. <language type="en_US" alt="short">անգլերեն (ԱՄՆ)</language>
  48. <language type="eo">էսպերանտո</language>
  49. <language type="es">իսպաներեն</language>
  50. <language type="es_419">լատինաամերիկյան իսպաներեն</language>
  51. <language type="es_ES">եվրոպական իսպաներեն</language>
  52. <language type="es_MX">մեքսիկական իսպաներեն</language>
  53. <language type="et">էստոներեն</language>
  54. <language type="eu">բասկերեն</language>
  55. <language type="fa">պարսկերեն</language>
  56. <language type="fi">ֆիններեն</language>
  57. <language type="fil">ֆիլիպիներեն</language>
  58. <language type="fj">ֆիջիերեն</language>
  59. <language type="fo">ֆարյորերեն</language>
  60. <language type="fr">ֆրանսերեն</language>
  61. <language type="fr_CA">կանադական ֆրանսերեն</language>
  62. <language type="fr_CH">շվեյցարական ֆրանսերեն</language>
  63. <language type="fy">արևմտյան ֆրիզերեն</language>
  64. <language type="ga">իռլանդերեն</language>
  65. <language type="gd" draft="unconfirmed">Գաելյան Շոտլանդերեն</language>
  66. <language type="gl">գալիսերեն</language>
  67. <language type="gn">գուարանի</language>
  68. <language type="gsw">շվեյցարական գերմաներեն</language>
  69. <language type="gu">գուջարաթի</language>
  70. <language type="ha">հաուսա</language>
  71. <language type="haw">հավայիերեն</language>
  72. <language type="he">եբրայերեն</language>
  73. <language type="hi">հինդի</language>
  74. <language type="hr">խորվաթերեն</language>
  75. <language type="ht">հաիթերեն</language>
  76. <language type="hu">հունգարերեն</language>
  77. <language type="hy">հայերեն</language>
  78. <language type="ia" draft="unconfirmed">Ինտերլինգուա</language>
  79. <language type="id">ինդոնեզերեն</language>
  80. <language type="ie" draft="unconfirmed">Ինտերլինգ</language>
  81. <language type="ig">իգբո</language>
  82. <language type="is">իսլանդերեն</language>
  83. <language type="it">իտալերեն</language>
  84. <language type="ja">ճապոներեն</language>
  85. <language type="jv">ճավայերեն</language>
  86. <language type="ka">վրացերեն</language>
  87. <language type="kk">ղազախերեն</language>
  88. <language type="km">քմերերեն</language>
  89. <language type="kn">կաննադա</language>
  90. <language type="ko">կորեերեն</language>
  91. <language type="ks">քաշմիրերեն</language>
  92. <language type="ku">քրդերեն</language>
  93. <language type="ky">ղրղզերեն</language>
  94. <language type="la">լատիներեն</language>
  95. <language type="lb">լյուքսեմբուրգերեն</language>
  96. <language type="ln" draft="unconfirmed">Լինգալա</language>
  97. <language type="lo">լաոսերեն</language>
  98. <language type="lt">լիտվերեն</language>
  99. <language type="lv">լատվիերեն</language>
  100. <language type="mg">մալագասերեն</language>
  101. <language type="mi">մաորի</language>
  102. <language type="mk">մակեդոներեն</language>
  103. <language type="ml">մալայալամ</language>
  104. <language type="mn" draft="unconfirmed">Մոնղոլերեն</language>
  105. <language type="mr">մարաթի</language>
  106. <language type="ms">մալայերեն</language>
  107. <language type="mt">մալթերեն</language>
  108. <language type="my">բիրմայերեն</language>
  109. <language type="nb">նորվեգերեն բուկմոլ</language>
  110. <language type="ne">նեպալերեն</language>
  111. <language type="nl">հոլանդերեն</language>
  112. <language type="nl_BE">ֆլամանդերեն</language>
  113. <language type="nn">նորվեգերեն նյունորսկ</language>
  114. <language type="no" draft="unconfirmed">Նորվեգերեն</language>
  115. <language type="oc" draft="unconfirmed">Ակվիտաներեն</language>
  116. <language type="or">օրիյա</language>
  117. <language type="pa">փենջաբերեն</language>
  118. <language type="pl">լեհերեն</language>
  119. <language type="ps">փուշթու</language>
  120. <language type="pt">պորտուգալերեն</language>
  121. <language type="pt_BR">բրազիլական պորտուգալերեն</language>
  122. <language type="pt_PT">եվրոպական պորտուգալերեն</language>
  123. <language type="qu">քեչուա</language>
  124. <language type="rm">ռոմանշերեն</language>
  125. <language type="ro">ռումիներեն</language>
  126. <language type="ru">ռուսերեն</language>
  127. <language type="sa">սանսկրիտ</language>
  128. <language type="sd">սինդհի</language>
  129. <language type="sh" draft="unconfirmed">Սերբա-Խորվաթերեն</language>
  130. <language type="si">սինհալերեն</language>
  131. <language type="sk">սլովակերեն</language>
  132. <language type="sl">սլովեներեն</language>
  133. <language type="so">սոմալիերեն</language>
  134. <language type="sq">ալբաներեն</language>
  135. <language type="sr">սերբերեն</language>
  136. <language type="st" draft="unconfirmed">Սեսոտո</language>
  137. <language type="su">սունդաներեն</language>
  138. <language type="sv">շվեդերեն</language>
  139. <language type="sw">սուահիլի</language>
  140. <language type="ta">թամիլերեն</language>
  141. <language type="te">թելուգու</language>
  142. <language type="tg">տաջիկերեն</language>
  143. <language type="th">թայերեն</language>
  144. <language type="ti">թիգրինիա</language>
  145. <language type="tk">թուրքմեներեն</language>
  146. <language type="tlh" draft="unconfirmed">Կլինգոն</language>
  147. <language type="to">տոնգա</language>
  148. <language type="tr">թուրքերեն</language>
  149. <language type="tt">թաթարերեն</language>
  150. <language type="tw" draft="unconfirmed">Տուի</language>
  151. <language type="ug">ույղուրերեն</language>
  152. <language type="uk">ուկրաիներեն</language>
  153. <language type="und">անհայտ լեզու</language>
  154. <language type="ur">ուրդու</language>
  155. <language type="uz">ուզբեկերեն</language>
  156. <language type="vi">վիետնամերեն</language>
  157. <language type="wo">վոլոֆ</language>
  158. <language type="xh">քսոզա</language>
  159. <language type="yi" draft="unconfirmed">Իդիշ</language>
  160. <language type="yo">յորուբա</language>
  161. <language type="zgh">ստանդարտ մարոկական թամազիղտ</language>
  162. <language type="zh">չինարեն</language>
  163. <language type="zh_Hans">պարզեցված չինարեն</language>
  164. <language type="zh_Hant">ավանդական չինարեն</language>
  165. <language type="zu">զուլուսերեն</language>
  166. <language type="zxx">առանց լեզվային բովանդակության</language>
  167. </languages>
  168. <scripts>
  169. <script type="Arab">արաբական</script>
  170. <script type="Armn">հայկական</script>
  171. <script type="Beng">բենգալական</script>
  172. <script type="Bopo">բոպոմոֆո</script>
  173. <script type="Brai">բրայլի</script>
  174. <script type="Cyrl">կյուրեղագիր</script>
  175. <script type="Deva">դեվանագարի</script>
  176. <script type="Ethi">եթովպական</script>
  177. <script type="Geor">վրացական</script>
  178. <script type="Grek">հունական</script>
  179. <script type="Gujr">գուջարաթի</script>
  180. <script type="Guru">գուրմուխի</script>
  181. <script type="Hang">հանգուլ</script>
  182. <script type="Hani">չինական</script>
  183. <script type="Hans">պարզեցված չինական</script>
  184. <script type="Hans" alt="stand-alone">պարզեցված չինական</script>
  185. <script type="Hant">ավանդական չինական</script>
  186. <script type="Hant" alt="stand-alone">ավանդական չինական</script>
  187. <script type="Hebr">եբրայական</script>
  188. <script type="Hira">հիրագանա</script>
  189. <script type="Jpan">ճապոնական</script>
  190. <script type="Kana">կատականա</script>
  191. <script type="Khmr">քմերական</script>
  192. <script type="Knda">կաննադա</script>
  193. <script type="Kore">կորեական</script>
  194. <script type="Laoo">լաոսական</script>
  195. <script type="Latn">լատինական</script>
  196. <script type="Mlym">մալայալամ</script>
  197. <script type="Mong">մոնղոլական</script>
  198. <script type="Mymr">մյանմարական</script>
  199. <script type="Orya">օրիյա</script>
  200. <script type="Sinh">սինհալական</script>
  201. <script type="Taml">թամիլական</script>
  202. <script type="Telu">թելուգու</script>
  203. <script type="Thaa">թաանա</script>
  204. <script type="Thai">թայական</script>
  205. <script type="Tibt">տիբեթական</script>
  206. <script type="Zsym">նշաններ</script>
  207. <script type="Zxxx">չգրված</script>
  208. <script type="Zyyy">ընդհանուր</script>
  209. <script type="Zzzz">անհայտ գիր</script>
  210. </scripts>
  211. <territories>
  212. <territory type="001">Աշխարհ</territory>
  213. <territory type="002">Աֆրիկա</territory>
  214. <territory type="003">Հյուսիսային Ամերիկա</territory>
  215. <territory type="005">Հարավային Ամերիկա</territory>
  216. <territory type="009">Օվկիանիա</territory>
  217. <territory type="011">Արևմտյան Աֆրիկա</territory>
  218. <territory type="013">Կենտրոնական Ամերիկա</territory>
  219. <territory type="014">Արևելյան Աֆրիկա</territory>
  220. <territory type="015">Հյուսիսային Աֆրիկա</territory>
  221. <territory type="017">Կենտրոնական Աֆրիկա</territory>
  222. <territory type="018">Աֆրիկայի հարավ</territory>
  223. <territory type="019">Ամերիկա</territory>
  224. <territory type="021">Հյուսիսային Ամերիկա - Մեքսիկայից հյուսիս</territory>
  225. <territory type="029">Կարիբյան կղզիներ</territory>
  226. <territory type="030">Արևելյան Ասիա</territory>
  227. <territory type="034">Հարավային Ասիա</territory>
  228. <territory type="035">Հարավ-Արևելյան Ասիա</territory>
  229. <territory type="039">Հարավային Եվրոպա</territory>
  230. <territory type="053">Ավստրալասիա</territory>
  231. <territory type="054">Մալանեզիա</territory>
  232. <territory type="057">Միկրոնեզիայի տարածաշրջան</territory>
  233. <territory type="061">Պոլինեզիա</territory>
  234. <territory type="142">Ասիա</territory>
  235. <territory type="143">Կենտրոնական Ասիա</territory>
  236. <territory type="145">Արևմտյան Ասիա</territory>
  237. <territory type="150">Եվրոպա</territory>
  238. <territory type="151">Արևելյան Եվրոպա</territory>
  239. <territory type="154">Հյուսիսային Եվրոպա</territory>
  240. <territory type="155">Արևմտյան Եվրոպա</territory>
  241. <territory type="419">Լատինական Ամերիկա</territory>
  242. <territory type="AC">Համբարձման կղզի</territory>
  243. <territory type="AD">Անդորա</territory>
  244. <territory type="AE">Միացյալ Արաբական Էմիրություններ</territory>
  245. <territory type="AF">Աֆղանստան</territory>
  246. <territory type="AG">Անտիգուա և Բարբուդա</territory>
  247. <territory type="AI">Անգիլիա</territory>
  248. <territory type="AL">Ալբանիա</territory>
  249. <territory type="AM">Հայաստան</territory>
  250. <territory type="AO">Անգոլա</territory>
  251. <territory type="AQ">Անտարկտիդա</territory>
  252. <territory type="AR">Արգենտինա</territory>
  253. <territory type="AS">Ամերիկյան Սամոա</territory>
  254. <territory type="AT">Ավստրիա</territory>
  255. <territory type="AU">Ավստրալիա</territory>
  256. <territory type="AW">Արուբա</territory>
  257. <territory type="AX">Ալանդյան կղզիներ</territory>
  258. <territory type="AZ">Ադրբեջան</territory>
  259. <territory type="BA">Բոսնիա և Հերցեգովինա</territory>
  260. <territory type="BB">Բարբադոս</territory>
  261. <territory type="BD">Բանգլադեշ</territory>
  262. <territory type="BE">Բելգիա</territory>
  263. <territory type="BF">Բուրկինա Ֆասո</territory>
  264. <territory type="BG">Բուլղարիա</territory>
  265. <territory type="BH">Բահրեյն</territory>
  266. <territory type="BI">Բուրունդի</territory>
  267. <territory type="BJ">Բենին</territory>
  268. <territory type="BL">Սուրբ Բարթողոմեոսի կղզի</territory>
  269. <territory type="BM">Բերմուդյան կղզիներ</territory>
  270. <territory type="BN">Բրունեյ</territory>
  271. <territory type="BO">Բոլիվիա</territory>
  272. <territory type="BQ">Կարիբյան Նիդերլանդներ</territory>
  273. <territory type="BR">Բրազիլիա</territory>
  274. <territory type="BS">Բահամյան կղզիներ</territory>
  275. <territory type="BT">Բութան</territory>
  276. <territory type="BV">Բուվե կղզի</territory>
  277. <territory type="BW">Բոտսվանա</territory>
  278. <territory type="BY">Բելառուս</territory>
  279. <territory type="BZ">Բելիզ</territory>
  280. <territory type="CA">Կանադա</territory>
  281. <territory type="CC">Կոկոսյան (Քիլինգ) կղզիներ</territory>
  282. <territory type="CD">Կոնգո - Կինշասա</territory>
  283. <territory type="CD" alt="variant">Կոնգո (Կոնգոյի Ժողովրդավարական Հանրապետություն)</territory>
  284. <territory type="CF">Կենտրոնական Աֆրիկյան Հանրապետություն</territory>
  285. <territory type="CG">Կոնգո - Բրազավիլ</territory>
  286. <territory type="CG" alt="variant">Կոնգո (Կոնգոյի Հանրապետություն)</territory>
  287. <territory type="CH">Շվեյցարիա</territory>
  288. <territory type="CI">Փղոսկրի Ափ</territory>
  289. <territory type="CK">Կուկի կղզիներ</territory>
  290. <territory type="CL">Չիլի</territory>
  291. <territory type="CM">Կամերուն</territory>
  292. <territory type="CN">Չինաստան</territory>
  293. <territory type="CO">Կոլումբիա</territory>
  294. <territory type="CP">Քլիփերթոն կղզի</territory>
  295. <territory type="CR">Կոստա-Ռիկա</territory>
  296. <territory type="CU">Կուբա</territory>
  297. <territory type="CV">Կաբո Վերդե</territory>
  298. <territory type="CW">Կյուրասաո</territory>
  299. <territory type="CX">Ծննդյան կղզի</territory>
  300. <territory type="CY">Կիպրոս</territory>
  301. <territory type="CZ">Չեխիա</territory>
  302. <territory type="DE">Գերմանիա</territory>
  303. <territory type="DG">Դիեգո Գարսիա</territory>
  304. <territory type="DJ">Ջիբուտի</territory>
  305. <territory type="DK">Դանիա</territory>
  306. <territory type="DM">Դոմինիկա</territory>
  307. <territory type="DO">Դոմինիկյան Հանրապետություն</territory>
  308. <territory type="DZ">Ալժիր</territory>
  309. <territory type="EA">Սեուտա և Մելիլյա</territory>
  310. <territory type="EC">Էկվադոր</territory>
  311. <territory type="EE">Էստոնիա</territory>
  312. <territory type="EG">Եգիպտոս</territory>
  313. <territory type="EH">Արևմտյան Սահարա</territory>
  314. <territory type="ER">Էրիտրեա</territory>
  315. <territory type="ES">Իսպանիա</territory>
  316. <territory type="ET">Եթովպիա</territory>
  317. <territory type="EU">Եվրոպական Միություն</territory>
  318. <territory type="FI">Ֆինլանդիա</territory>
  319. <territory type="FJ">Ֆիջի</territory>
  320. <territory type="FK">Ֆոլկլենդյան կղզիներ</territory>
  321. <territory type="FK" alt="variant">Ֆոլկլենդյան (Մալվինյան) կղզիներ</territory>
  322. <territory type="FM">Միկրոնեզիա</territory>
  323. <territory type="FO">Ֆարերյան կղզիներ</territory>
  324. <territory type="FR">Ֆրանսիա</territory>
  325. <territory type="GA">Գաբոն</territory>
  326. <territory type="GB">Միացյալ Թագավորություն</territory>
  327. <territory type="GB" alt="short">Միացյալ Թագավորություն</territory>
  328. <territory type="GD">Գրենադա</territory>
  329. <territory type="GE">Վրաստան</territory>
  330. <territory type="GF">Ֆրանսիական Գվիանա</territory>
  331. <territory type="GG">Գերնսի</territory>
  332. <territory type="GH">Գանա</territory>
  333. <territory type="GI">Ջիբրալթար</territory>
  334. <territory type="GL">Գրենլանդիա</territory>
  335. <territory type="GM">Գամբիա</territory>
  336. <territory type="GN">Գվինեա</territory>
  337. <territory type="GP">Գվադելուպա</territory>
  338. <territory type="GQ">Հասարակածային Գվինեա</territory>
  339. <territory type="GR">Հունաստան</territory>
  340. <territory type="GS">Հարավային Ջորջիա և Հարավային Սենդվիչյան կղզիներ</territory>
  341. <territory type="GT">Գվատեմալա</territory>
  342. <territory type="GU">Գուամ</territory>
  343. <territory type="GW">Գվինեա-Բիսաու</territory>
  344. <territory type="GY">Գայանա</territory>
  345. <territory type="HK">Հոնկոնգի ՀՎՇ</territory>
  346. <territory type="HK" alt="short">Հոնկոնգ</territory>
  347. <territory type="HM">Հերդ կղզի և ՄակԴոնալդի կղզիներ</territory>
  348. <territory type="HN">Հոնդուրաս</territory>
  349. <territory type="HR">Խորվաթիա</territory>
  350. <territory type="HT">Հաիթի</territory>
  351. <territory type="HU">Հունգարիա</territory>
  352. <territory type="IC">Կանարյան կղզիներ</territory>
  353. <territory type="ID">Ինդոնեզիա</territory>
  354. <territory type="IE">Իռլանդիա</territory>
  355. <territory type="IL">Իսրայել</territory>
  356. <territory type="IM">Մեն կղզի</territory>
  357. <territory type="IN">Հնդկաստան</territory>
  358. <territory type="IO">Հնդկական Օվկիանոսում Բրիտանական Տարածք</territory>
  359. <territory type="IQ">Իրաք</territory>
  360. <territory type="IR">Իրան</territory>
  361. <territory type="IS">Իսլանդիա</territory>
  362. <territory type="IT">Իտալիա</territory>
  363. <territory type="JE">Ջերսի</territory>
  364. <territory type="JM">Ջամայկա</territory>
  365. <territory type="JO">Հորդանան</territory>
  366. <territory type="JP">Ճապոնիա</territory>
  367. <territory type="KE">Քենիա</territory>
  368. <territory type="KG">Ղրղզստան</territory>
  369. <territory type="KH">Կամբոջա</territory>
  370. <territory type="KI">Կիրիբատի</territory>
  371. <territory type="KM">Կոմորյան կղզիներ</territory>
  372. <territory type="KN">Սենթ Քիթս և Նևիս</territory>
  373. <territory type="KP">Հյուսիսային Կորեա</territory>
  374. <territory type="KR">Հարավային Կորեա</territory>
  375. <territory type="KW">Քուվեյթ</territory>
  376. <territory type="KY">Կայմանյան կղզիներ</territory>
  377. <territory type="KZ">Ղազախստան</territory>
  378. <territory type="LA">Լաոս</territory>
  379. <territory type="LB">Լիբանան</territory>
  380. <territory type="LC">Սենթ Լյուսիա</territory>
  381. <territory type="LI">Լիխտենշտեյն</territory>
  382. <territory type="LK">Շրի Լանկա</territory>
  383. <territory type="LR">Լիբերիա</territory>
  384. <territory type="LS">Լեսոտո</territory>
  385. <territory type="LT">Լիտվա</territory>
  386. <territory type="LU">Լյուքսեմբուրգ</territory>
  387. <territory type="LV">Լատվիա</territory>
  388. <territory type="LY">Լիբիա</territory>
  389. <territory type="MA">Մարոկո</territory>
  390. <territory type="MC">Մոնակո</territory>
  391. <territory type="MD">Մոլդովա</territory>
  392. <territory type="ME">Չեռնոգորիա</territory>
  393. <territory type="MF">Սեն Մարտեն</territory>
  394. <territory type="MG">Մադագասկար</territory>
  395. <territory type="MH">Մարշալյան կղզիներ</territory>
  396. <territory type="MK">Մակեդոնիա</territory>
  397. <territory type="MK" alt="variant">Մակեդոնիա (ՄՆՀՀ)</territory>
  398. <territory type="ML">Մալի</territory>
  399. <territory type="MM">Մյանմա (Բիրմա)</territory>
  400. <territory type="MN">Մոնղոլիա</territory>
  401. <territory type="MO">Չինաստանի Մակաո ՀՎՇ</territory>
  402. <territory type="MO" alt="short">Մակաո</territory>
  403. <territory type="MP">Հյուսիսային Մարիանյան կղզիներ</territory>
  404. <territory type="MQ">Մարտինիկա</territory>
  405. <territory type="MR">Մավրիտանիա</territory>
  406. <territory type="MS">Մոնտսերատ</territory>
  407. <territory type="MT">Մալթա</territory>
  408. <territory type="MU">Մավրիկիոս</territory>
  409. <territory type="MV">Մալդիվներ</territory>
  410. <territory type="MW">Մալավի</territory>
  411. <territory type="MX">Մեքսիկա</territory>
  412. <territory type="MY">Մալայզիա</territory>
  413. <territory type="MZ">Մոզամբիկ</territory>
  414. <territory type="NA">Նամիբիա</territory>
  415. <territory type="NC">Նոր Կալեդոնիա</territory>
  416. <territory type="NE">Նիգեր</territory>
  417. <territory type="NF">Նորֆոլկ կղզի</territory>
  418. <territory type="NG">Նիգերիա</territory>
  419. <territory type="NI">Նիկարագուա</territory>
  420. <territory type="NL">Նիդերլանդեր</territory>
  421. <territory type="NO">Նորվեգիա</territory>
  422. <territory type="NP">Նեպալ</territory>
  423. <territory type="NR">Նաուրու</territory>
  424. <territory type="NU">Նիուե</territory>
  425. <territory type="NZ">Նոր Զելանդիա</territory>
  426. <territory type="OM">Օման</territory>
  427. <territory type="PA">Պանամա</territory>
  428. <territory type="PE">Պերու</territory>
  429. <territory type="PF">Ֆրանսիական Պոլինեզիա</territory>
  430. <territory type="PG">Պապուա Նոր Գվինեա</territory>
  431. <territory type="PH">Ֆիլիպիններ</territory>
  432. <territory type="PK">Պակիստան</territory>
  433. <territory type="PL">Լեհաստան</territory>
  434. <territory type="PM">Սեն Պիեր և Միկելոն</territory>
  435. <territory type="PN">Պիտկեռն կղզիներ</territory>
  436. <territory type="PR">Պուերտո Ռիկո</territory>
  437. <territory type="PS">Պաղեստինյան տարածքներ</territory>
  438. <territory type="PS" alt="short">Պաղեստին</territory>
  439. <territory type="PT">Պորտուգալիա</territory>
  440. <territory type="PW">Պալաու</territory>
  441. <territory type="PY">Պարագվայ</territory>
  442. <territory type="QA">Կատար</territory>
  443. <territory type="QO">Արտաքին Օվկիանիա</territory>
  444. <territory type="RE">Ռեյունիոն</territory>
  445. <territory type="RO">Ռումինիա</territory>
  446. <territory type="RS">Սերբիա</territory>
  447. <territory type="RU">Ռուսաստան</territory>
  448. <territory type="RW">Ռուանդա</territory>
  449. <territory type="SA">Սաուդյան Արաբիա</territory>
  450. <territory type="SB">Սողոմոնյան կղզիներ</territory>
  451. <territory type="SC">Սեյշելյան կղզիներ</territory>
  452. <territory type="SD">Սուդան</territory>
  453. <territory type="SE">Շվեդիա</territory>
  454. <territory type="SG">Սինգապուր</territory>
  455. <territory type="SH">Սուրբ Հեղինեի կղզի</territory>
  456. <territory type="SI">Սլովենիա</territory>
  457. <territory type="SJ">Սվալբարդ և Յան-Մայեն</territory>
  458. <territory type="SK">Սլովակիա</territory>
  459. <territory type="SL">Սյերա-Լեոնե</territory>
  460. <territory type="SM">Սան Մարինո</territory>
  461. <territory type="SN">Սենեգալ</territory>
  462. <territory type="SO">Սոմալի</territory>
  463. <territory type="SR">Սուրինամ</territory>
  464. <territory type="SS">Հարավային Սուդան</territory>
  465. <territory type="ST">Սան Տոմե և Պրինսիպի</territory>
  466. <territory type="SV">Սալվադոր</territory>
  467. <territory type="SX">Սինտ Մարտեն</territory>
  468. <territory type="SY">Սիրիա</territory>
  469. <territory type="SZ">Սվազիլենդ</territory>
  470. <territory type="TA">Տրիստան դա Կունյա</territory>
  471. <territory type="TC">Տերկս և Կայկոս կղզիներ</territory>
  472. <territory type="TD">Չադ</territory>
  473. <territory type="TF">Ֆրանսիական Հարավային Տարածքներ</territory>
  474. <territory type="TG">Տոգո</territory>
  475. <territory type="TH">Թաիլանդ</territory>
  476. <territory type="TJ">Տաջիկստան</territory>
  477. <territory type="TK">Տոկելաու</territory>
  478. <territory type="TL">Թիմոր-Լեստե</territory>
  479. <territory type="TL" alt="variant">Արևելյան Թիմոր</territory>
  480. <territory type="TM">Թուրքմենստան</territory>
  481. <territory type="TN">Թունիս</territory>
  482. <territory type="TO">Տոնգա</territory>
  483. <territory type="TR">Թուրքիա</territory>
  484. <territory type="TT">Տրինիդադ և Տոբագո</territory>
  485. <territory type="TV">Տուվալու</territory>
  486. <territory type="TW">Թայվան</territory>
  487. <territory type="TZ">Տանզանիա</territory>
  488. <territory type="UA">Ուկրաինա</territory>
  489. <territory type="UG">Ուգանդա</territory>
  490. <territory type="UM">Արտաքին կղզիներ (ԱՄՆ)</territory>
  491. <territory type="US">Ամերիկայի Միացյալ Նահանգներ</territory>
  492. <territory type="US" alt="short">ԱՄՆ</territory>
  493. <territory type="UY">Ուրուգվայ</territory>
  494. <territory type="UZ">Ուզբեկստան</territory>
  495. <territory type="VA">Վատիկան քաղաք-պետություն</territory>
  496. <territory type="VC">Սենթ Վիսենտ և Գրենադիններ</territory>
  497. <territory type="VE">Վենեսուելա</territory>
  498. <territory type="VG">Բրիտանական Վիրջինյան կղզիներ</territory>
  499. <territory type="VI">Ամերիկյան Վիրջինյան կղզիներ</territory>
  500. <territory type="VN">Վիետնամ</territory>
  501. <territory type="VU">Վանուատու</territory>
  502. <territory type="WF">Ուոլիս և Ֆուտունա</territory>
  503. <territory type="WS">Սամոա</territory>
  504. <territory type="XK">Կոսովո</territory>
  505. <territory type="YE">Եմեն</territory>
  506. <territory type="YT">Մայոտ</territory>
  507. <territory type="ZA">Հարավաֆրիկյան Հանրապետություն</territory>
  508. <territory type="ZM">Զամբիա</territory>
  509. <territory type="ZW">Զիմբաբվե</territory>
  510. <territory type="ZZ">Անհայտ տարածաշրջան</territory>
  511. </territories>
  512. <keys>
  513. <key type="calendar">Տոմար</key>
  514. <key type="collation">Տեսակավորման կարգ</key>
  515. <key type="currency">արժույթ</key>
  516. <key type="numbers">թվեր</key>
  517. </keys>
  518. <types>
  519. <type type="arab" key="numbers">արաբա-հնդկական թվեր</type>
  520. <type type="arabext" key="numbers">արաբա-հնդկական թվերի ընդլայնված համակարգ</type>
  521. <type type="armn" key="numbers">հայկական թվեր</type>
  522. <type type="armnlow" key="numbers">հայկական թվեր (փոքրատառ)</type>
  523. <type type="beng" key="numbers">բենգալական թվեր</type>
  524. <type type="deva" key="numbers">դեվանագարի թվեր</type>
  525. <type type="ducet" key="collation">Սկզբնադիր տեսակավորման կարգ Unicode-ի համար</type>
  526. <type type="ethi" key="numbers">եթովպական թվեր</type>
  527. <type type="fullwide" key="numbers">թվերի լայն ձևաչափ</type>
  528. <type type="geor" key="numbers">վրացական թվեր</type>
  529. <type type="gregorian" key="calendar">Գրիգորյան տոմար</type>
  530. <type type="grek" key="numbers">հունական թվեր</type>
  531. <type type="greklow" key="numbers">հունական թվեր (փոքրատառ)</type>
  532. <type type="gujr" key="numbers">գուջարաթի թվեր</type>
  533. <type type="guru" key="numbers">գուրմուխի թվեր</type>
  534. <type type="hanidec" key="numbers">չինական տասնորդական թվեր</type>
  535. <type type="hans" key="numbers">չինական պարզեցված թվեր</type>
  536. <type type="hansfin" key="numbers">չինական պարզեցված ֆինանսական թվեր</type>
  537. <type type="hant" key="numbers">չինական ավանդական թվեր</type>
  538. <type type="hantfin" key="numbers">չինական ավանդական ֆինանսական թվեր</type>
  539. <type type="hebr" key="numbers">եբրայերեն թվեր</type>
  540. <type type="jpan" key="numbers">ճապոնական թվեր</type>
  541. <type type="jpanfin" key="numbers">ճապոնական ֆինանսական թվեր</type>
  542. <type type="khmr" key="numbers">քմերական թվեր</type>
  543. <type type="knda" key="numbers">կաննադա թվեր</type>
  544. <type type="laoo" key="numbers">լաոսական թվեր</type>
  545. <type type="latn" key="numbers">արևմտյան թվեր</type>
  546. <type type="mlym" key="numbers">մալայալամ թվեր</type>
  547. <type type="mymr" key="numbers">բիրմական թվեր</type>
  548. <type type="orya" key="numbers">օրիյա թվեր</type>
  549. <type type="roman" key="numbers">հռոմեական թվեր</type>
  550. <type type="romanlow" key="numbers">հռոմեական թվեր (փոքրատառ)</type>
  551. <type type="search" key="collation">Ընդհանուր որոնում</type>
  552. <type type="standard" key="collation">Տեսակավորման ստանդարտ կարգ</type>
  553. <type type="taml" key="numbers">թամիլական ավանդական թվեր</type>
  554. <type type="tamldec" key="numbers">թամիլական թվեր</type>
  555. <type type="telu" key="numbers">թելուգու թվեր</type>
  556. <type type="thai" key="numbers">թայական թվեր</type>
  557. <type type="tibt" key="numbers">տիբեթական թվեր</type>
  558. </types>
  559. <measurementSystemNames>
  560. <measurementSystemName type="metric">Մետրիկ</measurementSystemName>
  561. <measurementSystemName type="UK">Անգլիական</measurementSystemName>
  562. <measurementSystemName type="US">Ամերիկյան</measurementSystemName>
  563. </measurementSystemNames>
  564. <codePatterns>
  565. <codePattern type="language">Լեզու. {0}</codePattern>
  566. <codePattern type="script">Գիր. {0}</codePattern>
  567. <codePattern type="territory">Շրջան. {0}</codePattern>
  568. </codePatterns>
  569. </localeDisplayNames>
  570. <characters>
  571. <exemplarCharacters>[ա բ գ դ ե զ է ը թ ժ ի լ խ ծ կ հ ձ ղ ճ մ յ ն շ ո չ պ ջ ռ ս վ տ ր ց ւ փ ք և օ ֆ]</exemplarCharacters>
  572. <exemplarCharacters type="auxiliary">[]</exemplarCharacters>
  573. <exemplarCharacters type="index" draft="unconfirmed">[Ա Բ Գ Դ Ե Զ Է Ը Թ Ժ Ի Լ Խ Ծ Կ Հ Ձ Ղ Ճ Մ Յ Ն Շ Ո Չ Պ Ջ Ռ Ս Վ Տ Ր Ց Ւ Փ Ք Օ Ֆ]</exemplarCharacters>
  574. <exemplarCharacters type="punctuation">[֊ , ՝ \: ՜ ՞ . « » ՚ ՛ ՟]</exemplarCharacters>
  575. <ellipsis type="final">{0}…</ellipsis>
  576. <ellipsis type="initial">…{0}</ellipsis>
  577. <ellipsis type="medial">{0}…{1}</ellipsis>
  578. <ellipsis type="word-final">{0} …</ellipsis>
  579. <ellipsis type="word-initial">… {0}</ellipsis>
  580. <ellipsis type="word-medial">{0} … {1}</ellipsis>
  581. <moreInformation>?</moreInformation>
  582. </characters>
  583. <delimiters>
  584. <quotationStart>«</quotationStart>
  585. <quotationEnd>»</quotationEnd>
  586. <alternateQuotationStart>«</alternateQuotationStart>
  587. <alternateQuotationEnd>»</alternateQuotationEnd>
  588. </delimiters>
  589. <dates>
  590. <calendars>
  591. <calendar type="generic">
  592. <dateFormats>
  593. <dateFormatLength type="full">
  594. <dateFormat>
  595. <pattern>d MMMM, y թ. G, EEEE</pattern>
  596. </dateFormat>
  597. </dateFormatLength>
  598. <dateFormatLength type="long">
  599. <dateFormat>
  600. <pattern>dd MMMM, y թ. G</pattern>
  601. </dateFormat>
  602. </dateFormatLength>
  603. <dateFormatLength type="medium">
  604. <dateFormat>
  605. <pattern>dd MMM, y թ. G</pattern>
  606. </dateFormat>
  607. </dateFormatLength>
  608. <dateFormatLength type="short">
  609. <dateFormat>
  610. <pattern>dd.MM.y GGGGG</pattern>
  611. </dateFormat>
  612. </dateFormatLength>
  613. </dateFormats>
  614. <dateTimeFormats>
  615. <dateTimeFormatLength type="full">
  616. <dateTimeFormat>
  617. <pattern>{1}, {0}</pattern>
  618. </dateTimeFormat>
  619. </dateTimeFormatLength>
  620. <dateTimeFormatLength type="long">
  621. <dateTimeFormat>
  622. <pattern>{1}, {0}</pattern>
  623. </dateTimeFormat>
  624. </dateTimeFormatLength>
  625. <dateTimeFormatLength type="medium">
  626. <dateTimeFormat>
  627. <pattern>{1}, {0}</pattern>
  628. </dateTimeFormat>
  629. </dateTimeFormatLength>
  630. <dateTimeFormatLength type="short">
  631. <dateTimeFormat>
  632. <pattern>{1}, {0}</pattern>
  633. </dateTimeFormat>
  634. </dateTimeFormatLength>
  635. <availableFormats>
  636. <dateFormatItem id="d">d</dateFormatItem>
  637. <dateFormatItem id="Ed">d, ccc</dateFormatItem>
  638. <dateFormatItem id="Gy">G yթ.</dateFormatItem>
  639. <dateFormatItem id="GyMMM">G yթ. LLL</dateFormatItem>
  640. <dateFormatItem id="GyMMMd">G yթ. MMM d</dateFormatItem>
  641. <dateFormatItem id="GyMMMEd">G yթ. MMM d, E</dateFormatItem>
  642. <dateFormatItem id="h">h a</dateFormatItem>
  643. <dateFormatItem id="H">H</dateFormatItem>
  644. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  645. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  646. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  647. <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
  648. <dateFormatItem id="M">L</dateFormatItem>
  649. <dateFormatItem id="Md">dd.MM</dateFormatItem>
  650. <dateFormatItem id="MEd">dd.MM, E</dateFormatItem>
  651. <dateFormatItem id="MMM">LLL</dateFormatItem>
  652. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  653. <dateFormatItem id="MMMEd">d MMM, E</dateFormatItem>
  654. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  655. <dateFormatItem id="y">y, G</dateFormatItem>
  656. <dateFormatItem id="yyyy">y, G</dateFormatItem>
  657. <dateFormatItem id="yyyyM">G yթ. MM</dateFormatItem>
  658. <dateFormatItem id="yyyyMd">d.M.yթ., G</dateFormatItem>
  659. <dateFormatItem id="yyyyMEd">d.MM.y թ., G, E</dateFormatItem>
  660. <dateFormatItem id="yyyyMMM">G y թ. LLL</dateFormatItem>
  661. <dateFormatItem id="yyyyMMMd">d MMM, y թ., G</dateFormatItem>
  662. <dateFormatItem id="yyyyMMMEd">d MMM, y թ. G, E</dateFormatItem>
  663. <dateFormatItem id="yyyyQQQ">G y թ, QQQ</dateFormatItem>
  664. <dateFormatItem id="yyyyQQQQ">G y թ, QQQQ</dateFormatItem>
  665. </availableFormats>
  666. <intervalFormats>
  667. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  668. <intervalFormatItem id="d">
  669. <greatestDifference id="d">d-d</greatestDifference>
  670. </intervalFormatItem>
  671. <intervalFormatItem id="h">
  672. <greatestDifference id="a">h a – h a</greatestDifference>
  673. <greatestDifference id="h">h-h a</greatestDifference>
  674. </intervalFormatItem>
  675. <intervalFormatItem id="H">
  676. <greatestDifference id="H">H-H</greatestDifference>
  677. </intervalFormatItem>
  678. <intervalFormatItem id="hm">
  679. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  680. <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
  681. <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
  682. </intervalFormatItem>
  683. <intervalFormatItem id="Hm">
  684. <greatestDifference id="H">H:mm-H:mm</greatestDifference>
  685. <greatestDifference id="m">H:mm-H:mm</greatestDifference>
  686. </intervalFormatItem>
  687. <intervalFormatItem id="hmv">
  688. <greatestDifference id="a">h:mm a – h:mm a v</greatestDifference>
  689. <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
  690. <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
  691. </intervalFormatItem>
  692. <intervalFormatItem id="Hmv">
  693. <greatestDifference id="H">H:mm-H:mm v</greatestDifference>
  694. <greatestDifference id="m">H:mm-H:mm v</greatestDifference>
  695. </intervalFormatItem>
  696. <intervalFormatItem id="hv">
  697. <greatestDifference id="a">h a – h a v</greatestDifference>
  698. <greatestDifference id="h">h-h a v</greatestDifference>
  699. </intervalFormatItem>
  700. <intervalFormatItem id="Hv">
  701. <greatestDifference id="H">H-H v</greatestDifference>
  702. </intervalFormatItem>
  703. <intervalFormatItem id="M">
  704. <greatestDifference id="M">M-M</greatestDifference>
  705. </intervalFormatItem>
  706. <intervalFormatItem id="Md">
  707. <greatestDifference id="d">dd.MM - dd.MM</greatestDifference>
  708. <greatestDifference id="M">dd.MM - dd.MM</greatestDifference>
  709. </intervalFormatItem>
  710. <intervalFormatItem id="MEd">
  711. <greatestDifference id="d">E, dd.MM - E, dd.MM</greatestDifference>
  712. <greatestDifference id="M">E, dd.MM - E, dd.MM</greatestDifference>
  713. </intervalFormatItem>
  714. <intervalFormatItem id="MMM">
  715. <greatestDifference id="M">MMM-MMM</greatestDifference>
  716. </intervalFormatItem>
  717. <intervalFormatItem id="MMMd">
  718. <greatestDifference id="d">MMM dd-dd</greatestDifference>
  719. <greatestDifference id="M">MMM dd - MMM dd</greatestDifference>
  720. </intervalFormatItem>
  721. <intervalFormatItem id="MMMEd">
  722. <greatestDifference id="d">E, MMM dd - E, MMM dd</greatestDifference>
  723. <greatestDifference id="M">E, MMM dd - E, MMM dd</greatestDifference>
  724. </intervalFormatItem>
  725. <intervalFormatItem id="y">
  726. <greatestDifference id="y">y-y G</greatestDifference>
  727. </intervalFormatItem>
  728. <intervalFormatItem id="yM">
  729. <greatestDifference id="M">MM.y - MM.y G</greatestDifference>
  730. <greatestDifference id="y">MM.y - MM.y G</greatestDifference>
  731. </intervalFormatItem>
  732. <intervalFormatItem id="yMd">
  733. <greatestDifference id="d">dd.MM.y - dd.MM.y G</greatestDifference>
  734. <greatestDifference id="M">dd.MM.y - dd.MM.y G</greatestDifference>
  735. <greatestDifference id="y">dd.MM.y - dd.MM.y G</greatestDifference>
  736. </intervalFormatItem>
  737. <intervalFormatItem id="yMEd">
  738. <greatestDifference id="d">ccc, dd.MM.y - ccc, dd.MM.y G</greatestDifference>
  739. <greatestDifference id="M">ccc, dd.MM.y - ccc, dd.MM.y G</greatestDifference>
  740. <greatestDifference id="y">ccc, dd.MM.y - ccc, dd.MM.y G</greatestDifference>
  741. </intervalFormatItem>
  742. <intervalFormatItem id="yMMM">
  743. <greatestDifference id="M">MMM-MMM y թ. G</greatestDifference>
  744. <greatestDifference id="y">MMM y - MMM y թ. G</greatestDifference>
  745. </intervalFormatItem>
  746. <intervalFormatItem id="yMMMd">
  747. <greatestDifference id="d">dd-dd MMM, y թ. G</greatestDifference>
  748. <greatestDifference id="M">dd MMM - dd MMM, y թ. G</greatestDifference>
  749. <greatestDifference id="y">dd MMM, y - dd MMM, y թ. G</greatestDifference>
  750. </intervalFormatItem>
  751. <intervalFormatItem id="yMMMEd">
  752. <greatestDifference id="d">E, d MMM - E, d MMM, y թ. G</greatestDifference>
  753. <greatestDifference id="M">E, d MMM - E, d MMM, y թ. G</greatestDifference>
  754. <greatestDifference id="y">E, d MMM, y - E, d MMM, y թ. G</greatestDifference>
  755. </intervalFormatItem>
  756. <intervalFormatItem id="yMMMM">
  757. <greatestDifference id="M">G y թ. MMM – MMM</greatestDifference>
  758. <greatestDifference id="y">MMM y - MMM y թ G</greatestDifference>
  759. </intervalFormatItem>
  760. </intervalFormats>
  761. </dateTimeFormats>
  762. </calendar>
  763. <calendar type="gregorian">
  764. <months>
  765. <monthContext type="format">
  766. <monthWidth type="abbreviated">
  767. <month type="1">հնվ</month>
  768. <month type="2">փտվ</month>
  769. <month type="3">մրտ</month>
  770. <month type="4">ապր</month>
  771. <month type="5">մյս</month>
  772. <month type="6">հնս</month>
  773. <month type="7">հլս</month>
  774. <month type="8">օգս</month>
  775. <month type="9">սպտ</month>
  776. <month type="10">հկտ</month>
  777. <month type="11">նյմ</month>
  778. <month type="12">դկտ</month>
  779. </monthWidth>
  780. <monthWidth type="narrow">
  781. <month type="1">Հ</month>
  782. <month type="2">Փ</month>
  783. <month type="3">Մ</month>
  784. <month type="4">Ա</month>
  785. <month type="5">Մ</month>
  786. <month type="6">Հ</month>
  787. <month type="7">Հ</month>
  788. <month type="8">Օ</month>
  789. <month type="9">Ս</month>
  790. <month type="10">Հ</month>
  791. <month type="11">Ն</month>
  792. <month type="12">Դ</month>
  793. </monthWidth>
  794. <monthWidth type="wide">
  795. <month type="1">հունվարի</month>
  796. <month type="2">փետրվարի</month>
  797. <month type="3">մարտի</month>
  798. <month type="4">ապրիլի</month>
  799. <month type="5">մայիսի</month>
  800. <month type="6">հունիսի</month>
  801. <month type="7">հուլիսի</month>
  802. <month type="8">օգոստոսի</month>
  803. <month type="9">սեպտեմբերի</month>
  804. <month type="10">հոկտեմբերի</month>
  805. <month type="11">նոյեմբերի</month>
  806. <month type="12">դեկտեմբերի</month>
  807. </monthWidth>
  808. </monthContext>
  809. <monthContext type="stand-alone">
  810. <monthWidth type="abbreviated">
  811. <month type="1">հնվ</month>
  812. <month type="2">փտվ</month>
  813. <month type="3">մրտ</month>
  814. <month type="4">ապր</month>
  815. <month type="5">մյս</month>
  816. <month type="6">հնս</month>
  817. <month type="7">հլս</month>
  818. <month type="8">օգս</month>
  819. <month type="9">սպտ</month>
  820. <month type="10">հկտ</month>
  821. <month type="11">նյմ</month>
  822. <month type="12">դկտ</month>
  823. </monthWidth>
  824. <monthWidth type="narrow">
  825. <month type="1">Հ</month>
  826. <month type="2">Փ</month>
  827. <month type="3">Մ</month>
  828. <month type="4">Ա</month>
  829. <month type="5">Մ</month>
  830. <month type="6">Հ</month>
  831. <month type="7">Հ</month>
  832. <month type="8">Օ</month>
  833. <month type="9">Ս</month>
  834. <month type="10">Հ</month>
  835. <month type="11">Ն</month>
  836. <month type="12">Դ</month>
  837. </monthWidth>
  838. <monthWidth type="wide">
  839. <month type="1">հունվար</month>
  840. <month type="2">փետրվար</month>
  841. <month type="3">մարտ</month>
  842. <month type="4">ապրիլ</month>
  843. <month type="5">մայիս</month>
  844. <month type="6">հունիս</month>
  845. <month type="7">հուլիս</month>
  846. <month type="8">օգոստոս</month>
  847. <month type="9">սեպտեմբեր</month>
  848. <month type="10">հոկտեմբեր</month>
  849. <month type="11">նոյեմբեր</month>
  850. <month type="12">դեկտեմբեր</month>
  851. </monthWidth>
  852. </monthContext>
  853. </months>
  854. <days>
  855. <dayContext type="format">
  856. <dayWidth type="abbreviated">
  857. <day type="sun">կիր</day>
  858. <day type="mon">երկ</day>
  859. <day type="tue">երք</day>
  860. <day type="wed">չրք</day>
  861. <day type="thu">հնգ</day>
  862. <day type="fri">ուր</day>
  863. <day type="sat">շբթ</day>
  864. </dayWidth>
  865. <dayWidth type="narrow">
  866. <day type="sun">Կ</day>
  867. <day type="mon">Ե</day>
  868. <day type="tue">Ե</day>
  869. <day type="wed">Չ</day>
  870. <day type="thu">Հ</day>
  871. <day type="fri">Ու</day>
  872. <day type="sat">Շ</day>
  873. </dayWidth>
  874. <dayWidth type="short">
  875. <day type="sun">կիր</day>
  876. <day type="mon">երկ</day>
  877. <day type="tue">երք</day>
  878. <day type="wed">չրք</day>
  879. <day type="thu">հնգ</day>
  880. <day type="fri">ուր</day>
  881. <day type="sat">շբթ</day>
  882. </dayWidth>
  883. <dayWidth type="wide">
  884. <day type="sun">կիրակի</day>
  885. <day type="mon">երկուշաբթի</day>
  886. <day type="tue">երեքշաբթի</day>
  887. <day type="wed">չորեքշաբթի</day>
  888. <day type="thu">հինգշաբթի</day>
  889. <day type="fri">ուրբաթ</day>
  890. <day type="sat">շաբաթ</day>
  891. </dayWidth>
  892. </dayContext>
  893. <dayContext type="stand-alone">
  894. <dayWidth type="abbreviated">
  895. <day type="sun">կիր</day>
  896. <day type="mon">երկ</day>
  897. <day type="tue">երք</day>
  898. <day type="wed">չրք</day>
  899. <day type="thu">հնգ</day>
  900. <day type="fri">ուր</day>
  901. <day type="sat">շբթ</day>
  902. </dayWidth>
  903. <dayWidth type="narrow">
  904. <day type="sun">Կ</day>
  905. <day type="mon">Ե</day>
  906. <day type="tue">Ե</day>
  907. <day type="wed">Չ</day>
  908. <day type="thu">Հ</day>
  909. <day type="fri">Ու</day>
  910. <day type="sat">Շ</day>
  911. </dayWidth>
  912. <dayWidth type="short">
  913. <day type="sun">կր</day>
  914. <day type="mon">եկ</day>
  915. <day type="tue">եք</day>
  916. <day type="wed">չր</day>
  917. <day type="thu">հգ</day>
  918. <day type="fri">ուր</day>
  919. <day type="sat">շբ</day>
  920. </dayWidth>
  921. <dayWidth type="wide">
  922. <day type="sun">կիրակի</day>
  923. <day type="mon">երկուշաբթի</day>
  924. <day type="tue">երեքշաբթի</day>
  925. <day type="wed">չորեքշաբթի</day>
  926. <day type="thu">հինգշաբթի</day>
  927. <day type="fri">ուրբաթ</day>
  928. <day type="sat">շաբաթ</day>
  929. </dayWidth>
  930. </dayContext>
  931. </days>
  932. <quarters>
  933. <quarterContext type="format">
  934. <quarterWidth type="abbreviated">
  935. <quarter type="1">1-ին եռմս.</quarter>
  936. <quarter type="2">2-րդ եռմս.</quarter>
  937. <quarter type="3">3-րդ եռմս.</quarter>
  938. <quarter type="4">4-րդ եռմս.</quarter>
  939. </quarterWidth>
  940. <quarterWidth type="narrow">
  941. <quarter type="1">1</quarter>
  942. <quarter type="2">2</quarter>
  943. <quarter type="3">3</quarter>
  944. <quarter type="4">4</quarter>
  945. </quarterWidth>
  946. <quarterWidth type="wide">
  947. <quarter type="1">1-ին եռամսյակ</quarter>
  948. <quarter type="2">2-րդ եռամսյակ</quarter>
  949. <quarter type="3">3-րդ եռամսյակ</quarter>
  950. <quarter type="4">4-րդ եռամսյակ</quarter>
  951. </quarterWidth>
  952. </quarterContext>
  953. <quarterContext type="stand-alone">
  954. <quarterWidth type="abbreviated">
  955. <quarter type="1">1-ին եռմս.</quarter>
  956. <quarter type="2">2-րդ եռմս.</quarter>
  957. <quarter type="3">3-րդ եռմս.</quarter>
  958. <quarter type="4">4-րդ եռմս.</quarter>
  959. </quarterWidth>
  960. <quarterWidth type="narrow">
  961. <quarter type="1">1</quarter>
  962. <quarter type="2">2</quarter>
  963. <quarter type="3">3</quarter>
  964. <quarter type="4">4</quarter>
  965. </quarterWidth>
  966. <quarterWidth type="wide">
  967. <quarter type="1">1-ին եռամսյակ</quarter>
  968. <quarter type="2">2-րդ եռամսյակ</quarter>
  969. <quarter type="3">3-րդ եռամսյակ</quarter>
  970. <quarter type="4">4-րդ եռամսյակ</quarter>
  971. </quarterWidth>
  972. </quarterContext>
  973. </quarters>
  974. <dayPeriods>
  975. <dayPeriodContext type="format">
  976. <dayPeriodWidth type="wide">
  977. <dayPeriod type="am">կեսօրից առաջ</dayPeriod>
  978. <dayPeriod type="pm">կեսօրից հետո</dayPeriod>
  979. </dayPeriodWidth>
  980. </dayPeriodContext>
  981. </dayPeriods>
  982. <eras>
  983. <eraAbbr>
  984. <era type="0">մ.թ.ա.</era>
  985. <era type="1">մ.թ.</era>
  986. </eraAbbr>
  987. </eras>
  988. <dateFormats>
  989. <dateFormatLength type="full">
  990. <dateFormat>
  991. <pattern>yթ. MMMM d, EEEE</pattern>
  992. </dateFormat>
  993. </dateFormatLength>
  994. <dateFormatLength type="long">
  995. <dateFormat>
  996. <pattern>dd MMMM, yթ.</pattern>
  997. </dateFormat>
  998. </dateFormatLength>
  999. <dateFormatLength type="medium">
  1000. <dateFormat>
  1001. <pattern>dd MMM, y թ.</pattern>
  1002. </dateFormat>
  1003. </dateFormatLength>
  1004. <dateFormatLength type="short">
  1005. <dateFormat>
  1006. <pattern>dd.MM.yy</pattern>
  1007. </dateFormat>
  1008. </dateFormatLength>
  1009. </dateFormats>
  1010. <timeFormats>
  1011. <timeFormatLength type="full">
  1012. <timeFormat>
  1013. <pattern>H:mm:ss, zzzz</pattern>
  1014. </timeFormat>
  1015. </timeFormatLength>
  1016. <timeFormatLength type="long">
  1017. <timeFormat>
  1018. <pattern>H:mm:ss, z</pattern>
  1019. </timeFormat>
  1020. </timeFormatLength>
  1021. <timeFormatLength type="medium">
  1022. <timeFormat>
  1023. <pattern>H:mm:ss</pattern>
  1024. </timeFormat>
  1025. </timeFormatLength>
  1026. <timeFormatLength type="short">
  1027. <timeFormat>
  1028. <pattern>H:mm</pattern>
  1029. </timeFormat>
  1030. </timeFormatLength>
  1031. </timeFormats>
  1032. <dateTimeFormats>
  1033. <dateTimeFormatLength type="full">
  1034. <dateTimeFormat>
  1035. <pattern>{1}, {0}</pattern>
  1036. </dateTimeFormat>
  1037. </dateTimeFormatLength>
  1038. <dateTimeFormatLength type="long">
  1039. <dateTimeFormat>
  1040. <pattern>{1}, {0}</pattern>
  1041. </dateTimeFormat>
  1042. </dateTimeFormatLength>
  1043. <dateTimeFormatLength type="medium">
  1044. <dateTimeFormat>
  1045. <pattern>{1}, {0}</pattern>
  1046. </dateTimeFormat>
  1047. </dateTimeFormatLength>
  1048. <dateTimeFormatLength type="short">
  1049. <dateTimeFormat>
  1050. <pattern>{1}, {0}</pattern>
  1051. </dateTimeFormat>
  1052. </dateTimeFormatLength>
  1053. <availableFormats>
  1054. <dateFormatItem id="d">d</dateFormatItem>
  1055. <dateFormatItem id="Ed">d, ccc</dateFormatItem>
  1056. <dateFormatItem id="Ehm">E, h:mm a</dateFormatItem>
  1057. <dateFormatItem id="EHm">E, HH:mm</dateFormatItem>
  1058. <dateFormatItem id="Ehms">E, h:mm:ss a</dateFormatItem>
  1059. <dateFormatItem id="EHms">E, HH:mm:ss</dateFormatItem>
  1060. <dateFormatItem id="Gy">G yթ.</dateFormatItem>
  1061. <dateFormatItem id="GyMMM">G yթ. LLL</dateFormatItem>
  1062. <dateFormatItem id="GyMMMd">d MMM, yթ.,</dateFormatItem>
  1063. <dateFormatItem id="GyMMMEd">G yթ. MMM d, E</dateFormatItem>
  1064. <dateFormatItem id="h">h a</dateFormatItem>
  1065. <dateFormatItem id="H">H</dateFormatItem>
  1066. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1067. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  1068. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1069. <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
  1070. <dateFormatItem id="M">L</dateFormatItem>
  1071. <dateFormatItem id="Md">dd.MM</dateFormatItem>
  1072. <dateFormatItem id="MEd">dd.MM, E</dateFormatItem>
  1073. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1074. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  1075. <dateFormatItem id="MMMEd">d MMM, E</dateFormatItem>
  1076. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1077. <dateFormatItem id="y">y</dateFormatItem>
  1078. <dateFormatItem id="yM">MM.y</dateFormatItem>
  1079. <dateFormatItem id="yMd">dd.MM.y</dateFormatItem>
  1080. <dateFormatItem id="yMEd">d.MM.yթ., E</dateFormatItem>
  1081. <dateFormatItem id="yMMM">yթ. LLL</dateFormatItem>
  1082. <dateFormatItem id="yMMMd">d MMM, yթ.</dateFormatItem>
  1083. <dateFormatItem id="yMMMEd">yթ. MMM d, E</dateFormatItem>
  1084. <dateFormatItem id="yQQQ">y թ, QQQ</dateFormatItem>
  1085. <dateFormatItem id="yQQQQ">y թ, QQQQ</dateFormatItem>
  1086. </availableFormats>
  1087. <appendItems>
  1088. <appendItem request="Timezone">{0}, {1}</appendItem>
  1089. </appendItems>
  1090. <intervalFormats>
  1091. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1092. <intervalFormatItem id="d">
  1093. <greatestDifference id="d">d-d</greatestDifference>
  1094. </intervalFormatItem>
  1095. <intervalFormatItem id="h">
  1096. <greatestDifference id="a">h a – h a</greatestDifference>
  1097. <greatestDifference id="h">h-h a</greatestDifference>
  1098. </intervalFormatItem>
  1099. <intervalFormatItem id="H">
  1100. <greatestDifference id="H">H-H</greatestDifference>
  1101. </intervalFormatItem>
  1102. <intervalFormatItem id="hm">
  1103. <greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
  1104. <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
  1105. <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
  1106. </intervalFormatItem>
  1107. <intervalFormatItem id="Hm">
  1108. <greatestDifference id="H">H:mm-H:mm</greatestDifference>
  1109. <greatestDifference id="m">H:mm-H:mm</greatestDifference>
  1110. </intervalFormatItem>
  1111. <intervalFormatItem id="hmv">
  1112. <greatestDifference id="a">h:mm a – h:mm a, v</greatestDifference>
  1113. <greatestDifference id="h">h:mm-h:mm a, v</greatestDifference>
  1114. <greatestDifference id="m">h:mm-h:mm a, v</greatestDifference>
  1115. </intervalFormatItem>
  1116. <intervalFormatItem id="Hmv">
  1117. <greatestDifference id="H">H:mm-H:mm, v</greatestDifference>
  1118. <greatestDifference id="m">H:mm-H:mm, v</greatestDifference>
  1119. </intervalFormatItem>
  1120. <intervalFormatItem id="hv">
  1121. <greatestDifference id="a">h a – h a, v</greatestDifference>
  1122. <greatestDifference id="h">h-h a, v</greatestDifference>
  1123. </intervalFormatItem>
  1124. <intervalFormatItem id="Hv">
  1125. <greatestDifference id="H">H-H, v</greatestDifference>
  1126. </intervalFormatItem>
  1127. <intervalFormatItem id="M">
  1128. <greatestDifference id="M">M-M</greatestDifference>
  1129. </intervalFormatItem>
  1130. <intervalFormatItem id="Md">
  1131. <greatestDifference id="d">dd.MM - dd.MM</greatestDifference>
  1132. <greatestDifference id="M">dd.MM - dd.MM</greatestDifference>
  1133. </intervalFormatItem>
  1134. <intervalFormatItem id="MEd">
  1135. <greatestDifference id="d">E, dd.MM - E, dd.MM</greatestDifference>
  1136. <greatestDifference id="M">E, dd.MM - E, dd.MM</greatestDifference>
  1137. </intervalFormatItem>
  1138. <intervalFormatItem id="MMM">
  1139. <greatestDifference id="M">MMM-MMM</greatestDifference>
  1140. </intervalFormatItem>
  1141. <intervalFormatItem id="MMMd">
  1142. <greatestDifference id="d">MMM dd-dd</greatestDifference>
  1143. <greatestDifference id="M">MMM dd - MMM dd</greatestDifference>
  1144. </intervalFormatItem>
  1145. <intervalFormatItem id="MMMEd">
  1146. <greatestDifference id="d">E, MMM dd - E, MMM dd</greatestDifference>
  1147. <greatestDifference id="M">E, MMM dd - E, MMM dd</greatestDifference>
  1148. </intervalFormatItem>
  1149. <intervalFormatItem id="y">
  1150. <greatestDifference id="y">y-y</greatestDifference>
  1151. </intervalFormatItem>
  1152. <intervalFormatItem id="yM">
  1153. <greatestDifference id="M">MM.y - MM.y</greatestDifference>
  1154. <greatestDifference id="y">MM.y - MM.y</greatestDifference>
  1155. </intervalFormatItem>
  1156. <intervalFormatItem id="yMd">
  1157. <greatestDifference id="d">dd.MM.y - dd.MM.y</greatestDifference>
  1158. <greatestDifference id="M">dd.MM.y - dd.MM.y</greatestDifference>
  1159. <greatestDifference id="y">dd.MM.y - dd.MM.y</greatestDifference>
  1160. </intervalFormatItem>
  1161. <intervalFormatItem id="yMEd">
  1162. <greatestDifference id="d">ccc, dd.MM.y - ccc, dd.MM.y</greatestDifference>
  1163. <greatestDifference id="M">ccc, dd.MM.y - ccc, dd.MM.y</greatestDifference>
  1164. <greatestDifference id="y">ccc, dd.MM.y - ccc, dd.MM.y</greatestDifference>
  1165. </intervalFormatItem>
  1166. <intervalFormatItem id="yMMM">
  1167. <greatestDifference id="M">MMM-MMM yթ.</greatestDifference>
  1168. <greatestDifference id="y">MMM y - MMM yթ.</greatestDifference>
  1169. </intervalFormatItem>
  1170. <intervalFormatItem id="yMMMd">
  1171. <greatestDifference id="d">dd-dd MMM, yթ.</greatestDifference>
  1172. <greatestDifference id="M">dd MMM - dd MMM, yթ.</greatestDifference>
  1173. <greatestDifference id="y">dd MMM, y - dd MMM, yթ.</greatestDifference>
  1174. </intervalFormatItem>
  1175. <intervalFormatItem id="yMMMEd">
  1176. <greatestDifference id="d">E, d MMM - E, d MMM, yթ.</greatestDifference>
  1177. <greatestDifference id="M">E, d MMM - E, d MMM, yթ.</greatestDifference>
  1178. <greatestDifference id="y">E, d MMM, y - E, d MMM, yթ.</greatestDifference>
  1179. </intervalFormatItem>
  1180. <intervalFormatItem id="yMMMM">
  1181. <greatestDifference id="M">yթ. MMM – MMM</greatestDifference>
  1182. <greatestDifference id="y">MMM y - MMM yթ.</greatestDifference>
  1183. </intervalFormatItem>
  1184. </intervalFormats>
  1185. </dateTimeFormats>
  1186. </calendar>
  1187. </calendars>
  1188. <fields>
  1189. <field type="era">
  1190. <displayName>Թվարկություն</displayName>
  1191. </field>
  1192. <field type="year">
  1193. <displayName>Տարի</displayName>
  1194. <relative type="-1">անցյալ տարի</relative>
  1195. <relative type="0">այս տարի</relative>
  1196. <relative type="1">հաջորդ տարի</relative>
  1197. <relativeTime type="future">
  1198. <relativeTimePattern count="one">{0} տարի անց</relativeTimePattern>
  1199. <relativeTimePattern count="other">{0} տարի անց</relativeTimePattern>
  1200. </relativeTime>
  1201. <relativeTime type="past">
  1202. <relativeTimePattern count="one">{0} տարի առաջ</relativeTimePattern>
  1203. <relativeTimePattern count="other">{0} տարի առաջ</relativeTimePattern>
  1204. </relativeTime>
  1205. </field>
  1206. <field type="month">
  1207. <displayName>Ամիս</displayName>
  1208. <relative type="-1">անցյալ ամիս</relative>
  1209. <relative type="0">այս ամիս</relative>
  1210. <relative type="1">հաջորդ ամիս</relative>
  1211. <relativeTime type="future">
  1212. <relativeTimePattern count="one">{0} ամիս անց</relativeTimePattern>
  1213. <relativeTimePattern count="other">{0} ամիս անց</relativeTimePattern>
  1214. </relativeTime>
  1215. <relativeTime type="past">
  1216. <relativeTimePattern count="one">{0} ամիս առաջ</relativeTimePattern>
  1217. <relativeTimePattern count="other">{0} ամիս առաջ</relativeTimePattern>
  1218. </relativeTime>
  1219. </field>
  1220. <field type="week">
  1221. <displayName>Շաբաթ</displayName>
  1222. <relative type="-1">անցյալ շաբաթ</relative>
  1223. <relative type="0">այս շաբաթ</relative>
  1224. <relative type="1">հաջորդ շաբաթ</relative>
  1225. <relativeTime type="future">
  1226. <relativeTimePattern count="one">{0} շաբաթ անց</relativeTimePattern>
  1227. <relativeTimePattern count="other">{0} շաբաթ անց</relativeTimePattern>
  1228. </relativeTime>
  1229. <relativeTime type="past">
  1230. <relativeTimePattern count="one">{0} շաբաթ առաջ</relativeTimePattern>
  1231. <relativeTimePattern count="other">{0} շաբաթ առաջ</relativeTimePattern>
  1232. </relativeTime>
  1233. </field>
  1234. <field type="day">
  1235. <displayName>Օր</displayName>
  1236. <relative type="-2">երեկ չէ առաջի օրը</relative>
  1237. <relative type="-1">երեկ</relative>
  1238. <relative type="0">այսօր</relative>
  1239. <relative type="1">վաղը</relative>
  1240. <relative type="2">վաղը չէ մյուս օրը</relative>
  1241. <relativeTime type="future">
  1242. <relativeTimePattern count="one">{0} օր անց</relativeTimePattern>
  1243. <relativeTimePattern count="other">{0} օր անց</relativeTimePattern>
  1244. </relativeTime>
  1245. <relativeTime type="past">
  1246. <relativeTimePattern count="one">{0} օր առաջ</relativeTimePattern>
  1247. <relativeTimePattern count="other">{0} օր առաջ</relativeTimePattern>
  1248. </relativeTime>
  1249. </field>
  1250. <field type="weekday">
  1251. <displayName>Շաբաթվա օր</displayName>
  1252. </field>
  1253. <field type="sun">
  1254. <relative type="-1">անցյալ կիրակի</relative>
  1255. <relative type="0">այս կիրակի</relative>
  1256. <relative type="1">հաջորդ կիրակի</relative>
  1257. </field>
  1258. <field type="mon">
  1259. <relative type="-1">անցյալ երկուշաբթի</relative>
  1260. <relative type="0">այս երկուշաբթի</relative>
  1261. <relative type="1">հաջորդ երկուշաբթի</relative>
  1262. </field>
  1263. <field type="tue">
  1264. <relative type="-1">անցյալ երեքշաբթի</relative>
  1265. <relative type="0">այս երեքշաբթի</relative>
  1266. <relative type="1">հաջորդ երեքշաբթի</relative>
  1267. </field>
  1268. <field type="wed">
  1269. <relative type="-1">անցյալ չորեքշաբթի</relative>
  1270. <relative type="0">այս չորեքշաբթի</relative>
  1271. <relative type="1">հաջորդ չորեքշաբթի</relative>
  1272. </field>
  1273. <field type="thu">
  1274. <relative type="-1">անցյալ հինգշաբթի</relative>
  1275. <relative type="0">այս հինգշաբթի</relative>
  1276. <relative type="1">հաջորդ հինգշաբթի</relative>
  1277. </field>
  1278. <field type="fri">
  1279. <relative type="-1">անցյալ ուրբաթ</relative>
  1280. <relative type="0">այս ուրբաթ</relative>
  1281. <relative type="1">հաջորդ ուրբաթ</relative>
  1282. </field>
  1283. <field type="sat">
  1284. <relative type="-1">անցյալ շաբաթ</relative>
  1285. <relative type="0">այս շաբաթ</relative>
  1286. <relative type="1">հաջորդ շաբաթ</relative>
  1287. </field>
  1288. <field type="dayperiod">
  1289. <displayName>ԿԱ/ԿՀ</displayName>
  1290. </field>
  1291. <field type="hour">
  1292. <displayName>Ժամ</displayName>
  1293. <relativeTime type="future">
  1294. <relativeTimePattern count="one">{0} ժամ անց</relativeTimePattern>
  1295. <relativeTimePattern count="other">{0} ժամ անց</relativeTimePattern>
  1296. </relativeTime>
  1297. <relativeTime type="past">
  1298. <relativeTimePattern count="one">{0} ժամ առաջ</relativeTimePattern>
  1299. <relativeTimePattern count="other">{0} ժամ առաջ</relativeTimePattern>
  1300. </relativeTime>
  1301. </field>
  1302. <field type="minute">
  1303. <displayName>Րոպե</displayName>
  1304. <relativeTime type="future">
  1305. <relativeTimePattern count="one">{0} րոպե անց</relativeTimePattern>
  1306. <relativeTimePattern count="other">{0} րոպե անց</relativeTimePattern>
  1307. </relativeTime>
  1308. <relativeTime type="past">
  1309. <relativeTimePattern count="one">{0} րոպե առաջ</relativeTimePattern>
  1310. <relativeTimePattern count="other">{0} րոպե առաջ</relativeTimePattern>
  1311. </relativeTime>
  1312. </field>
  1313. <field type="second">
  1314. <displayName>Վայրկյան</displayName>
  1315. <relative type="0">այժմ</relative>
  1316. <relativeTime type="future">
  1317. <relativeTimePattern count="one">{0} վայրկյան անց</relativeTimePattern>
  1318. <relativeTimePattern count="other">{0} վայրկյան անց</relativeTimePattern>
  1319. </relativeTime>
  1320. <relativeTime type="past">
  1321. <relativeTimePattern count="one">{0} վայրկյան առաջ</relativeTimePattern>
  1322. <relativeTimePattern count="other">{0} վայրկյան առաջ</relativeTimePattern>
  1323. </relativeTime>
  1324. </field>
  1325. <field type="zone">
  1326. <displayName>Ժամային գոտի</displayName>
  1327. </field>
  1328. </fields>
  1329. <timeZoneNames>
  1330. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1331. <gmtFormat>GMT{0}</gmtFormat>
  1332. <gmtZeroFormat>GMT</gmtZeroFormat>
  1333. <regionFormat>Ժամանակ՝ {0}</regionFormat>
  1334. <regionFormat type="daylight">{0}, ամառային ժամանակ</regionFormat>
  1335. <regionFormat type="standard">{0}, ստանդարտ ժամանակ</regionFormat>
  1336. <fallbackFormat>{1} ({0})</fallbackFormat>
  1337. <zone type="Etc/Unknown">
  1338. <exemplarCity>Անհայտ քաղաք</exemplarCity>
  1339. </zone>
  1340. <zone type="Europe/Andorra">
  1341. <exemplarCity>Անդորա</exemplarCity>
  1342. </zone>
  1343. <zone type="Asia/Dubai">
  1344. <exemplarCity>Դուբայ</exemplarCity>
  1345. </zone>
  1346. <zone type="Asia/Kabul">
  1347. <exemplarCity>Կաբուլ</exemplarCity>
  1348. </zone>
  1349. <zone type="America/Antigua">
  1350. <exemplarCity>Անտիգուա</exemplarCity>
  1351. </zone>
  1352. <zone type="America/Anguilla">
  1353. <exemplarCity>Անգիլիա</exemplarCity>
  1354. </zone>
  1355. <zone type="Europe/Tirane">
  1356. <exemplarCity>Տիրանա</exemplarCity>
  1357. </zone>
  1358. <zone type="Asia/Yerevan">
  1359. <exemplarCity>Երևան</exemplarCity>
  1360. </zone>
  1361. <zone type="Africa/Luanda">
  1362. <exemplarCity>Լուանդա</exemplarCity>
  1363. </zone>
  1364. <zone type="Antarctica/Rothera">
  1365. <exemplarCity>Ռոտերա</exemplarCity>
  1366. </zone>
  1367. <zone type="Antarctica/Palmer">
  1368. <exemplarCity>Պալմեր</exemplarCity>
  1369. </zone>
  1370. <zone type="Antarctica/Syowa">
  1371. <exemplarCity>Սյովա</exemplarCity>
  1372. </zone>
  1373. <zone type="Antarctica/Mawson">
  1374. <exemplarCity>Մոուսոն</exemplarCity>
  1375. </zone>
  1376. <zone type="Antarctica/Davis">
  1377. <exemplarCity>Դեյվիս</exemplarCity>
  1378. </zone>
  1379. <zone type="Antarctica/Vostok">
  1380. <exemplarCity>Վոստոկ</exemplarCity>
  1381. </zone>
  1382. <zone type="Antarctica/Casey">
  1383. <exemplarCity>Քեյսի</exemplarCity>
  1384. </zone>
  1385. <zone type="Antarctica/DumontDUrville">
  1386. <exemplarCity>Դյումոն դ'Յուրվիլ</exemplarCity>
  1387. </zone>
  1388. <zone type="Antarctica/McMurdo">
  1389. <exemplarCity>Մակ-Մերդո</exemplarCity>
  1390. </zone>
  1391. <zone type="America/Argentina/Rio_Gallegos">
  1392. <exemplarCity>Ռիո Գալյեգոս</exemplarCity>
  1393. </zone>
  1394. <zone type="America/Mendoza">
  1395. <exemplarCity>Մենդոսա</exemplarCity>
  1396. </zone>
  1397. <zone type="America/Argentina/San_Juan">
  1398. <exemplarCity>Սան Խուան</exemplarCity>
  1399. </zone>
  1400. <zone type="America/Argentina/Ushuaia">
  1401. <exemplarCity>Ուշուայա</exemplarCity>
  1402. </zone>
  1403. <zone type="America/Argentina/La_Rioja">
  1404. <exemplarCity>Լա-Ռիոխա</exemplarCity>
  1405. </zone>
  1406. <zone type="America/Argentina/San_Luis">
  1407. <exemplarCity>Սան Լուիս</exemplarCity>
  1408. </zone>
  1409. <zone type="America/Catamarca">
  1410. <exemplarCity>Կատամարկա</exemplarCity>
  1411. </zone>
  1412. <zone type="America/Argentina/Salta">
  1413. <exemplarCity>Սալտա</exemplarCity>
  1414. </zone>
  1415. <zone type="America/Jujuy">
  1416. <exemplarCity>Ժուժույ</exemplarCity>
  1417. </zone>
  1418. <zone type="America/Argentina/Tucuman">
  1419. <exemplarCity>Տուկուման</exemplarCity>
  1420. </zone>
  1421. <zone type="America/Cordoba">
  1422. <exemplarCity>Կորդովա</exemplarCity>
  1423. </zone>
  1424. <zone type="America/Buenos_Aires">
  1425. <exemplarCity>Բուենոս Այրես</exemplarCity>
  1426. </zone>
  1427. <zone type="Pacific/Pago_Pago">
  1428. <exemplarCity>Պագո Պագո</exemplarCity>
  1429. </zone>
  1430. <zone type="Europe/Vienna">
  1431. <exemplarCity>Վիեննա</exemplarCity>
  1432. </zone>
  1433. <zone type="Australia/Perth">
  1434. <exemplarCity>Պերթ</exemplarCity>
  1435. </zone>
  1436. <zone type="Australia/Eucla">
  1437. <exemplarCity>Յուկլա</exemplarCity>
  1438. </zone>
  1439. <zone type="Australia/Darwin">
  1440. <exemplarCity>Դարվին</exemplarCity>
  1441. </zone>
  1442. <zone type="Australia/Adelaide">
  1443. <exemplarCity>Ադելաիդա</exemplarCity>
  1444. </zone>
  1445. <zone type="Australia/Broken_Hill">
  1446. <exemplarCity>Բրոքեն Հիլ</exemplarCity>
  1447. </zone>
  1448. <zone type="Australia/Currie">
  1449. <exemplarCity>Քերի</exemplarCity>
  1450. </zone>
  1451. <zone type="Australia/Melbourne">
  1452. <exemplarCity>Մելբուրն</exemplarCity>
  1453. </zone>
  1454. <zone type="Australia/Hobart">
  1455. <exemplarCity>Հոբարտ</exemplarCity>
  1456. </zone>
  1457. <zone type="Australia/Lindeman">
  1458. <exemplarCity>Լինդեման</exemplarCity>
  1459. </zone>
  1460. <zone type="Australia/Sydney">
  1461. <exemplarCity>Սիդնեյ</exemplarCity>
  1462. </zone>
  1463. <zone type="Australia/Brisbane">
  1464. <exemplarCity>Բրիսբեն</exemplarCity>
  1465. </zone>
  1466. <zone type="Antarctica/Macquarie">
  1467. <exemplarCity>Մակկուորի կղզի</exemplarCity>
  1468. </zone>
  1469. <zone type="Australia/Lord_Howe">
  1470. <exemplarCity>Լորդ Հաու</exemplarCity>
  1471. </zone>
  1472. <zone type="America/Aruba">
  1473. <exemplarCity>Արուբա</exemplarCity>
  1474. </zone>
  1475. <zone type="Europe/Mariehamn">
  1476. <exemplarCity>Մարիեհամն</exemplarCity>
  1477. </zone>
  1478. <zone type="Asia/Baku">
  1479. <exemplarCity>Բաքու</exemplarCity>
  1480. </zone>
  1481. <zone type="Europe/Sarajevo">
  1482. <exemplarCity>Սարաևո</exemplarCity>
  1483. </zone>
  1484. <zone type="America/Barbados">
  1485. <exemplarCity>Բարբադոս</exemplarCity>
  1486. </zone>
  1487. <zone type="Asia/Dhaka">
  1488. <exemplarCity>Դաքքա</exemplarCity>
  1489. </zone>
  1490. <zone type="Europe/Brussels">
  1491. <exemplarCity>Բրյուսել</exemplarCity>
  1492. </zone>
  1493. <zone type="Africa/Ouagadougou">
  1494. <exemplarCity>Ուագադուգու</exemplarCity>
  1495. </zone>
  1496. <zone type="Europe/Sofia">
  1497. <exemplarCity>Սոֆիա</exemplarCity>
  1498. </zone>
  1499. <zone type="Asia/Bahrain">
  1500. <exemplarCity>Բահրեյն</exemplarCity>
  1501. </zone>
  1502. <zone type="Africa/Bujumbura">
  1503. <exemplarCity>Բուժումբուրա</exemplarCity>
  1504. </zone>
  1505. <zone type="Africa/Porto-Novo">
  1506. <exemplarCity>Պորտո Նովո</exemplarCity>
  1507. </zone>
  1508. <zone type="America/St_Barthelemy">
  1509. <exemplarCity>Սեն Բարտելմի</exemplarCity>
  1510. </zone>
  1511. <zone type="Atlantic/Bermuda">
  1512. <exemplarCity>Բերմուդյան կղզիներ</exemplarCity>
  1513. </zone>
  1514. <zone type="Asia/Brunei">
  1515. <exemplarCity>Բրունեյ</exemplarCity>
  1516. </zone>
  1517. <zone type="America/La_Paz">
  1518. <exemplarCity>Լա Պաս</exemplarCity>
  1519. </zone>
  1520. <zone type="America/Kralendijk">
  1521. <exemplarCity>Կրալենդեյկ</exemplarCity>
  1522. </zone>
  1523. <zone type="America/Eirunepe">
  1524. <exemplarCity>Էյրունեպե</exemplarCity>
  1525. </zone>
  1526. <zone type="America/Rio_Branco">
  1527. <exemplarCity>Ռիո Բրանկու</exemplarCity>
  1528. </zone>
  1529. <zone type="America/Porto_Velho">
  1530. <exemplarCity>Պորտու Վելյու</exemplarCity>
  1531. </zone>
  1532. <zone type="America/Boa_Vista">
  1533. <exemplarCity>Բոա-Վիստա</exemplarCity>
  1534. </zone>
  1535. <zone type="America/Manaus">
  1536. <exemplarCity>Մանաուս</exemplarCity>
  1537. </zone>
  1538. <zone type="America/Cuiaba">
  1539. <exemplarCity>Կույաբա</exemplarCity>
  1540. </zone>
  1541. <zone type="America/Santarem">
  1542. <exemplarCity>Սանտարեմ</exemplarCity>
  1543. </zone>
  1544. <zone type="America/Campo_Grande">
  1545. <exemplarCity>Կամպո Գրանգե</exemplarCity>
  1546. </zone>
  1547. <zone type="America/Belem">
  1548. <exemplarCity>Բելեմ</exemplarCity>
  1549. </zone>
  1550. <zone type="America/Araguaina">
  1551. <exemplarCity>Արագուայնա</exemplarCity>
  1552. </zone>
  1553. <zone type="America/Sao_Paulo">
  1554. <exemplarCity>Սան Պաուլու</exemplarCity>
  1555. </zone>
  1556. <zone type="America/Bahia">
  1557. <exemplarCity>Բայա</exemplarCity>
  1558. </zone>
  1559. <zone type="America/Fortaleza">
  1560. <exemplarCity>Ֆորտալեզա</exemplarCity>
  1561. </zone>
  1562. <zone type="America/Maceio">
  1563. <exemplarCity>Մասեյո</exemplarCity>
  1564. </zone>
  1565. <zone type="America/Recife">
  1566. <exemplarCity>Ռեսիֆի</exemplarCity>
  1567. </zone>
  1568. <zone type="America/Noronha">
  1569. <exemplarCity>Նորոնխա</exemplarCity>
  1570. </zone>
  1571. <zone type="America/Nassau">
  1572. <exemplarCity>Նասաու</exemplarCity>
  1573. </zone>
  1574. <zone type="Asia/Thimphu">
  1575. <exemplarCity>Թիմփու</exemplarCity>
  1576. </zone>
  1577. <zone type="Africa/Gaborone">
  1578. <exemplarCity>Գաբորոնե</exemplarCity>
  1579. </zone>
  1580. <zone type="Europe/Minsk">
  1581. <exemplarCity>Մինսկ</exemplarCity>
  1582. </zone>
  1583. <zone type="America/Belize">
  1584. <exemplarCity>Բելիզ</exemplarCity>
  1585. </zone>
  1586. <zone type="America/Dawson">
  1587. <exemplarCity>Դոուսոն</exemplarCity>
  1588. </zone>
  1589. <zone type="America/Whitehorse">
  1590. <exemplarCity>Ուայթհորս</exemplarCity>
  1591. </zone>
  1592. <zone type="America/Inuvik">
  1593. <exemplarCity>Ինուվիկ</exemplarCity>
  1594. </zone>
  1595. <zone type="America/Vancouver">
  1596. <exemplarCity>Վանկուվեր</exemplarCity>
  1597. </zone>
  1598. <zone type="America/Dawson_Creek">
  1599. <exemplarCity>Դոուսոն Կրիկ</exemplarCity>
  1600. </zone>
  1601. <zone type="America/Creston">
  1602. <exemplarCity>Քրեսթոն</exemplarCity>
  1603. </zone>
  1604. <zone type="America/Yellowknife">
  1605. <exemplarCity>Յելոունայֆ</exemplarCity>
  1606. </zone>
  1607. <zone type="America/Edmonton">
  1608. <exemplarCity>Էդմոնտոն</exemplarCity>
  1609. </zone>
  1610. <zone type="America/Swift_Current">
  1611. <exemplarCity>Սվիֆթ-Քարենտ</exemplarCity>
  1612. </zone>
  1613. <zone type="America/Cambridge_Bay">
  1614. <exemplarCity>Քեմբրիջ-Բեյ</exemplarCity>
  1615. </zone>
  1616. <zone type="America/Regina">
  1617. <exemplarCity>Ռեջայնա</exemplarCity>
  1618. </zone>
  1619. <zone type="America/Winnipeg">
  1620. <exemplarCity>Վինիպեգ</exemplarCity>
  1621. </zone>
  1622. <zone type="America/Resolute">
  1623. <exemplarCity>Ռեզոլյուտ</exemplarCity>
  1624. </zone>
  1625. <zone type="America/Rainy_River">
  1626. <exemplarCity>Ռեյնի-Ռիվեր</exemplarCity>
  1627. </zone>
  1628. <zone type="America/Rankin_Inlet">
  1629. <exemplarCity>Ռանկին-Ինլետ</exemplarCity>
  1630. </zone>
  1631. <zone type="America/Coral_Harbour">
  1632. <exemplarCity>Ատիկոկան</exemplarCity>
  1633. </zone>
  1634. <zone type="America/Thunder_Bay">
  1635. <exemplarCity>Տանդեր-Բեյ</exemplarCity>
  1636. </zone>
  1637. <zone type="America/Nipigon">
  1638. <exemplarCity>Նիպիգոն</exemplarCity>
  1639. </zone>
  1640. <zone type="America/Toronto">
  1641. <exemplarCity>Տորոնտո</exemplarCity>
  1642. </zone>
  1643. <zone type="America/Iqaluit">
  1644. <exemplarCity>Իկալուիտ</exemplarCity>
  1645. </zone>
  1646. <zone type="America/Pangnirtung">
  1647. <exemplarCity>Պանգնիրտանգ</exemplarCity>
  1648. </zone>
  1649. <zone type="America/Moncton">
  1650. <exemplarCity>Մոնկտոն</exemplarCity>
  1651. </zone>
  1652. <zone type="America/Halifax">
  1653. <exemplarCity>Հալիֆաքս</exemplarCity>
  1654. </zone>
  1655. <zone type="America/Goose_Bay">
  1656. <exemplarCity>Գուս Բեյ</exemplarCity>
  1657. </zone>
  1658. <zone type="America/Glace_Bay">
  1659. <exemplarCity>Գլեյս Բեյ</exemplarCity>
  1660. </zone>
  1661. <zone type="America/Blanc-Sablon">
  1662. <exemplarCity>Բլան-Սաբլոն</exemplarCity>
  1663. </zone>
  1664. <zone type="America/St_Johns">
  1665. <exemplarCity>Սենթ-Ջոնս</exemplarCity>
  1666. </zone>
  1667. <zone type="Indian/Cocos">
  1668. <exemplarCity>Կոկոսյան կղզիներ</exemplarCity>
  1669. </zone>
  1670. <zone type="Africa/Kinshasa">
  1671. <exemplarCity>Կինշասա</exemplarCity>
  1672. </zone>
  1673. <zone type="Africa/Lubumbashi">
  1674. <exemplarCity>Լուբումբաշի</exemplarCity>
  1675. </zone>
  1676. <zone type="Africa/Bangui">
  1677. <exemplarCity>Բանգի</exemplarCity>
  1678. </zone>
  1679. <zone type="Africa/Brazzaville">
  1680. <exemplarCity>Բրազավիլ</exemplarCity>
  1681. </zone>
  1682. <zone type="Europe/Zurich">
  1683. <exemplarCity>Ցյուրիխ</exemplarCity>
  1684. </zone>
  1685. <zone type="Africa/Abidjan">
  1686. <exemplarCity>Աբիջան</exemplarCity>
  1687. </zone>
  1688. <zone type="Pacific/Rarotonga">
  1689. <exemplarCity>Ռառատոնգա</exemplarCity>
  1690. </zone>
  1691. <zone type="Pacific/Easter">
  1692. <exemplarCity>Զատիկի կղզի</exemplarCity>
  1693. </zone>
  1694. <zone type="America/Santiago">
  1695. <exemplarCity>Սանտյագո</exemplarCity>
  1696. </zone>
  1697. <zone type="Africa/Douala">
  1698. <exemplarCity>Դուալա</exemplarCity>
  1699. </zone>
  1700. <zone type="Asia/Kashgar">
  1701. <exemplarCity>Քաշգար</exemplarCity>
  1702. </zone>
  1703. <zone type="Asia/Urumqi">
  1704. <exemplarCity>Ուրումչի</exemplarCity>
  1705. </zone>
  1706. <zone type="Asia/Chongqing">
  1707. <exemplarCity>Չունցին</exemplarCity>
  1708. </zone>
  1709. <zone type="Asia/Shanghai">
  1710. <exemplarCity>Շանխայ</exemplarCity>
  1711. </zone>
  1712. <zone type="Asia/Harbin">
  1713. <exemplarCity>Հարբին</exemplarCity>
  1714. </zone>
  1715. <zone type="America/Bogota">
  1716. <exemplarCity>Բոգոտա</exemplarCity>
  1717. </zone>
  1718. <zone type="America/Costa_Rica">
  1719. <exemplarCity>Կոստա Ռիկա</exemplarCity>
  1720. </zone>
  1721. <zone type="America/Havana">
  1722. <exemplarCity>Հավանա</exemplarCity>
  1723. </zone>
  1724. <zone type="Atlantic/Cape_Verde">
  1725. <exemplarCity>Կաբո Վերդե</exemplarCity>
  1726. </zone>
  1727. <zone type="America/Curacao">
  1728. <exemplarCity>Կյուրասաո</exemplarCity>
  1729. </zone>
  1730. <zone type="Indian/Christmas">
  1731. <exemplarCity>Ծննդյան կղզի</exemplarCity>
  1732. </zone>
  1733. <zone type="Asia/Nicosia">
  1734. <exemplarCity>Նիկոսիա</exemplarCity>
  1735. </zone>
  1736. <zone type="Europe/Prague">
  1737. <exemplarCity>Պրահա</exemplarCity>
  1738. </zone>
  1739. <zone type="Europe/Busingen">
  1740. <exemplarCity>Բյուզինգեն</exemplarCity>
  1741. </zone>
  1742. <zone type="Europe/Berlin">
  1743. <exemplarCity>Բեռլին</exemplarCity>
  1744. </zone>
  1745. <zone type="Africa/Djibouti">
  1746. <exemplarCity>Ջիբութի</exemplarCity>
  1747. </zone>
  1748. <zone type="Europe/Copenhagen">
  1749. <exemplarCity>Կոպենհագեն</exemplarCity>
  1750. </zone>
  1751. <zone type="America/Dominica">
  1752. <exemplarCity>Դոմինիկա</exemplarCity>
  1753. </zone>
  1754. <zone type="America/Santo_Domingo">
  1755. <exemplarCity>Սանտո Դոմինգո</exemplarCity>
  1756. </zone>
  1757. <zone type="Africa/Algiers">
  1758. <exemplarCity>Ալժիր</exemplarCity>
  1759. </zone>
  1760. <zone type="Pacific/Galapagos">
  1761. <exemplarCity>Գալապագոսյան կղզիներ</exemplarCity>
  1762. </zone>
  1763. <zone type="America/Guayaquil">
  1764. <exemplarCity>Գուայակիլ</exemplarCity>
  1765. </zone>
  1766. <zone type="Europe/Tallinn">
  1767. <exemplarCity>Տալլին</exemplarCity>
  1768. </zone>
  1769. <zone type="Africa/Cairo">
  1770. <exemplarCity>Կահիրե</exemplarCity>
  1771. </zone>
  1772. <zone type="Africa/El_Aaiun">
  1773. <exemplarCity>Էլ Այուն</exemplarCity>
  1774. </zone>
  1775. <zone type="Africa/Asmera">
  1776. <exemplarCity>Ասմարա</exemplarCity>
  1777. </zone>
  1778. <zone type="Atlantic/Canary">
  1779. <exemplarCity>Կանարյան կղզիներ</exemplarCity>
  1780. </zone>
  1781. <zone type="Africa/Ceuta">
  1782. <exemplarCity>Սեուտա</exemplarCity>
  1783. </zone>
  1784. <zone type="Europe/Madrid">
  1785. <exemplarCity>Մադրիդ</exemplarCity>
  1786. </zone>
  1787. <zone type="Africa/Addis_Ababa">
  1788. <exemplarCity>Ադիս Աբեբա</exemplarCity>
  1789. </zone>
  1790. <zone type="Europe/Helsinki">
  1791. <exemplarCity>Հելսինկի</exemplarCity>
  1792. </zone>
  1793. <zone type="Pacific/Fiji">
  1794. <exemplarCity>Ֆիջի</exemplarCity>
  1795. </zone>
  1796. <zone type="Atlantic/Stanley">
  1797. <exemplarCity>Սթենլի</exemplarCity>
  1798. </zone>
  1799. <zone type="Pacific/Truk">
  1800. <exemplarCity>Չուուկ</exemplarCity>
  1801. </zone>
  1802. <zone type="Pacific/Ponape">
  1803. <exemplarCity>Պոնպեի</exemplarCity>
  1804. </zone>
  1805. <zone type="Pacific/Kosrae">
  1806. <exemplarCity>Կոսրաե</exemplarCity>
  1807. </zone>
  1808. <zone type="Atlantic/Faeroe">
  1809. <exemplarCity>Ֆարերյան կղզիներ</exemplarCity>
  1810. </zone>
  1811. <zone type="Europe/Paris">
  1812. <exemplarCity>Փարիզ</exemplarCity>
  1813. </zone>
  1814. <zone type="Africa/Libreville">
  1815. <exemplarCity>Լիբրևիլ</exemplarCity>
  1816. </zone>
  1817. <zone type="Europe/London">
  1818. <long>
  1819. <daylight>Բրիտանական ամառային ժամանակ</daylight>
  1820. </long>
  1821. <exemplarCity>Լոնդոն</exemplarCity>
  1822. </zone>
  1823. <zone type="America/Grenada">
  1824. <exemplarCity>Գրենադա</exemplarCity>
  1825. </zone>
  1826. <zone type="Asia/Tbilisi">
  1827. <exemplarCity>Թբիլիսի</exemplarCity>
  1828. </zone>
  1829. <zone type="America/Cayenne">
  1830. <exemplarCity>Կայեն</exemplarCity>
  1831. </zone>
  1832. <zone type="Europe/Guernsey">
  1833. <exemplarCity>Գերնսի</exemplarCity>
  1834. </zone>
  1835. <zone type="Africa/Accra">
  1836. <exemplarCity>Ակրա</exemplarCity>
  1837. </zone>
  1838. <zone type="Europe/Gibraltar">
  1839. <exemplarCity>Ջիբրալթար</exemplarCity>
  1840. </zone>
  1841. <zone type="America/Thule">
  1842. <exemplarCity>Տուլե</exemplarCity>
  1843. </zone>
  1844. <zone type="America/Godthab">
  1845. <exemplarCity>Նուուկ</exemplarCity>
  1846. </zone>
  1847. <zone type="America/Scoresbysund">
  1848. <exemplarCity>Սկորսբիսուն</exemplarCity>
  1849. </zone>
  1850. <zone type="America/Danmarkshavn">
  1851. <exemplarCity>Դենմարքսհավն</exemplarCity>
  1852. </zone>
  1853. <zone type="Africa/Banjul">
  1854. <exemplarCity>Բանժուլ</exemplarCity>
  1855. </zone>
  1856. <zone type="Africa/Conakry">
  1857. <exemplarCity>Կոնակրի</exemplarCity>
  1858. </zone>
  1859. <zone type="America/Guadeloupe">
  1860. <exemplarCity>Գվադելուպա</exemplarCity>
  1861. </zone>
  1862. <zone type="Africa/Malabo">
  1863. <exemplarCity>Մալաբո</exemplarCity>
  1864. </zone>
  1865. <zone type="Europe/Athens">
  1866. <exemplarCity>Աթենք</exemplarCity>
  1867. </zone>
  1868. <zone type="Atlantic/South_Georgia">
  1869. <exemplarCity>Հարավային Ջորջիա</exemplarCity>
  1870. </zone>
  1871. <zone type="America/Guatemala">
  1872. <exemplarCity>Գվատեմալա</exemplarCity>
  1873. </zone>
  1874. <zone type="Pacific/Guam">
  1875. <exemplarCity>Գուամ</exemplarCity>
  1876. </zone>
  1877. <zone type="Africa/Bissau">
  1878. <exemplarCity>Բիսաու</exemplarCity>
  1879. </zone>
  1880. <zone type="America/Guyana">
  1881. <exemplarCity>Գայանա</exemplarCity>
  1882. </zone>
  1883. <zone type="Asia/Hong_Kong">
  1884. <exemplarCity>Հոնկոնգ</exemplarCity>
  1885. </zone>
  1886. <zone type="America/Tegucigalpa">
  1887. <exemplarCity>Տեգուսիգալպա</exemplarCity>
  1888. </zone>
  1889. <zone type="Europe/Zagreb">
  1890. <exemplarCity>Զագրեբ</exemplarCity>
  1891. </zone>
  1892. <zone type="America/Port-au-Prince">
  1893. <exemplarCity>Պորտ-օ-Պրենս</exemplarCity>
  1894. </zone>
  1895. <zone type="Europe/Budapest">
  1896. <exemplarCity>Բուդապեշտ</exemplarCity>
  1897. </zone>
  1898. <zone type="Asia/Jakarta">
  1899. <exemplarCity>Ջակարտա</exemplarCity>
  1900. </zone>
  1901. <zone type="Asia/Pontianak">
  1902. <exemplarCity>Պոնտիանակ</exemplarCity>
  1903. </zone>
  1904. <zone type="Asia/Makassar">
  1905. <exemplarCity>Մակասար</exemplarCity>
  1906. </zone>
  1907. <zone type="Asia/Jayapura">
  1908. <exemplarCity>Ջայպուրա</exemplarCity>
  1909. </zone>
  1910. <zone type="Europe/Dublin">
  1911. <long>
  1912. <daylight>Իռլանդական ամառային ժամանակ</daylight>
  1913. </long>
  1914. <exemplarCity>Դուբլին</exemplarCity>
  1915. </zone>
  1916. <zone type="Asia/Jerusalem">
  1917. <exemplarCity>Երուսաղեմ</exemplarCity>
  1918. </zone>
  1919. <zone type="Europe/Isle_of_Man">
  1920. <exemplarCity>Մեն կղզի</exemplarCity>
  1921. </zone>
  1922. <zone type="Asia/Calcutta">
  1923. <exemplarCity>Կալկուտա</exemplarCity>
  1924. </zone>
  1925. <zone type="Indian/Chagos">
  1926. <exemplarCity>Չագոս</exemplarCity>
  1927. </zone>
  1928. <zone type="Asia/Baghdad">
  1929. <exemplarCity>Բաղդադ</exemplarCity>
  1930. </zone>
  1931. <zone type="Asia/Tehran">
  1932. <exemplarCity>Թեհրան</exemplarCity>
  1933. </zone>
  1934. <zone type="Atlantic/Reykjavik">
  1935. <exemplarCity>Ռեյկյավիկ</exemplarCity>
  1936. </zone>
  1937. <zone type="Europe/Rome">
  1938. <exemplarCity>Հռոմ</exemplarCity>
  1939. </zone>
  1940. <zone type="Europe/Jersey">
  1941. <exemplarCity>Ջերսի</exemplarCity>
  1942. </zone>
  1943. <zone type="America/Jamaica">
  1944. <exemplarCity>Ջամայկա</exemplarCity>
  1945. </zone>
  1946. <zone type="Asia/Amman">
  1947. <exemplarCity>Ամման</exemplarCity>
  1948. </zone>
  1949. <zone type="Asia/Tokyo">
  1950. <exemplarCity>Տոկիո</exemplarCity>
  1951. </zone>
  1952. <zone type="Africa/Nairobi">
  1953. <exemplarCity>Նայրոբի</exemplarCity>
  1954. </zone>
  1955. <zone type="Asia/Bishkek">
  1956. <exemplarCity>Բիշքեկ</exemplarCity>
  1957. </zone>
  1958. <zone type="Asia/Phnom_Penh">
  1959. <exemplarCity>Պնոմպեն</exemplarCity>
  1960. </zone>
  1961. <zone type="Pacific/Enderbury">
  1962. <exemplarCity>Էնդերբերի կղզի</exemplarCity>
  1963. </zone>
  1964. <zone type="Pacific/Kiritimati">
  1965. <exemplarCity>Կիրիտիմատի</exemplarCity>
  1966. </zone>
  1967. <zone type="Pacific/Tarawa">
  1968. <exemplarCity>Տարավա</exemplarCity>
  1969. </zone>
  1970. <zone type="Indian/Comoro">
  1971. <exemplarCity>Կոմորյան կղզիներ</exemplarCity>
  1972. </zone>
  1973. <zone type="America/St_Kitts">
  1974. <exemplarCity>Սենթ Քիթս</exemplarCity>
  1975. </zone>
  1976. <zone type="Asia/Pyongyang">
  1977. <exemplarCity>Փխենյան</exemplarCity>
  1978. </zone>
  1979. <zone type="Asia/Seoul">
  1980. <exemplarCity>Սեուլ</exemplarCity>
  1981. </zone>
  1982. <zone type="Asia/Kuwait">
  1983. <exemplarCity>Քուվեյթ</exemplarCity>
  1984. </zone>
  1985. <zone type="America/Cayman">
  1986. <exemplarCity>Կայմանի կղզիներ</exemplarCity>
  1987. </zone>
  1988. <zone type="Asia/Aqtau">
  1989. <exemplarCity>Ակտաու</exemplarCity>
  1990. </zone>
  1991. <zone type="Asia/Oral">
  1992. <exemplarCity>Օրալ</exemplarCity>
  1993. </zone>
  1994. <zone type="Asia/Aqtobe">
  1995. <exemplarCity>Ակտոբե</exemplarCity>
  1996. </zone>
  1997. <zone type="Asia/Qyzylorda">
  1998. <exemplarCity>Քիզիլօրդա</exemplarCity>
  1999. </zone>
  2000. <zone type="Asia/Almaty">
  2001. <exemplarCity>Ալմաթի</exemplarCity>
  2002. </zone>
  2003. <zone type="Asia/Vientiane">
  2004. <exemplarCity>Վյենտյան</exemplarCity>
  2005. </zone>
  2006. <zone type="Asia/Beirut">
  2007. <exemplarCity>Բեյրութ</exemplarCity>
  2008. </zone>
  2009. <zone type="America/St_Lucia">
  2010. <exemplarCity>Սենթ Լյուսիա</exemplarCity>
  2011. </zone>
  2012. <zone type="Europe/Vaduz">
  2013. <exemplarCity>Վադուց</exemplarCity>
  2014. </zone>
  2015. <zone type="Asia/Colombo">
  2016. <exemplarCity>Կոլոմբո</exemplarCity>
  2017. </zone>
  2018. <zone type="Africa/Monrovia">
  2019. <exemplarCity>Մոնրովիա</exemplarCity>
  2020. </zone>
  2021. <zone type="Africa/Maseru">
  2022. <exemplarCity>Մասերու</exemplarCity>
  2023. </zone>
  2024. <zone type="Europe/Vilnius">
  2025. <exemplarCity>Վիլնյուս</exemplarCity>
  2026. </zone>
  2027. <zone type="Europe/Luxembourg">
  2028. <exemplarCity>Լյուքսեմբուրգ</exemplarCity>
  2029. </zone>
  2030. <zone type="Europe/Riga">
  2031. <exemplarCity>Ռիգա</exemplarCity>
  2032. </zone>
  2033. <zone type="Africa/Tripoli">
  2034. <exemplarCity>Տրիպոլի</exemplarCity>
  2035. </zone>
  2036. <zone type="Africa/Casablanca">
  2037. <exemplarCity>Կասաբլանկա</exemplarCity>
  2038. </zone>
  2039. <zone type="Europe/Monaco">
  2040. <exemplarCity>Մոնակո</exemplarCity>
  2041. </zone>
  2042. <zone type="Europe/Chisinau">
  2043. <exemplarCity>Քիշնև</exemplarCity>
  2044. </zone>
  2045. <zone type="Europe/Podgorica">
  2046. <exemplarCity>Պոդգորիցա</exemplarCity>
  2047. </zone>
  2048. <zone type="America/Marigot">
  2049. <exemplarCity>Մարիգո</exemplarCity>
  2050. </zone>
  2051. <zone type="Indian/Antananarivo">
  2052. <exemplarCity>Անտանանարիվու</exemplarCity>
  2053. </zone>
  2054. <zone type="Pacific/Kwajalein">
  2055. <exemplarCity>Քվաջալեյն</exemplarCity>
  2056. </zone>
  2057. <zone type="Pacific/Majuro">
  2058. <exemplarCity>Մաջուրո</exemplarCity>
  2059. </zone>
  2060. <zone type="Europe/Skopje">
  2061. <exemplarCity>Սկոպյե</exemplarCity>
  2062. </zone>
  2063. <zone type="Africa/Bamako">
  2064. <exemplarCity>Բամակո</exemplarCity>
  2065. </zone>
  2066. <zone type="Asia/Rangoon">
  2067. <exemplarCity>Ռանգուն</exemplarCity>
  2068. </zone>
  2069. <zone type="Asia/Hovd">
  2070. <exemplarCity>Հովդ</exemplarCity>
  2071. </zone>
  2072. <zone type="Asia/Ulaanbaatar">
  2073. <exemplarCity>Ուլան Բատոր</exemplarCity>
  2074. </zone>
  2075. <zone type="Asia/Choibalsan">
  2076. <exemplarCity>Չոյբալսան</exemplarCity>
  2077. </zone>
  2078. <zone type="Asia/Macau">
  2079. <exemplarCity>Մակաո</exemplarCity>
  2080. </zone>
  2081. <zone type="Pacific/Saipan">
  2082. <exemplarCity>Սայպան</exemplarCity>
  2083. </zone>
  2084. <zone type="America/Martinique">
  2085. <exemplarCity>Մարտինիկա</exemplarCity>
  2086. </zone>
  2087. <zone type="Africa/Nouakchott">
  2088. <exemplarCity>Նուակշոտ</exemplarCity>
  2089. </zone>
  2090. <zone type="America/Montserrat">
  2091. <exemplarCity>Մոնտսեռատ</exemplarCity>
  2092. </zone>
  2093. <zone type="Europe/Malta">
  2094. <exemplarCity>Մալթա</exemplarCity>
  2095. </zone>
  2096. <zone type="Indian/Mauritius">
  2097. <exemplarCity>Մավրիկիոս</exemplarCity>
  2098. </zone>
  2099. <zone type="Indian/Maldives">
  2100. <exemplarCity>Մալդիվյան կղզիներ</exemplarCity>
  2101. </zone>
  2102. <zone type="Africa/Blantyre">
  2103. <exemplarCity>Բլանթայր</exemplarCity>
  2104. </zone>
  2105. <zone type="America/Tijuana">
  2106. <exemplarCity>Տիխուանա</exemplarCity>
  2107. </zone>
  2108. <zone type="America/Santa_Isabel">
  2109. <exemplarCity>Սանտա Իսաբել</exemplarCity>
  2110. </zone>
  2111. <zone type="America/Hermosillo">
  2112. <exemplarCity>Էրմոսիլյո</exemplarCity>
  2113. </zone>
  2114. <zone type="America/Mazatlan">
  2115. <exemplarCity>Մազաթլան</exemplarCity>
  2116. </zone>
  2117. <zone type="America/Chihuahua">
  2118. <exemplarCity>Չիուաուա</exemplarCity>
  2119. </zone>
  2120. <zone type="America/Bahia_Banderas">
  2121. <exemplarCity>Բայա Բանդերաս</exemplarCity>
  2122. </zone>
  2123. <zone type="America/Ojinaga">
  2124. <exemplarCity>Օխինագա</exemplarCity>
  2125. </zone>
  2126. <zone type="America/Monterrey">
  2127. <exemplarCity>Մոնտերեյ</exemplarCity>
  2128. </zone>
  2129. <zone type="America/Mexico_City">
  2130. <exemplarCity>Մեխիկո</exemplarCity>
  2131. </zone>
  2132. <zone type="America/Matamoros">
  2133. <exemplarCity>Մատամորոս</exemplarCity>
  2134. </zone>
  2135. <zone type="America/Merida">
  2136. <exemplarCity>Մերիդա</exemplarCity>
  2137. </zone>
  2138. <zone type="America/Cancun">
  2139. <exemplarCity>Կանկուն</exemplarCity>
  2140. </zone>
  2141. <zone type="Asia/Kuala_Lumpur">
  2142. <exemplarCity>Կուալա Լումպուր</exemplarCity>
  2143. </zone>
  2144. <zone type="Asia/Kuching">
  2145. <exemplarCity>Կուչինգ</exemplarCity>
  2146. </zone>
  2147. <zone type="Africa/Maputo">
  2148. <exemplarCity>Մապուտու</exemplarCity>
  2149. </zone>
  2150. <zone type="Africa/Windhoek">
  2151. <exemplarCity>Վինդհուկ</exemplarCity>
  2152. </zone>
  2153. <zone type="Pacific/Noumea">
  2154. <exemplarCity>Նումեա</exemplarCity>
  2155. </zone>
  2156. <zone type="Africa/Niamey">
  2157. <exemplarCity>Նիամեյ</exemplarCity>
  2158. </zone>
  2159. <zone type="Pacific/Norfolk">
  2160. <exemplarCity>Նորֆոլկ</exemplarCity>
  2161. </zone>
  2162. <zone type="Africa/Lagos">
  2163. <exemplarCity>Լագոս</exemplarCity>
  2164. </zone>
  2165. <zone type="America/Managua">
  2166. <exemplarCity>Մանագուա</exemplarCity>
  2167. </zone>
  2168. <zone type="Europe/Amsterdam">
  2169. <exemplarCity>Ամստերդամ</exemplarCity>
  2170. </zone>
  2171. <zone type="Europe/Oslo">
  2172. <exemplarCity>Օսլո</exemplarCity>
  2173. </zone>
  2174. <zone type="Asia/Katmandu">
  2175. <exemplarCity>Կատմանդու</exemplarCity>
  2176. </zone>
  2177. <zone type="Pacific/Nauru">
  2178. <exemplarCity>Նաուրու</exemplarCity>
  2179. </zone>
  2180. <zone type="Pacific/Niue">
  2181. <exemplarCity>Նիուե</exemplarCity>
  2182. </zone>
  2183. <zone type="Pacific/Chatham">
  2184. <exemplarCity>Չաթեմ կղզի</exemplarCity>
  2185. </zone>
  2186. <zone type="Pacific/Auckland">
  2187. <exemplarCity>Օկլենդ</exemplarCity>
  2188. </zone>
  2189. <zone type="Asia/Muscat">
  2190. <exemplarCity>Մուսկատ</exemplarCity>
  2191. </zone>
  2192. <zone type="America/Panama">
  2193. <exemplarCity>Պանամա</exemplarCity>
  2194. </zone>
  2195. <zone type="America/Lima">
  2196. <exemplarCity>Լիմա</exemplarCity>
  2197. </zone>
  2198. <zone type="Pacific/Tahiti">
  2199. <exemplarCity>Թաիթի</exemplarCity>
  2200. </zone>
  2201. <zone type="Pacific/Marquesas">
  2202. <exemplarCity>Մարկիզյան կղզիներ</exemplarCity>
  2203. </zone>
  2204. <zone type="Pacific/Gambier">
  2205. <exemplarCity>Գամբյե կղզիներ</exemplarCity>
  2206. </zone>
  2207. <zone type="Pacific/Port_Moresby">
  2208. <exemplarCity>Պորտ Մորսբի</exemplarCity>
  2209. </zone>
  2210. <zone type="Asia/Manila">
  2211. <exemplarCity>Մանիլա</exemplarCity>
  2212. </zone>
  2213. <zone type="Asia/Karachi">
  2214. <exemplarCity>Կարաչի</exemplarCity>
  2215. </zone>
  2216. <zone type="Europe/Warsaw">
  2217. <exemplarCity>Վարշավա</exemplarCity>
  2218. </zone>
  2219. <zone type="America/Miquelon">
  2220. <exemplarCity>Միքելոն</exemplarCity>
  2221. </zone>
  2222. <zone type="Pacific/Pitcairn">
  2223. <exemplarCity>Պիտկեռն</exemplarCity>
  2224. </zone>
  2225. <zone type="America/Puerto_Rico">
  2226. <exemplarCity>Պուերտո Ռիկո</exemplarCity>
  2227. </zone>
  2228. <zone type="Asia/Gaza">
  2229. <exemplarCity>Գազա</exemplarCity>
  2230. </zone>
  2231. <zone type="Asia/Hebron">
  2232. <exemplarCity>Հեբրոն</exemplarCity>
  2233. </zone>
  2234. <zone type="Atlantic/Azores">
  2235. <exemplarCity>Ազորյան կղզիներ</exemplarCity>
  2236. </zone>
  2237. <zone type="Atlantic/Madeira">
  2238. <exemplarCity>Մադեյրա</exemplarCity>
  2239. </zone>
  2240. <zone type="Europe/Lisbon">
  2241. <exemplarCity>Լիսաբոն</exemplarCity>
  2242. </zone>
  2243. <zone type="Pacific/Palau">
  2244. <exemplarCity>Պալաու</exemplarCity>
  2245. </zone>
  2246. <zone type="America/Asuncion">
  2247. <exemplarCity>Ասունսյոն</exemplarCity>
  2248. </zone>
  2249. <zone type="Asia/Qatar">
  2250. <exemplarCity>Կատար</exemplarCity>
  2251. </zone>
  2252. <zone type="Indian/Reunion">
  2253. <exemplarCity>Ռեյունիոն</exemplarCity>
  2254. </zone>
  2255. <zone type="Europe/Bucharest">
  2256. <exemplarCity>Բուխարեստ</exemplarCity>
  2257. </zone>
  2258. <zone type="Europe/Belgrade">
  2259. <exemplarCity>Բելգրադ</exemplarCity>
  2260. </zone>
  2261. <zone type="Europe/Kaliningrad">
  2262. <exemplarCity>Կալինինգրադ</exemplarCity>
  2263. </zone>
  2264. <zone type="Europe/Moscow">
  2265. <exemplarCity>Մոսկվա</exemplarCity>
  2266. </zone>
  2267. <zone type="Europe/Volgograd">
  2268. <exemplarCity>Վոլգոգրադ</exemplarCity>
  2269. </zone>
  2270. <zone type="Europe/Samara">
  2271. <exemplarCity>Սամարա</exemplarCity>
  2272. </zone>
  2273. <zone type="Asia/Yekaterinburg">
  2274. <exemplarCity>Եկատերինբուրգ</exemplarCity>
  2275. </zone>
  2276. <zone type="Asia/Omsk">
  2277. <exemplarCity>Օմսկ</exemplarCity>
  2278. </zone>
  2279. <zone type="Asia/Novosibirsk">
  2280. <exemplarCity>Նովոսիբիրսկ</exemplarCity>
  2281. </zone>
  2282. <zone type="Asia/Novokuznetsk">
  2283. <exemplarCity>Նովոկուզնեցկ</exemplarCity>
  2284. </zone>
  2285. <zone type="Asia/Krasnoyarsk">
  2286. <exemplarCity>Կրասնոյարսկ</exemplarCity>
  2287. </zone>
  2288. <zone type="Asia/Irkutsk">
  2289. <exemplarCity>Իրկուտսկ</exemplarCity>
  2290. </zone>
  2291. <zone type="Asia/Yakutsk">
  2292. <exemplarCity>Յակուտսկ</exemplarCity>
  2293. </zone>
  2294. <zone type="Asia/Vladivostok">
  2295. <exemplarCity>Վլադիվոստոկ</exemplarCity>
  2296. </zone>
  2297. <zone type="Asia/Khandyga">
  2298. <exemplarCity>Խանդիգա</exemplarCity>
  2299. </zone>
  2300. <zone type="Asia/Sakhalin">
  2301. <exemplarCity>Սախալին</exemplarCity>
  2302. </zone>
  2303. <zone type="Asia/Ust-Nera">
  2304. <exemplarCity>Ուստ-Ներա</exemplarCity>
  2305. </zone>
  2306. <zone type="Asia/Magadan">
  2307. <exemplarCity>Մագադան</exemplarCity>
  2308. </zone>
  2309. <zone type="Asia/Kamchatka">
  2310. <exemplarCity>Կամչատկա</exemplarCity>
  2311. </zone>
  2312. <zone type="Asia/Anadyr">
  2313. <exemplarCity>Անադիր</exemplarCity>
  2314. </zone>
  2315. <zone type="Africa/Kigali">
  2316. <exemplarCity>Կիգալի</exemplarCity>
  2317. </zone>
  2318. <zone type="Asia/Riyadh">
  2319. <exemplarCity>Էր Ռիադ</exemplarCity>
  2320. </zone>
  2321. <zone type="Pacific/Guadalcanal">
  2322. <exemplarCity>Գուադալկանալ</exemplarCity>
  2323. </zone>
  2324. <zone type="Indian/Mahe">
  2325. <exemplarCity>Մաէ</exemplarCity>
  2326. </zone>
  2327. <zone type="Africa/Khartoum">
  2328. <exemplarCity>Խարթում</exemplarCity>
  2329. </zone>
  2330. <zone type="Europe/Stockholm">
  2331. <exemplarCity>Ստոքհոլմ</exemplarCity>
  2332. </zone>
  2333. <zone type="Asia/Singapore">
  2334. <exemplarCity>Սինգապուր</exemplarCity>
  2335. </zone>
  2336. <zone type="Atlantic/St_Helena">
  2337. <exemplarCity>Սուրբ Հեղինեի կղզի</exemplarCity>
  2338. </zone>
  2339. <zone type="Europe/Ljubljana">
  2340. <exemplarCity>Լյուբլյանա</exemplarCity>
  2341. </zone>
  2342. <zone type="Arctic/Longyearbyen">
  2343. <exemplarCity>Լոնգյիր</exemplarCity>
  2344. </zone>
  2345. <zone type="Europe/Bratislava">
  2346. <exemplarCity>Բրատիսլավա</exemplarCity>
  2347. </zone>
  2348. <zone type="Africa/Freetown">
  2349. <exemplarCity>Ֆրիթաուն</exemplarCity>
  2350. </zone>
  2351. <zone type="Europe/San_Marino">
  2352. <exemplarCity>Սան Մարինո</exemplarCity>
  2353. </zone>
  2354. <zone type="Africa/Dakar">
  2355. <exemplarCity>Դակար</exemplarCity>
  2356. </zone>
  2357. <zone type="Africa/Mogadishu">
  2358. <exemplarCity>Մոգադիշո</exemplarCity>
  2359. </zone>
  2360. <zone type="America/Paramaribo">
  2361. <exemplarCity>Պարամարիբո</exemplarCity>
  2362. </zone>
  2363. <zone type="Africa/Juba">
  2364. <exemplarCity>Ջուբա</exemplarCity>
  2365. </zone>
  2366. <zone type="Africa/Sao_Tome">
  2367. <exemplarCity>Սան Տոմե</exemplarCity>
  2368. </zone>
  2369. <zone type="America/El_Salvador">
  2370. <exemplarCity>Սալվադոր</exemplarCity>
  2371. </zone>
  2372. <zone type="America/Lower_Princes">
  2373. <exemplarCity>Լոուեր Պրինսես Քվորթեր</exemplarCity>
  2374. </zone>
  2375. <zone type="Asia/Damascus">
  2376. <exemplarCity>Դամասկոս</exemplarCity>
  2377. </zone>
  2378. <zone type="Africa/Mbabane">
  2379. <exemplarCity>Մբաբանե</exemplarCity>
  2380. </zone>
  2381. <zone type="America/Grand_Turk">
  2382. <exemplarCity>Գրանդ Տուրկ</exemplarCity>
  2383. </zone>
  2384. <zone type="Africa/Ndjamena">
  2385. <exemplarCity>Նջամենա</exemplarCity>
  2386. </zone>
  2387. <zone type="Indian/Kerguelen">
  2388. <exemplarCity>Կերգելեն</exemplarCity>
  2389. </zone>
  2390. <zone type="Africa/Lome">
  2391. <exemplarCity>Լոմե</exemplarCity>
  2392. </zone>
  2393. <zone type="Asia/Bangkok">
  2394. <exemplarCity>Բանգկոկ</exemplarCity>
  2395. </zone>
  2396. <zone type="Asia/Dushanbe">
  2397. <exemplarCity>Դուշանբե</exemplarCity>
  2398. </zone>
  2399. <zone type="Pacific/Fakaofo">
  2400. <exemplarCity>Ֆակաոֆո</exemplarCity>
  2401. </zone>
  2402. <zone type="Asia/Dili">
  2403. <exemplarCity>Դիլի</exemplarCity>
  2404. </zone>
  2405. <zone type="Asia/Ashgabat">
  2406. <exemplarCity>Աշխաբադ</exemplarCity>
  2407. </zone>
  2408. <zone type="Africa/Tunis">
  2409. <exemplarCity>Թունիս</exemplarCity>
  2410. </zone>
  2411. <zone type="Pacific/Tongatapu">
  2412. <exemplarCity>Տոնգատապու</exemplarCity>
  2413. </zone>
  2414. <zone type="Europe/Istanbul">
  2415. <exemplarCity>Ստամբուլ</exemplarCity>
  2416. </zone>
  2417. <zone type="America/Port_of_Spain">
  2418. <exemplarCity>Պորտ-օֆ-Սփեյն</exemplarCity>
  2419. </zone>
  2420. <zone type="Pacific/Funafuti">
  2421. <exemplarCity>Ֆունաֆուտի</exemplarCity>
  2422. </zone>
  2423. <zone type="Asia/Taipei">
  2424. <exemplarCity>Թայպեյ</exemplarCity>
  2425. </zone>
  2426. <zone type="Africa/Dar_es_Salaam">
  2427. <exemplarCity>Դար-Էս-Սալամ</exemplarCity>
  2428. </zone>
  2429. <zone type="Europe/Uzhgorod">
  2430. <exemplarCity>Ուժգորոդ</exemplarCity>
  2431. </zone>
  2432. <zone type="Europe/Kiev">
  2433. <exemplarCity>Կիև</exemplarCity>
  2434. </zone>
  2435. <zone type="Europe/Simferopol">
  2436. <exemplarCity>Սիմֆերոպոլ</exemplarCity>
  2437. </zone>
  2438. <zone type="Europe/Zaporozhye">
  2439. <exemplarCity>Զապորոժյե</exemplarCity>
  2440. </zone>
  2441. <zone type="Africa/Kampala">
  2442. <exemplarCity>Կամպալա</exemplarCity>
  2443. </zone>
  2444. <zone type="Pacific/Midway">
  2445. <exemplarCity>Միդուեյ կղզի</exemplarCity>
  2446. </zone>
  2447. <zone type="Pacific/Johnston">
  2448. <exemplarCity>Ջոնսթոն ատոլ</exemplarCity>
  2449. </zone>
  2450. <zone type="Pacific/Wake">
  2451. <exemplarCity>Ուեյք կղզի</exemplarCity>
  2452. </zone>
  2453. <zone type="America/Adak">
  2454. <exemplarCity>Ադակ կղզի</exemplarCity>
  2455. </zone>
  2456. <zone type="America/Nome">
  2457. <exemplarCity>Նոմ</exemplarCity>
  2458. </zone>
  2459. <zone type="Pacific/Honolulu">
  2460. <exemplarCity>Հոնոլուլու</exemplarCity>
  2461. </zone>
  2462. <zone type="America/Anchorage">
  2463. <exemplarCity>Անքորիջ</exemplarCity>
  2464. </zone>
  2465. <zone type="America/Yakutat">
  2466. <exemplarCity>Յակուտատ</exemplarCity>
  2467. </zone>
  2468. <zone type="America/Sitka">
  2469. <exemplarCity>Սիտկա</exemplarCity>
  2470. </zone>
  2471. <zone type="America/Juneau">
  2472. <exemplarCity>Ջունո</exemplarCity>
  2473. </zone>
  2474. <zone type="America/Metlakatla">
  2475. <exemplarCity>Մետլակատլա</exemplarCity>
  2476. </zone>
  2477. <zone type="America/Los_Angeles">
  2478. <exemplarCity>Լոս Անջելես</exemplarCity>
  2479. </zone>
  2480. <zone type="America/Boise">
  2481. <exemplarCity>Բոյսե</exemplarCity>
  2482. </zone>
  2483. <zone type="America/Phoenix">
  2484. <exemplarCity>Ֆինիքս</exemplarCity>
  2485. </zone>
  2486. <zone type="America/Denver">
  2487. <exemplarCity>Դենվեր</exemplarCity>
  2488. </zone>
  2489. <zone type="America/North_Dakota/Beulah">
  2490. <exemplarCity>Բոյլա, Հյուսիսային Դակոտա</exemplarCity>
  2491. </zone>
  2492. <zone type="America/North_Dakota/New_Salem">
  2493. <exemplarCity>Նյու Սալեմ, Հյուսիսային Դակոտա</exemplarCity>
  2494. </zone>
  2495. <zone type="America/North_Dakota/Center">
  2496. <exemplarCity>Հյուսիսային Դակոտա - Կենտրոն</exemplarCity>
  2497. </zone>
  2498. <zone type="America/Chicago">
  2499. <exemplarCity>Չիկագո</exemplarCity>
  2500. </zone>
  2501. <zone type="America/Menominee">
  2502. <exemplarCity>Մենոմինի</exemplarCity>
  2503. </zone>
  2504. <zone type="America/Indiana/Vincennes">
  2505. <exemplarCity>Վինսենս, Ինդիանա</exemplarCity>
  2506. </zone>
  2507. <zone type="America/Indiana/Petersburg">
  2508. <exemplarCity>Պետերսբուրգ, Ինդիանա</exemplarCity>
  2509. </zone>
  2510. <zone type="America/Indiana/Tell_City">
  2511. <exemplarCity>Թել-Սիթի, Ինդիանա</exemplarCity>
  2512. </zone>
  2513. <zone type="America/Indiana/Knox">
  2514. <exemplarCity>Նոքս, Ինդիանա</exemplarCity>
  2515. </zone>
  2516. <zone type="America/Indiana/Winamac">
  2517. <exemplarCity>Վինամակ, Ինդիանա</exemplarCity>
  2518. </zone>
  2519. <zone type="America/Indiana/Marengo">
  2520. <exemplarCity>Մարենգո, Ինդիանա</exemplarCity>
  2521. </zone>
  2522. <zone type="America/Indianapolis">
  2523. <exemplarCity>Ինդիանապոլիս</exemplarCity>
  2524. </zone>
  2525. <zone type="America/Louisville">
  2526. <exemplarCity>Լուիսվիլ</exemplarCity>
  2527. </zone>
  2528. <zone type="America/Indiana/Vevay">
  2529. <exemplarCity>Վիվեյ, Ինդիանա</exemplarCity>
  2530. </zone>
  2531. <zone type="America/Kentucky/Monticello">
  2532. <exemplarCity>Մոնտիսելո, Կենտուկի</exemplarCity>
  2533. </zone>
  2534. <zone type="America/Detroit">
  2535. <exemplarCity>Դետրոյթ</exemplarCity>
  2536. </zone>
  2537. <zone type="America/New_York">
  2538. <exemplarCity>Նյու Յորք</exemplarCity>
  2539. </zone>
  2540. <zone type="America/Montevideo">
  2541. <exemplarCity>Մոնտեվիդեո</exemplarCity>
  2542. </zone>
  2543. <zone type="Asia/Samarkand">
  2544. <exemplarCity>Սամարղանդ</exemplarCity>
  2545. </zone>
  2546. <zone type="Asia/Tashkent">
  2547. <exemplarCity>Տաշքենդ</exemplarCity>
  2548. </zone>
  2549. <zone type="Europe/Vatican">
  2550. <exemplarCity>Վատիկան</exemplarCity>
  2551. </zone>
  2552. <zone type="America/St_Vincent">
  2553. <exemplarCity>Սենթ Վինսենթ</exemplarCity>
  2554. </zone>
  2555. <zone type="America/Caracas">
  2556. <exemplarCity>Կարակաս</exemplarCity>
  2557. </zone>
  2558. <zone type="America/Tortola">
  2559. <exemplarCity>Տորտոլա</exemplarCity>
  2560. </zone>
  2561. <zone type="America/St_Thomas">
  2562. <exemplarCity>Սենթ Թոմաս</exemplarCity>
  2563. </zone>
  2564. <zone type="Asia/Saigon">
  2565. <exemplarCity>Հոշիմին</exemplarCity>
  2566. </zone>
  2567. <zone type="Pacific/Efate">
  2568. <exemplarCity>Էֆատե</exemplarCity>
  2569. </zone>
  2570. <zone type="Pacific/Wallis">
  2571. <exemplarCity>Ուոլլիս</exemplarCity>
  2572. </zone>
  2573. <zone type="Pacific/Apia">
  2574. <exemplarCity>Ապիա</exemplarCity>
  2575. </zone>
  2576. <zone type="Asia/Aden">
  2577. <exemplarCity>Ադեն</exemplarCity>
  2578. </zone>
  2579. <zone type="Indian/Mayotte">
  2580. <exemplarCity>Մայոտ</exemplarCity>
  2581. </zone>
  2582. <zone type="Africa/Johannesburg">
  2583. <exemplarCity>Յոհանեսբուրգ</exemplarCity>
  2584. </zone>
  2585. <zone type="Africa/Lusaka">
  2586. <exemplarCity>Լուսակա</exemplarCity>
  2587. </zone>
  2588. <zone type="Africa/Harare">
  2589. <exemplarCity>Հարարե</exemplarCity>
  2590. </zone>
  2591. <metazone type="Afghanistan">
  2592. <long>
  2593. <standard>Աֆղանստանի ժամանակ</standard>
  2594. </long>
  2595. </metazone>
  2596. <metazone type="Africa_Central">
  2597. <long>
  2598. <standard>Կենտրոնաաֆրիկյան ժամանակ</standard>
  2599. </long>
  2600. </metazone>
  2601. <metazone type="Africa_Eastern">
  2602. <long>
  2603. <standard>Արևելաաֆրիկյան ժամանակ</standard>
  2604. </long>
  2605. </metazone>
  2606. <metazone type="Africa_Southern">
  2607. <long>
  2608. <standard>Հարավաֆրիկյան ժամանակ</standard>
  2609. </long>
  2610. </metazone>
  2611. <metazone type="Africa_Western">
  2612. <long>
  2613. <generic>Արևմտաաֆրիկյան ժամանակ</generic>
  2614. <standard>Արևմտաաֆրիկյան ստանդարտ ժամանակ</standard>
  2615. <daylight>Արևմտաաֆրիկյան ամառային ժամանակ</daylight>
  2616. </long>
  2617. </metazone>
  2618. <metazone type="Alaska">
  2619. <long>
  2620. <generic>Ալյասկայի ժամանակ</generic>
  2621. <standard>Ալյասկայի ստանդարտ ժամանակ</standard>
  2622. <daylight>Ալյասկայի ամառային ժամանակ</daylight>
  2623. </long>
  2624. </metazone>
  2625. <metazone type="Amazon">
  2626. <long>
  2627. <generic>Ամազոնյան ժամանակ</generic>
  2628. <standard>Ամազոնյան ստանդարտ ժամանակ</standard>
  2629. <daylight>Ամազոնյան ամառային ժամանակ</daylight>
  2630. </long>
  2631. </metazone>
  2632. <metazone type="America_Central">
  2633. <long>
  2634. <generic>Միջին ամերիկյան ժամանակ</generic>
  2635. <standard>Միջին ամերիկյան ստանդարտ ժամանակ</standard>
  2636. <daylight>Միջին ամերիկյան ամառային ժամանակ</daylight>
  2637. </long>
  2638. </metazone>
  2639. <metazone type="America_Eastern">
  2640. <long>
  2641. <generic>Արևելաամերիկյան ժամանակ</generic>
  2642. <standard>Արևելաամերիկյան ստանդարտ ժամանակ</standard>
  2643. <daylight>Արևելաամերիկյան ամառային ժամանակ</daylight>
  2644. </long>
  2645. </metazone>
  2646. <metazone type="America_Mountain">
  2647. <long>
  2648. <generic>Լեռնային ժամանակ (Հյուսիսային Ամերիկա)</generic>
  2649. <standard>Լեռնային ստանդարտ ժամանակ (Հյուսիսային Ամերիկա)</standard>
  2650. <daylight>Լեռնային ամառային ժամանակ (Հյուսիսային Ամերիկա)</daylight>
  2651. </long>
  2652. </metazone>
  2653. <metazone type="America_Pacific">
  2654. <long>
  2655. <generic>Խաղաղօվկիանոսային ժամանակ (Հյուսիսային Ամերիկա)</generic>
  2656. <standard>Խաղաղօվկիանոսային ստանդարտ ժամանակ (Հյուսիսային Ամերիկա)</standard>
  2657. <daylight>Խաղաղօվկիանոսային ամառային ժամանակ (Հյուսիսային Ամերիկա)</daylight>
  2658. </long>
  2659. </metazone>
  2660. <metazone type="Arabian">
  2661. <long>
  2662. <generic>Սաուդյան Արաբիայի ժամանակ</generic>
  2663. <standard>Սաուդյան Արաբիայի ստանդարտ ժամանակ</standard>
  2664. <daylight>Սաուդյան Արաբիայի ամառային ժամանակ</daylight>
  2665. </long>
  2666. </metazone>
  2667. <metazone type="Argentina">
  2668. <long>
  2669. <generic>Արգենտինայի ժամանակ</generic>
  2670. <standard>Արգենտինայի ստնադարտ ժամանակ</standard>
  2671. <daylight>Արգենտինայի ամառային ժամանակ</daylight>
  2672. </long>
  2673. </metazone>
  2674. <metazone type="Argentina_Western">
  2675. <long>
  2676. <generic>Արևմտյան Արգենտինայի ժամանակ</generic>
  2677. <standard>Արևմտյան Արգենտինայի ստնադարտ ժամանակ</standard>
  2678. <daylight>Արևմտյան Արգենտինայի ամառային ժամանակ</daylight>
  2679. </long>
  2680. </metazone>
  2681. <metazone type="Armenia">
  2682. <long>
  2683. <generic>Հայաստանի ժամանակ</generic>
  2684. <standard>Հայաստանի ստանդարտ ժամանակ</standard>
  2685. <daylight>Հայաստանի ամառային ժամանակ</daylight>
  2686. </long>
  2687. </metazone>
  2688. <metazone type="Atlantic">
  2689. <long>
  2690. <generic>Ատլատյան ժամանակ</generic>
  2691. <standard>Ատլատյան ստանդարտ ժամանակ</standard>
  2692. <daylight>Ատլատյան ամառային ժամանակ</daylight>
  2693. </long>
  2694. </metazone>
  2695. <metazone type="Australia_Central">
  2696. <long>
  2697. <generic>Կենտրոնաավստրալիական ժամանակ</generic>
  2698. <standard>Կենտրոնաավստրալիական ստանդարտ ժամանակ</standard>
  2699. <daylight>Կենտրոնաավստրալիական ամառային ժամանակ</daylight>
  2700. </long>
  2701. </metazone>
  2702. <metazone type="Australia_CentralWestern">
  2703. <long>
  2704. <generic>Կենտրոնաավստրալիական արևմտյան ժամանակ</generic>
  2705. <standard>Կենտրոնաավստրալիական արևմտյան ստանդարտ ժամանակ</standard>
  2706. <daylight>Կենտրոնաավստրալիական արևմտյան ամառային ժամանակ</daylight>
  2707. </long>
  2708. </metazone>
  2709. <metazone type="Australia_Eastern">
  2710. <long>
  2711. <generic>Արևելաավստրալիական ժամանակ</generic>
  2712. <standard>Արևելաավստրալիական ստանդարտ ժամանակ</standard>
  2713. <daylight>Արևելաավստրալիական ամառային ժամանակ</daylight>
  2714. </long>
  2715. </metazone>
  2716. <metazone type="Australia_Western">
  2717. <long>
  2718. <generic>Արևմտաավստրալիական ժամանակ</generic>
  2719. <standard>Արևմտաավստրալիական ստանդարտ ժամանակ</standard>
  2720. <daylight>Արևմտաավստրալիական ամառային ժամանակ</daylight>
  2721. </long>
  2722. </metazone>
  2723. <metazone type="Azerbaijan">
  2724. <long>
  2725. <generic>Ադրբեջանի ժամանակ</generic>
  2726. <standard>Ադրբեջանի ստանդարտ ժամանակ</standard>
  2727. <daylight>Ադրբեջանի ամառային ժամանակ</daylight>
  2728. </long>
  2729. </metazone>
  2730. <metazone type="Azores">
  2731. <long>
  2732. <generic>Ազորյան կղզիների ժամանակ</generic>
  2733. <standard>Ազորյան կղզիների ստանդարտ ժամանակ</standard>
  2734. <daylight>Ազորյան կղզիների ամառային ժամանակ</daylight>
  2735. </long>
  2736. </metazone>
  2737. <metazone type="Bangladesh">
  2738. <long>
  2739. <generic>Բանգլադեշի ժամանակ</generic>
  2740. <standard>Բանգլադեշի ստանդարտ ժամանակ</standard>
  2741. <daylight>Բանգլադեշի ամառային ժամանակ</daylight>
  2742. </long>
  2743. </metazone>
  2744. <metazone type="Bhutan">
  2745. <long>
  2746. <standard>Բութանի ժամանակ</standard>
  2747. </long>
  2748. </metazone>
  2749. <metazone type="Bolivia">
  2750. <long>
  2751. <standard>Բոլիվիայի ժամանակ</standard>
  2752. </long>
  2753. </metazone>
  2754. <metazone type="Brasilia">
  2755. <long>
  2756. <generic>Բրազիլիայի ժամանակ</generic>
  2757. <standard>Բրազիլիայի ստանդարտ ժամանակ</standard>
  2758. <daylight>Բրազիլիայի ամառային ժամանակ</daylight>
  2759. </long>
  2760. </metazone>
  2761. <metazone type="Brunei">
  2762. <long>
  2763. <standard>Բրունեյի ժամանակ</standard>
  2764. </long>
  2765. </metazone>
  2766. <metazone type="Cape_Verde">
  2767. <long>
  2768. <generic>Կաբո Վերդեի ժամանակ</generic>
  2769. <standard>Կաբո Վերդեի ստանդարտ ժամանակ</standard>
  2770. <daylight>Կաբո Վերդեի ամառային ժամանակ</daylight>
  2771. </long>
  2772. </metazone>
  2773. <metazone type="Chamorro">
  2774. <long>
  2775. <standard>Չամորոյի ժամանակ</standard>
  2776. </long>
  2777. </metazone>
  2778. <metazone type="Chatham">
  2779. <long>
  2780. <generic>Չաթեմ կղզու ժամանակ</generic>
  2781. <standard>Չաթեմ կղզու ստանդարտ ժամանակ</standard>
  2782. <daylight>Չաթեմ կղզու ամառային ժամանակ</daylight>
  2783. </long>
  2784. </metazone>
  2785. <metazone type="Chile">
  2786. <long>
  2787. <generic>Չիլիի ժամանակ</generic>
  2788. <standard>Չիլիի ստանդարտ ժամանակ</standard>
  2789. <daylight>Չիլիի ամառային ժամանակ</daylight>
  2790. </long>
  2791. </metazone>
  2792. <metazone type="China">
  2793. <long>
  2794. <generic>Չինաստանի ժամանակ</generic>
  2795. <standard>Չինաստանի ստանդարտ ժամանակ</standard>
  2796. <daylight>Չինաստանի ամառային ժամանակ</daylight>
  2797. </long>
  2798. </metazone>
  2799. <metazone type="Choibalsan">
  2800. <long>
  2801. <generic>Չոյբալսանի ժամանակ</generic>
  2802. <standard>Չոյբալսանի ստանդարտ ժամանակ</standard>
  2803. <daylight>Չոյբալսանի ամառային ժամանակ</daylight>
  2804. </long>
  2805. </metazone>
  2806. <metazone type="Christmas">
  2807. <long>
  2808. <standard>Ծննդյան կղզու ժամանակ</standard>
  2809. </long>
  2810. </metazone>
  2811. <metazone type="Cocos">
  2812. <long>
  2813. <standard>Կոկոսյան կղզիների ժամանակ</standard>
  2814. </long>
  2815. </metazone>
  2816. <metazone type="Colombia">
  2817. <long>
  2818. <generic>Կոլումբիայի ժամանակ</generic>
  2819. <standard>Կոլումբիայի ստանդարտ ժամանակ</standard>
  2820. <daylight>Կոլումբիայի ամառային ժամանակ</daylight>
  2821. </long>
  2822. </metazone>
  2823. <metazone type="Cook">
  2824. <long>
  2825. <generic>Կուկի կղզիների ժամանակ</generic>
  2826. <standard>Կուկի կղզիների ստանդարտ ժամանակ</standard>
  2827. <daylight>Կուկի կղզիների կիսաամառային ժամանակ</daylight>
  2828. </long>
  2829. </metazone>
  2830. <metazone type="Cuba">
  2831. <long>
  2832. <generic>Կուբայի ժամանակ</generic>
  2833. <standard>Կուբայի ստանդարտ ժամանակ</standard>
  2834. <daylight>Կուբայի ամառային ժամանակ</daylight>
  2835. </long>
  2836. </metazone>
  2837. <metazone type="Davis">
  2838. <long>
  2839. <standard>Դեյվիսի ժամանակ</standard>
  2840. </long>
  2841. </metazone>
  2842. <metazone type="DumontDUrville">
  2843. <long>
  2844. <standard>Դյումոն դ'Յուրվիլի ժամանակ</standard>
  2845. </long>
  2846. </metazone>
  2847. <metazone type="East_Timor">
  2848. <long>
  2849. <standard>Արևելյան Թիմորի ժամանակ</standard>
  2850. </long>
  2851. </metazone>
  2852. <metazone type="Easter">
  2853. <long>
  2854. <generic>Զատկի կղզու ժամանակ</generic>
  2855. <standard>Զատկի կղզու ստանդարտ ժամանակ</standard>
  2856. <daylight>Զատկի կղզու ամառային ժամանակ</daylight>
  2857. </long>
  2858. </metazone>
  2859. <metazone type="Ecuador">
  2860. <long>
  2861. <standard>Էկվադորի ժամանակ</standard>
  2862. </long>
  2863. </metazone>
  2864. <metazone type="Europe_Central">
  2865. <long>
  2866. <generic>Կենտրոնաևրոպական ժամանակ</generic>
  2867. <standard>Կենտրոնաևրոպական ստանդարտ ժամանակ</standard>
  2868. <daylight>Կենտրոնաևրոպական ամառային ժամանակ</daylight>
  2869. </long>
  2870. </metazone>
  2871. <metazone type="Europe_Eastern">
  2872. <long>
  2873. <generic>Արևելաևրոպական ժամանակ</generic>
  2874. <standard>Արևելաևրոպական ստանդարտ ժամանակ</standard>
  2875. <daylight>Արևելաևրոպական ամառային ժամանակ</daylight>
  2876. </long>
  2877. </metazone>
  2878. <metazone type="Europe_Western">
  2879. <long>
  2880. <generic>Արևմտաևրոպական ժամանակ</generic>
  2881. <standard>Արևմտաևրոպական ստանդարտ ժամանակ</standard>
  2882. <daylight>Արևմտաևրոպական ամառային ժամանակ</daylight>
  2883. </long>
  2884. </metazone>
  2885. <metazone type="Falkland">
  2886. <long>
  2887. <generic>Ֆոլկլենդյան կղզիների ժամանակ</generic>
  2888. <standard>Ֆոլկլենդյան կղզիների ստանդարտ ժամանակ</standard>
  2889. <daylight>Ֆոլկլենդյան կղզիների ամառային ժամանակ</daylight>
  2890. </long>
  2891. </metazone>
  2892. <metazone type="Fiji">
  2893. <long>
  2894. <generic>Ֆիջիի ժամանակ</generic>
  2895. <standard>Ֆիջիի ստանդարտ ժամանակ</standard>
  2896. <daylight>Ֆիջիի ամառային ժամանակ</daylight>
  2897. </long>
  2898. </metazone>
  2899. <metazone type="French_Guiana">
  2900. <long>
  2901. <standard>Ֆրանսիական Գվիանայի ժամանակ</standard>
  2902. </long>
  2903. </metazone>
  2904. <metazone type="French_Southern">
  2905. <long>
  2906. <standard>Ֆրանսիական հարավային և անտարկտիդյան ժամանակ</standard>
  2907. </long>
  2908. </metazone>
  2909. <metazone type="Galapagos">
  2910. <long>
  2911. <standard>Գալապագոսյան կղզիների ժամանակ</standard>
  2912. </long>
  2913. </metazone>
  2914. <metazone type="Gambier">
  2915. <long>
  2916. <standard>Գամբյե կղզիների ժամանակ</standard>
  2917. </long>
  2918. </metazone>
  2919. <metazone type="Georgia">
  2920. <long>
  2921. <generic>Վրաստանի ժամանակ</generic>
  2922. <standard>Վրաստանի ստանդարտ ժամանակ</standard>
  2923. <daylight>Վրաստանի ամառային ժամանակ</daylight>
  2924. </long>
  2925. </metazone>
  2926. <metazone type="Gilbert_Islands">
  2927. <long>
  2928. <standard>Ջիլբերթի կղզիների ժամանակ</standard>
  2929. </long>
  2930. </metazone>
  2931. <metazone type="GMT">
  2932. <long>
  2933. <standard>Գրինվիչի ժամանակ</standard>
  2934. </long>
  2935. </metazone>
  2936. <metazone type="Greenland_Eastern">
  2937. <long>
  2938. <generic>Արևելյան Գրենլանդիայի ժամանակ</generic>
  2939. <standard>Արևելյան Գրենլանդիայի ստանդարտ ժամանակ</standard>
  2940. <daylight>Արևելյան Գրենլանդիայի ամառային ժամանակ</daylight>
  2941. </long>
  2942. </metazone>
  2943. <metazone type="Greenland_Western">
  2944. <long>
  2945. <generic>Արևմտյան Գրենլանդիայի ժամանակ</generic>
  2946. <standard>Արևմտյան Գրենլանդիայի ստանդարտ ժամանակ</standard>
  2947. <daylight>Արևմտյան Գրենլանդիայի ամառային ժամանակ</daylight>
  2948. </long>
  2949. </metazone>
  2950. <metazone type="Gulf">
  2951. <long>
  2952. <standard>Պարսից ծոցի ժամանակ</standard>
  2953. </long>
  2954. </metazone>
  2955. <metazone type="Guyana">
  2956. <long>
  2957. <standard>Գայանայի ժամանակ</standard>
  2958. </long>
  2959. </metazone>
  2960. <metazone type="Hawaii_Aleutian">
  2961. <long>
  2962. <generic>Հավայան-ալեուտյան ժամանակ</generic>
  2963. <standard>Հավայան-ալեուտյան ստանդարտ ժամանակ</standard>
  2964. <daylight>Հավայան-ալեուտյան ամառային ժամանակ</daylight>
  2965. </long>
  2966. </metazone>
  2967. <metazone type="Hong_Kong">
  2968. <long>
  2969. <generic>Հոնկոնգի ժամանակ</generic>
  2970. <standard>Հոնկոնգի ստանդարտ ժամանակ</standard>
  2971. <daylight>Հոնկոնգի ամառային ժամանակ</daylight>
  2972. </long>
  2973. </metazone>
  2974. <metazone type="Hovd">
  2975. <long>
  2976. <generic>Հովդի ժամանակ</generic>
  2977. <standard>Հովդի ստանդարտ ժամանակ</standard>
  2978. <daylight>Հովդի ամառային ժամանակ</daylight>
  2979. </long>
  2980. </metazone>
  2981. <metazone type="India">
  2982. <long>
  2983. <standard>Հնդկաստանի ժամանակ</standard>
  2984. </long>
  2985. </metazone>
  2986. <metazone type="Indian_Ocean">
  2987. <long>
  2988. <standard>Հնդկական օվկիանոսի ժամանակ</standard>
  2989. </long>
  2990. </metazone>
  2991. <metazone type="Indochina">
  2992. <long>
  2993. <standard>Հնդկաչինական ժամանակ</standard>
  2994. </long>
  2995. </metazone>
  2996. <metazone type="Indonesia_Central">
  2997. <long>
  2998. <standard>Կենտրոնական Ինդոնեզիայի ժամանակ</standard>
  2999. </long>
  3000. </metazone>
  3001. <metazone type="Indonesia_Eastern">
  3002. <long>
  3003. <standard>Արևելյան Ինդոնեզիայի ժամանակ</standard>
  3004. </long>
  3005. </metazone>
  3006. <metazone type="Indonesia_Western">
  3007. <long>
  3008. <standard>Արևմտյան Ինդոնեզիայի ժամանակ</standard>
  3009. </long>
  3010. </metazone>
  3011. <metazone type="Iran">
  3012. <long>
  3013. <generic>Պարսկաստանի ժամանակ</generic>
  3014. <standard>Պարսկաստանի ստանդարտ ժամանակ</standard>
  3015. <daylight>Պարսկաստանի ամառային ժամանակ</daylight>
  3016. </long>
  3017. </metazone>
  3018. <metazone type="Irkutsk">
  3019. <long>
  3020. <generic>Իրկուտսկի ժամանակ</generic>
  3021. <standard>Իրկուտսկի ստանդարտ ժամանակ</standard>
  3022. <daylight>Իրկուտսկի ամառային ժամանակ</daylight>
  3023. </long>
  3024. </metazone>
  3025. <metazone type="Israel">
  3026. <long>
  3027. <generic>Իսրայելի ժամանակ</generic>
  3028. <standard>Իսրայելի ստանդարտ ժամանակ</standard>
  3029. <daylight>Իսրայելի ամառային ժամանակ</daylight>
  3030. </long>
  3031. </metazone>
  3032. <metazone type="Japan">
  3033. <long>
  3034. <generic>Ճապոնիայի ժամանակ</generic>
  3035. <standard>Ճապոնիայի ստանդարտ ժամանակ</standard>
  3036. <daylight>Ճապոնիայի ամառային ժամանակ</daylight>
  3037. </long>
  3038. </metazone>
  3039. <metazone type="Kazakhstan_Eastern">
  3040. <long>
  3041. <standard>Արևելյան Ղազախստանի ժամանակ</standard>
  3042. </long>
  3043. </metazone>
  3044. <metazone type="Kazakhstan_Western">
  3045. <long>
  3046. <standard>Արևմտյան Ղազախստանի ժամանակ</standard>
  3047. </long>
  3048. </metazone>
  3049. <metazone type="Korea">
  3050. <long>
  3051. <generic>Կորեայի ժամանակ</generic>
  3052. <standard>Կորեայի ստանդարտ ժամանակ</standard>
  3053. <daylight>Կորեայի ամառային ժամանակ</daylight>
  3054. </long>
  3055. </metazone>
  3056. <metazone type="Kosrae">
  3057. <long>
  3058. <standard>Կոսրաեյի ժամանակ</standard>
  3059. </long>
  3060. </metazone>
  3061. <metazone type="Krasnoyarsk">
  3062. <long>
  3063. <generic>Կրասնոյարսկի ժամանակ</generic>
  3064. <standard>Կրասնոյարսկի ստանդարտ ժամանակ</standard>
  3065. <daylight>Կրասնոյարսկի ամառային ժամանակ</daylight>
  3066. </long>
  3067. </metazone>
  3068. <metazone type="Kyrgystan">
  3069. <long>
  3070. <standard>Ղրղզստանի ժամանակ</standard>
  3071. </long>
  3072. </metazone>
  3073. <metazone type="Line_Islands">
  3074. <long>
  3075. <standard>Լայն կղզիների ժամանակ</standard>
  3076. </long>
  3077. </metazone>
  3078. <metazone type="Lord_Howe">
  3079. <long>
  3080. <generic>Լորդ Հաուի ժամանակ</generic>
  3081. <standard>Լորդ Հաուի ստանդարտ ժամանակ</standard>
  3082. <daylight>Լորդ Հաուի ամառային ժամանակ</daylight>
  3083. </long>
  3084. </metazone>
  3085. <metazone type="Macquarie">
  3086. <long>
  3087. <standard>Մակկուորի կղզու ժամանակ</standard>
  3088. </long>
  3089. </metazone>
  3090. <metazone type="Magadan">
  3091. <long>
  3092. <generic>Մագադանի ժամանակ</generic>
  3093. <standard>Մագադանի ստանդարտ ժամանակ</standard>
  3094. <daylight>Մագադանի ամառային ժամանակ</daylight>
  3095. </long>
  3096. </metazone>
  3097. <metazone type="Malaysia">
  3098. <long>
  3099. <standard>Մալայզիայի ժամանակ</standard>
  3100. </long>
  3101. </metazone>
  3102. <metazone type="Maldives">
  3103. <long>
  3104. <standard>Մալդիվյան կղզիների ժամանակ</standard>
  3105. </long>
  3106. </metazone>
  3107. <metazone type="Marquesas">
  3108. <long>
  3109. <standard>Մարկիզյան կղզիների ժամանակ</standard>
  3110. </long>
  3111. </metazone>
  3112. <metazone type="Marshall_Islands">
  3113. <long>
  3114. <standard>Մարշալյան կղզիների ժամանակ</standard>
  3115. </long>
  3116. </metazone>
  3117. <metazone type="Mauritius">
  3118. <long>
  3119. <generic>Մավրիկիոսի ժամանակ</generic>
  3120. <standard>Մավրիկիոսի ստանդարտ ժամանակ</standard>
  3121. <daylight>Մավրիկիոսի ամառային ժամանակ</daylight>
  3122. </long>
  3123. </metazone>
  3124. <metazone type="Mawson">
  3125. <long>
  3126. <standard>Մոուսոնի ժամանակ</standard>
  3127. </long>
  3128. </metazone>
  3129. <metazone type="Mongolia">
  3130. <long>
  3131. <generic>Ուլան-Բատորի ժամանակ</generic>
  3132. <standard>Ուլան-Բատորի ստանդարտ ժամանակ</standard>
  3133. <daylight>Ուլան-Բատորի ամառային ժամանակ</daylight>
  3134. </long>
  3135. </metazone>
  3136. <metazone type="Moscow">
  3137. <long>
  3138. <generic>Մոսկվայի ժամանակ</generic>
  3139. <standard>Մոսկվայի ստանդարտ ժամանակ</standard>
  3140. <daylight>Մոսկվայի ամառային ժամանակ</daylight>
  3141. </long>
  3142. </metazone>
  3143. <metazone type="Myanmar">
  3144. <long>
  3145. <standard>Մյանմայի ժամանակ</standard>
  3146. </long>
  3147. </metazone>
  3148. <metazone type="Nauru">
  3149. <long>
  3150. <standard>Նաուրուի ժամանակ</standard>
  3151. </long>
  3152. </metazone>
  3153. <metazone type="Nepal">
  3154. <long>
  3155. <standard>Նեպալի ժամանակ</standard>
  3156. </long>
  3157. </metazone>
  3158. <metazone type="New_Caledonia">
  3159. <long>
  3160. <generic>Նոր Կալեդոնիայի ժամանակ</generic>
  3161. <standard>Նոր Կալեդոնիայի ստանդարտ ժամանակ</standard>
  3162. <daylight>Նոր Կալեդոնիայի ամառային ժամանակ</daylight>
  3163. </long>
  3164. </metazone>
  3165. <metazone type="New_Zealand">
  3166. <long>
  3167. <generic>Նոր Զելանդիայի ժամանակ</generic>
  3168. <standard>Նոր Զելանդիայի ստանդարտ ժամանակ</standard>
  3169. <daylight>Նոր Զելանդիայի ամառային ժամանակ</daylight>
  3170. </long>
  3171. </metazone>
  3172. <metazone type="Newfoundland">
  3173. <long>
  3174. <generic>Նյուֆաունդլենդի ժամանակ</generic>
  3175. <standard>Նյուֆաունդլենդի ստանդարտ ժամանակ</standard>
  3176. <daylight>Նյուֆաունդլենդի ամառային ժամանակ</daylight>
  3177. </long>
  3178. </metazone>
  3179. <metazone type="Niue">
  3180. <long>
  3181. <standard>Նիուեյի ժամանակ</standard>
  3182. </long>
  3183. </metazone>
  3184. <metazone type="Norfolk">
  3185. <long>
  3186. <standard>Նորֆոլկ կղզու ժամանակ</standard>
  3187. </long>
  3188. </metazone>
  3189. <metazone type="Noronha">
  3190. <long>
  3191. <generic>Ֆերնանդու դի Նորոնյայի ժամանակ</generic>
  3192. <standard>Ֆերնանդու դի Նորոնյայի ստանդարտ ժամանակ</standard>
  3193. <daylight>Ֆերնանդու դի Նորոնյայի ամառային ժամանակ</daylight>
  3194. </long>
  3195. </metazone>
  3196. <metazone type="Novosibirsk">
  3197. <long>
  3198. <generic>Նովոսիբիրսկի ժամանակ</generic>
  3199. <standard>Նովոսիբիրսկի ստանդարտ ժամանակ</standard>
  3200. <daylight>Նովոսիբիրսկի ամառային ժամանակ</daylight>
  3201. </long>
  3202. </metazone>
  3203. <metazone type="Omsk">
  3204. <long>
  3205. <generic>Օմսկի ժամանակ</generic>
  3206. <standard>Օմսկի ստանդարտ ժամանակ</standard>
  3207. <daylight>Օմսկի ամառային ժամանակ</daylight>
  3208. </long>
  3209. </metazone>
  3210. <metazone type="Pakistan">
  3211. <long>
  3212. <generic>Պակիստանի ժամանակ</generic>
  3213. <standard>Պակիստանի ստանդարտ ժամանակ</standard>
  3214. <daylight>Պակիստանի ամառային ժամանակ</daylight>
  3215. </long>
  3216. </metazone>
  3217. <metazone type="Palau">
  3218. <long>
  3219. <standard>Պալաույի ժամանակ</standard>
  3220. </long>
  3221. </metazone>
  3222. <metazone type="Papua_New_Guinea">
  3223. <long>
  3224. <standard>Պապուա Նոր Գվինեայի ժամանակ</standard>
  3225. </long>
  3226. </metazone>
  3227. <metazone type="Paraguay">
  3228. <long>
  3229. <generic>Պարագվայի ժամանակ</generic>
  3230. <standard>Պարագվայի ստանդարտ ժամանակ</standard>
  3231. <daylight>Պարագվայի ամառային ժամանակ</daylight>
  3232. </long>
  3233. </metazone>
  3234. <metazone type="Peru">
  3235. <long>
  3236. <generic>Պերուի ժամանակ</generic>
  3237. <standard>Պերուի ստանդարտ ժամանակ</standard>
  3238. <daylight>Պերուի ամառային ժամանակ</daylight>
  3239. </long>
  3240. </metazone>
  3241. <metazone type="Philippines">
  3242. <long>
  3243. <generic>Ֆիլիպինների ժամանակ</generic>
  3244. <standard>Ֆիլիպինների ստանդարտ ժամանակ</standard>
  3245. <daylight>Ֆիլիպինների ամառային ժամանակ</daylight>
  3246. </long>
  3247. </metazone>
  3248. <metazone type="Phoenix_Islands">
  3249. <long>
  3250. <standard>Ֆինիքս կղզիների ժամանակ</standard>
  3251. </long>
  3252. </metazone>
  3253. <metazone type="Pierre_Miquelon">
  3254. <long>
  3255. <generic>Սեն Պիեր և Միկելոնի ժամանակ</generic>
  3256. <standard>Սեն Պիեր և Միկելոնի ստանդարտ ժամանակ</standard>
  3257. <daylight>Սեն Պիեր և Միկելոնի ամառային ժամանակ</daylight>
  3258. </long>
  3259. </metazone>
  3260. <metazone type="Pitcairn">
  3261. <long>
  3262. <standard>Պիտկեռնի ժամանակ</standard>
  3263. </long>
  3264. </metazone>
  3265. <metazone type="Ponape">
  3266. <long>
  3267. <standard>Պոնապե կղզու ժամանակ</standard>
  3268. </long>
  3269. </metazone>
  3270. <metazone type="Reunion">
  3271. <long>
  3272. <standard>Ռեյունիոնի ժամանակ</standard>
  3273. </long>
  3274. </metazone>
  3275. <metazone type="Rothera">
  3276. <long>
  3277. <standard>Ռոտերայի ժամանակ</standard>
  3278. </long>
  3279. </metazone>
  3280. <metazone type="Sakhalin">
  3281. <long>
  3282. <generic>Սախալինի ժամանակ</generic>
  3283. <standard>Սախալինի ստանդարտ ժամանակ</standard>
  3284. <daylight>Սախալինի ամառային ժամանակ</daylight>
  3285. </long>
  3286. </metazone>
  3287. <metazone type="Samoa">
  3288. <long>
  3289. <generic>Սամոայի ժամանակ</generic>
  3290. <standard>Սամոայի ստանդարտ ժամանակ</standard>
  3291. <daylight>Սամոայի ամառային ժամանակ</daylight>
  3292. </long>
  3293. </metazone>
  3294. <metazone type="Seychelles">
  3295. <long>
  3296. <standard>Սեյշելյան կղզիների ժամանակ</standard>
  3297. </long>
  3298. </metazone>
  3299. <metazone type="Singapore">
  3300. <long>
  3301. <standard>Սինգապուրի ժամանակ</standard>
  3302. </long>
  3303. </metazone>
  3304. <metazone type="Solomon">
  3305. <long>
  3306. <standard>Սողոմոնյան կղզիների ժամանակ</standard>
  3307. </long>
  3308. </metazone>
  3309. <metazone type="South_Georgia">
  3310. <long>
  3311. <standard>Հարավային Ջորջիայի ժամանակ</standard>
  3312. </long>
  3313. </metazone>
  3314. <metazone type="Suriname">
  3315. <long>
  3316. <standard>Սուրինամի ժամանակ</standard>
  3317. </long>
  3318. </metazone>
  3319. <metazone type="Syowa">
  3320. <long>
  3321. <standard>Սյովայի ժամանակ</standard>
  3322. </long>
  3323. </metazone>
  3324. <metazone type="Tahiti">
  3325. <long>
  3326. <standard>Թաիթիի ժամանակ</standard>
  3327. </long>
  3328. </metazone>
  3329. <metazone type="Taipei">
  3330. <long>
  3331. <generic>Թայպեյի ժամանակ</generic>
  3332. <standard>Թայպեյի ստանդարտ ժամանակ</standard>
  3333. <daylight>Թայպեյի ամառային ժամանակ</daylight>
  3334. </long>
  3335. </metazone>
  3336. <metazone type="Tajikistan">
  3337. <long>
  3338. <standard>Տաջիկստանի ժամանակ</standard>
  3339. </long>
  3340. </metazone>
  3341. <metazone type="Tokelau">
  3342. <long>
  3343. <standard>Տոկելաույի ժամանակ</standard>
  3344. </long>
  3345. </metazone>
  3346. <metazone type="Tonga">
  3347. <long>
  3348. <generic>Տոնգայի ժամանակ</generic>
  3349. <standard>Տոնգայի ստանդարտ ժամանակ</standard>
  3350. <daylight>Տոնգայի ամառային ժամանակ</daylight>
  3351. </long>
  3352. </metazone>
  3353. <metazone type="Truk">
  3354. <long>
  3355. <standard>Չուուկի ժամանակ</standard>
  3356. </long>
  3357. </metazone>
  3358. <metazone type="Turkmenistan">
  3359. <long>
  3360. <generic>Թուրքմենստանի ժամանակ</generic>
  3361. <standard>Թուրքմենստանի ստանդարտ ժամանակ</standard>
  3362. <daylight>Թուրքմենստանի ամառային ժամանակ</daylight>
  3363. </long>
  3364. </metazone>
  3365. <metazone type="Tuvalu">
  3366. <long>
  3367. <standard>Տուվալույի ժամանակ</standard>
  3368. </long>
  3369. </metazone>
  3370. <metazone type="Uruguay">
  3371. <long>
  3372. <generic>Ուրուգվայի ժամանակ</generic>
  3373. <standard>Ուրուգվայի ստանդարտ ժամանակ</standard>
  3374. <daylight>Ուրուգվայի ամառային ժամանակ</daylight>
  3375. </long>
  3376. </metazone>
  3377. <metazone type="Uzbekistan">
  3378. <long>
  3379. <generic>Ուզբեկստանի ժամանակ</generic>
  3380. <standard>Ուզբեկստանի ստանդարտ ժամանակ</standard>
  3381. <daylight>Ուզբեկստանի ամառային ժամանակ</daylight>
  3382. </long>
  3383. </metazone>
  3384. <metazone type="Vanuatu">
  3385. <long>
  3386. <generic>Վանուատույի ժամանակ</generic>
  3387. <standard>Վանուատույի ստանդարտ ժամանակ</standard>
  3388. <daylight>Վանուատույի ամառային ժամանակ</daylight>
  3389. </long>
  3390. </metazone>
  3391. <metazone type="Venezuela">
  3392. <long>
  3393. <standard>Վենեսուելայի ժամանակ</standard>
  3394. </long>
  3395. </metazone>
  3396. <metazone type="Vladivostok">
  3397. <long>
  3398. <generic>Վլադիվոստոկի ժամանակ</generic>
  3399. <standard>Վլադիվոստոկի ստանդարտ ժամանակ</standard>
  3400. <daylight>Վլադիվոստոկի ամառային ժամանակ</daylight>
  3401. </long>
  3402. </metazone>
  3403. <metazone type="Volgograd">
  3404. <long>
  3405. <generic>Վոլգոգրադի ժամանակ</generic>
  3406. <standard>Վոլգոգրադի ստանդարտ ժամանակ</standard>
  3407. <daylight>Վոլգոգրադի ամառային ժամանակ</daylight>
  3408. </long>
  3409. </metazone>
  3410. <metazone type="Vostok">
  3411. <long>
  3412. <standard>Վոստոկի ժամանակ</standard>
  3413. </long>
  3414. </metazone>
  3415. <metazone type="Wake">
  3416. <long>
  3417. <standard>Ուեյք կղզու ժամանակ</standard>
  3418. </long>
  3419. </metazone>
  3420. <metazone type="Wallis">
  3421. <long>
  3422. <standard>Ուոլիս և Ֆուտունայի ժամանակ</standard>
  3423. </long>
  3424. </metazone>
  3425. <metazone type="Yakutsk">
  3426. <long>
  3427. <generic>Յակուտսկի ժամանակ</generic>
  3428. <standard>Յակուտսկի ստանդարտ ժամանակ</standard>
  3429. <daylight>Յակուտսկի ամառային ժամանակ</daylight>
  3430. </long>
  3431. </metazone>
  3432. <metazone type="Yekaterinburg">
  3433. <long>
  3434. <generic>Եկատերինբուրգի ժամանակ</generic>
  3435. <standard>Եկատերինբուրգի ստանդարտ ժամանակ</standard>
  3436. <daylight>Եկատերինբուրգի ամառային ժամանակ</daylight>
  3437. </long>
  3438. </metazone>
  3439. </timeZoneNames>
  3440. </dates>
  3441. <numbers>
  3442. <defaultNumberingSystem>latn</defaultNumberingSystem>
  3443. <otherNumberingSystems>
  3444. <native>latn</native>
  3445. <traditional>armn</traditional>
  3446. </otherNumberingSystems>
  3447. <symbols numberSystem="latn">
  3448. <decimal>,</decimal>
  3449. <group>.</group>
  3450. <list>;</list>
  3451. <percentSign>%</percentSign>
  3452. <plusSign>+</plusSign>
  3453. <minusSign>-</minusSign>
  3454. <exponential>E</exponential>
  3455. <superscriptingExponent>×</superscriptingExponent>
  3456. <perMille>‰</perMille>
  3457. <infinity>∞</infinity>
  3458. <nan>NaN</nan>
  3459. </symbols>
  3460. <decimalFormats numberSystem="latn">
  3461. <decimalFormatLength>
  3462. <decimalFormat>
  3463. <pattern>#0.###</pattern>
  3464. </decimalFormat>
  3465. </decimalFormatLength>
  3466. <decimalFormatLength type="long">
  3467. <decimalFormat>
  3468. <pattern type="1000" count="one">0 հազար</pattern>
  3469. <pattern type="1000" count="other">0 հազար</pattern>
  3470. <pattern type="10000" count="one">00 հազար</pattern>
  3471. <pattern type="10000" count="other">00 հազար</pattern>
  3472. <pattern type="100000" count="one">000 հազար</pattern>
  3473. <pattern type="100000" count="other">000 հազար</pattern>
  3474. <pattern type="1000000" count="one">0 միլիոն</pattern>
  3475. <pattern type="1000000" count="other">0 միլիոն</pattern>
  3476. <pattern type="10000000" count="one">00 միլիոն</pattern>
  3477. <pattern type="10000000" count="other">00 միլիոն</pattern>
  3478. <pattern type="100000000" count="one">000 միլիոն</pattern>
  3479. <pattern type="100000000" count="other">000 միլիոն</pattern>
  3480. <pattern type="1000000000" count="one">0 միլիարդ</pattern>
  3481. <pattern type="1000000000" count="other">0 միլիարդ</pattern>
  3482. <pattern type="10000000000" count="one">00 միլիարդ</pattern>
  3483. <pattern type="10000000000" count="other">00 միլիարդ</pattern>
  3484. <pattern type="100000000000" count="one">000 միլիարդ</pattern>
  3485. <pattern type="100000000000" count="other">000 միլիարդ</pattern>
  3486. <pattern type="1000000000000" count="one">0 տրիլիոն</pattern>
  3487. <pattern type="1000000000000" count="other">0 տրիլիոն</pattern>
  3488. <pattern type="10000000000000" count="one">00 տրիլիոն</pattern>
  3489. <pattern type="10000000000000" count="other">00 տրիլիոն</pattern>
  3490. <pattern type="100000000000000" count="one">000 տրիլիոն</pattern>
  3491. <pattern type="100000000000000" count="other">000 տրիլիոն</pattern>
  3492. </decimalFormat>
  3493. </decimalFormatLength>
  3494. <decimalFormatLength type="short">
  3495. <decimalFormat>
  3496. <pattern type="1000" count="one">0 հզր</pattern>
  3497. <pattern type="1000" count="other">0 հզր</pattern>
  3498. <pattern type="10000" count="one">00 հզր</pattern>
  3499. <pattern type="10000" count="other">00 հզր</pattern>
  3500. <pattern type="100000" count="one">000 հզր</pattern>
  3501. <pattern type="100000" count="other">000 հզր</pattern>
  3502. <pattern type="1000000" count="one">0 մլն</pattern>
  3503. <pattern type="1000000" count="other">0 մլն</pattern>
  3504. <pattern type="10000000" count="one">00 մլն</pattern>
  3505. <pattern type="10000000" count="other">00 մլն</pattern>
  3506. <pattern type="100000000" count="one">000 մլն</pattern>
  3507. <pattern type="100000000" count="other">000 մլն</pattern>
  3508. <pattern type="1000000000" count="one">0 մլրդ</pattern>
  3509. <pattern type="1000000000" count="other">0 մլրդ</pattern>
  3510. <pattern type="10000000000" count="one">00 մլրդ</pattern>
  3511. <pattern type="10000000000" count="other">00 մլրդ</pattern>
  3512. <pattern type="100000000000" count="one">000 մլրդ</pattern>
  3513. <pattern type="100000000000" count="other">000 մլրդ</pattern>
  3514. <pattern type="1000000000000" count="one">0 տրլն</pattern>
  3515. <pattern type="1000000000000" count="other">0 տրլն</pattern>
  3516. <pattern type="10000000000000" count="one">00 տրլն</pattern>
  3517. <pattern type="10000000000000" count="other">00 տրլն</pattern>
  3518. <pattern type="100000000000000" count="one">000 տրլն</pattern>
  3519. <pattern type="100000000000000" count="other">000 տրլն</pattern>
  3520. </decimalFormat>
  3521. </decimalFormatLength>
  3522. </decimalFormats>
  3523. <scientificFormats numberSystem="latn">
  3524. <scientificFormatLength>
  3525. <scientificFormat>
  3526. <pattern>#E0</pattern>
  3527. </scientificFormat>
  3528. </scientificFormatLength>
  3529. </scientificFormats>
  3530. <percentFormats numberSystem="latn">
  3531. <percentFormatLength>
  3532. <percentFormat>
  3533. <pattern>#0%</pattern>
  3534. </percentFormat>
  3535. </percentFormatLength>
  3536. </percentFormats>
  3537. <currencyFormats numberSystem="latn">
  3538. <currencyFormatLength>
  3539. <currencyFormat type="standard">
  3540. <pattern>#0.00 ¤</pattern>
  3541. </currencyFormat>
  3542. </currencyFormatLength>
  3543. <unitPattern count="one">{0} {1}</unitPattern>
  3544. <unitPattern count="other">{0} {1}</unitPattern>
  3545. </currencyFormats>
  3546. <currencies>
  3547. <currency type="AED">
  3548. <displayName>Արաբական Միացյալ Էմիրությունների դիրհամ</displayName>
  3549. <displayName count="one">Արաբական Միացյալ Էմիրությունների դիրհամ</displayName>
  3550. <displayName count="other">Արաբական Միացյալ Էմիրությունների դիրհամ</displayName>
  3551. </currency>
  3552. <currency type="AFN">
  3553. <displayName>Աֆղանական աֆղանի</displayName>
  3554. <displayName count="one">Աֆղանական աֆղանի</displayName>
  3555. <displayName count="other">Աֆղանական աֆղանի</displayName>
  3556. </currency>
  3557. <currency type="ALL">
  3558. <displayName>Ալբանական լեկ</displayName>
  3559. <displayName count="one">Ալբանական լեկ</displayName>
  3560. <displayName count="other">Ալբանական լեկ</displayName>
  3561. </currency>
  3562. <currency type="AMD">
  3563. <displayName>Հայկական դրամ</displayName>
  3564. <displayName count="one">Հայկական դրամ</displayName>
  3565. <displayName count="other">Հայկական դրամ</displayName>
  3566. <symbol>դր.</symbol>
  3567. <symbol alt="variant">֏</symbol> <!-- New symbol - Unicode 6.1 -->
  3568. </currency>
  3569. <currency type="ANG">
  3570. <displayName>Նիդերլանդական Անտիլների գուլդեն</displayName>
  3571. <displayName count="one">Նիդերլանդական Անտիլների գուլդեն</displayName>
  3572. <displayName count="other">Նիդերլանդական Անտիլների գուլդեն</displayName>
  3573. </currency>
  3574. <currency type="AOA">
  3575. <displayName>Անգոլական կվանզա</displayName>
  3576. <displayName count="one">Անգոլական կվանզա</displayName>
  3577. <displayName count="other">Անգոլական կվանզա</displayName>
  3578. </currency>
  3579. <currency type="ARS">
  3580. <displayName>Արգենտինական պեսո</displayName>
  3581. <displayName count="one">Արգենտինական պեսո</displayName>
  3582. <displayName count="other">Արգենտինական պեսո</displayName>
  3583. </currency>
  3584. <currency type="AUD">
  3585. <displayName>Ավստրալական դոլար</displayName>
  3586. <displayName count="one">Ավստրալական դոլար</displayName>
  3587. <displayName count="other">Ավստրալական դոլար</displayName>
  3588. <symbol>A$</symbol>
  3589. </currency>
  3590. <currency type="AWG">
  3591. <displayName>Արուբական ֆլորին</displayName>
  3592. <displayName count="one">Արուբական ֆլորին</displayName>
  3593. <displayName count="other">Արուբական ֆլորին</displayName>
  3594. </currency>
  3595. <currency type="AZN">
  3596. <displayName>Ադրբեջանական մանաթ</displayName>
  3597. <displayName count="one">Ադրբեջանական մանաթ</displayName>
  3598. <displayName count="other">Ադրբեջանական մանաթ</displayName>
  3599. </currency>
  3600. <currency type="BAM">
  3601. <displayName>Բոսնիա և Հերցեգովինայի փոխարկելի մարկա</displayName>
  3602. <displayName count="one">Բոսնիա և Հերցեգովինայի փոխարկելի մարկա</displayName>
  3603. <displayName count="other">Բոսնիա և Հերցեգովինայի փոխարկելի մարկա</displayName>
  3604. </currency>
  3605. <currency type="BBD">
  3606. <displayName>Բարբադոսյան դոլար</displayName>
  3607. <displayName count="one">Բարբադոսյան դոլար</displayName>
  3608. <displayName count="other">Բարբադոսյան դոլար</displayName>
  3609. </currency>
  3610. <currency type="BDT">
  3611. <displayName>Բանգլադեշի տակա</displayName>
  3612. <displayName count="one">Բանգլադեշի տակա</displayName>
  3613. <displayName count="other">Բանգլադեշի տակա</displayName>
  3614. </currency>
  3615. <currency type="BGN">
  3616. <displayName>Բուլղարական լև</displayName>
  3617. <displayName count="one">Բուլղարական լև</displayName>
  3618. <displayName count="other">Բուլղարական լև</displayName>
  3619. </currency>
  3620. <currency type="BHD">
  3621. <displayName>Բահրեյնական դինար</displayName>
  3622. <displayName count="one">Բահրեյնական դինար</displayName>
  3623. <displayName count="other">Բահրեյնական դինար</displayName>
  3624. </currency>
  3625. <currency type="BIF">
  3626. <displayName>Բուրունդիի ֆրանկ</displayName>
  3627. <displayName count="one">Բուրունդիի ֆրանկ</displayName>
  3628. <displayName count="other">Բուրունդիի ֆրանկ</displayName>
  3629. </currency>
  3630. <currency type="BMD">
  3631. <displayName>Բերմուդյան դոլար</displayName>
  3632. <displayName count="one">Բերմուդյան դոլար</displayName>
  3633. <displayName count="other">Բերմուդյան դոլար</displayName>
  3634. </currency>
  3635. <currency type="BND">
  3636. <displayName>Բրունեյական դոլար</displayName>
  3637. <displayName count="one">Բրունեյական դոլար</displayName>
  3638. <displayName count="other">Բրունեյական դոլար</displayName>
  3639. </currency>
  3640. <currency type="BOB">
  3641. <displayName>Բոլիվիական բոլիվիանո</displayName>
  3642. <displayName count="one">Բոլիվիական բոլիվիանո</displayName>
  3643. <displayName count="other">Բոլիվիական բոլիվիանո</displayName>
  3644. </currency>
  3645. <currency type="BRL">
  3646. <displayName>Բրազիլական ռեալ</displayName>
  3647. <displayName count="one">Բրազիլական ռեալ</displayName>
  3648. <displayName count="other">Բրազիլական ռեալ</displayName>
  3649. <symbol>R$</symbol>
  3650. </currency>
  3651. <currency type="BSD">
  3652. <displayName>Բահամական դոլար</displayName>
  3653. <displayName count="one">Բահամական դոլար</displayName>
  3654. <displayName count="other">Բահամական դոլար</displayName>
  3655. </currency>
  3656. <currency type="BTN">
  3657. <displayName>Բութանական նգուլտրում</displayName>
  3658. <displayName count="one">Բութանական նգուլտրում</displayName>
  3659. <displayName count="other">Բութանական նգուլտրում</displayName>
  3660. </currency>
  3661. <currency type="BWP">
  3662. <displayName>Բոթսվանական պուլա</displayName>
  3663. <displayName count="one">Բոթսվանական պուլա</displayName>
  3664. <displayName count="other">Բոթսվանական պուլա</displayName>
  3665. </currency>
  3666. <currency type="BYR">
  3667. <displayName>Բելառուսական ռուբլի</displayName>
  3668. <displayName count="one">Բելառուսական ռուբլի</displayName>
  3669. <displayName count="other">Բելառուսական ռուբլի</displayName>
  3670. </currency>
  3671. <currency type="BZD">
  3672. <displayName>Բելիզի դոլար</displayName>
  3673. <displayName count="one">Բելիզի դոլար</displayName>
  3674. <displayName count="other">Բելիզի դոլար</displayName>
  3675. </currency>
  3676. <currency type="CAD">
  3677. <displayName>Կանադական դոլար</displayName>
  3678. <displayName count="one">Կանադական դոլար</displayName>
  3679. <displayName count="other">Կանադական դոլար</displayName>
  3680. <symbol>CA$</symbol>
  3681. </currency>
  3682. <currency type="CDF">
  3683. <displayName>Կոնգոյի ֆրանկ</displayName>
  3684. <displayName count="one">Կոնգոյի ֆրանկ</displayName>
  3685. <displayName count="other">Կոնգոյի ֆրանկ</displayName>
  3686. </currency>
  3687. <currency type="CHF">
  3688. <displayName>Շվեյցարական ֆրանկ</displayName>
  3689. <displayName count="one">Շվեյցարական ֆրանկ</displayName>
  3690. <displayName count="other">Շվեյցարական ֆրանկ</displayName>
  3691. </currency>
  3692. <currency type="CLP">
  3693. <displayName>Չիլիական պեսո</displayName>
  3694. <displayName count="one">Չիլիական պեսո</displayName>
  3695. <displayName count="other">Չիլիական պեսո</displayName>
  3696. </currency>
  3697. <currency type="CNY">
  3698. <displayName>Չինական յուան</displayName>
  3699. <displayName count="one">Չինական յուան</displayName>
  3700. <displayName count="other">Չինական յուան</displayName>
  3701. <symbol>CN¥</symbol>
  3702. </currency>
  3703. <currency type="COP">
  3704. <displayName>Կոլումբիական պեսո</displayName>
  3705. <displayName count="one">Կոլումբիական պեսո</displayName>
  3706. <displayName count="other">Կոլումբիական պեսո</displayName>
  3707. </currency>
  3708. <currency type="CRC">
  3709. <displayName>Կոստա Ռիկայի կոլոն</displayName>
  3710. <displayName count="one">Կոստա Ռիկայի կոլոն</displayName>
  3711. <displayName count="other">Կոստա Ռիկայի կոլոն</displayName>
  3712. </currency>
  3713. <currency type="CUC">
  3714. <displayName>Կուբական փոխարկելի պեսո</displayName>
  3715. <displayName count="one">Կուբական փոխարկելի պեսո</displayName>
  3716. <displayName count="other">Կուբական փոխարկելի պեսո</displayName>
  3717. </currency>
  3718. <currency type="CUP">
  3719. <displayName>Կուբական պեսո</displayName>
  3720. <displayName count="one">Կուբական պեսո</displayName>
  3721. <displayName count="other">Կուբական պեսո</displayName>
  3722. </currency>
  3723. <currency type="CVE">
  3724. <displayName>Կաբո Վերդեի էսկուդո</displayName>
  3725. <displayName count="one">Կաբո Վերդեի էսկուդո</displayName>
  3726. <displayName count="other">Կաբո Վերդեի էսկուդո</displayName>
  3727. </currency>
  3728. <currency type="CZK">
  3729. <displayName>Չեխական կրոնա</displayName>
  3730. <displayName count="one">Չեխական կրոնա</displayName>
  3731. <displayName count="other">Չեխական կրոնա</displayName>
  3732. </currency>
  3733. <currency type="DJF">
  3734. <displayName>Ջիբութիի ֆրանկ</displayName>
  3735. <displayName count="one">Ջիբութիի ֆրանկ</displayName>
  3736. <displayName count="other">Ջիբութիի ֆրանկ</displayName>
  3737. </currency>
  3738. <currency type="DKK">
  3739. <displayName>Դանիական կրոնա</displayName>
  3740. <displayName count="one">Դանիական կրոնա</displayName>
  3741. <displayName count="other">Դանիական կրոնա</displayName>
  3742. </currency>
  3743. <currency type="DOP">
  3744. <displayName>Դոմինիկական պեսո</displayName>
  3745. <displayName count="one">Դոմինիկական պեսո</displayName>
  3746. <displayName count="other">Դոմինիկական պեսո</displayName>
  3747. </currency>
  3748. <currency type="DZD">
  3749. <displayName>Ալժիրական դինար</displayName>
  3750. <displayName count="one">Ալժիրական դինար</displayName>
  3751. <displayName count="other">Ալժիրական դինար</displayName>
  3752. </currency>
  3753. <currency type="EGP">
  3754. <displayName>Եգիպտական ֆունտ</displayName>
  3755. <displayName count="one">Եգիպտական ֆունտ</displayName>
  3756. <displayName count="other">Եգիպտական ֆունտ</displayName>
  3757. </currency>
  3758. <currency type="ERN">
  3759. <displayName>Էրիթրեական նակֆա</displayName>
  3760. <displayName count="one">Էրիթրեական նակֆա</displayName>
  3761. <displayName count="other">Էրիթրեական նակֆա</displayName>
  3762. </currency>
  3763. <currency type="ETB">
  3764. <displayName>Եթովպական բիր</displayName>
  3765. <displayName count="one">Եթովպական բիր</displayName>
  3766. <displayName count="other">Եթովպական բիր</displayName>
  3767. </currency>
  3768. <currency type="EUR">
  3769. <displayName>Եվրո</displayName>
  3770. <displayName count="one">Եվրո</displayName>
  3771. <displayName count="other">Եվրո</displayName>
  3772. <symbol>€</symbol>
  3773. </currency>
  3774. <currency type="FJD">
  3775. <displayName>Ֆիջիական դոլար</displayName>
  3776. <displayName count="one">Ֆիջիական դոլար</displayName>
  3777. <displayName count="other">Ֆիջիական դոլար</displayName>
  3778. </currency>
  3779. <currency type="FKP">
  3780. <displayName>Ֆոլկլենդյան կղզիներ ֆունտ</displayName>
  3781. <displayName count="one">Ֆոլկլենդյան կղզիներ ֆունտ</displayName>
  3782. <displayName count="other">Ֆոլկլենդյան կղզիներ ֆունտ</displayName>
  3783. </currency>
  3784. <currency type="GBP">
  3785. <displayName>Բրիտանական ֆունտ ստեռլինգ</displayName>
  3786. <displayName count="one">Բրիտանական ֆունտ ստեռլինգ</displayName>
  3787. <displayName count="other">Բրիտանական ֆունտ ստեռլինգ</displayName>
  3788. <symbol>£</symbol>
  3789. </currency>
  3790. <currency type="GEL">
  3791. <displayName>Վրացական լարի</displayName>
  3792. <displayName count="one">Վրացական լարի</displayName>
  3793. <displayName count="other">Վրացական լարի</displayName>
  3794. </currency>
  3795. <currency type="GHS">
  3796. <displayName>Գանական սեդի</displayName>
  3797. <displayName count="one">Գանական սեդի</displayName>
  3798. <displayName count="other">Գանական սեդի</displayName>
  3799. </currency>
  3800. <currency type="GIP">
  3801. <displayName>Ջիբրալթարի ֆունտ</displayName>
  3802. <displayName count="one">Ջիբրալթարի ֆունտ</displayName>
  3803. <displayName count="other">Ջիբրալթարի ֆունտ</displayName>
  3804. </currency>
  3805. <currency type="GMD">
  3806. <displayName>Գամբիական դալասի</displayName>
  3807. <displayName count="one">Գամբիական դալասի</displayName>
  3808. <displayName count="other">Գամբիական դալասի</displayName>
  3809. </currency>
  3810. <currency type="GNF">
  3811. <displayName>Գվինեական ֆրանկ</displayName>
  3812. <displayName count="one">Գվինեական ֆրանկ</displayName>
  3813. <displayName count="other">Գվինեական ֆրանկ</displayName>
  3814. </currency>
  3815. <currency type="GTQ">
  3816. <displayName>Գվատեմալական կետսալ</displayName>
  3817. <displayName count="one">Գվատեմալական կետսալ</displayName>
  3818. <displayName count="other">Գվատեմալական կետսալ</displayName>
  3819. </currency>
  3820. <currency type="GYD">
  3821. <displayName>Գայանական դոլար</displayName>
  3822. <displayName count="one">Գայանական դոլար</displayName>
  3823. <displayName count="other">Գայանական դոլար</displayName>
  3824. </currency>
  3825. <currency type="HKD">
  3826. <displayName>Հոնկոնգի դոլար</displayName>
  3827. <displayName count="one">Հոնկոնգի դոլար</displayName>
  3828. <displayName count="other">Հոնկոնգի դոլար</displayName>
  3829. <symbol>HK$</symbol>
  3830. </currency>
  3831. <currency type="HNL">
  3832. <displayName>Հոնդուրասական լեմպրիա</displayName>
  3833. <displayName count="one">Հոնդուրասական լեմպրիա</displayName>
  3834. <displayName count="other">Հոնդուրասական լեմպրիա</displayName>
  3835. </currency>
  3836. <currency type="HRK">
  3837. <displayName>Խորվաթական կունա</displayName>
  3838. <displayName count="one">Խորվաթական կունա</displayName>
  3839. <displayName count="other">Խորվաթական կունա</displayName>
  3840. </currency>
  3841. <currency type="HTG">
  3842. <displayName>Հաիթյան գուրդ</displayName>
  3843. <displayName count="one">Հաիթյան գուրդ</displayName>
  3844. <displayName count="other">Հաիթյան գուրդ</displayName>
  3845. </currency>
  3846. <currency type="HUF">
  3847. <displayName>Հունգարական ֆորինտ</displayName>
  3848. <displayName count="one">Հունգարական ֆորինտ</displayName>
  3849. <displayName count="other">Հունգարական ֆորինտ</displayName>
  3850. </currency>
  3851. <currency type="IDR">
  3852. <displayName>Ինդոնեզական ռուփի</displayName>
  3853. <displayName count="one">Ինդոնեզական ռուփի</displayName>
  3854. <displayName count="other">Ինդոնեզական ռուփի</displayName>
  3855. </currency>
  3856. <currency type="ILS">
  3857. <displayName>Իսրայելի նոր շեկել</displayName>
  3858. <displayName count="one">Իսրայելի նոր շեկել</displayName>
  3859. <displayName count="other">Իսրայելի նոր շեկել</displayName>
  3860. <symbol>₪</symbol>
  3861. </currency>
  3862. <currency type="INR">
  3863. <displayName>Հնդկական ռուփի</displayName>
  3864. <displayName count="one">Հնդկական ռուփի</displayName>
  3865. <displayName count="other">Հնդկական ռուփի</displayName>
  3866. <symbol>₹</symbol>
  3867. </currency>
  3868. <currency type="IQD">
  3869. <displayName>Իրաքյան դինար</displayName>
  3870. <displayName count="one">Իրաքյան դինար</displayName>
  3871. <displayName count="other">Իրաքյան դինար</displayName>
  3872. </currency>
  3873. <currency type="IRR">
  3874. <displayName>Իրանական ռիալ</displayName>
  3875. <displayName count="one">Իրանական ռիալ</displayName>
  3876. <displayName count="other">Իրանական ռիալ</displayName>
  3877. </currency>
  3878. <currency type="ISK">
  3879. <displayName>Իսլանդական կրոնա</displayName>
  3880. <displayName count="one">Իսլանդական կրոնա</displayName>
  3881. <displayName count="other">Իսլանդական կրոնա</displayName>
  3882. </currency>
  3883. <currency type="JMD">
  3884. <displayName>Ջամայկական դոլար</displayName>
  3885. <displayName count="one">Ջամայկական դոլար</displayName>
  3886. <displayName count="other">Ջամայկական դոլար</displayName>
  3887. </currency>
  3888. <currency type="JOD">
  3889. <displayName>Հորդանանական դինար</displayName>
  3890. <displayName count="one">Հորդանանական դինար</displayName>
  3891. <displayName count="other">Հորդանանական դինար</displayName>
  3892. </currency>
  3893. <currency type="JPY">
  3894. <displayName>Ճապոնական իեն</displayName>
  3895. <displayName count="one">Ճապոնական իեն</displayName>
  3896. <displayName count="other">Ճապոնական իեն</displayName>
  3897. <symbol>JP¥</symbol>
  3898. </currency>
  3899. <currency type="KES">
  3900. <displayName>Քենիական շիլինգ</displayName>
  3901. <displayName count="one">Քենիական շիլինգ</displayName>
  3902. <displayName count="other">Քենիական շիլինգ</displayName>
  3903. </currency>
  3904. <currency type="KGS">
  3905. <displayName>Ղրղզական սոմ</displayName>
  3906. <displayName count="one">Ղրղզական սոմ</displayName>
  3907. <displayName count="other">Ղրղզական սոմ</displayName>
  3908. </currency>
  3909. <currency type="KHR">
  3910. <displayName>Կամբոջական ռիել</displayName>
  3911. <displayName count="one">Կամբոջական ռիել</displayName>
  3912. <displayName count="other">Կամբոջական ռիել</displayName>
  3913. </currency>
  3914. <currency type="KMF">
  3915. <displayName>Կոմորյան կղզիների ֆրանկ</displayName>
  3916. <displayName count="one">Կոմորյան կղզիների ֆրանկ</displayName>
  3917. <displayName count="other">Կոմորյան կղզիների ֆրանկ</displayName>
  3918. </currency>
  3919. <currency type="KPW">
  3920. <displayName>ԿԺԴՀ-ի վոնա</displayName>
  3921. <displayName count="one">ԿԺԴՀ-ի վոնա</displayName>
  3922. <displayName count="other">ԿԺԴՀ-ի վոնա</displayName>
  3923. </currency>
  3924. <currency type="KRW">
  3925. <displayName>Հարավկորեական վոնա</displayName>
  3926. <displayName count="one">Հարավկորեական վոնա</displayName>
  3927. <displayName count="other">Հարավկորեական վոնա</displayName>
  3928. <symbol>₩</symbol>
  3929. </currency>
  3930. <currency type="KWD">
  3931. <displayName>Քուվեյթական դինար</displayName>
  3932. <displayName count="one">Քուվեյթական դինար</displayName>
  3933. <displayName count="other">Քուվեյթական դինար</displayName>
  3934. </currency>
  3935. <currency type="KYD">
  3936. <displayName>Կայմանյան կղզիների դոլար</displayName>
  3937. <displayName count="one">Կայմանյան կղզիների դոլար</displayName>
  3938. <displayName count="other">Կայմանյան կղզիների դոլար</displayName>
  3939. </currency>
  3940. <currency type="KZT">
  3941. <displayName>Ղազախական տենգե</displayName>
  3942. <displayName count="one">Ղազախական տենգե</displayName>
  3943. <displayName count="other">Ղազախական տենգե</displayName>
  3944. </currency>
  3945. <currency type="LAK">
  3946. <displayName>Լաոսական կիպ</displayName>
  3947. <displayName count="one">Լաոսական կիպ</displayName>
  3948. <displayName count="other">Լաոսական կիպ</displayName>
  3949. </currency>
  3950. <currency type="LBP">
  3951. <displayName>Լիբանանական ֆունտ</displayName>
  3952. <displayName count="one">Լիբանանական ֆունտ</displayName>
  3953. <displayName count="other">Լիբանանական ֆունտ</displayName>
  3954. </currency>
  3955. <currency type="LKR">
  3956. <displayName>Լանկիական ռուփի</displayName>
  3957. <displayName count="one">Լանկիական ռուփի</displayName>
  3958. <displayName count="other">Լանկիական ռուփի</displayName>
  3959. </currency>
  3960. <currency type="LRD">
  3961. <displayName>Լիբերիական դոլար</displayName>
  3962. <displayName count="one">Լիբերիական դոլար</displayName>
  3963. <displayName count="other">Լիբերիական դոլար</displayName>
  3964. </currency>
  3965. <currency type="LTL">
  3966. <displayName>Լիտվական լիտ</displayName>
  3967. <displayName count="one">Լիտվական լիտ</displayName>
  3968. <displayName count="other">Լիտվական լիտ</displayName>
  3969. </currency>
  3970. <currency type="LVL">
  3971. <displayName>Լատվիական լատ</displayName>
  3972. <displayName count="one">Լատվիական լատ</displayName>
  3973. <displayName count="other">Լատվիական լատ</displayName>
  3974. </currency>
  3975. <currency type="LYD">
  3976. <displayName>Լիբիական դինար</displayName>
  3977. <displayName count="one">Լիբիական դինար</displayName>
  3978. <displayName count="other">Լիբիական դինար</displayName>
  3979. </currency>
  3980. <currency type="MAD">
  3981. <displayName>Մարոկական դիրհամ</displayName>
  3982. <displayName count="one">Մարոկական դիրհամ</displayName>
  3983. <displayName count="other">Մարոկական դիրհամ</displayName>
  3984. </currency>
  3985. <currency type="MDL">
  3986. <displayName>Մոլդովական լեյ</displayName>
  3987. <displayName count="one">Մոլդովական լեյ</displayName>
  3988. <displayName count="other">Մոլդովական լեյ</displayName>
  3989. </currency>
  3990. <currency type="MGA">
  3991. <displayName>Մադագասկարի արիարի</displayName>
  3992. <displayName count="one">Մադագասկարի արիարի</displayName>
  3993. <displayName count="other">Մադագասկարի արիարի</displayName>
  3994. </currency>
  3995. <currency type="MKD">
  3996. <displayName>Մակեդոնական դենար</displayName>
  3997. <displayName count="one">Մակեդոնական դենար</displayName>
  3998. <displayName count="other">Մակեդոնական դենար</displayName>
  3999. </currency>
  4000. <currency type="MMK">
  4001. <displayName>Մյանմական կյատ</displayName>
  4002. <displayName count="one">Մյանմական կյատ</displayName>
  4003. <displayName count="other">Մյանմական կյատ</displayName>
  4004. </currency>
  4005. <currency type="MNT">
  4006. <displayName>Մոնղոլական տուգրիկ</displayName>
  4007. <displayName count="one">Մոնղոլական տուգրիկ</displayName>
  4008. <displayName count="other">Մոնղոլական տուգրիկ</displayName>
  4009. </currency>
  4010. <currency type="MOP">
  4011. <displayName>Մակաոյի պատակա</displayName>
  4012. <displayName count="one">Մակաոյի պատակա</displayName>
  4013. <displayName count="other">Մակաոյի պատակա</displayName>
  4014. </currency>
  4015. <currency type="MRO">
  4016. <displayName>Մավրիտանական ուգիյա</displayName>
  4017. <displayName count="one">Մավրիտանական ուգիյա</displayName>
  4018. <displayName count="other">Մավրիտանական ուգիյա</displayName>
  4019. </currency>
  4020. <currency type="MUR">
  4021. <displayName>Մավրիկական ռուփի</displayName>
  4022. <displayName count="one">Մավրիկական ռուփի</displayName>
  4023. <displayName count="other">Մավրիկական ռուփի</displayName>
  4024. </currency>
  4025. <currency type="MVR">
  4026. <displayName>Մալդիվյան ռուֆիա</displayName>
  4027. <displayName count="one">Մալդիվյան ռուֆիա</displayName>
  4028. <displayName count="other">Մալդիվյան ռուֆիա</displayName>
  4029. </currency>
  4030. <currency type="MWK">
  4031. <displayName>Մալավիական կվաչա</displayName>
  4032. <displayName count="one">Մալավիական կվաչա</displayName>
  4033. <displayName count="other">Մալավիական կվաչա</displayName>
  4034. </currency>
  4035. <currency type="MXN">
  4036. <displayName>Մեքսիկական պեսո</displayName>
  4037. <displayName count="one">Մեքսիկական պեսո</displayName>
  4038. <displayName count="other">Մեքսիկական պեսո</displayName>
  4039. <symbol>MX$</symbol>
  4040. </currency>
  4041. <currency type="MYR">
  4042. <displayName>Մալայզիական ռինգիտ</displayName>
  4043. <displayName count="one">Մալայզիական ռինգիտ</displayName>
  4044. <displayName count="other">Մալայզիական ռինգիտ</displayName>
  4045. </currency>
  4046. <currency type="MZN">
  4047. <displayName>Մոզամբիկյան մետիկալ</displayName>
  4048. <displayName count="one">Մոզամբիկյան մետիկալ</displayName>
  4049. <displayName count="other">Մոզամբիկյան մետիկալ</displayName>
  4050. </currency>
  4051. <currency type="NAD">
  4052. <displayName>Նամիբիական դոլար</displayName>
  4053. <displayName count="one">Նամիբիական դոլար</displayName>
  4054. <displayName count="other">Նամիբիական դոլար</displayName>
  4055. </currency>
  4056. <currency type="NGN">
  4057. <displayName>Նիգերիական նայրա</displayName>
  4058. <displayName count="one">Նիգերիական նայրա</displayName>
  4059. <displayName count="other">Նիգերիական նայրա</displayName>
  4060. </currency>
  4061. <currency type="NIO">
  4062. <displayName>Նիկարագուական կորդոբա</displayName>
  4063. <displayName count="one">Նիկարագուական կորդոբա</displayName>
  4064. <displayName count="other">Նիկարագուական կորդոբա</displayName>
  4065. </currency>
  4066. <currency type="NOK">
  4067. <displayName>Նորվեգական կրոնա</displayName>
  4068. <displayName count="one">Նորվեգական կրոնա</displayName>
  4069. <displayName count="other">Նորվեգական կրոնա</displayName>
  4070. </currency>
  4071. <currency type="NPR">
  4072. <displayName>Նեպալական ռուփի</displayName>
  4073. <displayName count="one">Նեպալական ռուփի</displayName>
  4074. <displayName count="other">Նեպալական ռուփի</displayName>
  4075. </currency>
  4076. <currency type="NZD">
  4077. <displayName>Նորզելանդական դոլար</displayName>
  4078. <displayName count="one">Նորզելանդական դոլար</displayName>
  4079. <displayName count="other">Նորզելանդական դոլար</displayName>
  4080. <symbol>NZ$</symbol>
  4081. </currency>
  4082. <currency type="OMR">
  4083. <displayName>Օմանական ռիալ</displayName>
  4084. <displayName count="one">Օմանական ռիալ</displayName>
  4085. <displayName count="other">Օմանական ռիալ</displayName>
  4086. </currency>
  4087. <currency type="PAB">
  4088. <displayName>Պանամական բալբոա</displayName>
  4089. <displayName count="one">Պանամական բալբոա</displayName>
  4090. <displayName count="other">Պանամական բալբոա</displayName>
  4091. </currency>
  4092. <currency type="PEN">
  4093. <displayName>Պերուի նոր սոլ</displayName>
  4094. <displayName count="one">Պերուի նոր սոլ</displayName>
  4095. <displayName count="other">Պերուի նոր սոլ</displayName>
  4096. </currency>
  4097. <currency type="PGK">
  4098. <displayName>Պապուա-Նոր Գվինեայի կինա</displayName>
  4099. <displayName count="one">Պապուա-Նոր Գվինեայի կինա</displayName>
  4100. <displayName count="other">Պապուա-Նոր Գվինեայի կինա</displayName>
  4101. </currency>
  4102. <currency type="PHP">
  4103. <displayName>Ֆիլիպինական պեսո</displayName>
  4104. <displayName count="one">Ֆիլիպինական պեսո</displayName>
  4105. <displayName count="other">Ֆիլիպինական պեսո</displayName>
  4106. </currency>
  4107. <currency type="PKR">
  4108. <displayName>Պակիստանական ռուփի</displayName>
  4109. <displayName count="one">Պակիստանական ռուփի</displayName>
  4110. <displayName count="other">Պակիստանական ռուփի</displayName>
  4111. </currency>
  4112. <currency type="PLN">
  4113. <displayName>Լեհական զլոտի</displayName>
  4114. <displayName count="one">Լեհական զլոտի</displayName>
  4115. <displayName count="other">Լեհական զլոտի</displayName>
  4116. </currency>
  4117. <currency type="PYG">
  4118. <displayName>Պարագվայական գուարանի</displayName>
  4119. <displayName count="one">Պարագվայական գուարանի</displayName>
  4120. <displayName count="other">Պարագվայական գուարանի</displayName>
  4121. </currency>
  4122. <currency type="QAR">
  4123. <displayName>Քաթարական ռիալ</displayName>
  4124. <displayName count="one">Քաթարական ռիալ</displayName>
  4125. <displayName count="other">Քաթարական ռիալ</displayName>
  4126. </currency>
  4127. <currency type="RON">
  4128. <displayName>Ռումինական լեյ</displayName>
  4129. <displayName count="one">Ռումինական լեյ</displayName>
  4130. <displayName count="other">Ռումինական լեյ</displayName>
  4131. </currency>
  4132. <currency type="RSD">
  4133. <displayName>Սերբական դինար</displayName>
  4134. <displayName count="one">Սերբական դինար</displayName>
  4135. <displayName count="other">Սերբական դինար</displayName>
  4136. </currency>
  4137. <currency type="RUB">
  4138. <displayName>Ռուսական ռուբլի</displayName>
  4139. <displayName count="one">Ռուսական ռուբլի</displayName>
  4140. <displayName count="other">Ռուսական ռուբլի</displayName>
  4141. </currency>
  4142. <currency type="RWF">
  4143. <displayName>Ռուանդական ֆրանկ</displayName>
  4144. <displayName count="one">Ռուանդական ֆրանկ</displayName>
  4145. <displayName count="other">Ռուանդական ֆրանկ</displayName>
  4146. </currency>
  4147. <currency type="SAR">
  4148. <displayName>Սաուդյան Արաբիայի ռիալ</displayName>
  4149. <displayName count="one">Սաուդյան Արաբիայի ռիալ</displayName>
  4150. <displayName count="other">Սաուդյան Արաբիայի ռիալ</displayName>
  4151. </currency>
  4152. <currency type="SBD">
  4153. <displayName>Սողոմոնյան կղզիների դոլար</displayName>
  4154. <displayName count="one">Սողոմոնյան կղզիների դոլար</displayName>
  4155. <displayName count="other">Սողոմոնյան կղզիների դոլար</displayName>
  4156. </currency>
  4157. <currency type="SCR">
  4158. <displayName>Սեյշելյան կղզիների ռուփի</displayName>
  4159. <displayName count="one">Սեյշելյան կղզիների ռուփի</displayName>
  4160. <displayName count="other">Սեյշելյան կղզիների ռուփի</displayName>
  4161. </currency>
  4162. <currency type="SDG">
  4163. <displayName>Սուդանական ֆունտ</displayName>
  4164. <displayName count="one">Սուդանական ֆունտ</displayName>
  4165. <displayName count="other">Սուդանական ֆունտ</displayName>
  4166. </currency>
  4167. <currency type="SEK">
  4168. <displayName>Շվեդական կրոնա</displayName>
  4169. <displayName count="one">Շվեդական կրոնա</displayName>
  4170. <displayName count="other">Շվեդական կրոնա</displayName>
  4171. </currency>
  4172. <currency type="SGD">
  4173. <displayName>Սինգապուրյան դոլար</displayName>
  4174. <displayName count="one">Սինգապուրյան դոլար</displayName>
  4175. <displayName count="other">Սինգապուրյան դոլար</displayName>
  4176. </currency>
  4177. <currency type="SHP">
  4178. <displayName>Սուրբ Հեղինեի կղզու ֆունտ</displayName>
  4179. <displayName count="one">Սուրբ Հեղինեի կղզու ֆունտ</displayName>
  4180. <displayName count="other">Սուրբ Հեղինեի կղզու ֆունտ</displayName>
  4181. </currency>
  4182. <currency type="SLL">
  4183. <displayName>Սիերա-Լեոնեի լեոնե</displayName>
  4184. <displayName count="one">Սիերա-Լեոնեի լեոնե</displayName>
  4185. <displayName count="other">Սիերա-Լեոնեի լեոնե</displayName>
  4186. </currency>
  4187. <currency type="SOS">
  4188. <displayName>Սոմալիական շիլինգ</displayName>
  4189. <displayName count="one">Սոմալիական շիլինգ</displayName>
  4190. <displayName count="other">Սոմալիական շիլինգ</displayName>
  4191. </currency>
  4192. <currency type="SRD">
  4193. <displayName>Սուրինամական դոլար</displayName>
  4194. <displayName count="one">Սուրինամական դոլար</displayName>
  4195. <displayName count="other">Սուրինամական դոլար</displayName>
  4196. </currency>
  4197. <currency type="SSP">
  4198. <displayName>Հարավսուդանական ֆունտ</displayName>
  4199. <displayName count="one">Հարավսուդանական ֆունտ</displayName>
  4200. <displayName count="other">Հարավսուդանական ֆունտ</displayName>
  4201. </currency>
  4202. <currency type="STD">
  4203. <displayName>Սան Տոմե և Պրինսիպիի դոբրա</displayName>
  4204. <displayName count="one">Սան Տոմե և Պրինսիպիի դոբրա</displayName>
  4205. <displayName count="other">Սան Տոմե և Պրինսիպիի դոբրա</displayName>
  4206. </currency>
  4207. <currency type="SYP">
  4208. <displayName>Սիրիական ֆունտ</displayName>
  4209. <displayName count="one">Սիրիական ֆունտ</displayName>
  4210. <displayName count="other">Սիրիական ֆունտ</displayName>
  4211. </currency>
  4212. <currency type="SZL">
  4213. <displayName>Սվազիլենդական լիլանգենի</displayName>
  4214. <displayName count="one">Սվազիլենդական լիլանգենի</displayName>
  4215. <displayName count="other">Սվազիլենդական լիլանգենի</displayName>
  4216. </currency>
  4217. <currency type="THB">
  4218. <displayName>Թաիլանդական բատ</displayName>
  4219. <displayName count="one">Թաիլանդական բատ</displayName>
  4220. <displayName count="other">Թաիլանդական բատ</displayName>
  4221. <symbol>฿</symbol>
  4222. </currency>
  4223. <currency type="TJS">
  4224. <displayName>Տաջիկական սոմոնի</displayName>
  4225. <displayName count="one">Տաջիկական սոմոնի</displayName>
  4226. <displayName count="other">Տաջիկական սոմոնի</displayName>
  4227. </currency>
  4228. <currency type="TMT">
  4229. <displayName>Թուրքմենական մանաթ</displayName>
  4230. <displayName count="one">Թուրքմենական մանաթ</displayName>
  4231. <displayName count="other">Թուրքմենական մանաթ</displayName>
  4232. </currency>
  4233. <currency type="TND">
  4234. <displayName>Թունիսական դինար</displayName>
  4235. <displayName count="one">Թունիսական դինար</displayName>
  4236. <displayName count="other">Թունիսական դինար</displayName>
  4237. </currency>
  4238. <currency type="TOP">
  4239. <displayName>Տոնգայի պաանգա</displayName>
  4240. <displayName count="one">Տոնգայի պաանգա</displayName>
  4241. <displayName count="other">Տոնգայի պաանգա</displayName>
  4242. </currency>
  4243. <currency type="TRY">
  4244. <displayName>Թուրքական լիրա</displayName>
  4245. <displayName count="one">Թուրքական լիրա</displayName>
  4246. <displayName count="other">Թուրքական լիրա</displayName>
  4247. </currency>
  4248. <currency type="TTD">
  4249. <displayName>Տրինիդադ և Տոբագոյի դոլար</displayName>
  4250. <displayName count="one">Տրինիդադ և Տոբագոյի դոլար</displayName>
  4251. <displayName count="other">Տրինիդադ և Տոբագոյի դոլար</displayName>
  4252. </currency>
  4253. <currency type="TWD">
  4254. <displayName>Թայվանական նոր դոլար</displayName>
  4255. <displayName count="one">Թայվանական նոր դոլար</displayName>
  4256. <displayName count="other">Թայվանական նոր դոլար</displayName>
  4257. <symbol>NT$</symbol>
  4258. </currency>
  4259. <currency type="TZS">
  4260. <displayName>Տանզանիական շիլինգ</displayName>
  4261. <displayName count="one">Տանզանիական շիլինգ</displayName>
  4262. <displayName count="other">Տանզանիական շիլինգ</displayName>
  4263. </currency>
  4264. <currency type="UAH">
  4265. <displayName>Ուկրաինական գրիվնա</displayName>
  4266. <displayName count="one">Ուկրաինական գրիվնա</displayName>
  4267. <displayName count="other">Ուկրաինական գրիվնա</displayName>
  4268. </currency>
  4269. <currency type="UGX">
  4270. <displayName>Ուգանդական շիլինգ</displayName>
  4271. <displayName count="one">Ուգանդական շիլինգ</displayName>
  4272. <displayName count="other">Ուգանդական շիլինգ</displayName>
  4273. </currency>
  4274. <currency type="USD">
  4275. <displayName>ԱՄՆ դոլար</displayName>
  4276. <displayName count="one">ԱՄՆ դոլար</displayName>
  4277. <displayName count="other">ԱՄՆ դոլար</displayName>
  4278. <symbol>$</symbol>
  4279. </currency>
  4280. <currency type="UYU">
  4281. <displayName>Ուրուգվայական պեսո</displayName>
  4282. <displayName count="one">Ուրուգվայական պեսո</displayName>
  4283. <displayName count="other">Ուրուգվայական պեսո</displayName>
  4284. </currency>
  4285. <currency type="UZS">
  4286. <displayName>Ուզբեկական սում</displayName>
  4287. <displayName count="one">Ուզբեկական սում</displayName>
  4288. <displayName count="other">Ուզբեկական սում</displayName>
  4289. </currency>
  4290. <currency type="VEF">
  4291. <displayName>Վենեսուելական բոլիվար</displayName>
  4292. <displayName count="one">Վենեսուելական բոլիվար</displayName>
  4293. <displayName count="other">Վենեսուելական բոլիվար</displayName>
  4294. </currency>
  4295. <currency type="VND">
  4296. <displayName>Վիետնամական դոնգ</displayName>
  4297. <displayName count="one">Վիետնամական դոնգ</displayName>
  4298. <displayName count="other">Վիետնամական դոնգ</displayName>
  4299. <symbol>₫</symbol>
  4300. </currency>
  4301. <currency type="VUV">
  4302. <displayName>Վանուատուի վատու</displayName>
  4303. <displayName count="one">Վանուատուի վատու</displayName>
  4304. <displayName count="other">Վանուատուի վատու</displayName>
  4305. </currency>
  4306. <currency type="WST">
  4307. <displayName>Սամոական տալա</displayName>
  4308. <displayName count="one">Սամոական տալա</displayName>
  4309. <displayName count="other">Սամոական տալա</displayName>
  4310. </currency>
  4311. <currency type="XAF">
  4312. <displayName>Աֆրիկական ֆինանսական համայնքի ֆրանկ BEAC</displayName>
  4313. <displayName count="one">Աֆրիկական ֆինանսական համայնքի ֆրանկ BEAC</displayName>
  4314. <displayName count="other">Աֆրիկական ֆինանսական համայնքի ֆրանկ BEAC</displayName>
  4315. <symbol>FCFA</symbol>
  4316. </currency>
  4317. <currency type="XCD">
  4318. <displayName>Արևելակարիբյան դոլար</displayName>
  4319. <displayName count="one">Արևելակարիբյան դոլար</displayName>
  4320. <displayName count="other">Արևելակարիբյան դոլար</displayName>
  4321. <symbol>EC$</symbol>
  4322. </currency>
  4323. <currency type="XOF">
  4324. <displayName>Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO</displayName>
  4325. <displayName count="one">Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO</displayName>
  4326. <displayName count="other">Աֆրիկական ֆինանսական համայնքի ֆրանկ BCEAO</displayName>
  4327. <symbol>CFA</symbol>
  4328. </currency>
  4329. <currency type="XPF">
  4330. <displayName>ԿՊՖ ֆրանկ</displayName>
  4331. <displayName count="one">ԿՊՖ ֆրանկ</displayName>
  4332. <displayName count="other">ԿՊՖ ֆրանկ</displayName>
  4333. <symbol>CFPF</symbol>
  4334. </currency>
  4335. <currency type="XXX">
  4336. <displayName>Անհայտ արժույթ</displayName>
  4337. <displayName count="one">(անհայտ արժույթ)</displayName>
  4338. <displayName count="other">(անհայտ արժույթ)</displayName>
  4339. </currency>
  4340. <currency type="YER">
  4341. <displayName>Եմենական ռիալ</displayName>
  4342. <displayName count="one">Եմենական ռիալ</displayName>
  4343. <displayName count="other">Եմենական ռիալ</displayName>
  4344. </currency>
  4345. <currency type="ZAR">
  4346. <displayName>Հարավաֆրիկական ռենդ</displayName>
  4347. <displayName count="one">Հարավաֆրիկական ռենդ</displayName>
  4348. <displayName count="other">Հարավաֆրիկական ռենդ</displayName>
  4349. </currency>
  4350. <currency type="ZMK">
  4351. <displayName>Զամբիական կվաչա (1968–2012)</displayName>
  4352. <displayName count="one">Զամբիական կվաչա (1968–2012)</displayName>
  4353. <displayName count="other">Զամբիական կվաչա (1968–2012)</displayName>
  4354. </currency>
  4355. <currency type="ZMW">
  4356. <displayName>Զամբիական կվաչա</displayName>
  4357. <displayName count="one">Զամբիական կվաչա</displayName>
  4358. <displayName count="other">Զամբիական կվաչա</displayName>
  4359. </currency>
  4360. </currencies>
  4361. <miscPatterns numberSystem="latn">
  4362. <pattern type="atLeast">{0}+</pattern>
  4363. <pattern type="range">{0}-{1}</pattern>
  4364. </miscPatterns>
  4365. </numbers>
  4366. <units>
  4367. <unitLength type="long">
  4368. <compoundUnit type="per">
  4369. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4370. </compoundUnit>
  4371. <unit type="acceleration-g-force">
  4372. <unitPattern count="one">{0} ձգողության ուժի արագացում</unitPattern>
  4373. <unitPattern count="other">{0} ձգողության ուժի արագացում</unitPattern>
  4374. </unit>
  4375. <unit type="angle-arc-minute">
  4376. <unitPattern count="one">{0} րոպե</unitPattern>
  4377. <unitPattern count="other">{0} րոպե</unitPattern>
  4378. </unit>
  4379. <unit type="angle-arc-second">
  4380. <unitPattern count="one">{0} վայրկյան</unitPattern>
  4381. <unitPattern count="other">{0} վայրկյան</unitPattern>
  4382. </unit>
  4383. <unit type="angle-degree">
  4384. <unitPattern count="one">{0} աստիճան</unitPattern>
  4385. <unitPattern count="other">{0} աստիճան</unitPattern>
  4386. </unit>
  4387. <unit type="area-acre">
  4388. <unitPattern count="one">{0} ակր</unitPattern>
  4389. <unitPattern count="other">{0} ակր</unitPattern>
  4390. </unit>
  4391. <unit type="area-hectare">
  4392. <unitPattern count="one">{0} հեկտար</unitPattern>
  4393. <unitPattern count="other">{0} հեկտար</unitPattern>
  4394. </unit>
  4395. <unit type="area-square-foot">
  4396. <unitPattern count="one">{0} քառակուսի ֆուտ</unitPattern>
  4397. <unitPattern count="other">{0} քառակուսի ֆուտ</unitPattern>
  4398. </unit>
  4399. <unit type="area-square-kilometer">
  4400. <unitPattern count="one">{0} քառակուսի կիլոմետր</unitPattern>
  4401. <unitPattern count="other">{0} քառակուսի կիլոմետր</unitPattern>
  4402. </unit>
  4403. <unit type="area-square-meter">
  4404. <unitPattern count="one">{0} քառակուսի մետր</unitPattern>
  4405. <unitPattern count="other">{0} քառակուսի մետր</unitPattern>
  4406. </unit>
  4407. <unit type="area-square-mile">
  4408. <unitPattern count="one">{0} քառակուսի մղոն</unitPattern>
  4409. <unitPattern count="other">{0} քառակուսի մղոն</unitPattern>
  4410. </unit>
  4411. <unit type="duration-day">
  4412. <unitPattern count="one">{0} օր</unitPattern>
  4413. <unitPattern count="other">{0} օր</unitPattern>
  4414. </unit>
  4415. <unit type="duration-hour">
  4416. <unitPattern count="one">{0} ժամ</unitPattern>
  4417. <unitPattern count="other">{0} ժամ</unitPattern>
  4418. </unit>
  4419. <unit type="duration-millisecond">
  4420. <unitPattern count="one">{0} միլիվայրկյան</unitPattern>
  4421. <unitPattern count="other">{0} միլիվայրկյան</unitPattern>
  4422. </unit>
  4423. <unit type="duration-minute">
  4424. <unitPattern count="one">{0} րոպե</unitPattern>
  4425. <unitPattern count="other">{0} րոպե</unitPattern>
  4426. </unit>
  4427. <unit type="duration-month">
  4428. <unitPattern count="one">{0} ամիս</unitPattern>
  4429. <unitPattern count="other">{0} ամիս</unitPattern>
  4430. </unit>
  4431. <unit type="duration-second">
  4432. <unitPattern count="one">{0} վայրկյան</unitPattern>
  4433. <unitPattern count="other">{0} վայրկյան</unitPattern>
  4434. </unit>
  4435. <unit type="duration-week">
  4436. <unitPattern count="one">{0} շաբաթ</unitPattern>
  4437. <unitPattern count="other">{0} շաբաթ</unitPattern>
  4438. </unit>
  4439. <unit type="duration-year">
  4440. <unitPattern count="one">{0} տարի</unitPattern>
  4441. <unitPattern count="other">{0} տարի</unitPattern>
  4442. </unit>
  4443. <unit type="length-centimeter">
  4444. <unitPattern count="one">{0} սանտիմետր</unitPattern>
  4445. <unitPattern count="other">{0} սանտիմետր</unitPattern>
  4446. </unit>
  4447. <unit type="length-foot">
  4448. <unitPattern count="one">{0} ֆուտ</unitPattern>
  4449. <unitPattern count="other">{0} ֆուտ</unitPattern>
  4450. </unit>
  4451. <unit type="length-inch">
  4452. <unitPattern count="one">{0} դյույմ</unitPattern>
  4453. <unitPattern count="other">{0} դյույմ</unitPattern>
  4454. </unit>
  4455. <unit type="length-kilometer">
  4456. <unitPattern count="one">{0} կիլոմետր</unitPattern>
  4457. <unitPattern count="other">{0} կիլոմետր</unitPattern>
  4458. </unit>
  4459. <unit type="length-light-year">
  4460. <unitPattern count="one">{0} լուսային տարի</unitPattern>
  4461. <unitPattern count="other">{0} լուսային տարի</unitPattern>
  4462. </unit>
  4463. <unit type="length-meter">
  4464. <unitPattern count="one">{0} մետր</unitPattern>
  4465. <unitPattern count="other">{0} մետր</unitPattern>
  4466. </unit>
  4467. <unit type="length-mile">
  4468. <unitPattern count="one">{0} մղոն</unitPattern>
  4469. <unitPattern count="other">{0} մղոն</unitPattern>
  4470. </unit>
  4471. <unit type="length-millimeter">
  4472. <unitPattern count="one">{0} միլիմետր</unitPattern>
  4473. <unitPattern count="other">{0} միլիմետր</unitPattern>
  4474. </unit>
  4475. <unit type="length-picometer">
  4476. <unitPattern count="one">{0} պիկոմետր</unitPattern>
  4477. <unitPattern count="other">{0} պիկոմետր</unitPattern>
  4478. </unit>
  4479. <unit type="length-yard">
  4480. <unitPattern count="one">{0} յարդ</unitPattern>
  4481. <unitPattern count="other">{0} յարդ</unitPattern>
  4482. </unit>
  4483. <unit type="mass-gram">
  4484. <unitPattern count="one">{0} գրամ</unitPattern>
  4485. <unitPattern count="other">{0} գրամ</unitPattern>
  4486. </unit>
  4487. <unit type="mass-kilogram">
  4488. <unitPattern count="one">{0} կիլոգրամ</unitPattern>
  4489. <unitPattern count="other">{0} կիլոգրամ</unitPattern>
  4490. </unit>
  4491. <unit type="mass-ounce">
  4492. <unitPattern count="one">{0} ունցիա</unitPattern>
  4493. <unitPattern count="other">{0} ունցիա</unitPattern>
  4494. </unit>
  4495. <unit type="mass-pound">
  4496. <unitPattern count="one">{0} ֆունտ</unitPattern>
  4497. <unitPattern count="other">{0} ֆունտ</unitPattern>
  4498. </unit>
  4499. <unit type="power-horsepower">
  4500. <unitPattern count="one">{0} ձիաուժ</unitPattern>
  4501. <unitPattern count="other">{0} ձիաուժ</unitPattern>
  4502. </unit>
  4503. <unit type="power-kilowatt">
  4504. <unitPattern count="one">{0} կիլովատ</unitPattern>
  4505. <unitPattern count="other">{0} կիլովատ</unitPattern>
  4506. </unit>
  4507. <unit type="power-watt">
  4508. <unitPattern count="one">{0} վատ</unitPattern>
  4509. <unitPattern count="other">{0} վատ</unitPattern>
  4510. </unit>
  4511. <unit type="pressure-hectopascal">
  4512. <unitPattern count="one">{0} հեկտապասկալ</unitPattern>
  4513. <unitPattern count="other">{0} հեկտապասկալ</unitPattern>
  4514. </unit>
  4515. <unit type="pressure-inch-hg">
  4516. <unitPattern count="one">{0} դյույմ սնդիկի սյուն</unitPattern>
  4517. <unitPattern count="other">{0} դյույմ սնդիկի սյուն</unitPattern>
  4518. </unit>
  4519. <unit type="pressure-millibar">
  4520. <unitPattern count="one">{0} միլիբար</unitPattern>
  4521. <unitPattern count="other">{0} միլիբար</unitPattern>
  4522. </unit>
  4523. <unit type="speed-kilometer-per-hour">
  4524. <unitPattern count="one">{0} կիլոմետր / ժամ</unitPattern>
  4525. <unitPattern count="other">{0} կիլոմետր / ժամ</unitPattern>
  4526. </unit>
  4527. <unit type="speed-meter-per-second">
  4528. <unitPattern count="one">{0} մետր / վայրկյան</unitPattern>
  4529. <unitPattern count="other">{0} մետր / վայրկյան</unitPattern>
  4530. </unit>
  4531. <unit type="speed-mile-per-hour">
  4532. <unitPattern count="one">{0} մղոն / ժամ</unitPattern>
  4533. <unitPattern count="other">{0} մղոն / ժամ</unitPattern>
  4534. </unit>
  4535. <unit type="temperature-celsius">
  4536. <unitPattern count="one">{0} աստիճան ըստ Ցելսիուսի</unitPattern>
  4537. <unitPattern count="other">{0} աստիճան ըստ Ցելսիուսի</unitPattern>
  4538. </unit>
  4539. <unit type="temperature-fahrenheit">
  4540. <unitPattern count="one">{0} աստիճան ըստ Ֆարենհայթի</unitPattern>
  4541. <unitPattern count="other">{0} աստիճան ըստ Ֆարենհայթի</unitPattern>
  4542. </unit>
  4543. <unit type="volume-cubic-kilometer">
  4544. <unitPattern count="one">{0} խորանարդ կիլոմետր</unitPattern>
  4545. <unitPattern count="other">{0} խորանարդ կիլոմետր</unitPattern>
  4546. </unit>
  4547. <unit type="volume-cubic-mile">
  4548. <unitPattern count="one">{0} խորանարդ մղոն</unitPattern>
  4549. <unitPattern count="other">{0} խորանարդ մղոն</unitPattern>
  4550. </unit>
  4551. <unit type="volume-liter">
  4552. <unitPattern count="one">{0} լիտր</unitPattern>
  4553. <unitPattern count="other">{0} լիտր</unitPattern>
  4554. </unit>
  4555. </unitLength>
  4556. <unitLength type="short">
  4557. <compoundUnit type="per">
  4558. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4559. </compoundUnit>
  4560. <unit type="acceleration-g-force">
  4561. <unitPattern count="one">{0} G</unitPattern>
  4562. <unitPattern count="other">{0} G</unitPattern>
  4563. </unit>
  4564. <unit type="angle-arc-minute">
  4565. <unitPattern count="one">{0} րոպ</unitPattern>
  4566. <unitPattern count="other">{0} րոպ</unitPattern>
  4567. </unit>
  4568. <unit type="angle-arc-second">
  4569. <unitPattern count="one">{0} վրկ</unitPattern>
  4570. <unitPattern count="other">{0} վրկ</unitPattern>
  4571. </unit>
  4572. <unit type="angle-degree">
  4573. <unitPattern count="one">{0} աստճ.</unitPattern>
  4574. <unitPattern count="other">{0} աստճ.</unitPattern>
  4575. </unit>
  4576. <unit type="area-acre">
  4577. <unitPattern count="one">{0} ակր</unitPattern>
  4578. <unitPattern count="other">{0} ակր</unitPattern>
  4579. </unit>
  4580. <unit type="area-hectare">
  4581. <unitPattern count="one">{0} հա</unitPattern>
  4582. <unitPattern count="other">{0} հա</unitPattern>
  4583. </unit>
  4584. <unit type="area-square-foot">
  4585. <unitPattern count="one">{0} քռ. ֆտ.</unitPattern>
  4586. <unitPattern count="other">{0} քռ. ֆտ.</unitPattern>
  4587. </unit>
  4588. <unit type="area-square-kilometer">
  4589. <unitPattern count="one">{0} կմ²</unitPattern>
  4590. <unitPattern count="other">{0} կմ²</unitPattern>
  4591. </unit>
  4592. <unit type="area-square-meter">
  4593. <unitPattern count="one">{0} մ²</unitPattern>
  4594. <unitPattern count="other">{0} մ²</unitPattern>
  4595. </unit>
  4596. <unit type="area-square-mile">
  4597. <unitPattern count="one">{0} քռ. մղ.</unitPattern>
  4598. <unitPattern count="other">{0} քռ. մղ.</unitPattern>
  4599. </unit>
  4600. <unit type="duration-day">
  4601. <unitPattern count="one">{0} օր</unitPattern>
  4602. <unitPattern count="other">{0} օր</unitPattern>
  4603. </unit>
  4604. <unit type="duration-hour">
  4605. <unitPattern count="one">{0} ժ.</unitPattern>
  4606. <unitPattern count="other">{0} ժ.</unitPattern>
  4607. </unit>
  4608. <unit type="duration-millisecond">
  4609. <unitPattern count="one">{0} մվ</unitPattern>
  4610. <unitPattern count="other">{0}մվ</unitPattern>
  4611. </unit>
  4612. <unit type="duration-minute">
  4613. <unitPattern count="one">{0} րպ.</unitPattern>
  4614. <unitPattern count="other">{0} րպ.</unitPattern>
  4615. </unit>
  4616. <unit type="duration-month">
  4617. <unitPattern count="one">{0} ամս</unitPattern>
  4618. <unitPattern count="other">{0} ամս</unitPattern>
  4619. </unit>
  4620. <unit type="duration-second">
  4621. <unitPattern count="one">{0} վրկ</unitPattern>
  4622. <unitPattern count="other">{0} վրկ</unitPattern>
  4623. </unit>
  4624. <unit type="duration-week">
  4625. <unitPattern count="one">{0} շբթ.</unitPattern>
  4626. <unitPattern count="other">{0} շբթ.</unitPattern>
  4627. </unit>
  4628. <unit type="duration-year">
  4629. <unitPattern count="one">{0} տր.</unitPattern>
  4630. <unitPattern count="other">{0} տր.</unitPattern>
  4631. </unit>
  4632. <unit type="length-centimeter">
  4633. <unitPattern count="one">{0} սմ</unitPattern>
  4634. <unitPattern count="other">{0} սմ</unitPattern>
  4635. </unit>
  4636. <unit type="length-foot">
  4637. <unitPattern count="one">{0} ֆտ.</unitPattern>
  4638. <unitPattern count="other">{0} ֆտ.</unitPattern>
  4639. </unit>
  4640. <unit type="length-inch">
  4641. <unitPattern count="one">{0} դմ.</unitPattern>
  4642. <unitPattern count="other">{0} դմ.</unitPattern>
  4643. </unit>
  4644. <unit type="length-kilometer">
  4645. <unitPattern count="one">{0} կմ</unitPattern>
  4646. <unitPattern count="other">{0} կմ</unitPattern>
  4647. </unit>
  4648. <unit type="length-light-year">
  4649. <unitPattern count="one">{0} լ. տ.</unitPattern>
  4650. <unitPattern count="other">{0} լ. տ.</unitPattern>
  4651. </unit>
  4652. <unit type="length-meter">
  4653. <unitPattern count="one">{0} մ</unitPattern>
  4654. <unitPattern count="other">{0} մ</unitPattern>
  4655. </unit>
  4656. <unit type="length-mile">
  4657. <unitPattern count="one">{0} մղ</unitPattern>
  4658. <unitPattern count="other">{0} մղ</unitPattern>
  4659. </unit>
  4660. <unit type="length-millimeter">
  4661. <unitPattern count="one">{0} մմ</unitPattern>
  4662. <unitPattern count="other">{0} մմ</unitPattern>
  4663. </unit>
  4664. <unit type="length-picometer">
  4665. <unitPattern count="one">{0} պմ</unitPattern>
  4666. <unitPattern count="other">{0} պմ</unitPattern>
  4667. </unit>
  4668. <unit type="length-yard">
  4669. <unitPattern count="one">{0} յդ.</unitPattern>
  4670. <unitPattern count="other">{0} յդ.</unitPattern>
  4671. </unit>
  4672. <unit type="mass-gram">
  4673. <unitPattern count="one">{0} գր</unitPattern>
  4674. <unitPattern count="other">{0} գր</unitPattern>
  4675. </unit>
  4676. <unit type="mass-kilogram">
  4677. <unitPattern count="one">{0} կգ</unitPattern>
  4678. <unitPattern count="other">{0} կգ</unitPattern>
  4679. </unit>
  4680. <unit type="mass-ounce">
  4681. <unitPattern count="one">{0} ունց</unitPattern>
  4682. <unitPattern count="other">{0} ունց</unitPattern>
  4683. </unit>
  4684. <unit type="mass-pound">
  4685. <unitPattern count="one">{0} ֆն.</unitPattern>
  4686. <unitPattern count="other">{0} ֆն.</unitPattern>
  4687. </unit>
  4688. <unit type="power-horsepower">
  4689. <unitPattern count="one">{0} ձ/ու</unitPattern>
  4690. <unitPattern count="other">{0} ձ/ու</unitPattern>
  4691. </unit>
  4692. <unit type="power-kilowatt">
  4693. <unitPattern count="one">{0} կՎ</unitPattern>
  4694. <unitPattern count="other">{0} կՎ</unitPattern>
  4695. </unit>
  4696. <unit type="power-watt">
  4697. <unitPattern count="one">{0} Վ</unitPattern>
  4698. <unitPattern count="other">{0} Վ</unitPattern>
  4699. </unit>
  4700. <unit type="pressure-hectopascal">
  4701. <unitPattern count="one">{0} հՊա</unitPattern>
  4702. <unitPattern count="other">{0} հՊա</unitPattern>
  4703. </unit>
  4704. <unit type="pressure-inch-hg">
  4705. <unitPattern count="one">{0} դյույմ ս. ս.</unitPattern>
  4706. <unitPattern count="other">{0} դյույմ ս. ս.</unitPattern>
  4707. </unit>
  4708. <unit type="pressure-millibar">
  4709. <unitPattern count="one">{0} մբ</unitPattern>
  4710. <unitPattern count="other">{0} մբ</unitPattern>
  4711. </unit>
  4712. <unit type="speed-kilometer-per-hour">
  4713. <unitPattern count="one">{0} կմ/ժ</unitPattern>
  4714. <unitPattern count="other">{0} կմ/ժ</unitPattern>
  4715. </unit>
  4716. <unit type="speed-meter-per-second">
  4717. <unitPattern count="one">{0} մ/վ</unitPattern>
  4718. <unitPattern count="other">{0} մ/վ</unitPattern>
  4719. </unit>
  4720. <unit type="speed-mile-per-hour">
  4721. <unitPattern count="one">{0} մղ/ժ</unitPattern>
  4722. <unitPattern count="other">{0} մղ/ժ</unitPattern>
  4723. </unit>
  4724. <unit type="temperature-celsius">
  4725. <unitPattern count="one">{0}°C</unitPattern>
  4726. <unitPattern count="other">{0}°C</unitPattern>
  4727. </unit>
  4728. <unit type="temperature-fahrenheit">
  4729. <unitPattern count="one">{0}°F</unitPattern>
  4730. <unitPattern count="other">{0}°F</unitPattern>
  4731. </unit>
  4732. <unit type="volume-cubic-kilometer">
  4733. <unitPattern count="one">{0} կմ³</unitPattern>
  4734. <unitPattern count="other">{0} կմ³</unitPattern>
  4735. </unit>
  4736. <unit type="volume-cubic-mile">
  4737. <unitPattern count="one">{0} մղ³</unitPattern>
  4738. <unitPattern count="other">{0} մղ³</unitPattern>
  4739. </unit>
  4740. <unit type="volume-liter">
  4741. <unitPattern count="one">{0} լ.</unitPattern>
  4742. <unitPattern count="other">{0} լ.</unitPattern>
  4743. </unit>
  4744. </unitLength>
  4745. <unitLength type="narrow">
  4746. <compoundUnit type="per">
  4747. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4748. </compoundUnit>
  4749. <unit type="acceleration-g-force">
  4750. <unitPattern count="one">{0}G</unitPattern>
  4751. <unitPattern count="other">{0}G</unitPattern>
  4752. </unit>
  4753. <unit type="angle-arc-minute">
  4754. <unitPattern count="one">{0}′</unitPattern>
  4755. <unitPattern count="other">{0}′</unitPattern>
  4756. </unit>
  4757. <unit type="angle-arc-second">
  4758. <unitPattern count="one">{0}″</unitPattern>
  4759. <unitPattern count="other">{0}″</unitPattern>
  4760. </unit>
  4761. <unit type="angle-degree">
  4762. <unitPattern count="one">{0}°</unitPattern>
  4763. <unitPattern count="other">{0}°</unitPattern>
  4764. </unit>
  4765. <unit type="area-acre">
  4766. <unitPattern count="one">{0}ակր</unitPattern>
  4767. <unitPattern count="other">{0}ակր</unitPattern>
  4768. </unit>
  4769. <unit type="area-hectare">
  4770. <unitPattern count="one">{0}հա</unitPattern>
  4771. <unitPattern count="other">{0}հա</unitPattern>
  4772. </unit>
  4773. <unit type="area-square-foot">
  4774. <unitPattern count="one">{0}ֆտ²</unitPattern>
  4775. <unitPattern count="other">{0}ֆտ²</unitPattern>
  4776. </unit>
  4777. <unit type="area-square-kilometer">
  4778. <unitPattern count="one">{0} կմ²</unitPattern>
  4779. <unitPattern count="other">{0} կմ²</unitPattern>
  4780. </unit>
  4781. <unit type="area-square-meter">
  4782. <unitPattern count="one">{0} մ²</unitPattern>
  4783. <unitPattern count="other">{0} մ²</unitPattern>
  4784. </unit>
  4785. <unit type="area-square-mile">
  4786. <unitPattern count="one">{0}մղ²</unitPattern>
  4787. <unitPattern count="other">{0}մղ²</unitPattern>
  4788. </unit>
  4789. <unit type="duration-day">
  4790. <unitPattern count="one">{0}օ.</unitPattern>
  4791. <unitPattern count="other">{0}օ.</unitPattern>
  4792. </unit>
  4793. <unit type="duration-hour">
  4794. <unitPattern count="one">{0} ժ.</unitPattern>
  4795. <unitPattern count="other">{0} ժ.</unitPattern>
  4796. </unit>
  4797. <unit type="duration-millisecond">
  4798. <unitPattern count="one">{0}մվ</unitPattern>
  4799. <unitPattern count="other">{0}մվ</unitPattern>
  4800. </unit>
  4801. <unit type="duration-minute">
  4802. <unitPattern count="one">{0} ր.</unitPattern>
  4803. <unitPattern count="other">{0} ր.</unitPattern>
  4804. </unit>
  4805. <unit type="duration-month">
  4806. <unitPattern count="one">{0} ա.</unitPattern>
  4807. <unitPattern count="other">{0} ա.</unitPattern>
  4808. </unit>
  4809. <unit type="duration-second">
  4810. <unitPattern count="one">{0} վ.</unitPattern>
  4811. <unitPattern count="other">{0} վ.</unitPattern>
  4812. </unit>
  4813. <unit type="duration-week">
  4814. <unitPattern count="one">{0} շ.</unitPattern>
  4815. <unitPattern count="other">{0} շ.</unitPattern>
  4816. </unit>
  4817. <unit type="duration-year">
  4818. <unitPattern count="one">{0}տ.</unitPattern>
  4819. <unitPattern count="other">{0}տ.</unitPattern>
  4820. </unit>
  4821. <unit type="length-centimeter">
  4822. <unitPattern count="one">{0} սմ</unitPattern>
  4823. <unitPattern count="other">{0} սմ</unitPattern>
  4824. </unit>
  4825. <unit type="length-foot">
  4826. <unitPattern count="one">{0}′</unitPattern>
  4827. <unitPattern count="other">{0}′</unitPattern>
  4828. </unit>
  4829. <unit type="length-inch">
  4830. <unitPattern count="one">{0}″</unitPattern>
  4831. <unitPattern count="other">{0}″</unitPattern>
  4832. </unit>
  4833. <unit type="length-kilometer">
  4834. <unitPattern count="one">{0} կմ</unitPattern>
  4835. <unitPattern count="other">{0} կմ</unitPattern>
  4836. </unit>
  4837. <unit type="length-light-year">
  4838. <unitPattern count="one">{0} լ. տ.</unitPattern>
  4839. <unitPattern count="other">{0} լ. տ.</unitPattern>
  4840. </unit>
  4841. <unit type="length-meter">
  4842. <unitPattern count="one">{0} մ</unitPattern>
  4843. <unitPattern count="other">{0} մ</unitPattern>
  4844. </unit>
  4845. <unit type="length-mile">
  4846. <unitPattern count="one">{0} մղ</unitPattern>
  4847. <unitPattern count="other">{0} մղ</unitPattern>
  4848. </unit>
  4849. <unit type="length-millimeter">
  4850. <unitPattern count="one">{0} մմ</unitPattern>
  4851. <unitPattern count="other">{0} մմ</unitPattern>
  4852. </unit>
  4853. <unit type="length-picometer">
  4854. <unitPattern count="one">{0} պմ</unitPattern>
  4855. <unitPattern count="other">{0} պմ</unitPattern>
  4856. </unit>
  4857. <unit type="length-yard">
  4858. <unitPattern count="one">{0} յդ.</unitPattern>
  4859. <unitPattern count="other">{0} յդ.</unitPattern>
  4860. </unit>
  4861. <unit type="mass-gram">
  4862. <unitPattern count="one">{0} գր</unitPattern>
  4863. <unitPattern count="other">{0} գր</unitPattern>
  4864. </unit>
  4865. <unit type="mass-kilogram">
  4866. <unitPattern count="one">{0} կգ</unitPattern>
  4867. <unitPattern count="other">{0} կգ</unitPattern>
  4868. </unit>
  4869. <unit type="mass-ounce">
  4870. <unitPattern count="one">{0} ունց</unitPattern>
  4871. <unitPattern count="other">{0} ունց</unitPattern>
  4872. </unit>
  4873. <unit type="mass-pound">
  4874. <unitPattern count="one">{0}#</unitPattern>
  4875. <unitPattern count="other">{0}#</unitPattern>
  4876. </unit>
  4877. <unit type="power-horsepower">
  4878. <unitPattern count="one">{0}ձ/ու</unitPattern>
  4879. <unitPattern count="other">{0}ձ/ու</unitPattern>
  4880. </unit>
  4881. <unit type="power-kilowatt">
  4882. <unitPattern count="one">{0}կՎ</unitPattern>
  4883. <unitPattern count="other">{0}կՎ</unitPattern>
  4884. </unit>
  4885. <unit type="power-watt">
  4886. <unitPattern count="one">{0}Վ</unitPattern>
  4887. <unitPattern count="other">{0}Վ</unitPattern>
  4888. </unit>
  4889. <unit type="pressure-hectopascal">
  4890. <unitPattern count="one">{0} հՊա</unitPattern>
  4891. <unitPattern count="other">{0} հՊա</unitPattern>
  4892. </unit>
  4893. <unit type="pressure-inch-hg">
  4894. <unitPattern count="one">{0}&quot; ս. ս.</unitPattern>
  4895. <unitPattern count="other">{0}&quot; ս. ս</unitPattern>
  4896. </unit>
  4897. <unit type="pressure-millibar">
  4898. <unitPattern count="one">{0} մբ</unitPattern>
  4899. <unitPattern count="other">{0} մբ</unitPattern>
  4900. </unit>
  4901. <unit type="speed-kilometer-per-hour">
  4902. <unitPattern count="one">{0}կմ/ժ</unitPattern>
  4903. <unitPattern count="other">{0}կմ/ժ</unitPattern>
  4904. </unit>
  4905. <unit type="speed-meter-per-second">
  4906. <unitPattern count="one">{0}մ/վ</unitPattern>
  4907. <unitPattern count="other">{0}մ/վ</unitPattern>
  4908. </unit>
  4909. <unit type="speed-mile-per-hour">
  4910. <unitPattern count="one">{0}մղ/ժ</unitPattern>
  4911. <unitPattern count="other">{0}մղ/ժ</unitPattern>
  4912. </unit>
  4913. <unit type="temperature-celsius">
  4914. <unitPattern count="one">{0}°</unitPattern>
  4915. <unitPattern count="other">{0}°</unitPattern>
  4916. </unit>
  4917. <unit type="temperature-fahrenheit">
  4918. <unitPattern count="one">{0}°F</unitPattern>
  4919. <unitPattern count="other">{0}°F</unitPattern>
  4920. </unit>
  4921. <unit type="volume-cubic-kilometer">
  4922. <unitPattern count="one">{0}կմ³</unitPattern>
  4923. <unitPattern count="other">{0}կմ³</unitPattern>
  4924. </unit>
  4925. <unit type="volume-cubic-mile">
  4926. <unitPattern count="one">{0}մղ³</unitPattern>
  4927. <unitPattern count="other">{0}մղ³</unitPattern>
  4928. </unit>
  4929. <unit type="volume-liter">
  4930. <unitPattern count="one">{0}լ.</unitPattern>
  4931. <unitPattern count="other">{0}լ.</unitPattern>
  4932. </unit>
  4933. </unitLength>
  4934. <durationUnit type="hm">
  4935. <durationUnitPattern>h:mm</durationUnitPattern>
  4936. </durationUnit>
  4937. <durationUnit type="hms">
  4938. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  4939. </durationUnit>
  4940. <durationUnit type="ms">
  4941. <durationUnitPattern>m:ss</durationUnitPattern>
  4942. </durationUnit>
  4943. </units>
  4944. <listPatterns>
  4945. <listPattern>
  4946. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4947. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4948. <listPatternPart type="end">{0} և {1}</listPatternPart>
  4949. <listPatternPart type="2">{0} և {1}</listPatternPart>
  4950. </listPattern>
  4951. <listPattern type="unit">
  4952. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4953. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4954. <listPatternPart type="end">{0} և {1}</listPatternPart>
  4955. <listPatternPart type="2">{0} և {1}</listPatternPart>
  4956. </listPattern>
  4957. <listPattern type="unit-short">
  4958. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4959. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4960. <listPatternPart type="end">{0} և {1}</listPatternPart>
  4961. <listPatternPart type="2">{0} և {1}</listPatternPart>
  4962. </listPattern>
  4963. </listPatterns>
  4964. <posix>
  4965. <messages>
  4966. <yesstr>այո:ա</yesstr>
  4967. <nostr>ոչ:ո</nostr>
  4968. </messages>
  4969. </posix>
  4970. </ldml>