1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2018 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
-->
<ldml>
<identity>
<version number="$Revision: 14134 $"/>
<language type="ks"/>
</identity>
<localeDisplayNames>
<localeDisplayPattern>
<localePattern>{0} ({1})</localePattern>
<localeSeparator>{0}, {1}</localeSeparator>
</localeDisplayPattern>
<languages>
<language type="aa">اَفار</language>
<language type="ab">اَبخازِیان</language>
<language type="ace">اَچَےنیٖز</language>
<language type="ach">اَکولی</language>
<language type="ada">اَدَنٛگمیے</language>
<language type="ady">اَدَیٖگیے</language>
<language type="ae">اَویستَن</language>
<language type="af">اَفریٖکانٛز</language>
<language type="afh">اَفرِہِلی</language>
<language type="ain">اینوٗ</language>
<language type="ak">اَکان</language>
<language type="akk">اَکادِیَن</language>
<language type="ale">اَلویتی</language>
<language type="alt">جنوٗبی اَلتایی</language>
<language type="am">اَمہاری</language>
<language type="an">اَراگونی</language>
<language type="ang">پرون اَنٛگریٖزی</language>
<language type="anp">اَنٛگِکا</language>
<language type="ar">عربی</language>
<language type="arc">اَرَمیک</language>
<language type="arn">ایرو کونِیَن</language>
<language type="arp">اَراپاہو</language>
<language type="arw">اَراوَک</language>
<language type="as">اسٲمۍ</language>
<language type="ast">ایسٹوٗریَن</language>
<language type="av">اَوارِک</language>
<language type="awa">اَوَدی</language>
<language type="ay">ایمارا</language>
<language type="az">اَزَربیجانی</language>
<language type="ba">بَشکیٖر</language>
<language type="bal">بَلوٗچی</language>
<language type="ban">بالِنیٖز</language>
<language type="bas">باسا</language>
<language type="be">بیلَروٗشیَن</language>
<language type="bej">بیجا</language>
<language type="bem">بیٚمبا</language>
<language type="bg">بینا</language>
<language type="bho">بوجپوٗری</language>
<language type="bi">بِسلاما</language>
<language type="bik">بِکول</language>
<language type="bin">بِنی</language>
<language type="bla">سِکسِکا</language>
<language type="bm">بَمبارا</language>
<language type="bn">بَنٛگٲلۍ</language>
<language type="bo">تِبتی</language>
<language type="br">بریٹَن</language>
<language type="bra">برٛج</language>
<language type="bs">بوسنِیَن</language>
<language type="bua">بُرِیَت</language>
<language type="bug">بَگنیٖز</language>
<language type="byn">بٕلِن</language>
<language type="ca">کَتلان</language>
<language type="cad">کاڈو</language>
<language type="car">کارِب</language>
<language type="cch">اتسَم</language>
<language type="ce">چیچَن</language>
<language type="ceb">سیباونو</language>
<language type="ch">کَمورو</language>
<language type="chb">چیٖبچا</language>
<language type="chg">چھَگتاے</language>
<language type="chk">چُکیٖز</language>
<language type="chm">ماری</language>
<language type="chn">چِنوٗک جارگَن</language>
<language type="cho">چوکتَو</language>
<language type="chp">شیپویان</language>
<language type="chr">چیٚروکی</language>
<language type="chy">شییون</language>
<language type="co">کارسِکَن</language>
<language type="cop">کاپٹِک</language>
<language type="cr">کری</language>
<language type="crh">کرٕمیٖن تُرکی</language>
<language type="cs">چیٚک</language>
<language type="csb">کَشوٗبِیَن</language>
<language type="cu">چٔرچ سلاوِک</language>
<language type="cv">چُواش</language>
<language type="cy">ویٚلش</language>
<language type="da">ڈینِش</language>
<language type="dak">ڈکوٹا</language>
<language type="dar">دَرگوا</language>
<language type="de">جٔرمَن</language>
<language type="de_AT">آسٹرِیَن جٔرمَن</language>
<language type="de_CH">سٕوِس ہاےجٔرمَن</language>
<language type="del">ڈیٚلوییَر</language>
<language type="den">سلیو</language>
<language type="dgr">ڈاگرِب</language>
<language type="din">ڈِنکا</language>
<language type="doi">ڈوگری</language>
<language type="dsb">بوٚنِم ساربِیَن</language>
<language type="dua">دُوالا</language>
<language type="dum">وَستی پُرتُگالی</language>
<language type="dv">دِویہی</language>
<language type="dyu">ڈِیوٗلا</language>
<language type="dz">زونٛگکھا</language>
<language type="ee">ایٖو</language>
<language type="efi">ایٚفِک</language>
<language type="egy">قدیٖمی مِصری</language>
<language type="eka">ایٚکاجُک</language>
<language type="el">یوٗنٲنی</language>
<language type="elx">ایٚلامایِٹ</language>
<language type="en">اَنٛگیٖزۍ</language>
<language type="en_AU">آسٹریلیَن اَنٛگریٖزۍ</language>
<language type="en_CA">کینَڈِیٲیی اَنٛگریٖزۍ</language>
<language type="en_GB">بَرطانوی اَنٛگریٖزۍ</language>
<language type="en_US">یوٗ ایٚس اَنٛگریٖزۍ</language>
<language type="enm">وَسطی اَنٛگریٖزۍ</language>
<language type="eo">ایٚسپَرینٹو</language>
<language type="es">سپینِش</language>
<language type="es_419">لیٹٕن امریٖکی سپینِش</language>
<language type="es_ES">لِبیریَن سپینِش</language>
<language type="et">ایٚسٹونیَن</language>
<language type="eu">باسک</language>
<language type="ewo">ایٚوونڈو</language>
<language type="fa">فارسی</language>
<language type="fan">فینٛگ</language>
<language type="fat">فانٹی</language>
<language type="ff">فُلاہ</language>
<language type="fi">فِنِش</language>
<language type="fil">فِلِپیٖنو</language>
<language type="fj">فِجیَن</language>
<language type="fo">فَروس</language>
<language type="fon">فون</language>
<language type="fr">فریٚنچ</language>
<language type="fr_CA">کَنیڈیَن فریٚنچ</language>
<language type="fr_CH">سٕوٕس فریٚنچ</language>
<language type="frm">وسطی فریٚنچ</language>
<language type="fro">پرون فریٚنچ</language>
<language type="frr">شُمٲلی فرِشیَن</language>
<language type="frs">مشرِقی فرِشیَن</language>
<language type="fur">فروٗلِیَن</language>
<language type="fy">مغربی فرِشیَن</language>
<language type="ga">اَیرِش</language>
<language type="gaa">گا</language>
<language type="gay">گیےیو</language>
<language type="gba">گبایا</language>
<language type="gd">سکوٹِش گیےلِک</language>
<language type="gez">گیٖز</language>
<language type="gil">گِلبٔرٹیٖز</language>
<language type="gl">گیلِشِیَن</language>
<language type="gmh">وَسطی ہاے جٔرمَن</language>
<language type="gn">گُوارَنی</language>
<language type="goh">پرون ہاے جٔرمَن</language>
<language type="gon">گوندی</language>
<language type="gor">گورینٹیلو</language>
<language type="got">گوتھِک</language>
<language type="grb">گرِبو</language>
<language type="grc">قدیٖم یوٗنٲنی</language>
<language type="gsw">سٕوِس جٔرمَن</language>
<language type="gu">گُجرٲتی</language>
<language type="gv">مینٛکس</language>
<language type="gwi">گُوِچ اِن</language>
<language type="ha">ہاوسا</language>
<language type="hai">ہَیدا</language>
<language type="haw">ہوایِیَن</language>
<language type="he">عبرٲنۍ</language>
<language type="hi">ہِندی</language>
<language type="hil">ہِلیٖگینَن</language>
<language type="hit">ہِتایِت</language>
<language type="hmn">ہمونٛگ</language>
<language type="ho">ہِری موتوٗ</language>
<language type="hr">کروشِیَن</language>
<language type="hsb">ہیٚرِم ساربِیَن</language>
<language type="ht">ہیتِیاں</language>
<language type="hu">ہَنٛگیریَن</language>
<language type="hup">ہُپا</language>
<language type="hy">اَرمینیَن</language>
<language type="hz">ہیٚریٖرو</language>
<language type="ia">اِنٹَرلِنٛگوا</language>
<language type="iba">اِبان</language>
<language type="id">اِنڈونیشیا</language>
<language type="ie">اِنٹَر لِنٛنگویے</language>
<language type="ig">اِگبو</language>
<language type="ii">سِچوان یٖی</language>
<language type="ik">اِنُپِیاک</language>
<language type="ilo">اِلوکو</language>
<language type="inh">اِنٛگُش</language>
<language type="io">اِڈو</language>
<language type="is">آیِسلینڈِک</language>
<language type="it">اِٹیلیَن</language>
<language type="iu">اِنُکتِتوٗ</language>
<language type="ja">جاپٲنۍ</language>
<language type="jbo">لوجبان</language>
<language type="jpr">جوڈیو فارسی</language>
<language type="jrb">جوڈیو عربی</language>
<language type="jv">جَوَنیٖز</language>
<language type="ka">جارجِیَن</language>
<language type="kaa">کارا کَلپَک</language>
<language type="kab">کَبایِل</language>
<language type="kac">کاچِن</language>
<language type="kaj">جُوٗ</language>
<language type="kam">کامبا</language>
<language type="kaw">کَوی</language>
<language type="kbd">کَبارڈِیَن</language>
<language type="kcg">تَیَپ</language>
<language type="kfo">کورو</language>
<language type="kg">کونٛگو</language>
<language type="kha">کھاسی</language>
<language type="kho">کھوتَنیٖز</language>
<language type="ki">کِکُیوٗ</language>
<language type="kj">کُوانیاما</language>
<language type="kk">کازَخ</language>
<language type="kl">کَلالِسُت</language>
<language type="km">خَمیر</language>
<language type="kmb">کِمبُندوٗ</language>
<language type="kn">کَنَڑ</language>
<language type="ko">کوریَن</language>
<language type="kok">کونکَنی</language>
<language type="kos">کوسرییَن</language>
<language type="kpe">کَپیلی</language>
<language type="kr">کَنوٗری</language>
<language type="krc">کراچیے بَلکار</language>
<language type="krl">کَریلِیَن</language>
<language type="kru">کُرُکھ</language>
<language type="ks">کٲشُر</language>
<language type="ku">کُردِش</language>
<language type="kum">کُمِک</language>
<language type="kut">کُتینَے</language>
<language type="kv">کومی</language>
<language type="kw">کورنِش</language>
<language type="ky">کِرگِز</language>
<language type="la">لاتیٖنی</language>
<language type="lad">لیڈِنو</language>
<language type="lah">لَہَندا</language>
<language type="lam">لَمبا</language>
<language type="lb">لُکھزیمبورگِش</language>
<language type="lez">لیزگِیَن</language>
<language type="lg">گاندا</language>
<language type="li">لِمبٔرگِش</language>
<language type="ln">لِنگالا</language>
<language type="lo">لاو</language>
<language type="lol">مونٛگو</language>
<language type="loz">لوزی</language>
<language type="lt">لِتھوانِیَن</language>
<language type="lu">لوُبا کَتَنٛگا</language>
<language type="lua">لوٗبا لوٗلُوا</language>
<language type="lui">لویِسینو</language>
<language type="lun">لُندا</language>
<language type="luo">لُوو</language>
<language type="lus">لُسہاے</language>
<language type="lv">لَتوِیَن</language>
<language type="mad">مَدُریٖز</language>
<language type="mag">مَگاے</language>
<language type="mai">میتَھلی</language>
<language type="mak">مَکَسار</language>
<language type="man">مَندِنٛگو</language>
<language type="mas">مَساے</language>
<language type="mdf">موکشا</language>
<language type="mdr">مَندَر</language>
<language type="men">میندیے</language>
<language type="mg">مَلاگَسی</language>
<language type="mga">وَستی ایرِش</language>
<language type="mh">مارشَلیٖز</language>
<language type="mi">ماوری</language>
<language type="mic">مِکمیک</language>
<language type="min">مِنَنٛگکَباو</language>
<language type="mk">میکَڈونیَن</language>
<language type="ml">مٔلیالَم</language>
<language type="mn">مَنٛگولی</language>
<language type="mnc">مانٛچوٗ</language>
<language type="mni">مَنیپوٗری</language>
<language type="moh">موہاک</language>
<language type="mos">موسی</language>
<language type="mr">مَرٲٹھۍ</language>
<language type="ms">مَلَے</language>
<language type="mt">مَلتیٖس</language>
<language type="mul">واریاہ زبان</language>
<language type="mus">کریٖک</language>
<language type="mwl">مِراندیٖز</language>
<language type="mwr">مارواڑی</language>
<language type="my">بٔمیٖز</language>
<language type="myv">ایٚرزِیا</language>
<language type="na">ناورُ</language>
<language type="nap">نیٖپالیٹَن</language>
<language type="nb">ناروییَن بوکمال</language>
<language type="nd">شُمال ڈَبیل</language>
<language type="nds">بوٚنِم جٔرمَن</language>
<language type="ne">نیٚپٲلۍ</language>
<language type="new">نیٚواری</language>
<language type="ng">ڈونٛگا</language>
<language type="nia">نِیاس</language>
<language type="niu">نِیویَن</language>
<language type="nl">ڈَچ</language>
<language type="nl_BE">فلیٚمِش</language>
<language type="nn">ناروییَن نَے نورسک</language>
<language type="no">ناروییَن</language>
<language type="nog">نوگاے</language>
<language type="non">پرون نارسی</language>
<language type="nqo">ایٚن کو</language>
<language type="nr">جنوب ڈیٚبیل</language>
<language type="nso">شمالی ستھو</language>
<language type="nv">نَواجو</language>
<language type="nwc">کلاسِکَل نیواری</language>
<language type="ny">نِیَنجا</language>
<language type="nym">نِیَمویٚزی</language>
<language type="nyn">نِیَنکول</language>
<language type="nyo">نِیورو</language>
<language type="nzi">نَظیٖما</language>
<language type="oc">اوکسیٖٹَن</language>
<language type="oj">اوجِبوا</language>
<language type="om">اوٚرومو</language>
<language type="or">اوٚرِیا</language>
<language type="os">اوٚسیٚٹِک</language>
<language type="osa">اوٚسیج</language>
<language type="ota">اوٹومَن تُرکِش</language>
<language type="pa">پَنجٲبۍ</language>
<language type="pag">پَنٛگاسِنَن</language>
<language type="pal">پَہلَوی</language>
<language type="pam">پَمپَنٛگا</language>
<language type="pap">پَپِیامیٚنٹو</language>
<language type="pau">پَلااُواں</language>
<language type="peo">پرون فارسی</language>
<language type="phn">فونیٖشیَن</language>
<language type="pi">پالی</language>
<language type="pl">پالِش</language>
<language type="pon">پانپیٚیَن</language>
<language type="pro">پرون پروویٚنچَل</language>
<language type="ps">پَشتوٗ</language>
<language type="pt">پُرتَگیٖز</language>
<language type="pt_BR">برازیٖلی پُتَگیٖز</language>
<language type="pt_PT">لِبیریَن پُرتَگیٖز</language>
<language type="qu">کُویشُوا</language>
<language type="raj">راجِستھٲنۍ</language>
<language type="rap">رَپانوی</language>
<language type="rar">رَروٹونٛگَن</language>
<language type="rm">رومانش</language>
<language type="rn">رُندی</language>
<language type="ro">رومٲنی</language>
<language type="ro_MD">مولداوِیَن</language>
<language type="rom">رومَنی</language>
<language type="root">روٗٹ</language>
<language type="ru">روٗسی</language>
<language type="rup">اَرومانی</language>
<language type="rw">کِنیاوِندا</language>
<language type="sa">سَنسکرٕت</language>
<language type="sad">سَندَویے</language>
<language type="sah">یاکُت</language>
<language type="sam">سَمارِتَن اَرامیک</language>
<language type="sas">سَسَک</language>
<language type="sat">سَنتالی</language>
<language type="sc">سراڈیٖنی</language>
<language type="scn">سِچِلِیَن</language>
<language type="sco">سکاٹس</language>
<language type="sd">سِندی</language>
<language type="se">شُمٲلی سَمی</language>
<language type="sel">سیٚلکُپ</language>
<language type="sg">سَنگو</language>
<language type="sga">پرون ایرِش</language>
<language type="sh">سیٚربو کروشِیَن</language>
<language type="shn">شان</language>
<language type="si">سِنہالا</language>
<language type="sid">سِدامو</language>
<language type="sk">سلووَک</language>
<language type="sl">سلووینیَن</language>
<language type="sm">سَمواَن</language>
<language type="sma">جنوٗبی سَمی</language>
<language type="smj">لولیے سَمی</language>
<language type="smn">اِناری سَمی</language>
<language type="sms">سکولٹ سَمی</language>
<language type="sn">شونا</language>
<language type="snk">سونِنکیے</language>
<language type="so">سومٲلی</language>
<language type="sog">سوگڈِیَن</language>
<language type="sq">البانِیَن</language>
<language type="sr">سٔربِیَن</language>
<language type="srn">سرٛانَن ٹونٛگو</language>
<language type="srr">سیٚریر</language>
<language type="ss">سواتی</language>
<language type="st">جنوبی ستھو</language>
<language type="su">سَنڈَنیٖز</language>
<language type="suk">سُکُما</language>
<language type="sus">سُسوٗ</language>
<language type="sux">سُمیریَن</language>
<language type="sv">سویٖڈِش</language>
<language type="sw">سواہِلی</language>
<language type="syr">سیٖریٲیی</language>
<language type="ta">تَمِل</language>
<language type="te">تیلگوٗ</language>
<language type="tem">ٹِمنیے</language>
<language type="ter">ٹیٚریٚنو</language>
<language type="tet">ٹیٹَم</language>
<language type="tg">تاجِک</language>
<language type="th">تھاے</language>
<language type="ti">ٹِگرِنیا</language>
<language type="tig">ٹاےگریے</language>
<language type="tiv">تیٖو</language>
<language type="tk">تُرکمین</language>
<language type="tkl">ٹوکیٖلاو</language>
<language type="tl">تَماشیک</language>
<language type="tlh">کِلِنگون</language>
<language type="tli">ٹِلِنگِت</language>
<language type="tmh">تاماشیک</language>
<language type="tn">سوانا</language>
<language type="to">ٹونٛگا</language>
<language type="tog">نیاسا ٹونٛگا</language>
<language type="tpi">ٹاک پِسِن</language>
<language type="tr">تُرکِش</language>
<language type="ts">ژونٛگا</language>
<language type="tsi">ژھِمشِیان</language>
<language type="tt">تَتار</language>
<language type="tum">تُمبُکا</language>
<language type="tvl">تُوالوٗ</language>
<language type="tw">توی</language>
<language type="ty">تاہیشِیَن</language>
<language type="tyv">تُویٖنیَن</language>
<language type="udm">اُدمُرت</language>
<language type="uga">اُگارتِک</language>
<language type="uk">یوٗکرینیٲیی</language>
<language type="umb">یُمبُندوٗ</language>
<language type="und">اَنزٲنۍ یا نَہ لَگہٕہار زبان</language>
<language type="ur">اُردوٗ</language>
<language type="uz">اُزبیک</language>
<language type="vai">واے</language>
<language type="ve">ویندا</language>
<language type="vi">وِیَتنَمیٖز</language>
<language type="vo">وولَپُک</language>
<language type="vot">ووتِک</language>
<language type="wa">وَلوٗن</language>
<language type="wal">والامو</language>
<language type="war">وَریے</language>
<language type="was">واشو</language>
<language type="wo">وولوف</language>
<language type="xal">کالمِک</language>
<language type="xh">کھوسا</language>
<language type="yao">یاو</language>
<language type="yap">یَپیٖز</language>
<language type="yi">یِدِش</language>
<language type="yo">یورُبا</language>
<language type="za">زُہانٛگ</language>
<language type="zap">زَپوتیٚک</language>
<language type="zen">زیناگا</language>
<language type="zh">چیٖنی</language>
<language type="zh_Hans">سیٚود چیٖنی</language>
<language type="zh_Hant">رِوٲجی چیٖنی</language>
<language type="zu">زُلوٗ</language>
<language type="zun">زوٗنی</language>
<language type="zxx">کانٛہہ تہِ لِسانیاتی مواد نہٕ</language>
<language type="zza">زازا</language>
</languages>
<scripts>
<script type="Arab">اَربی</script>
<script type="Armn">اَرمانیَن</script>
<script type="Avst">اَویستَن</script>
<script type="Bali">بالَنیٖز</script>
<script type="Batk">باتَک</script>
<script type="Beng">بیٚنگٲلۍ</script>
<script type="Blis">بِلِس سِمبلز</script>
<script type="Bopo">بوپوموفو</script>
<script type="Brah">برٛاہمی</script>
<script type="Brai">بریل</script>
<script type="Bugi">بُگِنیٖز</script>
<script type="Buhd">بُہِد</script>
<script type="Cans">یُنِفایِڑ کنیڑِیَن ایٚب آرجِنَل سِلیبِک</script>
<script type="Cari">کاریَن</script>
<script type="Cham">چَم</script>
<script type="Cher">چیٚروکی</script>
<script type="Cirt">کِرتھ</script>
<script type="Copt">کاپٹِک</script>
<script type="Cprt">کِپرایِٹ</script>
<script type="Cyrl">سَیرِلِک</script>
<script type="Cyrs">پرون چٔرچسلیوونِک سَیرِلِک</script>
<script type="Deva">دیوناگری</script>
<script type="Dsrt">ڈیٚسٔریٚٹ</script>
<script type="Egyd">اِجپشِیَن ڈِماٹِک</script>
<script type="Egyh">اِجِپشَن ہَیریٹِک</script>
<script type="Egyp">اِجِپشَن ہَیروگلِپھس</script>
<script type="Ethi">اِتھیوپِک</script>
<script type="Geok">جارجِیَن کھتسوری</script>
<script type="Geor">جارجِیَن</script>
<script type="Glag">گلیگولِٹِک</script>
<script type="Goth">گوتھِک</script>
<script type="Grek">گرَنتھا</script>
<script type="Gujr">گریٖک</script>
<script type="Guru">گُجرٲتۍ</script>
<script type="Hang">ہانٛگُل</script>
<script type="Hani">ہان</script>
<script type="Hano">ہانُنوٗ</script>
<script type="Hans">سِمپلِفایِڑ ہان</script>
<script type="Hant">ٹریڑِشَنَل</script>
<script type="Hebr">ہِبرِو</script>
<script type="Hira">ہیٖراگانا</script>
<script type="Hmng">پَہاو مانٛگ</script>
<script type="Hrkt">کَٹاکانا یا ہِراگانا</script>
<script type="Hung">پرون ہَنگیریَن</script>
<script type="Inds">اِنڈَس</script>
<script type="Ital">اولڈ اِٹیلِک</script>
<script type="Java">جاوَنیٖز</script>
<script type="Jpan">جیٚپَنیٖز</script>
<script type="Kali">کایا لی</script>
<script type="Kana">کَتاکانا</script>
<script type="Khar">خَروشتھی</script>
<script type="Khmr">کھٕمیر</script>
<script type="Knda">کَنَڑا</script>
<script type="Kore">کوریَن</script>
<script type="Lana">لانا</script>
<script type="Laoo">لاو</script>
<script type="Latf">فرٛکتُر لیٹِن</script>
<script type="Latg">گیلِک لیٹَن</script>
<script type="Latn">لیٹِن</script>
<script type="Lepc">لیٚپکا</script>
<script type="Limb">لِمبوٗ</script>
<script type="Lina">لیٖنیَر اے</script>
<script type="Linb">لیٖنیَر بی</script>
<script type="Lyci">لیسِیَن</script>
<script type="Lydi">لیدِیَن</script>
<script type="Mand">مَندییَن</script>
<script type="Mani">مانیشییَن</script>
<script type="Maya">مایَن ہیٖروگلِپھ</script>
<script type="Mero">مِرایٹِک</script>
<script type="Mlym">مَلیالَم</script>
<script type="Mong">مَنٛگولیَن</script>
<script type="Moon">موٗن</script>
<script type="Mtei">میتی مایَک</script>
<script type="Mymr">مَیَنمار</script>
<script type="Nkoo">ایٚن کو</script>
<script type="Ogam">اوگہام</script>
<script type="Olck">اول چِکی</script>
<script type="Orkh">اورکھون</script>
<script type="Orya">اورِیا</script>
<script type="Osma">اوسمانیا</script>
<script type="Perm">اولڈ پٔرمِک</script>
<script type="Phag">پھاگس پا</script>
<script type="Phlv">بوٗک پَہَلوی</script>
<script type="Phnx">پھونِشِیَن</script>
<script type="Plrd">پولاڑ پھونِٹِک</script>
<script type="Rjng">ریجَنٛگ</script>
<script type="Roro">رونٛگو رونٛگو</script>
<script type="Runr">رَنِک</script>
<script type="Samr">سَمارِٹَن</script>
<script type="Sara">سَراتی</script>
<script type="Saur">سوراشٹرا</script>
<script type="Sgnw">اِشارٲتی لِکھٲے</script>
<script type="Shaw">شاویَن</script>
<script type="Sinh">سِنہالا</script>
<script type="Sund">سَنڈَنیٖز</script>
<script type="Sylo">سیلوتی ناگری</script>
<script type="Syrc">سیٖرِیَک</script>
<script type="Syre">ایٚسٹرینجِلو سیٖرِیَک</script>
<script type="Syrj">مغرِبی سیٖریَک</script>
<script type="Syrn">مشرَقی سیٖریَک</script>
<script type="Tagb">تَگبَنوا</script>
<script type="Tale">تَیلیے</script>
<script type="Talu">نوٚو تیلو</script>
<script type="Taml">تَمِل</script>
<script type="Telu">تیلگوٗ</script>
<script type="Teng">تیٚنگوار</script>
<script type="Tfng">تِفِناگ</script>
<script type="Tglg">تَگَلوگ</script>
<script type="Thaa">تھانا</script>
<script type="Thai">تھاے</script>
<script type="Tibt">تِبتی</script>
<script type="Ugar">اُگارِٹِک</script>
<script type="Vaii">واے</script>
<script type="Visp">وِزِبٕل سپیٖچ</script>
<script type="Xpeo">پرون فارسی</script>
<script type="Xsux">سُمیرو اکادیَن کوٗنِفام</script>
<script type="Yiii">یٖی</script>
<script type="Zxxx">لیٚکھنَے</script>
<script type="Zyyy">عام</script>
<script type="Zzzz">اَن زٲنۍ یا نا لَگہٕ ہار رَسمُل خظ</script>
</scripts>
<territories>
<territory type="001">دُنیا</territory>
<territory type="002">اَفریٖکا</territory>
<territory type="003">شُمٲلی اَمریٖکا</territory>
<territory type="005">جَنوٗنی اَمرٖیٖکا</territory>
<territory type="009">اوشَنیا</territory>
<territory type="011">مَغریٖبی اَفریٖکا</territory>
<territory type="013">مرکٔزی اَمریٖکا</territory>
<territory type="014">مَشرِقی اَفریٖکا</territory>
<territory type="015">شُمٲلی اَفریٖکا</territory>
<territory type="017">وسطی اَفریٖکا</territory>
<territory type="018">جنوٗبی اَفریٖکا</territory>
<territory type="019">اَمریٖکَس</territory>
<territory type="021">شُمٲلی اَمریٖکا خٕطہٕ</territory>
<territory type="029">کَرِببیٖن</territory>
<territory type="030">مَشرِقی ایشیا</territory>
<territory type="034">جنوٗبی ایشیا</territory>
<territory type="035">جنوٗبہِ مَشرِقی ایشیا</territory>
<territory type="039">جنوٗبی یوٗرَپ</territory>
<territory type="053">آسٹریلیا تہٕ نِوزِلینٛڑ</territory>
<territory type="054">مٮ۪لَنیٖشِیا</territory>
<territory type="057">مَیکرونَیشِیَن خٕطہٕ</territory>
<territory type="061">پالنیشِیا</territory>
<territory type="142">ایشیا</territory>
<territory type="143">مرکٔزی ایشیا</territory>
<territory type="145">مَغرِبی ایشیا</territory>
<territory type="150">یوٗرَپ</territory>
<territory type="151">مشرِقی یوٗرَپ</territory>
<territory type="154">شُمٲلی یوٗرَپ</territory>
<territory type="155">مغرِبی یوٗرَپ</territory>
<territory type="419">لاطیٖنی اَمریٖکا تہٕ کیرَبیٖن</territory>
<territory type="AD">اٮ۪نڑورا</territory>
<territory type="AE">مُتحدہ عرَب امارات</territory>
<territory type="AF">اَفغانَستان</territory>
<territory type="AG">اٮ۪نٹِگُوا تہٕ باربوڑا</territory>
<territory type="AI">انگوئیلا</territory>
<territory type="AL">اٮ۪لبانِیا</territory>
<territory type="AM">اَرمانِیا</territory>
<territory type="AO">انگولا</territory>
<territory type="AQ">اینٹارٹِکا</territory>
<territory type="AR">أرجَنٹینا</territory>
<territory type="AS">اَمریٖکَن سَموا</territory>
<territory type="AT">آسٹِیا</territory>
<territory type="AU">آسٹریلِیا</territory>
<territory type="AW">اَروٗبا</territory>
<territory type="AX">ایلینٛڑ جٔزیٖرٕ</territory>
<territory type="AZ">آزَرباجان</territory>
<territory type="BA">بوسنِیا تہٕ ہَرزِگووِنا</territory>
<territory type="BB">باربیڈاس</territory>
<territory type="BD">بَنٛگلادیش</territory>
<territory type="BE">بیٛلجِیَم</territory>
<territory type="BF">بُرکِنا فیسو</territory>
<territory type="BG">بَلجیرِیا</territory>
<territory type="BH">بحریٖن</territory>
<territory type="BI">بورَنڈِ</territory>
<territory type="BJ">بِنِن</territory>
<territory type="BL">سینٛٹ بارتَھیلمی</territory>
<territory type="BM">بٔرمیوڈا</territory>
<territory type="BN">بُرنٔے</territory>
<territory type="BO">بولِوِیا</territory>
<territory type="BQ">برطانوی قُطبہِ جَنوٗبی علاقہٕ</territory>
<territory type="BR">برٛازِل</territory>
<territory type="BS">بَہامَس</territory>
<territory type="BT">بوٗٹان</territory>
<territory type="BV">بووَٹ جٔزیٖرٕ</territory>
<territory type="BW">بوتَسوانا</territory>
<territory type="BY">بیلاروٗس</territory>
<territory type="BZ">بیلِج</territory>
<territory type="CA">کینَڑا</territory>
<territory type="CC">کوکَس کیٖلِنٛگ جٔزیٖرٕ</territory>
<territory type="CD">کونٛگو کِنشاسا</territory>
<territory type="CF">مرکٔزی اَفریٖکی جموٗریَت</territory>
<territory type="CG">کونٛگو بٔرٛزاوِلی</territory>
<territory type="CH">سُوِزَرلینٛڑ</territory>
<territory type="CI">اَیوٕری کوسٹ</territory>
<territory type="CK">کُک جٔزیٖرٕ</territory>
<territory type="CL">چِلی</territory>
<territory type="CM">کیٚمِروٗن</territory>
<territory type="CN">چیٖن</territory>
<territory type="CO">کولَمبِیا</territory>
<territory type="CR">کوسٹا رِکا</territory>
<territory type="CU">کیوٗبا</territory>
<territory type="CV">کیپ ؤرڑی</territory>
<territory type="CX">کرِسمَس جٔزیٖرٕ</territory>
<territory type="CY">سایفرٛس</territory>
<territory type="CZ">چیک جَموٗرِیَت</territory>
<territory type="DE">جرمٔنی</territory>
<territory type="DJ">جِبوٗتی</territory>
<territory type="DK">ڈینٛمارٕک</territory>
<territory type="DM">ڈومِنِکا</territory>
<territory type="DO">ڈومِنِکَن جموٗرِیَت</territory>
<territory type="DZ">اٮ۪لجیرِیا</territory>
<territory type="EC">اِکواڑور</territory>
<territory type="EE">ایسٹونِیا</territory>
<territory type="EG">مِسٔر</territory>
<territory type="EH">مشرِقی سَہارا</territory>
<territory type="ER">اِرٕٹِیا</territory>
<territory type="ES">سٕپین</territory>
<territory type="ET">اِتھوپِیا</territory>
<territory type="FI">فِنلینٛڑ</territory>
<territory type="FJ">فِجی</territory>
<territory type="FK">فٕلاکلینٛڑ جٔزیٖرٕ</territory>
<territory type="FR">فرٛانس</territory>
<territory type="GA">گیبان</territory>
<territory type="GB">یُنایٹِڑ کِنٛگڈَم</territory>
<territory type="GD">گرٛنیڑا</territory>
<territory type="GE">جارجِیا</territory>
<territory type="GF">فرٛانسِسی گِانا</territory>
<territory type="GG">گیوَنَرسے</territory>
<territory type="GH">گانا</territory>
<territory type="GI">جِبرالٹَر</territory>
<territory type="GL">گریٖنلینٛڑ</territory>
<territory type="GM">گَمبِیا</territory>
<territory type="GN">گِنی</territory>
<territory type="GP">گَواڑیلوپ</territory>
<territory type="GQ">اِکوِٹورِیَل گِنی</territory>
<territory type="GR">گریٖس</territory>
<territory type="GS">جنوٗبی جارجِیا تہٕ جنوٗبی سینٛڑوٕچ جٔزیٖرٕ</territory>
<territory type="GT">گوتیدالا</territory>
<territory type="GU">گُوام</territory>
<territory type="GW">گیٖنی بِساو</territory>
<territory type="GY">گُیانا</territory>
<territory type="HK">ہانٛگ کانٛگ ایس اے آر چیٖن</territory>
<territory type="HM">ہَرٕڑ جٔزیٖرٕ تہٕ مٮ۪کڈونالڑٕ جٔزیٖرٕ</territory>
<territory type="HN">ہانٛڈوٗرِس</territory>
<territory type="HR">کرٛوشِیا</territory>
<territory type="HT">ہایتی</territory>
<territory type="HU">ہَنٛگری</territory>
<territory type="ID">اِنڑونیشِیا</territory>
<territory type="IE">اَیَرلینٛڑ</territory>
<territory type="IL">اِسرایٖل</territory>
<territory type="IM">آیِل آف میٛن</territory>
<territory type="IN">ہِنٛدوستان</territory>
<territory type="IO">برطانوی بحرِ ہِنٛدۍ علاقہٕ</territory>
<territory type="IQ">ایٖراق</territory>
<territory type="IR">ایٖران</territory>
<territory type="IS">اَیِسلینٛڑ</territory>
<territory type="IT">اِٹلی</territory>
<territory type="JE">جٔرسی</territory>
<territory type="JM">جَمایکا</territory>
<territory type="JP">جاپان</territory>
<territory type="KE">کِنٛیا</territory>
<territory type="KG">کِرگِستان</territory>
<territory type="KH">کَمبوڑِیا</territory>
<territory type="KI">کِرٕباتی</territory>
<territory type="KM">کَمورَس</territory>
<territory type="KN">سینٛٹ کِٹَس تہٕ نیوِس</territory>
<territory type="KP">شُمٲلی کورِیا</territory>
<territory type="KR">جنوٗبی کورِیا</territory>
<territory type="KW">کُویت</territory>
<territory type="KY">کیمَن جٔزیٖرٕ</territory>
<territory type="KZ">کَزاکِستان</territory>
<territory type="LA">لاس</territory>
<territory type="LB">لٮ۪بنان</territory>
<territory type="LC">سینٛٹ لوٗسِیا</territory>
<territory type="LI">لِکٹیٛسٹیٖن</territory>
<territory type="LK">سِریٖلَنٛکا</territory>
<territory type="LR">لایبیرِیا</territory>
<territory type="LS">لیسوتھو</territory>
<territory type="LT">لِتھُوانِیا</territory>
<territory type="LU">لَکسَمبٔرٕگ</territory>
<territory type="LV">لیٛٹوِیا</territory>
<territory type="LY">لِبیا</territory>
<territory type="MA">موروکو</territory>
<territory type="MC">مونیٚکو</territory>
<territory type="MD">مولڑاوِیا</territory>
<territory type="ME">موٹونیٛگِریو</territory>
<territory type="MF">سینٛٹ مارٹِن</territory>
<territory type="MG">میڑاگاسکار</territory>
<territory type="MH">مارشَل جٔزیٖرٕ</territory>
<territory type="MK">مٮ۪سوڑونِیا</territory>
<territory type="ML">مالی</territory>
<territory type="MM">مَیَنما بٔرما</territory>
<territory type="MN">مَنٛگولِیا</territory>
<territory type="MO">مَکاوو ایس اے آر چیٖن</territory>
<territory type="MP">شُمٲلی مارِیانا جٔزیٖرٕ</territory>
<territory type="MQ">مارٹِنِک</territory>
<territory type="MR">مارٕٹانِیا</territory>
<territory type="MS">مانٛٹسیراٹ</territory>
<territory type="MT">مالٹا</territory>
<territory type="MU">مورِشَس</territory>
<territory type="MV">مالدیٖو</territory>
<territory type="MW">ملاوی</territory>
<territory type="MX">مٮ۪کسِکو</territory>
<territory type="MY">مَلیشِیا</territory>
<territory type="MZ">موزَمبِک</territory>
<territory type="NA">نامِبِیا</territory>
<territory type="NC">نِو کیلِڑونِیا</territory>
<territory type="NE">نایجَر</territory>
<territory type="NF">نارفاک جٔزیٖرٕ</territory>
<territory type="NG">نایجیرِیا</territory>
<territory type="NI">ناکاراگُوا</territory>
<territory type="NL">نیٖدَرلینٛڑ</territory>
<territory type="NO">ناروے</territory>
<territory type="NP">نیپال</territory>
<territory type="NR">نارووٗ</territory>
<territory type="NU">نیوٗ</territory>
<territory type="NZ">نیوٗزِلینٛڑ</territory>
<territory type="OM">اومان</territory>
<territory type="PA">پَناما</territory>
<territory type="PE">پیٖروٗ</territory>
<territory type="PF">فرٛانسی پولِنیشِیا</territory>
<territory type="PG">پاپُوا نیوٗ گیٖنی</territory>
<territory type="PH">فِلِپِینس</territory>
<territory type="PK">پاکِستان</territory>
<territory type="PL">پولینٛڑ</territory>
<territory type="PM">سینٛٹ پیٖری تہٕ موکیلِیَن</territory>
<territory type="PN">پِٹکیرٕنۍ جٔزیٖرٕ</territory>
<territory type="PR">پٔرٹو رِکو</territory>
<territory type="PS">فَلَستیٖن</territory>
<territory type="PT">پُرتِگال</territory>
<territory type="PW">پَلاو</territory>
<territory type="PY">پَراگُے</territory>
<territory type="QA">قَطِر</territory>
<territory type="QO">آوُٹلاینِگ اوشینِیا</territory>
<territory type="RE">رِیوٗنِیَن</territory>
<territory type="RO">رومانِیا</territory>
<territory type="RS">سَربِیا</territory>
<territory type="RU">روٗس</territory>
<territory type="RW">روٗوانٛڈا</territory>
<territory type="SA">سوٗدی عربِیہ</territory>
<territory type="SB">سولامان جٔزیٖرٕ</territory>
<territory type="SC">سیشَلِس</territory>
<territory type="SD">سوٗڈان</territory>
<territory type="SE">سُوِڈَن</territory>
<territory type="SG">ٛسِنٛگاپوٗر</territory>
<territory type="SH">سینٛٹ ہٮ۪لِنا</territory>
<territory type="SI">سَلووینِیا</territory>
<territory type="SJ">سَوالبریڑ تہٕ جان ماییڑ</territory>
<territory type="SK">سَلوواکِیا</territory>
<territory type="SL">سیٖرالیوون</territory>
<territory type="SM">سین میرِنو</territory>
<territory type="SN">سینیگَل</territory>
<territory type="SO">سومالِیا</territory>
<territory type="SR">سُرِنام</territory>
<territory type="ST">ساو توم تہٕ پرٛنسِپی</territory>
<territory type="SV">اٮ۪ل سَلواڑور</territory>
<territory type="SY">شام</territory>
<territory type="SZ">سُوزِلینٛڑ</territory>
<territory type="TC">تُرُک تہٕ کیکوس جٔزیٖرٕ</territory>
<territory type="TD">چاڑ</territory>
<territory type="TF">فرٛانسِسی جَنوٗبی عَلاقہٕ</territory>
<territory type="TG">ٹوگو</territory>
<territory type="TH">تھایلینٛڑ</territory>
<territory type="TJ">تاجکِستان</territory>
<territory type="TK">توکیلاو</territory>
<territory type="TL">مَشرِقی تایمور</territory>
<territory type="TM">تُرمِنِستان</territory>
<territory type="TN">ٹونیشِیا</territory>
<territory type="TO">ٹونٛگا</territory>
<territory type="TR">تُرکی</territory>
<territory type="TT">ٹرٛنِنداد تہٕ ٹوبیگو</territory>
<territory type="TV">توٗوالوٗ</territory>
<territory type="TW">تایوان</territory>
<territory type="TZ">تَنجانِیا</territory>
<territory type="UA">یوٗرِکین</territory>
<territory type="UG">یوٗگانٛڑا</territory>
<territory type="UM">یوٗنایٹِڑ سِٹیٹِس ماینَر آوُٹلییِنٛگ جٔزیٖرٕ</territory>
<territory type="US">یوٗنایٹِڑ سِٹیٹِس</territory>
<territory type="UY">یوٗروگے</territory>
<territory type="UZ">اُزبِکِستان</territory>
<territory type="VA">ویٹِکَن سِٹی</territory>
<territory type="VC">سینٛٹ وینسٮ۪ٹ تہٕ گرٛیناڑاینٕز</territory>
<territory type="VE">وینازوٗلا</territory>
<territory type="VG">بَرطانوی ؤرجِن جٔزیٖرٕ</territory>
<territory type="VI">یوٗ ایس ؤرجِن جٔزیٖرٕ</territory>
<territory type="VN">ویٹِنام</territory>
<territory type="VU">وانوٗتوٗ</territory>
<territory type="WF">والِس تہٕ فیوٗچوٗنا</territory>
<territory type="WS">سیمووا</territory>
<territory type="YE">یَمَن</territory>
<territory type="YT">مَییٹ</territory>
<territory type="ZA">جَنوٗبی اَفریٖکا</territory>
<territory type="ZM">جامبِیا</territory>
<territory type="ZW">زِمبابے</territory>
<territory type="ZZ">نامعلوٗم تہٕ نالَگہار عَلاقہٕ</territory>
</territories>
<variants>
<variant type="1901">رٮ۪وٲتی جٔرمَن عِلمہِ ہِجا</variant>
<variant type="1994">مَیعٲری روٗسی عِلمہِ ہِجا</variant>
<variant type="1996">جٔرمَن عِلمہِ ہِجا ۱۹۹۶سُک</variant>
<variant type="1606NICT">بعد وَقت وَسطی فرٛانس پٮ۪ٹھ ۱۶٠۶ تام</variant>
<variant type="AREVELA">مَشرِقی اَمریٖکا</variant>
<variant type="BAKU1926">جٔمع کٔرِتھ تُرکی لاطیٖنی اَچھر</variant>
<variant type="BISKE">سین جارجِیو/بِلا بوٗلۍ</variant>
<variant type="FONIPA">آوازیات</variant>
<variant type="FONUPA">یوٗ پی اے آوازِیات</variant>
<variant type="LIPAW">روٗسی زَبانہِ ہِنٛز لِپوواز بوٗلۍ</variant>
<variant type="MONOTON">اَکٔے لہجہٕ واجٮ۪ن زَبان</variant>
<variant type="NEDIS">نٮ۪ٹِسون بوٗلۍ</variant>
<variant type="NJIVA">نیجِوا بوٗلۍ</variant>
<variant type="OSOJS">اُشیکو/اوسوجین بوٗلۍ</variant>
<variant type="POLYTON">واریاہ لہجہٕ واجٮ۪ن زَبان</variant>
<variant type="POSIX">کَمپیوٗٹَر</variant>
<variant type="REVISED">دُبارٕ دۄہراونہٕ آمُت عِلمہِ ہِجا</variant>
<variant type="ROZAJ">روٗسی</variant>
<variant type="SAAHO">سوہو</variant>
<variant type="SCOTLAND">سُکاٹِش مَیعٲری اَنٛگریٖزۍ</variant>
<variant type="SCOUSE">سِکوس</variant>
<variant type="SOLBA">ثٹولوِزا/سولبِکا بوٗلۍ</variant>
<variant type="TARASK">تاراسکیٖوِکا علمہ ہِجاِ</variant>
</variants>
<keys>
<key type="calendar">کیلنڑر</key>
<key type="currency">ضَرب</key>
</keys>
<types>
<type key="calendar" type="buddhist">بُدَن ہُنٛد کیلنڑَر</type>
<type key="calendar" type="chinese">چیٖنی کیلَنڑَر</type>
<type key="calendar" type="gregorian">گرگوریَن کیلنڑَر</type>
<type key="calendar" type="hebrew">ہِبرِو کیلنڑَر</type>
<type key="calendar" type="islamic">اِسلٲمی کیلنڑَر</type>
<type key="calendar" type="islamic-civil">اِسلٲمی اِجتمٲیی کیلنڑَر</type>
<type key="calendar" type="japanese">جاپٲنۍ کیلنڑَر</type>
<type key="calendar" type="roc">جموٗریٲتی چیٖنی کیلَنڑَر</type>
<type key="collation" type="big5han">رٮ۪وٲتی چیٖنی تِرتیٖب</type>
<type key="collation" type="phonebook">فون بُک تَرتیٖب</type>
<type key="collation" type="pinyin">آسان بَناونہٕ آمُت چیٖنی پیٖنیَن تَرتیٖب</type>
<type key="collation" type="stroke">رٮ۪وٲتی چیٖنی سٹروک تَرتیٖب</type>
<type key="collation" type="traditional">رٮ۪وٲتی تَرتیٖب</type>
</types>
<measurementSystemNames>
<measurementSystemName type="metric">میٖٹرِک</measurementSystemName>
<measurementSystemName type="US">یوٗ ایس</measurementSystemName>
</measurementSystemNames>
<codePatterns>
<codePattern type="language">زَبان: {0}</codePattern>
<codePattern type="script">رَسم الخط: {0}</codePattern>
<codePattern type="territory">علاقہٕ: {0}</codePattern>
</codePatterns>
</localeDisplayNames>
<layout>
<orientation>
<characterOrder>right-to-left</characterOrder>
</orientation>
</layout>
<characters>
<exemplarCharacters>[\u06EA\u06ED \u064E \u064F \u0650 \u0654 \u0655 \u0656 \u0657 \u065A \u065B ء آ أ ٲ ؤ ا ٮ ب پ ت ث ٹ ج چ ح خ د ذ ڈ ر ز ڑ ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ں ھ ہ و ۄ ی ۍ ے]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[\u200E\u200F]</exemplarCharacters>
<exemplarCharacters type="numbers">[\u200E \- , . % ‰ + 0 1 2 3 4 5 6 7 8 9]</exemplarCharacters>
</characters>
<dates>
<calendars>
<calendar type="generic">
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, MMMM d, Gy</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>MMMM d, Gy</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>MMM d, Gy</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>M/d/Gy</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<dateTimeFormatLength type="full">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="long">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="medium">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="short">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<availableFormats>
<dateFormatItem id="d">d</dateFormatItem>
<dateFormatItem id="Gy">Gy</dateFormatItem>
<dateFormatItem id="GyMMM">MMM Gy</dateFormatItem>
<dateFormatItem id="GyMMMd">MMM d, Gy</dateFormatItem>
<dateFormatItem id="GyMMMEd">EEE, MMM d, Gy</dateFormatItem>
<dateFormatItem id="hm">h:mm a</dateFormatItem>
<dateFormatItem id="Hm">HH:mm</dateFormatItem>
<dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
<dateFormatItem id="M">L</dateFormatItem>
<dateFormatItem id="Md">M/d</dateFormatItem>
<dateFormatItem id="MEd">E, M/d</dateFormatItem>
<dateFormatItem id="MMM">LLL</dateFormatItem>
<dateFormatItem id="MMMd">d-MMM</dateFormatItem>
<dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
<dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
<dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
<dateFormatItem id="ms">mm:ss</dateFormatItem>
<dateFormatItem id="y">Gy</dateFormatItem>
<dateFormatItem id="yyyy">Gy</dateFormatItem>
<dateFormatItem id="yyyyM">M/Gy</dateFormatItem>
<dateFormatItem id="yyyyMEd">EEE, M/d/Gy</dateFormatItem>
<dateFormatItem id="yyyyMMM">MMM Gy</dateFormatItem>
<dateFormatItem id="yyyyMMMd">MMM d, Gy</dateFormatItem>
<dateFormatItem id="yyyyMMMEd">EEE, MMM d, Gy</dateFormatItem>
<dateFormatItem id="yyyyMMMM">MMMM Gy</dateFormatItem>
<dateFormatItem id="yyyyQQQ">QQQ Gy</dateFormatItem>
<dateFormatItem id="yyyyQQQQ">QQQQ Gy</dateFormatItem>
</availableFormats>
</dateTimeFormats>
</calendar>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="wide">
<month type="1">جنؤری</month>
<month type="2">فرؤری</month>
<month type="3">مارٕچ</month>
<month type="4">اپریل</month>
<month type="5">میٔ</month>
<month type="6">جوٗن</month>
<month type="7">جوٗلایی</month>
<month type="8">اگست</month>
<month type="9">ستمبر</month>
<month type="10">اکتوٗبر</month>
<month type="11">نومبر</month>
<month type="12">دسمبر</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="narrow">
<month type="1">ج</month>
<month type="2">ف</month>
<month type="3">م</month>
<month type="4">ا</month>
<month type="5">م</month>
<month type="6">ج</month>
<month type="7">ج</month>
<month type="8">ا</month>
<month type="9">س</month>
<month type="10">س</month>
<month type="11">ا</month>
<month type="12">ن</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="abbreviated">
<day type="sun">آتھوار</day>
<day type="mon">ژٔنٛدٕروار</day>
<day type="tue">بوٚموار</day>
<day type="wed">بودوار</day>
<day type="thu">برٛٮ۪سوار</day>
<day type="fri">جُمہ</day>
<day type="sat">بٹوار</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">اَتھوار</day>
<day type="mon">ژٔنٛدرٕروار</day>
<day type="tue">بوٚموار</day>
<day type="wed">بودوار</day>
<day type="thu">برٛٮ۪سوار</day>
<day type="fri">جُمہ</day>
<day type="sat">بٹوار</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="narrow">
<day type="sun">ا</day>
<day type="mon">ژ</day>
<day type="tue">ب</day>
<day type="wed">ب</day>
<day type="thu">ب</day>
<day type="fri">ج</day>
<day type="sat">ب</day>
</dayWidth>
</dayContext>
</days>
<quarters>
<quarterContext type="format">
<quarterWidth type="abbreviated">
<quarter type="1">ژۄباگ</quarter>
<quarter type="2">دوٚیِم ژۄباگ</quarter>
<quarter type="3">ترٛیِم ژۄباگ</quarter>
<quarter type="4">ژوٗرِم ژۄباگ</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">گۄڑنیُک ژۄباگ</quarter>
<quarter type="2">دوٚیِم ژۄباگ</quarter>
<quarter type="3">ترٛیِم ژۄباگ</quarter>
<quarter type="4">ژوٗرِم ژۄباگ</quarter>
</quarterWidth>
</quarterContext>
</quarters>
<eras>
<eraNames>
<era type="0">قبٕل مسیٖح</era>
<era type="1">عیٖسوی سنہٕ</era>
</eraNames>
<eraAbbr>
<era type="0">بی سی</era>
<era type="1">اے ڈی</era>
</eraAbbr>
</eras>
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, MMMM d, y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>MMMM d, y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>MMM d, y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>M/d/yy</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>h:mm:ss a zzzz</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="long">
<timeFormat>
<pattern>h:mm:ss a z</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>h:mm:ss a</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="short">
<timeFormat>
<pattern>h:mm a</pattern>
</timeFormat>
</timeFormatLength>
</timeFormats>
<dateTimeFormats>
<dateTimeFormatLength type="full">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="long">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="medium">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="short">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<availableFormats>
<dateFormatItem id="d">d</dateFormatItem>
<dateFormatItem id="Gy">Gy</dateFormatItem>
<dateFormatItem id="GyMMM">MMM Gy</dateFormatItem>
<dateFormatItem id="GyMMMd">MMM d, Gy</dateFormatItem>
<dateFormatItem id="GyMMMEd">EEE, MMM d, Gy</dateFormatItem>
<dateFormatItem id="hm">h:mm a</dateFormatItem>
<dateFormatItem id="Hm">HH:mm</dateFormatItem>
<dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
<dateFormatItem id="M">L</dateFormatItem>
<dateFormatItem id="Md">M/d</dateFormatItem>
<dateFormatItem id="MEd">E, M/d</dateFormatItem>
<dateFormatItem id="MMM">LLL</dateFormatItem>
<dateFormatItem id="MMMd">d-MMM</dateFormatItem>
<dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
<dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
<dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
<dateFormatItem id="ms">mm:ss</dateFormatItem>
<dateFormatItem id="y">y</dateFormatItem>
<dateFormatItem id="yM">M/y</dateFormatItem>
<dateFormatItem id="yMEd">EEE, M/d/y</dateFormatItem>
<dateFormatItem id="yMMM">MMM y</dateFormatItem>
<dateFormatItem id="yMMMEd">EEE, MMM d, y</dateFormatItem>
<dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
<dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
<dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
</availableFormats>
</dateTimeFormats>
</calendar>
<calendar type="indian">
<months>
<monthContext type="format">
<monthWidth type="wide">
<month type="1">محرم</month>
<month type="2">صفر</month>
<month type="3">ربیٖع الاول</month>
<month type="4">ربیٖع الثانی</month>
<month type="5">جمادی الاول</month>
<month type="6">جمادی الثانی</month>
<month type="7">رجب</month>
<month type="8">شعبان</month>
<month type="9">رمضان</month>
<month type="10">شوال</month>
<month type="11">ذِی القد</month>
<month type="12">ذِی الحج</month>
</monthWidth>
</monthContext>
</months>
</calendar>
</calendars>
<fields>
<field type="era">
<displayName>دور</displayName>
</field>
<field type="year">
<displayName>ؤری</displayName>
</field>
<field type="month">
<displayName>رٮ۪تھ</displayName>
</field>
<field type="week">
<displayName>ہفتہٕ</displayName>
</field>
<field type="day">
<displayName>دۄہ</displayName>
<relative type="-1">راتھ</relative>
<relative type="0">اَز</relative>
<relative type="1">پگاہ</relative>
</field>
<field type="weekday">
<displayName>ہفتُک دۄہ</displayName>
</field>
<field type="dayperiod">
<displayName>صبح/رات</displayName>
</field>
<field type="hour">
<displayName>گٲنٛٹہٕ</displayName>
</field>
<field type="minute">
<displayName>مِنَٹ</displayName>
</field>
<field type="second">
<displayName>سٮ۪کَنڑ</displayName>
</field>
<field type="zone">
<displayName>زون</displayName>
</field>
</fields>
<timeZoneNames>
<hourFormat>+HH:mm;-HH:mm</hourFormat>
<gmtFormat>GMT{0}</gmtFormat>
<zone type="Pacific/Honolulu">
<exemplarCity>ہونولو لو</exemplarCity>
</zone>
<zone type="Etc/Unknown">
<exemplarCity>غٲر زان</exemplarCity>
</zone>
<zone type="Europe/Andorra">
<exemplarCity>اَنٛڑورا</exemplarCity>
</zone>
<zone type="Asia/Dubai">
<exemplarCity>دُبَے</exemplarCity>
</zone>
<zone type="Asia/Kabul">
<exemplarCity>قابُل</exemplarCity>
</zone>
<zone type="America/Antigua">
<exemplarCity>اٮ۪نٹِگُوا</exemplarCity>
</zone>
<zone type="America/Anguilla">
<exemplarCity>اٮ۪نگِولا</exemplarCity>
</zone>
<zone type="Europe/Tirane">
<exemplarCity>ٹِرین</exemplarCity>
</zone>
<zone type="Asia/Yerevan">
<exemplarCity>یےریٚوَن</exemplarCity>
</zone>
<zone type="Africa/Luanda">
<exemplarCity>لُعٮ۪نٛڑا</exemplarCity>
</zone>
<zone type="Antarctica/Rothera">
<exemplarCity>روتھیرا</exemplarCity>
</zone>
<zone type="Antarctica/Palmer">
<exemplarCity>پامَر</exemplarCity>
</zone>
<zone type="Antarctica/Syowa">
<exemplarCity>سیٚووا</exemplarCity>
</zone>
<zone type="Antarctica/Mawson">
<exemplarCity>ماسَن</exemplarCity>
</zone>
<zone type="Antarctica/Davis">
<exemplarCity>ڈیوِس</exemplarCity>
</zone>
<zone type="Antarctica/Vostok">
<exemplarCity>ووستوک</exemplarCity>
</zone>
<zone type="Antarctica/Casey">
<exemplarCity>کیسی</exemplarCity>
</zone>
<zone type="Antarctica/DumontDUrville">
<exemplarCity>ڈُمونٛٹ ڈ اَروِل</exemplarCity>
</zone>
<zone type="Antarctica/McMurdo">
<exemplarCity>مٮ۪ک مٲڑو</exemplarCity>
</zone>
<zone type="America/Argentina/Rio_Gallegos">
<exemplarCity>رِیو گالیگوس</exemplarCity>
</zone>
<zone type="America/Mendoza">
<exemplarCity>مٮ۪نڑوزا</exemplarCity>
</zone>
<zone type="America/Argentina/San_Juan">
<exemplarCity>سین جُواں</exemplarCity>
</zone>
<zone type="America/Argentina/Ushuaia">
<exemplarCity>اُشُوٗاییا</exemplarCity>
</zone>
<zone type="America/Argentina/La_Rioja">
<exemplarCity>لا رِیوجا</exemplarCity>
</zone>
<zone type="America/Argentina/San_Luis">
<exemplarCity>سین لوٗیِس</exemplarCity>
</zone>
<zone type="America/Catamarca">
<exemplarCity>کیٹامارکا</exemplarCity>
</zone>
<zone type="America/Jujuy">
<exemplarCity>جُجویے</exemplarCity>
</zone>
<zone type="America/Argentina/Tucuman">
<exemplarCity>ٹوکوٗمَن</exemplarCity>
</zone>
<zone type="America/Cordoba">
<exemplarCity>کورڑوبا</exemplarCity>
</zone>
<zone type="America/Buenos_Aires">
<exemplarCity>بیوٗنَس آیرَس</exemplarCity>
</zone>
<zone type="Pacific/Pago_Pago">
<exemplarCity>پیگو پیگو</exemplarCity>
</zone>
<zone type="Europe/Vienna">
<exemplarCity>وِیَننا</exemplarCity>
</zone>
<zone type="Australia/Perth">
<exemplarCity>پٔرتھ</exemplarCity>
</zone>
<zone type="Australia/Eucla">
<exemplarCity>یوٗکلا</exemplarCity>
</zone>
<zone type="Australia/Darwin">
<exemplarCity>ڈاروِن</exemplarCity>
</zone>
<zone type="Australia/Adelaide">
<exemplarCity>اٮ۪ڑِلیڑ</exemplarCity>
</zone>
<zone type="Australia/Broken_Hill">
<exemplarCity>برٛوکٕن ہِل</exemplarCity>
</zone>
<zone type="Australia/Currie">
<exemplarCity>کیوٗری</exemplarCity>
</zone>
<zone type="Australia/Melbourne">
<exemplarCity>مٮ۪لبعارن</exemplarCity>
</zone>
<zone type="Australia/Hobart">
<exemplarCity>حۄبٲٹ</exemplarCity>
</zone>
<zone type="Australia/Lindeman">
<exemplarCity>لِنڑیمان</exemplarCity>
</zone>
<zone type="Australia/Sydney">
<exemplarCity>سِڑنی</exemplarCity>
</zone>
<zone type="Australia/Brisbane">
<exemplarCity>برٛسبین</exemplarCity>
</zone>
<zone type="Australia/Lord_Howe">
<exemplarCity>لعاڑ ہووے</exemplarCity>
</zone>
<zone type="America/Aruba">
<exemplarCity>اَروٗبا</exemplarCity>
</zone>
<zone type="Asia/Baku">
<exemplarCity>باقوٗ</exemplarCity>
</zone>
<zone type="America/Barbados">
<exemplarCity>بَرباڑوس</exemplarCity>
</zone>
<zone type="Asia/Dhaka">
<exemplarCity>ڈھاکا</exemplarCity>
</zone>
<zone type="Europe/Brussels">
<exemplarCity>برٛسٕلس</exemplarCity>
</zone>
<zone type="Africa/Ouagadougou">
<exemplarCity>اوآگدوگو</exemplarCity>
</zone>
<zone type="Europe/Sofia">
<exemplarCity>سوفِیا</exemplarCity>
</zone>
<zone type="Asia/Bahrain">
<exemplarCity>بٮ۪ہریٖن</exemplarCity>
</zone>
<zone type="Africa/Bujumbura">
<exemplarCity>بُجُمبُرا</exemplarCity>
</zone>
<zone type="Africa/Porto-Novo">
<exemplarCity>پوٹو نووو</exemplarCity>
</zone>
<zone type="Atlantic/Bermuda">
<exemplarCity>برموٗڑا</exemplarCity>
</zone>
<zone type="Asia/Brunei">
<exemplarCity>برٛوٗنَے</exemplarCity>
</zone>
<zone type="America/La_Paz">
<exemplarCity>لا پاز</exemplarCity>
</zone>
<zone type="America/Eirunepe">
<exemplarCity>ایٖروٗنیپ</exemplarCity>
</zone>
<zone type="America/Rio_Branco">
<exemplarCity>رِیو برٛانٛکو</exemplarCity>
</zone>
<zone type="America/Porto_Velho">
<exemplarCity>پوٹو وٮ۪لہو</exemplarCity>
</zone>
<zone type="America/Boa_Vista">
<exemplarCity>بوآ وِسٹا</exemplarCity>
</zone>
<zone type="America/Manaus">
<exemplarCity>مَنوس</exemplarCity>
</zone>
<zone type="America/Cuiaba">
<exemplarCity>کوٗیابا</exemplarCity>
</zone>
<zone type="America/Campo_Grande">
<exemplarCity>کٮ۪مپو گرینٛڑ</exemplarCity>
</zone>
<zone type="America/Belem">
<exemplarCity>بٮ۪لٮ۪م</exemplarCity>
</zone>
<zone type="America/Araguaina">
<exemplarCity>اٮ۪ریگُوینا</exemplarCity>
</zone>
<zone type="America/Sao_Paulo">
<exemplarCity>ساو پعالو</exemplarCity>
</zone>
<zone type="America/Bahia">
<exemplarCity>بَہِیا</exemplarCity>
</zone>
<zone type="America/Fortaleza">
<exemplarCity>فورٹیلیزا</exemplarCity>
</zone>
<zone type="America/Maceio">
<exemplarCity>میسِیوو</exemplarCity>
</zone>
<zone type="America/Recife">
<exemplarCity>رٮ۪چیٖف</exemplarCity>
</zone>
<zone type="America/Noronha">
<exemplarCity>نورونٛہا</exemplarCity>
</zone>
<zone type="America/Nassau">
<exemplarCity>نساؤں</exemplarCity>
</zone>
<zone type="Asia/Thimphu">
<exemplarCity>تھِمپوٗ</exemplarCity>
</zone>
<zone type="Africa/Gaborone">
<exemplarCity>گٮ۪بورون</exemplarCity>
</zone>
<zone type="Europe/Minsk">
<exemplarCity>مِنٛسک</exemplarCity>
</zone>
<zone type="America/Belize">
<exemplarCity>بٮ۪لیٖز</exemplarCity>
</zone>
<zone type="America/Dawson">
<exemplarCity>ڑاسَن</exemplarCity>
</zone>
<zone type="America/Whitehorse">
<exemplarCity>وایِٹ ہارٕس</exemplarCity>
</zone>
<zone type="America/Inuvik">
<exemplarCity>اِنوٗوِک</exemplarCity>
</zone>
<zone type="America/Vancouver">
<exemplarCity>وٮ۪نٛکووَر</exemplarCity>
</zone>
<zone type="America/Dawson_Creek">
<exemplarCity>ڑاسَن کرٛیٖک</exemplarCity>
</zone>
<zone type="America/Yellowknife">
<exemplarCity>یٮ۪لو نایِف</exemplarCity>
</zone>
<zone type="America/Edmonton">
<exemplarCity>اٮ۪ڑمَنٹَن</exemplarCity>
</zone>
<zone type="America/Swift_Current">
<exemplarCity>سٕوِفٹ کَرَنٛٹ</exemplarCity>
</zone>
<zone type="America/Cambridge_Bay">
<exemplarCity>کیمبرِج خلیٖج</exemplarCity>
</zone>
<zone type="America/Regina">
<exemplarCity>رٮ۪جیٖنا</exemplarCity>
</zone>
<zone type="America/Winnipeg">
<exemplarCity>وِنِپٮ۪گ</exemplarCity>
</zone>
<zone type="America/Resolute">
<exemplarCity>رِسولیوٗٹ</exemplarCity>
</zone>
<zone type="America/Rainy_River">
<exemplarCity>رینی رِوَر</exemplarCity>
</zone>
<zone type="America/Rankin_Inlet">
<exemplarCity>رینٛکِن اِنلٮ۪ٹ</exemplarCity>
</zone>
<zone type="America/Coral_Harbour">
<exemplarCity>کورَل بٔنٛدٕرگاہ</exemplarCity>
</zone>
<zone type="America/Thunder_Bay">
<exemplarCity>تھَنڑَر خلیٖج</exemplarCity>
</zone>
<zone type="America/Nipigon">
<exemplarCity>نِپِگَن</exemplarCity>
</zone>
<zone type="America/Toronto">
<exemplarCity>ٹورونٛٹو</exemplarCity>
</zone>
<zone type="America/Iqaluit">
<exemplarCity>اِقالیوٗیِت</exemplarCity>
</zone>
<zone type="America/Pangnirtung">
<exemplarCity>پَنٛگنِرٹَنٛگ</exemplarCity>
</zone>
<zone type="America/Moncton">
<exemplarCity>مونٛکٹٕن</exemplarCity>
</zone>
<zone type="America/Halifax">
<exemplarCity>حیلِفٮ۪کس</exemplarCity>
</zone>
<zone type="America/Goose_Bay">
<exemplarCity>گوٗس خلیٖج</exemplarCity>
</zone>
<zone type="America/Glace_Bay">
<exemplarCity>گلیس خلیٖج</exemplarCity>
</zone>
<zone type="America/Blanc-Sablon">
<exemplarCity>بلانٛک سٮ۪بلَن</exemplarCity>
</zone>
<zone type="America/St_Johns">
<exemplarCity>سٮ۪نٛٹ جونس</exemplarCity>
</zone>
<zone type="Indian/Cocos">
<exemplarCity>کوکوس</exemplarCity>
</zone>
<zone type="Africa/Kinshasa">
<exemplarCity>کِنشاسا</exemplarCity>
</zone>
<zone type="Africa/Lubumbashi">
<exemplarCity>لُبُمباشی</exemplarCity>
</zone>
<zone type="Africa/Bangui">
<exemplarCity>بٮ۪نٛگوٗیی</exemplarCity>
</zone>
<zone type="Africa/Brazzaville">
<exemplarCity>برٛازاوِل</exemplarCity>
</zone>
<zone type="Europe/Zurich">
<exemplarCity>زیوٗرِک</exemplarCity>
</zone>
<zone type="Africa/Abidjan">
<exemplarCity>عابِدجان</exemplarCity>
</zone>
<zone type="Pacific/Rarotonga">
<exemplarCity>راروٹونٛگا</exemplarCity>
</zone>
<zone type="Pacific/Easter">
<exemplarCity>ایٖسٹَر</exemplarCity>
</zone>
<zone type="America/Santiago">
<exemplarCity>سینٹِعٮ۪گو</exemplarCity>
</zone>
<zone type="Africa/Douala">
<exemplarCity>دوعالا</exemplarCity>
</zone>
<zone type="Asia/Urumqi">
<exemplarCity>اُرَمچی</exemplarCity>
</zone>
<zone type="America/Bogota">
<exemplarCity>بوگوٹا</exemplarCity>
</zone>
<zone type="America/Costa_Rica">
<exemplarCity>کوسٹا ریٖکا</exemplarCity>
</zone>
<zone type="America/Havana">
<exemplarCity>حوانا</exemplarCity>
</zone>
<zone type="Atlantic/Cape_Verde">
<exemplarCity>کیپ ؤرڑے</exemplarCity>
</zone>
<zone type="America/Curacao">
<exemplarCity>کیوٗراکااو</exemplarCity>
</zone>
<zone type="Indian/Christmas">
<exemplarCity>کرِسمَس</exemplarCity>
</zone>
<zone type="Asia/Nicosia">
<exemplarCity>نِکوسِیا</exemplarCity>
</zone>
<zone type="Europe/Berlin">
<exemplarCity>بٔرلِن</exemplarCity>
</zone>
<zone type="Africa/Djibouti">
<exemplarCity>ڑِزِبوٹی</exemplarCity>
</zone>
<zone type="Europe/Copenhagen">
<exemplarCity>کوپَنہیگَن</exemplarCity>
</zone>
<zone type="America/Dominica">
<exemplarCity>ڈومِنِکا</exemplarCity>
</zone>
<zone type="America/Santo_Domingo">
<exemplarCity>سٮ۪نٹو ڑومِنگو</exemplarCity>
</zone>
<zone type="Africa/Algiers">
<exemplarCity>اَلجیٖرِیا</exemplarCity>
</zone>
<zone type="Pacific/Galapagos">
<exemplarCity>گٮ۪لَپگوس</exemplarCity>
</zone>
<zone type="America/Guayaquil">
<exemplarCity>گوایاکِوَل</exemplarCity>
</zone>
<zone type="Europe/Tallinn">
<exemplarCity>ٹٮ۪لِن</exemplarCity>
</zone>
<zone type="Africa/Cairo">
<exemplarCity>کَیرو</exemplarCity>
</zone>
<zone type="Africa/Asmera">
<exemplarCity>اَسمیرا</exemplarCity>
</zone>
<zone type="Atlantic/Canary">
<exemplarCity>کٮ۪نَری</exemplarCity>
</zone>
<zone type="Africa/Ceuta">
<exemplarCity>کیوٗٹا</exemplarCity>
</zone>
<zone type="Europe/Madrid">
<exemplarCity>میڑرِڑ</exemplarCity>
</zone>
<zone type="Europe/Helsinki">
<exemplarCity>حٮ۪لسِنٛکی</exemplarCity>
</zone>
<zone type="Pacific/Fiji">
<exemplarCity>فِجی</exemplarCity>
</zone>
<zone type="Atlantic/Stanley">
<exemplarCity>سٹینلی</exemplarCity>
</zone>
<zone type="Pacific/Truk">
<exemplarCity>ٹرٛک</exemplarCity>
</zone>
<zone type="Pacific/Ponape">
<exemplarCity>پوناپے</exemplarCity>
</zone>
<zone type="Pacific/Kosrae">
<exemplarCity>کوسراے</exemplarCity>
</zone>
<zone type="Atlantic/Faeroe">
<exemplarCity>فٮ۪رو</exemplarCity>
</zone>
<zone type="Europe/Paris">
<exemplarCity>پیرِس</exemplarCity>
</zone>
<zone type="Africa/Libreville">
<exemplarCity>لِبَروِل</exemplarCity>
</zone>
<zone type="Europe/London">
<long>
<daylight>برطٲنوی سَمَر ٹایِم</daylight>
</long>
<exemplarCity>لَنٛدَن</exemplarCity>
</zone>
<zone type="America/Grenada">
<exemplarCity>گرٛیناڑا</exemplarCity>
</zone>
<zone type="Asia/Tbilisi">
<exemplarCity>بِلِسی</exemplarCity>
</zone>
<zone type="America/Cayenne">
<exemplarCity>کَیین</exemplarCity>
</zone>
<zone type="Africa/Accra">
<exemplarCity>اٮ۪کرا</exemplarCity>
</zone>
<zone type="Europe/Gibraltar">
<exemplarCity>گِبرالٹَر</exemplarCity>
</zone>
<zone type="America/Thule">
<exemplarCity>تھیوٗلے</exemplarCity>
</zone>
<zone type="America/Godthab">
<exemplarCity>گعاڑتھیب</exemplarCity>
</zone>
<zone type="America/Scoresbysund">
<exemplarCity>سکورٕسباےسَنٛڑ</exemplarCity>
</zone>
<zone type="America/Danmarkshavn">
<exemplarCity>ڑٮ۪نمارکشَون</exemplarCity>
</zone>
<zone type="Africa/Banjul">
<exemplarCity>بَنجوٗل</exemplarCity>
</zone>
<zone type="Africa/Conakry">
<exemplarCity>کوناکرٛی</exemplarCity>
</zone>
<zone type="America/Guadeloupe">
<exemplarCity>گوڑلوپ</exemplarCity>
</zone>
<zone type="Africa/Malabo">
<exemplarCity>مالابو</exemplarCity>
</zone>
<zone type="Europe/Athens">
<exemplarCity>اٮ۪تھٕنس</exemplarCity>
</zone>
<zone type="Atlantic/South_Georgia">
<exemplarCity>ساوتھ جورجِیا</exemplarCity>
</zone>
<zone type="America/Guatemala">
<exemplarCity>گواٹیمالا</exemplarCity>
</zone>
<zone type="Pacific/Guam">
<exemplarCity>گوام</exemplarCity>
</zone>
<zone type="Africa/Bissau">
<exemplarCity>بِساؤں</exemplarCity>
</zone>
<zone type="America/Guyana">
<exemplarCity>گُیانا</exemplarCity>
</zone>
<zone type="Asia/Hong_Kong">
<exemplarCity>حانٛگ کانٛگ</exemplarCity>
</zone>
<zone type="America/Port-au-Prince">
<exemplarCity>پوٹ آؤں پرِنٛس</exemplarCity>
</zone>
<zone type="Europe/Budapest">
<exemplarCity>بُڑاپیسٹ</exemplarCity>
</zone>
<zone type="Asia/Jakarta">
<exemplarCity>جکارتا</exemplarCity>
</zone>
<zone type="Asia/Pontianak">
<exemplarCity>پونٛتِعانٛک</exemplarCity>
</zone>
<zone type="Asia/Makassar">
<exemplarCity>مَکَسَر</exemplarCity>
</zone>
<zone type="Asia/Jayapura">
<exemplarCity>جَیاپوٗرا</exemplarCity>
</zone>
<zone type="Europe/Dublin">
<long>
<daylight>اَیرِش سَمَر ٹایِم</daylight>
</long>
<exemplarCity>ڈَبلِن</exemplarCity>
</zone>
<zone type="Asia/Jerusalem">
<exemplarCity>یٮ۪روٗسَلَم</exemplarCity>
</zone>
<zone type="Indian/Chagos">
<exemplarCity>چاگوس</exemplarCity>
</zone>
<zone type="Asia/Baghdad">
<exemplarCity>بغداد</exemplarCity>
</zone>
<zone type="Asia/Tehran">
<exemplarCity>تٮ۪ہران</exemplarCity>
</zone>
<zone type="Atlantic/Reykjavik">
<exemplarCity>رٮ۪کیاوِک</exemplarCity>
</zone>
<zone type="Europe/Rome">
<exemplarCity>روم</exemplarCity>
</zone>
<zone type="America/Jamaica">
<exemplarCity>جَمَیکا</exemplarCity>
</zone>
<zone type="Asia/Amman">
<exemplarCity>اَمان</exemplarCity>
</zone>
<zone type="Asia/Tokyo">
<exemplarCity>ٹوکیو</exemplarCity>
</zone>
<zone type="Africa/Nairobi">
<exemplarCity>نیروبی</exemplarCity>
</zone>
<zone type="Asia/Bishkek">
<exemplarCity>بِشکیک</exemplarCity>
</zone>
<zone type="Asia/Phnom_Penh">
<exemplarCity>نوم پٮ۪نٛہہ</exemplarCity>
</zone>
<zone type="Pacific/Enderbury">
<exemplarCity>اٮ۪نٛڑربیری</exemplarCity>
</zone>
<zone type="Pacific/Kiritimati">
<exemplarCity>کِرِتِماتی</exemplarCity>
</zone>
<zone type="Pacific/Tarawa">
<exemplarCity>ٹَراوا</exemplarCity>
</zone>
<zone type="Indian/Comoro">
<exemplarCity>کومورو</exemplarCity>
</zone>
<zone type="America/St_Kitts">
<exemplarCity>سینٛٹ کِٹس</exemplarCity>
</zone>
<zone type="Asia/Pyongyang">
<exemplarCity>پیونٛگیانٛگ</exemplarCity>
</zone>
<zone type="Asia/Seoul">
<exemplarCity>سول</exemplarCity>
</zone>
<zone type="Asia/Kuwait">
<exemplarCity>کُویت</exemplarCity>
</zone>
<zone type="America/Cayman">
<exemplarCity>کیمَن</exemplarCity>
</zone>
<zone type="Asia/Aqtau">
<exemplarCity>اَکتاؤں</exemplarCity>
</zone>
<zone type="Asia/Oral">
<exemplarCity>اورَل</exemplarCity>
</zone>
<zone type="Asia/Aqtobe">
<exemplarCity>اَقٹوب</exemplarCity>
</zone>
<zone type="Asia/Qyzylorda">
<exemplarCity>قٮ۪زٮ۪لوڑا</exemplarCity>
</zone>
<zone type="Asia/Almaty">
<exemplarCity>اَلماٹی</exemplarCity>
</zone>
<zone type="Asia/Vientiane">
<exemplarCity>وِیَنتِیین</exemplarCity>
</zone>
<zone type="Asia/Beirut">
<exemplarCity>بیرُت</exemplarCity>
</zone>
<zone type="America/St_Lucia">
<exemplarCity>سٮ۪نٛٹ لوٗسِیا</exemplarCity>
</zone>
<zone type="Europe/Vaduz">
<exemplarCity>وادُز</exemplarCity>
</zone>
<zone type="Asia/Colombo">
<exemplarCity>کولَمبو</exemplarCity>
</zone>
<zone type="Africa/Monrovia">
<exemplarCity>مونرووِیا</exemplarCity>
</zone>
<zone type="Africa/Maseru">
<exemplarCity>مَسیروٗ</exemplarCity>
</zone>
<zone type="Europe/Vilnius">
<exemplarCity>وِلِنِیَس</exemplarCity>
</zone>
<zone type="Europe/Luxembourg">
<exemplarCity>لَکزٕمبٔرگ</exemplarCity>
</zone>
<zone type="Europe/Riga">
<exemplarCity>رِگا</exemplarCity>
</zone>
<zone type="Africa/Tripoli">
<exemplarCity>ترٛپولی</exemplarCity>
</zone>
<zone type="Africa/Casablanca">
<exemplarCity>کٮ۪سابلٮ۪نٛکا</exemplarCity>
</zone>
<zone type="Europe/Monaco">
<exemplarCity>موناکو</exemplarCity>
</zone>
<zone type="Europe/Chisinau">
<exemplarCity>چِسیٖنو</exemplarCity>
</zone>
<zone type="Indian/Antananarivo">
<exemplarCity>اٮ۪نٛٹنانرِوو</exemplarCity>
</zone>
<zone type="Pacific/Kwajalein">
<exemplarCity>کُوجلین</exemplarCity>
</zone>
<zone type="Pacific/Majuro">
<exemplarCity>مَجوٗرو</exemplarCity>
</zone>
<zone type="Africa/Bamako">
<exemplarCity>بماکو</exemplarCity>
</zone>
<zone type="Asia/Rangoon">
<exemplarCity>رنٛگوٗن</exemplarCity>
</zone>
<zone type="Asia/Hovd">
<exemplarCity>حووڑ</exemplarCity>
</zone>
<zone type="Asia/Ulaanbaatar">
<exemplarCity>اُلانباٹَر</exemplarCity>
</zone>
<zone type="Asia/Choibalsan">
<exemplarCity>چویبالسَن</exemplarCity>
</zone>
<zone type="Asia/Macau">
<exemplarCity>مقاؤں</exemplarCity>
</zone>
<zone type="Pacific/Saipan">
<exemplarCity>سَیپان</exemplarCity>
</zone>
<zone type="America/Martinique">
<exemplarCity>مارٹِنِک</exemplarCity>
</zone>
<zone type="Africa/Nouakchott">
<exemplarCity>نوواکچھوت</exemplarCity>
</zone>
<zone type="America/Montserrat">
<exemplarCity>مونژیرات</exemplarCity>
</zone>
<zone type="Europe/Malta">
<exemplarCity>مالٹا</exemplarCity>
</zone>
<zone type="Indian/Mauritius">
<exemplarCity>مورِشیٚس</exemplarCity>
</zone>
<zone type="Indian/Maldives">
<exemplarCity>مالدیٖوز</exemplarCity>
</zone>
<zone type="Africa/Blantyre">
<exemplarCity>بلانتَیر</exemplarCity>
</zone>
<zone type="America/Tijuana">
<exemplarCity>تِجُوانا</exemplarCity>
</zone>
<zone type="America/Hermosillo">
<exemplarCity>ۂرموسِلو</exemplarCity>
</zone>
<zone type="America/Mazatlan">
<exemplarCity>مَزَٹلان</exemplarCity>
</zone>
<zone type="America/Chihuahua">
<exemplarCity>چِہُوا ہُوا</exemplarCity>
</zone>
<zone type="America/Monterrey">
<exemplarCity>موٹیٚری</exemplarCity>
</zone>
<zone type="America/Mexico_City">
<exemplarCity>میٚکسِکو سِٹی</exemplarCity>
</zone>
<zone type="America/Merida">
<exemplarCity>میٚرِڈا</exemplarCity>
</zone>
<zone type="America/Cancun">
<exemplarCity>کینکَن</exemplarCity>
</zone>
<zone type="Asia/Kuala_Lumpur">
<exemplarCity>کولالَمپوٗر</exemplarCity>
</zone>
<zone type="Asia/Kuching">
<exemplarCity>کُچِنٛگ</exemplarCity>
</zone>
<zone type="Africa/Maputo">
<exemplarCity>مَپوٗٹو</exemplarCity>
</zone>
<zone type="Africa/Windhoek">
<exemplarCity>وِنڈہوک</exemplarCity>
</zone>
<zone type="Pacific/Noumea">
<exemplarCity>نومیی</exemplarCity>
</zone>
<zone type="Africa/Niamey">
<exemplarCity>نَیمیے</exemplarCity>
</zone>
<zone type="Pacific/Norfolk">
<exemplarCity>نورفوک</exemplarCity>
</zone>
<zone type="Africa/Lagos">
<exemplarCity>لیٚگوس</exemplarCity>
</zone>
<zone type="America/Managua">
<exemplarCity>مَناگوا</exemplarCity>
</zone>
<zone type="Europe/Amsterdam">
<exemplarCity>ایمسٹَرڈیم</exemplarCity>
</zone>
<zone type="Europe/Oslo">
<exemplarCity>اوسلو</exemplarCity>
</zone>
<zone type="Asia/Katmandu">
<exemplarCity>کاٹھمَنڈوٗ</exemplarCity>
</zone>
<zone type="Pacific/Nauru">
<exemplarCity>ناوروٗ</exemplarCity>
</zone>
<zone type="Pacific/Niue">
<exemplarCity>نِو</exemplarCity>
</zone>
<zone type="Pacific/Chatham">
<exemplarCity>چَتھَم</exemplarCity>
</zone>
<zone type="Pacific/Auckland">
<exemplarCity>آکلینڈ</exemplarCity>
</zone>
<zone type="Asia/Muscat">
<exemplarCity>مَسکَت</exemplarCity>
</zone>
<zone type="America/Panama">
<exemplarCity>پَناما</exemplarCity>
</zone>
<zone type="America/Lima">
<exemplarCity>لِما</exemplarCity>
</zone>
<zone type="Pacific/Tahiti">
<exemplarCity>تَہِتی</exemplarCity>
</zone>
<zone type="Pacific/Marquesas">
<exemplarCity>مارکیسَس</exemplarCity>
</zone>
<zone type="Pacific/Gambier">
<exemplarCity>گیمبِیَر</exemplarCity>
</zone>
<zone type="Pacific/Port_Moresby">
<exemplarCity>پوٹ مورسبی</exemplarCity>
</zone>
<zone type="Asia/Manila">
<exemplarCity>مَنیٖلا</exemplarCity>
</zone>
<zone type="Asia/Karachi">
<exemplarCity>کَراچی</exemplarCity>
</zone>
<zone type="Europe/Warsaw">
<exemplarCity>وارسا</exemplarCity>
</zone>
<zone type="America/Miquelon">
<exemplarCity>مِکیٖلَن</exemplarCity>
</zone>
<zone type="Pacific/Pitcairn">
<exemplarCity>پِٹکیرَن</exemplarCity>
</zone>
<zone type="America/Puerto_Rico">
<exemplarCity>پیٖٹو رِکو</exemplarCity>
</zone>
<zone type="Asia/Gaza">
<exemplarCity>غازا</exemplarCity>
</zone>
<zone type="Atlantic/Azores">
<exemplarCity>اَزورَس</exemplarCity>
</zone>
<zone type="Atlantic/Madeira">
<exemplarCity>مَڈیٖرا</exemplarCity>
</zone>
<zone type="Europe/Lisbon">
<exemplarCity>لِسبَن</exemplarCity>
</zone>
<zone type="Pacific/Palau">
<exemplarCity>پَلاو</exemplarCity>
</zone>
<zone type="America/Asuncion">
<exemplarCity>اَسُنچِیَن</exemplarCity>
</zone>
<zone type="Asia/Qatar">
<exemplarCity>قَتَر</exemplarCity>
</zone>
<zone type="Indian/Reunion">
<exemplarCity>رِیوٗنیَن</exemplarCity>
</zone>
<zone type="Europe/Bucharest">
<exemplarCity>بَچاریٚسٹ</exemplarCity>
</zone>
<zone type="Europe/Kaliningrad">
<exemplarCity>کَلِناِنگرَد</exemplarCity>
</zone>
<zone type="Europe/Simferopol">
<exemplarCity>سِمفیٚروپول</exemplarCity>
</zone>
<zone type="Europe/Moscow">
<exemplarCity>ماسکو</exemplarCity>
</zone>
<zone type="Europe/Volgograd">
<exemplarCity>وولگوگرَد</exemplarCity>
</zone>
<zone type="Europe/Samara">
<exemplarCity>سَمارا</exemplarCity>
</zone>
<zone type="Asia/Yekaterinburg">
<exemplarCity>یَکاتِرِنبٔرگ</exemplarCity>
</zone>
<zone type="Asia/Omsk">
<exemplarCity>اومسک</exemplarCity>
</zone>
<zone type="Asia/Novosibirsk">
<exemplarCity>نوووسِبِرسک</exemplarCity>
</zone>
<zone type="Asia/Krasnoyarsk">
<exemplarCity>کرنٛسنویارسک</exemplarCity>
</zone>
<zone type="Asia/Irkutsk">
<exemplarCity>اِرکُسک</exemplarCity>
</zone>
<zone type="Asia/Yakutsk">
<exemplarCity>یکوسک</exemplarCity>
</zone>
<zone type="Asia/Vladivostok">
<exemplarCity>لادِووستوک</exemplarCity>
</zone>
<zone type="Asia/Sakhalin">
<exemplarCity>سَکھالِن</exemplarCity>
</zone>
<zone type="Asia/Magadan">
<exemplarCity>مَگادَن</exemplarCity>
</zone>
<zone type="Asia/Kamchatka">
<exemplarCity>کَمچھٹکا</exemplarCity>
</zone>
<zone type="Asia/Anadyr">
<exemplarCity>اَنَدیر</exemplarCity>
</zone>
<zone type="Africa/Kigali">
<exemplarCity>کِگالی</exemplarCity>
</zone>
<zone type="Asia/Riyadh">
<exemplarCity>رِیاد</exemplarCity>
</zone>
<zone type="Pacific/Guadalcanal">
<exemplarCity>گُوادَلچَنَل</exemplarCity>
</zone>
<zone type="Indian/Mahe">
<exemplarCity>ماہیے</exemplarCity>
</zone>
<zone type="Africa/Khartoum">
<exemplarCity>کھارتوم</exemplarCity>
</zone>
<zone type="Europe/Stockholm">
<exemplarCity>سٹاک ہولم</exemplarCity>
</zone>
<zone type="Asia/Singapore">
<exemplarCity>سِنٛگاپور</exemplarCity>
</zone>
<zone type="Atlantic/St_Helena">
<exemplarCity>سینٛٹ ہیٚلِنا</exemplarCity>
</zone>
<zone type="Africa/Freetown">
<exemplarCity>فری ٹاوُن</exemplarCity>
</zone>
<zone type="Africa/Dakar">
<exemplarCity>دَکار</exemplarCity>
</zone>
<zone type="Africa/Mogadishu">
<exemplarCity>موگادِشوٗ</exemplarCity>
</zone>
<zone type="America/Paramaribo">
<exemplarCity>پَرامارِبو</exemplarCity>
</zone>
<zone type="Africa/Sao_Tome">
<exemplarCity>ساو ٹوم</exemplarCity>
</zone>
<zone type="America/El_Salvador">
<exemplarCity>ایٚل سَلویدَر</exemplarCity>
</zone>
<zone type="Asia/Damascus">
<exemplarCity>دَمَسکَس</exemplarCity>
</zone>
<zone type="Africa/Mbabane">
<exemplarCity>مابین</exemplarCity>
</zone>
<zone type="America/Grand_Turk">
<exemplarCity>گرینٛڈ تٔرک</exemplarCity>
</zone>
<zone type="Africa/Ndjamena">
<exemplarCity>جَمیٖنا</exemplarCity>
</zone>
<zone type="Indian/Kerguelen">
<exemplarCity>کیرگولِن</exemplarCity>
</zone>
<zone type="Africa/Lome">
<exemplarCity>لوم</exemplarCity>
</zone>
<zone type="Asia/Bangkok">
<exemplarCity>بینگ کاک</exemplarCity>
</zone>
<zone type="Asia/Dushanbe">
<exemplarCity>دُشانبیے</exemplarCity>
</zone>
<zone type="Pacific/Fakaofo">
<exemplarCity>فَکَوفو</exemplarCity>
</zone>
<zone type="Asia/Dili">
<exemplarCity>دِلی</exemplarCity>
</zone>
<zone type="Asia/Ashgabat">
<exemplarCity>اَشگَبَت</exemplarCity>
</zone>
<zone type="Africa/Tunis">
<exemplarCity>ٹوٗنِس</exemplarCity>
</zone>
<zone type="Pacific/Tongatapu">
<exemplarCity>تونگاتَپوٗ</exemplarCity>
</zone>
<zone type="Europe/Istanbul">
<exemplarCity>اِستانبُل</exemplarCity>
</zone>
<zone type="America/Port_of_Spain">
<exemplarCity>پوٹ آف سپین</exemplarCity>
</zone>
<zone type="Pacific/Funafuti">
<exemplarCity>فُنافوٗتی</exemplarCity>
</zone>
<zone type="Asia/Taipei">
<exemplarCity>تَیپیے</exemplarCity>
</zone>
<zone type="Africa/Dar_es_Salaam">
<exemplarCity>دارُالسلام</exemplarCity>
</zone>
<zone type="Europe/Uzhgorod">
<exemplarCity>اُزگورود</exemplarCity>
</zone>
<zone type="Europe/Kiev">
<exemplarCity>کیٖو</exemplarCity>
</zone>
<zone type="Europe/Zaporozhye">
<exemplarCity>زَپوروزَے</exemplarCity>
</zone>
<zone type="Africa/Kampala">
<exemplarCity>کَمپالا</exemplarCity>
</zone>
<zone type="Pacific/Midway">
<exemplarCity>مِڈویے</exemplarCity>
</zone>
<zone type="Pacific/Wake">
<exemplarCity>ویک</exemplarCity>
</zone>
<zone type="America/Adak">
<exemplarCity>اِدَک</exemplarCity>
</zone>
<zone type="America/Nome">
<exemplarCity>نوم</exemplarCity>
</zone>
<zone type="Pacific/Johnston">
<exemplarCity>جانسٹَن</exemplarCity>
</zone>
<zone type="America/Anchorage">
<exemplarCity>اَنکوراج</exemplarCity>
</zone>
<zone type="America/Yakutat">
<exemplarCity>یکوٗتات</exemplarCity>
</zone>
<zone type="America/Juneau">
<exemplarCity>جوٗنی</exemplarCity>
</zone>
<zone type="America/Los_Angeles">
<exemplarCity>لاس ایٚنجٕلز</exemplarCity>
</zone>
<zone type="America/Boise">
<exemplarCity>بویِس</exemplarCity>
</zone>
<zone type="America/Phoenix">
<exemplarCity>پھِنِکس</exemplarCity>
</zone>
<zone type="America/Denver">
<exemplarCity>ڈیٚنوَر</exemplarCity>
</zone>
<zone type="America/North_Dakota/New_Salem">
<exemplarCity>نوو سیلٕم</exemplarCity>
</zone>
<zone type="America/North_Dakota/Center">
<exemplarCity>مَرکزی جنوٗبی ڈکوٹا</exemplarCity>
</zone>
<zone type="America/Chicago">
<exemplarCity>شِکاگو</exemplarCity>
</zone>
<zone type="America/Menominee">
<exemplarCity>میٚنومِنی</exemplarCity>
</zone>
<zone type="America/Indiana/Vincennes">
<exemplarCity>وِنسیٚنیٚس</exemplarCity>
</zone>
<zone type="America/Indiana/Petersburg">
<exemplarCity>پِٹس بٔرگ</exemplarCity>
</zone>
<zone type="America/Indiana/Tell_City">
<exemplarCity>ٹیٚل سِٹی</exemplarCity>
</zone>
<zone type="America/Indiana/Knox">
<exemplarCity>نوکس</exemplarCity>
</zone>
<zone type="America/Indiana/Winamac">
<exemplarCity>وِنیمیک</exemplarCity>
</zone>
<zone type="America/Indiana/Marengo">
<exemplarCity>میٚریٚنگو</exemplarCity>
</zone>
<zone type="America/Indianapolis">
<exemplarCity>اِنڈیَن پولِس</exemplarCity>
</zone>
<zone type="America/Louisville">
<exemplarCity>لوٗیِس وِل</exemplarCity>
</zone>
<zone type="America/Indiana/Vevay">
<exemplarCity>ویٚویے</exemplarCity>
</zone>
<zone type="America/Kentucky/Monticello">
<exemplarCity>مونٹِسیٚلو</exemplarCity>
</zone>
<zone type="America/Detroit">
<exemplarCity>ڈیٚٹرایِٹ</exemplarCity>
</zone>
<zone type="America/New_York">
<exemplarCity>نِو یارک</exemplarCity>
</zone>
<zone type="America/Montevideo">
<exemplarCity>مونٹیٚوِڈیو</exemplarCity>
</zone>
<zone type="Asia/Samarkand">
<exemplarCity>سَمَرکَنٛد</exemplarCity>
</zone>
<zone type="Asia/Tashkent">
<exemplarCity>تاشکیٚنٛٹ</exemplarCity>
</zone>
<zone type="America/St_Vincent">
<exemplarCity>وِنسیٚنٛٹ</exemplarCity>
</zone>
<zone type="America/Caracas">
<exemplarCity>کیرَکَس</exemplarCity>
</zone>
<zone type="America/Tortola">
<exemplarCity>ٹارٹولا</exemplarCity>
</zone>
<zone type="America/St_Thomas">
<exemplarCity>سینٛٹ تھامَس</exemplarCity>
</zone>
<zone type="Asia/Saigon">
<exemplarCity>سیگَن</exemplarCity>
</zone>
<zone type="Pacific/Efate">
<exemplarCity>ایٚفاتیے</exemplarCity>
</zone>
<zone type="Pacific/Wallis">
<exemplarCity>ویلِس</exemplarCity>
</zone>
<zone type="Pacific/Apia">
<exemplarCity>آپِیا</exemplarCity>
</zone>
<zone type="Asia/Aden">
<exemplarCity>ایٚڈٕن</exemplarCity>
</zone>
<zone type="Indian/Mayotte">
<exemplarCity>میوٹ</exemplarCity>
</zone>
<zone type="Africa/Johannesburg">
<exemplarCity>جانسبٔرگ</exemplarCity>
</zone>
<zone type="Africa/Lusaka">
<exemplarCity>لُساکا</exemplarCity>
</zone>
<zone type="Africa/Harare">
<exemplarCity>ہَراریے</exemplarCity>
</zone>
<metazone type="Acre">
<long>
<generic>اٮ۪کرے ٹایِم</generic>
<standard>اٮ۪کرے سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪کرے سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Afghanistan">
<long>
<standard>افغانِستان ٹایِم</standard>
</long>
</metazone>
<metazone type="Africa_Central">
<long>
<standard>مرکزی افریٖقا ٹایِم</standard>
</long>
</metazone>
<metazone type="Africa_Eastern">
<long>
<standard>مشرقی افریٖقا ٹایِم</standard>
</long>
</metazone>
<metazone type="Africa_Southern">
<long>
<standard>جنوٗبی افریقا ٹایِم</standard>
</long>
</metazone>
<metazone type="Africa_Western">
<long>
<generic>مغربی افریٖقا ٹایِم</generic>
<standard>مغربی افریٖقا سٹینڑاڑ ٹایِم</standard>
<daylight>مغربی افریٖقا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Alaska">
<long>
<generic>اٮ۪لاسکا ٹایِم</generic>
<standard>اٮ۪لاسکا سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪لاسکا ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Almaty">
<long>
<generic>اٮ۪لمٮ۪ٹی ٹایِم</generic>
<standard>اٮ۪لمٮ۪ٹی سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪لمٮ۪ٹی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Amazon">
<long>
<generic>اٮ۪مَزَن ٹایِم</generic>
<standard>اٮ۪مَزَن سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪مَزَن سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="America_Central">
<long>
<generic>مرکزی ٹایِم</generic>
<standard>مرکزی سٹینڑاڑ ٹایِم</standard>
<daylight>مرکزی ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="America_Eastern">
<long>
<generic>مشرقی ٹایِم</generic>
<standard>مشرقی سٹینڑاڑ ٹایِم</standard>
<daylight>مشرقی ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="America_Mountain">
<long>
<generic>ماونٹین ٹایِم</generic>
<standard>ماونٹین سٹینڑاڑ ٹایِم</standard>
<daylight>ماونٹین ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="America_Pacific">
<long>
<generic>پیسِفِک ٹایِم</generic>
<standard>پیسِفِک سٹینڑاڑ ٹایِم</standard>
<daylight>پیسِفِک ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Anadyr">
<long>
<generic>اٮ۪نَڑیٖر ٹایِم</generic>
<standard>اٮ۪نَڑیٖر سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪نڑیٖر سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Aqtau">
<long>
<generic>اٮ۪کٹاؤ ٹایِم</generic>
<standard>اٮ۪کٹاؤ سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪کٹاؤ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Aqtobe">
<long>
<generic>اٮ۪کٹوب ٹایِم</generic>
<standard>اٮ۪کٹوب سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪کٹوب سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Arabian">
<long>
<generic>ارٮ۪بِیَن ٹایِم</generic>
<standard>ارٮ۪بِیَن سٹینڑاڑ ٹایِم</standard>
<daylight>ارٮ۪بِیَن ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Argentina">
<long>
<generic>ارجٮ۪نٹیٖنا ٹایِم</generic>
<standard>ارجٮ۪نٹیٖنا سٹینڑاڑ ٹایِم</standard>
<daylight>ارجٮ۪نٹیٖنا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Argentina_Western">
<long>
<generic>مغربی ارجٮ۪نٹیٖنا ٹایِم</generic>
<standard>مغربی ارجٮ۪نٹیٖنا سٹینڑاڑ ٹایِم</standard>
<daylight>مغربی ارجٮ۪نٹیٖنا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Armenia">
<long>
<generic>ارمیٖنِیا ٹایِم</generic>
<standard>ارمیٖنِیا سٹینڑاڑ ٹایِم</standard>
<daylight>ارمیٖنِیا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Atlantic">
<long>
<generic>اٮ۪ٹلانٹِک ٹایِم</generic>
<standard>اٮ۪ٹلانٹِک سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪ٹلانٹِک ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Australia_Central">
<long>
<generic>مرکزی آسٹریلِیَن ٹایِم</generic>
<standard>آسٹریلِیَن مرکزی سٹینڑاڑ ٹایِم</standard>
<daylight>آسٹریلِیَن مرکزی ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Australia_CentralWestern">
<long>
<generic>آسٹریلِیَن مرکزی مغربی ٹایِم</generic>
<standard>آسٹریلِیَن مرکزی مغربی سٹینڑاڑ ٹایِم</standard>
<daylight>آسٹریلِیَن مرکزی مغربی ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Australia_Eastern">
<long>
<generic>مشرِقی آسٹریلِیا ٹایِم</generic>
<standard>آسٹریلِیَن مشرقی سٹینڑاڑ ٹایِم</standard>
<daylight>آسٹریلِیَن مشرقی ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Australia_Western">
<long>
<generic>مغرِبی آسٹریلِیا ٹایِم</generic>
<standard>آسٹریلِیَن مغرِبی سٹینڑاڑ ٹایِم</standard>
<daylight>آسٹریلِیَن مغرِبیٖ ڈےلایٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Azerbaijan">
<long>
<generic>اَزَربیجان ٹایِم</generic>
<standard>اَزَربیجان سٹینڑاڑ ٹایِم</standard>
<daylight>اَزَربیجان سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Azores">
<long>
<generic>اٮ۪زورٕس ٹایِم</generic>
<standard>اٮ۪زورٕس سٹینڑاڑ ٹایِم</standard>
<daylight>اٮ۪زورٕس سَمَر ٹ</daylight>
</long>
</metazone>
<metazone type="Bangladesh">
<long>
<generic>بَنٛگلادیش ٹایِم</generic>
<standard>بَنٛگلادیش سٹینڑاڑ ٹایِم</standard>
<daylight>بَنٛگلادیش سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Bhutan">
<long>
<standard>بوٗٹان ٹایِم</standard>
</long>
</metazone>
<metazone type="Bolivia">
<long>
<standard>بولِوِیا ٹایِم</standard>
</long>
</metazone>
<metazone type="Brasilia">
<long>
<generic>برٮ۪سِلِیا ٹایِم</generic>
<standard>برٮ۪سِلِیا سٹینڑاڑ ٹایِم</standard>
<daylight>برٮ۪سِلِیا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Brunei">
<long>
<standard>برٛوٗنَے دَروٗسَلَم ٹایِم</standard>
</long>
</metazone>
<metazone type="Cape_Verde">
<long>
<generic>کیپ ؤرڑو ٹایِم</generic>
<standard>کیپ ؤرڑو سٹینڑاڑ ٹایِم</standard>
<daylight>کیپ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Chamorro">
<long>
<standard>کٮ۪مورو سٹینڑاڑ ٹایِم</standard>
</long>
</metazone>
<metazone type="Chatham">
<long>
<generic>کٮ۪تھَم ٹایِم</generic>
<standard>کٮ۪تھَم سٹینڑاڑ ٹایِم</standard>
<daylight>چٮ۪تھَم سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Chile">
<long>
<generic>چِلی ٹایِم</generic>
<standard>چِلی سٹینڑاڑ ٹایِم</standard>
<daylight>چِلی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="China">
<long>
<generic>چَینا ٹایِم</generic>
<standard>چَینا سٹینڑاڑ ٹایِم</standard>
<daylight>چَینا ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Choibalsan">
<long>
<generic>کوےبٮ۪لسَن ٹایِم</generic>
<standard>کوےبٮ۪لسَن سٹینڑاڑ ٹایِم</standard>
<daylight>کوےبٮ۪لسَن سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Christmas">
<long>
<standard>کرٛسمَس ٹایِم</standard>
</long>
</metazone>
<metazone type="Cocos">
<long>
<standard>کوکوز اَیلینڑز ٹایِم</standard>
</long>
</metazone>
<metazone type="Colombia">
<long>
<generic>کولومبِیا ٹایِم</generic>
<standard>کولومبِیا سٹینڑاڑ ٹایِم</standard>
<daylight>کولومبِیا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Cook">
<long>
<generic>کُک اَیلینڑز ٹایِم</generic>
<standard>کُک اَیلینڑز سٹینڑاڑ ٹایِم</standard>
<daylight>کُک اَیلینڑز حاف سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Cuba">
<long>
<generic>کیوٗبا ٹایِم</generic>
<standard>کیوٗبا سٹینڑاڑ ٹایِم</standard>
<daylight>کیوٗبا ڈےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Davis">
<long>
<standard>ڑیوِس ٹایِم</standard>
</long>
</metazone>
<metazone type="DumontDUrville">
<long>
<standard>ڑمانٹ ڈی اُرویٖل ٹایِم</standard>
</long>
</metazone>
<metazone type="East_Timor">
<long>
<standard>ایٖسٹ ٹیٖمَر ٹایِم</standard>
</long>
</metazone>
<metazone type="Easter">
<long>
<generic>ایٖسٹَر ٹایِم</generic>
<standard>ایٖسٹَر سٹینڑاڑ ٹایِم</standard>
<daylight>ایٖسٹَر سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Ecuador">
<long>
<standard>اِکویڑَر ٹایِم</standard>
</long>
</metazone>
<metazone type="Europe_Central">
<long>
<generic>مرکزی یوٗرپی ٹایِم</generic>
<standard>مرکزی یوٗرپی سٹینڑاڑ ٹایِم</standard>
<daylight>مرکزی یوٗرپی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Europe_Eastern">
<long>
<generic>مشرقی یوٗرپی ٹایِم</generic>
<standard>مشرقی یوٗرپی سٹینڑاڑ ٹایِم</standard>
<daylight>مشرقی یوٗرپی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Europe_Western">
<long>
<generic>مغرِبی یوٗرپی ٹایِم</generic>
<standard>مغرِبی یوٗرپی سٹینڑاڑ ٹایِم</standard>
<daylight>مغرِبی یوٗرِپی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Falkland">
<long>
<generic>فاکلینڑ ٹایِم</generic>
<standard>فاکلینڑ سٹینڑاڑ ٹایِم</standard>
<daylight>فاکلینڑ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Fiji">
<long>
<generic>فیٖجی ٹایِم</generic>
<standard>فیٖجی سٹینڑاڑ ٹایِم</standard>
<daylight>فیٖجی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="French_Guiana">
<long>
<standard>فرٛٮ۪نٛچ گیوٗٮ۪نا ٹایِم</standard>
</long>
</metazone>
<metazone type="French_Southern">
<long>
<standard>جنوٗبی فرٮ۪نٛچ ٹایِم</standard>
</long>
</metazone>
<metazone type="Galapagos">
<long>
<standard>گٮ۪لٮ۪پیٚگوز ٹایِم</standard>
</long>
</metazone>
<metazone type="Gambier">
<long>
<standard>گٮ۪مبِیَر ٹایِم</standard>
</long>
</metazone>
<metazone type="Georgia">
<long>
<generic>جورجِیاہُک ٹایِم</generic>
<standard>جورجِیاہُک سٹینڑاڑ ٹایِم</standard>
<daylight>جورجِیاہُک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Gilbert_Islands">
<long>
<standard>گِلبٲٹ ججیٖرُک ٹایِم</standard>
</long>
</metazone>
<metazone type="GMT">
<long>
<standard>گرٛیٖن وِچ میٖن ٹایِم</standard>
</long>
</metazone>
<metazone type="Greenland_Eastern">
<long>
<generic>مشرِقی گریٖن لینڑُک ٹایِم</generic>
<standard>مشرِقی گریٖن لینڑُک سٹینڑاڑ ٹایِم</standard>
<daylight>مشرِقی گریٖن لینڑُک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Greenland_Western">
<long>
<generic>مغرِبی گریٖن لینڑُک ٹایِم</generic>
<standard>مغرِبی گریٖن لینڑُک سٹینڑاڑ ٹایِم</standard>
<daylight>مغرِبی گریٖن لینڑُک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Guam">
<long>
<standard>گُوٮ۪م ٹایِم</standard>
</long>
</metazone>
<metazone type="Gulf">
<long>
<standard>گَلف سٹینڑاڑ ٹایِم</standard>
</long>
</metazone>
<metazone type="Guyana">
<long>
<standard>گُیَنا ٹایِم</standard>
</long>
</metazone>
<metazone type="Hawaii_Aleutian">
<long>
<generic>حَواے اٮ۪لیوٗٹِیَن ٹایِم</generic>
<standard>حَواے اٮ۪لیوٗٹِیَن سٹینڑاڑ ٹایِم</standard>
<daylight>حَواے اٮ۪لیوٗٹِیَن سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Hong_Kong">
<long>
<generic>حانگ کانٛگ ٹایِم</generic>
<standard>حانگ کانٛگ سٹینڑاڑ ٹایِم</standard>
<daylight>حانٛگ کانٛگ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Hovd">
<long>
<generic>حووڑ ٹایِم</generic>
<standard>حووڑ سٹینڑاڑ ٹایِم</standard>
<daylight>حووڑ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="India">
<long>
<standard>ہِنٛدوستان</standard>
</long>
</metazone>
<metazone type="Indian_Ocean">
<long>
<standard>ہِندوستٲنۍ اوشَن ٹایِن</standard>
</long>
</metazone>
<metazone type="Indochina">
<long>
<standard>اِنڑوچَینا ٹایِم</standard>
</long>
</metazone>
<metazone type="Indonesia_Central">
<long>
<standard>مرکزی اِنڑونیشِیا ٹایِم</standard>
</long>
</metazone>
<metazone type="Indonesia_Eastern">
<long>
<standard>مشرِقی اِنڑونیشِیا ٹایِم</standard>
</long>
</metazone>
<metazone type="Indonesia_Western">
<long>
<standard>مغرِبی اِنڑونیشِیا ٹایِم</standard>
</long>
</metazone>
<metazone type="Iran">
<long>
<generic>اِیٖرٲنۍ ٹایِم</generic>
<standard>اِیٖرٲنۍ سٹینڑاڑ ٹایِم</standard>
<daylight>اِیٖرٲنی سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Irkutsk">
<long>
<generic>اِرکُٹسک ٹایِم</generic>
<standard>اِرکُٹسک سٹینڑاڑ ٹایِم</standard>
<daylight>اِرکُٹسک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Israel">
<long>
<generic>اِسرٲیِلی ٹایِم</generic>
<standard>اِسرٲیِلی سٹینڑاڑ ٹایِم</standard>
<daylight>اِسرٲیِلی ڑےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Japan">
<long>
<generic>جاپٲنۍ ٹایِم</generic>
<standard>جاپٲنۍ سٹینڑاڑ ٹایِم</standard>
<daylight>جاپٲنۍ ڑےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Kamchatka">
<long>
<generic>کَمچَٹکا ٹایِم</generic>
<standard>کَمچَٹکا سٹینڑاڑ ٹایِم</standard>
<daylight>کَمچَٹکا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Kazakhstan_Eastern">
<long>
<standard>مشرِقی کَزاکھِستان ٹایِم</standard>
</long>
</metazone>
<metazone type="Kazakhstan_Western">
<long>
<standard>مغرِبی کَزاکھِستان ٹایِم</standard>
</long>
</metazone>
<metazone type="Korea">
<long>
<generic>کورِیا ٹایِم</generic>
<standard>کورِیا سٹینڑاڑ ٹایِم</standard>
<daylight>کورِیا ڑےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Kosrae">
<long>
<standard>کورسَے ٹایِم</standard>
</long>
</metazone>
<metazone type="Krasnoyarsk">
<long>
<generic>کرٮ۪سنوےیارسک ٹایِم</generic>
<standard>کرٮ۪سنوےیارسک سٹینڑاڑ ٹایِم</standard>
<daylight>کرٮ۪سنوےیارسک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Kyrgystan">
<long>
<standard>کِرگِستان ٹایِم</standard>
</long>
</metazone>
<metazone type="Lanka">
<long>
<standard>لَنٛکا ٹایِم</standard>
</long>
</metazone>
<metazone type="Line_Islands">
<long>
<standard>لایِٔن ججیٖرُک ٹایِم</standard>
</long>
</metazone>
<metazone type="Lord_Howe">
<long>
<generic>لعاڑ حووے ٹایِم</generic>
<standard>لعاڑ حووے سٹینڑاڑ ٹایِم</standard>
<daylight>لعاڑ ڑےلایٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Macau">
<long>
<generic>مَکَعوٗ ٹایِم</generic>
<standard>مَکَعوٗ سٹینڑاڑ ٹایِم</standard>
<daylight>مَکَعوٗ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Magadan">
<long>
<generic>مَگَدَن ٹایِم</generic>
<standard>مَگَدَن سٹینڑاڑ ٹایِم</standard>
<daylight>مَگَدَن سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Malaysia">
<long>
<standard>مَلیشِیا ٹایِم</standard>
</long>
</metazone>
<metazone type="Maldives">
<long>
<standard>مالدیٖوٕز ٹایِم</standard>
</long>
</metazone>
<metazone type="Marquesas">
<long>
<standard>مارقیوٗسَس ٹایِم</standard>
</long>
</metazone>
<metazone type="Marshall_Islands">
<long>
<standard>مارشَل ججیٖرُک ٹایِم</standard>
</long>
</metazone>
<metazone type="Mauritius">
<long>
<generic>مورِشَس ٹایِم</generic>
<standard>مورِشَس سٹینڑاڑ ٹایِم</standard>
<daylight>مورِشَس سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Mawson">
<long>
<standard>ماسَن ٹایِم</standard>
</long>
</metazone>
<metazone type="Mongolia">
<long>
<generic>مونگولِیا ٹایِم</generic>
<standard>مونگولِیا سٹینڑاڑ ٹایِم</standard>
<daylight>مونگولِیا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Moscow">
<long>
<generic>ماسکَو ٹایِم</generic>
<standard>ماسکو سٹینڑاڑ ٹایِم</standard>
<daylight>ماسکو سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Myanmar">
<long>
<standard>مِیانمَر ٹایِم</standard>
</long>
</metazone>
<metazone type="Nauru">
<long>
<standard>نَعوٗروٗ ٹایِم</standard>
</long>
</metazone>
<metazone type="Nepal">
<long>
<standard>نٮ۪پٲلۍ ٹایِم</standard>
</long>
</metazone>
<metazone type="New_Caledonia">
<long>
<generic>نِو کیلٮ۪ڑونِیا ٹایِم</generic>
<standard>نِو کیلٮ۪ڑونِیا سٹینڑاڑ ٹایِم</standard>
<daylight>نِو کیلٮ۪ڑونِیس سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="New_Zealand">
<long>
<generic>نِوزِلینڑ ٹایِم</generic>
<standard>نِوزِلینڑ سٹینڑاڑ ٹایِم</standard>
<daylight>نِوزِلینڑ ڑےلایٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Newfoundland">
<long>
<generic>نیوٗ فاونڑلینڑ ٹایِم</generic>
<standard>نیوٗ فاونڑلینڑ سٹینڑاڑ ٹایِم</standard>
<daylight>نیوٗ فاونڑ لینڑ ڑےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Niue">
<long>
<standard>نِیوٗ ٹایِم</standard>
</long>
</metazone>
<metazone type="Norfolk">
<long>
<standard>نورفعاک ٹایِم</standard>
</long>
</metazone>
<metazone type="Noronha">
<long>
<generic>نورونہا ٹایِم</generic>
<standard>نورونہا سٹینڑاڑ ٹایِم</standard>
<daylight>نورونہا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="North_Mariana">
<long>
<standard>شُمٲلی مَرِیانا ٹایِم</standard>
</long>
</metazone>
<metazone type="Novosibirsk">
<long>
<generic>نۄوۄسِبٔرسک ٹایِم</generic>
<standard>نۄوۄسِبٔرسک سٹینڑاڑ ٹایِم</standard>
<daylight>نۄوۄسِبٔرسک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Omsk">
<long>
<generic>اۄمسک ٹایِم</generic>
<standard>اۄمسک سٹینڑاڑ ٹایِم</standard>
<daylight>اۄمسک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Pakistan">
<long>
<generic>پاکِستان ٹایِم</generic>
<standard>پاکِستان سٹینڑاڑ ٹایِم</standard>
<daylight>پاکِستان سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Palau">
<long>
<standard>پَلاو ٹایِم</standard>
</long>
</metazone>
<metazone type="Papua_New_Guinea">
<long>
<standard>پاپُعا نیوٗ گٮ۪نی ٹایِم</standard>
</long>
</metazone>
<metazone type="Paraguay">
<long>
<generic>پیرٮ۪گوے ٹایِم</generic>
<standard>پیرٮ۪گوے سٹینڑاڑ ٹایِم</standard>
<daylight>پیرٮ۪گوے سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Peru">
<long>
<generic>پٔروٗ ٹایِم</generic>
<standard>پٔروٗ سٹینڑاڑ ٹایِم</standard>
<daylight>پٔروٗ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Philippines">
<long>
<generic>پھِلِپایِن ٹایِم</generic>
<standard>پھِلِپایِن سٹینڑاڑ ٹایِم</standard>
<daylight>پھِلِپایِن سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Phoenix_Islands">
<long>
<standard>پھونِکس ججیٖرُک ٹایِم</standard>
</long>
</metazone>
<metazone type="Pierre_Miquelon">
<long>
<generic>سینٛٹ پَیری مِقیوٗلَن ٹایِم</generic>
<standard>سینٛٹ پَیری مِقیوٗلَن سٹینڑاڑ ٹایِم</standard>
<daylight>سینٛٹ پَیری مِقیوٗلَن ڑےلایِٔٹ ٹایِم</daylight>
</long>
</metazone>
<metazone type="Pitcairn">
<long>
<standard>پِٹکیرٕن ٹایِم</standard>
</long>
</metazone>
<metazone type="Ponape">
<long>
<standard>پونیپ ٹایِم</standard>
</long>
</metazone>
<metazone type="Qyzylorda">
<long>
<generic>قِزلوڑا ٹایِم</generic>
<standard>قِزلوڑا سٹینڑاڑ ٹایِم</standard>
<daylight>قِزلوڑا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Reunion">
<long>
<standard>رِیوٗنِیَن ٹایِم</standard>
</long>
</metazone>
<metazone type="Rothera">
<long>
<standard>روتھٮ۪را ٹایِم</standard>
</long>
</metazone>
<metazone type="Sakhalin">
<long>
<generic>سَکھٮ۪لِن ٹایِم</generic>
<standard>سَکھٮ۪لِن سٹینڑاڑ ٹایِم</standard>
<daylight>سَکھٮ۪لِن سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Samara">
<long>
<generic>سمٮ۪را ٹایِم</generic>
<standard>سمٮ۪را سٹینڑاڑ ٹایِم</standard>
<daylight>سمٮ۪را سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Samoa">
<long>
<generic>سٮ۪موآ ٹایِم</generic>
<standard>سٮ۪موآ سٹینڑاڑ ٹایِم</standard>
<daylight>سٮ۪موآ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Seychelles">
<long>
<standard>سیشٮ۪لٕز ٹایِم</standard>
</long>
</metazone>
<metazone type="Singapore">
<long>
<standard>سِنٛگاپوٗر ٹایِم</standard>
</long>
</metazone>
<metazone type="Solomon">
<long>
<standard>سولومَن ججیٖرَن ہُنٛد ٹایِم</standard>
</long>
</metazone>
<metazone type="South_Georgia">
<long>
<standard>شُمٲلی جورجِیا ٹایِم</standard>
</long>
</metazone>
<metazone type="Suriname">
<long>
<standard>سُرِنام ٹایِم</standard>
</long>
</metazone>
<metazone type="Syowa">
<long>
<standard>سیووا ٹایِم</standard>
</long>
</metazone>
<metazone type="Tahiti">
<long>
<standard>ٹاہِٹی ٹایِم</standard>
</long>
</metazone>
<metazone type="Tajikistan">
<long>
<standard>تازِکِستان ٹایِم</standard>
</long>
</metazone>
<metazone type="Tokelau">
<long>
<standard>ٹوکٮ۪لو ٹایِم</standard>
</long>
</metazone>
<metazone type="Tonga">
<long>
<generic>ٹعانٛگا ٹایِم</generic>
<standard>ٹعانٛگا سٹینڑاڑ ٹایِم</standard>
<daylight>ٹعانٛگا سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Truk">
<long>
<standard>ٹٔرک ٹایِم</standard>
</long>
</metazone>
<metazone type="Turkmenistan">
<long>
<generic>تُرکمٮ۪نِستان ٹایِم</generic>
<standard>تُرکمٮ۪نِستان سٹینڑاڑ ٹایِم</standard>
<daylight>تُرکمٮ۪نِستان سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Tuvalu">
<long>
<standard>ٹوٗوَلوٗ ٹایِم</standard>
</long>
</metazone>
<metazone type="Uruguay">
<long>
<generic>یوٗرٮ۪گوَے ٹایِم</generic>
<standard>یوٗرٮ۪گوَے سٹینڑاڑ ٹایِم</standard>
<daylight>یوٗرٮ۪گوَے سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Uzbekistan">
<long>
<generic>اُزبیکِستان ٹایِم</generic>
<standard>اُزبیکِستان سٹینڑاڑ ٹایِم</standard>
<daylight>اُزبیکِستانُک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Vanuatu">
<long>
<generic>وَنوٗاَٹوٗ ٹایِم</generic>
<standard>وَنوٗاَٹوٗ سٹینڑاڑ ٹایِم</standard>
<daylight>وَنوٗاَٹوٗ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Venezuela">
<long>
<standard>وٮ۪نٮ۪زیوٗلا ٹایِم</standard>
</long>
</metazone>
<metazone type="Vladivostok">
<long>
<generic>ولاڑِووسٹوک ٹایِم</generic>
<standard>ولاڑِووسٹوک سٹینڑاڑ ٹایِم</standard>
<daylight>ولاڑِووسٹوک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Volgograd">
<long>
<generic>وولگوگریڑ ٹایِم</generic>
<standard>وولگوگریڑ سٹینڑاڑ ٹایِم</standard>
<daylight>وولگوگریڑ سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Vostok">
<long>
<standard>ووسٹوک ٹایِم</standard>
</long>
</metazone>
<metazone type="Wake">
<long>
<standard>ویک ججیٖرُک ٹایِم</standard>
</long>
</metazone>
<metazone type="Wallis">
<long>
<standard>والِس تہٕ فیوٗٹیوٗنا ٹایِم</standard>
</long>
</metazone>
<metazone type="Yakutsk">
<long>
<generic>یَکُٹسک ٹایِم</generic>
<standard>یَکُٹسک سٹینڑاڑ ٹایِم</standard>
<daylight>یَکُٹُسک سَمَر ٹایِم</daylight>
</long>
</metazone>
<metazone type="Yekaterinburg">
<long>
<generic>یٮ۪کَٹٔرِنبٔرگ ٹایِم</generic>
<standard>یٮ۪کَٹٔرِنبٔرگ سٹینڑاڑ ٹایِم</standard>
<daylight>یٮ۪کَٹرِنبٔرگ سَمَر ٹایِم</daylight>
</long>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<defaultNumberingSystem>arabext</defaultNumberingSystem>
<otherNumberingSystems>
<native>arabext</native>
</otherNumberingSystems>
<symbols numberSystem="latn">
<decimal>.</decimal>
<group>,</group>
<list>;</list>
<percentSign>%</percentSign>
<plusSign>+</plusSign> <!-- includes LRM before sign -->
<minusSign>-</minusSign> <!-- includes LRM before sign (002D) -->
<exponential>E</exponential>
<perMille>‰</perMille>
<infinity>∞</infinity>
<nan>NaN</nan>
</symbols>
<decimalFormats numberSystem="latn">
<decimalFormatLength>
<decimalFormat>
<pattern>#,##,##0.###</pattern>
</decimalFormat>
</decimalFormatLength>
</decimalFormats>
<scientificFormats numberSystem="latn">
<scientificFormatLength>
<scientificFormat>
<pattern>#E0</pattern>
</scientificFormat>
</scientificFormatLength>
</scientificFormats>
<percentFormats numberSystem="latn">
<percentFormatLength>
<percentFormat>
<pattern>#,##,##0%</pattern>
</percentFormat>
</percentFormatLength>
</percentFormats>
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern>¤ #,##,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
<currencyFormatLength type="short">
<currencyFormat type="standard">
<pattern type="1000" count="one" draft="provisional">¤ 0K</pattern>
<pattern type="1000" count="other" draft="provisional">¤ 0K</pattern>
<pattern type="10000" count="one" draft="provisional">¤ 00K</pattern>
<pattern type="10000" count="other" draft="provisional">¤ 00K</pattern>
<pattern type="100000" count="one" draft="provisional">¤ 000K</pattern>
<pattern type="100000" count="other" draft="provisional">¤ 000K</pattern>
<pattern type="1000000" count="one" draft="provisional">¤ 0M</pattern>
<pattern type="1000000" count="other" draft="provisional">¤ 0M</pattern>
<pattern type="10000000" count="one" draft="provisional">¤ 00M</pattern>
<pattern type="10000000" count="other" draft="provisional">¤ 00M</pattern>
<pattern type="100000000" count="one" draft="provisional">¤ 000M</pattern>
<pattern type="100000000" count="other" draft="provisional">¤ 000M</pattern>
<pattern type="1000000000" count="one" draft="provisional">¤ 0G</pattern>
<pattern type="1000000000" count="other" draft="provisional">¤ 0G</pattern>
<pattern type="10000000000" count="one" draft="provisional">¤ 00G</pattern>
<pattern type="10000000000" count="other" draft="provisional">¤ 00G</pattern>
<pattern type="100000000000" count="one" draft="provisional">¤ 000G</pattern>
<pattern type="100000000000" count="other" draft="provisional">¤ 000G</pattern>
<pattern type="1000000000000" count="one" draft="provisional">¤ 0T</pattern>
<pattern type="1000000000000" count="other" draft="provisional">¤ 0T</pattern>
<pattern type="10000000000000" count="one" draft="provisional">¤ 00T</pattern>
<pattern type="10000000000000" count="other" draft="provisional">¤ 00T</pattern>
<pattern type="100000000000000" count="one" draft="provisional">¤ 000T</pattern>
<pattern type="100000000000000" count="other" draft="provisional">¤ 000T</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
<currencies>
<currency type="ADP">
<displayName>اٮ۪ڑورَن پیسِٹا</displayName>
</currency>
<currency type="AED">
<displayName>مُتحدہ عرب اِمارات دِرہم</displayName>
</currency>
<currency type="AFN">
<displayName>افغان افغٲنی</displayName>
</currency>
<currency type="ALL">
<displayName>اٮ۪لبینِیَن لِک</displayName>
</currency>
<currency type="AMD">
<displayName>اَرمانٮ۪ن ڈرٛٮ۪م</displayName>
</currency>
<currency type="ANG">
<displayName>نایدَرلینٛڑ اٮ۪نٹٕلیٖیَن گِلڑَر</displayName>
</currency>
<currency type="AOA">
<displayName>اٮ۪نگولَن کوانزا</displayName>
</currency>
<currency type="AOR">
<displayName>اٮ۪نگولَن کوانٛزا رٮ۪جِسٹاڑو</displayName>
</currency>
<currency type="ARA">
<displayName>أرجَنٹیٖن اَسٹرل</displayName>
</currency>
<currency type="ARS">
<displayName>أرجَنٹیٖن پِسو</displayName>
</currency>
<currency type="ATS">
<displayName>آسٹریَن شِلِنٛگ</displayName>
</currency>
<currency type="AUD">
<displayName>آسٹریلِیَن ڈالَر</displayName>
</currency>
<currency type="AWG">
<displayName>اَروبَن فِلورِن</displayName>
</currency>
<currency type="AZN">
<displayName>آزَرباجانی مَنَٹ</displayName>
</currency>
<currency type="BAD">
<displayName>بوزنِیاہَرزِگووِنا دیٖنار</displayName>
</currency>
<currency type="BAM">
<displayName>بوزنِیاہَرزِگووِنا کَنوٲٹیبٕل مارٕک</displayName>
</currency>
<currency type="BBD">
<displayName>بابیڑِیَن ڈالَر</displayName>
</currency>
<currency type="BDT">
<displayName>بَنگلادیٖشی ٹَکا</displayName>
</currency>
<currency type="BEF">
<displayName>بَلجِیَن فرینٛک</displayName>
</currency>
<currency type="BGN">
<displayName>بیلگیرِیَن ہاڑ لِو</displayName>
</currency>
<currency type="BHD">
<displayName>بحریٖنی دیٖنار</displayName>
</currency>
<currency type="BIF">
<displayName>بُرُنڑِین فرینٛک</displayName>
</currency>
<currency type="BMD">
<displayName>بٔرمیوٗڑَن ڈالَر</displayName>
</currency>
<currency type="BND">
<displayName>برٛونی ڈالَر</displayName>
</currency>
<currency type="BOB">
<displayName>بولِوِیَن بولوینو</displayName>
</currency>
<currency type="BOP">
<displayName>بولویَن پِسو</displayName>
</currency>
<currency type="BOV">
<displayName>بولوِیَن مَوڈال</displayName>
</currency>
<currency type="BRB">
<displayName>برٛازیٖلین کرٛوزِرو نووو</displayName>
</currency>
<currency type="BRC">
<displayName>برٛازیٖلین کرٛوزیڑو</displayName>
</currency>
<currency type="BRE">
<displayName>برٛازیٖلین کرٛوزِرو</displayName>
</currency>
<currency type="BRL">
<displayName>برٛازیٖلین رِیَل</displayName>
</currency>
<currency type="BRN">
<displayName>برٛازیٖلین کرٛوزیڑو نووو</displayName>
</currency>
<currency type="BRR">
<displayName>برٛازیٖلین کرٛوزیرو</displayName>
</currency>
<currency type="BSD">
<displayName>بہامِیَن ڈالر</displayName>
</currency>
<currency type="BTN">
<displayName>بوٗٹینیٖز نگُلٹرٛم</displayName>
</currency>
<currency type="BUK">
<displayName>بٔرمیٖز کیٹ</displayName>
</currency>
<currency type="BWP">
<displayName>بوٹٕسوانَن پُلا</displayName>
</currency>
<currency type="BYB">
<displayName>بِلیروشِیَن نِو رِبٕل</displayName>
</currency>
<currency type="BYN">
<displayName>بِلیروشِیَن رِبٕل</displayName>
</currency>
<currency type="BYR">
<displayName>بِلیروشِیَن رِبٕل (۲۰۰۰–۲۰۱۶)</displayName>
</currency>
<currency type="BZD">
<displayName>بِلِزی ڈالر</displayName>
</currency>
<currency type="CAD">
<displayName>کینَڑِیَن ڈالر</displayName>
</currency>
<currency type="CDF">
<displayName>کونٛگولیٖز فرٛیک</displayName>
</currency>
<currency type="CHE">
<displayName>وِر یوٗرو</displayName>
</currency>
<currency type="CHF">
<displayName>سُوِز فریک</displayName>
</currency>
<currency type="CHW">
<displayName>وِر فرٛیک</displayName>
</currency>
<currency type="CLF">
<displayName>چِلِن یوٗنِڑیدیٖز ڑِ فومیٹو</displayName>
</currency>
<currency type="CLP">
<displayName>چِلِن پِسو</displayName>
</currency>
<currency type="CNY">
<displayName>چینیٖز یَن رِنمِنبی</displayName>
</currency>
<currency type="COP">
<displayName>کولَمبِین پِسو</displayName>
</currency>
<currency type="COU">
<displayName>ِٖیوٗنِڑیڑ ڑِ ویلور رِیل</displayName>
</currency>
<currency type="CRC">
<displayName>کوسٹا رِکَن کولَن</displayName>
</currency>
<currency type="CSD">
<displayName>پرٛون سٔربِین ڈالر</displayName>
</currency>
<currency type="CSK">
<displayName>چِکوسولوواک ہاڑ کوروٗنا</displayName>
</currency>
<currency type="CUP">
<displayName>کیوٗبَن پِسو</displayName>
</currency>
<currency type="CYP">
<displayName>کیپروٹ پَوُڑ</displayName>
</currency>
<currency type="CZK">
<displayName>چیک کوریٖنا</displayName>
</currency>
<currency type="DDM">
<displayName>مٔشرِقی جٔرمَن مارٕک</displayName>
</currency>
<currency type="DEM">
<displayName>جٔرمَن مارٕک</displayName>
</currency>
<currency type="DKK">
<displayName>ڈٔنِش کرٛون</displayName>
</currency>
<currency type="DOP">
<displayName>ڈومِنِکَن پِسو</displayName>
</currency>
<currency type="DZD">
<displayName>اٮ۪لجیرِیَن ڈیٖنار</displayName>
</currency>
<currency type="EEK">
<displayName>اٮ۪سٹونِیَن کرٛون</displayName>
</currency>
<currency type="EGP">
<displayName>اِجِپٹِیَن پَوُنڑ</displayName>
</currency>
<currency type="ERN">
<displayName>رِٹریٖن نَفکا</displayName>
</currency>
<currency type="ESP">
<displayName>سِپینِش پیسِٹا</displayName>
</currency>
<currency type="ETB">
<displayName>اِتھوپِیَن بِر</displayName>
</currency>
<currency type="EUR">
<displayName>یوٗرو</displayName>
</currency>
<currency type="FIM">
<displayName>فِنِش مارکا</displayName>
</currency>
<currency type="FJD">
<displayName>فِجین ڈالر</displayName>
</currency>
<currency type="FKP">
<displayName>فیکلینٛڑِس آیلینٛڑ پونٛڑ</displayName>
</currency>
<currency type="FRF">
<displayName>فرٛانسِسی فرٛیک</displayName>
</currency>
<currency type="GBP">
<displayName>برطٲنوی پاونٛڑ سٹٔرلِنٛگ</displayName>
</currency>
<currency type="GEK">
<displayName>جارجِیَن کیوٗپَن لَرِٹ</displayName>
</currency>
<currency type="GEL">
<displayName>جارجِیَن لاری</displayName>
</currency>
<currency type="GHC">
<displayName>گَنیٚیَن سٮ۪ڑی(۱۹۷۹–۲٠٠۷)</displayName>
</currency>
<currency type="GHS">
<displayName>گَنیٚیَن سٮ۪ڑی</displayName>
</currency>
<currency type="GIP">
<displayName>گِبریلٹَر پَاونٛڑ</displayName>
</currency>
<currency type="GMD">
<displayName>گیمبِیاہُک دلاسی</displayName>
</currency>
<currency type="GNF">
<displayName>گِنِیَن فرٛینٛک</displayName>
</currency>
<currency type="GNS">
<displayName>گِنِیَن سِلی</displayName>
</currency>
<currency type="GQE">
<displayName>اِکویٹورِیَل گِنِیَن اٮ۪کویٖل</displayName>
</currency>
<currency type="GRD">
<displayName>گریٖسُک ڑرٛٮ۪کما</displayName>
</currency>
<currency type="GTQ">
<displayName>گواٹَمالَن قیوٗٹزَل</displayName>
</currency>
<currency type="GWE">
<displayName>پورتگیٖزُک گِنی اٮ۪سکیوٗڑو</displayName>
</currency>
<currency type="GWP">
<displayName>گِنی بِساوُک پٮ۪سو</displayName>
</currency>
<currency type="GYD">
<displayName>گَیَنیٖزُک ڑالَر</displayName>
</currency>
<currency type="HKD">
<displayName>حانٛگ کانٛگُک ڑالَر</displayName>
</currency>
<currency type="HNL">
<displayName>حونڑورنُک لٮ۪مپیٖرا</displayName>
</currency>
<currency type="HRD">
<displayName>کروایشنُک دیٖنار</displayName>
</currency>
<currency type="HRK">
<displayName>کروایشنُک کوٗنا</displayName>
</currency>
<currency type="HTG">
<displayName>حیشَنُک گوڑ</displayName>
</currency>
<currency type="HUF">
<displayName>حَنگیرِیَن فورِنٛٹ</displayName>
</currency>
<currency type="IDR">
<displayName>اِنڑونیشیاہُک رُپِیاہ</displayName>
</currency>
<currency type="IEP">
<displayName>اَیرلینڑُک پاونٛڑ</displayName>
</currency>
<currency type="ILP">
<displayName>اِزرٲیِلی پاونٛڑ</displayName>
</currency>
<currency type="ILS">
<displayName>اِزرٲیِلی نٔوۍ شٮ۪قٕل</displayName>
</currency>
<currency type="INR">
<displayName>ہِندُستٲنۍ رۄپَے</displayName>
</currency>
<currency type="IQD">
<displayName>ایٖراقُک دیٖنار</displayName>
</currency>
<currency type="IRR">
<displayName>ایٖرانُک رِیال</displayName>
</currency>
<currency type="ISK">
<displayName>اَیسلینٛڑُک کرٛونا</displayName>
</currency>
<currency type="ITL">
<displayName>اِٹلیٖ یُک لیٖرا</displayName>
</currency>
<currency type="JMD">
<displayName>جَمَیکاہُک ڑالَر</displayName>
</currency>
<currency type="JOD">
<displayName>جَرڑینیاہُک دیٖنار</displayName>
</currency>
<currency type="JPY">
<displayName>جاپانُک یَن</displayName>
</currency>
<currency type="KES">
<displayName>کٮ۪نیَن شِلِنٛگ</displayName>
</currency>
<currency type="KGS">
<displayName>کِرگِستانُک سوم</displayName>
</currency>
<currency type="KHR">
<displayName>کَمبوڑِیاہُک رِیال</displayName>
</currency>
<currency type="KMF">
<displayName>کومورِیَن فرٛینٛک</displayName>
</currency>
<currency type="KPW">
<displayName>جنوٗبی کورِیَن وَن</displayName>
</currency>
<currency type="KRW">
<displayName>ساوتھ کورِیَن وَن</displayName>
</currency>
<currency type="KWD">
<displayName>قُویتُک دیٖنار</displayName>
</currency>
<currency type="KYD">
<displayName>کیمین ججیٖرُک ڑالَر</displayName>
</currency>
<currency type="KZT">
<displayName>کزاکِستان ٹینٛج</displayName>
</currency>
<currency type="LAK">
<displayName>لَوٹِیَن کِپ</displayName>
</currency>
<currency type="LBP">
<displayName>لیبنیٖزُک پاونٛڑ</displayName>
</currency>
<currency type="LKR">
<displayName>سری لَنکاہٕچ رۄپَے</displayName>
</currency>
<currency type="LRD">
<displayName>لَیبیرِیَن ڑالَر</displayName>
</currency>
<currency type="LSL">
<displayName>لِسوتھو لوٹی</displayName>
</currency>
<currency type="LTL">
<displayName>لِتھوینِیَن لِٹاس</displayName>
</currency>
<currency type="LTT">
<displayName>لِتھوینِیَن ٹٮ۪لوناس</displayName>
</currency>
<currency type="LUC">
<displayName>لَکزٕمبورگِیَن کَنؤرٹِبٕل فرٛینٛک</displayName>
</currency>
<currency type="LUF">
<displayName>لَکزٕمبورگِیَن فرٛینٛک</displayName>
</currency>
<currency type="LUL">
<displayName>لَکزٕمبوگ فَینانشَل فرٛینٛک</displayName>
</currency>
<currency type="LVL">
<displayName>لَتوِیَن لیٹس</displayName>
</currency>
<currency type="LVR">
<displayName>لَتوِیَن رَبٕل</displayName>
</currency>
<currency type="LYD">
<displayName>لِبیَن دیٖنار</displayName>
</currency>
<currency type="MAD">
<displayName>موروکَن دِرہَم</displayName>
</currency>
<currency type="MAF">
<displayName>موروکَن فرٛینٛک</displayName>
</currency>
<currency type="MDL">
<displayName>مولڑووین لیوٗ</displayName>
</currency>
<currency type="MGA">
<displayName>مٮ۪لٮ۪گیسی اٮ۪ریَری</displayName>
</currency>
<currency type="MGF">
<displayName>مٮ۪لٮ۪گیسی فرٛینٛک</displayName>
</currency>
<currency type="MKD">
<displayName>مٮ۪کَڑونِیَن دیٖنار</displayName>
</currency>
<currency type="MLF">
<displayName>میلِیَن فرٛینٛک</displayName>
</currency>
<currency type="MMK">
<displayName>مِیانما کیاٹ</displayName>
</currency>
<currency type="MNT">
<displayName>مۄنگولِیَن ٹُگرِک</displayName>
</currency>
<currency type="MOP">
<displayName>مٮ۪کانیٖز پَٹاکا</displayName>
</currency>
<currency type="MRO">
<displayName>مورِٹینِیَن عوگیوٗیا (1973–2017)</displayName>
</currency>
<currency type="MRU">
<displayName>مورِٹینِیَن عوگیوٗیا</displayName>
</currency>
<currency type="MTL">
<displayName>مالٹیٖزُک لیٖرا</displayName>
</currency>
<currency type="MTP">
<displayName>مالٹیٖزُک پاونٛڑ</displayName>
</currency>
<currency type="MUR">
<displayName>مورٮ۪شِیاہٕچ رۄپَے</displayName>
</currency>
<currency type="MVR">
<displayName>مالدِیٖوِیَن رُفِیا</displayName>
</currency>
<currency type="MWK">
<displayName>مٮ۪لیوِیَن کواچا</displayName>
</currency>
<currency type="MXN">
<displayName>مٮ۪کسِکَن پٮ۪سو</displayName>
</currency>
<currency type="MXP">
<displayName>مٮ۪کسِکَن سِلوَر پٮ۪سو (۱۸۶۱–۱۹۹۲)</displayName>
</currency>
<currency type="MYR">
<displayName>مَلیشِیَن رِنٛگِٹ</displayName>
</currency>
<currency type="MZE">
<displayName>موزیمبِکَن سکیوٗڑو</displayName>
</currency>
<currency type="MZM">
<displayName>پرٛون موزیمبِکَن مٮ۪ٹِکَل</displayName>
</currency>
<currency type="MZN">
<displayName>موزیمبِکَن مٮ۪ٹِکَل</displayName>
</currency>
<currency type="NAD">
<displayName>نامِبِیَن ڑالَر</displayName>
</currency>
<currency type="NGN">
<displayName>نَیجیرِیَن ڑالَر</displayName>
</currency>
<currency type="NIC">
<displayName>نِکٮ۪راگُوٮ۪ن کورڑوبا</displayName>
</currency>
<currency type="NIO">
<displayName>نِکٮ۪راگُوٮ۪ن کورڑوبا اورو</displayName>
</currency>
<currency type="NLG">
<displayName>ڈَچ گِلڑَر</displayName>
</currency>
<currency type="NOK">
<displayName>نورویٚیِنُک کرٛون</displayName>
</currency>
<currency type="NPR">
<displayName>نیپالٕچ رۄپَے</displayName>
</currency>
<currency type="NZD">
<displayName>نِوزیٖلینٛڑُک ڑالَر</displayName>
</currency>
<currency type="OMR">
<displayName>اومِنی رِیال</displayName>
</currency>
<currency type="PAB">
<displayName>پانامانِیَن بالبوز</displayName>
</currency>
<currency type="PEI">
<displayName>پٔریوٗوِیَن اِنٛٹی</displayName>
</currency>
<currency type="PEN">
<displayName>پٔریوٗوِیَن سولٕز</displayName>
</currency>
<currency type="PES">
<displayName>پٔریوٗوِیَن سول (۱۸۶۳–۱۹۶۵)</displayName>
</currency>
<currency type="PGK">
<displayName>نیوٗ پیپُعا گِنِیَن کیٖنا</displayName>
</currency>
<currency type="PHP">
<displayName>پھِلِپایِٔن پٮ۪سو</displayName>
</currency>
<currency type="PKR">
<displayName>پاکِستٲنۍ رۄپَے</displayName>
</currency>
<currency type="PLN">
<displayName>پولِش زلوٹی</displayName>
</currency>
<currency type="PLZ">
<displayName>پولِش زلوٹی(۱۹۵٠–۱۹۹۵)</displayName>
</currency>
<currency type="PTE">
<displayName>پورتُگیٖز اٮ۪سکیوٗڑو</displayName>
</currency>
<currency type="PYG">
<displayName>پٮ۪رٮ۪گیوٗوَیَن گُعارانی</displayName>
</currency>
<currency type="QAR">
<displayName>قطاری رِیال</displayName>
</currency>
<currency type="RHD">
<displayName>رھوڑیشِیَن ڑالَر</displayName>
</currency>
<currency type="ROL">
<displayName>اولڑ رومانِیَن لٮ۪یوٗ</displayName>
</currency>
<currency type="RON">
<displayName>رومانِیَن لٮ۪یوٗ</displayName>
</currency>
<currency type="RSD">
<displayName>سٔربِیَن دیٖنار</displayName>
</currency>
<currency type="RUB">
<displayName>رٔشیَن رَبٕل</displayName>
</currency>
<currency type="RUR">
<displayName>رٔشیَن رَبٕل(۱۹۹۱–۱۹۹۸)</displayName>
</currency>
<currency type="RWF">
<displayName>روانٛڑَن فرانٛک</displayName>
</currency>
<currency type="SAR">
<displayName>سودیٖیُک رِیال</displayName>
</currency>
<currency type="SBD">
<displayName>سولَمَن جٔزیٖرُک ڈالَر</displayName>
</currency>
<currency type="SDD">
<displayName>پرون سوٗڈانُک دیٖنار</displayName>
</currency>
<currency type="SDG">
<displayName>سوٗڈانُک پونٛڈ</displayName>
</currency>
<currency type="SDP">
<displayName>پرون سوٗڈانُک پونٛڈ</displayName>
</currency>
<currency type="SEK">
<displayName>سویٖڈِش کَرونا</displayName>
</currency>
<currency type="SGD">
<displayName>سِنگاپورُک ڈالَر</displayName>
</currency>
<currency type="SHP">
<displayName>سینٹ ہیلِنا پونٛڈ</displayName>
</currency>
<currency type="SIT">
<displayName>سلووینُک ٹولَر</displayName>
</currency>
<currency type="SKK">
<displayName>سلووَک کَرونا</displayName>
</currency>
<currency type="SOS">
<displayName>سومالی شِلِنٛگ</displayName>
</currency>
<currency type="SRD">
<displayName>سُریٖنامُک ڈالَر</displayName>
</currency>
<currency type="SRG">
<displayName>سُریٖنام گِلدَر</displayName>
</currency>
<currency type="SUR">
<displayName>سوویت روبٕل</displayName>
</currency>
<currency type="SVC">
<displayName>سَلویدَرُک کولَن</displayName>
</currency>
<currency type="SYP">
<displayName>سیٖریاہُک پونٛڈ</displayName>
</currency>
<currency type="SZL">
<displayName>سوازی لِلَنگیٚنی</displayName>
</currency>
<currency type="THB">
<displayName>تھایھک بات</displayName>
</currency>
<currency type="TJR">
<displayName>تاجکِستانُک رَبٕل</displayName>
</currency>
<currency type="TJS">
<displayName>تاجِکتانُک سَمونی</displayName>
</currency>
<currency type="TMM">
<displayName>تُکَمَنِستانُک مَنَت</displayName>
</currency>
<currency type="TND">
<displayName>ٹُنیشیاہُک دیٖنار</displayName>
</currency>
<currency type="TOP">
<displayName>ٹونگَن پانٛگا</displayName>
</currency>
<currency type="TPE">
<displayName>ٹیموریٚسو ایٚکیٖڈو</displayName>
</currency>
<currency type="TRL">
<displayName>پرون تُرکِش لیرا</displayName>
</currency>
<currency type="TRY">
<displayName>تُرکیہُک لیرا</displayName>
</currency>
<currency type="TTD">
<displayName>ٹرِنہِ ڈیڈ تہٕ ٹوبیگو ڈالَر</displayName>
</currency>
<currency type="TWD">
<displayName>نوٚو تیوانُک ڈالَر</displayName>
</currency>
<currency type="TZS">
<displayName>تَنزانیاہُک شِلِنٛگ</displayName>
</currency>
<currency type="UAH">
<displayName>یوٗکرینیاہُک ہرِوِنیا</displayName>
</currency>
<currency type="UAK">
<displayName>یوٗکرینیاہُک کاربووَنیٹس</displayName>
</currency>
<currency type="UGS">
<displayName>اُگاداہُک شِلِنٛگ(۱۹۶۶–۱۹۸۷)</displayName>
</currency>
<currency type="UGX">
<displayName>اُگاداہُک شِلِنٛگ</displayName>
</currency>
<currency type="USD">
<displayName>یوٗ ایٚس ڈالَر</displayName>
</currency>
<currency type="USN">
<displayName>یوٗ ایٚس ڈالَر(پَگاہ)</displayName>
</currency>
<currency type="USS">
<displayName>یوٗ ایٚس ڈالَر(تَمی دًۄہ)</displayName>
</currency>
<currency type="UYI">
<displayName>اُرگایَن پیٚسو یوٗنِڈیڈَس اِنڈیٚکسَس</displayName>
</currency>
<currency type="UYP">
<displayName>اُرگایَن پیٚسو(۱۹۷۵–۱۹۹۳)</displayName>
</currency>
<currency type="UYU">
<displayName>اُروٗگایَن پیٚسو</displayName>
</currency>
<currency type="UZS">
<displayName>اُبیکِستان سوم</displayName>
</currency>
<currency type="VEB">
<displayName>وینٕزوٗلیُک بولِوَر (۱۸۷۱–۲۰۰۸)</displayName>
</currency>
<currency type="VEF">
<displayName>وینٕزوٗلیُک بولِوَر (2008–2018)</displayName>
</currency>
<currency type="VES">
<displayName>وینٕزوٗلیُک بولِوَر</displayName>
</currency>
<currency type="VND">
<displayName>وِیَنَمُک ڈانٛگ</displayName>
</currency>
<currency type="VUV">
<displayName>وَنوٗاَتوٗ وَتوٗ</displayName>
</currency>
<currency type="WST">
<displayName>سَمون تَلا</displayName>
</currency>
<currency type="XAF">
<displayName>سی ایٚف اے فرینک بی ایٖ اے سی</displayName>
</currency>
<currency type="XAG">
<displayName>رۄپھ</displayName>
</currency>
<currency type="XAU">
<displayName>سۄن</displayName>
</currency>
<currency type="XBA">
<displayName>یوٗرپی کَمپوسِٹ یوٗنِٹ</displayName>
</currency>
<currency type="XBB">
<displayName>یوٗرپی مونِٹَری یوٗنِٹ</displayName>
</currency>
<currency type="XBC">
<displayName>یوٗرپی یوٗنِٹ آف ایٚکاوُنٛٹ (ایکس بی سی)</displayName>
</currency>
<currency type="XBD">
<displayName>یوٗرپی یوٗنِٹ آف ایٚکاوُنٛٹ (ایکس بی ڈی)</displayName>
</currency>
<currency type="XCD">
<displayName>مَشرِقی کیرِبِیَن ڈالَر</displayName>
</currency>
<currency type="XDR">
<displayName>خاص ڈرایِنٛگ رایٹس</displayName>
</currency>
<currency type="XEU">
<displayName>یوٗرپی کَرَنسی یوٗنِٹ</displayName>
</currency>
<currency type="XFO">
<displayName>فریٚنچ گولڈ فرینک</displayName>
</currency>
<currency type="XFU">
<displayName>فریٛنچ یوٗ اے سی فرینک</displayName>
</currency>
<currency type="XOF">
<displayName>سی ایٚف اے فرینک بی سی ایٖ اے او</displayName>
</currency>
<currency type="XPD">
<displayName>پُلیڈیَم</displayName>
</currency>
<currency type="XPF">
<displayName>سی ایٚف پی فرینک</displayName>
</currency>
<currency type="XPT">
<displayName>پلیٹِنَم</displayName>
</currency>
<currency type="XRE">
<displayName>آر آے ایٚن ایٖ ٹی فَنٛڈ</displayName>
</currency>
<currency type="XTS">
<displayName>ٹیٚسٹِنٛگ کَرَنسی کوڈ</displayName>
</currency>
<currency type="XXX">
<displayName>اَنزٲنۍ یا نالَگہٕ ہار سِکہٕ</displayName>
</currency>
<currency type="YDD">
<displayName>یَمنُک دیٖنار</displayName>
</currency>
<currency type="YER">
<displayName>یَمنُک رِیال</displayName>
</currency>
<currency type="YUD">
<displayName>یوگوسلاوِیَن ہاڑ دیٖنار</displayName>
</currency>
<currency type="YUM">
<displayName>یوگوسلاوِیَن نووِے دیٖنار</displayName>
</currency>
<currency type="YUN">
<displayName>یوگوسلاوِیَن کَنؤٹِبٕل دیٖنار</displayName>
</currency>
<currency type="ZAR">
<displayName>ساوُتھ افریٖکاہُک رینڈ</displayName>
</currency>
<currency type="ZMK">
<displayName>زِمبابیُک کواچا (1968–2012)</displayName>
</currency>
<currency type="ZMW">
<displayName>زِمبابیُک کواچا</displayName>
</currency>
<currency type="ZRN">
<displayName>زایرِیَن نِو زایِر</displayName>
</currency>
<currency type="ZRZ">
<displayName>زَیرُک ڈالَر</displayName>
</currency>
<currency type="ZWD">
<displayName>زِمبابِیُک ڈالَر</displayName>
</currency>
</currencies>
</numbers>
<units>
<unitLength type="long">
<unit type="duration-year">
<displayName draft="provisional">ؤری</displayName>
<unitPattern count="one">{0} ؤری</unitPattern>
<unitPattern count="other">{0} ؤری</unitPattern>
</unit>
<unit type="duration-month">
<displayName draft="provisional">ریٚتھ</displayName>
<unitPattern count="one">{0} ریٚتھ</unitPattern>
<unitPattern count="other">{0} ریٚتھ</unitPattern>
</unit>
<unit type="duration-week">
<displayName draft="provisional">ہَفتہٕ</displayName>
<unitPattern count="one">{0} ہَفتہٕ</unitPattern>
<unitPattern count="other">{0} ہَفتہٕ</unitPattern>
</unit>
<unit type="duration-day">
<displayName draft="provisional">دۄہ</displayName>
<unitPattern count="one">{0} دۄہ</unitPattern>
<unitPattern count="other">{0} دۄہ</unitPattern>
</unit>
<unit type="duration-hour">
<displayName draft="provisional">گٲنٛٹہٕ</displayName>
<unitPattern count="one">{0} گَنٹہٕ</unitPattern>
<unitPattern count="other">{0} گٲنٛٹہٕ</unitPattern>
</unit>
<unit type="duration-minute">
<displayName draft="provisional">مِنَٹ</displayName>
<unitPattern count="one">{0} مِنَٹ</unitPattern>
<unitPattern count="other">{0} مِنَٹ</unitPattern>
</unit>
<unit type="duration-second">
<displayName draft="provisional">سیٚکَنٛڈ</displayName>
<unitPattern count="one">{0} سیٚکَنٛڈ</unitPattern>
<unitPattern count="other">{0} سیٚکَنٛڈ</unitPattern>
</unit>
</unitLength>
<unitLength type="short">
<unit type="duration-year">
<displayName draft="provisional">ؤری</displayName>
</unit>
<unit type="duration-month">
<displayName draft="provisional">ریٚتھ</displayName>
</unit>
<unit type="duration-week">
<displayName draft="provisional">ہَفتہٕ</displayName>
</unit>
<unit type="duration-day">
<displayName draft="provisional">دۄہ</displayName>
</unit>
<unit type="duration-hour">
<displayName draft="provisional">گٲنٛٹہٕ</displayName>
</unit>
<unit type="duration-minute">
<displayName draft="provisional">مِنَٹ</displayName>
</unit>
<unit type="duration-second">
<displayName draft="provisional">سیٚکَنٛڈ</displayName>
</unit>
</unitLength>
</units>
<posix>
<messages>
<yesstr>اۭں</yesstr>
<nostr>نَہ</nostr>
</messages>
</posix>
</ldml>
|