it.xml
102 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<ldml>
<identity>
<version number="$Revision: 1.124 $"/>
<generation date="$Date: 2009/06/15 20:34:50 $"/>
<language type="it"/>
</identity>
<localeDisplayNames>
<localeDisplayPattern>
<localePattern>{0} ({1})</localePattern>
<localeSeparator>, </localeSeparator>
</localeDisplayPattern>
<languages>
<language type="aa">afar</language>
<language type="ab">abkhazian</language>
<language type="ace">accinese</language>
<language type="ach">acioli</language>
<language type="ada">adangme</language>
<language type="ady">adyghe</language>
<language type="ae">avestan</language>
<language type="af">afrikaans</language>
<language type="afa">lingua afroasiatica</language>
<language type="afh">afrihili</language>
<language type="ain">ainu</language>
<language type="ak">akan</language>
<language type="akk">accado</language>
<language type="ale">aleuto</language>
<language type="alg">lingue algonchine</language>
<language type="alt">altai meridionale</language>
<language type="am">amarico</language>
<language type="an">aragonese</language>
<language type="ang">inglese antico</language>
<language type="anp">angika</language>
<language type="apa">lingue apache</language>
<language type="ar">arabo</language>
<language type="arc">aramaico</language>
<language type="arn">araucano</language>
<language type="arp">arapaho</language>
<language type="art">lingua artificiale</language>
<language type="arw">aruaco</language>
<language type="as">assamese</language>
<language type="ast">asturiano</language>
<language type="ath">lingue athabaska</language>
<language type="aus">lingue australiane</language>
<language type="av">avaro</language>
<language type="awa">awadhi</language>
<language type="ay">aymara</language>
<language type="az">azerbaigiano</language>
<language type="ba">baschiro</language>
<language type="bad">banda</language>
<language type="bai">lingue bamileke</language>
<language type="bal">beluci</language>
<language type="ban">balinese</language>
<language type="bas">basa</language>
<language type="bat">lingua baltica</language>
<language type="be">bielorusso</language>
<language type="bej">begia</language>
<language type="bem">wemba</language>
<language type="ber">berbero</language>
<language type="bg">bulgaro</language>
<language type="bh">bihari</language>
<language type="bho">bhojpuri</language>
<language type="bi">bislama</language>
<language type="bik">bicol</language>
<language type="bin">bini</language>
<language type="bla">siksika</language>
<language type="bm">bambara</language>
<language type="bn">bengalese</language>
<language type="bnt">bantu</language>
<language type="bo">tibetano</language>
<language type="br">bretone</language>
<language type="bra">braj</language>
<language type="bs">bosniaco</language>
<language type="btk">batak</language>
<language type="bua">buriat</language>
<language type="bug">bugi</language>
<language type="byn">blin</language>
<language type="ca">catalano</language>
<language type="cad">caddo</language>
<language type="cai">lingua indiana dell'America Centrale</language>
<language type="car">caribico</language>
<language type="cau">lingua caucasica</language>
<language type="cch">atsam</language>
<language type="ce">ceceno</language>
<language type="ceb">cebuano</language>
<language type="cel">celtica altra lingua</language>
<language type="ch">chamorro</language>
<language type="chb">chibcha</language>
<language type="chg">ciagataico</language>
<language type="chk">chuukese</language>
<language type="chm">mari</language>
<language type="chn">gergo chinook</language>
<language type="cho">choctaw</language>
<language type="chp">chipewyan</language>
<language type="chr">cherokee</language>
<language type="chy">cheyenne</language>
<language type="cmc">lingue chamic</language>
<language type="co">corso</language>
<language type="cop">copto</language>
<language type="cpe">creolo o pidgin basati sull'inglese</language>
<language type="cpf">creolo o pidgin basati sul francese</language>
<language type="cpp">creolo o pidgin basati sul portoghese</language>
<language type="cr">cree</language>
<language type="crh">turco crimeo</language>
<language type="crp">creolo o pidgin</language>
<language type="cs">ceco</language>
<language type="csb">kashubian</language>
<language type="cu">slavo della Chiesa</language>
<language type="cus">lingua cuscitica</language>
<language type="cv">chuvash</language>
<language type="cy">gallese</language>
<language type="da">danese</language>
<language type="dak">dakota</language>
<language type="dar">dargwa</language>
<language type="day">dayak</language>
<language type="de">tedesco</language>
<language type="de_AT">tedesco austriaco</language>
<language type="de_CH">alto tedesco svizzero</language>
<language type="del">delaware</language>
<language type="den">slave</language>
<language type="dgr">dogrib</language>
<language type="din">dinca</language>
<language type="doi">dogri</language>
<language type="dra">lingua dravidica</language>
<language type="dsb">basso sorabo</language>
<language type="dua">duala</language>
<language type="dum">olandese medio</language>
<language type="dv">divehi</language>
<language type="dyu">diula</language>
<language type="dz">dzongkha</language>
<language type="ee">ewe</language>
<language type="efi">efik</language>
<language type="egy">egiziano antico</language>
<language type="eka">ekajuka</language>
<language type="el">greco</language>
<language type="elx">elamitico</language>
<language type="en">inglese</language>
<language type="en_AU">inglese australiano</language>
<language type="en_CA">inglese canadese</language>
<language type="en_GB">inglese britannico</language>
<language type="en_US">inglese americano</language>
<language type="enm">inglese medio</language>
<language type="eo">esperanto</language>
<language type="es">spagnolo</language>
<language type="es_419">spagnolo latinoamericano</language>
<language type="es_ES">spagnolo della Spagna</language>
<language type="et">estone</language>
<language type="eu">basco</language>
<language type="ewo">ewondo</language>
<language type="fa">persiano</language>
<language type="fan">fang</language>
<language type="fat">fanti</language>
<language type="ff">fulah</language>
<language type="fi">finlandese</language>
<language type="fil">filippino</language>
<language type="fiu">lingua ungrofinnica</language>
<language type="fj">figiano</language>
<language type="fo">faroese</language>
<language type="fr">francese</language>
<language type="fr_CA">francese canadese</language>
<language type="fr_CH">francese svizzero</language>
<language type="frm">francese medio</language>
<language type="fro">francese antico</language>
<language type="frr">frisone settentrionale</language>
<language type="fur">friulano</language>
<language type="fy">frisone</language>
<language type="ga">irlandese</language>
<language type="gaa">ga</language>
<language type="gay">gayo</language>
<language type="gba">gbaya</language>
<language type="gd">gaelico scozzese</language>
<language type="gem">lingua germanica</language>
<language type="gez">geez</language>
<language type="gil">gilbertese</language>
<language type="gl">galiziano</language>
<language type="gmh">tedesco medio alto</language>
<language type="gn">guarana</language>
<language type="goh">tedesco antico alto</language>
<language type="gon">gondi</language>
<language type="gor">gorontalo</language>
<language type="got">gotico</language>
<language type="grb">gerbo</language>
<language type="grc">greco antico</language>
<language type="gsw">tedesco svizzero</language>
<language type="gu">gujarati</language>
<language type="gv">manx</language>
<language type="gwi">gwichʼin</language>
<language type="ha">haussa</language>
<language type="hai">haida</language>
<language type="haw">hawaiano</language>
<language type="he">ebraico</language>
<language type="hi">hindi</language>
<language type="hil">hiligayna</language>
<language type="him">himachali</language>
<language type="hit">hittite</language>
<language type="hmn">hmong</language>
<language type="ho">hiri motu</language>
<language type="hr">croato</language>
<language type="hsb">alto sorabo</language>
<language type="ht">haitiano</language>
<language type="hu">ungherese</language>
<language type="hup">hupa</language>
<language type="hy">armeno</language>
<language type="hz">herero</language>
<language type="ia">interlingua</language>
<language type="iba">iban</language>
<language type="id">indonesiano</language>
<language type="ie">interlingue</language>
<language type="ig">igbo</language>
<language type="ii">sichuan yi</language>
<language type="ik">inupiak</language>
<language type="ilo">ilocano</language>
<language type="inc">lingua indiana</language>
<language type="ine">lingua indoeuropea</language>
<language type="inh">ingush</language>
<language type="io">ido</language>
<language type="ira">iraniana</language>
<language type="iro">lingue irochesi</language>
<language type="is">islandese</language>
<language type="it">italiano</language>
<language type="iu">inuktitut</language>
<language type="ja">giapponese</language>
<language type="jbo">lojban</language>
<language type="jpr">giudeo persiano</language>
<language type="jrb">giudeo arabo</language>
<language type="jv">giavanese</language>
<language type="ka">georgiano</language>
<language type="kaa">kara-kalpak</language>
<language type="kab">kabyle</language>
<language type="kac">kachin</language>
<language type="kaj">kai</language>
<language type="kam">kamba</language>
<language type="kar">karen</language>
<language type="kaw">kawi</language>
<language type="kbd">kabardia</language>
<language type="kcg">tyap</language>
<language type="kfo">kfo</language>
<language type="kg">kongo</language>
<language type="kha">khasi</language>
<language type="khi">lingua khoisan</language>
<language type="kho">khotanese</language>
<language type="ki">kikuyu</language>
<language type="kj">kuanyama</language>
<language type="kk">kazako</language>
<language type="kl">kalaallisut</language>
<language type="km">khmer</language>
<language type="kmb">kimbundu</language>
<language type="kn">kannada</language>
<language type="ko">coreano</language>
<language type="kok">konkani</language>
<language type="kos">kosraean</language>
<language type="kpe">kpelle</language>
<language type="kr">kanuri</language>
<language type="krc">karachay-Balkar</language>
<language type="krl">careliano</language>
<language type="kro">kru</language>
<language type="kru">kurukh</language>
<language type="ks">kashmiri</language>
<language type="ku">curdo</language>
<language type="kum">kumyk</language>
<language type="kut">kutenai</language>
<language type="kv">komi</language>
<language type="kw">cornico</language>
<language type="ky">kirghiso</language>
<language type="la">latino</language>
<language type="lad">ladino</language>
<language type="lah">lahnda</language>
<language type="lam">lamba</language>
<language type="lb">lussemburghese</language>
<language type="lez">lezghian</language>
<language type="lg">ganda</language>
<language type="li">limburgese</language>
<language type="ln">lingala</language>
<language type="lo">lao</language>
<language type="lol">lolo bantu</language>
<language type="loz">lozi</language>
<language type="lt">lituano</language>
<language type="lu">luba-katanga</language>
<language type="lua">luba-lulua</language>
<language type="lui">luiseno</language>
<language type="lun">lunda</language>
<language type="luo">luo</language>
<language type="lus">lushai</language>
<language type="lv">lettone</language>
<language type="mad">madurese</language>
<language type="mag">magahi</language>
<language type="mai">maithili</language>
<language type="mak">makasar</language>
<language type="man">mandingo</language>
<language type="map">austronesiano</language>
<language type="mas">masai</language>
<language type="mdf">moksha</language>
<language type="mdr">mandar</language>
<language type="men">mende</language>
<language type="mg">malgascio</language>
<language type="mga">irlandese medio</language>
<language type="mh">marshallese</language>
<language type="mi">maori</language>
<language type="mic">micmac</language>
<language type="min">menangkabau</language>
<language type="mis">lingue diverse</language>
<language type="mk">macedone</language>
<language type="mkh">lingua mon-khmer</language>
<language type="ml">malayalam</language>
<language type="mn">mongolo</language>
<language type="mnc">manchu</language>
<language type="mni">manipuri</language>
<language type="mno">manobo</language>
<language type="mo">moldavo</language>
<language type="moh">mohawk</language>
<language type="mos">mossi</language>
<language type="mr">marathi</language>
<language type="ms">malese</language>
<language type="mt">maltese</language>
<language type="mul">multilingua</language>
<language type="mun">lingua munda</language>
<language type="mus">creek</language>
<language type="mwl">mirandese</language>
<language type="mwr">marwari</language>
<language type="my">birmano</language>
<language type="myn">lingue maya</language>
<language type="myv">erzya</language>
<language type="na">nauru</language>
<language type="nah">nahuatl</language>
<language type="nai">lingua indiana del Nord America</language>
<language type="nap">napoletano</language>
<language type="nb">norvegese bokmal</language>
<language type="nd">ndebele del nord</language>
<language type="nds">basso tedesco</language>
<language type="ne">nepalese</language>
<language type="new">newari</language>
<language type="ng">ndonga</language>
<language type="nia">nias</language>
<language type="nic">lingua niger-cordofan</language>
<language type="niu">niue</language>
<language type="nl">olandese</language>
<language type="nl_BE">fiammingo belga</language>
<language type="nn">norvegese nynorsk</language>
<language type="no">norvegese</language>
<language type="nog">nogai</language>
<language type="non">norse antico</language>
<language type="nqo">n'ko</language>
<language type="nr">ndebele del sud</language>
<language type="nso">sotho del nord</language>
<language type="nub">nubiano</language>
<language type="nv">navajo</language>
<language type="nwc">newari classico</language>
<language type="ny">nyanja</language>
<language type="nym">nyamwezi</language>
<language type="nyn">nyankole</language>
<language type="nyo">nyoro</language>
<language type="nzi">nzima</language>
<language type="oc">occitano</language>
<language type="oj">ojibwa</language>
<language type="om">oromo</language>
<language type="or">oriya</language>
<language type="os">ossetico</language>
<language type="osa">osage</language>
<language type="ota">turco ottomano</language>
<language type="oto">lingue otomi</language>
<language type="pa">punjabi</language>
<language type="paa">lingua papuana</language>
<language type="pag">pangasinan</language>
<language type="pal">pahlavi</language>
<language type="pam">pampanga</language>
<language type="pap">papiamento</language>
<language type="pau">palau</language>
<language type="peo">persiano antico</language>
<language type="phi">lingua filippina</language>
<language type="phn">fenicio</language>
<language type="pi">pali</language>
<language type="pl">polacco</language>
<language type="pon">ponape</language>
<language type="pra">pracrito</language>
<language type="pro">provenzale antico</language>
<language type="ps">pashto</language>
<language type="pt">portoghese</language>
<language type="pt_BR">portoghese brasiliano</language>
<language type="pt_PT">portoghese del Portogallo</language>
<language type="qu">quechua</language>
<language type="raj">rajasthani</language>
<language type="rap">rapanui</language>
<language type="rar">rarotonga</language>
<language type="rm">lingua rhaeto-romance</language>
<language type="rn">rundi</language>
<language type="ro">rumeno</language>
<language type="roa">lingua romanza</language>
<language type="rom">romani</language>
<language type="root">root</language>
<language type="ru">russo</language>
<language type="rup">arumeno</language>
<language type="rw">kinyarwanda</language>
<language type="sa">sanscrito</language>
<language type="sad">sandawe</language>
<language type="sah">yakut</language>
<language type="sai">lingua indiana del Sud America</language>
<language type="sal">lingue salish</language>
<language type="sam">aramaico samaritano</language>
<language type="sas">sasak</language>
<language type="sat">santali</language>
<language type="sc">sardo</language>
<language type="scn">siciliano</language>
<language type="sco">scozzese</language>
<language type="sd">sindhi</language>
<language type="se">sami del nord</language>
<language type="sel">selkup</language>
<language type="sem">lingua semitica</language>
<language type="sg">sango</language>
<language type="sga">irlandese antico</language>
<language type="sgn">lingue sign</language>
<language type="sh">serbo-croato</language>
<language type="shn">shan</language>
<language type="si">singalese</language>
<language type="sid">sidamo</language>
<language type="sio">lingue sioux</language>
<language type="sit">lingua sino-tibetana</language>
<language type="sk">slovacco</language>
<language type="sl">sloveno</language>
<language type="sla">lingua slava</language>
<language type="sm">samoano</language>
<language type="sma">sami del sud</language>
<language type="smi">lingua sami</language>
<language type="smj">sami lule</language>
<language type="smn">sami inari</language>
<language type="sms">sami skolt</language>
<language type="sn">shona</language>
<language type="snk">soninke</language>
<language type="so">somalo</language>
<language type="sog">sogdiano</language>
<language type="son">songhai</language>
<language type="sq">albanese</language>
<language type="sr">serbo</language>
<language type="srn">sranan tongo</language>
<language type="srr">serer</language>
<language type="ss">swati</language>
<language type="ssa">lingua nilo-sahariana</language>
<language type="st">sotho del sud</language>
<language type="su">sundanese</language>
<language type="suk">sukuma</language>
<language type="sus">susu</language>
<language type="sux">sumero</language>
<language type="sv">svedese</language>
<language type="sw">swahili</language>
<language type="syr">siriaco</language>
<language type="ta">tamil</language>
<language type="tai">lingua tailandese</language>
<language type="te">telugu</language>
<language type="tem">temne</language>
<language type="ter">tereno</language>
<language type="tet">tetum</language>
<language type="tg">tagicco</language>
<language type="th">thai</language>
<language type="ti">tigrinya</language>
<language type="tig">tigre</language>
<language type="tiv">tiv</language>
<language type="tk">turcomanno</language>
<language type="tkl">tokelau</language>
<language type="tl">tagalog</language>
<language type="tlh">klingon</language>
<language type="tli">tlingit</language>
<language type="tmh">tamashek</language>
<language type="tn">tswana</language>
<language type="to">tonga</language>
<language type="tog">nyasa del Tonga</language>
<language type="tpi">tok pisin</language>
<language type="tr">turco</language>
<language type="ts">tsonga</language>
<language type="tsi">tsimshian</language>
<language type="tt">tatarico</language>
<language type="tum">tumbuka</language>
<language type="tup">lingue tupi</language>
<language type="tut">lingua altaica</language>
<language type="tvl">tuvalu</language>
<language type="tw">ci</language>
<language type="ty">taitiano</language>
<language type="tyv">tuvinian</language>
<language type="udm">udmurt</language>
<language type="ug">uigurico</language>
<language type="uga">ugaritico</language>
<language type="uk">ucraino</language>
<language type="umb">mbundu</language>
<language type="und">lingua imprecisata</language>
<language type="ur">urdu</language>
<language type="uz">usbeco</language>
<language type="vai">vai</language>
<language type="ve">venda</language>
<language type="vi">vietnamita</language>
<language type="vo">volapük</language>
<language type="vot">voto</language>
<language type="wa">vallone</language>
<language type="wak">lingue wakash</language>
<language type="wal">walamo</language>
<language type="war">waray</language>
<language type="was">washo</language>
<language type="wen">sorabo</language>
<language type="wo">volof</language>
<language type="xal">kalmyk</language>
<language type="xh">xosa</language>
<language type="yao">yao (bantu)</language>
<language type="yap">yapese</language>
<language type="yi">yiddish</language>
<language type="yo">yoruba</language>
<language type="ypk">lingue yupik</language>
<language type="za">zhuang</language>
<language type="zap">zapotec</language>
<language type="zen">zenaga</language>
<language type="zh">cinese</language>
<language type="zh_Hans">cinese semplificato</language>
<language type="zh_Hant">cinese tradizionale</language>
<language type="znd">zande</language>
<language type="zu">zulu</language>
<language type="zun">zuni</language>
<language type="zxx">Nessun contenuto linguistico</language>
<language type="zza">zaza</language>
</languages>
<scripts>
<script type="Arab">arabo</script>
<script type="Armn">armeno</script>
<script type="Bali">balinese</script>
<script type="Batk">batak</script>
<script type="Beng">bengali</script>
<script type="Blis">simboli bliss</script>
<script type="Bopo">bopomofo</script>
<script type="Brah">brahmi</script>
<script type="Brai">braille</script>
<script type="Bugi">buginese</script>
<script type="Buhd">buhid</script>
<script type="Cans">simboli aborigeni canadesi unificati</script>
<script type="Cari">carian</script>
<script type="Cham">cham</script>
<script type="Cher">cherokee</script>
<script type="Cirt">cirth</script>
<script type="Copt">copto</script>
<script type="Cprt">cipriota</script>
<script type="Cyrl">cirillico</script>
<script type="Cyrs">cirillico antica chiesa slavonica</script>
<script type="Deva">devanagari</script>
<script type="Dsrt">deseret</script>
<script type="Egyd">egiziano demotico</script>
<script type="Egyh">ieratico egiziano</script>
<script type="Egyp">geroglifici egiziani</script>
<script type="Ethi">etiope</script>
<script type="Geok">kutsuri</script>
<script type="Geor">georgiano</script>
<script type="Glag">glagolitico</script>
<script type="Goth">gotico</script>
<script type="Grek">greco</script>
<script type="Gujr">gujarati</script>
<script type="Guru">gurmukhi</script>
<script type="Hang">hangul</script>
<script type="Hani">han</script>
<script type="Hano">hanunoo</script>
<script type="Hans">han semplificato</script>
<script type="Hant">han tradizionale</script>
<script type="Hebr">ebraico</script>
<script type="Hira">hiragana</script>
<script type="Hmng">pahawn hmong</script>
<script type="Hrkt">katanaka o hiragana</script>
<script type="Hung">antico ungherese</script>
<script type="Inds">indu</script>
<script type="Ital">italico antico</script>
<script type="Java">javanese</script>
<script type="Jpan">giapponese</script>
<script type="Kali">kayah li</script>
<script type="Kana">katakana</script>
<script type="Khar">kharoshthi</script>
<script type="Khmr">khmer</script>
<script type="Knda">kannada</script>
<script type="Lana">lanna</script>
<script type="Laoo">lao</script>
<script type="Latf">variante fraktur del latino</script>
<script type="Latg">variante gaelica del latino</script>
<script type="Latn">latino</script>
<script type="Lepc">lepcha</script>
<script type="Limb">limbu</script>
<script type="Lina">lineare A</script>
<script type="Linb">lineare B</script>
<script type="Lyci">lyci</script>
<script type="Lydi">lydi</script>
<script type="Mand">mandaico</script>
<script type="Maya">geroglifici maya</script>
<script type="Mero">meroitico</script>
<script type="Mlym">malayalam</script>
<script type="Mong">mongolo</script>
<script type="Moon">Moon</script>
<script type="Mtei">meetei mayek</script>
<script type="Mymr">myanmar</script>
<script type="Nkoo">n'ko</script>
<script type="Ogam">ogham</script>
<script type="Olck">ol chiki</script>
<script type="Orkh">orkhon</script>
<script type="Orya">oriya</script>
<script type="Osma">osmanya</script>
<script type="Perm">permico antico</script>
<script type="Phag">phags-pa</script>
<script type="Phnx">fenicio</script>
<script type="Plrd">fonetica di pollard</script>
<script type="Qaai">ereditato</script>
<script type="Rjng">rejang</script>
<script type="Roro">rongorongo</script>
<script type="Runr">runico</script>
<script type="Sara">sarati</script>
<script type="Saur">saurashtra</script>
<script type="Sgnw">linguaggio dei segni</script>
<script type="Shaw">shaviano</script>
<script type="Sinh">singalese</script>
<script type="Sund">sundanese</script>
<script type="Sylo">syloti nagri</script>
<script type="Syrc">siriano</script>
<script type="Syre">siriaco estrangelo</script>
<script type="Syrj">siriaco occidentale</script>
<script type="Syrn">siriaco orientale</script>
<script type="Tagb">tagbanwa</script>
<script type="Tale">tai le</script>
<script type="Talu">tai lue</script>
<script type="Taml">tamil</script>
<script type="Telu">telugu</script>
<script type="Teng">tengwar</script>
<script type="Tfng">tifinagh</script>
<script type="Tglg">tagalog</script>
<script type="Thaa">thaana</script>
<script type="Thai">tailandese</script>
<script type="Tibt">tibetano</script>
<script type="Ugar">ugarita</script>
<script type="Vaii">vaii</script>
<script type="Visp">alfabeto visivo</script>
<script type="Xpeo">persiano antico</script>
<script type="Xsux">sumero-accadiano cuneiforme</script>
<script type="Yiii">yi</script>
<script type="Zxxx">non scritto</script>
<script type="Zyyy">comune</script>
<script type="Zzzz">ignoto o non valido</script>
</scripts>
<territories>
<territory type="001">Mondo</territory>
<territory type="002">Africa</territory>
<territory type="003">Nord America</territory>
<territory type="005">America del Sud</territory>
<territory type="009">Oceania</territory>
<territory type="011">Africa occidentale</territory>
<territory type="013">America centrale</territory>
<territory type="014">Africa orientale</territory>
<territory type="015">Africa del Nord</territory>
<territory type="017">Africa centrale</territory>
<territory type="018">Africa del Sud</territory>
<territory type="019">Americhe</territory>
<territory type="021">America del Nord</territory>
<territory type="029">Caraibi</territory>
<territory type="030">Asia orientale</territory>
<territory type="034">Asia del Sud</territory>
<territory type="035">Asia sudorientale</territory>
<territory type="039">Europa del Sud</territory>
<territory type="053">Australia e Nuova Zelanda</territory>
<territory type="054">Melanesia</territory>
<territory type="057">Regione Micronesiana</territory>
<territory type="061">Polinesia</territory>
<territory type="062">Asia centro-meridionale</territory>
<territory type="142">Asia</territory>
<territory type="143">Asia centrale</territory>
<territory type="145">Asia occidentale</territory>
<territory type="150">Europa</territory>
<territory type="151">Europa orientale</territory>
<territory type="154">Europa del Nord</territory>
<territory type="155">Europa occidentale</territory>
<territory type="172">Comunità di Stati Indipendenti</territory>
<territory type="419">America Latina e Caraibi</territory>
<territory type="AD">Andorra</territory>
<territory type="AE">Emirati Arabi Uniti</territory>
<territory type="AF">Afghanistan</territory>
<territory type="AG">Antigua e Barbuda</territory>
<territory type="AI">Anguilla</territory>
<territory type="AL">Albania</territory>
<territory type="AM">Armenia</territory>
<territory type="AN">Antille Olandesi</territory>
<territory type="AO">Angola</territory>
<territory type="AQ">Antartide</territory>
<territory type="AR">Argentina</territory>
<territory type="AS">Samoa Americane</territory>
<territory type="AT">Austria</territory>
<territory type="AU">Australia</territory>
<territory type="AW">Aruba</territory>
<territory type="AX">Isole Aland</territory>
<territory type="AZ">Azerbaigian</territory>
<territory type="BA">Bosnia Erzegovina</territory>
<territory type="BB">Barbados</territory>
<territory type="BD">Bangladesh</territory>
<territory type="BE">Belgio</territory>
<territory type="BF">Burkina Faso</territory>
<territory type="BG">Bulgaria</territory>
<territory type="BH">Bahrein</territory>
<territory type="BI">Burundi</territory>
<territory type="BJ">Benin</territory>
<territory type="BL">San Bartolomeo</territory>
<territory type="BM">Bermuda</territory>
<territory type="BN">Brunei</territory>
<territory type="BO">Bolivia</territory>
<territory type="BR">Brasile</territory>
<territory type="BS">Bahamas</territory>
<territory type="BT">Bhutan</territory>
<territory type="BV">Isola Bouvet</territory>
<territory type="BW">Botswana</territory>
<territory type="BY">Bielorussia</territory>
<territory type="BZ">Belize</territory>
<territory type="CA">Canada</territory>
<territory type="CC">Isole Cocos</territory>
<territory type="CD">Repubblica Democratica del Congo</territory>
<territory type="CF">Repubblica Centrafricana</territory>
<territory type="CG">Congo</territory>
<territory type="CH">Svizzera</territory>
<territory type="CI">Costa d’Avorio</territory>
<territory type="CK">Isole Cook</territory>
<territory type="CL">Cile</territory>
<territory type="CM">Camerun</territory>
<territory type="CN">Cina</territory>
<territory type="CO">Colombia</territory>
<territory type="CR">Costa Rica</territory>
<territory type="CS">Serbia e Montenegro</territory>
<territory type="CU">Cuba</territory>
<territory type="CV">Capo Verde</territory>
<territory type="CX">Isola di Christmas</territory>
<territory type="CY">Cipro</territory>
<territory type="CZ">Repubblica Ceca</territory>
<territory type="DE">Germania</territory>
<territory type="DJ">Gibuti</territory>
<territory type="DK">Danimarca</territory>
<territory type="DM">Dominica</territory>
<territory type="DO">Repubblica Dominicana</territory>
<territory type="DZ">Algeria</territory>
<territory type="EC">Ecuador</territory>
<territory type="EE">Estonia</territory>
<territory type="EG">Egitto</territory>
<territory type="EH">Sahara Occidentale</territory>
<territory type="ER">Eritrea</territory>
<territory type="ES">Spagna</territory>
<territory type="ET">Etiopia</territory>
<territory type="FI">Finlandia</territory>
<territory type="FJ">Figi</territory>
<territory type="FK">Isole Falkland</territory>
<territory type="FM">Micronesia</territory>
<territory type="FO">Isole Faroe</territory>
<territory type="FR">Francia</territory>
<territory type="GA">Gabon</territory>
<territory type="GB">Regno Unito</territory>
<territory type="GD">Grenada</territory>
<territory type="GE">Georgia</territory>
<territory type="GF">Guiana Francese</territory>
<territory type="GG">Guernsey</territory>
<territory type="GH">Ghana</territory>
<territory type="GI">Gibilterra</territory>
<territory type="GL">Groenlandia</territory>
<territory type="GM">Gambia</territory>
<territory type="GN">Guinea</territory>
<territory type="GP">Guadalupa</territory>
<territory type="GQ">Guinea Equatoriale</territory>
<territory type="GR">Grecia</territory>
<territory type="GS">Georgia del Sud e Isole Sandwich del Sud</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">Regione Amministrativa Speciale di Hong Kong della Repubblica Popolare Cinese</territory>
<territory type="HM">Isole Heard ed Isole McDonald</territory>
<territory type="HN">Honduras</territory>
<territory type="HR">Croazia</territory>
<territory type="HT">Haiti</territory>
<territory type="HU">Ungheria</territory>
<territory type="ID">Indonesia</territory>
<territory type="IE">Irlanda</territory>
<territory type="IL">Israele</territory>
<territory type="IM">Isola di Man</territory>
<territory type="IN">India</territory>
<territory type="IO">Territorio Britannico dell’Oceano Indiano</territory>
<territory type="IQ">Iraq</territory>
<territory type="IR">Iran</territory>
<territory type="IS">Islanda</territory>
<territory type="IT">Italia</territory>
<territory type="JE">Jersey</territory>
<territory type="JM">Giamaica</territory>
<territory type="JO">Giordania</territory>
<territory type="JP">Giappone</territory>
<territory type="KE">Kenya</territory>
<territory type="KG">Kirghizistan</territory>
<territory type="KH">Cambogia</territory>
<territory type="KI">Kiribati</territory>
<territory type="KM">Comore</territory>
<territory type="KN">Saint Kitts e Nevis</territory>
<territory type="KP">Corea del Nord</territory>
<territory type="KR">Corea del Sud</territory>
<territory type="KW">Kuwait</territory>
<territory type="KY">Isole Cayman</territory>
<territory type="KZ">Kazakistan</territory>
<territory type="LA">Laos</territory>
<territory type="LB">Libano</territory>
<territory type="LC">Saint Lucia</territory>
<territory type="LI">Liechtenstein</territory>
<territory type="LK">Sri Lanka</territory>
<territory type="LR">Liberia</territory>
<territory type="LS">Lesotho</territory>
<territory type="LT">Lituania</territory>
<territory type="LU">Lussemburgo</territory>
<territory type="LV">Lettonia</territory>
<territory type="LY">Libia</territory>
<territory type="MA">Marocco</territory>
<territory type="MC">Monaco</territory>
<territory type="MD">Moldavia</territory>
<territory type="ME">Montenegro</territory>
<territory type="MG">Madagascar</territory>
<territory type="MH">Isole Marshall</territory>
<territory type="MK">Repubblica di Macedonia</territory>
<territory type="ML">Mali</territory>
<territory type="MM">Myanmar</territory>
<territory type="MN">Mongolia</territory>
<territory type="MO">Regione Amministrativa Speciale di Macao della Repubblica Popolare Cinese</territory>
<territory type="MP">Isole Marianne Settentrionali</territory>
<territory type="MQ">Martinica</territory>
<territory type="MR">Mauritania</territory>
<territory type="MS">Montserrat</territory>
<territory type="MT">Malta</territory>
<territory type="MU">Mauritius</territory>
<territory type="MV">Maldive</territory>
<territory type="MW">Malawi</territory>
<territory type="MX">Messico</territory>
<territory type="MY">Malesia</territory>
<territory type="MZ">Mozambico</territory>
<territory type="NA">Namibia</territory>
<territory type="NC">Nuova Caledonia</territory>
<territory type="NE">Niger</territory>
<territory type="NF">Isola Norfolk</territory>
<territory type="NG">Nigeria</territory>
<territory type="NI">Nicaragua</territory>
<territory type="NL">Paesi Bassi</territory>
<territory type="NO">Norvegia</territory>
<territory type="NP">Nepal</territory>
<territory type="NR">Nauru</territory>
<territory type="NU">Niue</territory>
<territory type="NZ">Nuova Zelanda</territory>
<territory type="OM">Oman</territory>
<territory type="PA">Panama</territory>
<territory type="PE">Perù</territory>
<territory type="PF">Polinesia Francese</territory>
<territory type="PG">Papua Nuova Guinea</territory>
<territory type="PH">Filippine</territory>
<territory type="PK">Pakistan</territory>
<territory type="PL">Polonia</territory>
<territory type="PM">Saint Pierre e Miquelon</territory>
<territory type="PN">Pitcairn</territory>
<territory type="PR">Portorico</territory>
<territory type="PS">Palestina</territory>
<territory type="PT">Portogallo</territory>
<territory type="PW">Palau</territory>
<territory type="PY">Paraguay</territory>
<territory type="QA">Qatar</territory>
<territory type="QO">Oceania lontana</territory>
<territory type="QU">Unione Europea</territory>
<territory type="RE">Réunion</territory>
<territory type="RO">Romania</territory>
<territory type="RS">Serbia</territory>
<territory type="RU">Federazione Russa</territory>
<territory type="RW">Ruanda</territory>
<territory type="SA">Arabia Saudita</territory>
<territory type="SB">Isole Solomon</territory>
<territory type="SC">Seychelles</territory>
<territory type="SD">Sudan</territory>
<territory type="SE">Svezia</territory>
<territory type="SG">Singapore</territory>
<territory type="SH">Sant’Elena</territory>
<territory type="SI">Slovenia</territory>
<territory type="SJ">Svalbard e Jan Mayen</territory>
<territory type="SK">Slovacchia</territory>
<territory type="SL">Sierra Leone</territory>
<territory type="SM">San Marino</territory>
<territory type="SN">Senegal</territory>
<territory type="SO">Somalia</territory>
<territory type="SR">Suriname</territory>
<territory type="ST">Sao Tomé e Príncipe</territory>
<territory type="SV">El Salvador</territory>
<territory type="SY">Siria</territory>
<territory type="SZ">Swaziland</territory>
<territory type="TC">Isole Turks e Caicos</territory>
<territory type="TD">Ciad</territory>
<territory type="TF">Territori australi francesi</territory>
<territory type="TG">Togo</territory>
<territory type="TH">Tailandia</territory>
<territory type="TJ">Tagikistan</territory>
<territory type="TK">Tokelau</territory>
<territory type="TL">Timor Est</territory>
<territory type="TM">Turkmenistan</territory>
<territory type="TN">Tunisia</territory>
<territory type="TO">Tonga</territory>
<territory type="TR">Turchia</territory>
<territory type="TT">Trinidad e Tobago</territory>
<territory type="TV">Tuvalu</territory>
<territory type="TW">Taiwan</territory>
<territory type="TZ">Tanzania</territory>
<territory type="UA">Ucraina</territory>
<territory type="UG">Uganda</territory>
<territory type="UM">Isole Minori lontane dagli Stati Uniti</territory>
<territory type="US">Stati Uniti</territory>
<territory type="UY">Uruguay</territory>
<territory type="UZ">Uzbekistan</territory>
<territory type="VA">Vaticano</territory>
<territory type="VC">Saint Vincent e Grenadines</territory>
<territory type="VE">Venezuela</territory>
<territory type="VG">Isole Vergini Britanniche</territory>
<territory type="VI">Isole Vergini Americane</territory>
<territory type="VN">Vietnam</territory>
<territory type="VU">Vanuatu</territory>
<territory type="WF">Wallis e Futuna</territory>
<territory type="WS">Samoa</territory>
<territory type="YE">Yemen</territory>
<territory type="YT">Mayotte</territory>
<territory type="ZA">Sudafrica</territory>
<territory type="ZM">Zambia</territory>
<territory type="ZW">Zimbabwe</territory>
<territory type="ZZ">regione non valida o sconosciuta</territory>
</territories>
<variants>
<variant type="1901">ortografia tradizionale tedesca</variant>
<variant type="1996">ortografia tedesca del 1996</variant>
<variant type="AREVELA">armeno orientale</variant>
<variant type="AREVMDA">armeno occidentale</variant>
<variant type="BOONT">boontling</variant>
<variant type="FONIPA">alfabeto fonetico internazionale IPA</variant>
<variant type="FONUPA">alfabeto fonetico uralico UPA</variant>
<variant type="MONOTON">monotonico</variant>
<variant type="NEDIS">dialetto del Natisone</variant>
<variant type="POLYTON">politonico</variant>
<variant type="POSIX">computer</variant>
<variant type="REVISED">ortografia revisionata</variant>
<variant type="ROZAJ">resiano</variant>
<variant type="SAAHO">saho</variant>
</variants>
<keys>
<key type="calendar">calendario</key>
<key type="collation">collazione</key>
<key type="currency">valuta</key>
</keys>
<types>
<type type="big5han" key="collation">cinese tradizionale</type>
<type type="buddhist" key="calendar">calendario buddista</type>
<type type="chinese" key="calendar">calendario cinese</type>
<type type="direct" key="collation">ordine diretto</type>
<type type="gb2312han" key="collation">cinese semplificato</type>
<type type="gregorian" key="calendar">calendario gregoriano</type>
<type type="hebrew" key="calendar">calendario ebraico</type>
<type type="indian" key="calendar">calendario nazionale indiano</type>
<type type="islamic" key="calendar">calendario islamico</type>
<type type="islamic-civil" key="calendar">calendario civile islamico</type>
<type type="japanese" key="calendar">calendario giapponese</type>
<type type="phonebook" key="collation">ordine elenco telefonico</type>
<type type="pinyin" key="collation">ordine pinyin</type>
<type type="stroke" key="collation">ordine segni</type>
<type type="traditional" key="collation">ordine tradizionale</type>
</types>
<measurementSystemNames>
<measurementSystemName type="metric">metrico</measurementSystemName>
<measurementSystemName type="US">USA</measurementSystemName>
</measurementSystemNames>
</localeDisplayNames>
<layout>
<inText type="keys">lowercase-words</inText>
<inText type="languages">lowercase-words</inText>
<inText type="types">lowercase-words</inText>
</layout>
<characters>
<exemplarCharacters>[a à b-e é è f-i ì j-o ó ò p-u ù v-z]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[í ï ú]</exemplarCharacters>
<exemplarCharacters type="currencySymbol">[a-z]</exemplarCharacters>
</characters>
<delimiters>
<quotationStart>‘</quotationStart>
<quotationEnd>’</quotationEnd>
<alternateQuotationStart>“</alternateQuotationStart>
<alternateQuotationEnd>”</alternateQuotationEnd>
</delimiters>
<dates>
<calendars>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="abbreviated">
<month type="1">gen</month>
<month type="2">feb</month>
<month type="3">mar</month>
<month type="4">apr</month>
<month type="5">mag</month>
<month type="6">giu</month>
<month type="7">lug</month>
<month type="8">ago</month>
<month type="9">set</month>
<month type="10">ott</month>
<month type="11">nov</month>
<month type="12">dic</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">gennaio</month>
<month type="2">febbraio</month>
<month type="3">marzo</month>
<month type="4">aprile</month>
<month type="5">maggio</month>
<month type="6">giugno</month>
<month type="7">luglio</month>
<month type="8">agosto</month>
<month type="9">settembre</month>
<month type="10">ottobre</month>
<month type="11">novembre</month>
<month type="12">dicembre</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="narrow">
<month type="1">G</month>
<month type="2">F</month>
<month type="3">M</month>
<month type="4">A</month>
<month type="5">M</month>
<month type="6">G</month>
<month type="7">L</month>
<month type="8">A</month>
<month type="9">S</month>
<month type="10">O</month>
<month type="11">N</month>
<month type="12">D</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">Gennaio</month>
<month type="2">Febbraio</month>
<month type="3">Marzo</month>
<month type="4">Aprile</month>
<month type="5">Maggio</month>
<month type="6">Giugno</month>
<month type="7">Luglio</month>
<month type="8">Agosto</month>
<month type="9">Settembre</month>
<month type="10">Ottobre</month>
<month type="11">Novembre</month>
<month type="12">Dicembre</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="abbreviated">
<day type="sun">dom</day>
<day type="mon">lun</day>
<day type="tue">mar</day>
<day type="wed">mer</day>
<day type="thu">gio</day>
<day type="fri">ven</day>
<day type="sat">sab</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">domenica</day>
<day type="mon">lunedì</day>
<day type="tue">martedì</day>
<day type="wed">mercoledì</day>
<day type="thu">giovedì</day>
<day type="fri">venerdì</day>
<day type="sat">sabato</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="narrow">
<day type="sun">D</day>
<day type="mon">L</day>
<day type="tue">M</day>
<day type="wed">M</day>
<day type="thu">G</day>
<day type="fri">V</day>
<day type="sat">S</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">Domenica</day>
<day type="mon">Lunedì</day>
<day type="tue">Martedì</day>
<day type="wed">Mercoledì</day>
<day type="thu">Giovedì</day>
<day type="fri">Venerdì</day>
<day type="sat">Sabato</day>
</dayWidth>
</dayContext>
</days>
<quarters>
<quarterContext type="format">
<quarterWidth type="abbreviated">
<quarter type="1">T1</quarter>
<quarter type="2">T2</quarter>
<quarter type="3">T3</quarter>
<quarter type="4">T4</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">1o trimestre</quarter>
<quarter type="2">2o trimestre</quarter>
<quarter type="3">3o trimestre</quarter>
<quarter type="4">4o trimestre</quarter>
</quarterWidth>
</quarterContext>
<quarterContext type="stand-alone">
<quarterWidth type="narrow">
<quarter type="1">1</quarter>
<quarter type="2">2</quarter>
<quarter type="3">3</quarter>
<quarter type="4">4</quarter>
</quarterWidth>
</quarterContext>
</quarters>
<am>m.</am>
<pm>p.</pm>
<eras>
<eraNames>
<era type="0">a.C.</era>
<era type="1">d.C</era>
</eraNames>
<eraAbbr>
<era type="0">aC</era>
<era type="1">dC</era>
</eraAbbr>
</eras>
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEEE d MMMM y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>dd MMMM y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>dd/MMM/y</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>dd/MM/yy</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<timeFormats>
<timeFormatLength type="full">
<timeFormat>
<pattern>HH.mm.ss zzzz</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="long">
<timeFormat>
<pattern>HH.mm.ss z</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="medium">
<timeFormat>
<pattern>HH.mm.ss</pattern>
</timeFormat>
</timeFormatLength>
<timeFormatLength type="short">
<timeFormat>
<pattern>HH.mm</pattern>
</timeFormat>
</timeFormatLength>
</timeFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="d">d</dateFormatItem>
<dateFormatItem id="hhmm">hh.mm a</dateFormatItem>
<dateFormatItem id="HHmm">HH.mm</dateFormatItem>
<dateFormatItem id="hhmmss">hh.mm.ss a</dateFormatItem>
<dateFormatItem id="HHmmss">HH.mm.ss</dateFormatItem>
<dateFormatItem id="Hm">HH:mm</dateFormatItem>
<dateFormatItem id="M">L</dateFormatItem>
<dateFormatItem id="Md">d/M</dateFormatItem>
<dateFormatItem id="MEd">EEE d/M</dateFormatItem>
<dateFormatItem id="MMdd">dd/MM</dateFormatItem>
<dateFormatItem id="MMM">LLL</dateFormatItem>
<dateFormatItem id="MMMd">d MMM</dateFormatItem>
<dateFormatItem id="MMMEd">EEE d MMM</dateFormatItem>
<dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
<dateFormatItem id="MMMMdd">dd MMMM</dateFormatItem>
<dateFormatItem id="MMMMEd">EEE d MMMM</dateFormatItem>
<dateFormatItem id="ms">mm:ss</dateFormatItem>
<dateFormatItem id="y">y</dateFormatItem>
<dateFormatItem id="yM">M/yyyy</dateFormatItem>
<dateFormatItem id="yMEd">EEE, d-M-yyyy</dateFormatItem>
<dateFormatItem id="yMMM">MMM y</dateFormatItem>
<dateFormatItem id="yMMMEd">EEE d MMM y</dateFormatItem>
<dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
<dateFormatItem id="yQ">Q-yyyy</dateFormatItem>
<dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
<dateFormatItem id="yyMM">MM/yy</dateFormatItem>
<dateFormatItem id="yyQ">Q yy</dateFormatItem>
<dateFormatItem id="yyQQQQ">QQQQ yy</dateFormatItem>
<dateFormatItem id="yyyyMMMM">MMMM y</dateFormatItem>
</availableFormats>
<intervalFormats>
<intervalFormatFallback>{0} - {1}</intervalFormatFallback>
<intervalFormatItem id="d">
<greatestDifference id="d">d-d</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="h">
<greatestDifference id="a">HH-HH</greatestDifference>
<greatestDifference id="h">HH-HH</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hm">
<greatestDifference id="a">HH:mm-HH:mm</greatestDifference>
<greatestDifference id="h">HH:mm-HH:mm</greatestDifference>
<greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hmv">
<greatestDifference id="a">HH:mm-HH:mm v</greatestDifference>
<greatestDifference id="h">HH:mm-HH:mm v</greatestDifference>
<greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="hv">
<greatestDifference id="a">HH-HH v</greatestDifference>
<greatestDifference id="h">HH-HH v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="M">
<greatestDifference id="M">M-M</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="Md">
<greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
<greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MEd">
<greatestDifference id="d">E dd/MM - E dd/MM</greatestDifference>
<greatestDifference id="M">E dd/MM - E dd/MM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMM">
<greatestDifference id="M">MMM-MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMd">
<greatestDifference id="d">dd-dd MMM</greatestDifference>
<greatestDifference id="M">dd MMM - dd MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMEd">
<greatestDifference id="d">E dd - E dd MMM</greatestDifference>
<greatestDifference id="M">E dd MMM - E dd MMM</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMM">
<greatestDifference id="M">LLLL-LLLL</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="y">
<greatestDifference id="y">y-y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yM">
<greatestDifference id="M">MM/yy - MM/yy</greatestDifference>
<greatestDifference id="y">MM/yy - MM/yy</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMd">
<greatestDifference id="d">dd/MM/yy - dd/MM/yy</greatestDifference>
<greatestDifference id="M">dd/MM/yy - dd/MM/yy</greatestDifference>
<greatestDifference id="y">dd/MM/yy - dd/MM/yy</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMEd">
<greatestDifference id="d">E dd/MM/yy - E dd/MM/yy</greatestDifference>
<greatestDifference id="M">E dd/MM/yy - E dd/MM/yy</greatestDifference>
<greatestDifference id="y">E dd/MM/yy - E dd/MM/yy</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">dd-dd MMM y</greatestDifference>
<greatestDifference id="M">dd MMM - dd MMM y</greatestDifference>
<greatestDifference id="y">dd MMM y - dd MMM y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMEd">
<greatestDifference id="d">E d - E d MMM y</greatestDifference>
<greatestDifference id="M">E d MMM - E d MMM y</greatestDifference>
<greatestDifference id="y">E d MMM y - E d MMM y</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMM">
<greatestDifference id="M">yyyy-MM – MM</greatestDifference>
<greatestDifference id="y">yyyy-MM – yyyy-MM</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
<fields>
<field type="era">
<displayName>era</displayName>
</field>
<field type="year">
<displayName>anno</displayName>
</field>
<field type="month">
<displayName>mese</displayName>
</field>
<field type="week">
<displayName>settimana</displayName>
</field>
<field type="day">
<displayName>giorno</displayName>
<relative type="-3">tre giorni fa</relative>
<relative type="-2">l'altro ieri</relative>
<relative type="-1">ieri</relative>
<relative type="0">oggi</relative>
<relative type="1">domani</relative>
<relative type="2">dopodomani</relative>
<relative type="3">tra tre giorni</relative>
</field>
<field type="weekday">
<displayName>giorno della settimana</displayName>
</field>
<field type="dayperiod">
<displayName>periodo del giorno</displayName>
</field>
<field type="hour">
<displayName>ora</displayName>
</field>
<field type="minute">
<displayName>minuto</displayName>
</field>
<field type="second">
<displayName>secondo</displayName>
</field>
<field type="zone">
<displayName>zona</displayName>
</field>
</fields>
</calendar>
</calendars>
<timeZoneNames>
<hourFormat>+HH.mm;-HH.mm</hourFormat>
<gmtFormat>GMT{0}</gmtFormat>
<regionFormat>{0}</regionFormat>
<zone type="Etc/Unknown">
<exemplarCity>Sconosciuto</exemplarCity>
</zone>
<zone type="Europe/Tirane">
<exemplarCity>Tirana</exemplarCity>
</zone>
<zone type="Antarctica/South_Pole">
<exemplarCity>Polo Sud</exemplarCity>
</zone>
<zone type="Antarctica/DumontDUrville">
<exemplarCity>Dumont D'Urville</exemplarCity>
</zone>
<zone type="America/Cordoba">
<exemplarCity>Cordova</exemplarCity>
</zone>
<zone type="Europe/Brussels">
<exemplarCity>Bruxelles</exemplarCity>
</zone>
<zone type="Asia/Bahrain">
<exemplarCity>Bahrein</exemplarCity>
</zone>
<zone type="America/Sao_Paulo">
<exemplarCity>San Paolo</exemplarCity>
</zone>
<zone type="America/St_Johns">
<exemplarCity>St. Johns</exemplarCity>
</zone>
<zone type="Europe/Zurich">
<exemplarCity>Zurigo</exemplarCity>
</zone>
<zone type="Pacific/Easter">
<exemplarCity>Pasqua</exemplarCity>
</zone>
<zone type="Atlantic/Cape_Verde">
<exemplarCity>Capo Verde</exemplarCity>
</zone>
<zone type="Indian/Christmas">
<exemplarCity>Natale</exemplarCity>
</zone>
<zone type="Europe/Berlin">
<exemplarCity>Berlino</exemplarCity>
</zone>
<zone type="Africa/Djibouti">
<exemplarCity>Gibuti</exemplarCity>
</zone>
<zone type="Europe/Copenhagen">
<exemplarCity>Copenaghen</exemplarCity>
</zone>
<zone type="Africa/Algiers">
<exemplarCity>Algeri</exemplarCity>
</zone>
<zone type="Atlantic/Canary">
<exemplarCity>Canarie</exemplarCity>
</zone>
<zone type="Africa/Addis_Ababa">
<exemplarCity>Addis Abeba</exemplarCity>
</zone>
<zone type="Pacific/Fiji">
<exemplarCity>Figi</exemplarCity>
</zone>
<zone type="Atlantic/Faeroe">
<exemplarCity>Isole Faeroe</exemplarCity>
</zone>
<zone type="Europe/Paris">
<exemplarCity>Parigi</exemplarCity>
</zone>
<zone type="Europe/London">
<exemplarCity>Londra</exemplarCity>
</zone>
<zone type="Europe/Gibraltar">
<exemplarCity>Gibilterra</exemplarCity>
</zone>
<zone type="America/Guadeloupe">
<exemplarCity>Guadalupa</exemplarCity>
</zone>
<zone type="Europe/Athens">
<exemplarCity>Atene</exemplarCity>
</zone>
<zone type="Atlantic/South_Georgia">
<exemplarCity>Georgia meridionale</exemplarCity>
</zone>
<zone type="America/Guyana">
<exemplarCity>Guiana</exemplarCity>
</zone>
<zone type="Asia/Jakarta">
<exemplarCity>Giacarta</exemplarCity>
</zone>
<zone type="Europe/Dublin">
<exemplarCity>Dublino</exemplarCity>
</zone>
<zone type="Asia/Jerusalem">
<exemplarCity>Gerusalemme</exemplarCity>
</zone>
<zone type="Asia/Tehran">
<exemplarCity>Teheran</exemplarCity>
</zone>
<zone type="Europe/Rome">
<exemplarCity>Roma</exemplarCity>
</zone>
<zone type="America/Jamaica">
<exemplarCity>Giamaica</exemplarCity>
</zone>
<zone type="Indian/Comoro">
<exemplarCity>Comore</exemplarCity>
</zone>
<zone type="America/St_Kitts">
<exemplarCity>St. Kitts</exemplarCity>
</zone>
<zone type="Asia/Seoul">
<exemplarCity>Seul</exemplarCity>
</zone>
<zone type="America/St_Lucia">
<exemplarCity>Santa Lucia</exemplarCity>
</zone>
<zone type="Europe/Luxembourg">
<exemplarCity>Lussemburgo</exemplarCity>
</zone>
<zone type="Asia/Macau">
<exemplarCity>Macao</exemplarCity>
</zone>
<zone type="America/Martinique">
<exemplarCity>Martinica</exemplarCity>
</zone>
<zone type="Indian/Maldives">
<exemplarCity>Maldive</exemplarCity>
</zone>
<zone type="America/Mexico_City">
<exemplarCity>Città del Messico</exemplarCity>
</zone>
<zone type="Europe/Warsaw">
<exemplarCity>Varsavia</exemplarCity>
</zone>
<zone type="Pacific/Pitcairn">
<exemplarCity>Pitcairn, isole</exemplarCity>
</zone>
<zone type="America/Puerto_Rico">
<exemplarCity>Portorico</exemplarCity>
</zone>
<zone type="Atlantic/Azores">
<exemplarCity>Azzorre</exemplarCity>
</zone>
<zone type="Europe/Lisbon">
<exemplarCity>Lisbona</exemplarCity>
</zone>
<zone type="Indian/Reunion">
<exemplarCity>Riunione, isola di</exemplarCity>
</zone>
<zone type="Europe/Bucharest">
<exemplarCity>Bucarest</exemplarCity>
</zone>
<zone type="Europe/Moscow">
<exemplarCity>Mosca</exemplarCity>
</zone>
<zone type="Europe/Stockholm">
<exemplarCity>Stoccolma</exemplarCity>
</zone>
<zone type="Atlantic/St_Helena">
<exemplarCity>Sant'Elena</exemplarCity>
</zone>
<zone type="Africa/Mogadishu">
<exemplarCity>Mogadiscio</exemplarCity>
</zone>
<zone type="Africa/Sao_Tome">
<exemplarCity>Sao Tomè</exemplarCity>
</zone>
<zone type="America/El_Salvador">
<exemplarCity>Salvador</exemplarCity>
</zone>
<zone type="Asia/Damascus">
<exemplarCity>Damasco</exemplarCity>
</zone>
<zone type="Africa/Tunis">
<exemplarCity>Tunisi</exemplarCity>
</zone>
<zone type="America/Anchorage">
<exemplarCity>Fuso orario Alaska</exemplarCity>
</zone>
<zone type="America/North_Dakota/Center">
<exemplarCity>Center, Dakota del nord</exemplarCity>
</zone>
<zone type="Asia/Samarkand">
<exemplarCity>Samarcanda</exemplarCity>
</zone>
<zone type="America/St_Vincent">
<exemplarCity>St. Vincent</exemplarCity>
</zone>
<zone type="America/St_Thomas">
<exemplarCity>St. Thomas</exemplarCity>
</zone>
<metazone type="Acre">
<long>
<standard>Acre Time</standard>
<daylight>Acre Summer Time</daylight>
</long>
</metazone>
<metazone type="Africa_Central">
<long>
<standard>Central Africa Time</standard>
</long>
</metazone>
<metazone type="Africa_Eastern">
<long>
<standard>East Africa Time</standard>
</long>
</metazone>
<metazone type="Africa_Southern">
<long>
<standard>South Africa Standard Time</standard>
</long>
</metazone>
<metazone type="Africa_Western">
<long>
<standard>West Africa Time</standard>
<daylight>West Africa Summer Time</daylight>
</long>
</metazone>
<metazone type="Aktyubinsk">
<long>
<standard>Aktyubinsk Time</standard>
<daylight>Aktyubinsk Summer Time</daylight>
</long>
</metazone>
<metazone type="Alaska">
<long>
<generic>Alaska Time</generic>
<standard>Ora Standard Alaska</standard>
<daylight>Ora Legale Alaska</daylight>
</long>
</metazone>
<metazone type="Alaska_Hawaii">
<long>
<standard>Alaska-Hawaii Standard Time</standard>
<daylight>Alaska-Hawaii Daylight Time</daylight>
</long>
</metazone>
<metazone type="Amazon">
<long>
<standard>Amazon Time</standard>
<daylight>Amazon Summer Time</daylight>
</long>
</metazone>
<metazone type="America_Central">
<long>
<generic>Central Time</generic>
<standard>Central Standard Time</standard>
<daylight>Central Daylight Time</daylight>
</long>
</metazone>
<metazone type="America_Eastern">
<long>
<generic>Eastern Time</generic>
<standard>Eastern Standard Time</standard>
<daylight>Eastern Daylight Time</daylight>
</long>
</metazone>
<metazone type="America_Mountain">
<long>
<generic>Mountain Time</generic>
<standard>Mountain Standard Time</standard>
<daylight>Mountain Daylight Time</daylight>
</long>
</metazone>
<metazone type="America_Pacific">
<long>
<generic>Pacific Time</generic>
<standard>Pacific Standard Time</standard>
<daylight>Pacific Daylight Time</daylight>
</long>
</metazone>
<metazone type="Aqtau">
<long>
<standard>Aqtau Time</standard>
<daylight>Aqtau Summer Time</daylight>
</long>
</metazone>
<metazone type="Aqtobe">
<long>
<standard>Aqtobe Time</standard>
<daylight>Aqtobe Summer Time</daylight>
</long>
</metazone>
<metazone type="Arabian">
<long>
<generic>Arabian Time</generic>
<standard>Arabian Standard Time</standard>
<daylight>Arabian Daylight Time</daylight>
</long>
<short>
<standard>ST arabo</standard>
<daylight>ADT arabo</daylight>
</short>
</metazone>
<metazone type="Argentina">
<long>
<standard>Argentina Time</standard>
<daylight>Argentina Summer Time</daylight>
</long>
</metazone>
<metazone type="Argentina_Western">
<long>
<standard>Western Argentina Time</standard>
</long>
</metazone>
<metazone type="Armenia">
<long>
<standard>Armenia Time</standard>
<daylight>Armenia Summer Time</daylight>
</long>
<short>
<standard>AMT Armenia</standard>
<daylight>AMST Armenia</daylight>
</short>
</metazone>
<metazone type="Ashkhabad">
<long>
<standard>Ashkhabad Time</standard>
<daylight>Ashkhabad Summer Time</daylight>
</long>
</metazone>
<metazone type="Atlantic">
<long>
<generic>Atlantic Time</generic>
<standard>Atlantic Standard Time</standard>
<daylight>Atlantic Daylight Time</daylight>
</long>
</metazone>
<metazone type="Australia_Central">
<long>
<generic>Central Australia Time</generic>
<standard>Australian Central Standard Time</standard>
<daylight>Australian Central Daylight Time</daylight>
</long>
</metazone>
<metazone type="Australia_Eastern">
<long>
<generic>Eastern Australia Time</generic>
<standard>Australian Eastern Standard Time</standard>
<daylight>Australian Eastern Daylight Tim</daylight>
</long>
</metazone>
<metazone type="Australia_Western">
<long>
<generic>Western Australia Time</generic>
<standard>Australian Western Standard Time</standard>
<daylight>Australian Western Daylight Time</daylight>
</long>
</metazone>
<metazone type="Azores">
<long>
<standard>Azores Time</standard>
<daylight>Azores Summer Time</daylight>
</long>
</metazone>
<metazone type="Baku">
<long>
<standard>Baku Time</standard>
<daylight>Baku Summer Time</daylight>
</long>
</metazone>
<metazone type="Bangladesh">
<long>
<standard>Bangladesh Time</standard>
</long>
</metazone>
<metazone type="Bering">
<long>
<generic>Bering Time</generic>
<standard>Bering Standard Time</standard>
<daylight>Bering Daylight Time</daylight>
</long>
<short>
<standard>BST Bering</standard>
<daylight>BDT Bering</daylight>
</short>
</metazone>
<metazone type="Bhutan">
<long>
<standard>Bhutan Time</standard>
</long>
</metazone>
<metazone type="Borneo">
<long>
<standard>Borneo Time</standard>
<daylight>Borneo Summer Time</daylight>
</long>
</metazone>
<metazone type="Brasilia">
<long>
<standard>Brasilia Time</standard>
<daylight>Brasilia Summer Time</daylight>
</long>
</metazone>
<metazone type="Chamorro">
<long>
<standard>Chamorro Standard Time</standard>
</long>
</metazone>
<metazone type="Changbai">
<long>
<standard>Changbai Time</standard>
</long>
</metazone>
<metazone type="Chile">
<long>
<standard>Chile Time</standard>
<daylight>Chile Summer Time</daylight>
</long>
</metazone>
<metazone type="China">
<long>
<standard>Ora Standard Cina</standard>
<daylight>Ora Legale Cina</daylight>
</long>
<short>
<standard>CST (Cina)</standard>
<daylight>CDT (Cina)</daylight>
</short>
</metazone>
<metazone type="Choibalsan">
<long>
<standard>Choibalsan Time</standard>
<daylight>Choibalsan Summer Time</daylight>
</long>
</metazone>
<metazone type="Dacca">
<long>
<standard>Dacca Time</standard>
</long>
</metazone>
<metazone type="Dushanbe">
<long>
<standard>Dushanbe Time</standard>
<daylight>Dushanbe Summer Time</daylight>
</long>
</metazone>
<metazone type="Dutch_Guiana">
<long>
<standard>Dutch Guiana Time</standard>
</long>
</metazone>
<metazone type="East_Timor">
<long>
<standard>East Timor Time</standard>
</long>
</metazone>
<metazone type="Ecuador">
<long>
<standard>Ecuador Time</standard>
</long>
</metazone>
<metazone type="Europe_Central">
<long>
<standard>Ora Standard Europa Centrale</standard>
<daylight>Ora Legale Europa Centrale</daylight>
</long>
</metazone>
<metazone type="Europe_Eastern">
<long>
<standard>Ora Standard Europa Orientale</standard>
<daylight>Ora Legale Europa Orientale</daylight>
</long>
</metazone>
<metazone type="Europe_Western">
<long>
<standard>Western European Time</standard>
<daylight>Western European Summer Time</daylight>
</long>
</metazone>
<metazone type="Frunze">
<long>
<standard>Frunze Time</standard>
<daylight>Frunze Summer Time</daylight>
</long>
</metazone>
<metazone type="Galapagos">
<long>
<standard>Galapagos Time</standard>
</long>
</metazone>
<metazone type="Georgia">
<long>
<standard>Georgia Time</standard>
<daylight>Georgia Summer Time</daylight>
</long>
</metazone>
<metazone type="GMT">
<long>
<standard>Greenwich Mean Time</standard>
</long>
<commonlyUsed>true</commonlyUsed>
</metazone>
<metazone type="Greenland_Central">
<long>
<standard>Central Greenland Time</standard>
<daylight>Central Greenland Summer Time</daylight>
</long>
</metazone>
<metazone type="Greenland_Eastern">
<long>
<standard>East Greenland Time</standard>
<daylight>East Greenland Summer Time</daylight>
</long>
</metazone>
<metazone type="Greenland_Western">
<long>
<standard>West Greenland Time</standard>
<daylight>West Greenland Summer Time</daylight>
</long>
</metazone>
<metazone type="Guam">
<long>
<standard>Guam Standard Time</standard>
</long>
<short>
<standard>GST Guam</standard>
</short>
</metazone>
<metazone type="Gulf">
<long>
<standard>Gulf Standard Time</standard>
</long>
</metazone>
<metazone type="Hawaii">
<long>
<generic>Hawaii Time</generic>
<standard>Ora Standard Hawaii</standard>
<daylight>Ora Legale Hawaii</daylight>
</long>
</metazone>
<metazone type="Hawaii_Aleutian">
<long>
<generic>Hawaii-Aleutian Time</generic>
<standard>Hawaii-Aleutian Standard Time</standard>
<daylight>Hawaii-Aleutian Daylight Time</daylight>
</long>
</metazone>
<metazone type="India">
<long>
<standard>India Standard Time</standard>
</long>
</metazone>
<metazone type="Indonesia_Central">
<long>
<standard>Central Indonesia Time</standard>
</long>
</metazone>
<metazone type="Indonesia_Eastern">
<long>
<standard>Eastern Indonesia Time</standard>
</long>
</metazone>
<metazone type="Indonesia_Western">
<long>
<standard>Western Indonesia Time</standard>
</long>
</metazone>
<metazone type="Israel">
<long>
<standard>Ora Standard Israele</standard>
<daylight>Ora Legale Israele</daylight>
</long>
</metazone>
<metazone type="Japan">
<long>
<standard>Ora Standard Giappone</standard>
<daylight>Ora Legale Giappone</daylight>
</long>
</metazone>
<metazone type="Karachi">
<long>
<standard>Karachi Time</standard>
</long>
</metazone>
<metazone type="Kashgar">
<long>
<standard>Kashgar Time</standard>
</long>
</metazone>
<metazone type="Kazakhstan_Eastern">
<long>
<standard>East Kazakhstan Standard Time</standard>
</long>
</metazone>
<metazone type="Kazakhstan_Western">
<long>
<standard>West Kazakhstan Standard Time</standard>
</long>
</metazone>
<metazone type="Kizilorda">
<long>
<standard>Kizilorda Time</standard>
<daylight>Kizilorda Summer Time</daylight>
</long>
</metazone>
<metazone type="Korea">
<long>
<generic>Korean Time</generic>
<standard>Korean Standard Time</standard>
<daylight>Korean Daylight Time</daylight>
</long>
</metazone>
<metazone type="Kuybyshev">
<long>
<standard>Kuybyshev Time</standard>
<daylight>Kuybyshev Summer Time</daylight>
</long>
</metazone>
<metazone type="Kwajalein">
<long>
<standard>Kwajalein Time</standard>
</long>
</metazone>
<metazone type="Kyrgystan">
<long>
<standard>Kyrgystan Time</standard>
</long>
</metazone>
<metazone type="Lanka">
<long>
<standard>Lanka Time</standard>
</long>
</metazone>
<metazone type="Long_Shu">
<long>
<standard>Long-Shu Time</standard>
</long>
</metazone>
<metazone type="Lord_Howe">
<long>
<generic>Lord Howe Time</generic>
<standard>Lord Howe Standard Time</standard>
<daylight>Lord Howe Daylight Time</daylight>
</long>
</metazone>
<metazone type="Macau">
<long>
<standard>Macau Time</standard>
<daylight>Macau Summer Time</daylight>
</long>
</metazone>
<metazone type="Malaya">
<long>
<standard>Malaya Time</standard>
</long>
</metazone>
<metazone type="Malaysia">
<long>
<standard>Malaysia Time</standard>
</long>
</metazone>
<metazone type="Marshall_Islands">
<long>
<standard>Marshall Islands Time</standard>
</long>
</metazone>
<metazone type="Mongolia">
<long>
<standard>Ulan Bator Time</standard>
<daylight>Ulan Bator Summer Time</daylight>
</long>
</metazone>
<metazone type="New_Zealand">
<long>
<generic>New Zealand Time</generic>
<standard>New Zealand Standard Time</standard>
<daylight>New Zealand Daylight Time</daylight>
</long>
</metazone>
<metazone type="Newfoundland">
<long>
<generic>Newfoundland Time</generic>
<standard>Newfoundland Standard Time</standard>
<daylight>Newfoundland Daylight Time</daylight>
</long>
</metazone>
<metazone type="North_Mariana">
<long>
<standard>North Mariana Islands Time</standard>
</long>
</metazone>
<metazone type="Pakistan">
<long>
<standard>Pakistan Time</standard>
<daylight>Pakistan Summer Time</daylight>
</long>
</metazone>
<metazone type="Pierre_Miquelon">
<long>
<generic>Pierre and Miquelon Time</generic>
<standard>Pierre and Miquelon Standard Time</standard>
<daylight>Pierre and Miquelon Daylight Time</daylight>
</long>
</metazone>
<metazone type="Qyzylorda">
<long>
<standard>Qyzylorda Time</standard>
<daylight>Qyzylorda Summer Time</daylight>
</long>
</metazone>
<metazone type="Samara">
<long>
<standard>Samara Time</standard>
<daylight>Samara Summer Time</daylight>
</long>
</metazone>
<metazone type="Samarkand">
<long>
<standard>Samarkand Time</standard>
<daylight>Samarkand Summer Time</daylight>
</long>
<short>
<standard>SAMT Samarkand</standard>
<daylight>SAMST Samarkand</daylight>
</short>
</metazone>
<metazone type="Samoa">
<long>
<standard>Samoa Standard Time</standard>
</long>
</metazone>
<metazone type="Shevchenko">
<long>
<standard>Shevchenko Time</standard>
<daylight>Shevchenko Summer Time</daylight>
</long>
</metazone>
<metazone type="Suriname">
<long>
<standard>Suriname Time</standard>
</long>
</metazone>
<metazone type="Sverdlovsk">
<long>
<standard>Sverdlovsk Time</standard>
<daylight>Sverdlovsk Summer Time</daylight>
</long>
</metazone>
<metazone type="Tajikistan">
<long>
<standard>Tajikistan Time</standard>
</long>
</metazone>
<metazone type="Tashkent">
<long>
<standard>Tashkent Time</standard>
<daylight>Tashkent Summer Time</daylight>
</long>
</metazone>
<metazone type="Tbilisi">
<long>
<standard>Tbilisi Time</standard>
<daylight>Tbilisi Summer Time</daylight>
</long>
</metazone>
<metazone type="Turkey">
<long>
<standard>Turkey Time</standard>
<daylight>Turkey Summer Time</daylight>
</long>
</metazone>
<metazone type="Turkmenistan">
<long>
<standard>Turkmenistan Time</standard>
<daylight>Turkmenistan Summer Time</daylight>
</long>
</metazone>
<metazone type="Uralsk">
<long>
<standard>Ural'sk Time</standard>
<daylight>Ural'sk Summer Time</daylight>
</long>
</metazone>
<metazone type="Urumqi">
<long>
<standard>Urumqi Time</standard>
</long>
</metazone>
<metazone type="Uzbekistan">
<long>
<standard>Uzbekistan Time</standard>
<daylight>Uzbekistan Summer Time</daylight>
</long>
</metazone>
<metazone type="Yekaterinburg">
<long>
<standard>Yekaterinburg Time</standard>
<daylight>Yekaterinburg Summer Time</daylight>
</long>
</metazone>
<metazone type="Yerevan">
<long>
<standard>Yerevan Time</standard>
<daylight>Yerevan Summer Time</daylight>
</long>
</metazone>
<metazone type="Yukon">
<long>
<generic>Yukon Time</generic>
<standard>Yukon Standard Time</standard>
<daylight>Yukon Daylight Time</daylight>
</long>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<symbols>
<decimal>,</decimal>
<group>.</group>
</symbols>
<decimalFormats>
<decimalFormatLength>
<decimalFormat>
<pattern>#,##0.###</pattern>
</decimalFormat>
</decimalFormatLength>
</decimalFormats>
<scientificFormats>
<scientificFormatLength>
<scientificFormat>
<pattern>#E0</pattern>
</scientificFormat>
</scientificFormatLength>
</scientificFormats>
<percentFormats>
<percentFormatLength>
<percentFormat>
<pattern>#,##0%</pattern>
</percentFormat>
</percentFormatLength>
</percentFormats>
<currencyFormats>
<currencyFormatLength>
<currencyFormat>
<pattern>¤ #,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
<currencies>
<currency type="ADP">
<displayName>Peseta Andorrana</displayName>
</currency>
<currency type="AED">
<displayName>Dirham degli Emirati Arabi Uniti</displayName>
</currency>
<currency type="AFA">
<displayName>Afgani (1927-2002)</displayName>
</currency>
<currency type="AFN">
<displayName>Afgani</displayName>
</currency>
<currency type="ALL">
<displayName>Lek Albanese</displayName>
</currency>
<currency type="AMD">
<displayName>Dram Armeno</displayName>
</currency>
<currency type="ANG">
<displayName>Fiorino delle Antille Olandesi</displayName>
</currency>
<currency type="AOA">
<displayName>Kwanza Angolano</displayName>
</currency>
<currency type="AOK">
<displayName>Kwanza Angolano (1977-1990)</displayName>
</currency>
<currency type="AON">
<displayName>Nuovo Kwanza Angolano (1990-2000)</displayName>
</currency>
<currency type="AOR">
<displayName>Kwanza Reajustado Angolano (1995-1999)</displayName>
</currency>
<currency type="ARA">
<displayName>Austral Argentino</displayName>
</currency>
<currency type="ARP">
<displayName>Peso Argentino (vecchio Cod.)</displayName>
</currency>
<currency type="ARS">
<displayName>Peso Argentino</displayName>
</currency>
<currency type="ATS">
<displayName>Scellino Austriaco</displayName>
</currency>
<currency type="AUD">
<displayName>Dollaro Australiano</displayName>
</currency>
<currency type="AWG">
<displayName>Fiorino di Aruba</displayName>
</currency>
<currency type="AZM">
<displayName>Manat Azero (1993-2006)</displayName>
</currency>
<currency type="AZN">
<displayName>manat azero</displayName>
</currency>
<currency type="BAD">
<displayName>Dinar Bosnia-Herzegovina</displayName>
</currency>
<currency type="BAM">
<displayName>Marco Conv. Bosnia-Erzegovina</displayName>
</currency>
<currency type="BBD">
<displayName>Dollaro di Barbados</displayName>
</currency>
<currency type="BDT">
<displayName>Taka Bangladese</displayName>
</currency>
<currency type="BEC">
<displayName>Franco Belga (convertibile)</displayName>
</currency>
<currency type="BEF">
<displayName>Franco Belga</displayName>
</currency>
<currency type="BEL">
<displayName>Franco Belga (finanziario)</displayName>
</currency>
<currency type="BGL">
<displayName>Lev Bulgaro</displayName>
</currency>
<currency type="BGN">
<displayName>Nuovo Lev Bulgaro</displayName>
</currency>
<currency type="BHD">
<displayName>Dinaro del Bahraini</displayName>
</currency>
<currency type="BIF">
<displayName>Franco del Burundi</displayName>
</currency>
<currency type="BMD">
<displayName>Dollaro delle Bermuda</displayName>
</currency>
<currency type="BND">
<displayName>Dollaro del Brunei</displayName>
</currency>
<currency type="BOB">
<displayName>Boliviano</displayName>
</currency>
<currency type="BOP">
<displayName>Peso Boliviano</displayName>
</currency>
<currency type="BOV">
<displayName>Mvdol Boliviano</displayName>
</currency>
<currency type="BRB">
<displayName>Cruzeiro Novo Brasiliano (1967-1986)</displayName>
</currency>
<currency type="BRC">
<displayName>Cruzado Brasiliano</displayName>
</currency>
<currency type="BRE">
<displayName>Cruzeiro Brasiliano (1990-1993)</displayName>
</currency>
<currency type="BRL">
<displayName>Real Brasiliano</displayName>
</currency>
<currency type="BRN">
<displayName>Cruzado Novo Brasiliano</displayName>
</currency>
<currency type="BRR">
<displayName>Cruzeiro Brasiliano</displayName>
</currency>
<currency type="BSD">
<displayName>Dollaro delle Bahamas</displayName>
</currency>
<currency type="BTN">
<displayName>Ngultrum Butanese</displayName>
</currency>
<currency type="BUK">
<displayName>Kyat Birmano</displayName>
</currency>
<currency type="BWP">
<displayName>Pula del Botswana</displayName>
</currency>
<currency type="BYB">
<displayName>Nuovo Rublo Bielorussia (1994-1999)</displayName>
</currency>
<currency type="BYR">
<displayName>Rublo Bielorussia</displayName>
</currency>
<currency type="BZD">
<displayName>Dollaro Belize</displayName>
</currency>
<currency type="CAD">
<displayName>Dollaro Canadese</displayName>
</currency>
<currency type="CDF">
<displayName>Franco Congolese</displayName>
</currency>
<currency type="CHF">
<displayName>Franco Svizzero</displayName>
</currency>
<currency type="CLF">
<displayName>Unidades de Fomento Chilene</displayName>
</currency>
<currency type="CLP">
<displayName>Peso Cileno</displayName>
</currency>
<currency type="CNY">
<displayName>Renmimbi Cinese</displayName>
</currency>
<currency type="COP">
<displayName>Peso Colombiano</displayName>
</currency>
<currency type="CRC">
<displayName>Colón Costaricano</displayName>
</currency>
<currency type="CSD">
<displayName>antico dinaro serbo</displayName>
</currency>
<currency type="CSK">
<displayName>Corona forte cecoslovacca</displayName>
</currency>
<currency type="CUP">
<displayName>Peso Cubano</displayName>
</currency>
<currency type="CVE">
<displayName>Escudo del Capo Verde</displayName>
</currency>
<currency type="CYP">
<displayName>Sterlina Cipriota</displayName>
</currency>
<currency type="CZK">
<displayName>Corona Ceca</displayName>
</currency>
<currency type="DDM">
<displayName>Ostmark della Germania Orientale</displayName>
</currency>
<currency type="DEM">
<displayName>Marco Tedesco</displayName>
</currency>
<currency type="DJF">
<displayName>Franco Gibutiano</displayName>
</currency>
<currency type="DKK">
<displayName>Corona Danese</displayName>
</currency>
<currency type="DOP">
<displayName>Peso Dominicano</displayName>
</currency>
<currency type="DZD">
<displayName>Dinaro Algerino</displayName>
</currency>
<currency type="ECS">
<displayName>Sucre dell’Ecuador</displayName>
</currency>
<currency type="ECV">
<displayName>Unidad de Valor Constante (UVC) dell’Ecuador</displayName>
</currency>
<currency type="EEK">
<displayName>Corona dell’Estonia</displayName>
</currency>
<currency type="EGP">
<displayName>Sterlina Egiziana</displayName>
</currency>
<currency type="ERN">
<displayName>Nakfa Eritreo</displayName>
</currency>
<currency type="ESA">
<displayName>peseta spagnola account</displayName>
</currency>
<currency type="ESB">
<displayName>peseta spagnola account convertibile</displayName>
</currency>
<currency type="ESP">
<displayName>Peseta Spagnola</displayName>
</currency>
<currency type="ETB">
<displayName>Birr Etiopico</displayName>
</currency>
<currency type="EUR">
<displayName>Euro</displayName>
</currency>
<currency type="FIM">
<displayName>Markka Finlandese</displayName>
</currency>
<currency type="FJD">
<displayName>Dollaro delle Figi</displayName>
</currency>
<currency type="FKP">
<displayName>Sterlina delle Falkland</displayName>
</currency>
<currency type="FRF">
<displayName>Franco Francese</displayName>
</currency>
<currency type="GBP">
<displayName>Sterlina Inglese</displayName>
</currency>
<currency type="GEK">
<displayName>Kupon Larit Georgiano</displayName>
</currency>
<currency type="GEL">
<displayName>Lari Georgiano</displayName>
</currency>
<currency type="GHC">
<displayName>Cedi del Ghana</displayName>
</currency>
<currency type="GHS">
<displayName>Cedi ghanese</displayName>
</currency>
<currency type="GIP">
<displayName>Sterlina di Gibilterra</displayName>
</currency>
<currency type="GMD">
<displayName>Dalasi del Gambia</displayName>
</currency>
<currency type="GNF">
<displayName>Franco della Guinea</displayName>
</currency>
<currency type="GNS">
<displayName>Syli della Guinea</displayName>
</currency>
<currency type="GQE">
<displayName>Ekwele della Guinea Equatoriale</displayName>
</currency>
<currency type="GRD">
<displayName>Dracma Greca</displayName>
</currency>
<currency type="GTQ">
<displayName>Quetzal Guatemalteco</displayName>
</currency>
<currency type="GWE">
<displayName>Escudo della Guinea portoghese</displayName>
</currency>
<currency type="GWP">
<displayName>Peso della Guinea-Bissau</displayName>
</currency>
<currency type="GYD">
<displayName>Dollaro della Guyana</displayName>
</currency>
<currency type="HKD">
<displayName>Dollaro di Hong Kong</displayName>
</currency>
<currency type="HNL">
<displayName>Lempira Hoduregno</displayName>
</currency>
<currency type="HRD">
<displayName>Dinaro Croato</displayName>
</currency>
<currency type="HRK">
<displayName>Kuna Croata</displayName>
</currency>
<currency type="HTG">
<displayName>Gourde Haitiano</displayName>
</currency>
<currency type="HUF">
<displayName>Fiorino Ungherese</displayName>
</currency>
<currency type="IDR">
<displayName>Rupia Indonesiana</displayName>
</currency>
<currency type="IEP">
<displayName>Sterlina irlandese</displayName>
</currency>
<currency type="ILP">
<displayName>Sterlina Israeliana</displayName>
</currency>
<currency type="ILS">
<displayName>Nuovo sheqel israeliano</displayName>
</currency>
<currency type="INR">
<displayName>Rupia Indiana</displayName>
</currency>
<currency type="IQD">
<displayName>Dinaro Iracheno</displayName>
</currency>
<currency type="IRR">
<displayName>Rial Iraniano</displayName>
</currency>
<currency type="ISK">
<displayName>Corona Islandese</displayName>
</currency>
<currency type="ITL">
<pattern>¤ #,##0;-¤ #,##0</pattern>
<displayName>Lira Italiana</displayName>
<decimal>,</decimal>
<group>.</group>
</currency>
<currency type="JMD">
<displayName>Dollaro Giamaicano</displayName>
</currency>
<currency type="JOD">
<displayName>Dinaro Giordano</displayName>
</currency>
<currency type="JPY">
<displayName>Yen Giapponese</displayName>
</currency>
<currency type="KES">
<displayName>Scellino Keniota</displayName>
</currency>
<currency type="KGS">
<displayName>Som Kirghiso</displayName>
</currency>
<currency type="KHR">
<displayName>Riel Cambogiano</displayName>
</currency>
<currency type="KMF">
<displayName>Franco Comoriano</displayName>
</currency>
<currency type="KPW">
<displayName>Won Nordcoreano</displayName>
</currency>
<currency type="KRW">
<displayName>Won Sudcoreano</displayName>
</currency>
<currency type="KWD">
<displayName>Dinaro Kuwaitiano</displayName>
</currency>
<currency type="KYD">
<displayName>Dollaro delle Isole Cayman</displayName>
</currency>
<currency type="KZT">
<displayName>Tenge Kazaco</displayName>
</currency>
<currency type="LAK">
<displayName>Kip Laotiano</displayName>
</currency>
<currency type="LBP">
<displayName>Sterlina Libanese</displayName>
</currency>
<currency type="LKR">
<displayName>Rupia di Sri Lanka</displayName>
</currency>
<currency type="LRD">
<displayName>Dollaro Liberiano</displayName>
</currency>
<currency type="LSL">
<displayName>Loti del Lesotho</displayName>
</currency>
<currency type="LTL">
<displayName>Lita Lituana</displayName>
</currency>
<currency type="LTT">
<displayName>Talonas Lituani</displayName>
</currency>
<currency type="LUC">
<displayName>franco convertibile del Lussemburgo</displayName>
</currency>
<currency type="LUF">
<displayName>Franco del Lussemburgo</displayName>
</currency>
<currency type="LUL">
<displayName>franco finanziario del Lussemburgo</displayName>
</currency>
<currency type="LVL">
<displayName>Lat Lettone</displayName>
</currency>
<currency type="LVR">
<displayName>Rublo Lettone</displayName>
</currency>
<currency type="LYD">
<displayName>Dinaro Libico</displayName>
</currency>
<currency type="MAD">
<displayName>Dirham Marocchino</displayName>
</currency>
<currency type="MAF">
<displayName>Franco Marocchino</displayName>
</currency>
<currency type="MDL">
<displayName>Leu Moldavo</displayName>
</currency>
<currency type="MGA">
<displayName>Ariary Malgascio</displayName>
</currency>
<currency type="MGF">
<displayName>Franco Malgascio</displayName>
</currency>
<currency type="MKD">
<displayName>Dinaro Macedone</displayName>
</currency>
<currency type="MLF">
<displayName>Franco di Mali</displayName>
</currency>
<currency type="MMK">
<displayName>Kyat di Myanmar</displayName>
</currency>
<currency type="MNT">
<displayName>Tugrik Mongolo</displayName>
</currency>
<currency type="MOP">
<displayName>Pataca di Macao</displayName>
</currency>
<currency type="MRO">
<displayName>Ouguiya della Mauritania</displayName>
</currency>
<currency type="MTL">
<displayName>Lira Maltese</displayName>
</currency>
<currency type="MTP">
<displayName>Sterlina Maltese</displayName>
</currency>
<currency type="MUR">
<displayName>Rupia Mauriziana</displayName>
</currency>
<currency type="MVR">
<displayName>Rufiyaa delle Maldive</displayName>
</currency>
<currency type="MWK">
<displayName>Kwacha Malawiano</displayName>
</currency>
<currency type="MXN">
<displayName>Peso Messicano</displayName>
</currency>
<currency type="MXP">
<displayName>Peso messicano d’argento (1861-1992)</displayName>
</currency>
<currency type="MXV">
<displayName>Unidad de Inversion (UDI) Messicana</displayName>
</currency>
<currency type="MYR">
<displayName>Ringgit della Malesia</displayName>
</currency>
<currency type="MZE">
<displayName>Escudo del Mozambico</displayName>
</currency>
<currency type="MZN">
<displayName>Metical del Mozambico</displayName>
</currency>
<currency type="NAD">
<displayName>Dollaro Namibiano</displayName>
</currency>
<currency type="NGN">
<displayName>Naira Nigeriana</displayName>
</currency>
<currency type="NIC">
<displayName>Cordoba Nicaraguense</displayName>
</currency>
<currency type="NIO">
<displayName>Córdoba oro nicaraguense</displayName>
</currency>
<currency type="NLG">
<displayName>Fiorino Olandese</displayName>
</currency>
<currency type="NOK">
<displayName>Corona Norvegese</displayName>
</currency>
<currency type="NPR">
<displayName>Rupia Nepalese</displayName>
</currency>
<currency type="NZD">
<displayName>Dollaro Neozelandese</displayName>
</currency>
<currency type="OMR">
<displayName>Rial Omanita</displayName>
</currency>
<currency type="PAB">
<displayName>Balboa di Panama</displayName>
</currency>
<currency type="PEI">
<displayName>Inti Peruviano</displayName>
</currency>
<currency type="PEN">
<displayName>Sol Nuevo Peruviano</displayName>
</currency>
<currency type="PES">
<displayName>Sol Peruviano</displayName>
</currency>
<currency type="PGK">
<displayName>Kina della Papua Nuova Guinea</displayName>
</currency>
<currency type="PHP">
<displayName>Peso delle Filippine</displayName>
</currency>
<currency type="PKR">
<displayName>Rupia del Pakistan</displayName>
</currency>
<currency type="PLN">
<displayName>Zloty Polacco</displayName>
</currency>
<currency type="PLZ">
<displayName>Zloty Polacco (1950-1995)</displayName>
</currency>
<currency type="PTE">
<displayName>Escudo Portoghese</displayName>
</currency>
<currency type="PYG">
<displayName>Guarani del Paraguay</displayName>
</currency>
<currency type="QAR">
<displayName>Rial del Qatar</displayName>
</currency>
<currency type="RHD">
<displayName>dollaro della Rhodesia</displayName>
</currency>
<currency type="ROL">
<displayName>Leu della Romania</displayName>
</currency>
<currency type="RON">
<displayName>leu rumeno</displayName>
</currency>
<currency type="RSD">
<displayName>Dinaro serbo</displayName>
</currency>
<currency type="RUB">
<displayName>Rublo Russo</displayName>
</currency>
<currency type="RUR">
<displayName>Rublo della CSI</displayName>
</currency>
<currency type="RWF">
<displayName>Franco Ruandese</displayName>
</currency>
<currency type="SAR">
<displayName>Ryal Saudita</displayName>
</currency>
<currency type="SBD">
<displayName>Dollaro delle Isole Solomon</displayName>
</currency>
<currency type="SCR">
<displayName>Rupia delle Seychelles</displayName>
</currency>
<currency type="SDD">
<displayName>Dinaro Sudanese</displayName>
</currency>
<currency type="SDG">
<displayName>Sterlina sudanese</displayName>
</currency>
<currency type="SEK">
<displayName>Corona Svedese</displayName>
</currency>
<currency type="SGD">
<displayName>Dollaro di Singapore</displayName>
</currency>
<currency type="SHP">
<displayName>Sterlina di Sant’Elena</displayName>
</currency>
<currency type="SIT">
<displayName>Tallero Sloveno</displayName>
</currency>
<currency type="SKK">
<displayName>Corona Slovacca</displayName>
</currency>
<currency type="SLL">
<displayName>Leone della Sierra Leone</displayName>
</currency>
<currency type="SOS">
<displayName>Scellino Somalo</displayName>
</currency>
<currency type="SRD">
<displayName>Dollaro surinamese</displayName>
</currency>
<currency type="SRG">
<displayName>Fiorino del Suriname</displayName>
</currency>
<currency type="STD">
<displayName>Dobra di Sao Tomé e Principe</displayName>
</currency>
<currency type="SUR">
<displayName>Rublo Sovietico</displayName>
</currency>
<currency type="SVC">
<displayName>Colón Salvadoregno</displayName>
</currency>
<currency type="SYP">
<displayName>Sterlina Siriana</displayName>
</currency>
<currency type="SZL">
<displayName>Lilangeni dello Swaziland</displayName>
</currency>
<currency type="THB">
<displayName>Baht Tailandese</displayName>
</currency>
<currency type="TJR">
<displayName>Rublo del Tajikistan</displayName>
</currency>
<currency type="TJS">
<displayName>Somoni del Tajikistan</displayName>
</currency>
<currency type="TMM">
<displayName>Manat Turkmeno</displayName>
</currency>
<currency type="TND">
<displayName>Dinaro Tunisino</displayName>
</currency>
<currency type="TOP">
<displayName>Paʻanga di Tonga</displayName>
</currency>
<currency type="TPE">
<displayName>Escudo di Timor</displayName>
</currency>
<currency type="TRL">
<displayName>Lira Turca</displayName>
<displayName count="one">lira turca</displayName>
<displayName count="other">lire turche</displayName>
</currency>
<currency type="TRY">
<displayName>nuova Lira turca</displayName>
<displayName count="one">nuova Lira turca</displayName>
<displayName count="other">nuove Lire turche</displayName>
</currency>
<currency type="TTD">
<displayName>Dollaro di Trinidad e Tobago</displayName>
</currency>
<currency type="TWD">
<displayName>Nuovo dollaro taiwanese</displayName>
</currency>
<currency type="TZS">
<displayName>Scellino della Tanzania</displayName>
</currency>
<currency type="UAH">
<displayName>Hrivna Ucraina</displayName>
</currency>
<currency type="UAK">
<displayName>Karbovanetz Ucraino</displayName>
</currency>
<currency type="UGS">
<displayName>Scellino Ugandese (1966-1987)</displayName>
</currency>
<currency type="UGX">
<displayName>Scellino Ugandese</displayName>
</currency>
<currency type="USD">
<displayName>Dollaro Statunitense</displayName>
</currency>
<currency type="USN">
<displayName>Dollaro Statunitense (Next day)</displayName>
</currency>
<currency type="USS">
<displayName>Dollaro Statunitense (Same day)</displayName>
</currency>
<currency type="UYI">
<displayName>Peso uruguaiano in unità indicizzate</displayName>
</currency>
<currency type="UYP">
<displayName>Peso Uruguaiano (1975-1993)</displayName>
</currency>
<currency type="UYU">
<displayName>Peso Uruguayo uruguaiano</displayName>
</currency>
<currency type="UZS">
<displayName>Sum dell’Uzbekistan</displayName>
</currency>
<currency type="VEB">
<displayName>Bolivar Venezuelano</displayName>
</currency>
<currency type="VEF">
<displayName>Bolívar venezuelano forte</displayName>
</currency>
<currency type="VND">
<displayName>Dong Vietnamita</displayName>
</currency>
<currency type="VUV">
<displayName>Vatu di Vanuatu</displayName>
</currency>
<currency type="WST">
<displayName>Tala della Samoa Occidentale</displayName>
</currency>
<currency type="XAF">
<displayName>Franco CFA BEAC</displayName>
</currency>
<currency type="XAG">
<displayName>Argento</displayName>
</currency>
<currency type="XAU">
<displayName>Oro</displayName>
</currency>
<currency type="XBA">
<displayName>Unità composita europea</displayName>
</currency>
<currency type="XBB">
<displayName>Unità monetaria europea</displayName>
</currency>
<currency type="XBC">
<displayName>Unità di acconto europea (XBC)</displayName>
</currency>
<currency type="XBD">
<displayName>Unità di acconto europea (XBD)</displayName>
</currency>
<currency type="XCD">
<displayName>Dollaro dei Caraibi Orientali</displayName>
</currency>
<currency type="XDR">
<displayName>Diritti Speciali di Incasso</displayName>
</currency>
<currency type="XFO">
<displayName>Franco Oro Francese</displayName>
</currency>
<currency type="XFU">
<displayName>Franco UIC Francese</displayName>
</currency>
<currency type="XOF">
<displayName>Franco CFA BCEAO</displayName>
</currency>
<currency type="XPD">
<displayName>Palladio</displayName>
</currency>
<currency type="XPF">
<displayName>Franco CFP</displayName>
</currency>
<currency type="XPT">
<displayName>platino</displayName>
</currency>
<currency type="XRE">
<displayName>fondi RINET</displayName>
</currency>
<currency type="XTS">
<displayName>codice di verifica della valuta</displayName>
</currency>
<currency type="XXX">
<displayName>Nessuna valuta</displayName>
<displayName count="one">valuta sconosciuta/non valida</displayName>
</currency>
<currency type="YDD">
<displayName>Dinaro dello Yemen</displayName>
</currency>
<currency type="YER">
<displayName>Rial dello Yemen</displayName>
</currency>
<currency type="YUD">
<displayName>Dinaro Forte Yugoslavo</displayName>
</currency>
<currency type="YUM">
<displayName>Dinaro Noviy Yugoslavo</displayName>
</currency>
<currency type="YUN">
<displayName>Dinaro Convertibile Yugoslavo</displayName>
</currency>
<currency type="ZAL">
<displayName>Rand Sudafricano (finanziario)</displayName>
</currency>
<currency type="ZAR">
<displayName>Rand Sudafricano</displayName>
</currency>
<currency type="ZMK">
<displayName>Kwacha dello Zambia</displayName>
</currency>
<currency type="ZRN">
<displayName>Nuovo Zaire dello Zaire</displayName>
</currency>
<currency type="ZRZ">
<displayName>Zaire dello Zaire</displayName>
</currency>
<currency type="ZWD">
<displayName>Dollaro dello Zimbabwe</displayName>
</currency>
</currencies>
</numbers>
<units>
<unit type="day">
<unitPattern count="one">{0} giorno</unitPattern>
<unitPattern count="other">{0} giorni</unitPattern>
</unit>
<unit type="hour">
<unitPattern count="one">{0} ora</unitPattern>
<unitPattern count="other">{0} ore</unitPattern>
</unit>
<unit type="minute">
<unitPattern count="one">{0} minuto</unitPattern>
<unitPattern count="other">{0} minuti</unitPattern>
</unit>
<unit type="month">
<unitPattern count="one">{0} mese</unitPattern>
<unitPattern count="other">{0} mesi</unitPattern>
</unit>
<unit type="second">
<unitPattern count="one">{0} secondo</unitPattern>
<unitPattern count="other">{0} secondi</unitPattern>
</unit>
<unit type="week">
<unitPattern count="one">{0} settimana</unitPattern>
<unitPattern count="other">{0} settimane</unitPattern>
</unit>
<unit type="year">
<unitPattern count="one">{0} anno</unitPattern>
<unitPattern count="other">{0} anni</unitPattern>
</unit>
</units>
<posix>
<messages>
<yesstr>sì:si:s</yesstr>
<nostr>no:n</nostr>
</messages>
</posix>
</ldml>