File: mzn.xml

package info (click to toggle)
unicode-cldr-core 32.0.1-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 161,808 kB
  • sloc: xml: 1,825,337; sh: 10; makefile: 2
file content (2794 lines) | stat: -rw-r--r-- 120,037 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2017 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: 13186 $"/>
		<language type="mzn"/>
	</identity>
	<localeDisplayNames>
		<localeDisplayPattern>
			<localePattern>{0} ({1})</localePattern>
			<localeSeparator>{0}, {1}</localeSeparator>
			<localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
		</localeDisplayPattern>
		<languages>
			<language type="ab">آبخازی</language>
			<language type="af">آفریکانس</language>
			<language type="agq">آقم</language>
			<language type="ak">آکان</language>
			<language type="am">امهری</language>
			<language type="ar">عربی</language>
			<language type="ar_001">مدرن استاندارد عربی</language>
			<language type="arn">ماپوچه</language>
			<language type="as">آسامی</language>
			<language type="asa">آسو</language>
			<language type="az">آذری ِترکی</language>
			<language type="az" alt="short">آذری</language>
			<language type="az_Arab">جنوبی آذری ترکی</language>
			<language type="ba">باشقیری</language>
			<language type="be">بلاروسی</language>
			<language type="bem">بمبایی</language>
			<language type="bez">بنایی</language>
			<language type="bg">بلغاری</language>
			<language type="bgn">غربی بلوچی</language>
			<language type="bm">بامبارایی</language>
			<language type="bn">بنگالی</language>
			<language type="bo">تبتی</language>
			<language type="br">برِتونی</language>
			<language type="brx">بدویی</language>
			<language type="bs">بوسنیایی</language>
			<language type="ca">کاتالونی</language>
			<language type="ce">چچنی</language>
			<language type="cgg">چیگا</language>
			<language type="chr">چروکیایی</language>
			<language type="ckb">میونی کوردی</language>
			<language type="co">کورسیکان</language>
			<language type="cs">چکی</language>
			<language type="cv">چوواشی</language>
			<language type="cy">ولزی</language>
			<language type="da">دانمارکی</language>
			<language type="dav">تایتا</language>
			<language type="de">آلمانی</language>
			<language type="de_AT">اتریش ِآلمانی</language>
			<language type="de_CH">سوییس ِآلمانی</language>
			<language type="dje">زارمایی</language>
			<language type="dsb">پایین صربی</language>
			<language type="dua">دوئالایی</language>
			<language type="dyo">جولا-فونی</language>
			<language type="dz">دزونگخا</language>
			<language type="ebu">امبو</language>
			<language type="ee">اوه‌یی</language>
			<language type="el">یونانی</language>
			<language type="en">انگلیسی</language>
			<language type="en_AU">استرالیای ِانگلیسی</language>
			<language type="en_CA">کانادای ِانگلیسی</language>
			<language type="en_GB">بریتیش انگلیسی</language>
			<language type="en_GB" alt="short">بریتانیای ِانگلیسی</language>
			<language type="en_US">امریکن انگلیسی</language>
			<language type="en_US" alt="short">آمریکای ِانگلیسی</language>
			<language type="eo">اسپرانتو</language>
			<language type="es">ایسپانیولی</language>
			<language type="es_419">جنوبی آمریکای ِایسپانیولی</language>
			<language type="es_ES">اروپای ِایسپانیولی</language>
			<language type="es_MX">مکزیک ِایسپانیولی</language>
			<language type="et">استونیایی</language>
			<language type="eu">باسکی</language>
			<language type="fa">فارسی</language>
			<language type="fi">فینیش</language>
			<language type="fil">فیلیپینو</language>
			<language type="fj">فیجیایی</language>
			<language type="fo">فارویی</language>
			<language type="fr">فرانسوی</language>
			<language type="fr_CA">کانادای ِفرانسوی</language>
			<language type="fr_CH">سوییس ِفرانسوی</language>
			<language type="fy">غربی فیریزی</language>
			<language type="ga">ایریش</language>
			<language type="gag">گاگائوزی</language>
			<language type="gl">گالیک</language>
			<language type="gn">گورانی</language>
			<language type="gsw">سوییس آلمانی</language>
			<language type="gu">گجراتی</language>
			<language type="guz">گوسی</language>
			<language type="gv">مانکس</language>
			<language type="ha">هوسا</language>
			<language type="haw">هاواییایی</language>
			<language type="he">عبری</language>
			<language type="hi">هندی</language>
			<language type="hr">کرواتی</language>
			<language type="hsb">بالایی صربی</language>
			<language type="ht">هائتیایی</language>
			<language type="hu">مجاری</language>
			<language type="hy">ارمنی</language>
			<language type="id">اندونزیایی</language>
			<language type="ig">ایگبو</language>
			<language type="ii">سیچوئان یی</language>
			<language type="is">ایسلندی</language>
			<language type="it">ایتالیایی</language>
			<language type="iu">انوکتیتوت</language>
			<language type="ja">جاپونی</language>
			<language type="jgo">نگومبا</language>
			<language type="jmc">ماچامه</language>
			<language type="jv">جاوایی</language>
			<language type="ka">گرجی</language>
			<language type="kab">قبایلی</language>
			<language type="kam">کامبایی</language>
			<language type="kde">ماکونده</language>
			<language type="kea">کیپ وُردی</language>
			<language type="khq">کویرا چیینی</language>
			<language type="ki">کیکویو</language>
			<language type="kk">قزاقی</language>
			<language type="kl">کالائلیسوت</language>
			<language type="kln">کالنجین</language>
			<language type="km">خمری</language>
			<language type="kn">کانّادا</language>
			<language type="ko">کُره‌یی</language>
			<language type="koi">کومی-پرمیاک</language>
			<language type="kok">کونکانی</language>
			<language type="ks">کشمیری</language>
			<language type="ksb">شامبالا</language>
			<language type="ksf">بافیایی</language>
			<language type="ku">کوردی</language>
			<language type="kw">کورنیش</language>
			<language type="ky">قرقیزی</language>
			<language type="la">لاتین</language>
			<language type="lag">لانگی</language>
			<language type="lb">لوکزامبورگی</language>
			<language type="lg">گاندا</language>
			<language type="lkt">لاکوتا</language>
			<language type="ln">لینگالا</language>
			<language type="lo">لائویی</language>
			<language type="lrc">شمالی لُری</language>
			<language type="lt">لتونیایی</language>
			<language type="lu">لوبا-کاتانگا</language>
			<language type="luo">لوئو</language>
			<language type="luy">لوییا</language>
			<language type="lv">لاتویایی</language>
			<language type="mas">ماسایی</language>
			<language type="mer">مِرویی</language>
			<language type="mfe">موریسین</language>
			<language type="mg">مالاگاسی</language>
			<language type="mgh">ماخوئا-میتو</language>
			<language type="mgo">مِتاء</language>
			<language type="mi">مائوری</language>
			<language type="mk">مقدونی</language>
			<language type="ml">مالایالام</language>
			<language type="mn">مغولی</language>
			<language type="moh">موهاک</language>
			<language type="mr">ماراتی</language>
			<language type="ms">مالایی</language>
			<language type="mt">مالتی</language>
			<language type="mua">موندانگ</language>
			<language type="my">برمه‌یی</language>
			<language type="mzn">مازرونی</language>
			<language type="naq">ناما</language>
			<language type="nb">نروژی بوکمال</language>
			<language type="nd">شمالی ندبله</language>
			<language type="nds">پایین آلمانی</language>
			<language type="nds_NL">پایین ساکسونی</language>
			<language type="ne">نپالی</language>
			<language type="nl">هلندی</language>
			<language type="nl_BE">فلمیش</language>
			<language type="nmg">کوئاسیو</language>
			<language type="nn">نروژی نینورسک</language>
			<language type="nqo">نئکو</language>
			<language type="nus">نوئر</language>
			<language type="nyn">نیانکوله</language>
			<language type="om">اورومو</language>
			<language type="or">اوریا</language>
			<language type="pa">پنجابی</language>
			<language type="pl">لهستونی</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="quc">کئیچه‌ئی</language>
			<language type="rm">رومانش</language>
			<language type="rn">روندی</language>
			<language type="ro">رومانیایی</language>
			<language type="ro_MD">مولداوی</language>
			<language type="rof">رومبو</language>
			<language type="ru">روسی</language>
			<language type="rw">کنیاروآندایی</language>
			<language type="rwk">روآیی</language>
			<language type="sa">سانسکریت</language>
			<language type="saq">سامبورو</language>
			<language type="sbp">سانگوو</language>
			<language type="sd">سندی</language>
			<language type="sdh">جنوبی کردی</language>
			<language type="se">شمالی سامی</language>
			<language type="seh">سِنایی</language>
			<language type="ses">کویرابورا سنی</language>
			<language type="sg">سانگو</language>
			<language type="shi">تاچلهیت</language>
			<language type="si">سینهالا</language>
			<language type="sk">اسلواکی</language>
			<language type="sl">اسلوونیایی</language>
			<language type="sma">جنوبی سامی</language>
			<language type="smj">لوله سامی</language>
			<language type="smn">ایناری سامی</language>
			<language type="sms">سکولت سامی</language>
			<language type="sn">شونا</language>
			<language type="so">سومالیایی</language>
			<language type="sq">آلبانیایی</language>
			<language type="sr">صربی</language>
			<language type="su">سوندانسی</language>
			<language type="sv">سوئدی</language>
			<language type="sw">سواحیلی</language>
			<language type="sw_CD">کنگو سواحیلی</language>
			<language type="ta">تامیلی</language>
			<language type="te">تلوگویی</language>
			<language type="teo">تسویی</language>
			<language type="tg">تاجیکی</language>
			<language type="th">تایی</language>
			<language type="ti">تیگرینیایی</language>
			<language type="tk">ترکمونی</language>
			<language type="to">تونگانی</language>
			<language type="tr">ترکی</language>
			<language type="tt">تاتاری</language>
			<language type="twq">تاساواقی</language>
			<language type="tzm">میونی اطلس تامزیقی</language>
			<language type="ug">ئوغوری</language>
			<language type="uk">اوکراینی</language>
			<language type="und">نشناسی‌یه زوون</language>
			<language type="ur">اردو</language>
			<language type="uz">ازبکی</language>
			<language type="vai">وایی</language>
			<language type="vi">ویتنامی</language>
			<language type="vun">وونجویی</language>
			<language type="wbp">والرپیری</language>
			<language type="wo">وولفی</language>
			<language type="xh">خوسا</language>
			<language type="xog">سوگا</language>
			<language type="yo">یوروبا</language>
			<language type="zgh">مراکش ِاستاندارد ِتامازیقتی</language>
			<language type="zh">چینی</language>
			<language type="zh_Hans">ساده چینی</language>
			<language type="zh_Hant">سنتی چینی</language>
			<language type="zu">زولو</language>
			<language type="zxx">این زوون بشناسی‌یه نیّه</language>
		</languages>
		<scripts>
			<script type="Arab">عربی</script>
			<script type="Armn">ارمنی</script>
			<script type="Beng">بنگالی</script>
			<script type="Bopo">بوپوموفو</script>
			<script type="Cyrl">سیریلیک</script>
			<script type="Deva">دیوانانگری</script>
			<script type="Ethi">اتیوپیایی</script>
			<script type="Geor">گرجی</script>
			<script type="Grek">یونانی</script>
			<script type="Gujr">گجراتی</script>
			<script type="Guru">گورموخی</script>
			<script type="Hang">هانگول</script>
			<script type="Hani">هان</script>
			<script type="Hans">ساده‌بَیی هان</script>
			<script type="Hans" alt="stand-alone">ساده‌بَیی هان</script>
			<script type="Hant">سنتی هانت</script>
			<script type="Hant" alt="stand-alone">استاندارد ِسنتی هانت</script>
			<script type="Hebr">عبری</script>
			<script type="Hira">هیراگانا</script>
			<script type="Jpan">جاپونی</script>
			<script type="Kana">کاتاکانا</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="AC">آسنسیون جزیره</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="CD" alt="variant">کنگو (دموکراتیک جمهوری)</territory>
			<territory type="CF">مرکزی آفریقای جمهوری</territory>
			<territory type="CG">کنگو برازاویل</territory>
			<territory type="CG" alt="variant">کنگو (جمهوری)</territory>
			<territory type="CH">سوییس</territory>
			<territory type="CI">عاج ِساحل</territory>
			<territory type="CI" alt="variant">عاج ساحل</territory>
			<territory type="CK">کوک جزایر</territory>
			<territory type="CL">شیلی</territory>
			<territory type="CM">کامرون</territory>
			<territory type="CN">چین</territory>
			<territory type="CO">کلمبیا</territory>
			<territory type="CP">کلیپرتون جزیره</territory>
			<territory type="CR">کاستاریکا</territory>
			<territory type="CU">کوبا</territory>
			<territory type="CV">کیپ ورد</territory>
			<territory type="CW">کوراسائو</territory>
			<territory type="CX">کریسمس جزیره</territory>
			<territory type="CY">قبرس</territory>
			<territory type="CZ">چک جمهوری</territory>
			<territory type="DE">آلمان</territory>
			<territory type="DG">دیگو گارسیا</territory>
			<territory type="DJ">جیبوتی</territory>
			<territory type="DK">دانمارک</territory>
			<territory type="DM">دومنیکا</territory>
			<territory type="DO">دومنیکن جمهوری</territory>
			<territory type="DZ">الجزیره</territory>
			<territory type="EA">سوتا و ملیله</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="EU">اروپا اتحادیه</territory>
			<territory type="FI">فنلاند</territory>
			<territory type="FJ">فیجی</territory>
			<territory type="FK">فالکلند جزیره‌ئون</territory>
			<territory type="FK" alt="variant">فالکلند (مالویناس)</territory>
			<territory type="FM">میکرونزی</territory>
			<territory type="FO">فارو جزایر</territory>
			<territory type="FR">فرانسه</territory>
			<territory type="GA">گابون</territory>
			<territory type="GB">بریتانیا</territory>
			<territory type="GB" alt="short">بریتانیا</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="HK" alt="short">هونگ کونگ</territory>
			<territory type="HM">هارد و مک‌دونالد جزایر</territory>
			<territory type="HN">هندوراس</territory>
			<territory type="HR">کرواسی</territory>
			<territory type="HT">هاییتی</territory>
			<territory type="HU">مجارستون</territory>
			<territory type="IC">قناری جزایر</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="JO">اردن</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="MK" alt="variant">مقدونیه جمهوری</territory>
			<territory type="ML">مالی</territory>
			<territory type="MM">میانمار</territory>
			<territory type="MN">مغولستون</territory>
			<territory type="MO">ماکائو (چین دله)</territory>
			<territory type="MO" alt="short">ماکائو</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="PS" alt="short">فلسطین</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="SS">جنوبی سودان</territory>
			<territory type="ST">سائوتومه و پرینسیپ</territory>
			<territory type="SV">السالوادور</territory>
			<territory type="SX">سنت مارتن</territory>
			<territory type="SY">سوریه</territory>
			<territory type="SZ">سوازیلند</territory>
			<territory type="TA">تریستان دا جونها</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="TL" alt="variant">شرقی تیمور</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="US" alt="short">آمریکا متحده ایالات</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="XK">کوزوو</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>
		<measurementSystemNames>
			<measurementSystemName type="metric">متریک</measurementSystemName>
			<measurementSystemName type="UK">بریتانیایی</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>
			<lineOrder>top-to-bottom</lineOrder>
		</orientation>
	</layout>
	<characters>
		<exemplarCharacters>[\u064B \u064C \u064D \u0651 \u0654 ء آ أ ؤ ئ ا ب پ ة ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ه و ی]</exemplarCharacters>
		<exemplarCharacters type="auxiliary">[\u200C\u200D\u200E\u200F \u064E \u064F \u0650 \u0652 \u0656 \u0670 إ ك ى ي]</exemplarCharacters>
		<exemplarCharacters type="index">[آ ا ب پ ت ث ج چ ح خ د ذ ر ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن ه و ی]</exemplarCharacters>
		<exemplarCharacters type="punctuation">[\- ‐ ، ٫ ٬ ؛ \: ! ؟ . … ‹ › « » ( ) \[ \] * / \\]</exemplarCharacters>
		<ellipsis type="final">{0}…</ellipsis>
		<ellipsis type="initial">…{0}</ellipsis>
		<ellipsis type="medial">{0}…{1}</ellipsis>
		<ellipsis type="word-final">{0} …</ellipsis>
		<ellipsis type="word-initial">… {0}</ellipsis>
		<ellipsis type="word-medial">{0} … {1}</ellipsis>
		<moreInformation>؟</moreInformation>
	</characters>
	<delimiters>
		<quotationStart>«</quotationStart>
		<quotationEnd>»</quotationEnd>
		<alternateQuotationStart>‹</alternateQuotationStart>
		<alternateQuotationEnd>›</alternateQuotationEnd>
	</delimiters>
	<dates>
		<calendars>
			<calendar type="gregorian">
				<months>
					<monthContext type="format">
						<monthWidth type="abbreviated">
							<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>
						<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="abbreviated">
							<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>
						<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>
				<eras>
					<eraNames>
						<era type="0">قبل میلاد</era>
						<era type="0" alt="variant">قبل میلادی تقویم</era>
						<era type="1">بعد میلاد</era>
						<era type="1" alt="variant">میلادی</era>
					</eraNames>
					<eraAbbr>
						<era type="0">پ.م</era>
						<era type="0" alt="variant">پ.م.</era>
						<era type="1">م.</era>
						<era type="1" alt="variant">م</era>
					</eraAbbr>
				</eras>
			</calendar>
		</calendars>
		<fields>
			<field type="era">
				<displayName>تقویم</displayName>
			</field>
			<field type="year">
				<displayName>سال</displayName>
				<relative type="-1">پارسال</relative>
				<relative type="0">امسال</relative>
				<relative type="1">سال دیگه</relative>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} سال دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} سال پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="year-short">
				<displayName>سال</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} سال دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} سال پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="year-narrow">
				<displayName>سال</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} سال دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} سال پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="quarter">
				<displayName>ربع</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ربع دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ربع پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="quarter-short">
				<displayName>ربع</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ربع دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ربع پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="quarter-narrow">
				<displayName>ربع</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ربع دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ربع پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="month">
				<displayName>ماه</displayName>
				<relative type="-1">ماه قبل</relative>
				<relative type="0">این ماه</relative>
				<relative type="1">ماه ِبعد</relative>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ماه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ماه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="month-short">
				<displayName>ماه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ماه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ماه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="month-narrow">
				<displayName>ماه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ماه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ماه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="week">
				<displayName>هفته</displayName>
				<relative type="-1">قبلی هفته</relative>
				<relative type="0">این هفته</relative>
				<relative type="1">بعدی هفته</relative>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} هفته دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} هفته پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="week-short">
				<displayName>هفته</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} هفته دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} هفته پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="week-narrow">
				<displayName>هفته</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} هفته دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} هفته پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="day">
				<displayName>روز</displayName>
				<relative type="-1">دیروز</relative>
				<relative type="0">اَمروز</relative>
				<relative type="1">فِردا</relative>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} روز دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} روز پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="day-short">
				<displayName>روز</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} روز دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} روز پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="day-narrow">
				<displayName>روز</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} روز دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} روز پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="weekday">
				<displayName>هفته‌ی ِروز</displayName>
			</field>
			<field type="sun">
				<relative type="-1">قبلی یکشنبه</relative>
				<relative type="0">این یکشنبه</relative>
				<relative type="1">بعدی یکشنبه</relative>
			</field>
			<field type="sun-short">
				<relative type="-1">یکشنبه قبل</relative>
				<relative type="0">این یکشنبه</relative>
				<relative type="1">یکشنبه بعد</relative>
			</field>
			<field type="sun-narrow">
				<relative type="-1">قبلی یکشنبه</relative>
				<relative type="0">این یکشنبه</relative>
				<relative type="1">بعدی یکشنبه</relative>
			</field>
			<field type="mon">
				<relative type="-1">قبلی دِشنبه</relative>
				<relative type="0">این دِشنبه</relative>
				<relative type="1">بعدی دِشنبه</relative>
			</field>
			<field type="mon-short">
				<relative type="-1">قبلی دِشنبه</relative>
				<relative type="0">این دِشنبه</relative>
				<relative type="1">بعدی دِشنبه</relative>
			</field>
			<field type="mon-narrow">
				<relative type="-1">قبلی دِشنبه</relative>
				<relative type="0">این دِشنبه</relative>
				<relative type="1">بعدی دِشنبه</relative>
			</field>
			<field type="tue">
				<relative type="-1">قبلی سه‌شنبه</relative>
				<relative type="0">این سه‌شنبه</relative>
				<relative type="1">بعدی سه‌شنبه</relative>
			</field>
			<field type="tue-short">
				<relative type="-1">قبلی سه‌شنبه</relative>
				<relative type="0">این سه‌شنبه</relative>
				<relative type="1">بعدی سه‌شنبه</relative>
			</field>
			<field type="tue-narrow">
				<relative type="-1">قبلی سه‌شنبه</relative>
				<relative type="0">این سه‌شنبه</relative>
				<relative type="1">بعدی سه‌شنبه</relative>
			</field>
			<field type="wed">
				<relative type="-1">قبلی چارشنبه</relative>
				<relative type="0">این چارشنبه</relative>
				<relative type="1">بعدی چارشنبه</relative>
			</field>
			<field type="wed-short">
				<relative type="-1">قبلی چارشنبه</relative>
				<relative type="0">این چارشنبه</relative>
				<relative type="1">بعدی چارشنبه</relative>
			</field>
			<field type="wed-narrow">
				<relative type="-1">قبلی چارشنبه</relative>
				<relative type="0">این چارشنبه</relative>
				<relative type="1">بعدی چارشنبه</relative>
			</field>
			<field type="thu">
				<relative type="-1">قبلی پنجشنبه</relative>
				<relative type="0">این پنجشنبه</relative>
				<relative type="1">بعدی پنجشنبه</relative>
			</field>
			<field type="thu-short">
				<relative type="-1">قبلی پنجشنبه</relative>
				<relative type="0">این پنجشنبه</relative>
				<relative type="1">بعدی پنجشنبه</relative>
			</field>
			<field type="thu-narrow">
				<relative type="-1">قبلی پنجشنبه</relative>
				<relative type="0">این پنجشنبه</relative>
				<relative type="1">بعدی پنجشنبه</relative>
			</field>
			<field type="fri">
				<relative type="-1">قبلی جومه</relative>
				<relative type="0">این جومه</relative>
				<relative type="1">بعدی جومه</relative>
			</field>
			<field type="fri-short">
				<relative type="-1">قبلی جومه</relative>
				<relative type="0">این جومه</relative>
				<relative type="1">بعدی جومه</relative>
			</field>
			<field type="fri-narrow">
				<relative type="-1">قبلی جومه</relative>
				<relative type="0">این جومه</relative>
				<relative type="1">بعدی جومه</relative>
			</field>
			<field type="sat">
				<relative type="-1">قبلی شنبه</relative>
				<relative type="0">این شنبه</relative>
				<relative type="1">بعدی شنبه</relative>
			</field>
			<field type="sat-short">
				<relative type="-1">قبلی شنبه</relative>
				<relative type="0">این شنبه</relative>
				<relative type="1">بعدی شنبه</relative>
			</field>
			<field type="sat-narrow">
				<relative type="-1">قبلی شنبه</relative>
				<relative type="0">این شنبه</relative>
				<relative type="1">بعدی شنبه</relative>
			</field>
			<field type="dayperiod">
				<displayName>صواحی/ظُر</displayName>
			</field>
			<field type="hour">
				<displayName>ساعِت</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ساعِت دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ساعِت پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="hour-short">
				<displayName>ساعت</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ساعت دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ساعت پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="hour-narrow">
				<displayName>ساعت</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ساعت دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ساعت پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="minute">
				<displayName>دقیقه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} دقیقه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} دَقه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="minute-short">
				<displayName>دَقه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} دَقه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} دَقه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="minute-narrow">
				<displayName>دَقه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} دَقه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} دَقه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="second">
				<displayName>ثانیه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ثانیه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ثانیه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="second-short">
				<displayName>ثانیه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ثانیه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ثانیه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="second-narrow">
				<displayName>ثانیه</displayName>
				<relativeTime type="future">
					<relativeTimePattern count="other">{0} ثانیه دله</relativeTimePattern>
				</relativeTime>
				<relativeTime type="past">
					<relativeTimePattern count="other">{0} ثانیه پیش</relativeTimePattern>
				</relativeTime>
			</field>
			<field type="zone">
				<displayName>زمونی منقطه</displayName>
			</field>
		</fields>
		<timeZoneNames>
			<hourFormat>+HH:mm;-HH:mm</hourFormat>
			<gmtFormat>GMT{0}</gmtFormat>
			<gmtZeroFormat>GMT</gmtZeroFormat>
			<regionFormat>{0}</regionFormat>
			<regionFormat type="daylight">{0} (+1)</regionFormat>
			<regionFormat type="standard">{0} (+0)</regionFormat>
			<fallbackFormat>{1} ({0})</fallbackFormat>
		</timeZoneNames>
	</dates>
	<numbers>
		<defaultNumberingSystem draft="contributed">arabext</defaultNumberingSystem>
		<otherNumberingSystems>
			<native draft="contributed">arabext</native>
		</otherNumberingSystems>
		<currencies>
			<currency type="AED">
				<displayName>متحده عربی امارات ِدرهم</displayName>
				<displayName count="other">امارات ِدرهم</displayName>
				<symbol draft="contributed">AED</symbol>
			</currency>
			<currency type="AFN">
				<displayName>افغانستون ِافغانی</displayName>
				<displayName count="other">افغانستون ِافغانی</displayName>
				<symbol draft="contributed">AFN</symbol>
			</currency>
			<currency type="ALL">
				<displayName>آلبانی ِلک</displayName>
				<displayName count="other">آلبانی ِلک</displayName>
				<symbol draft="contributed">ALL</symbol>
			</currency>
			<currency type="AMD">
				<displayName>ارمنستون درهم</displayName>
				<displayName count="other">ارمنستون درهم</displayName>
				<symbol draft="contributed">AMD</symbol>
			</currency>
			<currency type="ANG">
				<displayName>هلند ِآنتیل ِجزایر ِگویلدر</displayName>
				<displayName count="other">هلند ِآنتیل ِجزایر ِگویلدر</displayName>
				<symbol draft="contributed">ANG</symbol>
			</currency>
			<currency type="AOA">
				<displayName>آنگولای ِکوانزا</displayName>
				<displayName count="other">آنگولای ِکوانزا</displayName>
				<symbol draft="contributed">AOA</symbol>
				<symbol alt="narrow" draft="contributed">Kz</symbol>
			</currency>
			<currency type="ARS">
				<displayName>آرژانتین ِپزو</displayName>
				<displayName count="other">آرژانتین ِپزو</displayName>
				<symbol draft="contributed">ARS</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="AWG">
				<displayName>آروبای ِفلورن</displayName>
				<displayName count="other">آروبای فلورن</displayName>
				<symbol draft="contributed">AWG</symbol>
			</currency>
			<currency type="AZN">
				<displayName>آذربایجون ِمنات</displayName>
				<displayName count="other">آذربایجون ِمنات</displayName>
				<symbol draft="contributed">AZN</symbol>
			</currency>
			<currency type="BAM">
				<displayName>بوسنی و هرزگوین ِتبدیل‌بَیی مارک</displayName>
				<displayName count="other">بوسنی و هرزگوین ِتبدیل‌بَیی مارک</displayName>
				<symbol draft="contributed">BAM</symbol>
				<symbol alt="narrow" draft="contributed">KM</symbol>
			</currency>
			<currency type="BBD">
				<displayName>باربادوس ِدولار</displayName>
				<displayName count="other">باربادوس دلار</displayName>
				<symbol draft="contributed">BBD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="BDT">
				<displayName>بنگلادش ِتاکا</displayName>
				<displayName count="other">بنگلادش ِتاکا</displayName>
				<symbol draft="contributed">BDT</symbol>
				<symbol alt="narrow" draft="contributed">৳</symbol>
			</currency>
			<currency type="BGN">
				<displayName>بلغارستون ِلیوا</displayName>
				<displayName count="other">بلغارستون ِلیوا</displayName>
				<symbol draft="contributed">BGN</symbol>
			</currency>
			<currency type="BHD">
				<displayName>بحرین ِدینار</displayName>
				<displayName count="other">بحرین ِدینار</displayName>
				<symbol draft="contributed">BHD</symbol>
			</currency>
			<currency type="BIF">
				<displayName>بوروندی ِفرانک</displayName>
				<displayName count="other">بوروندی ِفرانک</displayName>
				<symbol draft="contributed">BIF</symbol>
			</currency>
			<currency type="BMD">
				<displayName>برمودای ِدولار</displayName>
				<displayName count="other">برمودای ِدلار</displayName>
				<symbol draft="contributed">BMD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="BND">
				<displayName>برونئی ِدولار</displayName>
				<displayName count="other">برونئی دلار</displayName>
				<symbol draft="contributed">BND</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="BOB">
				<displayName>بولیوی ِبولیویانو</displayName>
				<displayName count="other">بولیوی ِبولیویانو</displayName>
				<symbol draft="contributed">BOB</symbol>
				<symbol alt="narrow" draft="contributed">Bs</symbol>
			</currency>
			<currency type="BRL">
				<displayName>برزیل ِرئال</displayName>
				<displayName count="other">برزیل ِرئال</displayName>
				<symbol draft="contributed">R$</symbol>
				<symbol alt="narrow" draft="contributed">R$</symbol>
			</currency>
			<currency type="BSD">
				<displayName>باهامای ِدولار</displayName>
				<displayName count="other">باهامای ِدولار</displayName>
				<symbol draft="contributed">BSD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="BTN">
				<displayName>بوتان ِنگولتروم</displayName>
				<displayName count="other">بوتان ِنگولتروم</displayName>
				<symbol draft="contributed">BTN</symbol>
			</currency>
			<currency type="BWP">
				<displayName>بوتساوانای ِپولا</displayName>
				<displayName count="other">بوتساوانای ِپولا</displayName>
				<symbol draft="contributed">BWP</symbol>
				<symbol alt="narrow" draft="contributed">P</symbol>
			</currency>
			<currency type="BYN">
				<displayName>بلاروس ِروبل</displayName>
				<displayName count="other">بلاروس ِروبل</displayName>
				<symbol draft="contributed">BYN</symbol>
				<symbol alt="narrow" draft="contributed">р.</symbol>
			</currency>
			<currency type="BYR">
				<displayName>بلاروس ِروبل (۲۰۰۰–۲۰۱۶)</displayName>
				<displayName count="other">بلاروس ِروبل (۲۰۰۰–۲۰۱۶)</displayName>
				<symbol draft="contributed">BYR</symbol>
			</currency>
			<currency type="BZD">
				<displayName>بلیز ِدولار</displayName>
				<displayName count="other">بلیز دلار</displayName>
				<symbol draft="contributed">BZD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="CAD">
				<displayName>کانادای ِدولار</displayName>
				<displayName count="other">کانادای ِدلار</displayName>
				<symbol draft="contributed">CA$</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="CDF">
				<displayName>کنگوی ِفرانک</displayName>
				<displayName count="other">کنگوی ِفرانک</displayName>
				<symbol draft="contributed">CDF</symbol>
			</currency>
			<currency type="CHF">
				<displayName>سوییس ِفرانک</displayName>
				<displayName count="other">سوییس ِفرانک</displayName>
				<symbol draft="contributed">CHF</symbol>
			</currency>
			<currency type="CLP">
				<displayName>شیلی ِپزو</displayName>
				<displayName count="other">شیلی ِپزو</displayName>
				<symbol draft="contributed">CLP</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="CNY">
				<displayName>چین ِیوآن</displayName>
				<displayName count="other">چین ِیوآن</displayName>
				<symbol draft="contributed">CN¥</symbol>
				<symbol alt="narrow" draft="contributed">¥</symbol>
			</currency>
			<currency type="COP">
				<displayName>کلمبیای ِپزو</displayName>
				<displayName count="other">کلمبیای ِپزو</displayName>
				<symbol draft="contributed">COP</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="CRC">
				<displayName>کاستاریکای ِکولون</displayName>
				<displayName count="other">کاستاریکا کولون</displayName>
				<symbol draft="contributed">CRC</symbol>
				<symbol alt="narrow" draft="contributed">₡</symbol>
			</currency>
			<currency type="CUC">
				<displayName>کوبای ِتبدیل‌بَیی پزو</displayName>
				<displayName count="other">کوبای تبدیل‌بَیی پزو</displayName>
				<symbol draft="contributed">CUC</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="CUP">
				<displayName>کوبای ِپزو</displayName>
				<displayName count="other">کوبای پزو</displayName>
				<symbol draft="contributed">CUP</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="CVE">
				<displayName>عاج ِساحل ِایسکودو</displayName>
				<displayName count="other">عاج ِساحل ِایسکودو</displayName>
				<symbol draft="contributed">CVE</symbol>
			</currency>
			<currency type="CZK">
				<displayName>چک ِکرون</displayName>
				<displayName count="other">چک ِکرون</displayName>
				<symbol draft="contributed">CZK</symbol>
				<symbol alt="narrow" draft="contributed">Kč</symbol>
			</currency>
			<currency type="DJF">
				<displayName>جیبوتی ِفرانک</displayName>
				<displayName count="other">جیبوتی ِفرانک</displayName>
				<symbol draft="contributed">DJF</symbol>
			</currency>
			<currency type="DKK">
				<displayName>دانمارک ِکورن</displayName>
				<displayName count="other">دانمارک ِکورن</displayName>
				<symbol draft="contributed">DKK</symbol>
				<symbol alt="narrow" draft="contributed">kr</symbol>
			</currency>
			<currency type="DOP">
				<displayName>دومینیکن ِپزو</displayName>
				<displayName count="other">دومینیکن پزو</displayName>
				<symbol draft="contributed">DOP</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="DZD">
				<displayName>الجزیره‌ی ِدینار</displayName>
				<displayName count="other">الجزیره‌ی ِدینار</displayName>
				<symbol draft="contributed">DZD</symbol>
			</currency>
			<currency type="EGP">
				<displayName>مصر ِپوند</displayName>
				<displayName count="other">مصر ِپوند</displayName>
				<symbol draft="contributed">EGP</symbol>
				<symbol alt="narrow" draft="contributed">E£</symbol>
			</currency>
			<currency type="ERN">
				<displayName>اریتره‌ی ِناکفا</displayName>
				<displayName count="other">اریتره‌ی ِناکفا</displayName>
				<symbol draft="contributed">ERN</symbol>
			</currency>
			<currency type="ETB">
				<displayName>اتیوپی ِبیر</displayName>
				<displayName count="other">اتیوپی ِبیر</displayName>
				<symbol draft="contributed">ETB</symbol>
			</currency>
			<currency type="EUR">
				<displayName>یورو</displayName>
				<displayName count="other">یورو</displayName>
				<symbol draft="contributed">€</symbol>
				<symbol alt="narrow" draft="contributed">€</symbol>
			</currency>
			<currency type="FKP">
				<displayName>فالکلند ِجزایر ِپوند</displayName>
				<displayName count="other">فالکلند ِجزایر ِپوند</displayName>
				<symbol draft="contributed">FKP</symbol>
				<symbol alt="narrow" draft="contributed">£</symbol>
			</currency>
			<currency type="GBP">
				<displayName>بریتانیای ِپوند</displayName>
				<displayName count="other">بریتانیای ِپوند</displayName>
				<symbol draft="contributed">£</symbol>
				<symbol alt="narrow" draft="contributed">£</symbol>
			</currency>
			<currency type="GEL">
				<displayName>گرجستون ِلاری</displayName>
				<displayName count="other">گرجستون ِلاری</displayName>
				<symbol draft="contributed">GEL</symbol>
				<symbol alt="variant" draft="contributed">₾</symbol>
			</currency>
			<currency type="GHS">
				<displayName>غنای ِسدی</displayName>
				<displayName count="other">غنای ِسدی</displayName>
				<symbol draft="contributed">GHS</symbol>
			</currency>
			<currency type="GIP">
				<displayName>جبل‌طارق ِپوند</displayName>
				<displayName count="other">جبل‌طارق ِپوند</displayName>
				<symbol draft="contributed">GIP</symbol>
				<symbol alt="narrow" draft="contributed">£</symbol>
			</currency>
			<currency type="GMD">
				<displayName>گامبیای ِدالاسی</displayName>
				<displayName count="other">گامبیای ِدالاسی</displayName>
				<symbol draft="contributed">GMD</symbol>
			</currency>
			<currency type="GNF">
				<displayName>گینه‌ی ِفرانک</displayName>
				<displayName count="other">گینه‌ی ِفرانک</displayName>
				<symbol draft="contributed">GNF</symbol>
				<symbol alt="narrow" draft="contributed">FG</symbol>
			</currency>
			<currency type="GTQ">
				<displayName>گواتمالا کتزال</displayName>
				<displayName count="other">گواتمالای ِکتزال</displayName>
				<symbol draft="contributed">GTQ</symbol>
				<symbol alt="narrow" draft="contributed">Q</symbol>
			</currency>
			<currency type="GYD">
				<displayName>گویان ِدولار</displayName>
				<displayName count="other">گویان دلار</displayName>
				<symbol draft="contributed">GYD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="HKD">
				<displayName>هونگ کونگ ِدولار</displayName>
				<displayName count="other">هنگ کنگ ِدلار</displayName>
				<symbol draft="contributed">HK$</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="HNL">
				<displayName>هندوراس ِلمپیرا</displayName>
				<displayName count="other">هندوراس لمپیرا</displayName>
				<symbol draft="contributed">HNL</symbol>
				<symbol alt="narrow" draft="contributed">L</symbol>
			</currency>
			<currency type="HRK">
				<displayName>کرواسی ِکونا</displayName>
				<displayName count="other">کرواسی ِکونا</displayName>
				<symbol draft="contributed">HRK</symbol>
				<symbol alt="narrow" draft="contributed">kn</symbol>
			</currency>
			<currency type="HTG">
				<displayName>هائیتی ِگورد</displayName>
				<displayName count="other">هاییتی گورد</displayName>
				<symbol draft="contributed">HTG</symbol>
			</currency>
			<currency type="HUF">
				<displayName>مجارستون ِفروینت</displayName>
				<displayName count="other">مجارستون ِفروینت</displayName>
				<symbol draft="contributed">HUF</symbol>
				<symbol alt="narrow" draft="contributed">Ft</symbol>
			</currency>
			<currency type="IDR">
				<displayName>اندونزی ِروپیه</displayName>
				<displayName count="other">اندونزی ِروپیه</displayName>
				<symbol draft="contributed">IDR</symbol>
				<symbol alt="narrow" draft="contributed">Rp</symbol>
			</currency>
			<currency type="ILS">
				<displayName>اسراییل ِنو شِکِل</displayName>
				<displayName count="other">اسراییل ِنو شِکِل</displayName>
				<symbol draft="contributed">₪</symbol>
				<symbol alt="narrow" draft="contributed">₪</symbol>
			</currency>
			<currency type="INR">
				<displayName>هند ِروپیه</displayName>
				<displayName count="other">هند ِروپیه</displayName>
				<symbol draft="contributed">₹</symbol>
				<symbol alt="narrow" draft="contributed">₹</symbol>
			</currency>
			<currency type="IQD">
				<displayName>عراق ِدینار</displayName>
				<displayName count="other">عراق ِدینار</displayName>
				<symbol draft="contributed">IQD</symbol>
			</currency>
			<currency type="IRR">
				<displayName>ایران ریال</displayName>
				<displayName count="other">ایران ریال</displayName>
				<symbol draft="contributed">IRR</symbol>
			</currency>
			<currency type="ISK">
				<displayName>ایسلند کرونا</displayName>
				<displayName count="other">ایسلند کرونا</displayName>
				<symbol draft="contributed">ISK</symbol>
				<symbol alt="narrow" draft="contributed">kr</symbol>
			</currency>
			<currency type="JMD">
				<displayName>جاماییکای ِدولار</displayName>
				<displayName count="other">جاماییکا دلار</displayName>
				<symbol draft="contributed">JMD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="JOD">
				<displayName>اردن ِدینار</displayName>
				<displayName count="other">اردن ِدینار</displayName>
				<symbol draft="contributed">JOD</symbol>
			</currency>
			<currency type="JPY">
				<displayName>جاپون ِین</displayName>
				<displayName count="other">جاپون ِین</displayName>
				<symbol draft="contributed">JP¥</symbol>
				<symbol alt="narrow" draft="contributed">¥</symbol>
			</currency>
			<currency type="KES">
				<displayName>کنیای ِشیلینگ</displayName>
				<displayName count="other">کنیای ِشیلینگ</displayName>
				<symbol draft="contributed">KES</symbol>
			</currency>
			<currency type="KGS">
				<displayName>قرقیزستون ِسام</displayName>
				<displayName count="other">قرقیزستون ِسام</displayName>
				<symbol draft="contributed">KGS</symbol>
			</currency>
			<currency type="KHR">
				<displayName>کامبوج ِریل</displayName>
				<displayName count="other">کامبوج ِریل</displayName>
				<symbol draft="contributed">KHR</symbol>
				<symbol alt="narrow" draft="contributed">៛</symbol>
			</currency>
			<currency type="KMF">
				<displayName>کامرون ِفرانک</displayName>
				<displayName count="other">کامرون ِفرانک</displayName>
				<symbol draft="contributed">KMF</symbol>
				<symbol alt="narrow" draft="contributed">CF</symbol>
			</currency>
			<currency type="KPW">
				<displayName>شمالی کره‌ی ِوون</displayName>
				<displayName count="other">شمالی کره وون</displayName>
				<symbol draft="contributed">KPW</symbol>
				<symbol alt="narrow" draft="contributed">₩</symbol>
			</currency>
			<currency type="KRW">
				<displayName>جنوبی کُره‌ی ِوون</displayName>
				<displayName count="other">جنوبی کره وون</displayName>
				<symbol draft="contributed">₩</symbol>
				<symbol alt="narrow" draft="contributed">₩</symbol>
			</currency>
			<currency type="KWD">
				<displayName>کویت ِدینار</displayName>
				<displayName count="other">کویت ِدینار</displayName>
				<symbol draft="contributed">KWD</symbol>
			</currency>
			<currency type="KYD">
				<displayName>کایمن جزیره‌ی ِدولار</displayName>
				<displayName count="other">کایمن جزیره‌ی دلار</displayName>
				<symbol draft="contributed">KYD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="KZT">
				<displayName>قراقستون ِتنگ</displayName>
				<displayName count="other">قراقستون ِتنگ</displayName>
				<symbol draft="contributed">KZT</symbol>
				<symbol alt="narrow" draft="contributed">₸</symbol>
			</currency>
			<currency type="LAK">
				<displayName>لائوس ِکیپ</displayName>
				<displayName count="other">لائوس ِکیپ</displayName>
				<symbol draft="contributed">LAK</symbol>
				<symbol alt="narrow" draft="contributed">₭</symbol>
			</currency>
			<currency type="LBP">
				<displayName>لبنان ِپوند</displayName>
				<displayName count="other">لبنان ِپوند</displayName>
				<symbol draft="contributed">LBP</symbol>
				<symbol alt="narrow" draft="contributed">L£</symbol>
			</currency>
			<currency type="LKR">
				<displayName>سریلانکا روپیه</displayName>
				<displayName count="other">سریلانکا روپیه</displayName>
				<symbol draft="contributed">LKR</symbol>
				<symbol alt="narrow" draft="contributed">Rs</symbol>
			</currency>
			<currency type="LRD">
				<displayName>لیبریای ِدولار</displayName>
				<displayName count="other">لیبریا دلار</displayName>
				<symbol draft="contributed">LRD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="LYD">
				<displayName>لیبی ِدینار</displayName>
				<displayName count="other">لیبی ِدینار</displayName>
				<symbol draft="contributed">LYD</symbol>
			</currency>
			<currency type="MAD">
				<displayName>مراکش ِدرهم</displayName>
				<displayName count="other">مراکش ِدرهم</displayName>
				<symbol draft="contributed">MAD</symbol>
			</currency>
			<currency type="MDL">
				<displayName>مولداوی ِلئو</displayName>
				<displayName count="other">مولداوی ِلئو</displayName>
				<symbol draft="contributed">MDL</symbol>
			</currency>
			<currency type="MGA">
				<displayName>ماداگاسکار ِآریاری</displayName>
				<displayName count="other">ماداگاسکار ِآریاری</displayName>
				<symbol draft="contributed">MGA</symbol>
				<symbol alt="narrow" draft="contributed">Ar</symbol>
			</currency>
			<currency type="MKD">
				<displayName>مقدونیه‌ی ِدینار</displayName>
				<displayName count="other">مقدونیه‌ی ِدینار</displayName>
				<symbol draft="contributed">MKD</symbol>
			</currency>
			<currency type="MMK">
				<displayName>میانمار ِکیات</displayName>
				<displayName count="other">میانمار ِکیات</displayName>
				<symbol draft="contributed">MMK</symbol>
				<symbol alt="narrow" draft="contributed">K</symbol>
			</currency>
			<currency type="MNT">
				<displayName>مغلستون ِتوگریک</displayName>
				<displayName count="other">مغلستون ِتوگریک</displayName>
				<symbol draft="contributed">MNT</symbol>
				<symbol alt="narrow" draft="contributed">₮</symbol>
			</currency>
			<currency type="MOP">
				<displayName>ماکائو ِپاتاجا</displayName>
				<displayName count="other">ماکائو ِپاتاجا</displayName>
				<symbol draft="contributed">MOP</symbol>
			</currency>
			<currency type="MRO">
				<displayName>موریتانی ِاوگوئیا</displayName>
				<displayName count="other">موریتانی ِاوگوئیا</displayName>
				<symbol draft="contributed">MRO</symbol>
			</currency>
			<currency type="MUR">
				<displayName>موریتیان ِروپیه</displayName>
				<displayName count="other">موریتیان ِروپیه</displayName>
				<symbol draft="contributed">MUR</symbol>
				<symbol alt="narrow" draft="contributed">Rs</symbol>
			</currency>
			<currency type="MVR">
				<displayName>مالدیو ِروفیا</displayName>
				<displayName count="other">مالدیو ِروفیا</displayName>
				<symbol draft="contributed">MVR</symbol>
			</currency>
			<currency type="MWK">
				<displayName>مالاوی ِکواچا</displayName>
				<displayName count="other">مالاوی ِکواچا</displayName>
				<symbol draft="contributed">MWK</symbol>
			</currency>
			<currency type="MXN">
				<displayName>مکزیک ِپزو</displayName>
				<displayName count="other">مکزیک پزو</displayName>
				<symbol draft="contributed">MX$</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="MYR">
				<displayName>مالزی ِرینگیت</displayName>
				<displayName count="other">مالزی ِرینگیت</displayName>
				<symbol draft="contributed">MYR</symbol>
				<symbol alt="narrow" draft="contributed">RM</symbol>
			</currency>
			<currency type="MZN">
				<displayName>موزامبیک متیکال</displayName>
				<displayName count="other">موزامبیک متیکال</displayName>
				<symbol draft="contributed">MZN</symbol>
			</currency>
			<currency type="NAD">
				<displayName>نامبیای ِدولار</displayName>
				<displayName count="other">نامبیای ِدلار</displayName>
				<symbol draft="contributed">NAD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="NGN">
				<displayName>نیجریه‌ی ِنیارا</displayName>
				<displayName count="other">نیجریه‌ی ِنیارا</displayName>
				<symbol draft="contributed">NGN</symbol>
				<symbol alt="narrow" draft="contributed">₦</symbol>
			</currency>
			<currency type="NIO">
				<displayName>نیکاراگوئه‌ی ِکوردوبا</displayName>
				<displayName count="other">نیکاراگوئه کوردوبا</displayName>
				<symbol draft="contributed">NIO</symbol>
				<symbol alt="narrow" draft="contributed">C$</symbol>
			</currency>
			<currency type="NOK">
				<displayName>نروژ ِکرون</displayName>
				<displayName count="other">نروژ ِکرون</displayName>
				<symbol draft="contributed">NOK</symbol>
				<symbol alt="narrow" draft="contributed">kr</symbol>
			</currency>
			<currency type="NPR">
				<displayName>نپال ِروپیه</displayName>
				<displayName count="other">نپال ِروپیه</displayName>
				<symbol draft="contributed">NPR</symbol>
				<symbol alt="narrow" draft="contributed">Rs</symbol>
			</currency>
			<currency type="OMR">
				<displayName>عمان ِریال</displayName>
				<displayName count="other">عمان ِریال</displayName>
				<symbol draft="contributed">OMR</symbol>
			</currency>
			<currency type="PAB">
				<displayName>پانامای ِبالبوا</displayName>
				<displayName count="other">پانامای بالبوا</displayName>
				<symbol draft="contributed">PAB</symbol>
			</currency>
			<currency type="PEN">
				<displayName>پروی ِسول</displayName>
				<displayName count="other">پروی ِسول</displayName>
				<symbol draft="contributed">PEN</symbol>
			</currency>
			<currency type="PHP">
				<displayName>فیلیپین ِپزو</displayName>
				<displayName count="other">فیلیپین ِپزو</displayName>
				<symbol draft="contributed">PHP</symbol>
				<symbol alt="narrow" draft="contributed">₱</symbol>
			</currency>
			<currency type="PKR">
				<displayName>پاکستون روپیه</displayName>
				<displayName count="other">پاکستون روپیه</displayName>
				<symbol draft="contributed">PKR</symbol>
				<symbol alt="narrow" draft="contributed">Rs</symbol>
			</currency>
			<currency type="PLN">
				<displayName>لهستون ِزلوتی</displayName>
				<displayName count="other">لهستون ِزلوتی</displayName>
				<symbol draft="contributed">PLN</symbol>
				<symbol alt="narrow" draft="contributed">zł</symbol>
			</currency>
			<currency type="PYG">
				<displayName>پاراگوئه‌ی ِگوارانی</displayName>
				<displayName count="other">پاراگوئه‌ی ِگوارانی</displayName>
				<symbol draft="contributed">PYG</symbol>
				<symbol alt="narrow" draft="contributed">₲</symbol>
			</currency>
			<currency type="QAR">
				<displayName>قطر ِریال</displayName>
				<displayName count="other">قطر ِریال</displayName>
				<symbol draft="contributed">QAR</symbol>
			</currency>
			<currency type="RON">
				<displayName>رومانی ِلئو</displayName>
				<displayName count="other">رومانی ِلئو</displayName>
				<symbol draft="contributed">RON</symbol>
			</currency>
			<currency type="RSD">
				<displayName>صربستون ِدینار</displayName>
				<displayName count="other">صربستون ِدینار</displayName>
				<symbol draft="contributed">RSD</symbol>
			</currency>
			<currency type="RUB">
				<displayName>روسیه‌ی ِروبل</displayName>
				<displayName count="other">روسیه‌ی ِروبل</displayName>
				<symbol draft="contributed">RUB</symbol>
				<symbol alt="narrow" draft="contributed">₽</symbol>
			</currency>
			<currency type="RWF">
				<displayName>روآندای ِفرانک</displayName>
				<displayName count="other">روآندای ِفرانک</displayName>
				<symbol draft="contributed">RWF</symbol>
				<symbol alt="narrow" draft="contributed">RF</symbol>
			</currency>
			<currency type="SAR">
				<displayName>عربستون ِریال</displayName>
				<displayName count="other">عربستون ِریال</displayName>
				<symbol draft="contributed">SAR</symbol>
			</currency>
			<currency type="SCR">
				<displayName>سیشل ِروپیه</displayName>
				<displayName count="other">سیشل ِروپیه</displayName>
				<symbol draft="contributed">SCR</symbol>
			</currency>
			<currency type="SDG">
				<displayName>سودان ِپوند</displayName>
				<displayName count="other">سودان ِپوند</displayName>
				<symbol draft="contributed">SDG</symbol>
			</currency>
			<currency type="SEK">
				<displayName>سوئد ِکرون</displayName>
				<displayName count="other">سوئد ِکرون</displayName>
				<symbol draft="contributed">SEK</symbol>
				<symbol alt="narrow" draft="contributed">kr</symbol>
			</currency>
			<currency type="SGD">
				<displayName>سنگاپور ِدلار</displayName>
				<displayName count="other">سنگاپور ِدلار</displayName>
				<symbol draft="contributed">SGD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="SHP">
				<displayName>سنت هلنای ِپوند</displayName>
				<displayName count="other">سنت هلنای ِپوند</displayName>
				<symbol draft="contributed">SHP</symbol>
				<symbol alt="narrow" draft="contributed">£</symbol>
			</currency>
			<currency type="SLL">
				<displayName>سیرالئون ِلئون</displayName>
				<displayName count="other">سیرالئون ِلئون</displayName>
				<symbol draft="contributed">SLL</symbol>
			</currency>
			<currency type="SOS">
				<displayName>سومالی ِشیلینگ</displayName>
				<displayName count="other">سومالی ِشیلینگ</displayName>
				<symbol draft="contributed">SOS</symbol>
			</currency>
			<currency type="SRD">
				<displayName>سورینام ِدولار</displayName>
				<displayName count="other">سورینام ِدولار</displayName>
				<symbol draft="contributed">SRD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="SSP">
				<displayName>جنوبی سودان ِپوند</displayName>
				<displayName count="other">جنوبی سودان ِپوند</displayName>
				<symbol draft="contributed">SSP</symbol>
				<symbol alt="narrow" draft="contributed">£</symbol>
			</currency>
			<currency type="STD">
				<displayName>سائوتومه و پرینسیپ ِدوبرا</displayName>
				<displayName count="other">سائوتومه و پرینسیپ ِدوبرا</displayName>
				<symbol draft="contributed">STD</symbol>
				<symbol alt="narrow" draft="contributed">Db</symbol>
			</currency>
			<currency type="SYP">
				<displayName>سوریه‌ی ِپوند</displayName>
				<displayName count="other">سوریه‌ی ِپوند</displayName>
				<symbol draft="contributed">SYP</symbol>
				<symbol alt="narrow" draft="contributed">£</symbol>
			</currency>
			<currency type="SZL">
				<displayName>سوازیلند ِلیلانجنی</displayName>
				<displayName count="other">سوازیلند ِلیلانجنی</displayName>
				<symbol draft="contributed">SZL</symbol>
			</currency>
			<currency type="THB">
				<displayName>تایلند ِبات</displayName>
				<displayName count="other">تایلند ِبات</displayName>
				<symbol draft="contributed">THB</symbol>
				<symbol alt="narrow" draft="contributed">฿</symbol>
			</currency>
			<currency type="TJS">
				<displayName>تاجیکستون ِسامانی</displayName>
				<displayName count="other">تاجیکستون ِسامانی</displayName>
				<symbol draft="contributed">TJS</symbol>
			</currency>
			<currency type="TMT">
				<displayName>ترکمنستون ِمنات</displayName>
				<displayName count="other">ترکمنستون ِمنات</displayName>
				<symbol draft="contributed">TMT</symbol>
			</currency>
			<currency type="TND">
				<displayName>تونس ِدینار</displayName>
				<displayName count="other">تونس ِدینار</displayName>
				<symbol draft="contributed">TND</symbol>
			</currency>
			<currency type="TRY">
				<displayName>ترکیه‌ی ِلیره</displayName>
				<displayName count="other">ترکیه‌ی ِلیره</displayName>
				<symbol draft="contributed">TRY</symbol>
				<symbol alt="narrow" draft="contributed">₺</symbol>
				<symbol alt="variant" draft="contributed">TL</symbol>
			</currency>
			<currency type="TTD">
				<displayName>ترینیداد و توباگوی ِدولار</displayName>
				<displayName count="other">ترینیداد و توباگوی ِدلار</displayName>
				<symbol draft="contributed">TTD</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="TWD">
				<displayName>جدید ِتایوان ِدولار</displayName>
				<displayName count="other">تایوان دلار</displayName>
				<symbol draft="contributed">NT$</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="TZS">
				<displayName>تانزانیای ِشیلینگ</displayName>
				<displayName count="other">تانزانیای ِشیلینگ</displayName>
				<symbol draft="contributed">TZS</symbol>
			</currency>
			<currency type="UAH">
				<displayName>اکراین ِگریونا</displayName>
				<displayName count="other">اکراین ِگریونا</displayName>
				<symbol draft="contributed">UAH</symbol>
				<symbol alt="narrow" draft="contributed">₴</symbol>
			</currency>
			<currency type="UGX">
				<displayName>اوگاندای ِشیلینگ</displayName>
				<displayName count="other">اوگاندای ِشیلینگ</displayName>
				<symbol draft="contributed">UGX</symbol>
			</currency>
			<currency type="USD">
				<displayName>آمریکای ِدولار</displayName>
				<displayName count="other">آمریکای ِدلار</displayName>
				<symbol draft="contributed">$</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="UYU">
				<displayName>اروگوئه‌ی ِپزو</displayName>
				<displayName count="other">اروگوئه‌ی ِپزو</displayName>
				<symbol draft="contributed">UYU</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="UZS">
				<displayName>ازبکستون ِسام</displayName>
				<displayName count="other">ازبکستون ِسام</displayName>
				<symbol draft="contributed">UZS</symbol>
			</currency>
			<currency type="VEF">
				<displayName>ونزوئلایِ بولیوار</displayName>
				<displayName count="other">ونزوئلایِ بولیوار</displayName>
				<symbol draft="contributed">VEF</symbol>
				<symbol alt="narrow" draft="contributed">Bs</symbol>
			</currency>
			<currency type="VND">
				<displayName>ویتنام ِدنگ</displayName>
				<displayName count="other">ویتنام ِدنگ</displayName>
				<symbol draft="contributed">₫</symbol>
				<symbol alt="narrow" draft="contributed">₫</symbol>
			</currency>
			<currency type="XAF">
				<displayName>میونی آفریقای ِسی‌اف‌ای فرانک</displayName>
				<displayName count="other">میونی آفریقای ِسی‌اف‌ای فرانک</displayName>
				<symbol draft="contributed">FCFA</symbol>
			</currency>
			<currency type="XCD">
				<displayName>شرقی کاراییب ِدولار</displayName>
				<displayName count="other">شرقی کارائیب دلار</displayName>
				<symbol draft="contributed">EC$</symbol>
				<symbol alt="narrow" draft="contributed">$</symbol>
			</currency>
			<currency type="XOF">
				<displayName>غربی آفریقای ِسی‌اف‌ای فرانک</displayName>
				<displayName count="other">غربی آفریقای ِسی‌اف‌ای فرانک</displayName>
				<symbol draft="contributed">CFA</symbol>
			</currency>
			<currency type="YER">
				<displayName>یمن ِریال</displayName>
				<displayName count="other">یمن ِریال</displayName>
				<symbol draft="contributed">YER</symbol>
			</currency>
			<currency type="ZAR">
				<displayName>جنوبی آفریقای ِراند</displayName>
				<displayName count="other">جنوبی آفریقای ِراند</displayName>
				<symbol draft="contributed">ZAR</symbol>
				<symbol alt="narrow" draft="contributed">R</symbol>
			</currency>
			<currency type="ZMW">
				<displayName>زامبیای ِکواچا</displayName>
				<displayName count="other">زامبیای ِکواچا</displayName>
				<symbol draft="contributed">ZMW</symbol>
				<symbol alt="narrow" draft="contributed">ZK</symbol>
			</currency>
		</currencies>
	</numbers>
	<units>
		<unitLength type="long">
			<compoundUnit type="per">
				<compoundUnitPattern>{0}/{1}</compoundUnitPattern>
			</compoundUnit>
			<unit type="acceleration-g-force">
				<displayName>g-force</displayName>
				<unitPattern count="other">{0} G</unitPattern>
			</unit>
			<unit type="acceleration-meter-per-second-squared">
				<displayName>m/s²</displayName>
				<unitPattern count="other">{0} m/s²</unitPattern>
			</unit>
			<unit type="angle-revolution">
				<displayName>rev</displayName>
				<unitPattern count="other">{0} rev</unitPattern>
			</unit>
			<unit type="angle-radian">
				<displayName>rad</displayName>
				<unitPattern count="other">{0} rad</unitPattern>
			</unit>
			<unit type="angle-degree">
				<displayName>deg</displayName>
				<unitPattern count="other">{0}°</unitPattern>
			</unit>
			<unit type="angle-arc-minute">
				<displayName>arcmin</displayName>
				<unitPattern count="other">{0}′</unitPattern>
			</unit>
			<unit type="angle-arc-second">
				<displayName>arcsec</displayName>
				<unitPattern count="other">{0}″</unitPattern>
			</unit>
			<unit type="concentr-karat">
				<displayName>kt</displayName>
				<unitPattern count="other">{0} kt</unitPattern>
			</unit>
			<unit type="consumption-liter-per-kilometer">
				<displayName>L/km</displayName>
				<unitPattern count="other">{0} L/km</unitPattern>
			</unit>
			<unit type="consumption-liter-per-100kilometers">
				<displayName>L/100km</displayName>
				<unitPattern count="other">{0} L/100km</unitPattern>
			</unit>
			<unit type="consumption-mile-per-gallon">
				<displayName>mpg</displayName>
				<unitPattern count="other">{0} mpg</unitPattern>
			</unit>
			<unit type="digital-terabyte">
				<displayName>ترابایت</displayName>
				<unitPattern count="other">{0} ترابایت</unitPattern>
			</unit>
			<unit type="digital-terabit">
				<displayName>ترابیت</displayName>
				<unitPattern count="other">{0} ترابیت</unitPattern>
			</unit>
			<unit type="digital-gigabyte">
				<displayName>گیگابایت</displayName>
				<unitPattern count="other">{0} گیگابایت</unitPattern>
			</unit>
			<unit type="digital-gigabit">
				<displayName>گیگابیت</displayName>
				<unitPattern count="other">{0} گیگابیت</unitPattern>
			</unit>
			<unit type="digital-megabyte">
				<displayName>مگابایت</displayName>
				<unitPattern count="other">{0} مگابایت</unitPattern>
			</unit>
			<unit type="digital-megabit">
				<displayName>مگابیت</displayName>
				<unitPattern count="other">{0} مگابیت</unitPattern>
			</unit>
			<unit type="digital-kilobyte">
				<displayName>کیلوبایت</displayName>
				<unitPattern count="other">{0} کیلوبایت</unitPattern>
			</unit>
			<unit type="digital-kilobit">
				<displayName>کیلوبیت</displayName>
				<unitPattern count="other">{0} کیلوبیت</unitPattern>
			</unit>
			<unit type="digital-byte">
				<displayName>بایت</displayName>
				<unitPattern count="other">{0} بایت</unitPattern>
			</unit>
			<unit type="digital-bit">
				<displayName>بیت</displayName>
				<unitPattern count="other">{0} بیت</unitPattern>
			</unit>
			<unit type="duration-century">
				<displayName>قرن</displayName>
				<unitPattern count="other">{0} قرن</unitPattern>
			</unit>
			<unit type="duration-year">
				<displayName>سال</displayName>
				<unitPattern count="other">{0} سال</unitPattern>
				<perUnitPattern>{0} سال پیش</perUnitPattern>
			</unit>
			<unit type="duration-month">
				<displayName>ماه</displayName>
				<unitPattern count="other">{0} ماه</unitPattern>
				<perUnitPattern>{0} ماه پیش</perUnitPattern>
			</unit>
			<unit type="duration-week">
				<displayName>هفته</displayName>
				<unitPattern count="other">{0} هفته</unitPattern>
				<perUnitPattern>{0} هفته پیش</perUnitPattern>
			</unit>
			<unit type="duration-day">
				<displayName>روز</displayName>
				<unitPattern count="other">{0} روز</unitPattern>
				<perUnitPattern>{0} روز</perUnitPattern>
			</unit>
			<unit type="duration-hour">
				<displayName>ساعت</displayName>
				<unitPattern count="other">{0} ساعِت</unitPattern>
				<perUnitPattern>{0} ساعِت</perUnitPattern>
			</unit>
			<unit type="duration-minute">
				<displayName>دقیقه</displayName>
				<unitPattern count="other">{0} دقیقه</unitPattern>
			</unit>
			<unit type="duration-second">
				<displayName>ثانیه</displayName>
				<unitPattern count="other">{0} ثانیه</unitPattern>
				<perUnitPattern>{0} ثانیه</perUnitPattern>
			</unit>
			<unit type="duration-millisecond">
				<displayName>میلی‌ثانیه</displayName>
				<unitPattern count="other">{0} میلی‌ثانیه</unitPattern>
			</unit>
			<unit type="duration-microsecond">
				<displayName>میکروثانیه</displayName>
				<unitPattern count="other">{0} میکروثانیه</unitPattern>
			</unit>
			<unit type="duration-nanosecond">
				<displayName>نانوثانیه</displayName>
				<unitPattern count="other">{0} نانوثانیه</unitPattern>
			</unit>
			<unit type="electric-ampere">
				<displayName>آمپر</displayName>
				<unitPattern count="other">{0} آمپر</unitPattern>
			</unit>
			<unit type="electric-milliampere">
				<displayName>میلی‌آمپر</displayName>
				<unitPattern count="other">{0} میلی‌آمپر</unitPattern>
			</unit>
			<unit type="electric-ohm">
				<displayName>اُهم</displayName>
				<unitPattern count="other">{0} Ω</unitPattern>
			</unit>
			<unit type="electric-volt">
				<displayName>وُلت</displayName>
				<unitPattern count="other">{0} ولت</unitPattern>
			</unit>
			<unit type="energy-kilocalorie">
				<displayName>کیلوکالری</displayName>
				<unitPattern count="other">{0} کیلوکالری</unitPattern>
			</unit>
			<unit type="energy-calorie">
				<displayName>کالری</displayName>
				<unitPattern count="other">{0} کالری</unitPattern>
			</unit>
			<unit type="energy-foodcalorie">
				<displayName>کالری</displayName>
				<unitPattern count="other">{0} کالری</unitPattern>
			</unit>
			<unit type="energy-kilojoule">
				<displayName>کیلوژول</displayName>
				<unitPattern count="other">{0} کیلوژول</unitPattern>
			</unit>
			<unit type="energy-joule">
				<displayName>ژول</displayName>
				<unitPattern count="other">{0} ژول</unitPattern>
			</unit>
			<unit type="energy-kilowatt-hour">
				<displayName>کیلووات بر ساعت</displayName>
				<unitPattern count="other">{0} کیلووات-ساعت</unitPattern>
			</unit>
			<unit type="frequency-gigahertz">
				<displayName>گیگاهرتز</displayName>
				<unitPattern count="other">{0} گیگاهرتز</unitPattern>
			</unit>
			<unit type="frequency-megahertz">
				<displayName>مگاهرتز</displayName>
				<unitPattern count="other">{0} مگاهرتز</unitPattern>
			</unit>
			<unit type="frequency-kilohertz">
				<displayName>کیلوهرتز</displayName>
				<unitPattern count="other">{0} کیلوهرتز</unitPattern>
			</unit>
			<unit type="frequency-hertz">
				<displayName>هرتز</displayName>
				<unitPattern count="other">{0} هرتز</unitPattern>
			</unit>
			<unit type="light-lux">
				<displayName>lx</displayName>
				<unitPattern count="other">{0} lx</unitPattern>
			</unit>
			<unit type="mass-metric-ton">
				<displayName>متریک تُن</displayName>
				<unitPattern count="other">{0} متریک تُن</unitPattern>
			</unit>
			<unit type="mass-kilogram">
				<displayName>کیلوگرم</displayName>
				<unitPattern count="other">{0} کیلوگرم</unitPattern>
				<perUnitPattern>{0} هر کیلوگرم دله</perUnitPattern>
			</unit>
			<unit type="mass-gram">
				<displayName>گرم</displayName>
				<unitPattern count="other">{0} گرم</unitPattern>
				<perUnitPattern>{0} هر گرم دله</perUnitPattern>
			</unit>
			<unit type="mass-milligram">
				<displayName>میلی‌گرم</displayName>
				<unitPattern count="other">{0} میلی‌گرم</unitPattern>
			</unit>
			<unit type="mass-microgram">
				<displayName>میکروگرم</displayName>
				<unitPattern count="other">{0} میکروگرم</unitPattern>
			</unit>
			<unit type="mass-ton">
				<displayName>تُن</displayName>
				<unitPattern count="other">{0} تُن</unitPattern>
			</unit>
			<unit type="mass-pound">
				<displayName>پوند</displayName>
				<unitPattern count="other">{0} پوند</unitPattern>
				<perUnitPattern>{0} هر پوند دله</perUnitPattern>
			</unit>
			<unit type="mass-ounce">
				<displayName>اونس</displayName>
				<unitPattern count="other">{0} اونس</unitPattern>
				<perUnitPattern>{0} هر اونس دله</perUnitPattern>
			</unit>
			<unit type="mass-ounce-troy">
				<displayName>تروی اونس</displayName>
				<unitPattern count="other">{0} تروی اونس</unitPattern>
			</unit>
			<unit type="mass-carat">
				<displayName>قیراط</displayName>
				<unitPattern count="other">{0} قیراط</unitPattern>
			</unit>
			<unit type="power-gigawatt">
				<displayName>گیگاوات</displayName>
				<unitPattern count="other">{0} گیگاوات</unitPattern>
			</unit>
			<unit type="power-megawatt">
				<displayName>مگاوات</displayName>
				<unitPattern count="other">{0} مگاوات</unitPattern>
			</unit>
			<unit type="power-kilowatt">
				<displayName>کیلووات</displayName>
				<unitPattern count="other">{0} کیلووات</unitPattern>
			</unit>
			<unit type="power-watt">
				<displayName>وات</displayName>
				<unitPattern count="other">{0} وات</unitPattern>
			</unit>
			<unit type="power-milliwatt">
				<displayName>میلی‌وات</displayName>
				<unitPattern count="other">{0} میلی‌وات</unitPattern>
			</unit>
			<unit type="power-horsepower">
				<displayName>اسب‌بخار</displayName>
				<unitPattern count="other">{0} اسب بخار</unitPattern>
			</unit>
			<unit type="speed-kilometer-per-hour">
				<displayName>کیلومتر بر ساعت</displayName>
				<unitPattern count="other">{0} کیلومتر بر ساعت</unitPattern>
			</unit>
			<unit type="speed-meter-per-second">
				<displayName>متر بر ثانیه</displayName>
				<unitPattern count="other">{0} متر بر ثانیه</unitPattern>
			</unit>
			<unit type="speed-mile-per-hour">
				<displayName>مایل بر ساعت</displayName>
				<unitPattern count="other">{0} مایل بر ساعت</unitPattern>
			</unit>
			<unit type="speed-knot">
				<displayName>گره</displayName>
				<unitPattern count="other">{0} گره</unitPattern>
			</unit>
			<unit type="temperature-generic">
				<displayName>°</displayName>
				<unitPattern count="other">{0}°</unitPattern>
			</unit>
			<unit type="temperature-celsius">
				<displayName>درجه سلسیوس</displayName>
				<unitPattern count="other">{0} درجه سلسیوس</unitPattern>
			</unit>
			<unit type="temperature-fahrenheit">
				<displayName>فارنهایت</displayName>
				<unitPattern count="other">{0} فارنهایت</unitPattern>
			</unit>
			<unit type="temperature-kelvin">
				<displayName>کلوین</displayName>
				<unitPattern count="other">{0} کلوین</unitPattern>
			</unit>
			<unit type="volume-cubic-kilometer">
				<displayName>کیلومتر مکعب</displayName>
				<unitPattern count="other">{0} کیلومتر مکعب</unitPattern>
			</unit>
			<unit type="volume-cubic-meter">
				<displayName>متر مکعب</displayName>
				<unitPattern count="other">{0} متر مکعب</unitPattern>
				<perUnitPattern>{0} هر متر مکعب دله</perUnitPattern>
			</unit>
			<unit type="volume-cubic-centimeter">
				<displayName>سانتی‌متر مکعب</displayName>
				<unitPattern count="other">{0} سانتی‌متر مکعب</unitPattern>
				<perUnitPattern>{0} هر سانتی‌متر مکعب دله</perUnitPattern>
			</unit>
			<unit type="volume-cubic-mile">
				<displayName>مایل مکعب</displayName>
				<unitPattern count="other">{0} مایل مکعب</unitPattern>
			</unit>
			<unit type="volume-cubic-yard">
				<displayName>یارد مکعب</displayName>
				<unitPattern count="other">{0} یارد مکعب</unitPattern>
			</unit>
			<unit type="volume-cubic-foot">
				<displayName>فوت مکعب</displayName>
				<unitPattern count="other">{0} فوت مکعب</unitPattern>
			</unit>
			<unit type="volume-cubic-inch">
				<displayName>اینچ مکعب</displayName>
				<unitPattern count="other">{0} اینچ مکعب</unitPattern>
			</unit>
			<unit type="volume-megaliter">
				<displayName>مگالیتر</displayName>
				<unitPattern count="other">{0} مگالیتر</unitPattern>
			</unit>
			<unit type="volume-hectoliter">
				<displayName>هکتولیتر</displayName>
				<unitPattern count="other">{0} هکتولیتر</unitPattern>
			</unit>
			<unit type="volume-liter">
				<displayName>لیتر</displayName>
				<unitPattern count="other">{0} لیتر</unitPattern>
				<perUnitPattern>{0} هر لیتر دله</perUnitPattern>
			</unit>
			<unit type="volume-deciliter">
				<displayName>دسی‌لیتر</displayName>
				<unitPattern count="other">{0} دسی‌لیتر</unitPattern>
			</unit>
			<unit type="volume-centiliter">
				<displayName>سانتی‌لیتر</displayName>
				<unitPattern count="other">{0} سانتی‌لیتر</unitPattern>
			</unit>
			<unit type="volume-milliliter">
				<displayName>میلی‌لیتر</displayName>
				<unitPattern count="other">{0} میلی‌لیتر</unitPattern>
			</unit>
			<unit type="volume-pint-metric">
				<displayName>متریک پاینت</displayName>
				<unitPattern count="other">{0} متریک پاینت</unitPattern>
			</unit>
			<unit type="volume-cup-metric">
				<displayName>متریک دَییل</displayName>
				<unitPattern count="other">{0} متریک دَییل</unitPattern>
			</unit>
			<unit type="volume-acre-foot">
				<displayName>آکر-فوت</displayName>
				<unitPattern count="other">{0} آکر-فوت</unitPattern>
			</unit>
			<unit type="volume-gallon">
				<displayName>گالون</displayName>
				<unitPattern count="other">{0} گالون</unitPattern>
				<perUnitPattern>{0} هر گالون دله</perUnitPattern>
			</unit>
			<unit type="volume-quart">
				<displayName>ربع</displayName>
				<unitPattern count="other">{0} ربع</unitPattern>
			</unit>
			<unit type="volume-pint">
				<displayName>پاینت</displayName>
				<unitPattern count="other">{0} پاینت</unitPattern>
			</unit>
			<unit type="volume-cup">
				<displayName>دَییل</displayName>
				<unitPattern count="other">{0} دَییل</unitPattern>
			</unit>
			<unit type="volume-fluid-ounce">
				<displayName>فلوید اونس</displayName>
				<unitPattern count="other">{0} فلوید اونس</unitPattern>
			</unit>
			<unit type="volume-tablespoon">
				<displayName>کال</displayName>
				<unitPattern count="other">{0}تا کال</unitPattern>
			</unit>
			<unit type="volume-teaspoon">
				<displayName>چایی‌خاری کچه</displayName>
				<unitPattern count="other">{0} چایی‌خاری کچه</unitPattern>
			</unit>
			<coordinateUnit>
				<coordinateUnitPattern type="east">{0}E</coordinateUnitPattern>
				<coordinateUnitPattern type="north">{0}N</coordinateUnitPattern>
				<coordinateUnitPattern type="south">{0}S</coordinateUnitPattern>
				<coordinateUnitPattern type="west">{0}W</coordinateUnitPattern>
			</coordinateUnit>
		</unitLength>
		<unitLength type="short">
			<compoundUnit type="per">
				<compoundUnitPattern>{0}/{1}</compoundUnitPattern>
			</compoundUnit>
			<unit type="acceleration-g-force">
				<displayName>g-force</displayName>
				<unitPattern count="other">{0} G</unitPattern>
			</unit>
			<unit type="acceleration-meter-per-second-squared">
				<displayName>m/s²</displayName>
				<unitPattern count="other">{0} m/s²</unitPattern>
			</unit>
			<unit type="angle-revolution">
				<displayName>rev</displayName>
				<unitPattern count="other">{0} rev</unitPattern>
			</unit>
			<unit type="angle-radian">
				<displayName>rad</displayName>
				<unitPattern count="other">{0} rad</unitPattern>
			</unit>
			<unit type="angle-degree">
				<displayName>deg</displayName>
				<unitPattern count="other">{0}°</unitPattern>
			</unit>
			<unit type="angle-arc-minute">
				<displayName>arcmin</displayName>
				<unitPattern count="other">{0}′</unitPattern>
			</unit>
			<unit type="angle-arc-second">
				<displayName>arcsec</displayName>
				<unitPattern count="other">{0}″</unitPattern>
			</unit>
			<unit type="concentr-karat">
				<displayName>kt</displayName>
				<unitPattern count="other">{0} kt</unitPattern>
			</unit>
			<unit type="consumption-liter-per-kilometer">
				<displayName>L/km</displayName>
				<unitPattern count="other">{0} L/km</unitPattern>
			</unit>
			<unit type="consumption-liter-per-100kilometers">
				<displayName>L/100km</displayName>
				<unitPattern count="other">{0} L/100km</unitPattern>
			</unit>
			<unit type="consumption-mile-per-gallon">
				<displayName>mpg</displayName>
				<unitPattern count="other">{0} mpg</unitPattern>
			</unit>
			<unit type="digital-terabyte">
				<displayName>ترابایت</displayName>
				<unitPattern count="other">{0} ترابایت</unitPattern>
			</unit>
			<unit type="digital-terabit">
				<displayName>ترابیت</displayName>
				<unitPattern count="other">{0} ترابیت</unitPattern>
			</unit>
			<unit type="digital-gigabyte">
				<displayName>گیگابایت</displayName>
				<unitPattern count="other">{0} گیگابایت</unitPattern>
			</unit>
			<unit type="digital-gigabit">
				<displayName>گیگابیت</displayName>
				<unitPattern count="other">{0} گیگابیت</unitPattern>
			</unit>
			<unit type="digital-megabyte">
				<displayName>مگابایت</displayName>
				<unitPattern count="other">{0} مگابایت</unitPattern>
			</unit>
			<unit type="digital-megabit">
				<displayName>مگابیت</displayName>
				<unitPattern count="other">{0} مگابیت</unitPattern>
			</unit>
			<unit type="digital-kilobyte">
				<displayName>کیلوبایت</displayName>
				<unitPattern count="other">{0} کیلوبایت</unitPattern>
			</unit>
			<unit type="digital-kilobit">
				<displayName>کیلوبیت</displayName>
				<unitPattern count="other">{0} کیلوبیت</unitPattern>
			</unit>
			<unit type="digital-byte">
				<displayName>بایت</displayName>
				<unitPattern count="other">{0} بایت</unitPattern>
			</unit>
			<unit type="digital-bit">
				<displayName>بیت</displayName>
				<unitPattern count="other">{0} بیت</unitPattern>
			</unit>
			<unit type="duration-century">
				<displayName>قرن</displayName>
				<unitPattern count="other">{0} قرن</unitPattern>
			</unit>
			<unit type="duration-year">
				<displayName>سال</displayName>
				<unitPattern count="other">{0} سال</unitPattern>
				<perUnitPattern>{0} سال</perUnitPattern>
			</unit>
			<unit type="duration-month">
				<displayName>ماه</displayName>
				<unitPattern count="other">{0} ماه</unitPattern>
				<perUnitPattern>{0} ماه</perUnitPattern>
			</unit>
			<unit type="duration-week">
				<displayName>هفته</displayName>
				<unitPattern count="other">{0} هفته</unitPattern>
				<perUnitPattern>{0} هفته</perUnitPattern>
			</unit>
			<unit type="duration-day">
				<displayName>روز</displayName>
				<unitPattern count="other">{0} روز</unitPattern>
				<perUnitPattern>{0} روز</perUnitPattern>
			</unit>
			<unit type="duration-hour">
				<displayName>ساعت</displayName>
				<perUnitPattern>{0} ساعِت</perUnitPattern>
			</unit>
			<unit type="duration-minute">
				<displayName>دَقه</displayName>
				<unitPattern count="other">{0} دَقه</unitPattern>
				<perUnitPattern>{0} دَقه</perUnitPattern>
			</unit>
			<unit type="duration-second">
				<displayName>ثانیه</displayName>
				<unitPattern count="other">{0} ثانیه</unitPattern>
				<perUnitPattern>{0} ثانیه</perUnitPattern>
			</unit>
			<unit type="duration-millisecond">
				<displayName>میلی‌ثانیه</displayName>
				<unitPattern count="other">{0} میلی‌ثانیه</unitPattern>
			</unit>
			<unit type="duration-microsecond">
				<displayName>میکروثانیه</displayName>
				<unitPattern count="other">{0} میکروثانیه</unitPattern>
			</unit>
			<unit type="duration-nanosecond">
				<displayName>نانوثانیه</displayName>
				<unitPattern count="other">{0} نانوثانیه</unitPattern>
			</unit>
			<unit type="electric-ampere">
				<displayName>آمپر</displayName>
				<unitPattern count="other">{0} A</unitPattern>
			</unit>
			<unit type="electric-milliampere">
				<displayName>میلی‌آمپر</displayName>
				<unitPattern count="other">{0} mA</unitPattern>
			</unit>
			<unit type="electric-ohm">
				<displayName>اهم</displayName>
				<unitPattern count="other">{0} Ω</unitPattern>
			</unit>
			<unit type="electric-volt">
				<displayName>ولت</displayName>
				<unitPattern count="other">{0} V</unitPattern>
			</unit>
			<unit type="energy-kilocalorie">
				<displayName>کیلوکالری</displayName>
				<unitPattern count="other">{0} kcal</unitPattern>
			</unit>
			<unit type="energy-calorie">
				<displayName>کالری</displayName>
				<unitPattern count="other">{0} cal</unitPattern>
			</unit>
			<unit type="energy-foodcalorie">
				<displayName>کالری</displayName>
				<unitPattern count="other">{0} Cal</unitPattern>
			</unit>
			<unit type="energy-kilojoule">
				<displayName>کیلوژول</displayName>
				<unitPattern count="other">{0} kJ</unitPattern>
			</unit>
			<unit type="energy-joule">
				<displayName>ژول</displayName>
				<unitPattern count="other">{0} J</unitPattern>
			</unit>
			<unit type="energy-kilowatt-hour">
				<displayName>کیلووات-ساعت</displayName>
				<unitPattern count="other">{0} kWh</unitPattern>
			</unit>
			<unit type="frequency-gigahertz">
				<displayName>گیگاهرتز</displayName>
				<unitPattern count="other">{0} GHz</unitPattern>
			</unit>
			<unit type="frequency-megahertz">
				<displayName>مگاهرتز</displayName>
				<unitPattern count="other">{0} MHz</unitPattern>
			</unit>
			<unit type="frequency-kilohertz">
				<displayName>کیلوهرتز</displayName>
				<unitPattern count="other">{0} kHz</unitPattern>
			</unit>
			<unit type="frequency-hertz">
				<displayName>هرتز</displayName>
				<unitPattern count="other">{0} Hz</unitPattern>
			</unit>
			<unit type="light-lux">
				<displayName>lx</displayName>
				<unitPattern count="other">{0} lx</unitPattern>
			</unit>
			<unit type="mass-metric-ton">
				<displayName>t</displayName>
				<unitPattern count="other">{0} t</unitPattern>
			</unit>
			<unit type="mass-kilogram">
				<displayName>کیلوگرم</displayName>
				<unitPattern count="other">{0} kg</unitPattern>
				<perUnitPattern>{0}/kg</perUnitPattern>
			</unit>
			<unit type="mass-gram">
				<displayName>گرم</displayName>
				<unitPattern count="other">{0} g</unitPattern>
				<perUnitPattern>{0}/g</perUnitPattern>
			</unit>
			<unit type="mass-milligram">
				<displayName>میلی‌گرم</displayName>
				<unitPattern count="other">{0} mg</unitPattern>
			</unit>
			<unit type="mass-microgram">
				<displayName>میکروگرم</displayName>
				<unitPattern count="other">{0} µg</unitPattern>
			</unit>
			<unit type="mass-ton">
				<displayName>تُن</displayName>
				<unitPattern count="other">{0} tn</unitPattern>
			</unit>
			<unit type="mass-pound">
				<displayName>پوند</displayName>
				<unitPattern count="other">{0} lb</unitPattern>
				<perUnitPattern>{0}/lb</perUnitPattern>
			</unit>
			<unit type="mass-ounce">
				<displayName>اونس</displayName>
				<unitPattern count="other">{0} oz</unitPattern>
				<perUnitPattern>{0}/oz</perUnitPattern>
			</unit>
			<unit type="mass-ounce-troy">
				<displayName>تروی اونس</displayName>
				<unitPattern count="other">{0} oz t</unitPattern>
			</unit>
			<unit type="mass-carat">
				<displayName>قیراط</displayName>
				<unitPattern count="other">{0} قیراط</unitPattern>
			</unit>
			<unit type="power-gigawatt">
				<displayName>گیگاوات</displayName>
				<unitPattern count="other">{0} GW</unitPattern>
			</unit>
			<unit type="power-megawatt">
				<displayName>مگاوات</displayName>
				<unitPattern count="other">{0} MW</unitPattern>
			</unit>
			<unit type="power-kilowatt">
				<displayName>کیلووات</displayName>
				<unitPattern count="other">{0} kW</unitPattern>
			</unit>
			<unit type="power-watt">
				<displayName>وات</displayName>
				<unitPattern count="other">{0} W</unitPattern>
			</unit>
			<unit type="power-milliwatt">
				<displayName>میلی‌وات</displayName>
				<unitPattern count="other">{0} mW</unitPattern>
			</unit>
			<unit type="power-horsepower">
				<displayName>اسب‌بخار</displayName>
				<unitPattern count="other">{0} hp</unitPattern>
			</unit>
			<unit type="speed-kilometer-per-hour">
				<displayName>کیلومتر بر ساعت</displayName>
				<unitPattern count="other">{0} km/h</unitPattern>
			</unit>
			<unit type="speed-meter-per-second">
				<displayName>متر بر ثانیه</displayName>
				<unitPattern count="other">{0} m/s</unitPattern>
			</unit>
			<unit type="speed-mile-per-hour">
				<displayName>مایل بر ساعت</displayName>
				<unitPattern count="other">{0} mi/h</unitPattern>
			</unit>
			<unit type="speed-knot">
				<displayName>گره</displayName>
				<unitPattern count="other">{0} kn</unitPattern>
			</unit>
			<unit type="temperature-generic">
				<displayName>°</displayName>
				<unitPattern count="other">{0}°</unitPattern>
			</unit>
			<unit type="temperature-celsius">
				<displayName>°C</displayName>
				<unitPattern count="other">{0}°C</unitPattern>
			</unit>
			<unit type="temperature-fahrenheit">
				<displayName>°F</displayName>
				<unitPattern count="other">{0}°F</unitPattern>
			</unit>
			<unit type="temperature-kelvin">
				<displayName>K</displayName>
				<unitPattern count="other">{0} K</unitPattern>
			</unit>
			<unit type="volume-cubic-kilometer">
				<displayName>km³</displayName>
				<unitPattern count="other">{0} km³</unitPattern>
			</unit>
			<unit type="volume-cubic-meter">
				<displayName>m³</displayName>
				<unitPattern count="other">{0} m³</unitPattern>
				<perUnitPattern>{0}/m³</perUnitPattern>
			</unit>
			<unit type="volume-cubic-centimeter">
				<displayName>cm³</displayName>
				<unitPattern count="other">{0} cm³</unitPattern>
				<perUnitPattern>{0}/cm³</perUnitPattern>
			</unit>
			<unit type="volume-cubic-mile">
				<displayName>mi³</displayName>
				<unitPattern count="other">{0} mi³</unitPattern>
			</unit>
			<unit type="volume-cubic-yard">
				<displayName>yd³</displayName>
				<unitPattern count="other">{0} yd³</unitPattern>
			</unit>
			<unit type="volume-cubic-foot">
				<displayName>ft³</displayName>
				<unitPattern count="other">{0} ft³</unitPattern>
			</unit>
			<unit type="volume-cubic-inch">
				<displayName>in³</displayName>
				<unitPattern count="other">{0} in³</unitPattern>
			</unit>
			<unit type="volume-megaliter">
				<displayName>مگالیتر</displayName>
				<unitPattern count="other">{0} ML</unitPattern>
			</unit>
			<unit type="volume-hectoliter">
				<displayName>هکتولیتر</displayName>
				<unitPattern count="other">{0} hL</unitPattern>
			</unit>
			<unit type="volume-liter">
				<displayName>لیتر</displayName>
				<unitPattern count="other">{0} لیتر</unitPattern>
				<perUnitPattern>{0}/l</perUnitPattern>
			</unit>
			<unit type="volume-deciliter">
				<displayName>دسی‌لیتر</displayName>
				<unitPattern count="other">{0} dL</unitPattern>
			</unit>
			<unit type="volume-centiliter">
				<displayName>سانتی‌لیتر</displayName>
				<unitPattern count="other">{0} cL</unitPattern>
			</unit>
			<unit type="volume-milliliter">
				<displayName>میلی‌لیتر</displayName>
				<unitPattern count="other">{0} mL</unitPattern>
			</unit>
			<unit type="volume-pint-metric">
				<displayName>متریک پاینت</displayName>
				<unitPattern count="other">{0} mpt</unitPattern>
			</unit>
			<unit type="volume-cup-metric">
				<displayName>mcup</displayName>
				<unitPattern count="other">{0} mc</unitPattern>
			</unit>
			<unit type="volume-acre-foot">
				<displayName>آکرفوت</displayName>
				<unitPattern count="other">{0} ac ft</unitPattern>
			</unit>
			<unit type="volume-gallon">
				<displayName>گالون</displayName>
				<unitPattern count="other">{0} gal</unitPattern>
				<perUnitPattern>{0}/gal</perUnitPattern>
			</unit>
			<unit type="volume-quart">
				<displayName>ربع</displayName>
				<unitPattern count="other">{0} qt</unitPattern>
			</unit>
			<unit type="volume-pint">
				<displayName>پاینت</displayName>
				<unitPattern count="other">{0} pt</unitPattern>
			</unit>
			<unit type="volume-cup">
				<displayName>دَییل</displayName>
				<unitPattern count="other">{0} c</unitPattern>
			</unit>
			<unit type="volume-fluid-ounce">
				<displayName>فلوید اونس</displayName>
				<unitPattern count="other">{0} fl oz</unitPattern>
			</unit>
			<unit type="volume-tablespoon">
				<displayName>کال</displayName>
				<unitPattern count="other">{0} tbsp</unitPattern>
			</unit>
			<unit type="volume-teaspoon">
				<displayName>چایی‌خاری کچه</displayName>
				<unitPattern count="other">{0} tsp</unitPattern>
			</unit>
			<coordinateUnit>
				<coordinateUnitPattern type="east">{0}E</coordinateUnitPattern>
				<coordinateUnitPattern type="north">{0}N</coordinateUnitPattern>
				<coordinateUnitPattern type="south">{0}S</coordinateUnitPattern>
				<coordinateUnitPattern type="west">{0}W</coordinateUnitPattern>
			</coordinateUnit>
		</unitLength>
		<unitLength type="narrow">
			<compoundUnit type="per">
				<compoundUnitPattern>{0}/{1}</compoundUnitPattern>
			</compoundUnit>
			<unit type="consumption-liter-per-100kilometers">
				<displayName>L/100km</displayName>
				<unitPattern count="other">{0} L/100km</unitPattern>
			</unit>
			<unit type="duration-year">
				<displayName>سال</displayName>
				<unitPattern count="other">{0} سال</unitPattern>
			</unit>
			<unit type="duration-month">
				<displayName>ماه</displayName>
				<unitPattern count="other">{0} ماه</unitPattern>
			</unit>
			<unit type="duration-week">
				<displayName>هفته</displayName>
				<unitPattern count="other">{0} هفته</unitPattern>
			</unit>
			<unit type="duration-day">
				<displayName>روز</displayName>
				<unitPattern count="other">{0} روز</unitPattern>
			</unit>
			<unit type="duration-hour">
				<displayName>ساعت</displayName>
				<unitPattern count="other">{0} ساعِت</unitPattern>
			</unit>
			<unit type="duration-minute">
				<displayName>دَقه</displayName>
				<unitPattern count="other">{0} دَقه</unitPattern>
			</unit>
			<unit type="duration-second">
				<displayName>ثانیه</displayName>
				<unitPattern count="other">{0} ثانیه</unitPattern>
			</unit>
			<unit type="duration-millisecond">
				<displayName>میلی‌ثانیه</displayName>
				<unitPattern count="other">{0} میلی‌ثانیه</unitPattern>
			</unit>
			<unit type="mass-kilogram">
				<displayName>کیلوگرم</displayName>
				<unitPattern count="other">{0} kg</unitPattern>
			</unit>
			<unit type="mass-gram">
				<displayName>گرم</displayName>
				<unitPattern count="other">{0} g</unitPattern>
			</unit>
			<unit type="speed-kilometer-per-hour">
				<displayName>کیلومتر بر ساعت</displayName>
				<unitPattern count="other">{0} km/h</unitPattern>
			</unit>
			<unit type="temperature-celsius">
				<displayName>°C</displayName>
				<unitPattern count="other">{0}°C</unitPattern>
			</unit>
			<unit type="volume-liter">
				<displayName>لیتر</displayName>
				<unitPattern count="other">{0} l</unitPattern>
			</unit>
			<coordinateUnit>
				<coordinateUnitPattern type="east">{0}E</coordinateUnitPattern>
				<coordinateUnitPattern type="north">{0}N</coordinateUnitPattern>
				<coordinateUnitPattern type="south">{0}S</coordinateUnitPattern>
				<coordinateUnitPattern type="west">{0}W</coordinateUnitPattern>
			</coordinateUnit>
		</unitLength>
		<durationUnit type="hm">
			<durationUnitPattern>h:mm</durationUnitPattern>
		</durationUnit>
		<durationUnit type="hms">
			<durationUnitPattern>h:mm:ss</durationUnitPattern>
		</durationUnit>
		<durationUnit type="ms">
			<durationUnitPattern>m:ss</durationUnitPattern>
		</durationUnit>
	</units>
	<listPatterns>
		<listPattern>
			<listPatternPart type="start">{0}, {1}</listPatternPart>
			<listPatternPart type="middle">{0}, {1}</listPatternPart>
			<listPatternPart type="end">{0}, {1}</listPatternPart>
			<listPatternPart type="2">{0}, {1}</listPatternPart>
		</listPattern>
		<listPattern type="unit">
			<listPatternPart type="start">{0}, {1}</listPatternPart>
			<listPatternPart type="middle">{0}, {1}</listPatternPart>
			<listPatternPart type="end">{0}, {1}</listPatternPart>
			<listPatternPart type="2">{0}, {1}</listPatternPart>
		</listPattern>
		<listPattern type="unit-narrow">
			<listPatternPart type="start">{0}, {1}</listPatternPart>
			<listPatternPart type="middle">{0}, {1}</listPatternPart>
			<listPatternPart type="end">{0}, {1}</listPatternPart>
			<listPatternPart type="2">{0}, {1}</listPatternPart>
		</listPattern>
		<listPattern type="unit-short">
			<listPatternPart type="start">{0}, {1}</listPatternPart>
			<listPatternPart type="middle">{0}, {1}</listPatternPart>
			<listPatternPart type="end">{0}, {1}</listPatternPart>
			<listPatternPart type="2">{0}, {1}</listPatternPart>
		</listPattern>
	</listPatterns>
	<posix>
		<messages>
			<yesstr>yes:y</yesstr>
			<nostr>no:n</nostr>
		</messages>
	</posix>
</ldml>