1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2013 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
<version number="$Revision: 8671 $"/>
<generation date="$Date: 2013-05-03 14:17:48 -0500 (Fri, 03 May 2013) $"/>
<language type="cs"/>
</identity>
<localeDisplayNames>
<localeDisplayPattern>
<localePattern draft="contributed">{0} ({1})</localePattern>
<localeSeparator draft="contributed">,</localeSeparator>
<localeKeyTypePattern draft="contributed">{0}: {1}</localeKeyTypePattern>
</localeDisplayPattern>
<languages>
<language type="aa">afarština</language>
<language type="ab">abcházština</language>
<language type="ace">acehština</language>
<language type="ach">akolština</language>
<language type="ada">adangme</language>
<language type="ady">adygejština</language>
<language type="ae">avestánština</language>
<language type="af">afrikánština</language>
<language type="afa">afroasijské jazyky</language>
<language type="afh" draft="contributed">afrihili</language>
<language type="agq">aghem</language>
<language type="ain">ainština</language>
<language type="ak">akanština</language>
<language type="akk">akkadština</language>
<language type="ale">aleutština</language>
<language type="alg" draft="contributed">algonkinské jazyky</language>
<language type="alt">altajština (jižní)</language>
<language type="am">amharština</language>
<language type="an">aragonština</language>
<language type="ang" draft="contributed">staroangličtina</language>
<language type="anp">angika</language>
<language type="apa" draft="contributed">apačské jazyky</language>
<language type="ar">arabština</language>
<language type="arc">aramejština</language>
<language type="arn">araukánština</language>
<language type="arp">arapažština</language>
<language type="art" draft="contributed">umělé jazyky</language>
<language type="arw">arawacké jazyky</language>
<language type="as">asámština</language>
<language type="asa">asu</language>
<language type="ast">asturština</language>
<language type="ath" draft="contributed">athapaskánské jazyky</language>
<language type="aus" draft="contributed">australské jazyky</language>
<language type="av">avarština</language>
<language type="awa">awadhština</language>
<language type="ay">ajmarština</language>
<language type="az">ázerbájdžánština</language>
<language type="az" alt="short">ázerbájdžánština</language>
<language type="ba">baškirština</language>
<language type="bad" draft="contributed">banda</language>
<language type="bai" draft="contributed">bamilek</language>
<language type="bal">balúčština</language>
<language type="ban">balijština</language>
<language type="bas" draft="contributed">basa</language>
<language type="bat">baltské jazyky</language>
<language type="bax">bamun</language>
<language type="bbj">ghomala</language>
<language type="be">běloruština</language>
<language type="bej">bedža</language>
<language type="bem">bembština</language>
<language type="ber">berberské jazyky</language>
<language type="bez">bena</language>
<language type="bfd">bafut</language>
<language type="bg">bulharština</language>
<language type="bh">bihárština</language>
<language type="bho">bhojpurština</language>
<language type="bi">bislamština</language>
<language type="bik">bikolština</language>
<language type="bin">bini</language>
<language type="bla">siksika</language>
<language type="bm">bambarština</language>
<language type="bn">bengálština</language>
<language type="bnt">bantuské jazyky</language>
<language type="bo">tibetština</language>
<language type="br">bretonština</language>
<language type="bra">bradžština</language>
<language type="brx">bodoština</language>
<language type="bs">bosenština</language>
<language type="bss">akoose</language>
<language type="btk">batačtina</language>
<language type="bua">burjatština</language>
<language type="bug">bugiština</language>
<language type="bum">bulu</language>
<language type="byn">blinština</language>
<language type="byv">medumba</language>
<language type="ca">katalánština</language>
<language type="cad">caddo</language>
<language type="cai">středoamerické indiánské jazyky</language>
<language type="car">karibština</language>
<language type="cau">kavkazské jazyky</language>
<language type="cay">kajugština</language>
<language type="cch">atsam</language>
<language type="ce">čečenština</language>
<language type="ceb">cebuánština</language>
<language type="cel">keltské jazyky</language>
<language type="cgg">kiga</language>
<language type="ch">čamoro</language>
<language type="chb">čibča</language>
<language type="chg">čagatajština</language>
<language type="chk">čukština</language>
<language type="chm">marijština</language>
<language type="chn">činuk pidžin</language>
<language type="cho">čoktština</language>
<language type="chp">čipevajština</language>
<language type="chr">čerokézština</language>
<language type="chy">čejenština</language>
<language type="ckb">kurdština (sorání)</language>
<language type="cmc">čamština</language>
<language type="co">korsičtina</language>
<language type="cop">koptština</language>
<language type="cpe">anglická kreolština či pidgin</language>
<language type="cpf">francouzská kreolština či pidgin</language>
<language type="cpp">portugalská kreolština či pidgin</language>
<language type="cr">kríjština</language>
<language type="crh">krymská turečtina</language>
<language type="crp">kreolština či pidgin</language>
<language type="cs">čeština</language>
<language type="csb">kašubština</language>
<language type="cu">staroslověnština</language>
<language type="cus">kúšitské jazyky</language>
<language type="cv">čuvaština</language>
<language type="cy">velština</language>
<language type="da">dánština</language>
<language type="dak">dakotština</language>
<language type="dar">dargština</language>
<language type="dav">taita</language>
<language type="day">dajáčtina</language>
<language type="de">němčina</language>
<language type="de_CH">němčina standardní (Švýcarsko)</language>
<language type="del">delawarština</language>
<language type="den" draft="provisional">slave</language>
<language type="dgr">dogrib</language>
<language type="din">dinkština</language>
<language type="dje">zarmština</language>
<language type="doi">dogarština</language>
<language type="dra">drávidské jazyky</language>
<language type="dsb">dolnolužická srbština</language>
<language type="dua">dualština</language>
<language type="dum" draft="provisional">středoholandština</language>
<language type="dv">divehi</language>
<language type="dyo">jola-fonyi</language>
<language type="dyu">djula</language>
<language type="dz">dzongkä</language>
<language type="dzg">dazaga</language>
<language type="ebu">embu</language>
<language type="ee">eweština</language>
<language type="efi">efikština</language>
<language type="egy">egyptština stará</language>
<language type="eka">ekajuk</language>
<language type="el">řečtina</language>
<language type="elx">elamitština</language>
<language type="en">angličtina</language>
<language type="en_US">angličtina (USA)</language>
<language type="enm">středověká angličtina</language>
<language type="eo">esperanto</language>
<language type="es">španělština</language>
<language type="es_ES">španělština (Evropa)</language>
<language type="et">estonština</language>
<language type="eu">baskičtina</language>
<language type="ewo">ewondo</language>
<language type="fa">perština</language>
<language type="fan">fang</language>
<language type="fat">fantština</language>
<language type="ff">fulahština</language>
<language type="fi">finština</language>
<language type="fil">filipínština</language>
<language type="fiu">ugrofinské jazyky</language>
<language type="fj">fidžijština</language>
<language type="fo">faerština</language>
<language type="fon">fonština</language>
<language type="fr">francouzština</language>
<language type="frm">středověká francouzština</language>
<language type="fro">starofrancouzština</language>
<language type="frr">fríština (severní)</language>
<language type="frs">fríština (východní)</language>
<language type="fur">furlandština</language>
<language type="fy">fríština</language>
<language type="ga">irština</language>
<language type="gaa">gaština</language>
<language type="gay">gayo</language>
<language type="gba">gbaja</language>
<language type="gd">skotská gaelština</language>
<language type="gem">germánské jazyky</language>
<language type="gez">geez</language>
<language type="gil">kiribatština</language>
<language type="gl">galicijština</language>
<language type="gmh">hornoněmčina (středověká)</language>
<language type="gn">guaranština</language>
<language type="goh">hornoněmčina (stará)</language>
<language type="gon">góndština</language>
<language type="gor">gorontalo</language>
<language type="got">gótština</language>
<language type="grb">grebo</language>
<language type="grc">starořečtina</language>
<language type="gsw">němčina (Švýcarsko)</language>
<language type="gu">gudžarátština</language>
<language type="guz">gusii</language>
<language type="gv">manština</language>
<language type="gwi">gwichʼin</language>
<language type="ha">hauština</language>
<language type="hai">haidština</language>
<language type="haw">havajština</language>
<language type="he">hebrejština</language>
<language type="hi">hindština</language>
<language type="hil">hiligaynonština</language>
<language type="him">himáčalština</language>
<language type="hit">chetitština</language>
<language type="hmn">hmongština</language>
<language type="ho">hiri motu</language>
<language type="hr">chorvatština</language>
<language type="hsb">hornolužická srbština</language>
<language type="ht">haitština</language>
<language type="hu">maďarština</language>
<language type="hup">hupa</language>
<language type="hy">arménština</language>
<language type="hz">hererština</language>
<language type="ia">interlingua</language>
<language type="iba">ibanština</language>
<language type="ibb">ibibio</language>
<language type="id">indonéština</language>
<language type="ie">interlingue</language>
<language type="ig">igboština</language>
<language type="ijo">idžo</language>
<language type="ik">inupiakština</language>
<language type="ilo">ilokánština</language>
<language type="inc">indické jazyky</language>
<language type="ine">indoevropské jazyky</language>
<language type="inh">inguština</language>
<language type="io">ido</language>
<language type="ira">íránské jazyky</language>
<language type="iro">irokézské jazyky</language>
<language type="is">islandština</language>
<language type="it">italština</language>
<language type="iu">inuktitutština</language>
<language type="ja">japonština</language>
<language type="jbo">lojban</language>
<language type="jmc">machame</language>
<language type="jpr">judeoperština</language>
<language type="jrb">judeoarabština</language>
<language type="jv">javánština</language>
<language type="ka">gruzínština</language>
<language type="kaa">karakalpačtina</language>
<language type="kab">kabylština</language>
<language type="kac" draft="contributed">kačijština</language>
<language type="kaj">jju</language>
<language type="kam">kambština</language>
<language type="kar">karenština</language>
<language type="kaw">kawi</language>
<language type="kbd">kabardinština</language>
<language type="kbl">kanembu</language>
<language type="kcg">tyap</language>
<language type="kde">makonde</language>
<language type="kea">kapverdština</language>
<language type="kfo">koro</language>
<language type="kg">konžština</language>
<language type="kha">khásí</language>
<language type="khi">kojsanské jazyky</language>
<language type="kho">chotánština</language>
<language type="ki">kikujština</language>
<language type="kj">kuaňamština</language>
<language type="kk">kazaština</language>
<language type="kkj">kako</language>
<language type="kl">grónština</language>
<language type="km">khmérština</language>
<language type="kmb">kimbundština</language>
<language type="kn">kannadština</language>
<language type="ko">korejština</language>
<language type="kok">konkánština</language>
<language type="kos">kosrajština</language>
<language type="kpe">kpelle</language>
<language type="kr">kanuri</language>
<language type="krc">karačajevo-balkarština</language>
<language type="krl">karelština</language>
<language type="kro">kru</language>
<language type="kru">kuruchština</language>
<language type="ks">kašmírština</language>
<language type="ksb">shambala</language>
<language type="ksf">bafia</language>
<language type="ksh">kölsch</language>
<language type="ku">kurdština</language>
<language type="kum">kumyčtina</language>
<language type="kut">kutenai</language>
<language type="kv">komijština</language>
<language type="kw">kornština</language>
<language type="ky">kyrgyzština</language>
<language type="la">latina</language>
<language type="lad">ladinština</language>
<language type="lag">langi</language>
<language type="lah">lahndština</language>
<language type="lam">lambština</language>
<language type="lb">lucemburština</language>
<language type="lez">lezginština</language>
<language type="lg">gandština</language>
<language type="li">limburština</language>
<language type="ln">lingalština</language>
<language type="lo">laoština</language>
<language type="lol">mongština</language>
<language type="loz">lozština</language>
<language type="lt">litevština</language>
<language type="lu">lubu-katanžština</language>
<language type="lua">luba-luluaština</language>
<language type="lui">luiseňo</language>
<language type="lun">lundština</language>
<language type="luo">luoština</language>
<language type="lus" draft="contributed">lišáí</language>
<language type="luy" draft="contributed">luhja</language>
<language type="lv">lotyština</language>
<language type="mad">madurština</language>
<language type="maf">mafa</language>
<language type="mag">magahijština</language>
<language type="mai">maithiliština</language>
<language type="mak">makasarština</language>
<language type="man">mandingština</language>
<language type="map">austronéské jazyky</language>
<language type="mas">masajština</language>
<language type="mde">maba</language>
<language type="mdf">mokšanština</language>
<language type="mdr">mandar</language>
<language type="men">mende</language>
<language type="mer">meru</language>
<language type="mfe">mauricijská kreolština</language>
<language type="mg">malgaština</language>
<language type="mga" draft="provisional">středoirština</language>
<language type="mh">maršálština</language>
<language type="mi">maorština</language>
<language type="mic">micmac</language>
<language type="min">minangkabau</language>
<language type="mis">různé jazyky</language>
<language type="mk">makedonština</language>
<language type="mkh" draft="provisional">mon-khmerské jazyky</language>
<language type="ml">malabarština</language>
<language type="mn">mongolština</language>
<language type="mnc">mandžuština</language>
<language type="mni">manipurština</language>
<language type="mno">manobo jazyky</language>
<language type="mo">moldavština</language>
<language type="moh">mohawk</language>
<language type="mos">mosi</language>
<language type="mr">maráthština</language>
<language type="ms">malajština</language>
<language type="mt">maltština</language>
<language type="mua">mundang</language>
<language type="mul">složené (víceřádkové) jazyky</language>
<language type="mun">mundské jazyky</language>
<language type="mus" draft="unconfirmed">muskogee (creek)</language>
<language type="mwl">mirandština</language>
<language type="mwr">márvárština</language>
<language type="my">barmština</language>
<language type="mye">myene</language>
<language type="myn">mayské jazyky</language>
<language type="myv">erzjanština</language>
<language type="na">naurština</language>
<language type="nah">nahuatl</language>
<language type="nai">severoamerické indiánské jazyky</language>
<language type="nap">neapolština</language>
<language type="nb">norština (bokmål)</language>
<language type="nd">ndebele (Zimbabwe)</language>
<language type="nds">dolnoněmčina</language>
<language type="ne">nepálština</language>
<language type="new">névárština</language>
<language type="ng">ndondština</language>
<language type="nia" draft="provisional">nias</language>
<language type="nic">nigero-kordofánské jazyky</language>
<language type="niu">niueština</language>
<language type="nl">nizozemština</language>
<language type="nl_BE">vlámština</language>
<language type="nn">norština (nynorsk)</language>
<language type="nnh" draft="contributed">ngiemboon</language>
<language type="no">norština</language>
<language type="nog">nogajština</language>
<language type="non">norština historická</language>
<language type="nqo">n’ko</language>
<language type="nr">ndebele (Jižní Afrika)</language>
<language type="nso">sotština (severní)</language>
<language type="nub">núbijské jazyky</language>
<language type="nus">nuerština</language>
<language type="nv">navažština</language>
<language type="nwc">newarština (klasická)</language>
<language type="ny">ňandžština</language>
<language type="nym">ňamwežština</language>
<language type="nyn">nyankole</language>
<language type="nyo">nyorština</language>
<language type="nzi">nzima</language>
<language type="oc">okcitánština</language>
<language type="oj">odžibvejština</language>
<language type="om">oromština</language>
<language type="or">urijština</language>
<language type="os">osetština</language>
<language type="osa">osage</language>
<language type="ota">osmanská turečtina</language>
<language type="oto">otomijské jazyky</language>
<language type="pa">paňdžábština</language>
<language type="paa">papuánské jazyky</language>
<language type="pag">pangasinanština</language>
<language type="pal">pahlavština</language>
<language type="pam">papangau</language>
<language type="pap">papiamento</language>
<language type="pau">palauština</language>
<language type="peo">staroperština</language>
<language type="phi">filipínské jazyky</language>
<language type="phn">féničtina</language>
<language type="pi">pálí</language>
<language type="pl">polština</language>
<language type="pon">pohnpeiština</language>
<language type="pra">prákrtské jazyky</language>
<language type="pro">provensálština</language>
<language type="ps">paštština</language>
<language type="ps" alt="variant">paštština</language>
<language type="pt">portugalština</language>
<language type="pt_PT">portugalština (Evropa)</language>
<language type="qu">kečuánština</language>
<language type="raj">rádžastánština</language>
<language type="rap">rapanuiština</language>
<language type="rar">rarotongaština</language>
<language type="rm">rétorománština</language>
<language type="rn">kirundština</language>
<language type="ro">rumunština</language>
<language type="roa">románské jazyky</language>
<language type="rof">rombo</language>
<language type="rom">romština</language>
<language type="ru">ruština</language>
<language type="rup">arumunština</language>
<language type="rw">kinyarwandština</language>
<language type="rwk">rwa</language>
<language type="sa">sanskrt</language>
<language type="sad">sandawština</language>
<language type="sah">jakutština</language>
<language type="sai">jihoamerické indiánské jazyky</language>
<language type="sal">sališské jazyky</language>
<language type="sam">samarština</language>
<language type="saq">samburu</language>
<language type="sas">sasakština</language>
<language type="sat">santálština</language>
<language type="sba">ngambay</language>
<language type="sbp">sangoština</language>
<language type="sc">sardština</language>
<language type="scn">sicilština</language>
<language type="sco">skotština</language>
<language type="sd">sindhština</language>
<language type="se">sámština (severní)</language>
<language type="see">seneca</language>
<language type="seh">sena</language>
<language type="sel">selkupština</language>
<language type="sem">semitské jazyky</language>
<language type="ses">koyraboro senni</language>
<language type="sg">sangština</language>
<language type="sga">staroirština</language>
<language type="sgn">znakové jazyky</language>
<language type="sh">srbochorvatština</language>
<language type="shn">šanština</language>
<language type="shu">arabština (čadská)</language>
<language type="si">sinhálština</language>
<language type="sid">sidamo</language>
<language type="sio">siouxské jazyky</language>
<language type="sit">tibetočínské jazyky</language>
<language type="sk">slovenština</language>
<language type="sl">slovinština</language>
<language type="sla">slovanský jazyk</language>
<language type="sm">samojština</language>
<language type="sma">sámština (jižní)</language>
<language type="smi">sámské jazyky</language>
<language type="smj">sámština (lulejská)</language>
<language type="smn">sámština (inarijská)</language>
<language type="sms">sámština (skoltská)</language>
<language type="sn">šonština</language>
<language type="snk">sonikština</language>
<language type="so">somálština</language>
<language type="sog">sogdština</language>
<language type="son">songhajština</language>
<language type="sq">albánština</language>
<language type="sr">srbština</language>
<language type="srn">sranan tongo</language>
<language type="srr">sererština</language>
<language type="ss">siswatština</language>
<language type="ssa">nilosaharské jazyky</language>
<language type="ssy">saho</language>
<language type="st">sotština (jižní)</language>
<language type="su">sundanština</language>
<language type="suk">sukuma</language>
<language type="sus">susu</language>
<language type="sux">sumerština</language>
<language type="sv">švédština</language>
<language type="sw">svahilština</language>
<language type="swb">komorština</language>
<language type="swc">swahilština (Kongo)</language>
<language type="syc">syrština (klasická)</language>
<language type="syr">syrština</language>
<language type="ta">tamilština</language>
<language type="tai">thajské jazyky</language>
<language type="te">telugština</language>
<language type="tem">temne</language>
<language type="teo">teso</language>
<language type="ter">tereno</language>
<language type="tet">tetumština</language>
<language type="tg">tádžičtina</language>
<language type="th">thajština</language>
<language type="ti">tigrinijština</language>
<language type="tig">tigrejština</language>
<language type="tiv">tivština</language>
<language type="tk">turkmenština</language>
<language type="tkl">tokelauština</language>
<language type="tl">tagalog</language>
<language type="tlh">klingonština</language>
<language type="tli">tlingit</language>
<language type="tmh">tamašek</language>
<language type="tn">setswanština</language>
<language type="to">tongánština</language>
<language type="tpi" draft="contributed">tok pisin</language>
<language type="tr">turečtina</language>
<language type="trv">taroko</language>
<language type="ts">tsonga</language>
<language type="tsi">tsimšijské jazyky</language>
<language type="tt">tatarština</language>
<language type="tum">tumbukština</language>
<language type="tup">tupijské jazyky</language>
<language type="tut">altajské jazyky</language>
<language type="tvl">tuvalština</language>
<language type="tw">twi</language>
<language type="ty" draft="contributed">tahitština</language>
<language type="tyv">tuvinština</language>
<language type="tzm" draft="contributed">tamazight (Střední Maroko)</language>
<language type="udm">udmurtština</language>
<language type="ug">ujgurština</language>
<language type="uga">ugaritština</language>
<language type="uk">ukrajinština</language>
<language type="umb" draft="provisional">umbundu</language>
<language type="und">neznámý jazyk</language>
<language type="ur">urdština</language>
<language type="uz">uzbečtina</language>
<language type="vai">vai</language>
<language type="ve" draft="contributed">venda</language>
<language type="vi">vietnamština</language>
<language type="vo">volapuk</language>
<language type="vot" draft="provisional">votiatština</language>
<language type="wa">valonština</language>
<language type="wae">němčina (walser)</language>
<language type="wak">wakašské jazyky</language>
<language type="wal">walamština</language>
<language type="war" draft="provisional">waray</language>
<language type="was">waština</language>
<language type="wen">lužickosrbské jazyky</language>
<language type="wo">wolofština</language>
<language type="xal">kalmyčtina</language>
<language type="xh">xhoština</language>
<language type="xog">sogština</language>
<language type="yao">jaoština</language>
<language type="yap">yapese</language>
<language type="yav">yangben</language>
<language type="ybb">yemba</language>
<language type="yi">jidiš</language>
<language type="yo">jorubština</language>
<language type="ypk">yupik</language>
<language type="yue">kantonština</language>
<language type="za">čuangština</language>
<language type="zap">zapotéčtina</language>
<language type="zbl">bliss systém</language>
<language type="zen">zenaga</language>
<language type="zh">čínština</language>
<language type="zh_Hans">čínština (zjednodušená)</language>
<language type="znd">zandština</language>
<language type="zu">zuluština</language>
<language type="zun">zunijština</language>
<language type="zxx">žádný jazykový obsah</language>
<language type="zza">zaza</language>
</languages>
<scripts>
<script type="Arab">arabské</script>
<script type="Arab" alt="variant">persko-arabské</script>
<script type="Armn">arménské</script>
<script type="Bali">balijské</script>
<script type="Batk">batacké</script>
<script type="Beng">bengálské</script>
<script type="Blis">blissovo písmo</script>
<script type="Bopo">bopomofo</script>
<script type="Brah">bráhmí</script>
<script type="Brai">braillovo písmo</script>
<script type="Bugi">buginské</script>
<script type="Buhd">buhid</script>
<script type="Cans">slabičné písmo kanadských domorodců</script>
<script type="Cham">čam</script>
<script type="Cher">čerokí</script>
<script type="Cirt">cirth</script>
<script type="Copt">koptské</script>
<script type="Cyrl">cyrilice</script>
<script type="Cyrs">cyrilce - staroslověnská</script>
<script type="Deva">dévanágárí</script>
<script type="Dsrt">deseret</script>
<script type="Egyd">egyptské démotické</script>
<script type="Egyh">egyptské hieratické</script>
<script type="Egyp">egyptské hieroglyfy</script>
<script type="Ethi">etiopské</script>
<script type="Geor">gruzínské</script>
<script type="Glag">hlaholice</script>
<script type="Goth">gotické</script>
<script type="Grek">řecké</script>
<script type="Gujr">gudžarátí</script>
<script type="Guru">gurmukhi</script>
<script type="Hang">hangul</script>
<script type="Hani">han</script>
<script type="Hano">hanunóo</script>
<script type="Hans">zjednodušené</script>
<script type="Hans" alt="stand-alone">han - zjednodušené</script>
<script type="Hant">tradiční</script>
<script type="Hant" alt="stand-alone">han - tradiční</script>
<script type="Hebr">hebrejské</script>
<script type="Hira">hiragana</script>
<script type="Hmng">hmongské</script>
<script type="Hrkt">katakana nebo hiragana</script>
<script type="Hung">staromaďarské</script>
<script type="Inds">harappské</script>
<script type="Ital">etruské</script>
<script type="Java">javánské</script>
<script type="Jpan">japonské</script>
<script type="Kali">kayah li</script>
<script type="Kana">katakana</script>
<script type="Khar">kháróšthí</script>
<script type="Khmr">khmerské</script>
<script type="Knda">kannadské</script>
<script type="Kore">korejské</script>
<script type="Laoo">laoské</script>
<script type="Latf">latinka - lomená</script>
<script type="Latg">latinka - galská</script>
<script type="Latn">latinka</script>
<script type="Lepc">lepčské</script>
<script type="Lina">lineární A</script>
<script type="Linb">lineární B</script>
<script type="Mand">mandejské</script>
<script type="Maya">mayské hieroglyfy</script>
<script type="Mero">meroitické</script>
<script type="Mlym">malajlámské</script>
<script type="Mong">mongolské</script>
<script type="Mymr">myanmarské</script>
<script type="Ogam">ogamské</script>
<script type="Orkh">orchonské</script>
<script type="Orya">uríské</script>
<script type="Osma">osmanské</script>
<script type="Perm">staropermské</script>
<script type="Phnx">fénické</script>
<script type="Plrd">pollardova fonetická abeceda</script>
<script type="Roro">rongorongo</script>
<script type="Runr">runové</script>
<script type="Shaw">shawova abeceda</script>
<script type="Sinh">sinhálské</script>
<script type="Syrc">syrské</script>
<script type="Syre">syrské - estrangelo</script>
<script type="Syrj">syrské - západní</script>
<script type="Syrn">syrské - východní</script>
<script type="Tagb">tagbanwa</script>
<script type="Taml">tamilské</script>
<script type="Telu">telugské</script>
<script type="Teng">tengwar</script>
<script type="Tfng">berberské</script>
<script type="Tglg">tagalské</script>
<script type="Thaa">thaana</script>
<script type="Thai">thajské</script>
<script type="Tibt">tibetské</script>
<script type="Ugar">ugaritské klínové</script>
<script type="Vaii">vai</script>
<script type="Visp">viditelná řeč</script>
<script type="Xpeo">staroperské klínové písmo</script>
<script type="Xsux">sumero-akkadské klínové písmo</script>
<script type="Yiii">yi</script>
<script type="Zsym">symboly</script>
<script type="Zxxx">bez zápisu</script>
<script type="Zyyy">obecné</script>
<script type="Zzzz">neznámé písmo</script>
</scripts>
<territories>
<territory type="001">Svět</territory>
<territory type="002">Afrika</territory>
<territory type="003">Severní Amerika</territory>
<territory type="005">Jižní Amerika</territory>
<territory type="009">Oceánie</territory>
<territory type="011">Západní Afrika</territory>
<territory type="013">Střední Amerika</territory>
<territory type="014">Východní Afrika</territory>
<territory type="015">Severní Afrika</territory>
<territory type="017">Střední Afrika</territory>
<territory type="018">Jižní Afrika</territory>
<territory type="019">Amerika</territory>
<territory type="021">Severní Amerika oblast</territory>
<territory type="029">Karibik</territory>
<territory type="030">Východní Asie</territory>
<territory type="034">Jižní Asie</territory>
<territory type="035">Jihovýchodní Asie</territory>
<territory type="039">Jižní Evropa</territory>
<territory type="053">Australasie</territory>
<territory type="054">Melanésie</territory>
<territory type="057">Mikronésie oblast</territory>
<territory type="061">Polynésie</territory>
<territory type="142">Asie</territory>
<territory type="143">Střední Asie</territory>
<territory type="145">Západní Asie</territory>
<territory type="150">Evropa</territory>
<territory type="151">Východní Evropa</territory>
<territory type="154">Severní Evropa</territory>
<territory type="155">Západní Evropa</territory>
<territory type="419">Latinská Amerika</territory>
<territory type="AC">Ostrov Ascension</territory>
<territory type="AD">Andorra</territory>
<territory type="AE">Spojené arabské emiráty</territory>
<territory type="AF">Afghánistán</territory>
<territory type="AG">Antigua a Barbuda</territory>
<territory type="AI">Anguilla</territory>
<territory type="AL">Albánie</territory>
<territory type="AM">Arménie</territory>
<territory type="AN">Nizozemské Antily</territory>
<territory type="AO">Angola</territory>
<territory type="AQ">Antarktida</territory>
<territory type="AR">Argentina</territory>
<territory type="AS">Americká Samoa</territory>
<territory type="AT">Rakousko</territory>
<territory type="AU">Austrálie</territory>
<territory type="AW">Aruba</territory>
<territory type="AX">Alandy</territory>
<territory type="AZ">Ázerbájdžán</territory>
<territory type="BA">Bosna a Hercegovina</territory>
<territory type="BB">Barbados</territory>
<territory type="BD">Bangladéš</territory>
<territory type="BE">Belgie</territory>
<territory type="BF">Burkina Faso</territory>
<territory type="BG">Bulharsko</territory>
<territory type="BH">Bahrajn</territory>
<territory type="BI">Burundi</territory>
<territory type="BJ">Benin</territory>
<territory type="BL">Svatý Bartoloměj</territory>
<territory type="BM">Bermudy</territory>
<territory type="BN">Brunej</territory>
<territory type="BO">Bolívie</territory>
<territory type="BQ">Karibské Nizozemsko</territory>
<territory type="BR">Brazílie</territory>
<territory type="BS">Bahamy</territory>
<territory type="BT">Bhútán</territory>
<territory type="BV">Bouvetův ostrov</territory>
<territory type="BW">Botswana</territory>
<territory type="BY">Bělorusko</territory>
<territory type="BZ">Belize</territory>
<territory type="CA">Kanada</territory>
<territory type="CC">Kokosové ostrovy</territory>
<territory type="CD">Kongo - Kinshasa</territory>
<territory type="CD" alt="variant">Kongo - DRK</territory>
<territory type="CF">Středoafrická republika</territory>
<territory type="CG">Kongo - Brazzaville</territory>
<territory type="CG" alt="variant">Kongo - republika</territory>
<territory type="CH">Švýcarsko</territory>
<territory type="CI">Pobřeží slonoviny</territory>
<territory type="CI" alt="variant">Pobřeží slonoviny</territory>
<territory type="CK">Cookovy ostrovy</territory>
<territory type="CL">Chile</territory>
<territory type="CM">Kamerun</territory>
<territory type="CN">Čína</territory>
<territory type="CO">Kolumbie</territory>
<territory type="CP">Clippertonův ostrov</territory>
<territory type="CR">Kostarika</territory>
<territory type="CU">Kuba</territory>
<territory type="CV">Kapverdy</territory>
<territory type="CW">Curaçao</territory>
<territory type="CX">Vánoční ostrovy</territory>
<territory type="CY">Kypr</territory>
<territory type="CZ">Česká republika</territory>
<territory type="DE">Německo</territory>
<territory type="DG">Diego García</territory>
<territory type="DJ">Džibutsko</territory>
<territory type="DK">Dánsko</territory>
<territory type="DM">Dominika</territory>
<territory type="DO">Dominikánská republika</territory>
<territory type="DZ">Alžírsko</territory>
<territory type="EA">Ceuta a Melilla</territory>
<territory type="EC">Ekvádor</territory>
<territory type="EE">Estonsko</territory>
<territory type="EG">Egypt</territory>
<territory type="EH">Západní Sahara</territory>
<territory type="ER">Eritrea</territory>
<territory type="ES">Španělsko</territory>
<territory type="ET">Etiopie</territory>
<territory type="EU">Evropská unie</territory>
<territory type="FI">Finsko</territory>
<territory type="FJ">Fidži</territory>
<territory type="FK">Falklandské ostrovy</territory>
<territory type="FK" alt="variant">Falklandské ostrovy [Malvíny]</territory>
<territory type="FM">Mikronésie</territory>
<territory type="FO">Faerské ostrovy</territory>
<territory type="FR">Francie</territory>
<territory type="GA">Gabon</territory>
<territory type="GB">Velká Británie</territory>
<territory type="GD">Grenada</territory>
<territory type="GE">Gruzie</territory>
<territory type="GF">Francouzská Guyana</territory>
<territory type="GG">Guernsey</territory>
<territory type="GH">Ghana</territory>
<territory type="GI">Gibraltar</territory>
<territory type="GL">Grónsko</territory>
<territory type="GM">Gambie</territory>
<territory type="GN">Guinea</territory>
<territory type="GP">Guadeloupe</territory>
<territory type="GQ">Rovníková Guinea</territory>
<territory type="GR">Řecko</territory>
<territory type="GS">Jižní Georgie a Jižní Sandwichovy ostrovy</territory>
<territory type="GT">Guatemala</territory>
<territory type="GU">Guam</territory>
<territory type="GW">Guinea-Bissau</territory>
<territory type="GY">Guyana</territory>
<territory type="HK">Hongkong - ZAO Číny</territory>
<territory type="HK" alt="short">Hongkong</territory>
<territory type="HM">Heardův ostrov a McDonaldovy ostrovy</territory>
<territory type="HN">Honduras</territory>
<territory type="HR">Chorvatsko</territory>
<territory type="HT">Haiti</territory>
<territory type="HU">Maďarsko</territory>
<territory type="IC">Kanárské ostrovy</territory>
<territory type="ID">Indonésie</territory>
<territory type="IE">Irsko</territory>
<territory type="IL">Izrael</territory>
<territory type="IM">Ostrov Man</territory>
<territory type="IN">Indie</territory>
<territory type="IO">Britské indickooceánské území</territory>
<territory type="IQ">Irák</territory>
<territory type="IR">Írán</territory>
<territory type="IS">Island</territory>
<territory type="IT">Itálie</territory>
<territory type="JE">Jersey</territory>
<territory type="JM">Jamajka</territory>
<territory type="JO">Jordánsko</territory>
<territory type="JP">Japonsko</territory>
<territory type="KE">Keňa</territory>
<territory type="KG">Kyrgyzstán</territory>
<territory type="KH">Kambodža</territory>
<territory type="KI">Kiribati</territory>
<territory type="KM">Komory</territory>
<territory type="KN">Svatý Kitts a Nevis</territory>
<territory type="KP">Severní Korea</territory>
<territory type="KR">Jižní Korea</territory>
<territory type="KW">Kuvajt</territory>
<territory type="KY">Kajmanské ostrovy</territory>
<territory type="KZ">Kazachstán</territory>
<territory type="LA">Laos</territory>
<territory type="LB">Libanon</territory>
<territory type="LC">Svatá Lucie</territory>
<territory type="LI">Lichtenštejnsko</territory>
<territory type="LK">Srí Lanka</territory>
<territory type="LR">Libérie</territory>
<territory type="LS">Lesotho</territory>
<territory type="LT">Litva</territory>
<territory type="LU">Lucembursko</territory>
<territory type="LV">Lotyšsko</territory>
<territory type="LY">Libye</territory>
<territory type="MA">Maroko</territory>
<territory type="MC">Monako</territory>
<territory type="MD">Moldavsko</territory>
<territory type="ME">Černá Hora</territory>
<territory type="MF">Svatý Martin</territory>
<territory type="MG">Madagaskar</territory>
<territory type="MH">Marshallovy ostrovy</territory>
<territory type="MK">Makedonie</territory>
<territory type="MK" alt="variant">Makedonie</territory>
<territory type="ML">Mali</territory>
<territory type="MM">Myanmar</territory>
<territory type="MN">Mongolsko</territory>
<territory type="MO">Macao - ZAO Číny</territory>
<territory type="MO" alt="short">Macao</territory>
<territory type="MP">Severní Mariany</territory>
<territory type="MQ">Martinik</territory>
<territory type="MR">Mauritánie</territory>
<territory type="MS">Montserrat</territory>
<territory type="MT">Malta</territory>
<territory type="MU">Mauricius</territory>
<territory type="MV">Maledivy</territory>
<territory type="MW">Malawi</territory>
<territory type="MX">Mexiko</territory>
<territory type="MY">Malajsie</territory>
<territory type="MZ">Mosambik</territory>
<territory type="NA">Namibie</territory>
<territory type="NC">Nová Kaledonie</territory>
<territory type="NE">Niger</territory>
<territory type="NF">Norfolk</territory>
<territory type="NG">Nigérie</territory>
<territory type="NI">Nikaragua</territory>
<territory type="NL">Nizozemsko</territory>
<territory type="NO">Norsko</territory>
<territory type="NP">Nepál</territory>
<territory type="NR">Nauru</territory>
<territory type="NU">Niue</territory>
<territory type="NZ">Nový Zéland</territory>
<territory type="OM">Omán</territory>
<territory type="PA">Panama</territory>
<territory type="PE">Peru</territory>
<territory type="PF">Francouzská Polynésie</territory>
<territory type="PG">Papua-Nová Guinea</territory>
<territory type="PH">Filipíny</territory>
<territory type="PK">Pákistán</territory>
<territory type="PL">Polsko</territory>
<territory type="PM">Svatý Pierre a Miquelon</territory>
<territory type="PN">Pitcairnovy ostrovy</territory>
<territory type="PR">Portoriko</territory>
<territory type="PS">Palestinská území</territory>
<territory type="PS" alt="short">Palestina</territory>
<territory type="PT">Portugalsko</territory>
<territory type="PW">Palau</territory>
<territory type="PY">Paraguay</territory>
<territory type="QA">Katar</territory>
<territory type="QO">Vnější Oceánie</territory>
<territory type="RE">Réunion</territory>
<territory type="RO">Rumunsko</territory>
<territory type="RS">Srbsko</territory>
<territory type="RU">Rusko</territory>
<territory type="RW">Rwanda</territory>
<territory type="SA">Saúdská Arábie</territory>
<territory type="SB">Šalamounovy ostrovy</territory>
<territory type="SC">Seychely</territory>
<territory type="SD">Súdán</territory>
<territory type="SE">Švédsko</territory>
<territory type="SG">Singapur</territory>
<territory type="SH">Svatá Helena</territory>
<territory type="SI">Slovinsko</territory>
<territory type="SJ">Špicberky a Jan Mayen</territory>
<territory type="SK">Slovensko</territory>
<territory type="SL">Sierra Leone</territory>
<territory type="SM">San Marino</territory>
<territory type="SN">Senegal</territory>
<territory type="SO">Somálsko</territory>
<territory type="SR">Surinam</territory>
<territory type="SS">Jižní Súdán</territory>
<territory type="ST">Svatý Tomáš a Princův ostrov</territory>
<territory type="SV">Salvador</territory>
<territory type="SX">Sint Maarten</territory>
<territory type="SY">Sýrie</territory>
<territory type="SZ">Svazijsko</territory>
<territory type="TA">Tristan da Cunha</territory>
<territory type="TC">Ostrovy Turks a Caicos</territory>
<territory type="TD">Čad</territory>
<territory type="TF">Francouzská jižní teritoria</territory>
<territory type="TG">Togo</territory>
<territory type="TH">Thajsko</territory>
<territory type="TJ">Tádžikistán</territory>
<territory type="TK">Tokelau</territory>
<territory type="TL">Východní Timor</territory>
<territory type="TL" alt="variant">Východní Timor</territory>
<territory type="TM">Turkmenistán</territory>
<territory type="TN">Tunisko</territory>
<territory type="TO">Tonga</territory>
<territory type="TR">Turecko</territory>
<territory type="TT">Trinidad a Tobago</territory>
<territory type="TV">Tuvalu</territory>
<territory type="TW">Tchaj-wan</territory>
<territory type="TZ">Tanzanie</territory>
<territory type="UA">Ukrajina</territory>
<territory type="UG">Uganda</territory>
<territory type="UM">Menší odlehlé ostrovy USA</territory>
<territory type="US">Spojené státy</territory>
<territory type="UY">Uruguay</territory>
<territory type="UZ">Uzbekistán</territory>
<territory type="VA">Vatikán</territory>
<territory type="VC">Svatý Vincenc a Grenadiny</territory>
<territory type="VE">Venezuela</territory>
<territory type="VG">Britské Panenské ostrovy</territory>
<territory type="VI">Americké Panenské ostrovy</territory>
<territory type="VN">Vietnam</territory>
<territory type="VU">Vanuatu</territory>
<territory type="WF">Wallis a Futuna</territory>
<territory type="WS">Samoa</territory>
<territory type="XK">Kosovo</territory>
<territory type="YE">Jemen</territory>
<territory type="YT">Mayotte</territory>
<territory type="ZA">Jihoafrická republika</territory>
<territory type="ZM">Zambie</territory>
<territory type="ZW">Zimbabwe</territory>
<territory type="ZZ">Neznámá oblast</territory>
</territories>
<variants>
<variant type="PINYIN" draft="provisional">pinyin</variant>
<variant type="SCOTLAND" draft="contributed">angličtina (Skotsko)</variant>
<variant type="WADEGILE" draft="contributed">Wade-Giles</variant>
</variants>
<keys>
<key type="calendar">Kalendář</key>
<key type="colAlternate" draft="contributed">Ignorovat řazení symbolů</key>
<key type="colBackwards" draft="contributed">Obrácené řazení akcentů</key>
<key type="colCaseFirst" draft="contributed">Řazení velkých a malých písmen</key>
<key type="colCaseLevel" draft="contributed">Rozlišovaní velkých a malých písmen při řazení</key>
<key type="colHiraganaQuaternary" draft="contributed">Řazení podle slabičných písem (kana)</key>
<key type="collation">Řazení</key>
<key type="colNormalization" draft="contributed">Normalizované řazení</key>
<key type="colNumeric" draft="contributed">Číselné řazení</key>
<key type="colStrength" draft="contributed">Síla řazení</key>
<key type="currency">Měna</key>
<key type="numbers">Čísla</key>
<key type="timezone" draft="contributed">Časové pásmo</key>
<key type="va" draft="contributed">Varianta národního prostředí</key>
<key type="variableTop" draft="contributed">Řadit jako symboly</key>
<key type="x">Soukromé použití</key>
</keys>
<types>
<type type="arab" key="numbers">Arabsko-indické číslice</type>
<type type="arabext" key="numbers">Rozšířené arabsko-indické číslice</type>
<type type="armn" key="numbers">Arménské číslice</type>
<type type="armnlow" key="numbers">Malé arménské číslice</type>
<type type="beng" key="numbers">Bengálské číslice</type>
<type type="big5han" key="collation">Řazení pro tradiční čínštinu – Big5</type>
<type type="buddhist" key="calendar">Buddhistický kalendář</type>
<type type="chinese" key="calendar">Čínský kalendář</type>
<type type="coptic" key="calendar">Koptský kalendář</type>
<type type="deva" key="numbers">Číslice písma dévanágarí</type>
<type type="dictionary" key="collation">Slovníkové řazení</type>
<type type="ducet" key="collation">Výchozí řazení Unicode</type>
<type type="ethi" key="numbers">Etiopské číslice</type>
<type type="ethiopic" key="calendar">Etiopský kalendář</type>
<type type="ethiopic-amete-alem" key="calendar">Etiopský kalendář (Amete-Alem)</type>
<type type="finance" key="numbers" draft="contributed">Finančnický zápis čísel</type>
<type type="fullwide" key="numbers">Číslice – plná šířka</type>
<type type="gb2312han" key="collation">Řazení pro zjednodušenou čínštinu – GB2312</type>
<type type="geor" key="numbers">Gruzínské číslice</type>
<type type="gregorian" key="calendar">Gregoriánský kalendář</type>
<type type="grek" key="numbers">Řecké číslice</type>
<type type="greklow" key="numbers">Malé řecké číslice</type>
<type type="gujr" key="numbers">Gudžarátské číslice</type>
<type type="guru" key="numbers">Číslice gurmukhí</type>
<type type="hanidec" key="numbers">Čínské desítkové číslice</type>
<type type="hans" key="numbers">Číslice zjednodušené čínštiny</type>
<type type="hansfin" key="numbers">Finanční číslice zjednodušené čínštiny</type>
<type type="hant" key="numbers">Číslice tradiční čínštiny</type>
<type type="hantfin" key="numbers">Finanční číslice tradiční čínštiny</type>
<type type="hebr" key="numbers">Hebrejské číslice</type>
<type type="hebrew" key="calendar">Hebrejský kalendář</type>
<type type="identical" key="colStrength" draft="contributed">Řadit vše</type>
<type type="indian" key="calendar">Indický národní kalendář</type>
<type type="islamic" key="calendar">Muslimský kalendář</type>
<type type="islamic-civil" key="calendar">Muslimský občanský kalendář</type>
<type type="japanese" key="calendar">Japonský kalendář</type>
<type type="jpan" key="numbers">Japonské číslice</type>
<type type="jpanfin" key="numbers">Japonské finanční číslice</type>
<type type="khmr" key="numbers">Khmerské číslice</type>
<type type="knda" key="numbers">Kannadské číslice</type>
<type type="laoo" key="numbers">Laoské číslice</type>
<type type="latn" key="numbers">Západní číslice</type>
<type type="lower" key="colCaseFirst" draft="contributed">Nejdříve řadit malá písmena</type>
<type type="mlym" key="numbers">Malajálamské číslice</type>
<type type="mong" key="numbers">Mongolské číslice</type>
<type type="mymr" key="numbers">Myanmarské číslice</type>
<type type="native" key="numbers" draft="contributed">Nativní číslice</type>
<type type="no" key="colBackwards" draft="contributed">Normální řazení akcentů</type>
<type type="no" key="colCaseFirst" draft="contributed">Normální řazení velkých a malých písmen</type>
<type type="no" key="colCaseLevel" draft="contributed">Nerozlišovat při řazení velká a malá písmena</type>
<type type="no" key="colHiraganaQuaternary" draft="contributed">Řadit slabičná písma (kana) samostatně</type>
<type type="no" key="colNormalization" draft="contributed">Řadit bez normalizace</type>
<type type="no" key="colNumeric" draft="contributed">Řadit číslice jednotlivě</type>
<type type="non-ignorable" key="colAlternate" draft="contributed">Řadit symboly</type>
<type type="orya" key="numbers">Urijské číslice</type>
<type type="persian" key="calendar">Perský kalendář</type>
<type type="phonebook" key="collation">Řazení jako v telefonním seznamu</type>
<type type="phonetic" key="collation" draft="contributed">Fonetické řazení</type>
<type type="pinyin" key="collation">Řazení podle pinyinu</type>
<type type="primary" key="colStrength" draft="contributed">Řadit pouze základní písmena</type>
<type type="quaternary" key="colStrength" draft="contributed">Řadit akcenty/velká a malá písmena/šířku/kana</type>
<type type="reformed" key="collation">Reformované řazení</type>
<type type="roc" key="calendar" draft="contributed">Kalendář Čínské republiky</type>
<type type="roman" key="numbers">Římské číslice</type>
<type type="romanlow" key="numbers">Malé římské číslice</type>
<type type="search" key="collation">Obecné hledání</type>
<type type="searchjl" key="collation" draft="contributed">Vyhledávat podle počáteční souhlásky písma hangul</type>
<type type="secondary" key="colStrength" draft="contributed">Řadit akcenty</type>
<type type="shifted" key="colAlternate" draft="contributed">Při řazení ignorovat symboly</type>
<type type="stroke" key="collation">Řazení podle tahů</type>
<type type="taml" key="numbers">Tamilské tradiční číslice</type>
<type type="tamldec" key="numbers">Tamilské číslice</type>
<type type="telu" key="numbers">Telugské číslice</type>
<type type="tertiary" key="colStrength" draft="contributed">Řadit akcenty/velká a malá písmena/šířku</type>
<type type="thai" key="numbers">Thajské číslice</type>
<type type="tibt" key="numbers">Tibetské číslice</type>
<type type="traditional" key="collation">Tradiční řazení</type>
<type type="traditional" key="numbers" draft="contributed">Tradiční číslovky</type>
<type type="unihan" key="collation">Řazení podle radikálů</type>
<type type="upper" key="colCaseFirst" draft="contributed">Nejdříve řadit velká písmena</type>
<type type="vaii" key="numbers" draft="contributed">Vaiské číslice</type>
<type type="yes" key="colBackwards" draft="contributed">Řadit akcenty opačně</type>
<type type="yes" key="colCaseLevel" draft="contributed">Rozlišovat při řazení velká a malá písmena</type>
<type type="yes" key="colHiraganaQuaternary" draft="contributed">Řadit jednotlivé typy slabičných písem (kana) různě</type>
<type type="yes" key="colNormalization" draft="contributed">Řazení podle normalizovaného kódování Unicode</type>
<type type="yes" key="colNumeric" draft="contributed">Numerické řazení číslic</type>
</types>
<transformNames>
<transformName type="BGN" draft="contributed">BGN</transformName>
<transformName type="Numeric" draft="contributed">Numerický</transformName>
<transformName type="Tone" draft="contributed">Tón</transformName>
<transformName type="UNGEGN" draft="contributed">UNGEGN</transformName>
<transformName type="x-Accents" draft="contributed">Přízvuky</transformName>
<transformName type="x-Fullwidth" draft="contributed">Plná šířka</transformName>
<transformName type="x-Halfwidth" draft="contributed">Poloviční šířka</transformName>
<transformName type="x-Jamo" draft="contributed">Jamo</transformName>
<transformName type="x-Pinyin" draft="contributed">Pinyin</transformName>
<transformName type="x-Publishing" draft="contributed">Publikování</transformName>
</transformNames>
<measurementSystemNames>
<measurementSystemName type="metric">metrický</measurementSystemName>
<measurementSystemName type="UK">Velká Británie</measurementSystemName>
<measurementSystemName type="US">USA</measurementSystemName>
</measurementSystemNames>
<codePatterns>
<codePattern type="language">Jazyk: {0}</codePattern>
<codePattern type="script" draft="contributed">Písmo: {0}</codePattern>
<codePattern type="territory">Region: {0}</codePattern>
</codePatterns>
</localeDisplayNames>
<contextTransforms>
<contextTransformUsage type="day-format-except-narrow">
<contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
</contextTransformUsage>
<contextTransformUsage type="day-standalone-except-narrow">
<contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
</contextTransformUsage>
<contextTransformUsage type="languages">
<contextTransform type="stand-alone">titlecase-firstword</contextTransform>
<contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
</contextTransformUsage>
<contextTransformUsage type="month-format-except-narrow">
<contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
</contextTransformUsage>
<contextTransformUsage type="month-standalone-except-narrow">
<contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
</contextTransformUsage>
</contextTransforms>
<characters>
<exemplarCharacters>[a á b c č d ď e é ě f g h {ch} i í j k l m n ň o ó p q r ř s š t ť u ú ů v w x y ý z ž]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[á à ă â å ä ã ā æ ç é è ĕ ê ë ē í ì ĭ î ï ī ľ ł ñ ó ò ŏ ô ö ø ō œ ŕ ú ù ŭ û ü ū ÿ]</exemplarCharacters>
<exemplarCharacters type="index" draft="contributed">[A B C Č D E F G H {CH} I J K L M N O P Q R Ř S Š T U V W X Y Z Ž]</exemplarCharacters>
<exemplarCharacters type="punctuation">[\- ‐ – , ; \: ! ? . … ‘ ‚ “ „ ( ) \[ \] § @ * / \&]</exemplarCharacters>
<ellipsis type="final" draft="contributed">{0}…</ellipsis>
<ellipsis type="initial" draft="contributed">… {0}</ellipsis>
<ellipsis type="medial" draft="contributed">{0}… {1}</ellipsis>
<moreInformation draft="contributed">?</moreInformation>
</characters>
<delimiters>
<quotationStart>„</quotationStart>
<quotationEnd>“</quotationEnd>
<alternateQuotationStart>‚</alternateQuotationStart>
<alternateQuotationEnd>‘</alternateQuotationEnd>
</delimiters>
<dates>
<calendars>
<calendar type="buddhist">
<eras>
<eraAbbr>
<era type="0">BE</era>
</eraAbbr>
</eras>
</calendar>
<calendar type="chinese">
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, d. M. y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>d. M. y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>d. M. y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>d. M. y</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
</calendar>
<calendar type="generic">
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, d. MMMM y G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>d. MMMM y G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>d. M. y G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>dd.MM.yy GGGGG</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<dateTimeFormatLength type="full">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="long">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="medium">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="short">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<availableFormats>
<dateFormatItem id="d">d.</dateFormatItem>
<dateFormatItem id="Ed">E, d.</dateFormatItem>
<dateFormatItem id="Gy">y G</dateFormatItem>
<dateFormatItem id="GyMMM">LLLL y G</dateFormatItem>
<dateFormatItem id="GyMMMd">d. M. y G</dateFormatItem>
<dateFormatItem id="GyMMMEd">E, d. M. y G</dateFormatItem>
<dateFormatItem id="h">h a</dateFormatItem>
<dateFormatItem id="H">H</dateFormatItem>
<dateFormatItem id="hm">h:mm a</dateFormatItem>
<dateFormatItem id="Hm">H:mm</dateFormatItem>
<dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
<dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
<dateFormatItem id="M">L</dateFormatItem>
<dateFormatItem id="Md">d. M.</dateFormatItem>
<dateFormatItem id="MEd">E, d. M.</dateFormatItem>
<dateFormatItem id="MMM">LLL</dateFormatItem>
<dateFormatItem id="MMMd">d. M.</dateFormatItem>
<dateFormatItem id="MMMEd">E, d. M.</dateFormatItem>
<dateFormatItem id="ms">mm:ss</dateFormatItem>
<dateFormatItem id="y">y G</dateFormatItem>
<dateFormatItem id="yyyy">y G</dateFormatItem>
<dateFormatItem id="yyyyM">M/y GGGGG</dateFormatItem>
<dateFormatItem id="yyyyMd">d. M. y GGGGG</dateFormatItem>
<dateFormatItem id="yyyyMEd">E, d. M. y GGGGG</dateFormatItem>
<dateFormatItem id="yyyyMMM">LLLL y G</dateFormatItem>
<dateFormatItem id="yyyyMMMd">d. M. y G</dateFormatItem>
<dateFormatItem id="yyyyMMMEd">E, d. M. y G</dateFormatItem>
<dateFormatItem id="yyyyMMMM">LLLL y G</dateFormatItem>
<dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
<dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatFallback>{0} – {1}</intervalFormatFallback>
<intervalFormatItem id="d">
<greatestDifference id="d">d.–d.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="h">
<greatestDifference id="a" draft="contributed">H – H</greatestDifference>
<greatestDifference id="h">h–h a</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="H">
<greatestDifference id="H">H–H</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hm">
<greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
<greatestDifference id="h">h:mm–h:mm a</greatestDifference>
<greatestDifference id="m">h:mm–h:mm a</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Hm">
<greatestDifference id="H">H:mm–H:mm</greatestDifference>
<greatestDifference id="m">H:mm–H:mm</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hmv">
<greatestDifference id="a">H:mm – H:mm v</greatestDifference>
<greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
<greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Hmv">
<greatestDifference id="H">H:mm–H:mm v</greatestDifference>
<greatestDifference id="m">H:mm–H:mm v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hv">
<greatestDifference id="a">H – H v</greatestDifference>
<greatestDifference id="h">h–h a v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Hv">
<greatestDifference id="H">H–H v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="M">
<greatestDifference id="M">M–M</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Md">
<greatestDifference id="d">d. M. – d. M.</greatestDifference>
<greatestDifference id="M">d. M. – d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MEd">
<greatestDifference id="d">E, d. M. – E, d. M.</greatestDifference>
<greatestDifference id="M">E, d. M. – E, d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMM">
<greatestDifference id="M">MMM–MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMd">
<greatestDifference id="d">d.–d. M.</greatestDifference>
<greatestDifference id="M">d. M. – d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMEd">
<greatestDifference id="d">E, d. M. – E, d. M.</greatestDifference>
<greatestDifference id="M">E, d. M. – E, d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="y">
<greatestDifference id="y">y–y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yM">
<greatestDifference id="M">M/y – M/y G</greatestDifference>
<greatestDifference id="y">M/y – M/y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMd">
<greatestDifference id="d">dd.MM.y – dd.MM.y G</greatestDifference>
<greatestDifference id="M">dd.MM.y – dd.MM.y G</greatestDifference>
<greatestDifference id="y">dd.MM.y – dd.MM.y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMEd">
<greatestDifference id="d">E, dd.MM.y – E, dd.MM.y G</greatestDifference>
<greatestDifference id="M">E, dd.MM.y – E, dd.MM.y G</greatestDifference>
<greatestDifference id="y">E, dd.MM.y – E, dd.MM.y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMM">
<greatestDifference id="M">MMM–MMM y G</greatestDifference>
<greatestDifference id="y">MMM y – MMM y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMd">
<greatestDifference id="d">d.–d. M. y G</greatestDifference>
<greatestDifference id="M">d. M. – d. M. y G</greatestDifference>
<greatestDifference id="y">d. M. y – d. M. y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMEd">
<greatestDifference id="d">E, d. M. – E, d. M. y G</greatestDifference>
<greatestDifference id="M">E, d. M. – E, d. M. y G</greatestDifference>
<greatestDifference id="y">E, d. M. y – E, d. M. y G</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMM">
<greatestDifference id="M">LLLL – LLLL y G</greatestDifference>
<greatestDifference id="y">LLLL y – LLLL y G</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
</calendar>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="abbreviated">
<month type="1">led</month>
<month type="2">úno</month>
<month type="3">bře</month>
<month type="4">dub</month>
<month type="5">kvě</month>
<month type="6">čvn</month>
<month type="7">čvc</month>
<month type="8">srp</month>
<month type="9">zář</month>
<month type="10">říj</month>
<month type="11">lis</month>
<month type="12">pro</month>
</monthWidth>
<monthWidth type="narrow">
<month type="1">1</month>
<month type="2">2</month>
<month type="3">3</month>
<month type="4">4</month>
<month type="5">5</month>
<month type="6">6</month>
<month type="7">7</month>
<month type="8">8</month>
<month type="9">9</month>
<month type="10">10</month>
<month type="11">11</month>
<month type="12">12</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">ledna</month>
<month type="2">února</month>
<month type="3">března</month>
<month type="4">dubna</month>
<month type="5">května</month>
<month type="6">června</month>
<month type="7">července</month>
<month type="8">srpna</month>
<month type="9">září</month>
<month type="10">října</month>
<month type="11">listopadu</month>
<month type="12">prosince</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="abbreviated">
<month type="1">led</month>
<month type="2">úno</month>
<month type="3">bře</month>
<month type="4">dub</month>
<month type="5">kvě</month>
<month type="6">čvn</month>
<month type="7">čvc</month>
<month type="8">srp</month>
<month type="9">zář</month>
<month type="10">říj</month>
<month type="11">lis</month>
<month type="12">pro</month>
</monthWidth>
<monthWidth type="narrow">
<month type="1">l</month>
<month type="2">ú</month>
<month type="3">b</month>
<month type="4">d</month>
<month type="5">k</month>
<month type="6">č</month>
<month type="7">č</month>
<month type="8">s</month>
<month type="9">z</month>
<month type="10">ř</month>
<month type="11">l</month>
<month type="12">p</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">leden</month>
<month type="2">únor</month>
<month type="3">březen</month>
<month type="4">duben</month>
<month type="5">květen</month>
<month type="6">červen</month>
<month type="7">červenec</month>
<month type="8">srpen</month>
<month type="9">září</month>
<month type="10">říjen</month>
<month type="11">listopad</month>
<month type="12">prosinec</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="abbreviated">
<day type="sun">ne</day>
<day type="mon">po</day>
<day type="tue">út</day>
<day type="wed">st</day>
<day type="thu">čt</day>
<day type="fri">pá</day>
<day type="sat">so</day>
</dayWidth>
<dayWidth type="narrow">
<day type="sun">N</day>
<day type="mon">P</day>
<day type="tue">Ú</day>
<day type="wed">S</day>
<day type="thu">Č</day>
<day type="fri">P</day>
<day type="sat">S</day>
</dayWidth>
<dayWidth type="short">
<day type="sun">ne</day>
<day type="mon">po</day>
<day type="tue">út</day>
<day type="wed">st</day>
<day type="thu">čt</day>
<day type="fri">pá</day>
<day type="sat">so</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">neděle</day>
<day type="mon">pondělí</day>
<day type="tue">úterý</day>
<day type="wed">středa</day>
<day type="thu">čtvrtek</day>
<day type="fri">pátek</day>
<day type="sat">sobota</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="abbreviated">
<day type="sun">ne</day>
<day type="mon">po</day>
<day type="tue">út</day>
<day type="wed">st</day>
<day type="thu">čt</day>
<day type="fri">pá</day>
<day type="sat">so</day>
</dayWidth>
<dayWidth type="narrow">
<day type="sun">N</day>
<day type="mon">P</day>
<day type="tue">Ú</day>
<day type="wed">S</day>
<day type="thu">Č</day>
<day type="fri">P</day>
<day type="sat">S</day>
</dayWidth>
<dayWidth type="short">
<day type="sun">Ne</day>
<day type="mon">Po</day>
<day type="tue">Út</day>
<day type="wed">St</day>
<day type="thu">Čt</day>
<day type="fri">Pá</day>
<day type="sat">So</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">neděle</day>
<day type="mon">pondělí</day>
<day type="tue">úterý</day>
<day type="wed">středa</day>
<day type="thu">čtvrtek</day>
<day type="fri">pátek</day>
<day type="sat">sobota</day>
</dayWidth>
</dayContext>
</days>
<quarters>
<quarterContext type="format">
<quarterWidth type="abbreviated">
<quarter type="1">Q1</quarter>
<quarter type="2">Q2</quarter>
<quarter type="3">Q3</quarter>
<quarter type="4">Q4</quarter>
</quarterWidth>
<quarterWidth type="narrow">
<quarter type="1">1</quarter>
<quarter type="2">2</quarter>
<quarter type="3">3</quarter>
<quarter type="4">4</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">1. čtvrtletí</quarter>
<quarter type="2">2. čtvrtletí</quarter>
<quarter type="3">3. čtvrtletí</quarter>
<quarter type="4">4. čtvrtletí</quarter>
</quarterWidth>
</quarterContext>
<quarterContext type="stand-alone">
<quarterWidth type="abbreviated">
<quarter type="1">Q1</quarter>
<quarter type="2">Q2</quarter>
<quarter type="3">Q3</quarter>
<quarter type="4">Q4</quarter>
</quarterWidth>
<quarterWidth type="narrow">
<quarter type="1">1</quarter>
<quarter type="2">2</quarter>
<quarter type="3">3</quarter>
<quarter type="4">4</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">1. čtvrtletí</quarter>
<quarter type="2">2. čtvrtletí</quarter>
<quarter type="3">3. čtvrtletí</quarter>
<quarter type="4">4. čtvrtletí</quarter>
</quarterWidth>
</quarterContext>
</quarters>
<dayPeriods>
<dayPeriodContext type="format">
<dayPeriodWidth type="narrow">
<dayPeriod type="am">dop.</dayPeriod>
<dayPeriod type="pm">odp.</dayPeriod>
</dayPeriodWidth>
<dayPeriodWidth type="wide">
<dayPeriod type="am">dop.</dayPeriod>
<dayPeriod type="pm">odp.</dayPeriod>
</dayPeriodWidth>
</dayPeriodContext>
</dayPeriods>
<eras>
<eraNames>
<era type="0">př. n. l.</era>
<era type="1">n. l.</era>
</eraNames>
<eraAbbr>
<era type="0">př. n. l.</era>
<era type="1">n. l.</era>
</eraAbbr>
<eraNarrow>
<era type="0">př.n.l.</era>
<era type="1">n. l.</era>
</eraNarrow>
</eras>
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, d. MMMM y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>d. MMMM y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>d. M. y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>dd.MM.yy</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>H:mm:ss zzzz</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="long">
<timeFormat>
<pattern>H:mm:ss z</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>H:mm:ss</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="short">
<timeFormat>
<pattern>H:mm</pattern>
</timeFormat>
</timeFormatLength>
</timeFormats>
<dateTimeFormats>
<dateTimeFormatLength type="full">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="long">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="medium">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<dateTimeFormatLength type="short">
<dateTimeFormat>
<pattern>{1} {0}</pattern>
</dateTimeFormat>
</dateTimeFormatLength>
<availableFormats>
<dateFormatItem id="d">d.</dateFormatItem>
<dateFormatItem id="Ed">E, d.</dateFormatItem>
<dateFormatItem id="Gy">y G</dateFormatItem>
<dateFormatItem id="GyMMM">LLLL y G</dateFormatItem>
<dateFormatItem id="GyMMMd">d. M. y G</dateFormatItem>
<dateFormatItem id="GyMMMEd">E, d. M. y G</dateFormatItem>
<dateFormatItem id="h">h a</dateFormatItem>
<dateFormatItem id="H">H</dateFormatItem>
<dateFormatItem id="hm">h:mm a</dateFormatItem>
<dateFormatItem id="Hm">H:mm</dateFormatItem>
<dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
<dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
<dateFormatItem id="M">L</dateFormatItem>
<dateFormatItem id="Md">d. M.</dateFormatItem>
<dateFormatItem id="MEd">E, d. M.</dateFormatItem>
<dateFormatItem id="MMM">LLL</dateFormatItem>
<dateFormatItem id="MMMd">d. M.</dateFormatItem>
<dateFormatItem id="MMMEd">E, d. M.</dateFormatItem>
<dateFormatItem id="ms">mm:ss</dateFormatItem>
<dateFormatItem id="y">y</dateFormatItem>
<dateFormatItem id="yM">M/y</dateFormatItem>
<dateFormatItem id="yMd">d. M. y</dateFormatItem>
<dateFormatItem id="yMEd">E, d. M. y</dateFormatItem>
<dateFormatItem id="yMMM">LLLL y</dateFormatItem>
<dateFormatItem id="yMMMd">d. M. y</dateFormatItem>
<dateFormatItem id="yMMMEd">E, d. M. y</dateFormatItem>
<dateFormatItem id="yMMMM">LLLL y</dateFormatItem>
<dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
<dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatFallback>{0} – {1}</intervalFormatFallback>
<intervalFormatItem id="d">
<greatestDifference id="d">d.–d.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="h">
<greatestDifference id="a" draft="contributed">H – H</greatestDifference>
<greatestDifference id="h">h–h a</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="H">
<greatestDifference id="H">H–H</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hm">
<greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
<greatestDifference id="h">h:mm–h:mm a</greatestDifference>
<greatestDifference id="m">h:mm–h:mm a</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Hm">
<greatestDifference id="H">H:mm–H:mm</greatestDifference>
<greatestDifference id="m">H:mm–H:mm</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hmv">
<greatestDifference id="a">H:mm – H:mm v</greatestDifference>
<greatestDifference id="h">h:mm–h:mm a v</greatestDifference>
<greatestDifference id="m">h:mm–h:mm a v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Hmv">
<greatestDifference id="H">H:mm–H:mm v</greatestDifference>
<greatestDifference id="m">H:mm–H:mm v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hv">
<greatestDifference id="a">H – H v</greatestDifference>
<greatestDifference id="h">h–h a v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Hv">
<greatestDifference id="H">H–H v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="M">
<greatestDifference id="M">M–M</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Md">
<greatestDifference id="d">d. M. – d. M.</greatestDifference>
<greatestDifference id="M">d. M. – d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MEd">
<greatestDifference id="d">E, d. M. – E, d. M.</greatestDifference>
<greatestDifference id="M">E, d. M. – E, d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMM">
<greatestDifference id="M">MMM–MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMd">
<greatestDifference id="d">d.–d. M.</greatestDifference>
<greatestDifference id="M">d. M. – d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMEd">
<greatestDifference id="d">E, d. M. – E, d. M.</greatestDifference>
<greatestDifference id="M">E, d. M. – E, d. M.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="y">
<greatestDifference id="y">y–y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yM">
<greatestDifference id="M">M/y – M/y</greatestDifference>
<greatestDifference id="y">M/y – M/y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMd">
<greatestDifference id="d">dd.MM.y – dd.MM.y</greatestDifference>
<greatestDifference id="M">dd.MM.y – dd.MM.y</greatestDifference>
<greatestDifference id="y">dd.MM.y – dd.MM.y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMEd">
<greatestDifference id="d">E, dd.MM.y – E, dd.MM.y</greatestDifference>
<greatestDifference id="M">E, dd.MM.y – E, dd.MM.y</greatestDifference>
<greatestDifference id="y">E, dd.MM.y – E, dd.MM.y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMM">
<greatestDifference id="M">MMM–MMM y</greatestDifference>
<greatestDifference id="y">MMM y – MMM y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMd">
<greatestDifference id="d">d.–d. M. y</greatestDifference>
<greatestDifference id="M">d. M. – d. M. y</greatestDifference>
<greatestDifference id="y">d. M. y – d. M. y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMEd">
<greatestDifference id="d">E, d. M. – E, d. M. y</greatestDifference>
<greatestDifference id="M">E, d. M. – E, d. M. y</greatestDifference>
<greatestDifference id="y">E, d. M. y – E, d. M. y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMM">
<greatestDifference id="M">LLLL – LLLL y</greatestDifference>
<greatestDifference id="y">LLLL y – LLLL y</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
</calendar>
<calendar type="hebrew">
<eras>
<eraAbbr>
<era type="0">AM</era>
</eraAbbr>
</eras>
</calendar>
<calendar type="islamic">
<eras>
<eraAbbr>
<era type="0">AH</era>
</eraAbbr>
</eras>
</calendar>
<calendar type="japanese">
<!-- need some non-empty element here to make inheritance work,
this copy of generic dateFormats above is smaller than root japanese eras
-->
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE, d. MMMM y G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>d. MMMM y G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>d. M. y G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>dd.MM.yy GGGGG</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
</calendar>
<calendar type="roc">
<eras>
<eraAbbr>
<era type="0" draft="contributed">Před R. O. C.</era>
</eraAbbr>
</eras>
</calendar>
</calendars>
<fields>
<field type="era">
<displayName draft="contributed">Letopočet</displayName>
</field>
<field type="year">
<displayName>Rok</displayName>
<relative type="-1">Minulý rok</relative>
<relative type="0">Tento rok</relative>
<relative type="1">Příští rok</relative>
</field>
<field type="month">
<displayName>Měsíc</displayName>
<relative type="-1">Minulý měsíc</relative>
<relative type="0">Tento měsíc</relative>
<relative type="1">Příští měsíc</relative>
</field>
<field type="week">
<displayName>Týden</displayName>
<relative type="-1">Minulý týden</relative>
<relative type="0">Tento týden</relative>
<relative type="1">Příští týden</relative>
</field>
<field type="day">
<displayName>Den</displayName>
<relative type="-2">Předevčírem</relative>
<relative type="-1">Včera</relative>
<relative type="0">Dnes</relative>
<relative type="1">Zítra</relative>
<relative type="2">Pozítří</relative>
</field>
<field type="weekday">
<displayName>Den v týdnu</displayName>
</field>
<field type="dayperiod">
<displayName>AM/PM</displayName>
</field>
<field type="hour">
<displayName>Hodina</displayName>
</field>
<field type="minute">
<displayName>Minuta</displayName>
</field>
<field type="second">
<displayName>Sekunda</displayName>
</field>
<field type="zone">
<displayName>Časové pásmo</displayName>
</field>
</fields>
<timeZoneNames>
<hourFormat>+H:mm;-H:mm</hourFormat>
<gmtFormat>GMT{0}</gmtFormat>
<gmtZeroFormat>GMT</gmtZeroFormat>
<regionFormat>Časové pásmo {0}</regionFormat>
<fallbackFormat>{1} ({0})</fallbackFormat>
<fallbackRegionFormat>Časové pásmo {1} ({0})</fallbackRegionFormat>
<zone type="Etc/Unknown">
<exemplarCity>Neznámé město</exemplarCity>
</zone>
<zone type="Asia/Dubai">
<exemplarCity>Dubaj</exemplarCity>
</zone>
<zone type="Asia/Kabul">
<exemplarCity>Kábul</exemplarCity>
</zone>
<zone type="Europe/Tirane">
<exemplarCity>Tirana</exemplarCity>
</zone>
<zone type="Asia/Yerevan">
<exemplarCity>Jerevan</exemplarCity>
</zone>
<zone type="Antarctica/South_Pole">
<exemplarCity>Jižní pól</exemplarCity>
</zone>
<zone type="Antarctica/DumontDUrville">
<exemplarCity draft="contributed">Dumont d'Urville</exemplarCity>
</zone>
<zone type="America/Cordoba">
<exemplarCity>Córdoba</exemplarCity>
</zone>
<zone type="Europe/Vienna">
<exemplarCity>Vídeň</exemplarCity>
</zone>
<zone type="Asia/Dhaka">
<exemplarCity>Dháka</exemplarCity>
</zone>
<zone type="Europe/Brussels">
<exemplarCity>Brusel</exemplarCity>
</zone>
<zone type="Europe/Sofia">
<exemplarCity>Sofie</exemplarCity>
</zone>
<zone type="Asia/Bahrain">
<exemplarCity>Bahrajn</exemplarCity>
</zone>
<zone type="America/St_Barthelemy">
<exemplarCity>Saint-Barthélemy</exemplarCity>
</zone>
<zone type="Atlantic/Bermuda">
<exemplarCity>Bermudy</exemplarCity>
</zone>
<zone type="Asia/Brunei">
<exemplarCity>Brunej</exemplarCity>
</zone>
<zone type="America/Belem">
<exemplarCity draft="contributed">Belém</exemplarCity>
</zone>
<zone type="America/Sao_Paulo">
<exemplarCity draft="contributed">São Paulo</exemplarCity>
</zone>
<zone type="America/Bahia">
<exemplarCity>Bahía</exemplarCity>
</zone>
<zone type="Asia/Thimphu">
<exemplarCity>Thimbú</exemplarCity>
</zone>
<zone type="America/Coral_Harbour">
<exemplarCity>Atikokan</exemplarCity>
</zone>
<zone type="America/St_Johns">
<exemplarCity>St. John’s</exemplarCity>
</zone>
<zone type="Indian/Cocos">
<exemplarCity draft="contributed">Kokosové ostrovy</exemplarCity>
</zone>
<zone type="Europe/Zurich">
<exemplarCity>Curych</exemplarCity>
</zone>
<zone type="Africa/Abidjan">
<exemplarCity draft="contributed">Abidžan</exemplarCity>
</zone>
<zone type="Pacific/Easter">
<exemplarCity draft="contributed">Velikonoční ostrov</exemplarCity>
</zone>
<zone type="Asia/Kashgar">
<exemplarCity>Kašghar</exemplarCity>
</zone>
<zone type="Asia/Urumqi">
<exemplarCity>Urumči</exemplarCity>
</zone>
<zone type="Asia/Chongqing">
<exemplarCity>Čchung-čching</exemplarCity>
</zone>
<zone type="Asia/Shanghai">
<exemplarCity>Šanghaj</exemplarCity>
</zone>
<zone type="Asia/Harbin">
<exemplarCity>Charbin</exemplarCity>
</zone>
<zone type="America/Bogota">
<exemplarCity>Bogotá</exemplarCity>
</zone>
<zone type="America/Costa_Rica">
<exemplarCity>Kostarika</exemplarCity>
</zone>
<zone type="Atlantic/Cape_Verde">
<exemplarCity>Kapverdy</exemplarCity>
</zone>
<zone type="America/Curacao">
<exemplarCity draft="contributed">Curaçao</exemplarCity>
</zone>
<zone type="Indian/Christmas">
<exemplarCity draft="contributed">Vánoční ostrov</exemplarCity>
</zone>
<zone type="Asia/Nicosia">
<exemplarCity>Nikósie</exemplarCity>
</zone>
<zone type="Europe/Prague">
<exemplarCity>Praha</exemplarCity>
</zone>
<zone type="Europe/Berlin">
<exemplarCity>Berlín</exemplarCity>
</zone>
<zone type="Africa/Djibouti">
<exemplarCity>Džibuti</exemplarCity>
</zone>
<zone type="Europe/Copenhagen">
<exemplarCity>Kodaň</exemplarCity>
</zone>
<zone type="America/Dominica">
<exemplarCity draft="contributed">Dominika</exemplarCity>
</zone>
<zone type="Africa/Algiers">
<exemplarCity>Alžír</exemplarCity>
</zone>
<zone type="Pacific/Galapagos">
<exemplarCity>Galapágy</exemplarCity>
</zone>
<zone type="Africa/Cairo">
<exemplarCity>Káhira</exemplarCity>
</zone>
<zone type="Africa/Asmera">
<exemplarCity draft="contributed">Asmara</exemplarCity>
</zone>
<zone type="Atlantic/Canary">
<exemplarCity>Kanárské ostrovy</exemplarCity>
</zone>
<zone type="Africa/Addis_Ababa">
<exemplarCity draft="contributed">Addis Abeba</exemplarCity>
</zone>
<zone type="Europe/Helsinki">
<exemplarCity draft="contributed">Helsinky</exemplarCity>
</zone>
<zone type="Pacific/Fiji">
<exemplarCity>Fidži</exemplarCity>
</zone>
<zone type="Pacific/Truk">
<exemplarCity draft="contributed">Chuukské ostrovy</exemplarCity>
</zone>
<zone type="Pacific/Ponape">
<exemplarCity draft="contributed">Pohnpei</exemplarCity>
</zone>
<zone type="Atlantic/Faeroe">
<exemplarCity draft="contributed">Faerské ostrovy</exemplarCity>
</zone>
<zone type="Europe/Paris">
<exemplarCity>Paříž</exemplarCity>
</zone>
<zone type="Europe/London">
<long>
<daylight>Britský letní čas</daylight>
</long>
<exemplarCity>Londýn</exemplarCity>
</zone>
<zone type="Europe/Athens">
<exemplarCity>Atény</exemplarCity>
</zone>
<zone type="Atlantic/South_Georgia">
<exemplarCity>Jižní Georgia</exemplarCity>
</zone>
<zone type="Asia/Hong_Kong">
<exemplarCity draft="contributed">Hongkong</exemplarCity>
</zone>
<zone type="Europe/Zagreb">
<exemplarCity draft="contributed">Záhřeb</exemplarCity>
</zone>
<zone type="Europe/Budapest">
<exemplarCity>Budapešť</exemplarCity>
</zone>
<zone type="Europe/Dublin">
<long>
<daylight>Irský letní čas</daylight>
</long>
</zone>
<zone type="Asia/Jerusalem">
<exemplarCity>Jeruzalém</exemplarCity>
</zone>
<zone type="Europe/Isle_of_Man">
<exemplarCity draft="contributed">Ostrov Man</exemplarCity>
</zone>
<zone type="Asia/Calcutta">
<exemplarCity>Kalkata</exemplarCity>
</zone>
<zone type="Asia/Baghdad">
<exemplarCity>Bagdád</exemplarCity>
</zone>
<zone type="Asia/Tehran">
<exemplarCity>Teherán</exemplarCity>
</zone>
<zone type="Atlantic/Reykjavik">
<exemplarCity>Reykjavík</exemplarCity>
</zone>
<zone type="Europe/Rome">
<exemplarCity>Řím</exemplarCity>
</zone>
<zone type="America/Jamaica">
<exemplarCity>Jamajka</exemplarCity>
</zone>
<zone type="Asia/Amman">
<exemplarCity>Ammán</exemplarCity>
</zone>
<zone type="Asia/Tokyo">
<exemplarCity>Tokio</exemplarCity>
</zone>
<zone type="Asia/Bishkek">
<exemplarCity>Biškek</exemplarCity>
</zone>
<zone type="Asia/Phnom_Penh">
<exemplarCity>Phnompenh</exemplarCity>
</zone>
<zone type="Indian/Comoro">
<exemplarCity draft="contributed">Komory</exemplarCity>
</zone>
<zone type="America/St_Kitts">
<exemplarCity>Svatý Kryštof</exemplarCity>
</zone>
<zone type="Asia/Pyongyang">
<exemplarCity>Pchjongjang</exemplarCity>
</zone>
<zone type="Asia/Seoul">
<exemplarCity>Soul</exemplarCity>
</zone>
<zone type="Asia/Kuwait">
<exemplarCity>Kuvajt</exemplarCity>
</zone>
<zone type="America/Cayman">
<exemplarCity>Kajmanské ostrovy</exemplarCity>
</zone>
<zone type="Asia/Oral">
<exemplarCity draft="contributed">Uralsk</exemplarCity>
</zone>
<zone type="Asia/Qyzylorda">
<exemplarCity draft="contributed">Kyzylorda</exemplarCity>
</zone>
<zone type="Asia/Beirut">
<exemplarCity>Bejrút</exemplarCity>
</zone>
<zone type="America/St_Lucia">
<exemplarCity>Svatá Lucie</exemplarCity>
</zone>
<zone type="Europe/Luxembourg">
<exemplarCity draft="contributed">Lucemburk</exemplarCity>
</zone>
<zone type="Africa/Tripoli">
<exemplarCity>Tripolis</exemplarCity>
</zone>
<zone type="Europe/Monaco">
<exemplarCity draft="contributed">Monako</exemplarCity>
</zone>
<zone type="Europe/Chisinau">
<exemplarCity draft="contributed">Kišiněv</exemplarCity>
</zone>
<zone type="Asia/Rangoon">
<exemplarCity>Rangún</exemplarCity>
</zone>
<zone type="Asia/Ulaanbaatar">
<exemplarCity>Ulánbátar</exemplarCity>
</zone>
<zone type="Asia/Choibalsan">
<exemplarCity>Čojbalsan</exemplarCity>
</zone>
<zone type="Asia/Macau">
<exemplarCity draft="contributed">Macao</exemplarCity>
</zone>
<zone type="America/Martinique">
<exemplarCity>Martinik</exemplarCity>
</zone>
<zone type="Africa/Nouakchott">
<exemplarCity>Nuakšott</exemplarCity>
</zone>
<zone type="Indian/Mauritius">
<exemplarCity>Mauricius</exemplarCity>
</zone>
<zone type="Indian/Maldives">
<exemplarCity>Maledivy</exemplarCity>
</zone>
<zone type="America/Mexico_City">
<exemplarCity draft="contributed">México</exemplarCity>
</zone>
<zone type="America/Cancun">
<exemplarCity>Cancún</exemplarCity>
</zone>
<zone type="Pacific/Noumea">
<exemplarCity draft="contributed">Nouméa</exemplarCity>
</zone>
<zone type="Asia/Katmandu">
<exemplarCity>Káthmándú</exemplarCity>
</zone>
<zone type="Pacific/Chatham">
<exemplarCity draft="contributed">Chathamské ostrovy</exemplarCity>
</zone>
<zone type="Asia/Muscat">
<exemplarCity draft="contributed">Maskat</exemplarCity>
</zone>
<zone type="Pacific/Marquesas">
<exemplarCity draft="contributed">Markézy</exemplarCity>
</zone>
<zone type="Pacific/Gambier">
<exemplarCity>Gambierovy ostrovy</exemplarCity>
</zone>
<zone type="Asia/Karachi">
<exemplarCity>Karáčí</exemplarCity>
</zone>
<zone type="Europe/Warsaw">
<exemplarCity>Varšava</exemplarCity>
</zone>
<zone type="Pacific/Pitcairn">
<exemplarCity>Pitcairnovy ostrovy</exemplarCity>
</zone>
<zone type="America/Puerto_Rico">
<exemplarCity>Portoriko</exemplarCity>
</zone>
<zone type="Atlantic/Azores">
<exemplarCity>Azorské ostrovy</exemplarCity>
</zone>
<zone type="Europe/Lisbon">
<exemplarCity>Lisabon</exemplarCity>
</zone>
<zone type="America/Asuncion">
<exemplarCity draft="contributed">Asunción</exemplarCity>
</zone>
<zone type="Asia/Qatar">
<exemplarCity>Katar</exemplarCity>
</zone>
<zone type="Indian/Reunion">
<exemplarCity draft="contributed">Réunion</exemplarCity>
</zone>
<zone type="Europe/Bucharest">
<exemplarCity>Bukurešť</exemplarCity>
</zone>
<zone type="Europe/Belgrade">
<exemplarCity draft="contributed">Bělehrad</exemplarCity>
</zone>
<zone type="Europe/Moscow">
<exemplarCity>Moskva</exemplarCity>
</zone>
<zone type="Asia/Yekaterinburg">
<exemplarCity>Jekatěrinburg</exemplarCity>
</zone>
<zone type="Asia/Krasnoyarsk">
<exemplarCity>Krasnojarsk</exemplarCity>
</zone>
<zone type="Asia/Yakutsk">
<exemplarCity>Jakutsk</exemplarCity>
</zone>
<zone type="Asia/Sakhalin">
<exemplarCity>Sachalin</exemplarCity>
</zone>
<zone type="Asia/Kamchatka">
<exemplarCity>Kamčatka</exemplarCity>
</zone>
<zone type="Asia/Riyadh">
<exemplarCity>Rijád</exemplarCity>
</zone>
<zone type="Indian/Mahe">
<exemplarCity draft="contributed">Mahé</exemplarCity>
</zone>
<zone type="Africa/Khartoum">
<exemplarCity>Chartúm</exemplarCity>
</zone>
<zone type="Asia/Singapore">
<exemplarCity>Singapur</exemplarCity>
</zone>
<zone type="Atlantic/St_Helena">
<exemplarCity>Sv. Helena</exemplarCity>
</zone>
<zone type="Europe/Ljubljana">
<exemplarCity draft="contributed">Lublaň</exemplarCity>
</zone>
<zone type="Africa/Mogadishu">
<exemplarCity>Mogadišu</exemplarCity>
</zone>
<zone type="Africa/Sao_Tome">
<exemplarCity>Svatý Tomáš</exemplarCity>
</zone>
<zone type="America/El_Salvador">
<exemplarCity>Salvador</exemplarCity>
</zone>
<zone type="America/Lower_Princes">
<exemplarCity draft="contributed">Lower Prince's Quarter</exemplarCity>
</zone>
<zone type="Asia/Damascus">
<exemplarCity>Damašek</exemplarCity>
</zone>
<zone type="Africa/Ndjamena">
<exemplarCity draft="contributed">Ndžamena</exemplarCity>
</zone>
<zone type="Indian/Kerguelen">
<exemplarCity>Kerguelenovy ostrovy</exemplarCity>
</zone>
<zone type="Africa/Lome">
<exemplarCity draft="contributed">Lomé</exemplarCity>
</zone>
<zone type="Asia/Dushanbe">
<exemplarCity>Dušanbe</exemplarCity>
</zone>
<zone type="Asia/Ashgabat">
<exemplarCity>Ašchabad</exemplarCity>
</zone>
<zone type="Asia/Taipei">
<exemplarCity draft="contributed">Tchaj-pej</exemplarCity>
</zone>
<zone type="Europe/Uzhgorod">
<exemplarCity>Užhorod</exemplarCity>
</zone>
<zone type="Europe/Kiev">
<exemplarCity>Kyjev</exemplarCity>
</zone>
<zone type="Europe/Zaporozhye">
<exemplarCity>Záporoží</exemplarCity>
</zone>
<zone type="America/North_Dakota/Beulah">
<exemplarCity>Beulah, Severní Dakota</exemplarCity>
</zone>
<zone type="America/North_Dakota/New_Salem">
<exemplarCity>New Salem, Severní Dakota</exemplarCity>
</zone>
<zone type="America/North_Dakota/Center">
<exemplarCity>Center, Severní Dakota</exemplarCity>
</zone>
<zone type="America/Indiana/Vincennes">
<exemplarCity draft="contributed">Vincennes, Indiana</exemplarCity>
</zone>
<zone type="America/Indiana/Petersburg">
<exemplarCity draft="contributed">Petersburg, Indiana</exemplarCity>
</zone>
<zone type="America/Indiana/Tell_City">
<exemplarCity draft="contributed">Tell City, Indiana</exemplarCity>
</zone>
<zone type="America/Indiana/Knox">
<exemplarCity>Knox, Indiana</exemplarCity>
</zone>
<zone type="America/Indiana/Winamac">
<exemplarCity draft="contributed">Winamac, Indiana</exemplarCity>
</zone>
<zone type="America/Indiana/Marengo">
<exemplarCity draft="contributed">Marengo, Indiana</exemplarCity>
</zone>
<zone type="America/Indiana/Vevay">
<exemplarCity draft="contributed">Vevay, Indiana</exemplarCity>
</zone>
<zone type="America/Kentucky/Monticello">
<exemplarCity draft="contributed">Monticello, Kentucky</exemplarCity>
</zone>
<zone type="Asia/Tashkent">
<exemplarCity>Taškent</exemplarCity>
</zone>
<zone type="Europe/Vatican">
<exemplarCity draft="contributed">Vatikán</exemplarCity>
</zone>
<zone type="America/St_Vincent">
<exemplarCity draft="contributed">Svatý Vincenc</exemplarCity>
</zone>
<zone type="America/St_Thomas">
<exemplarCity>St. Thomas</exemplarCity>
</zone>
<zone type="Asia/Saigon">
<exemplarCity>Ho Či Minovo město</exemplarCity>
</zone>
<zone type="Pacific/Efate">
<exemplarCity draft="contributed">Éfaté</exemplarCity>
</zone>
<metazone type="Acre">
<long>
<generic>Acrejský čas</generic>
<standard>Acrejský standardní čas</standard>
<daylight>Acrejský letní čas</daylight>
</long>
</metazone>
<metazone type="Afghanistan">
<long>
<standard draft="contributed">Afghánský čas</standard>
</long>
</metazone>
<metazone type="Africa_Central">
<long>
<standard>Středoafrický čas</standard>
</long>
</metazone>
<metazone type="Africa_Eastern">
<long>
<standard>Východoafrický čas</standard>
</long>
</metazone>
<metazone type="Africa_Southern">
<long>
<standard>Jihoafrický čas</standard>
</long>
</metazone>
<metazone type="Africa_Western">
<long>
<generic>Západoafrický čas</generic>
<standard>Západoafrický standardní čas</standard>
<daylight>Západoafrický letní čas</daylight>
</long>
</metazone>
<metazone type="Alaska">
<long>
<generic>Aljašský čas</generic>
<standard>Aljašský standardní čas</standard>
<daylight>Aljašský letní čas</daylight>
</long>
</metazone>
<metazone type="Almaty">
<long>
<generic>Almatský čas</generic>
<standard>Almatský standardní čas</standard>
<daylight>Almatský letní čas</daylight>
</long>
</metazone>
<metazone type="Amazon">
<long>
<generic>Amazonský čas</generic>
<standard>Amazonský standardní čas</standard>
<daylight>Amazonský letní čas</daylight>
</long>
</metazone>
<metazone type="America_Central">
<long>
<generic>Centrální čas</generic>
<standard>Centrální standardní čas</standard>
<daylight>Centrální letní čas</daylight>
</long>
</metazone>
<metazone type="America_Eastern">
<long>
<generic>Východní čas</generic>
<standard>Východní standardní čas</standard>
<daylight>Východní letní čas</daylight>
</long>
</metazone>
<metazone type="America_Mountain">
<long>
<generic>Horský čas</generic>
<standard>Horský standardní čas</standard>
<daylight>Horský letní čas</daylight>
</long>
</metazone>
<metazone type="America_Pacific">
<long>
<generic>Pacifický čas</generic>
<standard>Pacifický standardní čas</standard>
<daylight>Pacifický letní čas</daylight>
</long>
</metazone>
<metazone type="Anadyr">
<long>
<generic draft="contributed">Anadyrský čas</generic>
<standard draft="contributed">Anadyrský standardní čas</standard>
<daylight draft="contributed">Anadyrský letní čas</daylight>
</long>
</metazone>
<metazone type="Aqtau">
<long>
<generic>Aktauský čas</generic>
<standard>Aktauský standardní čas</standard>
<daylight>Aktauský letní čas</daylight>
</long>
</metazone>
<metazone type="Aqtobe">
<long>
<generic>Aktobský čas</generic>
<standard>Aktobský standardní čas</standard>
<daylight>Aktobský letní čas</daylight>
</long>
</metazone>
<metazone type="Arabian">
<long>
<generic>Arabský čas</generic>
<standard>Arabský standardní čas</standard>
<daylight>Arabský letní čas</daylight>
</long>
</metazone>
<metazone type="Argentina">
<long>
<generic>Argentinský čas</generic>
<standard>Argentinský standardní čas</standard>
<daylight>Argentinský letní čas</daylight>
</long>
</metazone>
<metazone type="Argentina_Western">
<long>
<generic>Západoargentinský čas</generic>
<standard>Západoargentinský standardní čas</standard>
<daylight>Západoargentinský letní čas</daylight>
</long>
</metazone>
<metazone type="Armenia">
<long>
<generic>Arménský čas</generic>
<standard>Arménský standardní čas</standard>
<daylight>Arménský letní čas</daylight>
</long>
</metazone>
<metazone type="Atlantic">
<long>
<generic>Atlantický čas</generic>
<standard>Atlantický standardní čas</standard>
<daylight>Atlantický letní čas</daylight>
</long>
</metazone>
<metazone type="Australia_Central">
<long>
<generic draft="contributed">Středoaustralský čas</generic>
<standard draft="contributed">Středoaustralský standardní čas</standard>
<daylight draft="contributed">Středoaustralský letní čas</daylight>
</long>
</metazone>
<metazone type="Australia_CentralWestern">
<long>
<generic draft="contributed">Středozápadní australský čas</generic>
<standard draft="contributed">Středozápadní australský standardní čas</standard>
<daylight draft="contributed">Středozápadní australský letní čas</daylight>
</long>
</metazone>
<metazone type="Australia_Eastern">
<long>
<generic draft="contributed">Východoaustralský čas</generic>
<standard draft="contributed">Východoaustralský standardní čas</standard>
<daylight draft="contributed">Východoaustralský letní čas</daylight>
</long>
</metazone>
<metazone type="Australia_Western">
<long>
<generic draft="contributed">Západoaustralský čas</generic>
<standard draft="contributed">Západoaustralský standardní čas</standard>
<daylight draft="contributed">Západoaustralský letní čas</daylight>
</long>
</metazone>
<metazone type="Azerbaijan">
<long>
<generic>Ázerbájdžánský čas</generic>
<standard>Ázerbájdžánský standardní čas</standard>
<daylight>Ázerbájdžánský letní čas</daylight>
</long>
</metazone>
<metazone type="Azores">
<long>
<generic>Azorský čas</generic>
<standard>Azorský standardní čas</standard>
<daylight>Azorský letní čas</daylight>
</long>
</metazone>
<metazone type="Bangladesh">
<long>
<generic>Bangladéšský čas</generic>
<standard>Bangladéšský standardní čas</standard>
<daylight>Bangladéšský letní čas</daylight>
</long>
</metazone>
<metazone type="Bhutan">
<long>
<standard>Bhútánský čas</standard>
</long>
</metazone>
<metazone type="Bolivia">
<long>
<standard>Bolivijský čas</standard>
</long>
</metazone>
<metazone type="Brasilia">
<long>
<generic>Brasilijský čas</generic>
<standard>Brasilijský standardní čas</standard>
<daylight>Brasilijský letní čas</daylight>
</long>
</metazone>
<metazone type="Brunei">
<long>
<standard>Brunejský čas</standard>
</long>
</metazone>
<metazone type="Cape_Verde">
<long>
<generic>Kapverdský čas</generic>
<standard>Kapverdský standardní čas</standard>
<daylight>Kapverdský letní čas</daylight>
</long>
</metazone>
<metazone type="Casey">
<long>
<standard>Caseyský čas</standard>
</long>
</metazone>
<metazone type="Chamorro">
<long>
<standard>Chamorrský čas</standard>
</long>
</metazone>
<metazone type="Chatham">
<long>
<generic>Chathamský čas</generic>
<standard>Chathamský standardní čas</standard>
<daylight>Chathamský letní čas</daylight>
</long>
</metazone>
<metazone type="Chile">
<long>
<generic>Chilský čas</generic>
<standard>Chilský standardní čas</standard>
<daylight>Chilský letní čas</daylight>
</long>
</metazone>
<metazone type="China">
<long>
<generic>Čínský čas</generic>
<standard>Čínský standardní čas</standard>
<daylight>Čínský letní čas</daylight>
</long>
</metazone>
<metazone type="Choibalsan">
<long>
<generic>Čojbalsanský čas</generic>
<standard>Čojbalsanský standardní čas</standard>
<daylight>Čojbalsanský letní čas</daylight>
</long>
</metazone>
<metazone type="Christmas">
<long>
<standard>Čas Vánočního ostrova</standard>
</long>
</metazone>
<metazone type="Cocos">
<long>
<standard>Čas Kokosových ostrovů</standard>
</long>
</metazone>
<metazone type="Colombia">
<long>
<generic>Kolumbijský čas</generic>
<standard>Kolumbijský standardní čas</standard>
<daylight>Kolumbijský letní čas</daylight>
</long>
</metazone>
<metazone type="Cook">
<long>
<generic>Čas Cookových ostrovů</generic>
<standard>Standardní čas Cookových ostrovů</standard>
<daylight>Letní čas Cookových ostrovů</daylight>
</long>
</metazone>
<metazone type="Cuba">
<long>
<generic>Kubánský čas</generic>
<standard>Kubánský standardní čas</standard>
<daylight>Kubánský letní čas</daylight>
</long>
</metazone>
<metazone type="Davis">
<long>
<standard>Čas Davisovy stanice</standard>
</long>
</metazone>
<metazone type="DumontDUrville">
<long>
<standard>Čas stanice Dumonta d’Urvilla</standard>
</long>
</metazone>
<metazone type="East_Timor">
<long>
<standard>Východotimorský čas</standard>
</long>
</metazone>
<metazone type="Easter">
<long>
<generic>Čas Velikonočního ostrova</generic>
<standard>Standardní čas Velikonočního ostrova</standard>
<daylight>Letní čas Velikonočního ostrova</daylight>
</long>
</metazone>
<metazone type="Ecuador">
<long>
<standard>Ekvádorský čas</standard>
</long>
</metazone>
<metazone type="Europe_Central">
<long>
<generic>Středoevropský čas</generic>
<standard>Středoevropský standardní čas</standard>
<daylight>Středoevropský letní čas</daylight>
</long>
</metazone>
<metazone type="Europe_Eastern">
<long>
<generic>Východoevropský čas</generic>
<standard>Východoevropský standardní čas</standard>
<daylight>Východoevropský letní čas</daylight>
</long>
</metazone>
<metazone type="Europe_Western">
<long>
<generic>Západoevropský čas</generic>
<standard>Západoevropský standardní čas</standard>
<daylight>Západoevropský letní čas</daylight>
</long>
</metazone>
<metazone type="Falkland">
<long>
<generic>Falklandský čas</generic>
<standard>Falklandský standardní čas</standard>
<daylight>Falklandský letní čas</daylight>
</long>
</metazone>
<metazone type="Fiji">
<long>
<generic>Fidžijský čas</generic>
<standard>Fidžijský standardní čas</standard>
<daylight>Fidžijský letní čas</daylight>
</long>
</metazone>
<metazone type="French_Guiana">
<long>
<standard>Francouzskoguyanský čas</standard>
</long>
</metazone>
<metazone type="French_Southern">
<long>
<standard>Čas Francouzských jižních a antarktických území</standard>
</long>
</metazone>
<metazone type="Galapagos">
<long>
<standard>Galapážský čas</standard>
</long>
</metazone>
<metazone type="Gambier">
<long>
<standard>Gambierský čas</standard>
</long>
</metazone>
<metazone type="Georgia">
<long>
<generic>Gruzínský čas</generic>
<standard>Gruzínský standardní čas</standard>
<daylight>Gruzínský letní čas</daylight>
</long>
</metazone>
<metazone type="Gilbert_Islands">
<long>
<standard>Čas Gilbertových ostrovů</standard>
</long>
</metazone>
<metazone type="GMT">
<long>
<standard>Greenwichský střední čas</standard>
</long>
</metazone>
<metazone type="Greenland_Eastern">
<long>
<generic>Východogrónský čas</generic>
<standard>Východogrónský standardní čas</standard>
<daylight>Východogrónský letní čas</daylight>
</long>
</metazone>
<metazone type="Greenland_Western">
<long>
<generic>Západogrónský čas</generic>
<standard>Západogrónský standardní čas</standard>
<daylight>Západogrónský letní čas</daylight>
</long>
</metazone>
<metazone type="Guam">
<long>
<standard>Guamský čas</standard>
</long>
</metazone>
<metazone type="Gulf">
<long>
<standard>Standardní čas Perského zálivu</standard>
</long>
</metazone>
<metazone type="Guyana">
<long>
<standard>Guyanský čas</standard>
</long>
</metazone>
<metazone type="Hawaii_Aleutian">
<long>
<generic>Havajsko-aleutský čas</generic>
<standard>Havajsko-aleutský standardní čas</standard>
<daylight>Havajsko-aleutský letní čas</daylight>
</long>
</metazone>
<metazone type="Hong_Kong">
<long>
<generic>Hongkongský čas</generic>
<standard>Hongkongský standardní čas</standard>
<daylight>Hongkongský letní čas</daylight>
</long>
</metazone>
<metazone type="Hovd">
<long>
<generic>Hovdský čas</generic>
<standard>Hovdský standardní čas</standard>
<daylight>Hovdský letní čas</daylight>
</long>
</metazone>
<metazone type="India">
<long>
<standard>Indický čas</standard>
</long>
</metazone>
<metazone type="Indian_Ocean">
<long>
<standard>Indickooceánský čas</standard>
</long>
</metazone>
<metazone type="Indochina">
<long>
<standard>Indočínský čas</standard>
</long>
</metazone>
<metazone type="Indonesia_Central">
<long>
<standard>Středoindonéský čas</standard>
</long>
</metazone>
<metazone type="Indonesia_Eastern">
<long>
<standard>Východoindonéský čas</standard>
</long>
</metazone>
<metazone type="Indonesia_Western">
<long>
<standard>Západoindonéský čas</standard>
</long>
</metazone>
<metazone type="Iran">
<long>
<generic>Íránský čas</generic>
<standard>Íránský standardní čas</standard>
<daylight>Íránský letní čas</daylight>
</long>
</metazone>
<metazone type="Irkutsk">
<long>
<generic>Irkutský čas</generic>
<standard>Irkutský standardní čas</standard>
<daylight>Irkutský letní čas</daylight>
</long>
</metazone>
<metazone type="Israel">
<long>
<generic>Izraelský čas</generic>
<standard>Izraelský standardní čas</standard>
<daylight>Izraelský letní čas</daylight>
</long>
</metazone>
<metazone type="Japan">
<long>
<generic>Japonský čas</generic>
<standard>Japonský standardní čas</standard>
<daylight>Japonský letní čas</daylight>
</long>
</metazone>
<metazone type="Kamchatka">
<long>
<generic draft="contributed">Petropavlovsko-kamčatský čas</generic>
<standard draft="contributed">Petropavlovsko-kamčatský standardní čas</standard>
<daylight draft="contributed">Petropavlovsko-kamčatský letní čas</daylight>
</long>
</metazone>
<metazone type="Kazakhstan_Eastern">
<long>
<standard>Východokazachstánský čas</standard>
</long>
</metazone>
<metazone type="Kazakhstan_Western">
<long>
<standard>Západokazachstánský čas</standard>
</long>
</metazone>
<metazone type="Korea">
<long>
<generic>Korejský čas</generic>
<standard>Korejský standardní čas</standard>
<daylight>Korejský letní čas</daylight>
</long>
</metazone>
<metazone type="Kosrae">
<long>
<standard>Kosrajský čas</standard>
</long>
</metazone>
<metazone type="Krasnoyarsk">
<long>
<generic>Krasnojarský čas</generic>
<standard>Krasnojarský standardní čas</standard>
<daylight>Krasnojarský letní čas</daylight>
</long>
</metazone>
<metazone type="Kyrgystan">
<long>
<standard draft="contributed">Kyrgyzský čas</standard>
</long>
</metazone>
<metazone type="Lanka">
<long>
<standard>Srílanský čas</standard>
</long>
</metazone>
<metazone type="Line_Islands">
<long>
<standard draft="provisional">Čas Rovníkových ostrovů</standard>
</long>
</metazone>
<metazone type="Lord_Howe">
<long>
<generic draft="contributed">Čas ostrova lorda Howa</generic>
<standard draft="contributed">Standardní čas ostrova lorda Howa</standard>
<daylight draft="contributed">Letní čas ostrova lorda Howa</daylight>
</long>
</metazone>
<metazone type="Macau">
<long>
<generic>Macajský čas</generic>
<standard>Macajský standardní čas</standard>
<daylight>Macajský letní čas</daylight>
</long>
</metazone>
<metazone type="Macquarie">
<long>
<standard>Čas ostrova Macquarie</standard>
</long>
</metazone>
<metazone type="Magadan">
<long>
<generic>Magadanský čas</generic>
<standard>Magadanský standardní čas</standard>
<daylight>Magadanský letní čas</daylight>
</long>
</metazone>
<metazone type="Malaysia">
<long>
<standard>Malajsijský čas</standard>
</long>
</metazone>
<metazone type="Maldives">
<long>
<standard>Maledivský čas</standard>
</long>
</metazone>
<metazone type="Marquesas">
<long>
<standard>Markézský čas</standard>
</long>
</metazone>
<metazone type="Marshall_Islands">
<long>
<standard>Čas Marshallových ostrovů</standard>
</long>
</metazone>
<metazone type="Mauritius">
<long>
<generic>Mauricijský čas</generic>
<standard>Mauricijský standardní čas</standard>
<daylight>Mauricijský letní čas</daylight>
</long>
</metazone>
<metazone type="Mawson">
<long>
<standard>Čas Mawsonovy stanice</standard>
</long>
</metazone>
<metazone type="Mongolia">
<long>
<generic>Ulánbátarský čas</generic>
<standard>Ulánbátarský standardní čas</standard>
<daylight>Ulánbátarský letní čas</daylight>
</long>
</metazone>
<metazone type="Moscow">
<long>
<generic>Moskevský čas</generic>
<standard>Moskevský standardní čas</standard>
<daylight>Moskevský letní čas</daylight>
</long>
</metazone>
<metazone type="Myanmar">
<long>
<standard>Myanmarský čas</standard>
</long>
</metazone>
<metazone type="Nauru">
<long>
<standard>Naurský čas</standard>
</long>
</metazone>
<metazone type="Nepal">
<long>
<standard>Nepálský čas</standard>
</long>
</metazone>
<metazone type="New_Caledonia">
<long>
<generic>Novokaledonský čas</generic>
<standard>Novokaledonský standardní čas</standard>
<daylight>Novokaledonský letní čas</daylight>
</long>
</metazone>
<metazone type="New_Zealand">
<long>
<generic>Novozélandský čas</generic>
<standard>Novozélandský standardní čas</standard>
<daylight>Novozélandský letní čas</daylight>
</long>
</metazone>
<metazone type="Newfoundland">
<long>
<generic>Newfoundlandský čas</generic>
<standard>Newfoundlandský standardní čas</standard>
<daylight>Newfoundlandský letní čas</daylight>
</long>
</metazone>
<metazone type="Niue">
<long>
<standard>Niuejský čas</standard>
</long>
</metazone>
<metazone type="Norfolk">
<long>
<standard>Norfolský čas</standard>
</long>
</metazone>
<metazone type="Noronha">
<long>
<generic>Čas souostroví Fernando de Noronha</generic>
<standard>Standardní čas souostroví Fernando de Noronha</standard>
<daylight>Letní čas souostroví Fernando de Noronha</daylight>
</long>
</metazone>
<metazone type="North_Mariana">
<long>
<standard>Severomariánský čas</standard>
</long>
</metazone>
<metazone type="Novosibirsk">
<long>
<generic>Novosibirský čas</generic>
<standard>Novosibirský standardní čas</standard>
<daylight>Novosibirský letní čas</daylight>
</long>
</metazone>
<metazone type="Omsk">
<long>
<generic>Omský čas</generic>
<standard>Omský standardní čas</standard>
<daylight>Omský letní čas</daylight>
</long>
</metazone>
<metazone type="Pakistan">
<long>
<generic>Pákistánský čas</generic>
<standard>Pákistánský standardní čas</standard>
<daylight>Pákistánský letní čas</daylight>
</long>
</metazone>
<metazone type="Palau">
<long>
<standard>Palauský čas</standard>
</long>
</metazone>
<metazone type="Papua_New_Guinea">
<long>
<standard draft="contributed">Čas Papuy-Nové Guiney</standard>
</long>
</metazone>
<metazone type="Paraguay">
<long>
<generic>Paraguayský čas</generic>
<standard>Paraguayský standardní čas</standard>
<daylight>Paraguayský letní čas</daylight>
</long>
</metazone>
<metazone type="Peru">
<long>
<generic>Peruánský čas</generic>
<standard>Peruánský standardní čas</standard>
<daylight>Peruánský letní čas</daylight>
</long>
</metazone>
<metazone type="Philippines">
<long>
<generic>Filipínský čas</generic>
<standard>Filipínský standardní čas</standard>
<daylight>Filipínský letní čas</daylight>
</long>
</metazone>
<metazone type="Phoenix_Islands">
<long>
<standard>Čas Fénixových ostrovů</standard>
</long>
</metazone>
<metazone type="Pierre_Miquelon">
<long>
<generic>Svatý Pierre a Miquelon čas</generic>
<standard>Svatý Pierre a Miquelon standardní čas</standard>
<daylight>Svatý Pierre a Miquelon letní čas</daylight>
</long>
</metazone>
<metazone type="Pitcairn">
<long>
<standard>Čas Pitcairnova ostrova</standard>
</long>
</metazone>
<metazone type="Ponape">
<long>
<standard>Ponapský čas</standard>
</long>
</metazone>
<metazone type="Qyzylorda">
<long>
<generic>Kyzylordský čas</generic>
<standard>Kyzylordský standardní čas</standard>
<daylight>Kyzylordský letní čas</daylight>
</long>
</metazone>
<metazone type="Reunion">
<long>
<standard>Réunionský čas</standard>
</long>
</metazone>
<metazone type="Rothera">
<long>
<standard>Čas Rotherovy stanice</standard>
</long>
</metazone>
<metazone type="Sakhalin">
<long>
<generic>Sachalinský čas</generic>
<standard>Sachalinský standardní čas</standard>
<daylight>Sachalinský letní čas</daylight>
</long>
</metazone>
<metazone type="Samara">
<long>
<generic draft="contributed">Samarský čas</generic>
<standard draft="contributed">Samarský standardní čas</standard>
<daylight draft="contributed">Samarský letní čas</daylight>
</long>
</metazone>
<metazone type="Samoa">
<long>
<generic>Samojský čas</generic>
<standard>Samojský standardní čas</standard>
<daylight>Samojský letní čas</daylight>
</long>
</metazone>
<metazone type="Seychelles">
<long>
<standard>Seychelský čas</standard>
</long>
</metazone>
<metazone type="Singapore">
<long>
<standard>Singapurský čas</standard>
</long>
</metazone>
<metazone type="Solomon">
<long>
<standard>Čas Šalamounových ostrovů</standard>
</long>
</metazone>
<metazone type="South_Georgia">
<long>
<standard>Jihogeorgijský čas</standard>
</long>
</metazone>
<metazone type="Suriname">
<long>
<standard>Surinamský čas</standard>
</long>
</metazone>
<metazone type="Syowa">
<long>
<standard>Čas stanice Šówa</standard>
</long>
</metazone>
<metazone type="Tahiti">
<long>
<standard>Tahitský čas</standard>
</long>
</metazone>
<metazone type="Taipei">
<long>
<generic>Tchajpejský čas</generic>
<standard>Tchajpejský standardní čas</standard>
<daylight>Tchajpejský letní čas</daylight>
</long>
</metazone>
<metazone type="Tajikistan">
<long>
<standard draft="contributed">Tádžický čas</standard>
</long>
</metazone>
<metazone type="Tokelau">
<long>
<standard>Tokelauský čas</standard>
</long>
</metazone>
<metazone type="Tonga">
<long>
<generic>Tonžský čas</generic>
<standard>Tonžský standardní čas</standard>
<daylight>Tonžský letní čas</daylight>
</long>
</metazone>
<metazone type="Truk">
<long>
<standard>Chuukský čas</standard>
</long>
</metazone>
<metazone type="Turkmenistan">
<long>
<generic draft="contributed">Turkmenský čas</generic>
<standard draft="contributed">Turkmenský standardní čas</standard>
<daylight draft="contributed">Turkmenský letní čas</daylight>
</long>
</metazone>
<metazone type="Tuvalu">
<long>
<standard>Tuvalský čas</standard>
</long>
</metazone>
<metazone type="Uruguay">
<long>
<generic>Uruguayský čas</generic>
<standard>Uruguayský standardní čas</standard>
<daylight>Uruguayský letní čas</daylight>
</long>
</metazone>
<metazone type="Uzbekistan">
<long>
<generic draft="contributed">Uzbecký čas</generic>
<standard draft="contributed">Uzbecký standardní čas</standard>
<daylight draft="contributed">Uzbecký letní čas</daylight>
</long>
</metazone>
<metazone type="Vanuatu">
<long>
<generic>Vanuatský čas</generic>
<standard>Vanuatský standardní čas</standard>
<daylight>Vanuatský letní čas</daylight>
</long>
</metazone>
<metazone type="Venezuela">
<long>
<standard>Venezuelský čas</standard>
</long>
</metazone>
<metazone type="Vladivostok">
<long>
<generic>Vladivostocký čas</generic>
<standard>Vladivostocký standardní čas</standard>
<daylight>Vladivostocký letní čas</daylight>
</long>
</metazone>
<metazone type="Volgograd">
<long>
<generic>Volgogradský čas</generic>
<standard>Volgogradský standardní čas</standard>
<daylight>Volgogradský letní čas</daylight>
</long>
</metazone>
<metazone type="Vostok">
<long>
<standard>Čas stanice Vostok</standard>
</long>
</metazone>
<metazone type="Wake">
<long>
<standard>Čas ostrova Wake</standard>
</long>
</metazone>
<metazone type="Wallis">
<long>
<standard>Čas ostrovů Wallis a Futuna</standard>
</long>
</metazone>
<metazone type="Yakutsk">
<long>
<generic>Jakutský čas</generic>
<standard>Jakutský standardní čas</standard>
<daylight>Jakutský letní čas</daylight>
</long>
</metazone>
<metazone type="Yekaterinburg">
<long>
<generic>Jekatěrinburský čas</generic>
<standard>Jekatěrinburský standardní čas</standard>
<daylight>Jekatěrinburský letní čas</daylight>
</long>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<symbols numberSystem="latn">
<decimal>,</decimal>
<group> </group>
<list draft="contributed">;</list>
<percentSign draft="contributed">%</percentSign>
<plusSign draft="contributed">+</plusSign>
<minusSign draft="contributed">-</minusSign>
<exponential>E</exponential>
<perMille draft="contributed">‰</perMille>
<infinity draft="contributed">∞</infinity>
<nan draft="contributed">NaN</nan>
</symbols>
<decimalFormats numberSystem="latn">
<decimalFormatLength>
<decimalFormat>
<pattern>#,##0.###</pattern>
</decimalFormat>
</decimalFormatLength>
<decimalFormatLength type="long">
<decimalFormat>
<pattern type="1000" count="one" draft="contributed">0</pattern>
<pattern type="1000" count="few" draft="contributed">0</pattern>
<pattern type="1000" count="other" draft="contributed">0</pattern>
<pattern type="10000" count="one" draft="contributed">00 tisíc</pattern>
<pattern type="10000" count="few" draft="contributed">00 tisíc</pattern>
<pattern type="10000" count="other" draft="contributed">00 tisíc</pattern>
<pattern type="100000" count="one" draft="contributed">000 tisíc</pattern>
<pattern type="100000" count="few" draft="contributed">000 tisíc</pattern>
<pattern type="100000" count="other" draft="contributed">000 tisíc</pattern>
<pattern type="1000000" count="one" draft="contributed">0 milion</pattern>
<pattern type="1000000" count="few" draft="contributed">0 miliony</pattern>
<pattern type="1000000" count="other" draft="contributed">0 milionů</pattern>
<pattern type="10000000" count="one" draft="contributed">00 milionů</pattern>
<pattern type="10000000" count="few" draft="contributed">00 milionů</pattern>
<pattern type="10000000" count="other" draft="contributed">00 milionů</pattern>
<pattern type="100000000" count="one" draft="contributed">000 milionů</pattern>
<pattern type="100000000" count="few" draft="contributed">000 milionů</pattern>
<pattern type="100000000" count="other" draft="contributed">000 milionů</pattern>
<pattern type="1000000000" count="one" draft="contributed">0 miliarda</pattern>
<pattern type="1000000000" count="few" draft="contributed">0 miliardy</pattern>
<pattern type="1000000000" count="other" draft="contributed">0 miliard</pattern>
<pattern type="10000000000" count="one" draft="contributed">00 miliard</pattern>
<pattern type="10000000000" count="few" draft="contributed">00 miliard</pattern>
<pattern type="10000000000" count="other" draft="contributed">00 miliard</pattern>
<pattern type="100000000000" count="one" draft="contributed">000 miliard</pattern>
<pattern type="100000000000" count="few" draft="contributed">000 miliard</pattern>
<pattern type="100000000000" count="other" draft="contributed">000 miliard</pattern>
<pattern type="1000000000000" count="one" draft="contributed">0 bilion</pattern>
<pattern type="1000000000000" count="few" draft="contributed">0 biliony</pattern>
<pattern type="1000000000000" count="other" draft="contributed">0 bilionů</pattern>
<pattern type="10000000000000" count="one" draft="contributed">00 bilionů</pattern>
<pattern type="10000000000000" count="few" draft="contributed">00 bilionů</pattern>
<pattern type="10000000000000" count="other" draft="contributed">00 bilionů</pattern>
<pattern type="100000000000000" count="one" draft="contributed">000 bilionů</pattern>
<pattern type="100000000000000" count="few" draft="contributed">000 bilionů</pattern>
<pattern type="100000000000000" count="other" draft="contributed">000 bilionů</pattern>
</decimalFormat>
</decimalFormatLength>
<decimalFormatLength type="short">
<decimalFormat>
<pattern type="1000" count="one" draft="contributed">0 tis'.'</pattern>
<pattern type="1000" count="few" draft="contributed">0 tis'.'</pattern>
<pattern type="1000" count="other" draft="contributed">0 tis'.'</pattern>
<pattern type="10000" count="one" draft="contributed">00 tis'.'</pattern>
<pattern type="10000" count="few" draft="contributed">00 tis'.'</pattern>
<pattern type="10000" count="other" draft="contributed">00 tis'.'</pattern>
<pattern type="100000" count="one" draft="contributed">000 tis'.'</pattern>
<pattern type="100000" count="few" draft="contributed">000 tis'.'</pattern>
<pattern type="100000" count="other" draft="contributed">000 tis'.'</pattern>
<pattern type="1000000" count="one" draft="contributed">0 mil'.'</pattern>
<pattern type="1000000" count="few" draft="contributed">0 mil'.'</pattern>
<pattern type="1000000" count="other" draft="contributed">0 mil'.'</pattern>
<pattern type="10000000" count="one" draft="contributed">00 mil'.'</pattern>
<pattern type="10000000" count="few" draft="contributed">00 mil'.'</pattern>
<pattern type="10000000" count="other" draft="contributed">00 mil'.'</pattern>
<pattern type="100000000" count="one" draft="contributed">000 mil'.'</pattern>
<pattern type="100000000" count="few" draft="contributed">000 mil'.'</pattern>
<pattern type="100000000" count="other" draft="contributed">000 mil'.'</pattern>
<pattern type="1000000000" count="one" draft="contributed">0 mld'.'</pattern>
<pattern type="1000000000" count="few" draft="contributed">0 mld'.'</pattern>
<pattern type="1000000000" count="other" draft="contributed">0 mld'.'</pattern>
<pattern type="10000000000" count="one" draft="contributed">00 mld'.'</pattern>
<pattern type="10000000000" count="few" draft="contributed">00 mld'.'</pattern>
<pattern type="10000000000" count="other" draft="contributed">00 mld'.'</pattern>
<pattern type="100000000000" count="one" draft="contributed">000 mld'.'</pattern>
<pattern type="100000000000" count="few" draft="contributed">000 mld'.'</pattern>
<pattern type="100000000000" count="other" draft="contributed">000 mld'.'</pattern>
<pattern type="1000000000000" count="one" draft="contributed">0 bil'.'</pattern>
<pattern type="1000000000000" count="few" draft="contributed">0 bil'.'</pattern>
<pattern type="1000000000000" count="other" draft="contributed">0 bil'.'</pattern>
<pattern type="10000000000000" count="one" draft="contributed">00 bil'.'</pattern>
<pattern type="10000000000000" count="few" draft="contributed">00 bil'.'</pattern>
<pattern type="10000000000000" count="other" draft="contributed">00 bil'.'</pattern>
<pattern type="100000000000000" count="one" draft="contributed">000 bil'.'</pattern>
<pattern type="100000000000000" count="few" draft="contributed">000 bil'.'</pattern>
<pattern type="100000000000000" count="other" draft="contributed">000 bil'.'</pattern>
</decimalFormat>
</decimalFormatLength>
</decimalFormats>
<scientificFormats numberSystem="latn">
<scientificFormatLength>
<scientificFormat>
<pattern>#E0</pattern>
</scientificFormat>
</scientificFormatLength>
</scientificFormats>
<percentFormats numberSystem="latn">
<percentFormatLength>
<percentFormat>
<pattern>#,##0 %</pattern>
</percentFormat>
</percentFormatLength>
</percentFormats>
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat>
<pattern>#,##0.00 ¤</pattern>
</currencyFormat>
</currencyFormatLength>
<unitPattern count="one" draft="contributed">{0} {1}</unitPattern>
<unitPattern count="few" draft="contributed">{0} {1}</unitPattern>
<unitPattern count="other" draft="contributed">{0} {1}</unitPattern>
</currencyFormats>
<currencies>
<currency type="ADP">
<displayName>andorrská peseta</displayName>
<displayName count="one">andorrská peseta</displayName>
<displayName count="few">andorrské pesety</displayName>
<displayName count="other">andorrských peset</displayName>
</currency>
<currency type="AED">
<displayName>SAE dirham</displayName>
<displayName count="one">SAE dirham</displayName>
<displayName count="few">SAE dirhamy</displayName>
<displayName count="other">SAE dirhamů</displayName>
</currency>
<currency type="AFA">
<displayName>afghánský afghán (1927-2002)</displayName>
<displayName count="one">afghánský afghán (1927-2002)</displayName>
<displayName count="few">afghánské afghány (1927-2002)</displayName>
<displayName count="other">afghánských afghánů (1927-2002)</displayName>
</currency>
<currency type="AFN">
<displayName>afghánský afghán</displayName>
<displayName count="one">afghánský afghán</displayName>
<displayName count="few">afghánské afghány</displayName>
<displayName count="other">afghánských afghánů</displayName>
</currency>
<currency type="ALK">
<displayName>albánské lek (1946-1965)</displayName>
<displayName count="one">albánský lek (1946-1965)</displayName>
<displayName count="few">albánské leky (1946-1965)</displayName>
<displayName count="other">albánských leků (1946-1965)</displayName>
</currency>
<currency type="ALL">
<displayName>albánský lek</displayName>
<displayName count="one">albánský lek</displayName>
<displayName count="few">albánské leky</displayName>
<displayName count="other">albánských leků</displayName>
</currency>
<currency type="AMD">
<displayName>arménský dram</displayName>
<displayName count="one">arménský dram</displayName>
<displayName count="few">arménské dramy</displayName>
<displayName count="other">arménských dramů</displayName>
</currency>
<currency type="ANG">
<displayName>zlatý Nizozemských Antil</displayName>
<displayName count="one">zlatý Nizozemských Antil</displayName>
<displayName count="few">zlaté Nizozemských Antil</displayName>
<displayName count="other">zlatých Nizozemských Antil</displayName>
</currency>
<currency type="AOA">
<displayName>angolská kwanza</displayName>
<displayName count="one">angolská kwanza</displayName>
<displayName count="few">angolské kwanzy</displayName>
<displayName count="other">angolských kwanz</displayName>
</currency>
<currency type="AOK">
<displayName>angolská kwanza (1977-1991)</displayName>
<displayName count="one">angolská kwanza (1977-1991)</displayName>
<displayName count="few">angolské kwanzy (1977-1991)</displayName>
<displayName count="other">angolských kwanz (1977-1991)</displayName>
</currency>
<currency type="AON">
<displayName>angolská kwanza (1990-2000)</displayName>
<displayName count="one">angolská nový kwanza (1990-2000)</displayName>
<displayName count="few">angolská kwanza (1990-2000)</displayName>
<displayName count="other">angolských kwanz (1990-2000)</displayName>
</currency>
<currency type="AOR">
<displayName>angolská kwanza (1995-1999)</displayName>
<displayName count="one">angolská nový kwanza (1995-1999)</displayName>
<displayName count="few">angolská kwanza (1995-1999)</displayName>
<displayName count="other">angolských kwanz (1995-1999)</displayName>
</currency>
<currency type="ARA">
<displayName>argentinský austral</displayName>
<displayName count="one">argentinský austral</displayName>
<displayName count="few">argentinské australy</displayName>
<displayName count="other">argentinských australů</displayName>
</currency>
<currency type="ARP">
<displayName>argentinské peso (1983-1985)</displayName>
<displayName count="one">argentinské peso (1983-1985)</displayName>
<displayName count="few">argentinská pesa (1983-1985)</displayName>
<displayName count="other">argentinských pes (1983-1985)</displayName>
</currency>
<currency type="ARS">
<displayName>argentinské peso</displayName>
<displayName count="one">argentinské peso</displayName>
<displayName count="few">argentinská pesa</displayName>
<displayName count="other">argentinských pes</displayName>
</currency>
<currency type="ATS">
<displayName>rakouský šilink</displayName>
<displayName count="one">rakouský šilink</displayName>
<displayName count="few">rakouské šilinky</displayName>
<displayName count="other">rakouských šilinků</displayName>
</currency>
<currency type="AUD">
<displayName>australský dolar</displayName>
<displayName count="one">australský dolar</displayName>
<displayName count="few">australské dolary</displayName>
<displayName count="other">australských dolarů</displayName>
<symbol draft="contributed">AU$</symbol>
</currency>
<currency type="AWG">
<displayName>arubský zlatý</displayName>
<displayName count="one">arubský zlatý</displayName>
<displayName count="few">arubské zlaté</displayName>
<displayName count="other">arubských zlatých</displayName>
</currency>
<currency type="AZM">
<displayName>ázerbájdžánský manat (1993-2006)</displayName>
<displayName count="one">ázerbájdžánský manat (1993-2006)</displayName>
<displayName count="few">ázerbájdžánské manaty (1993-2006)</displayName>
<displayName count="other">ázerbájdžánských manatů (1993-2006)</displayName>
</currency>
<currency type="AZN">
<displayName>ázerbájdžánský manat</displayName>
<displayName count="one">ázerbájdžánský manat</displayName>
<displayName count="few">ázerbájdžánské manaty</displayName>
<displayName count="other">ázerbájdžánských manatů</displayName>
</currency>
<currency type="BAD">
<displayName>bosenský dinár (1992-1994)</displayName>
<displayName count="one">bosenský dinár (1992-1994)</displayName>
<displayName count="few">bosenské dinárz (1992-1994)</displayName>
<displayName count="other">bosenských dinárů (1992-1994)</displayName>
</currency>
<currency type="BAM">
<displayName>bosenská konvertibilní marka</displayName>
<displayName count="one">bosenská konvertibilní marka</displayName>
<displayName count="few">bosenské konvertibilní marky</displayName>
<displayName count="other">bosenských konvertibilních marek</displayName>
</currency>
<currency type="BAN">
<displayName>bosenský nový dinár (1994-1997)</displayName>
<displayName count="one">bosenský nový dinár (1994-1997)</displayName>
<displayName count="few">bosenské nové dináry (1994-1997)</displayName>
<displayName count="other">bosenských nových dinárů (1994-1997)</displayName>
</currency>
<currency type="BBD">
<displayName>barbadoský dolar</displayName>
<displayName count="one">barbadoský dolar</displayName>
<displayName count="few">barbadoské dolary</displayName>
<displayName count="other">barbadoských dolarů</displayName>
</currency>
<currency type="BDT">
<displayName>bangladéšská taka</displayName>
<displayName count="one">bangladéšská taka</displayName>
<displayName count="few">bangladéšské taky</displayName>
<displayName count="other">bangladéšských tak</displayName>
</currency>
<currency type="BEC">
<displayName>belgický konvertibilní frank</displayName>
<displayName count="one">belgický konvertibilní frank</displayName>
<displayName count="few">belgické konvertibilní franky</displayName>
<displayName count="other">belgických konvertibilních franků</displayName>
</currency>
<currency type="BEF">
<displayName>belgický frank</displayName>
<displayName count="one">belgický frank</displayName>
<displayName count="few">belgické franky</displayName>
<displayName count="other">belgických franků</displayName>
</currency>
<currency type="BEL">
<displayName>belgický finanční frank</displayName>
<displayName count="one">belgický finanční frank</displayName>
<displayName count="few">belgické finanční franky</displayName>
<displayName count="other">belgických finančních franků</displayName>
</currency>
<currency type="BGN">
<displayName>bulharský lev</displayName>
<displayName count="one">bulharský lev</displayName>
<displayName count="few">bulharské lvy</displayName>
<displayName count="other">bulharských lvů</displayName>
</currency>
<currency type="BHD">
<displayName>bahrajnský dinár</displayName>
<displayName count="one">bahrajnský dinár</displayName>
<displayName count="few">bahrajnské dináry</displayName>
<displayName count="other">bahrajnských dinárů</displayName>
</currency>
<currency type="BIF">
<displayName>burundský frank</displayName>
<displayName count="one">burundský frank</displayName>
<displayName count="few">burundské franky</displayName>
<displayName count="other">burundských franků</displayName>
</currency>
<currency type="BMD">
<displayName>bermudský dolar</displayName>
<displayName count="one">bermudský dolar</displayName>
<displayName count="few">bermudské dolary</displayName>
<displayName count="other">bermudských dolarů</displayName>
</currency>
<currency type="BND">
<displayName>brunejský dolar</displayName>
<displayName count="one">brunejský dolar</displayName>
<displayName count="few">brunejské dolary</displayName>
<displayName count="other">brunejských dolarů</displayName>
</currency>
<currency type="BOB">
<displayName>bolivijský boliviano</displayName>
<displayName count="one">bolivijský boliviano</displayName>
<displayName count="few">bolivijské bolivianos</displayName>
<displayName count="other">bolivijských bolivianos</displayName>
</currency>
<currency type="BOL">
<displayName>bolivijský boliviano (1863-1963)</displayName>
<displayName count="one">bolivijský boliviano (1863-1963)</displayName>
<displayName count="few">bolivijské bolivianos (1863-1963)</displayName>
<displayName count="other">bolivijských bolivianos (1863-1963)</displayName>
</currency>
<currency type="BOP">
<displayName>bolivijské peso</displayName>
<displayName count="one">bolivijské peso</displayName>
<displayName count="few">bolivijská pesa</displayName>
<displayName count="other">bolivijských pes</displayName>
</currency>
<currency type="BOV">
<displayName>bolivijský mvdol</displayName>
<displayName count="one">bolivijský mvdol</displayName>
<displayName count="few">bolivijské mvdoly</displayName>
<displayName count="other">bolivijských mvdolů</displayName>
</currency>
<currency type="BRL">
<displayName>brazilský real</displayName>
<displayName count="one">brazilský real</displayName>
<displayName count="few">brazilské realy</displayName>
<displayName count="other">brazilských realů</displayName>
<symbol draft="contributed">R$</symbol>
</currency>
<currency type="BSD">
<displayName>bahamský dolar</displayName>
<displayName count="one">bahamský dolar</displayName>
<displayName count="few">bahamské dolary</displayName>
<displayName count="other">bahamských dolarů</displayName>
</currency>
<currency type="BTN">
<displayName>bhútánský ngultrum</displayName>
<displayName count="one">bhútánský ngultrum</displayName>
<displayName count="few">bhútánské ngultrumy</displayName>
<displayName count="other">bhútánských ngultrumů</displayName>
</currency>
<currency type="BUK">
<displayName>barmský kyat</displayName>
<displayName count="one">barmský kyat</displayName>
<displayName count="few">barmské kyaty</displayName>
<displayName count="other">barmských kyatů</displayName>
</currency>
<currency type="BWP">
<displayName>botswanská pula</displayName>
<displayName count="one">botswanská pula</displayName>
<displayName count="few">botswanské puly</displayName>
<displayName count="other">botswanských pul</displayName>
</currency>
<currency type="BYB">
<displayName>běloruský rubl (1994-1999)</displayName>
<displayName count="one">běloruský rubl (1994-1999)</displayName>
<displayName count="few">běloruské rubly (1994-1999)</displayName>
<displayName count="other">běloruských rublů (1994-1999)</displayName>
</currency>
<currency type="BYR">
<displayName>běloruský rubl</displayName>
<displayName count="one">běloruský rubl</displayName>
<displayName count="few">běloruské rubly</displayName>
<displayName count="other">běloruských rublů</displayName>
</currency>
<currency type="BZD">
<displayName>belizský dolar</displayName>
<displayName count="one">belizský dolar</displayName>
<displayName count="few">belizské dolary</displayName>
<displayName count="other">belizských dolarů</displayName>
</currency>
<currency type="CAD">
<displayName>kanadský dolar</displayName>
<displayName count="one">kanadský dolar</displayName>
<displayName count="few">kanadské dolary</displayName>
<displayName count="other">kanadských dolarů</displayName>
<symbol>CA$</symbol>
</currency>
<currency type="CDF">
<displayName>konžský frank</displayName>
<displayName count="one">konžský frank</displayName>
<displayName count="few">konžské franky</displayName>
<displayName count="other">konžských franků</displayName>
</currency>
<currency type="CHF">
<displayName>švýcarský frank</displayName>
<displayName count="one">švýcarský frank</displayName>
<displayName count="few">švýcarské franky</displayName>
<displayName count="other">švýcarských franků</displayName>
</currency>
<currency type="CLE">
<displayName>chilské escudo</displayName>
<displayName count="one">chilské escudo</displayName>
<displayName count="few">chilská escuda</displayName>
<displayName count="other">chilských escud</displayName>
</currency>
<currency type="CLP">
<displayName>chilské peso</displayName>
<displayName count="one">chilské peso</displayName>
<displayName count="few">chilská pesa</displayName>
<displayName count="other">chilských pes</displayName>
</currency>
<currency type="CNY">
<displayName>čínský jüan</displayName>
<displayName count="one">čínský jüan</displayName>
<displayName count="few">čínské jüany</displayName>
<displayName count="other">čínských jüanů</displayName>
<symbol draft="contributed">CN¥</symbol>
</currency>
<currency type="COP">
<displayName>kolumbijské peso</displayName>
<displayName count="one">kolumbijské peso</displayName>
<displayName count="few">kolumbijská pesa</displayName>
<displayName count="other">kolumbijských pes</displayName>
</currency>
<currency type="CRC">
<displayName>kostarický colón</displayName>
<displayName count="one">kostarický colón</displayName>
<displayName count="few">kostarické colóny</displayName>
<displayName count="other">kostarických colónů</displayName>
</currency>
<currency type="CSK">
<displayName>československá koruna</displayName>
<displayName count="one">československá koruna</displayName>
<displayName count="few">československé koruny</displayName>
<displayName count="other">československých korun</displayName>
</currency>
<currency type="CUC">
<displayName>kubánské konvertibilní peso</displayName>
<displayName count="one">kubánské konvertibilní peso</displayName>
<displayName count="few">kubánská konvertibilní pesa</displayName>
<displayName count="other">kubánských konvertibilních pes</displayName>
</currency>
<currency type="CUP">
<displayName>kubánské peso</displayName>
<displayName count="one">kubánské peso</displayName>
<displayName count="few">kubánská pesa</displayName>
<displayName count="other">kubánských pes</displayName>
</currency>
<currency type="CVE">
<displayName>kapverdské escudo</displayName>
<displayName count="one">kapverdské escudo</displayName>
<displayName count="few">kapverdská escuda</displayName>
<displayName count="other">kapverdských escud</displayName>
</currency>
<currency type="CYP">
<displayName>kyperská libra</displayName>
<displayName count="one">kyperská libra</displayName>
<displayName count="few">kyperské libry</displayName>
<displayName count="other">kyperských liber</displayName>
</currency>
<currency type="CZK">
<displayName>česká koruna</displayName>
<displayName count="one">česká koruna</displayName>
<displayName count="few">české koruny</displayName>
<displayName count="other">českých korun</displayName>
<symbol>Kč</symbol>
</currency>
<currency type="DDM">
<displayName>východoněmecká marka</displayName>
<displayName count="one">východoněmecká marka</displayName>
<displayName count="few">východoněmecké marky</displayName>
<displayName count="other">východoněmeckých marek</displayName>
</currency>
<currency type="DEM">
<displayName>německá marka</displayName>
<displayName count="one">německá marka</displayName>
<displayName count="few">německé marky</displayName>
<displayName count="other">německých marek</displayName>
</currency>
<currency type="DJF">
<displayName>džibutský frank</displayName>
<displayName count="one">džibutský frank</displayName>
<displayName count="few">džibutské franky</displayName>
<displayName count="other">džibutských franků</displayName>
</currency>
<currency type="DKK">
<displayName>dánská koruna</displayName>
<displayName count="one">dánská koruna</displayName>
<displayName count="few">dánské koruny</displayName>
<displayName count="other">dánských korun</displayName>
</currency>
<currency type="DOP">
<displayName>dominikánské peso</displayName>
<displayName count="one">dominikánské peso</displayName>
<displayName count="few">dominikánská pesa</displayName>
<displayName count="other">dominikánských pes</displayName>
</currency>
<currency type="DZD">
<displayName>alžírský dinár</displayName>
<displayName count="one">alžírský dinár</displayName>
<displayName count="few">alžírské dináry</displayName>
<displayName count="other">alžírských dinárů</displayName>
</currency>
<currency type="EEK">
<displayName>estonská koruna</displayName>
<displayName count="one">estonská koruna</displayName>
<displayName count="few">estonské koruny</displayName>
<displayName count="other">estonských korun</displayName>
</currency>
<currency type="EGP">
<displayName>egyptská libra</displayName>
<displayName count="one">egyptská libra</displayName>
<displayName count="few">egyptské libry</displayName>
<displayName count="other">egyptských liber</displayName>
</currency>
<currency type="ERN">
<displayName>eritrejská nakfa</displayName>
<displayName count="one">eritrejská nakfa</displayName>
<displayName count="few">eritrejské nakfy</displayName>
<displayName count="other">eritrejských nakf</displayName>
</currency>
<currency type="ESA">
<displayName>španělská peseta („A“ účet)</displayName>
<displayName count="one">španělská peseta („A“ účet)</displayName>
<displayName count="few">španělské pesety („A“ účet)</displayName>
<displayName count="other">španělských peset („A“ účet)</displayName>
</currency>
<currency type="ESB">
<displayName>španělská peseta (konvertibilní účet)</displayName>
<displayName count="one">španělská peseta (konvertibilní účet)</displayName>
<displayName count="few">španělské pesety (konvertibilní účet)</displayName>
<displayName count="other">španělských peset (konvertibilní účet)</displayName>
</currency>
<currency type="ESP">
<displayName>španělská peseta</displayName>
<displayName count="one">španělská peseta</displayName>
<displayName count="few">španělské pesety</displayName>
<displayName count="other">španělských peset</displayName>
</currency>
<currency type="ETB">
<displayName>etiopský birr</displayName>
<displayName count="one">etiopský birr</displayName>
<displayName count="few">etiopské birry</displayName>
<displayName count="other">etiopských birrů</displayName>
</currency>
<currency type="EUR">
<displayName>euro</displayName>
<displayName count="one">euro</displayName>
<displayName count="few">eura</displayName>
<displayName count="other">eur</displayName>
<symbol draft="contributed">€</symbol>
</currency>
<currency type="FIM">
<displayName>finská marka</displayName>
<displayName count="one">finská marka</displayName>
<displayName count="few">finské marky</displayName>
<displayName count="other">finských marek</displayName>
</currency>
<currency type="FJD">
<displayName>fidžijský dolar</displayName>
<displayName count="one">fidžijský dolar</displayName>
<displayName count="few">fidžijské dolary</displayName>
<displayName count="other">fidžijských dolarů</displayName>
</currency>
<currency type="FKP">
<displayName>falklandská libra</displayName>
<displayName count="one">falklandská libra</displayName>
<displayName count="few">falklandské libry</displayName>
<displayName count="other">falklandských liber</displayName>
</currency>
<currency type="FRF">
<displayName>francouzský frank</displayName>
<displayName count="one">francouzský frank</displayName>
<displayName count="few">francouzské franky</displayName>
<displayName count="other">francouzských franků</displayName>
</currency>
<currency type="GBP">
<displayName>britská libra</displayName>
<displayName count="one">britská libra</displayName>
<displayName count="few">britské libry</displayName>
<displayName count="other">britských liber</displayName>
<symbol draft="contributed">£</symbol>
</currency>
<currency type="GEL">
<displayName>gruzínské lari</displayName>
<displayName count="one">gruzínské lari</displayName>
<displayName count="few">gruzínské lari</displayName>
<displayName count="other">gruzínských lari</displayName>
</currency>
<currency type="GHC">
<displayName>ghanský cedi (1979-2007)</displayName>
<displayName count="one">ghanský cedi (1979-2007)</displayName>
<displayName count="few">ghanské cedi (1979-2007)</displayName>
<displayName count="other">ghanských cedi (1979-2007)</displayName>
</currency>
<currency type="GHS">
<displayName>ghanský cedi</displayName>
<displayName count="one">ghanský cedi</displayName>
<displayName count="few">ghanské cedi</displayName>
<displayName count="other">ghanských cedi</displayName>
</currency>
<currency type="GIP">
<displayName>gibraltarská libra</displayName>
<displayName count="one">gibraltarská libra</displayName>
<displayName count="few">gibraltarské libry</displayName>
<displayName count="other">gibraltarských liber</displayName>
</currency>
<currency type="GMD">
<displayName>gambijský dalasi</displayName>
<displayName count="one">gambijský dalasi</displayName>
<displayName count="few">gambijské dalasi</displayName>
<displayName count="other">gambijských dalasi</displayName>
</currency>
<currency type="GNF">
<displayName>guinejský frank</displayName>
<displayName count="one">guinejský frank</displayName>
<displayName count="few">guinejské franky</displayName>
<displayName count="other">guinejských franků</displayName>
</currency>
<currency type="GNS">
<displayName>guinejský syli</displayName>
<displayName count="one">guinejský syli</displayName>
<displayName count="few">guinejské syli</displayName>
<displayName count="other">guinejských syli</displayName>
</currency>
<currency type="GRD">
<displayName>řecká drachma</displayName>
<displayName count="one">řecká drachma</displayName>
<displayName count="few">řecké drachmy</displayName>
<displayName count="other">řeckých drachem</displayName>
</currency>
<currency type="GTQ">
<displayName>guatemalský quetzal</displayName>
<displayName count="one">guatemalský quetzal</displayName>
<displayName count="few">guatemalské quetzaly</displayName>
<displayName count="other">guatemalských quetzalů</displayName>
</currency>
<currency type="GWP">
<displayName>guinejsko-bissauské peso</displayName>
<displayName count="one">guinea-bissauské peso</displayName>
<displayName count="few">guinea-bissauská pesa</displayName>
<displayName count="other">guinea-bissauských pes</displayName>
</currency>
<currency type="GYD">
<displayName>guyanský dolar</displayName>
<displayName count="one">guyanský dolar</displayName>
<displayName count="few">guyanské dolary</displayName>
<displayName count="other">guyanských dolarů</displayName>
</currency>
<currency type="HKD">
<displayName>hongkongský dolar</displayName>
<displayName count="one">hongkongský dolar</displayName>
<displayName count="few">hongkongské dolary</displayName>
<displayName count="other">hongkongských dolarů</displayName>
<symbol draft="contributed">HK$</symbol>
</currency>
<currency type="HNL">
<displayName>honduraská lempira</displayName>
<displayName count="one">honduraská lempira</displayName>
<displayName count="few">honduraské lempiry</displayName>
<displayName count="other">honduraských lempir</displayName>
</currency>
<currency type="HRD">
<displayName>chorvatský dinár</displayName>
<displayName count="one">chorvatský dinár</displayName>
<displayName count="few">chorvatské dináry</displayName>
<displayName count="other">chorvatských dinárů</displayName>
</currency>
<currency type="HRK">
<displayName>chorvatská kuna</displayName>
<displayName count="one">chorvatská kuna</displayName>
<displayName count="few">chorvatské kuny</displayName>
<displayName count="other">chorvatských kun</displayName>
</currency>
<currency type="HTG">
<displayName>haitský gourde</displayName>
<displayName count="one">haitský gourde</displayName>
<displayName count="few">haitské gourde</displayName>
<displayName count="other">haitských gourde</displayName>
</currency>
<currency type="HUF">
<displayName>maďarský forint</displayName>
<displayName count="one">maďarský forint</displayName>
<displayName count="few">maďarské forinty</displayName>
<displayName count="other">maďarských forintů</displayName>
</currency>
<currency type="IDR">
<displayName>indonéská rupie</displayName>
<displayName count="one">indonéská rupie</displayName>
<displayName count="few">indonéské rupie</displayName>
<displayName count="other">indonéských rupií</displayName>
</currency>
<currency type="IEP">
<displayName>irská libra</displayName>
<displayName count="one">irská libra</displayName>
<displayName count="few">irské libry</displayName>
<displayName count="other">irských liber</displayName>
</currency>
<currency type="ILP">
<displayName>izraelská libra</displayName>
<displayName count="one">izraelská libra</displayName>
<displayName count="few">izraelské libry</displayName>
<displayName count="other">izraelských liber</displayName>
</currency>
<currency type="ILR">
<displayName>izraelský šekel (1980-1985)</displayName>
<displayName count="one">izraelský šekel (1980-1985)</displayName>
<displayName count="few">izraelské šekely (1980-1985)</displayName>
<displayName count="other">izraelských šekelů (1980-1985)</displayName>
</currency>
<currency type="ILS">
<displayName>izraelský nový šekel</displayName>
<displayName count="one">izraelský nový šekel</displayName>
<displayName count="few">izraelské nové šekely</displayName>
<displayName count="other">izraelskýchch nový šekelů</displayName>
<symbol draft="contributed">₪</symbol>
</currency>
<currency type="INR">
<displayName>indická rupie</displayName>
<displayName count="one">indická rupie</displayName>
<displayName count="few">indické rupie</displayName>
<displayName count="other">indických rupií</displayName>
<symbol draft="contributed">₹</symbol>
</currency>
<currency type="IQD">
<displayName>irácký dinár</displayName>
<displayName count="one">irácký dinár</displayName>
<displayName count="few">irácké dináry</displayName>
<displayName count="other">iráckých dinárů</displayName>
</currency>
<currency type="IRR">
<displayName>íránský rijál</displayName>
<displayName count="one">íránský rijál</displayName>
<displayName count="few">íránské rijály</displayName>
<displayName count="other">íránských rijálů</displayName>
</currency>
<currency type="ISJ">
<displayName>islandská koruna (1918-1981)</displayName>
<displayName count="one">islandská koruna (1918-1981)</displayName>
<displayName count="few">islandské koruny (1918-1981)</displayName>
<displayName count="other">islandských korun (1918-1981)</displayName>
</currency>
<currency type="ISK">
<displayName>islandská koruna</displayName>
<displayName count="one">islandská koruna</displayName>
<displayName count="few">islandské koruny</displayName>
<displayName count="other">islandských korun</displayName>
</currency>
<currency type="ITL">
<displayName>italská lira</displayName>
<displayName count="one">italská lira</displayName>
<displayName count="few">italské liry</displayName>
<displayName count="other">italských lira</displayName>
</currency>
<currency type="JMD">
<displayName>jamajský dolar</displayName>
<displayName count="one">jamajský dolar</displayName>
<displayName count="few">jamajské dolary</displayName>
<displayName count="other">jamajských dolarů</displayName>
</currency>
<currency type="JOD">
<displayName>jordánský dinár</displayName>
<displayName count="one">jordánský dinár</displayName>
<displayName count="few">jordánské dináry</displayName>
<displayName count="other">jordánských dinárů</displayName>
</currency>
<currency type="JPY">
<displayName>japonský jen</displayName>
<displayName count="one">japonský jen</displayName>
<displayName count="few">japonské jeny</displayName>
<displayName count="other">japonských jenů</displayName>
<symbol draft="contributed">JP¥</symbol>
</currency>
<currency type="KES">
<displayName>keňský šilink</displayName>
<displayName count="one">keňský šilink</displayName>
<displayName count="few">keňské šilinky</displayName>
<displayName count="other">keňských šilinků</displayName>
</currency>
<currency type="KGS">
<displayName>kyrgyzský som</displayName>
<displayName count="one">kyrgyzský som</displayName>
<displayName count="few">kyrgyzské somy</displayName>
<displayName count="other">kyrgyzských somů</displayName>
</currency>
<currency type="KHR">
<displayName>kambodžský riel</displayName>
<displayName count="one">kambodžský riel</displayName>
<displayName count="few">kambodžské riely</displayName>
<displayName count="other">kambodžských rielů</displayName>
</currency>
<currency type="KMF">
<displayName>komorský frank</displayName>
<displayName count="one">komorský frank</displayName>
<displayName count="few">komorské franky</displayName>
<displayName count="other">komorských franků</displayName>
</currency>
<currency type="KPW">
<displayName>severokorejský won</displayName>
<displayName count="one">severokorejský won</displayName>
<displayName count="few">severokorejské wony</displayName>
<displayName count="other">severokorejských wonů</displayName>
</currency>
<currency type="KRW">
<displayName>jihokorejský won</displayName>
<displayName count="one">jihokorejský won</displayName>
<displayName count="few">jihokorejské wony</displayName>
<displayName count="other">jihokorejských wonů</displayName>
<symbol draft="contributed">₩</symbol>
</currency>
<currency type="KWD">
<displayName>kuvajtský dinár</displayName>
<displayName count="one">kuvajtský dinár</displayName>
<displayName count="few">kuvajtské dináry</displayName>
<displayName count="other">kuvajtských dinárů</displayName>
</currency>
<currency type="KYD">
<displayName>kajmanský dolar</displayName>
<displayName count="one">kajmanský dolar</displayName>
<displayName count="few">kajmanské dolary</displayName>
<displayName count="other">kajmanských dolarů</displayName>
</currency>
<currency type="KZT">
<displayName>kazašské tenge</displayName>
<displayName count="one">kazašské tenge</displayName>
<displayName count="few">kazašské tenge</displayName>
<displayName count="other">kazašských tenge</displayName>
</currency>
<currency type="LAK">
<displayName>laoský kip</displayName>
<displayName count="one">laoský kip</displayName>
<displayName count="few">laoské kipy</displayName>
<displayName count="other">laoských kipů</displayName>
</currency>
<currency type="LBP">
<displayName>libanonská libra</displayName>
<displayName count="one">libanonská libra</displayName>
<displayName count="few">libanonské libry</displayName>
<displayName count="other">libanonských liber</displayName>
</currency>
<currency type="LKR">
<displayName>srílanská rupie</displayName>
<displayName count="one">srílanská rupie</displayName>
<displayName count="few">srílanské rupie</displayName>
<displayName count="other">srílanských rupií</displayName>
</currency>
<currency type="LRD">
<displayName>liberijský dolar</displayName>
<displayName count="one">liberijský dolar</displayName>
<displayName count="few">liberijské dolary</displayName>
<displayName count="other">liberijských dolarů</displayName>
</currency>
<currency type="LSL">
<displayName>lesothský loti</displayName>
<displayName count="one">lesothský loti</displayName>
<displayName count="few">lesothské maloti</displayName>
<displayName count="other">lesothských maloti</displayName>
</currency>
<currency type="LTL">
<displayName>litevský litas</displayName>
<displayName count="one">litevský litas</displayName>
<displayName count="few">litevské lity</displayName>
<displayName count="other">litevských litů</displayName>
</currency>
<currency type="LTT">
<displayName>litevský talonas</displayName>
<displayName count="one">litevský talonas</displayName>
<displayName count="few">litevské talony</displayName>
<displayName count="other">litevských talonů</displayName>
</currency>
<currency type="LUC">
<displayName>lucemburský konvertibilní frank</displayName>
<displayName count="one">lucemburský konvertibilní frank</displayName>
<displayName count="few">lucemburské konvertibilní franky</displayName>
<displayName count="other">lucemburských konvertibilních franků</displayName>
</currency>
<currency type="LUF">
<displayName>lucemburský frank</displayName>
<displayName count="one">lucemburský frank</displayName>
<displayName count="few">lucemburské franky</displayName>
<displayName count="other">lucemburských franků</displayName>
</currency>
<currency type="LUL">
<displayName>lucemburský finanční frank</displayName>
<displayName count="one">lucemburský finanční frank</displayName>
<displayName count="few">lucemburské finanční franky</displayName>
<displayName count="other">lucemburských finančních franků</displayName>
</currency>
<currency type="LVL">
<displayName>lotyšský lat</displayName>
<displayName count="one">lotyšský lat</displayName>
<displayName count="few">lotyšské laty</displayName>
<displayName count="other">lotyšských latů</displayName>
</currency>
<currency type="LVR">
<displayName>lotyšský rubl</displayName>
<displayName count="one">lotyšský rubl</displayName>
<displayName count="few">lotyšské rubly</displayName>
<displayName count="other">lotyšských rublů</displayName>
</currency>
<currency type="LYD">
<displayName>libyjský dinár</displayName>
<displayName count="one">libyjský dinár</displayName>
<displayName count="few">libyjské dináry</displayName>
<displayName count="other">libyjských dinárů</displayName>
</currency>
<currency type="MAD">
<displayName>marocký dinár</displayName>
<displayName count="one">marocký dinár</displayName>
<displayName count="few">marocké dináry</displayName>
<displayName count="other">marockých dinárů</displayName>
</currency>
<currency type="MAF">
<displayName>marocký frank</displayName>
<displayName count="one">marocký frank</displayName>
<displayName count="few">marocké franky</displayName>
<displayName count="other">marockých franků</displayName>
</currency>
<currency type="MDL">
<displayName>moldavský lei</displayName>
<displayName count="one">moldavský lei</displayName>
<displayName count="few">moldavské lei</displayName>
<displayName count="other">moldavských lei</displayName>
</currency>
<currency type="MGA">
<displayName>madagaskarský ariary</displayName>
<displayName count="one">madagaskarský ariary</displayName>
<displayName count="few">madagaskarské ariary</displayName>
<displayName count="other">madagaskarských ariary</displayName>
</currency>
<currency type="MGF">
<displayName>madagaskarský frank</displayName>
<displayName count="one">madagaskarský frank</displayName>
<displayName count="few">madagaskarské franky</displayName>
<displayName count="other">madagaskarských franků</displayName>
</currency>
<currency type="MKD">
<displayName>makedonský denár</displayName>
<displayName count="one">makedonský denár</displayName>
<displayName count="few">makedonské denáry</displayName>
<displayName count="other">makedonských denárů</displayName>
</currency>
<currency type="MKN">
<displayName>makedonský denár (1992-1993)</displayName>
<displayName count="one">makedonský denár (1992-1993)</displayName>
<displayName count="few">makedonské denáry (1992-1993)</displayName>
<displayName count="other">makedonských denárů (1992-1993)</displayName>
</currency>
<currency type="MLF">
<displayName>malijský frank</displayName>
<displayName count="one">malijský frank</displayName>
<displayName count="few">malijské franky</displayName>
<displayName count="other">malijských franků</displayName>
</currency>
<currency type="MMK">
<displayName>myanmarský kyat</displayName>
<displayName count="one">myanmarský kyat</displayName>
<displayName count="few">myanmarské kyaty</displayName>
<displayName count="other">myanmarských kyatů</displayName>
</currency>
<currency type="MNT">
<displayName>mongolský tugrik</displayName>
<displayName count="one">mongolský tugrik</displayName>
<displayName count="few">mongolské tugriky</displayName>
<displayName count="other">mongolských tugriků</displayName>
</currency>
<currency type="MOP">
<displayName>macajská pataca</displayName>
<displayName count="one">macajská pataca</displayName>
<displayName count="few">macajské patacy</displayName>
<displayName count="other">macajských patac</displayName>
</currency>
<currency type="MRO">
<displayName>mauritánská ouguiya</displayName>
<displayName count="one">mauritánská ouguiya</displayName>
<displayName count="few">mauritánské ouguiye</displayName>
<displayName count="other">mauritánských ouguiyí</displayName>
</currency>
<currency type="MTL">
<displayName>maltská lira</displayName>
<displayName count="one">maltská lira</displayName>
<displayName count="few">maltské liry</displayName>
<displayName count="other">maltských lir</displayName>
</currency>
<currency type="MTP">
<displayName>maltská libra</displayName>
<displayName count="one">maltská libra</displayName>
<displayName count="few">maltské libry</displayName>
<displayName count="other">maltských liber</displayName>
</currency>
<currency type="MUR">
<displayName>mauricijská rupie</displayName>
<displayName count="one">mauricijská rupie</displayName>
<displayName count="few">mauricijské rupie</displayName>
<displayName count="other">mauricijských rupií</displayName>
</currency>
<currency type="MVR">
<displayName>maledivská rupie</displayName>
<displayName count="one">maledivská rupie</displayName>
<displayName count="few">maledivské rupie</displayName>
<displayName count="other">maledivských rupií</displayName>
</currency>
<currency type="MWK">
<displayName>malawijská kwacha</displayName>
<displayName count="one">malawijská kwacha</displayName>
<displayName count="few">malawijské kwachy</displayName>
<displayName count="other">malawijských kwach</displayName>
</currency>
<currency type="MXN">
<displayName>mexické peso</displayName>
<displayName count="one">mexické peso</displayName>
<displayName count="few">mexická pesa</displayName>
<displayName count="other">mexických pes</displayName>
<symbol>MX$</symbol>
</currency>
<currency type="MXP">
<displayName>mexické stříbrné peso (1861-1992)</displayName>
<displayName count="one">mexické stříbrné peso (1861-1992)</displayName>
<displayName count="few">mexická stříbrná pesa (1861-1992)</displayName>
<displayName count="other">mexických stříbrných pes (1861-1992)</displayName>
</currency>
<currency type="MXV">
<displayName count="one" draft="contributed">mexická investiční jednotka</displayName>
<displayName count="few" draft="contributed">mexické investiční jednotky</displayName>
<displayName count="other" draft="contributed">mexických investičních jednotek</displayName>
</currency>
<currency type="MYR">
<displayName>malajsijský ringgit</displayName>
<displayName count="one">malajsijský ringgit</displayName>
<displayName count="few">malajsijské ringgity</displayName>
<displayName count="other">malajsijských ringgitů</displayName>
</currency>
<currency type="MZE">
<displayName>mosambický escudo</displayName>
<displayName count="one">mosambický escudo</displayName>
<displayName count="few">mosambická escuda</displayName>
<displayName count="other">mosambických escud</displayName>
</currency>
<currency type="MZM">
<displayName>mosambický metical (1980-2006)</displayName>
<displayName count="one">mosambický metical (1980-2006)</displayName>
<displayName count="few">mosambické meticaly (1980-2006)</displayName>
<displayName count="other">mosambických meticalů (1980-2006)</displayName>
</currency>
<currency type="MZN">
<displayName>mozambický metical</displayName>
<displayName count="one">mozambický metical</displayName>
<displayName count="few">mozambické meticaly</displayName>
<displayName count="other">mozambických meticalů</displayName>
</currency>
<currency type="NAD">
<displayName>namibijský dolar</displayName>
<displayName count="one">namibijský dolar</displayName>
<displayName count="few">namibijské dolary</displayName>
<displayName count="other">namibijských dolarů</displayName>
</currency>
<currency type="NGN">
<displayName>nigerijská naira</displayName>
<displayName count="one">nigerijská naira</displayName>
<displayName count="few">nigerijské nairy</displayName>
<displayName count="other">nigerijských nair</displayName>
</currency>
<currency type="NIC">
<displayName>nikaragujská córdoba (1988-1991)</displayName>
<displayName count="one">nikaragujská córdoba (1988-1991)</displayName>
<displayName count="few">nikaragujské córdoby (1988-1991)</displayName>
<displayName count="other">nikaragujských córdob (1988-1991)</displayName>
</currency>
<currency type="NIO">
<displayName>nikaragujská córdoba</displayName>
<displayName count="one">nikaragujská córdoba</displayName>
<displayName count="few">nikaragujské córdoby</displayName>
<displayName count="other">nikaragujských córdob</displayName>
</currency>
<currency type="NOK">
<displayName>norská koruna</displayName>
<displayName count="one">norská koruna</displayName>
<displayName count="few">norské koruny</displayName>
<displayName count="other">norských korun</displayName>
</currency>
<currency type="NPR">
<displayName>nepálská rupie</displayName>
<displayName count="one">nepálská rupie</displayName>
<displayName count="few">nepálské rupie</displayName>
<displayName count="other">nepálských rupií</displayName>
</currency>
<currency type="NZD">
<displayName>novozélandský dolar</displayName>
<displayName count="one">novozélandský dolar</displayName>
<displayName count="few">novozélandské dolary</displayName>
<displayName count="other">novozélandských dolarů</displayName>
<symbol draft="contributed">NZ$</symbol>
</currency>
<currency type="OMR">
<displayName>ománský rijál</displayName>
<displayName count="one">ománský rijál</displayName>
<displayName count="few">ománské rijály</displayName>
<displayName count="other">ománských rijálů</displayName>
</currency>
<currency type="PAB">
<displayName>panamská balboa</displayName>
<displayName count="one">panamská balboa</displayName>
<displayName count="few">panamské balboy</displayName>
<displayName count="other">panamská balboí</displayName>
</currency>
<currency type="PEI">
<displayName>peruánská inti</displayName>
<displayName count="one">peruánská inti</displayName>
<displayName count="few">peruánské inti</displayName>
<displayName count="other">peruánskýchinti</displayName>
</currency>
<currency type="PEN">
<displayName>peruánský nový sol</displayName>
<displayName count="one">peruánský nový sol</displayName>
<displayName count="few">peruánské nové soly</displayName>
<displayName count="other">peruánských nových solů</displayName>
</currency>
<currency type="PES">
<displayName>peruánský sol (1863-1965)</displayName>
<displayName count="one">peruánský sol (1863-1965)</displayName>
<displayName count="few">peruánské soly (1863-1965)</displayName>
<displayName count="other">peruánských solů (1863-1965)</displayName>
</currency>
<currency type="PGK">
<displayName>papuánská nová kina</displayName>
<displayName count="one">papuánská nová kina</displayName>
<displayName count="few">papuánské nové kiny</displayName>
<displayName count="other">papuánských nových kin</displayName>
</currency>
<currency type="PHP">
<displayName>filipínské peso</displayName>
<displayName count="one">filipínské peso</displayName>
<displayName count="few">filipínská pesa</displayName>
<displayName count="other">filipínských pes</displayName>
</currency>
<currency type="PKR">
<displayName>pákistánská rupie</displayName>
<displayName count="one">pákistánská rupie</displayName>
<displayName count="few">pákistánské rupie</displayName>
<displayName count="other">pákistánských rupií</displayName>
</currency>
<currency type="PLN">
<displayName>polský zlotý</displayName>
<displayName count="one">polský zlotý</displayName>
<displayName count="few">polské zloté</displayName>
<displayName count="other">polských zlotých</displayName>
</currency>
<currency type="PLZ">
<displayName>polský zlotý (1950-1995)</displayName>
<displayName count="one">polský zlotý (1950-1995)</displayName>
<displayName count="few">polské zloté (1950-1995)</displayName>
<displayName count="other">polských zlotých (1950-1995)</displayName>
</currency>
<currency type="PTE">
<displayName>portugalské escudo</displayName>
<displayName count="one">portugalské escudo</displayName>
<displayName count="few">portugalská escuda</displayName>
<displayName count="other">portugalských escud</displayName>
</currency>
<currency type="PYG">
<displayName>paraguajské guarani</displayName>
<displayName count="one">paraguajské guarani</displayName>
<displayName count="few">paraguajská guarani</displayName>
<displayName count="other">paraguajských guarani</displayName>
</currency>
<currency type="QAR">
<displayName>katarský rijál</displayName>
<displayName count="one">katarský rijál</displayName>
<displayName count="few">katarské rijály</displayName>
<displayName count="other">katarských rijálů</displayName>
</currency>
<currency type="RHD">
<displayName>rhodéský dolar</displayName>
<displayName count="one">rhodéský dolar</displayName>
<displayName count="few">rhodéské dolary</displayName>
<displayName count="other">rhodéských dolarů</displayName>
</currency>
<currency type="ROL">
<displayName>rumunské leu (1952-2006)</displayName>
<displayName count="one">rumunské leu (1952-2006)</displayName>
<displayName count="few">rumunské lei (1952-2006)</displayName>
<displayName count="other">rumunských lei (1952-2006)</displayName>
</currency>
<currency type="RON">
<displayName>rumunské leu</displayName>
<displayName count="one">rumunské leu</displayName>
<displayName count="few">rumunské lei</displayName>
<displayName count="other">rumunských lei</displayName>
</currency>
<currency type="RSD">
<displayName>srbský dinár</displayName>
<displayName count="one">srbský dinár</displayName>
<displayName count="few">srbské dináry</displayName>
<displayName count="other">srbských dinárů</displayName>
</currency>
<currency type="RUB">
<displayName>ruský rubl</displayName>
<displayName count="one">ruský rubl</displayName>
<displayName count="few">ruské rubly</displayName>
<displayName count="other">ruských rublů</displayName>
</currency>
<currency type="RUR">
<displayName>ruský rubl (1991-1998)</displayName>
<displayName count="one">ruský rubl (1991-1998)</displayName>
<displayName count="few">ruské rubly (1991-1998)</displayName>
<displayName count="other">ruských rublů (1991-1998)</displayName>
</currency>
<currency type="RWF">
<displayName>rwandský frank</displayName>
<displayName count="one">rwandský frank</displayName>
<displayName count="few">rwandské franky</displayName>
<displayName count="other">rwandských franků</displayName>
</currency>
<currency type="SAR">
<displayName>saúdský rijál</displayName>
<displayName count="one">saúdský rijál</displayName>
<displayName count="few">saúdské rijály</displayName>
<displayName count="other">saúdských rijálů</displayName>
</currency>
<currency type="SBD">
<displayName>šalamounský dolar</displayName>
<displayName count="one">šalamounský dolar</displayName>
<displayName count="few">šalamounské dolary</displayName>
<displayName count="other">šalamounských dolarů</displayName>
</currency>
<currency type="SCR">
<displayName>seychelská rupie</displayName>
<displayName count="one">seychelská rupie</displayName>
<displayName count="few">seychelské rupie</displayName>
<displayName count="other">seychelských rupií</displayName>
</currency>
<currency type="SDD">
<displayName>súdánský dinár (1992-2007)</displayName>
<displayName count="one">súdánský dinár (1992-2007)</displayName>
<displayName count="few">súdánské dináry (1992-2007)</displayName>
<displayName count="other">súdánských dinárů (1992-2007)</displayName>
</currency>
<currency type="SDG">
<displayName>súdánská libra</displayName>
<displayName count="one">súdánská libra</displayName>
<displayName count="few">súdánské libry</displayName>
<displayName count="other">súdánských liber</displayName>
</currency>
<currency type="SDP">
<displayName>súdánská libra (1957-1998)</displayName>
<displayName count="one">súdánská libra (1957-1998)</displayName>
<displayName count="few">súdánské libry (1957-1998)</displayName>
<displayName count="other">súdánských liber (1957-1998)</displayName>
</currency>
<currency type="SEK">
<displayName>švédská koruna</displayName>
<displayName count="one">švédská koruna</displayName>
<displayName count="few">švédské koruny</displayName>
<displayName count="other">švédských korun</displayName>
</currency>
<currency type="SGD">
<displayName>singapurský dolar</displayName>
<displayName count="one">singapurský dolar</displayName>
<displayName count="few">singapurské dolary</displayName>
<displayName count="other">singapurských dolarů</displayName>
</currency>
<currency type="SHP">
<displayName>svatohelenská libra</displayName>
<displayName count="one">svatohelenská libra</displayName>
<displayName count="few">svatohelenské libry</displayName>
<displayName count="other">svatohelenských liber</displayName>
</currency>
<currency type="SIT">
<displayName>slovinský tolar</displayName>
<displayName count="one">slovinský tolar</displayName>
<displayName count="few">slovinské tolary</displayName>
<displayName count="other">slovinských tolarů</displayName>
</currency>
<currency type="SKK">
<displayName>slovenská koruna</displayName>
<displayName count="one">slovenská koruna</displayName>
<displayName count="few">slovenské koruny</displayName>
<displayName count="other">slovenských korun</displayName>
</currency>
<currency type="SLL">
<displayName>sierro-leonský leone</displayName>
<displayName count="one">sierro-leonský leone</displayName>
<displayName count="few">sierro-leonské leone</displayName>
<displayName count="other">sierro-leonských leone</displayName>
</currency>
<currency type="SOS">
<displayName>somálský šilink</displayName>
<displayName count="one">somálský šilink</displayName>
<displayName count="few">somálské šilinky</displayName>
<displayName count="other">somálských šilinků</displayName>
</currency>
<currency type="SRD">
<displayName>surinamský dolar</displayName>
<displayName count="one">surinamský dolar</displayName>
<displayName count="few">surinamské dolary</displayName>
<displayName count="other">surinamských dolarů</displayName>
</currency>
<currency type="SRG">
<displayName>surinamský zlatý</displayName>
<displayName count="one">surinamský zlatý</displayName>
<displayName count="few">surinamské zlaté</displayName>
<displayName count="other">surinamských zlatých</displayName>
</currency>
<currency type="SSP">
<displayName>jihosúdánská libra</displayName>
<displayName count="one">jihosúdánská libra</displayName>
<displayName count="few">jihosúdánské libry</displayName>
<displayName count="other">jihosúdánských liber</displayName>
</currency>
<currency type="STD">
<displayName>svatotomášská dobra</displayName>
<displayName count="one">svatotomášská dobra</displayName>
<displayName count="few">svatotomášské dobry</displayName>
<displayName count="other">svatotomášských dober</displayName>
</currency>
<currency type="SUR">
<displayName>sovětský rubl</displayName>
<displayName count="one">sovětský rubl</displayName>
<displayName count="few">sovětské rubly</displayName>
<displayName count="other">sovětských rublů</displayName>
</currency>
<currency type="SVC">
<displayName>salvadorský colón</displayName>
<displayName count="one">salvadorský colón</displayName>
<displayName count="few">salvadorské colóny</displayName>
<displayName count="other">salvadorských colónů</displayName>
</currency>
<currency type="SYP">
<displayName>syrská libra</displayName>
<displayName count="one">syrská libra</displayName>
<displayName count="few">syrské libry</displayName>
<displayName count="other">syrských liber</displayName>
</currency>
<currency type="SZL">
<displayName>svazijský lilangeni</displayName>
<displayName count="one">svazijský lilangeni</displayName>
<displayName count="few">svazijské emalangeni</displayName>
<displayName count="other">svazijských emalangeni</displayName>
</currency>
<currency type="THB">
<displayName>thajský baht</displayName>
<displayName count="one">thajský baht</displayName>
<displayName count="few">thajské bahty</displayName>
<displayName count="other">thajských bahtů</displayName>
<symbol draft="contributed">฿</symbol>
</currency>
<currency type="TJR">
<displayName>tádžický rubl</displayName>
<displayName count="one">tádžický rubl</displayName>
<displayName count="few">tádžické rubly</displayName>
<displayName count="other">tádžických rublů</displayName>
</currency>
<currency type="TJS">
<displayName>tádžické somoni</displayName>
<displayName count="one">tádžické somoni</displayName>
<displayName count="few">tádžická somoni</displayName>
<displayName count="other">tádžických somoni</displayName>
</currency>
<currency type="TMM">
<displayName>turkmenský manat (1993-2009)</displayName>
<displayName count="one">turkmenský manat (1993-2009)</displayName>
<displayName count="few">turkmenské manaty (1993-2009)</displayName>
<displayName count="other">turkmenských manatů (1993-2009)</displayName>
</currency>
<currency type="TMT">
<displayName>turkmenský manat</displayName>
<displayName count="one">turkmenský manat</displayName>
<displayName count="few">turkmenské manaty</displayName>
<displayName count="other">turkmenských manatů</displayName>
</currency>
<currency type="TND">
<displayName>tuniský dinár</displayName>
<displayName count="one">tuniský dinár</displayName>
<displayName count="few">tuniské dináry</displayName>
<displayName count="other">tuniských dinárů</displayName>
</currency>
<currency type="TOP">
<displayName>tonžská paanga</displayName>
<displayName count="one">tonžská paanga</displayName>
<displayName count="few">tonžské paangy</displayName>
<displayName count="other">tonžských paang</displayName>
</currency>
<currency type="TPE">
<displayName>timorské escudo</displayName>
<displayName count="one">timorské escudo</displayName>
<displayName count="few">timorská escuda</displayName>
<displayName count="other">timorských escud</displayName>
</currency>
<currency type="TRL">
<displayName>turecká lira (1922-2005)</displayName>
<displayName count="one">turecká lira (1922-2005)</displayName>
<displayName count="few">turecké liry (1922-2005)</displayName>
<displayName count="other">tureckých lir (1922-2005)</displayName>
</currency>
<currency type="TRY">
<displayName>turecká lira</displayName>
<displayName count="one">turecká lira</displayName>
<displayName count="few">turecké liry</displayName>
<displayName count="other">tureckých lir</displayName>
</currency>
<currency type="TTD">
<displayName>trinidadský dolar</displayName>
<displayName count="one">trinidadský dolar</displayName>
<displayName count="few">trinidadské dolary</displayName>
<displayName count="other">trinidadských dolarů</displayName>
</currency>
<currency type="TWD">
<displayName>tchajwanský nový dolar</displayName>
<displayName count="one">tchajwanský nový dolar</displayName>
<displayName count="few">tchajwanské nové dolary</displayName>
<displayName count="other">tchajwanských nových dolarů</displayName>
<symbol draft="contributed">NT$</symbol>
</currency>
<currency type="TZS">
<displayName>tanzanský šilink</displayName>
<displayName count="one">tanzanský šilink</displayName>
<displayName count="few">tanzanské šilinky</displayName>
<displayName count="other">tanzanských šilinků</displayName>
</currency>
<currency type="UAH">
<displayName>ukrajinská hřivna</displayName>
<displayName count="one">ukrajinská hřivna</displayName>
<displayName count="few">ukrajinské hřivny</displayName>
<displayName count="other">ukrajinských hřiven</displayName>
</currency>
<currency type="UAK">
<displayName>ukrajinský karbovanec</displayName>
<displayName count="one">ukrajinský karbovanec</displayName>
<displayName count="few">ukrajinské karbovance</displayName>
<displayName count="other">ukrajinských karbovanců</displayName>
</currency>
<currency type="UGS">
<displayName>ugandský šilink (1966-1987)</displayName>
<displayName count="one">ugandský šilink (1966-1987)</displayName>
<displayName count="few">ugandské šilinky (1966-1987)</displayName>
<displayName count="other">ugandských šilinků (1966-1987)</displayName>
</currency>
<currency type="UGX">
<displayName>ugandský šilink</displayName>
<displayName count="one">ugandský šilink</displayName>
<displayName count="few">ugandské šilinky</displayName>
<displayName count="other">ugandských šilinků</displayName>
</currency>
<currency type="USD">
<displayName>americký dolar</displayName>
<displayName count="one">americký dolar</displayName>
<displayName count="few">americké dolary</displayName>
<displayName count="other">amerických dolarů</displayName>
<symbol>US$</symbol>
</currency>
<currency type="USN">
<displayName>americký dolar (příští den)</displayName>
<displayName count="one">americké dolary (příští den)</displayName>
<displayName count="few">americké dolary (příští den)</displayName>
<displayName count="other">amerických dolarů (příští den)</displayName>
</currency>
<currency type="USS">
<displayName>americký dolar (týž den)</displayName>
<displayName count="one">americký dolar (týž den)</displayName>
<displayName count="few">americké dolary (týž den)</displayName>
<displayName count="other">amerických dolarů (týž den)</displayName>
</currency>
<currency type="UYP">
<displayName>uruguayské peso (1975-1993)</displayName>
<displayName count="one">uruguayské peso (1975-1993)</displayName>
<displayName count="few">uruguayská pesa (1975-1993)</displayName>
<displayName count="other">uruguayských pes (1975-1993)</displayName>
</currency>
<currency type="UYU">
<displayName>uruguayské peso</displayName>
<displayName count="one">uruguayské peso</displayName>
<displayName count="few">uruguayská pesa</displayName>
<displayName count="other">uruguayských pes</displayName>
</currency>
<currency type="UZS">
<displayName>uzbecký sum</displayName>
<displayName count="one">uzbecký sum</displayName>
<displayName count="few">uzbecké sumy</displayName>
<displayName count="other">uzbeckých sumů</displayName>
</currency>
<currency type="VEB">
<displayName>venezuelský bolívar (1871-2008)</displayName>
<displayName count="one">venezuelský bolívar (1871-2008)</displayName>
<displayName count="few">venezuelské bolívary (1871-2008)</displayName>
<displayName count="other">venezuelských bolívarů (1871-2008)</displayName>
</currency>
<currency type="VEF">
<displayName>venezuelský bolívar</displayName>
<displayName count="one">venezuelský bolívar</displayName>
<displayName count="few">venezuelské bolívary</displayName>
<displayName count="other">venezuelských bolívarů</displayName>
</currency>
<currency type="VND">
<displayName>vietnamský dong</displayName>
<displayName count="one">vietnamský dong</displayName>
<displayName count="few">vietnamské dongy</displayName>
<displayName count="other">vietnamských dongů</displayName>
<symbol draft="contributed">₫</symbol>
</currency>
<currency type="VNN">
<displayName>vietnamský dong (1978-1985)</displayName>
<displayName count="one">vietnamský dong (1978-1985)</displayName>
<displayName count="few">vietnamské dongy (1978-1985)</displayName>
<displayName count="other">vietnamských dongů (1978-1985)</displayName>
</currency>
<currency type="VUV">
<displayName>vanuatský vatu</displayName>
<displayName count="one">vanuatský vatu</displayName>
<displayName count="few">vanuatské vatu</displayName>
<displayName count="other">vanuatských vatu</displayName>
</currency>
<currency type="WST">
<displayName>samojská tala</displayName>
<displayName count="one">samojská tala</displayName>
<displayName count="few">samojské taly</displayName>
<displayName count="other">samojských tal</displayName>
</currency>
<currency type="XAF">
<displayName>CFA/BEAC frank</displayName>
<displayName count="one">CFA/BEAC frank</displayName>
<displayName count="few">CFA/BEAC franky</displayName>
<displayName count="other">CFA/BEAC franků</displayName>
<symbol draft="contributed">FCFA</symbol>
</currency>
<currency type="XAG">
<displayName>stříbro</displayName>
</currency>
<currency type="XAU">
<displayName>zlato</displayName>
</currency>
<currency type="XBA">
<displayName>evropská smíšená jednotka</displayName>
</currency>
<currency type="XBB">
<displayName>evropská peněžní jednotka</displayName>
<displayName count="one" draft="contributed">EMU</displayName>
<displayName count="few" draft="contributed">EMU</displayName>
<displayName count="other" draft="contributed">EMU</displayName>
</currency>
<currency type="XBC">
<displayName>evropská jednotka účtu 9 (XBC)</displayName>
</currency>
<currency type="XBD">
<displayName>evropská jednotka účtu 17 (XBD)</displayName>
</currency>
<currency type="XCD">
<displayName>východokaribský dolar</displayName>
<displayName count="one">východokaribský dolar</displayName>
<displayName count="few">východokaribské dolary</displayName>
<displayName count="other">východokaribských dolarů</displayName>
<symbol>EC$</symbol>
</currency>
<currency type="XDR">
<displayName>SDR</displayName>
</currency>
<currency type="XEU">
<displayName>evropská měnová jednotka</displayName>
<displayName count="one" draft="contributed">ECU</displayName>
<displayName count="few" draft="contributed">ECU</displayName>
<displayName count="other" draft="contributed">ECU</displayName>
</currency>
<currency type="XFO">
<displayName>francouzský zlatý frank</displayName>
<displayName count="one">francouzský zlatý frank</displayName>
<displayName count="few">francouzské zlaté franky</displayName>
<displayName count="other">francouzských zlatých franků</displayName>
</currency>
<currency type="XFU">
<displayName>francouzský UIC frank</displayName>
<displayName count="one">francouzský UIC frank</displayName>
<displayName count="few">francouzské UIC franky</displayName>
<displayName count="other">francouzských UIC franků</displayName>
</currency>
<currency type="XOF">
<displayName>CFA/BCEAO frank</displayName>
<displayName count="one">CFA/BCEAO frank</displayName>
<displayName count="few">CFA/BCEAO franky</displayName>
<displayName count="other">CFA/BCEAO franků</displayName>
<symbol draft="contributed">CFA</symbol>
</currency>
<currency type="XPD">
<displayName draft="provisional">Paladium</displayName>
</currency>
<currency type="XPF">
<displayName>CFP frank</displayName>
<displayName count="one">CFP frank</displayName>
<displayName count="few">CFP franky</displayName>
<displayName count="other">CFP franků</displayName>
<symbol draft="contributed">CFPF</symbol>
</currency>
<currency type="XPT">
<displayName>platina</displayName>
</currency>
<currency type="XRE">
<displayName draft="contributed">kód fondů RINET</displayName>
</currency>
<currency type="XTS">
<displayName>kód zvlášť vyhrazený pro testovací účely</displayName>
<displayName count="one">kód zvlášť vyhrazený pro testovací účely</displayName>
<displayName count="few">kódy zvlášť vyhrazené pro testovací účely</displayName>
<displayName count="other">kódů zvlášť vyhrazených pro testovací účely</displayName>
</currency>
<currency type="XXX">
<displayName>neznámá měna</displayName>
<displayName count="one">neznámá měna</displayName>
<displayName count="few">neznámá měna</displayName>
<displayName count="other">neznámá měna</displayName>
</currency>
<currency type="YDD">
<displayName>jemenský dinár</displayName>
<displayName count="one">jemenský dinár</displayName>
<displayName count="few">jemenské dináry</displayName>
<displayName count="other">jemenských dinárů</displayName>
</currency>
<currency type="YER">
<displayName>jemenský rijál</displayName>
<displayName count="one">jemenský rijál</displayName>
<displayName count="few">jemenské rijály</displayName>
<displayName count="other">jemenských rijálů</displayName>
</currency>
<currency type="YUD">
<displayName>jugoslávský dinár (1966-1990)</displayName>
<displayName count="one">jugoslávský dinár (1966-1990)</displayName>
<displayName count="few">jugoslávské dináry (1966-1990)</displayName>
<displayName count="other">jugoslávských dinárů (1966-1990)</displayName>
</currency>
<currency type="YUM">
<displayName>jugoslávský nový dinár (1994-2002)</displayName>
<displayName count="one">jugoslávský nový dinár (1994-2002)</displayName>
<displayName count="few">jugoslávské nové dináry (1994-2002)</displayName>
<displayName count="other">jugoslávských nových dinárů (1994-2002)</displayName>
</currency>
<currency type="YUN">
<displayName>jugoslávský konvertibilní dinár (1990-1992)</displayName>
<displayName count="one">jugoslávský konvertibilní dinár (1990-1992)</displayName>
<displayName count="few">jugoslávské konvertibilní dináry (1990-1992)</displayName>
<displayName count="other">jugoslávských konvertibilních dinárů (1990-1992)</displayName>
</currency>
<currency type="ZAL">
<displayName>jihoafrický finanční rand</displayName>
<displayName count="one">jihoafrický finanční rand</displayName>
<displayName count="few">jihoafrické finanční randy</displayName>
<displayName count="other">jihoafrických finančních randů</displayName>
</currency>
<currency type="ZAR">
<displayName>jihoafrický rand</displayName>
<displayName count="one">jihoafrický rand</displayName>
<displayName count="few">jihoafrické randy</displayName>
<displayName count="other">jihoafrických randů</displayName>
</currency>
<currency type="ZMK">
<displayName>zambijská kwacha (1968-2012)</displayName>
<displayName count="one">zambijská kwacha (1968-2012)</displayName>
<displayName count="few">zambijské kwachy (1968-2012)</displayName>
<displayName count="other">zambijských kwach (1968-2012)</displayName>
</currency>
<currency type="ZMW">
<displayName>zambijská kwacha</displayName>
<displayName count="one">zambijská kwacha</displayName>
<displayName count="few">zambijské kwachy</displayName>
<displayName count="other">zambijských kwach</displayName>
</currency>
<currency type="ZRN">
<displayName>zairský nový zaire (1993-1998)</displayName>
<displayName count="one">zairský nový zaire (1993-1998)</displayName>
<displayName count="few">zairské nové zairy (1993-1998)</displayName>
<displayName count="other">zairských nových zairů (1993-1998)</displayName>
</currency>
<currency type="ZRZ">
<displayName>zairský zaire (1971-1993)</displayName>
<displayName count="one">zairský zaire (1971-1993)</displayName>
<displayName count="few">zairské zairy (1971-1993)</displayName>
<displayName count="other">zairských zairů (1971-1993)</displayName>
</currency>
<currency type="ZWD">
<displayName>zimbabwský dolar (1980-2008)</displayName>
<displayName count="one">zimbabwský dolar (1980-2008)</displayName>
<displayName count="few">zimbabwské dolary (1980-2008)</displayName>
<displayName count="other">zimbabwských dolarů (1980-2008)</displayName>
</currency>
<currency type="ZWL">
<displayName>zimbabwský dolar (2009)</displayName>
<displayName count="one">zimbabwský dolar (2009)</displayName>
<displayName count="few">zimbabwské dolary (2009)</displayName>
<displayName count="other">zimbabwských dolarů (2009)</displayName>
</currency>
<currency type="ZWR">
<displayName>zimbabwský dolar (2008)</displayName>
<displayName count="one">zimbabwský dolar (2008)</displayName>
<displayName count="few">zimbabwské dolary (2008)</displayName>
<displayName count="other">zimbabwských dolarů (2008)</displayName>
</currency>
</currencies>
</numbers>
<units>
<unit type="day">
<unitPattern count="one">{0} den</unitPattern>
<unitPattern count="one" alt="short">{0} den</unitPattern>
<unitPattern count="few">{0} dny</unitPattern>
<unitPattern count="few" alt="short">{0} dny</unitPattern>
<unitPattern count="other">{0} dní</unitPattern>
<unitPattern count="other" alt="short">{0} dní</unitPattern>
</unit>
<unit type="day-future">
<unitPattern count="one" draft="contributed">za {0} den</unitPattern>
<unitPattern count="few" draft="contributed">za {0} dny</unitPattern>
<unitPattern count="other" draft="contributed">za {0} dní</unitPattern>
</unit>
<unit type="day-past">
<unitPattern count="one" draft="contributed">před {0} dnem</unitPattern>
<unitPattern count="few" draft="contributed">před {0} dny</unitPattern>
<unitPattern count="other" draft="contributed">před {0} dny</unitPattern>
</unit>
<unit type="hour">
<unitPattern count="one">{0} hodina</unitPattern>
<unitPattern count="one" alt="short">{0} hod.</unitPattern>
<unitPattern count="few">{0} hodiny</unitPattern>
<unitPattern count="few" alt="short">{0} hod.</unitPattern>
<unitPattern count="other">{0} hodin</unitPattern>
<unitPattern count="other" alt="short">{0} hod.</unitPattern>
</unit>
<unit type="hour-future">
<unitPattern count="one" draft="contributed">za {0} hodinu</unitPattern>
<unitPattern count="few" draft="contributed">za {0} hodiny</unitPattern>
<unitPattern count="other" draft="contributed">za {0} hodin</unitPattern>
</unit>
<unit type="hour-past">
<unitPattern count="one" draft="contributed">před {0} hodinou</unitPattern>
<unitPattern count="few" draft="contributed">před {0} hodinami</unitPattern>
<unitPattern count="other" draft="contributed">před {0} hodinami</unitPattern>
</unit>
<unit type="minute">
<unitPattern count="one">{0} minuta</unitPattern>
<unitPattern count="one" alt="short">{0} min.</unitPattern>
<unitPattern count="few">{0} minuty</unitPattern>
<unitPattern count="few" alt="short">{0} min.</unitPattern>
<unitPattern count="other">{0} minut</unitPattern>
<unitPattern count="other" alt="short">{0} min.</unitPattern>
</unit>
<unit type="minute-future">
<unitPattern count="one" draft="contributed">za {0} minutu</unitPattern>
<unitPattern count="few" draft="contributed">za {0} minuty</unitPattern>
<unitPattern count="other" draft="contributed">za {0} minut</unitPattern>
</unit>
<unit type="minute-past">
<unitPattern count="one" draft="contributed">před {0} minutou</unitPattern>
<unitPattern count="few" draft="contributed">před {0} minutami</unitPattern>
<unitPattern count="other" draft="contributed">před {0} minutami</unitPattern>
</unit>
<unit type="month">
<unitPattern count="one">{0} měsíc</unitPattern>
<unitPattern count="one" alt="short">{0} měs.</unitPattern>
<unitPattern count="few">{0} měsíce</unitPattern>
<unitPattern count="few" alt="short">{0} měs.</unitPattern>
<unitPattern count="other">{0} měsíců</unitPattern>
<unitPattern count="other" alt="short">{0} měs.</unitPattern>
</unit>
<unit type="month-future">
<unitPattern count="one" draft="contributed">za {0} měsíc</unitPattern>
<unitPattern count="few" draft="contributed">za {0} měsíce</unitPattern>
<unitPattern count="other" draft="contributed">za {0} měsíců</unitPattern>
</unit>
<unit type="month-past">
<unitPattern count="one" draft="contributed">před {0} měsícem</unitPattern>
<unitPattern count="few" draft="contributed">před {0} měsíci</unitPattern>
<unitPattern count="other" draft="contributed">před {0} měsíci</unitPattern>
</unit>
<unit type="second">
<unitPattern count="one">{0} sekunda</unitPattern>
<unitPattern count="one" alt="short">{0} sek.</unitPattern>
<unitPattern count="few">{0} sekundy</unitPattern>
<unitPattern count="few" alt="short">{0} sek.</unitPattern>
<unitPattern count="other">{0} sekund</unitPattern>
<unitPattern count="other" alt="short">{0} sek.</unitPattern>
</unit>
<unit type="second-future">
<unitPattern count="one" draft="contributed">za {0} sekundu</unitPattern>
<unitPattern count="few" draft="contributed">za {0} sekundy</unitPattern>
<unitPattern count="other" draft="contributed">za {0} sekund</unitPattern>
</unit>
<unit type="second-past">
<unitPattern count="one" draft="contributed">před {0} sekundou</unitPattern>
<unitPattern count="few" draft="contributed">před {0} sekundami</unitPattern>
<unitPattern count="other" draft="contributed">před {0} sekundami</unitPattern>
</unit>
<unit type="week">
<unitPattern count="one">{0} týden</unitPattern>
<unitPattern count="one" alt="short">{0} týd.</unitPattern>
<unitPattern count="few">{0} týdny</unitPattern>
<unitPattern count="few" alt="short">{0} týd.</unitPattern>
<unitPattern count="other">{0} týdnů</unitPattern>
<unitPattern count="other" alt="short">{0} týd.</unitPattern>
</unit>
<unit type="week-future">
<unitPattern count="one" draft="contributed">za {0} týden</unitPattern>
<unitPattern count="few" draft="contributed">za {0} týdny</unitPattern>
<unitPattern count="other" draft="contributed">za {0} týdnů</unitPattern>
</unit>
<unit type="week-past">
<unitPattern count="one" draft="contributed">před {0} týdnem</unitPattern>
<unitPattern count="few" draft="contributed">před {0} týdny</unitPattern>
<unitPattern count="other" draft="contributed">před {0} týdny</unitPattern>
</unit>
<unit type="year">
<unitPattern count="one">{0} rok</unitPattern>
<unitPattern count="one" alt="short">{0} rok</unitPattern>
<unitPattern count="few">{0} roky</unitPattern>
<unitPattern count="few" alt="short">{0} roky</unitPattern>
<unitPattern count="other">{0} let</unitPattern>
<unitPattern count="other" alt="short">{0} let</unitPattern>
</unit>
<unit type="year-future">
<unitPattern count="one" draft="contributed">za {0} rok</unitPattern>
<unitPattern count="few" draft="contributed">za {0} roky</unitPattern>
<unitPattern count="other" draft="contributed">za {0} let</unitPattern>
</unit>
<unit type="year-past">
<unitPattern count="one" draft="contributed">před {0} rokem</unitPattern>
<unitPattern count="few" draft="contributed">před {0} lety</unitPattern>
<unitPattern count="other" draft="contributed">před {0} lety</unitPattern>
</unit>
</units>
<listPatterns>
<listPattern>
<listPatternPart type="2" draft="contributed">{0} a {1}</listPatternPart>
<listPatternPart type="end" draft="contributed">{0} a {1}</listPatternPart>
<listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
<listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
</listPattern>
</listPatterns>
<posix>
<messages>
<yesstr>ano:a</yesstr>
<nostr>ne:n</nostr>
</messages>
</posix>
</ldml>
|