ne.xml 229 KB

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