kk.xml 194 KB

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