File size: 125,161 Bytes
b8b3e56 |
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 |
,entity,category,total,1,2,3,4,5,6,7,8,9,10,11,12,mean
1,Suisse,LOC,851,23,52,143,244,204,93,92,0,0,0,0,0,121.57
2,Chine,LOC,450,40,155,30,92,63,34,36,0,0,0,0,0,64.29
3,Etats-Unis,LOC,325,8,19,29,132,52,53,32,0,0,0,0,0,46.43
4,Genève,LOC,287,4,41,55,65,78,24,20,0,0,0,0,0,41.0
5,Europe,LOC,210,3,28,20,75,32,39,13,0,0,0,0,0,30.0
6,la Chine,LOC,185,10,41,35,38,27,20,14,0,0,0,0,0,26.43
7,Italie,LOC,184,0,36,51,41,27,22,7,0,0,0,0,0,26.29
8,France,LOC,183,2,32,27,55,31,20,16,0,0,0,0,0,26.14
9,Etats,LOC,160,0,21,32,41,29,17,20,0,0,0,0,0,22.86
10,Wuhan,LOC,151,16,54,10,31,21,8,11,0,0,0,0,0,21.57
11,Allemagne,LOC,130,3,11,22,39,23,18,14,0,0,0,0,0,18.57
12,Pékin,LOC,115,6,23,6,17,31,22,10,0,0,0,0,0,16.43
13,la France,LOC,88,4,3,13,27,24,11,6,0,0,0,0,0,12.57
14,Etat,LOC,86,2,5,10,26,21,15,7,0,0,0,0,0,12.29
15,Iran,LOC,84,3,38,18,8,2,2,13,0,0,0,0,0,12.0
16,Espagne,LOC,84,1,3,10,34,20,8,8,0,0,0,0,0,12.0
17,Confédération,LOC,83,3,0,9,14,24,17,16,0,0,0,0,0,11.86
18,Berne,LOC,65,2,0,14,8,24,12,5,0,0,0,0,0,9.29
19,Afrique,LOC,65,0,5,6,18,10,18,8,0,0,0,0,0,9.29
20,Tessin,LOC,64,0,4,24,16,13,5,2,0,0,0,0,0,9.14
21,Suisses,LOC,61,1,1,4,19,20,8,8,0,0,0,0,0,8.71
22,Brésil,LOC,61,0,6,0,14,6,17,18,0,0,0,0,0,8.71
23,Corée du Sud,LOC,59,1,36,9,5,4,1,3,0,0,0,0,0,8.43
24,Royaume,LOC,58,0,3,3,21,13,13,5,0,0,0,0,0,8.29
25,Uni,LOC,56,0,4,2,20,12,13,5,0,0,0,0,0,8.0
26,CHUV,LOC,55,0,0,11,17,15,6,6,0,0,0,0,0,7.86
27,Japon,LOC,51,2,19,3,19,6,0,2,0,0,0,0,0,7.29
28,Lausanne,LOC,50,1,0,15,13,15,6,0,0,0,0,0,0,7.14
29,Bâle,LOC,49,2,13,12,5,14,3,0,0,0,0,0,0,7.0
30,Zurich,LOC,46,2,11,7,4,11,7,4,0,0,0,0,0,6.57
31,Alpes,LOC,43,1,3,3,15,19,1,1,0,0,0,0,0,6.14
32,EMS,LOC,43,0,0,1,9,29,4,0,0,0,0,0,0,6.14
33,Asie,LOC,42,2,5,5,15,5,10,0,0,0,0,0,0,6.0
34,Russie,LOC,42,1,2,3,11,10,6,9,0,0,0,0,0,6.0
35,Paris,LOC,38,1,8,1,3,9,8,8,0,0,0,0,0,5.43
36,Hong Kong,LOC,37,15,15,5,0,0,0,2,0,0,0,0,0,5.29
37,Auvergne,LOC,36,0,0,0,20,16,0,0,0,0,0,0,0,5.14
38,Autriche,LOC,35,0,13,4,9,4,2,3,0,0,0,0,0,5.0
39,l'Italie,LOC,35,0,19,9,3,1,3,0,0,0,0,0,0,5.0
40,Maroc,LOC,34,0,0,0,8,17,3,6,0,0,0,0,0,4.86
41,États-Unis,LOC,34,0,2,3,10,16,1,2,0,0,0,0,0,4.86
42,Rhône,LOC,33,0,0,0,16,15,0,2,0,0,0,0,0,4.71
43,Lyon,LOC,32,0,1,0,19,11,0,1,0,0,0,0,0,4.57
44,Canada,LOC,31,0,4,3,7,11,2,4,0,0,0,0,0,4.43
45,canton de Vaud,LOC,31,0,0,6,7,10,4,4,0,0,0,0,0,4.43
46,Centre,LOC,30,1,3,5,7,7,4,3,0,0,0,0,0,4.29
47,Belgique,LOC,29,0,2,3,1,14,4,5,0,0,0,0,0,4.14
48,Roche,LOC,28,3,0,1,19,0,2,3,0,0,0,0,0,4.0
49,Français,LOC,28,1,0,0,7,17,1,2,0,0,0,0,0,4.0
50,Inde,LOC,28,0,2,2,3,9,6,6,0,0,0,0,0,4.0
51,Amérique,LOC,27,0,2,0,9,0,9,7,0,0,0,0,0,3.86
52,Rome,LOC,27,1,7,1,3,9,6,0,0,0,0,0,0,3.86
53,Hubei,LOC,26,1,15,2,6,1,0,1,0,0,0,0,0,3.71
54,Croix,LOC,26,0,4,0,5,1,3,13,0,0,0,0,0,3.71
55,La Chine,LOC,26,1,12,3,6,4,0,0,0,0,0,0,0,3.71
56,l'Europe,LOC,25,0,1,2,8,0,10,4,0,0,0,0,0,3.57
57,La France,LOC,25,2,1,5,4,2,11,0,0,0,0,0,0,3.57
58,Londres,LOC,25,0,3,3,6,3,9,1,0,0,0,0,0,3.57
59,Australie,LOC,24,0,4,1,1,11,3,4,0,0,0,0,0,3.43
60,New York,LOC,24,0,1,7,3,6,6,1,0,0,0,0,0,3.43
61,Grenoble,LOC,24,0,0,0,20,4,0,0,0,0,0,0,0,3.43
62,Danemark,LOC,23,0,5,2,11,1,4,0,0,0,0,0,0,3.29
63,Vaud,LOC,22,0,0,5,6,6,0,5,0,0,0,0,0,3.14
64,l’Italie,LOC,21,0,0,6,4,3,8,0,0,0,0,0,0,3.0
65,Pays,LOC,21,0,3,1,9,1,6,1,0,0,0,0,0,3.0
66,Martissant,LOC,20,0,0,0,20,0,0,0,0,0,0,0,0,2.86
67,Bas,LOC,20,0,2,1,9,1,6,1,0,0,0,0,0,2.86
68,Ebola,LOC,20,0,2,7,8,2,0,1,0,0,0,0,0,2.86
69,Taïwan,LOC,20,1,1,1,11,5,0,1,0,0,0,0,0,2.86
70,PDC,LOC,20,0,0,5,4,4,7,0,0,0,0,0,0,2.86
71,Fribourg,LOC,20,0,0,3,7,9,0,1,0,0,0,0,0,2.86
72,Bruxelles,LOC,19,0,6,0,3,3,7,0,0,0,0,0,0,2.71
73,Milan,LOC,19,0,6,5,0,0,8,0,0,0,0,0,0,2.71
74,Singapour,LOC,19,0,5,3,4,2,3,2,0,0,0,0,0,2.71
75,Berlin,LOC,19,1,1,1,9,3,3,1,0,0,0,0,0,2.71
76,VD,LOC,19,0,0,1,8,3,7,0,0,0,0,0,0,2.71
77,Catalogne,LOC,19,0,1,0,1,14,2,1,0,0,0,0,0,2.71
78,Washington,LOC,18,1,3,1,5,6,1,1,0,0,0,0,0,2.57
79,Neuchâtel,LOC,18,0,4,3,5,2,1,3,0,0,0,0,0,2.57
80,Valais,LOC,18,0,0,6,3,9,0,0,0,0,0,0,0,2.57
81,Sud,LOC,17,0,0,0,9,0,7,1,0,0,0,0,0,2.43
82,Moyen-Orient,LOC,17,1,3,0,6,1,4,2,0,0,0,0,0,2.43
83,Jura,LOC,17,0,0,1,2,9,3,2,0,0,0,0,0,2.43
84,Espagnols,LOC,17,0,0,0,12,1,0,4,0,0,0,0,0,2.43
85,Hongkong,LOC,17,3,1,4,3,4,2,0,0,0,0,0,0,2.43
86,Américains,LOC,17,0,2,0,6,2,1,6,0,0,0,0,0,2.43
87,Celles,LOC,17,0,2,4,6,1,2,2,0,0,0,0,0,2.43
88,Seco,LOC,17,0,0,8,5,3,0,1,0,0,0,0,0,2.43
89,Lombardie,LOC,16,0,3,3,3,6,1,0,0,0,0,0,0,2.29
90,Afrique du Sud,LOC,16,0,0,1,6,4,4,1,0,0,0,0,0,2.29
91,Nigeria,LOC,16,0,4,0,3,7,1,1,0,0,0,0,0,2.29
92,Genevois,LOC,16,0,0,3,2,4,5,2,0,0,0,0,0,2.29
93,État,LOC,16,0,0,1,9,3,2,1,0,0,0,0,0,2.29
94,l'Afrique,LOC,16,0,0,7,2,2,4,1,0,0,0,0,0,2.29
95,Grèce,LOC,15,0,3,1,1,5,3,2,0,0,0,0,0,2.14
96,Grande-Bretagne,LOC,15,0,3,0,7,3,1,1,0,0,0,0,0,2.14
97,Corée du Nord,LOC,15,0,7,2,1,1,4,0,0,0,0,0,0,2.14
98,Téhéran,LOC,15,1,6,0,5,1,0,2,0,0,0,0,0,2.14
99,Croatie,LOC,15,0,6,0,1,1,7,0,0,0,0,0,0,2.14
100,Covid-19,LOC,15,0,0,4,1,3,1,6,0,0,0,0,0,2.14
101,Rouge,LOC,15,0,2,0,0,2,3,8,0,0,0,0,0,2.14
102,Portugal,LOC,15,0,0,0,4,3,8,0,0,0,0,0,0,2.14
103,Ukraine,LOC,15,0,0,1,0,0,1,13,0,0,0,0,0,2.14
104,Mexique,LOC,15,0,2,0,1,0,2,10,0,0,0,0,0,2.14
105,Algérie,LOC,15,0,4,0,0,5,5,1,0,0,0,0,0,2.14
106,Angleterre,LOC,15,0,1,1,4,5,2,2,0,0,0,0,0,2.14
107,Nord,LOC,14,0,2,1,3,0,8,0,0,0,0,0,0,2.0
108,Lonza,LOC,14,0,0,0,3,9,1,1,0,0,0,0,0,2.0
109,Tunisie,LOC,14,0,0,0,0,13,0,1,0,0,0,0,0,2.0
110,Californie,LOC,14,0,0,4,4,1,4,1,0,0,0,0,0,2.0
111,États,LOC,14,1,0,1,3,2,5,2,0,0,0,0,0,2.0
112,Chinois,LOC,13,2,4,1,2,4,0,0,0,0,0,0,0,1.86
113,Nyon,LOC,13,0,0,6,0,5,2,0,0,0,0,0,0,1.86
114,Turquie,LOC,13,1,2,0,1,6,1,2,0,0,0,0,0,1.86
115,Egypte,LOC,13,0,4,0,0,6,2,1,0,0,0,0,0,1.86
116,Italiens,LOC,13,0,0,2,2,4,3,2,0,0,0,0,0,1.86
117,Suède,LOC,13,0,0,1,3,2,5,2,0,0,0,0,0,1.86
118,Trésor,LOC,13,0,2,0,11,0,0,0,0,0,0,0,0,1.86
119,Norvège,LOC,13,0,5,1,4,2,1,0,0,0,0,0,0,1.86
120,Covid,LOC,13,0,0,1,2,5,4,1,0,0,0,0,0,1.86
121,Venezuela,LOC,13,0,0,4,0,1,6,2,0,0,0,0,0,1.86
122,Pakistan,LOC,13,0,3,1,4,1,0,4,0,0,0,0,0,1.86
123,Thaïlande,LOC,13,4,0,1,2,2,2,2,0,0,0,0,0,1.86
124,Centre hospitalier universitaire vaudois,LOC,13,0,0,3,3,2,2,3,0,0,0,0,0,1.86
125,Alémaniques,LOC,13,0,0,0,3,4,4,2,0,0,0,0,0,1.86
126,l'Espagne,LOC,13,0,1,1,7,1,2,1,0,0,0,0,0,1.86
127,Israël,LOC,12,2,1,0,2,2,3,2,0,0,0,0,0,1.71
128,Port-au-Prince,LOC,12,0,0,0,12,0,0,0,0,0,0,0,0,1.71
129,Shanghai,LOC,12,2,6,0,3,1,0,0,0,0,0,0,0,1.71
130,Pacifique,LOC,12,0,1,1,7,0,2,1,0,0,0,0,0,1.71
131,Romands,LOC,12,0,0,0,4,4,3,1,0,0,0,0,0,1.71
132,Serbie,LOC,12,0,1,0,0,2,4,5,0,0,0,0,0,1.71
133,Allemands,LOC,12,0,1,3,3,3,1,1,0,0,0,0,0,1.71
134,Philippines,LOC,11,0,6,0,1,2,2,0,0,0,0,0,0,1.57
135,Wall Street,LOC,11,0,4,2,3,2,0,0,0,0,0,0,0,1.57
136,du Nord,LOC,11,0,10,0,1,0,0,0,0,0,0,0,0,1.57
137,Arabie saoudite,LOC,11,0,6,0,3,1,1,0,0,0,0,0,0,1.57
138,Olten,LOC,11,0,0,0,0,0,0,11,0,0,0,0,0,1.57
139,ministère de la Santé,LOC,11,0,6,0,0,2,1,2,0,0,0,0,0,1.57
140,Haute-Savoie,LOC,11,0,1,2,2,5,0,1,0,0,0,0,0,1.57
141,Madrid,LOC,11,0,1,1,6,1,1,1,0,0,0,0,0,1.57
142,Kinshasa,LOC,11,0,0,0,0,0,11,0,0,0,0,0,0,1.57
143,Bangladesh,LOC,11,0,0,2,0,7,2,0,0,0,0,0,0,1.57
144,Champ-Dollon,LOC,11,0,0,4,6,1,0,0,0,0,0,0,0,1.57
145,Perjeta,LOC,11,0,0,0,11,0,0,0,0,0,0,0,0,1.57
146,Hôpitaux,LOC,11,1,0,1,4,3,1,1,0,0,0,0,0,1.57
147,Haïti,LOC,10,0,0,1,9,0,0,0,0,0,0,0,0,1.43
148,République démocratique du Congo,LOC,10,1,2,1,3,1,1,1,0,0,0,0,0,1.43
149,Afrique subsaharienne,LOC,10,0,6,1,0,0,1,2,0,0,0,0,0,1.43
150,L'Italie,LOC,10,0,1,2,5,0,1,1,0,0,0,0,0,1.43
151,l’Europe,LOC,10,0,0,1,4,2,2,1,0,0,0,0,0,1.43
152,les Etats-Unis,LOC,10,0,1,2,4,1,0,2,0,0,0,0,0,1.43
153,International,LOC,10,0,0,2,3,4,0,1,0,0,0,0,0,1.43
154,Brigue,LOC,10,0,0,1,0,9,0,0,0,0,0,0,0,1.43
155,Cnuced,LOC,10,0,0,4,1,0,5,0,0,0,0,0,0,1.43
156,R0,LOC,10,0,0,0,4,6,0,0,0,0,0,0,0,1.43
157,Maison Blanche,LOC,10,0,0,0,8,0,2,0,0,0,0,0,0,1.43
158,Cervin,LOC,9,0,0,0,6,3,0,0,0,0,0,0,0,1.29
159,Barcelone,LOC,9,0,0,0,3,3,2,1,0,0,0,0,0,1.29
160,Amérique du Nord,LOC,9,0,1,0,6,1,0,1,0,0,0,0,0,1.29
161,Les Etats-Unis,LOC,9,0,2,1,2,2,1,1,0,0,0,0,0,1.29
162,Guinée,LOC,9,0,0,1,1,5,1,1,0,0,0,0,0,1.29
163,Maldives,LOC,9,0,0,0,0,8,0,1,0,0,0,0,0,1.29
164,Macao,LOC,9,1,7,1,0,0,0,0,0,0,0,0,0,1.29
165,Davos,LOC,9,6,0,0,0,1,1,1,0,0,0,0,0,1.29
166,Pérou,LOC,8,0,0,0,4,1,1,2,0,0,0,0,0,1.14
167,Balkans,LOC,8,0,1,0,1,0,5,1,0,0,0,0,0,1.14
168,CoV-1,LOC,8,0,0,5,1,2,0,0,0,0,0,0,0,1.14
169,Europe de l'Est,LOC,8,0,0,0,5,0,2,1,0,0,0,0,0,1.14
170,Venise,LOC,8,0,2,5,0,0,1,0,0,0,0,0,0,1.14
171,HUG,LOC,8,1,0,0,4,1,0,2,0,0,0,0,0,1.14
172,Liban,LOC,8,0,2,0,2,4,0,0,0,0,0,0,0,1.14
173,Port-Bouët,LOC,8,0,0,0,0,4,4,0,0,0,0,0,0,1.14
174,Chypre,LOC,8,0,0,0,0,8,0,0,0,0,0,0,0,1.14
175,A,LOC,8,0,0,0,5,3,0,0,0,0,0,0,0,1.14
176,Syrie,LOC,8,0,2,3,2,1,0,0,0,0,0,0,0,1.14
177,L'Espagne,LOC,8,0,0,0,2,5,1,0,0,0,0,0,0,1.14
178,Sri Lanka,LOC,8,0,0,0,2,5,1,0,0,0,0,0,0,1.14
179,Morges,LOC,8,0,0,4,3,1,0,0,0,0,0,0,0,1.14
180,Amérique du Sud,LOC,8,0,2,0,1,2,1,2,0,0,0,0,0,1.14
181,de France,LOC,8,0,1,0,2,4,1,0,0,0,0,0,0,1.14
182,Slovénie,LOC,8,0,3,2,0,1,2,0,0,0,0,0,0,1.14
183,Chili,LOC,8,0,0,0,1,3,2,2,0,0,0,0,0,1.14
184,Texas,LOC,8,0,0,0,0,2,5,1,0,0,0,0,0,1.14
185,Bernois,LOC,8,0,0,1,0,7,0,0,0,0,0,0,0,1.14
186,Afghanistan,LOC,8,0,4,2,1,1,0,0,0,0,0,0,0,1.14
187,Cambodge,LOC,8,0,3,0,0,1,4,0,0,0,0,0,0,1.14
188,l’Afrique,LOC,8,0,0,0,1,5,1,1,0,0,0,0,0,1.14
189,Martigny-les-Bains,LOC,7,0,0,7,0,0,0,0,0,0,0,0,0,1.0
190,SwissCovid,LOC,7,0,0,0,0,0,7,0,0,0,0,0,0,1.0
191,Campo,LOC,7,0,0,0,7,0,0,0,0,0,0,0,0,1.0
192,Cern,LOC,7,0,0,0,7,0,0,0,0,0,0,0,0,1.0
193,CERN,LOC,7,0,0,0,7,0,0,0,0,0,0,0,0,1.0
194,Ocrevus,LOC,7,0,0,0,7,0,0,0,0,0,0,0,0,1.0
195,Westphalie,LOC,7,0,0,0,1,0,6,0,0,0,0,0,0,1.0
196,Ouest,LOC,7,0,0,0,2,1,3,1,0,0,0,0,0,1.0
197,Région,LOC,7,0,0,0,6,1,0,0,0,0,0,0,0,1.0
198,Indonésie,LOC,7,0,0,1,1,2,3,0,0,0,0,0,0,1.0
199,le Japon,LOC,7,0,3,0,0,3,1,0,0,0,0,0,0,1.0
200,Européens,LOC,7,0,0,0,4,1,2,0,0,0,0,0,0,1.0
201,Roumanie,LOC,7,0,3,0,4,0,0,0,0,0,0,0,0,1.0
202,Italien,LOC,7,0,5,0,0,2,0,0,0,0,0,0,0,1.0
203,Afrique de l'Ouest,LOC,7,0,1,1,1,0,4,0,0,0,0,0,0,1.0
204,La Mecque,LOC,7,0,3,0,2,0,2,0,0,0,0,0,0,1.0
205,Yémen,LOC,7,0,0,2,1,4,0,0,0,0,0,0,0,1.0
206,Luxembourg,LOC,7,0,0,1,0,0,2,4,0,0,0,0,0,1.0
207,RDC,LOC,7,0,0,2,1,2,2,0,0,0,0,0,0,1.0
208,Bergame,LOC,7,0,4,2,0,1,0,0,0,0,0,0,0,1.0
209,Domodossola,LOC,7,0,0,1,0,6,0,0,0,0,0,0,0,1.0
210,Amsterdam,LOC,6,0,1,0,0,0,5,0,0,0,0,0,0,0.86
211,B,LOC,6,0,0,0,3,3,0,0,0,0,0,0,0,0.86
212,Helvetia,LOC,6,0,0,0,1,4,0,1,0,0,0,0,0,0.86
213,Bâloise,LOC,6,0,0,1,0,5,0,0,0,0,0,0,0,0.86
214,Cuba,LOC,6,0,0,2,0,4,0,0,0,0,0,0,0,0.86
215,Nouvelle,LOC,6,0,0,0,2,3,0,1,0,0,0,0,0,0.86
216,Vietnam,LOC,6,1,3,0,0,1,1,0,0,0,0,0,0,0.86
217,canton de Genève,LOC,6,0,0,0,2,3,0,1,0,0,0,0,0,0.86
218,Nextstrain,LOC,6,0,0,0,0,5,0,1,0,0,0,0,0,0.86
219,Blanche,LOC,6,0,0,1,0,0,5,0,0,0,0,0,0,0.86
220,Zélande,LOC,6,0,0,0,2,3,0,1,0,0,0,0,0,0.86
221,Université de Zurich,LOC,6,0,0,0,2,3,1,0,0,0,0,0,0,0.86
222,Colmar,LOC,6,0,0,0,2,4,0,0,0,0,0,0,0,0.86
223,Rhénanie,LOC,6,0,0,0,1,0,5,0,0,0,0,0,0,0.86
224,Lausannois,LOC,6,0,1,1,0,4,0,0,0,0,0,0,0,0.86
225,Costa Rica,LOC,6,0,0,0,0,5,0,1,0,0,0,0,0,0.86
226,Rio de Janeiro,LOC,6,0,0,0,4,0,1,1,0,0,0,0,0,0.86
227,Hemlibra,LOC,6,0,0,0,6,0,0,0,0,0,0,0,0,0.86
228,Argovie,LOC,6,0,2,0,0,2,0,2,0,0,0,0,0,0.86
229,Irak,LOC,6,0,4,1,1,0,0,0,0,0,0,0,0,0.86
230,Sierra Leone,LOC,6,0,0,3,1,1,1,0,0,0,0,0,0,0.86
231,Dubaï,LOC,6,0,2,0,0,4,0,0,0,0,0,0,0,0.86
232,mont Blanc,LOC,6,0,6,0,0,0,0,0,0,0,0,0,0,0.86
233,Bulgari,LOC,6,0,6,0,0,0,0,0,0,0,0,0,0,0.86
234,Nice,LOC,6,0,0,0,1,0,0,5,0,0,0,0,0,0.86
235,Coronavirus,LOC,6,0,2,3,1,0,0,0,0,0,0,0,0,0.86
236,Caraïbes,LOC,6,0,0,0,0,0,3,3,0,0,0,0,0,0.86
237,Bénin,LOC,6,0,0,0,1,0,0,5,0,0,0,0,0,0.86
238,Occident,LOC,6,0,1,1,2,2,0,0,0,0,0,0,0,0.86
239,Saint-Gervais,LOC,6,0,0,0,0,6,0,0,0,0,0,0,0,0.86
240,ZH,LOC,6,0,0,1,0,0,5,0,0,0,0,0,0,0.86
241,Ethiopie,LOC,6,0,0,5,0,0,1,0,0,0,0,0,0,0.86
242,Tokyo,LOC,6,0,4,2,0,0,0,0,0,0,0,0,0,0.86
243,Vernets,LOC,6,0,0,4,0,2,0,0,0,0,0,0,0,0.86
244,Floride,LOC,6,0,0,0,0,0,5,1,0,0,0,0,0,0.86
245,Lisbonne,LOC,6,0,0,0,0,0,5,1,0,0,0,0,0,0.86
246,Népal,LOC,6,0,0,0,0,3,3,0,0,0,0,0,0,0.86
247,Afrique de l’Ouest,LOC,6,0,2,2,1,1,0,0,0,0,0,0,0,0.86
248,Macédoine du Nord,LOC,6,0,2,0,0,1,3,0,0,0,0,0,0,0.86
249,Palais fédéral,LOC,6,0,0,0,0,3,1,2,0,0,0,0,0,0.86
250,Moscou,LOC,6,0,3,0,1,2,0,0,0,0,0,0,0,0.86
251,Ci,LOC,6,0,0,0,0,0,6,0,0,0,0,0,0,0.86
252,Brésilien,LOC,6,0,2,0,1,2,0,1,0,0,0,0,0,0.86
253,Atlantique,LOC,5,0,0,0,2,1,0,2,0,0,0,0,0,0.71
254,Herceptin,LOC,5,0,0,0,5,0,0,0,0,0,0,0,0,0.71
255,Toulouse,LOC,5,0,0,1,0,4,0,0,0,0,0,0,0,0.71
256,Marseille,LOC,5,1,1,2,0,1,0,0,0,0,0,0,0,0.71
257,Libye,LOC,5,0,0,0,4,1,0,0,0,0,0,0,0,0.71
258,Genevoise,LOC,5,0,0,2,2,1,0,0,0,0,0,0,0,0.71
259,Amérique centrale,LOC,5,0,0,0,2,0,2,1,0,0,0,0,0,0.71
260,Vieux Continent,LOC,5,0,0,0,3,0,2,0,0,0,0,0,0,0.71
261,Yokohama,LOC,5,0,5,0,0,0,0,0,0,0,0,0,0,0.71
262,VS,LOC,5,0,0,1,0,2,1,1,0,0,0,0,0,0.71
263,Marly,LOC,5,0,0,4,0,1,0,0,0,0,0,0,0,0.71
264,Unis,LOC,5,0,1,0,0,3,1,0,0,0,0,0,0,0.71
265,du Sud,LOC,5,0,0,0,3,1,0,1,0,0,0,0,0,0.71
266,Meylan,LOC,5,0,0,0,3,2,0,0,0,0,0,0,0,0.71
267,EIGENMANN,LOC,5,0,0,2,1,1,1,0,0,0,0,0,0,0.71
268,canton du Tessin,LOC,5,0,0,4,0,1,0,0,0,0,0,0,0,0.71
269,Mtn,LOC,5,0,0,0,0,0,5,0,0,0,0,0,0,0.71
270,canton de Neuchâtel,LOC,5,0,1,0,1,3,0,0,0,0,0,0,0,0.71
271,Hexagone,LOC,5,0,0,2,2,0,0,1,0,0,0,0,0,0.71
272,Hawaï,LOC,5,0,0,0,0,0,5,0,0,0,0,0,0,0.71
273,L'Afrique,LOC,5,0,2,0,1,2,0,0,0,0,0,0,0,0.71
274,Maison,LOC,5,0,0,1,0,0,4,0,0,0,0,0,0,0.71
275,Saint-Gall,LOC,5,0,0,0,1,3,1,0,0,0,0,0,0,0.71
276,Yopougon,LOC,5,0,0,0,0,0,5,0,0,0,0,0,0,0.71
277,Arc lémanique,LOC,5,0,0,2,2,1,0,0,0,0,0,0,0,0.71
278,Pays de Galles,LOC,5,1,0,0,2,0,1,1,0,0,0,0,0,0.71
279,F,LOC,5,0,0,0,1,4,0,0,0,0,0,0,0,0.71
280,La Tunisie,LOC,5,0,0,0,0,5,0,0,0,0,0,0,0,0.71
281,Marrakech,LOC,5,0,0,0,0,5,0,0,0,0,0,0,0,0.71
282,Tyrol,LOC,5,0,2,3,0,0,0,0,0,0,0,0,0,0.71
283,Polynésie française,LOC,5,0,0,0,0,5,0,0,0,0,0,0,0,0.71
284,Monténégro,LOC,5,0,0,0,0,1,1,3,0,0,0,0,0,0.71
285,outre-Rhin,LOC,5,0,0,2,2,1,0,0,0,0,0,0,0,0.71
286,Brexit,LOC,5,0,2,0,2,1,0,0,0,0,0,0,0,0.71
287,Ville,LOC,5,0,0,1,2,2,0,0,0,0,0,0,0,0.71
288,CAL02,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
289,Unisanté,LOC,4,0,0,0,0,3,1,0,0,0,0,0,0,0.57
290,Gbessia Port,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
291,Gbessia Port 1,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
292,Soudan,LOC,4,0,0,0,3,0,1,0,0,0,0,0,0,0.57
293,Hongrie,LOC,4,0,0,0,3,1,0,0,0,0,0,0,0,0.57
294,Francfort,LOC,4,1,2,0,0,0,0,1,0,0,0,0,0,0.57
295,Sion,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
296,Tchad,LOC,4,0,1,0,1,0,1,1,0,0,0,0,0,0.57
297,Colombie,LOC,4,0,1,1,0,0,1,1,0,0,0,0,0,0.57
298,BUSSLINGER,LOC,4,1,0,0,1,2,0,0,0,0,0,0,0,0.57
299,Chemie,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
300,Novel,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
301,Ems,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
302,Vaudois,LOC,4,0,0,3,1,0,0,0,0,0,0,0,0,0.57
303,Mayenne,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
304,Yvoire,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
305,Pyongyang,LOC,4,0,1,0,0,1,2,0,0,0,0,0,0,0.57
306,Liberia,LOC,4,0,0,3,1,0,0,0,0,0,0,0,0,0.57
307,Alsace,LOC,4,0,0,1,0,3,0,0,0,0,0,0,0,0.57
308,Saint-Gingolph,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
309,Santé,LOC,4,0,1,1,1,0,1,0,0,0,0,0,0,0.57
310,Bolosse,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
311,Ville de,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
312,Hôpital fribourgeois,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
313,Vénétie,LOC,4,0,1,0,3,0,0,0,0,0,0,0,0,0.57
314,Xofluza,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
315,Alecensa,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
316,CHF,LOC,4,0,0,0,4,0,0,0,0,0,0,0,0,0.57
317,Portugais,LOC,4,0,0,0,2,0,0,2,0,0,0,0,0,0.57
318,Irlande,LOC,4,0,0,1,3,0,0,0,0,0,0,0,0,0.57
319,Ecosse,LOC,4,0,0,0,2,1,0,1,0,0,0,0,0,0.57
320,Parisiens,LOC,4,0,0,1,0,3,0,0,0,0,0,0,0,0.57
321,Bulgarie,LOC,4,0,0,1,1,2,0,0,0,0,0,0,0,0.57
322,SO,LOC,4,0,0,0,2,0,2,0,0,0,0,0,0,0.57
323,Sierre,LOC,4,0,0,2,0,1,0,1,0,0,0,0,0,0.57
324,C,LOC,4,0,0,0,0,1,0,3,0,0,0,0,0,0.57
325,Seattle,LOC,4,0,0,0,1,1,1,1,0,0,0,0,0,0.57
326,Kosovo,LOC,4,0,0,0,0,1,2,1,0,0,0,0,0,0.57
327,Bavière,LOC,4,0,0,0,2,1,1,0,0,0,0,0,0,0.57
328,Mulhouse,LOC,4,0,0,0,2,2,0,0,0,0,0,0,0,0.57
329,Amériques,LOC,4,0,0,0,0,1,1,2,0,0,0,0,0,0.57
330,Moria,LOC,4,0,0,1,0,0,3,0,0,0,0,0,0,0.57
331,Lesbos,LOC,4,0,0,1,1,0,2,0,0,0,0,0,0,0.57
332,Pyrénées,LOC,4,2,0,0,0,1,0,1,0,0,0,0,0,0.57
333,hôpital Perez de Leon,LOC,4,0,0,0,0,0,4,0,0,0,0,0,0,0.57
334,XXIe,LOC,4,0,0,1,1,1,1,0,0,0,0,0,0,0.57
335,Asie centrale,LOC,4,0,0,0,0,0,3,1,0,0,0,0,0,0.57
336,Belgrade,LOC,4,0,0,0,0,0,3,1,0,0,0,0,0,0.57
337,Etats américains,LOC,4,0,0,0,0,0,4,0,0,0,0,0,0,0.57
338,Sud-est,LOC,4,0,2,0,2,0,0,0,0,0,0,0,0,0.57
339,Martigny,LOC,4,0,0,1,3,0,0,0,0,0,0,0,0,0.57
340,New-York,LOC,4,0,0,0,0,2,2,0,0,0,0,0,0,0.57
341,Ethiopien,LOC,4,0,1,3,0,0,0,0,0,0,0,0,0,0.57
342,Santiago,LOC,4,0,0,0,0,2,1,1,0,0,0,0,0,0.57
343,CO2,LOC,4,0,0,0,0,0,2,2,0,0,0,0,0,0.57
344,d'Espagne,LOC,4,0,2,0,0,2,0,0,0,0,0,0,0,0.57
345,Groupement hospitalier de l’Ouest lémanique,LOC,4,0,0,2,1,1,0,0,0,0,0,0,0,0.57
346,Viège,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
347,Empire du Milieu,LOC,4,0,3,1,0,0,0,0,0,0,0,0,0,0.57
348,Orientales,LOC,4,3,0,0,0,1,0,0,0,0,0,0,0,0.57
349,Liechtenstein,LOC,4,0,0,2,1,0,1,0,0,0,0,0,0,0.57
350,Sicile,LOC,4,0,4,0,0,0,0,0,0,0,0,0,0,0.57
351,CHSLD,LOC,4,0,0,0,0,0,0,4,0,0,0,0,0,0.57
352,Locarno,LOC,4,0,0,2,0,2,0,0,0,0,0,0,0,0.57
353,Roquebrune,LOC,4,0,0,0,0,0,0,4,0,0,0,0,0,0.57
354,Monthey,LOC,4,0,0,1,0,1,0,2,0,0,0,0,0,0.57
355,Douala,LOC,4,0,0,0,0,4,0,0,0,0,0,0,0,0.57
356,CAPEB,LOC,4,0,0,0,3,1,0,0,0,0,0,0,0,0.57
357,Grisons,LOC,4,0,0,2,2,0,0,0,0,0,0,0,0,0.57
358,Sénégal,LOC,4,0,0,0,1,2,0,1,0,0,0,0,0,0.57
359,Baselworld,LOC,4,0,4,0,0,0,0,0,0,0,0,0,0,0.57
360,Mers,LOC,4,1,1,0,0,2,0,0,0,0,0,0,0,0.57
361,FFB,LOC,4,0,0,0,3,1,0,0,0,0,0,0,0,0.57
362,Croix rouge du Bénin,LOC,4,0,0,0,0,0,0,4,0,0,0,0,0,0.57
363,Madagascar,LOC,4,0,0,0,1,3,0,0,0,0,0,0,0,0.57
364,Carrières,LOC,4,0,0,1,1,0,2,0,0,0,0,0,0,0.57
365,Britannique,LOC,4,0,2,0,1,0,1,0,0,0,0,0,0,0.57
366,l'Amérique,LOC,4,0,0,0,1,0,2,1,0,0,0,0,0,0.57
367,Frambois,LOC,4,0,0,3,1,0,0,0,0,0,0,0,0,0.57
368,Vosges,LOC,4,0,0,1,0,3,0,0,0,0,0,0,0,0.57
369,Ankara,LOC,4,0,4,0,0,0,0,0,0,0,0,0,0,0.57
370,Islande,LOC,4,0,1,0,0,2,1,0,0,0,0,0,0,0.57
371,Géorgie,LOC,4,0,1,0,1,1,0,1,0,0,0,0,0,0.57
372,Méditerranée,LOC,4,0,0,0,0,1,0,3,0,0,0,0,0,0.57
373,Anglet,LOC,4,0,0,0,0,0,0,4,0,0,0,0,0,0.57
374,Toscane,LOC,4,0,4,0,0,0,0,0,0,0,0,0,0,0.57
375,Haiti,LOC,4,0,0,0,0,0,0,4,0,0,0,0,0,0.57
376,l’Espagne,LOC,3,0,0,1,1,0,1,0,0,0,0,0,0,0.43
377,Asie du Sud,LOC,3,0,0,0,0,1,2,0,0,0,0,0,0,0.43
378,Leicester,LOC,3,0,0,0,0,1,1,1,0,0,0,0,0,0.43
379,Argentine,LOC,3,0,0,1,1,0,1,0,0,0,0,0,0,0.43
380,Albanie,LOC,3,0,0,1,0,0,2,0,0,0,0,0,0,0.43
381,Vevey,LOC,3,0,0,1,1,0,0,1,0,0,0,0,0,0.43
382,Tanzanie,LOC,3,0,0,1,0,1,1,0,0,0,0,0,0,0.43
383,Croix-Rouge,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
384,Niçois,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
385,La Palmosa,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
386,Antibes,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
387,Bienne,LOC,3,0,0,1,1,0,0,1,0,0,0,0,0,0.43
388,Québec,LOC,3,0,0,0,0,0,1,2,0,0,0,0,0,0.43
389,Combioxin,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
390,aéroport de Zurich,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
391,RECUEILLIS,LOC,3,0,0,1,2,0,0,0,0,0,0,0,0,0.43
392,Chablais,LOC,3,0,0,1,0,2,0,0,0,0,0,0,0,0.43
393,CORONAVIRUS,LOC,3,0,0,0,0,2,0,1,0,0,0,0,0,0.43
394,Corée,LOC,3,0,0,1,0,2,0,0,0,0,0,0,0,0.43
395,Chaîne du Bonheur,LOC,3,0,0,0,0,2,1,0,0,0,0,0,0,0.43
396,LT,LOC,3,0,0,1,1,1,0,0,0,0,0,0,0,0.43
397,L'Europe,LOC,3,0,0,1,1,0,1,0,0,0,0,0,0,0.43
398,La Chaux-de-Fonds,LOC,3,0,0,0,0,2,0,1,0,0,0,0,0,0.43
399,Latins,LOC,3,0,0,1,2,0,0,0,0,0,0,0,0,0.43
400,Manaus,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
401,Météo,LOC,3,0,0,0,0,0,0,3,0,0,0,0,0,0.43
402,IMD,LOC,3,0,0,1,0,0,2,0,0,0,0,0,0,0.43
403,Lucerne,LOC,3,0,0,0,1,2,0,0,0,0,0,0,0,0.43
404,canton de Berne,LOC,3,0,0,0,1,2,0,0,0,0,0,0,0,0.43
405,Est,LOC,3,0,0,0,2,0,0,1,0,0,0,0,0,0.43
406,Ain,LOC,3,0,0,0,2,0,0,1,0,0,0,0,0,0.43
407,Vénissieux,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
408,Cointrin,LOC,3,0,0,0,1,1,1,0,0,0,0,0,0,0.43
409,CCAS,LOC,3,0,0,0,2,0,0,1,0,0,0,0,0,0.43
410,Equateur,LOC,3,0,0,0,1,1,0,1,0,0,0,0,0,0.43
411,Bolivie,LOC,3,0,0,0,0,0,1,2,0,0,0,0,0,0.43
412,Institut,LOC,3,0,0,0,1,0,1,1,0,0,0,0,0,0.43
413,Athènes,LOC,3,0,0,0,1,1,1,0,0,0,0,0,0,0.43
414,Préfecture,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
415,Direct,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
416,Noursoultan,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
417,Somalie,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
418,Haut-Valais,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
419,canton de Fribourg,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
420,Piémont,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
421,Malaisie,LOC,3,0,0,0,2,0,1,0,0,0,0,0,0,0.43
422,Outre-Atlantique,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
423,HES,LOC,3,0,0,0,2,0,1,0,0,0,0,0,0,0.43
424,région Pacifique Ouest,LOC,3,0,0,0,2,1,0,0,0,0,0,0,0,0.43
425,LOGEAN,LOC,3,0,0,0,1,1,0,1,0,0,0,0,0,0.43
426,Mercredi,LOC,3,0,0,0,0,1,0,2,0,0,0,0,0,0.43
427,Cheseaux,LOC,3,0,0,0,0,1,0,2,0,0,0,0,0,0.43
428,Institut de virologie de Wuhan,LOC,3,0,0,0,0,1,1,1,0,0,0,0,0,0.43
429,Turin,LOC,3,0,0,0,1,0,2,0,0,0,0,0,0,0.43
430,Bosnie,LOC,3,0,0,0,0,1,1,1,0,0,0,0,0,0.43
431,Corona,LOC,3,0,0,0,1,2,0,0,0,0,0,0,0,0.43
432,Naissance,LOC,3,0,0,0,1,1,0,1,0,0,0,0,0,0.43
433,Océanie,LOC,3,0,0,0,1,0,1,1,0,0,0,0,0,0.43
434,Kenya,LOC,3,0,0,0,1,1,1,0,0,0,0,0,0,0.43
435,New Jersey,LOC,3,0,0,0,1,0,2,0,0,0,0,0,0,0.43
436,Afrique du Nord,LOC,3,0,0,0,0,1,1,1,0,0,0,0,0,0.43
437,Galice,LOC,3,0,0,0,1,0,0,2,0,0,0,0,0,0.43
438,Département,LOC,3,0,0,0,0,1,1,1,0,0,0,0,0,0.43
439,BE,LOC,3,0,0,0,1,0,2,0,0,0,0,0,0,0.43
440,l'Algérie,LOC,3,0,0,0,0,0,3,0,0,0,0,0,0,0.43
441,Chef,LOC,3,0,0,0,0,0,3,0,0,0,0,0,0,0.43
442,Suisse EN BREF,LOC,3,0,0,0,1,1,1,0,0,0,0,0,0,0.43
443,Asie du sud,LOC,3,0,0,0,0,0,3,0,0,0,0,0,0,0.43
444,BAP,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
445,Valaisan,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
446,Chambre des représentants,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
447,Beach,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
448,Copenhague,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
449,Polynésie,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
450,H,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
451,SwissDRG,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
452,Aragon,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
453,Tanger,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
454,Australiens,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
455,L'Egypte,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
456,l'Egypte,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
457,Enani,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
458,pyramides de Guizeh,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
459,Epalinges,LOC,3,0,0,0,0,3,0,0,0,0,0,0,0,0.43
460,Sarine,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
461,Amazonie,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
462,Finlande,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
463,Bars,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
464,Etats fédérés allemands,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
465,Mayence,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
466,laboratoire BioNTech,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
467,Harbin,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
468,Vaulx-en-Velin,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
469,Rouge française du Rhône,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
470,[email protected],LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
471,Port-Cros,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
472,Santa Marta,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
473,Zarzuela,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
474,Saint-Etienne Métropole,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
475,Actemra,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
476,Gazyvaro,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
477,Gazyva,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
478,Polivy,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
479,Hôpital universitaire de Bâle,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
480,Esbriet,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
481,Aar,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
482,Tavannes,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
483,Kadcyla,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
484,Tecentriq,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
485,Vatel E-learning,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
486,autoroute de Saint Rambert,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
487,A7,LOC,3,0,0,0,3,0,0,0,0,0,0,0,0,0.43
488,Léman,LOC,3,0,0,0,0,1,2,0,0,0,0,0,0,0.43
489,Golfe,LOC,3,0,2,0,1,0,0,0,0,0,0,0,0,0.43
490,Oman,LOC,3,0,3,0,0,0,0,0,0,0,0,0,0,0.43
491,Qom,LOC,3,0,3,0,0,0,0,0,0,0,0,0,0,0.43
492,Antarctique,LOC,3,0,0,2,0,0,1,0,0,0,0,0,0,0.43
493,Chengdu,LOC,3,0,2,0,0,0,0,1,0,0,0,0,0,0.43
494,Bagdad,LOC,3,0,2,0,0,0,0,1,0,0,0,0,0,0.43
495,Ligurie,LOC,3,0,1,0,2,0,0,0,0,0,0,0,0,0.43
496,Séoul,LOC,3,0,1,1,0,0,0,1,0,0,0,0,0,0.43
497,Naples,LOC,3,0,1,1,0,0,1,0,0,0,0,0,0,0.43
498,Emirats arabes unis,LOC,3,1,1,0,0,0,0,1,0,0,0,0,0,0.43
499,l'Afrique de l'Ouest,LOC,3,1,1,0,0,0,1,0,0,0,0,0,0,0.43
500,lycée André,LOC,3,0,0,3,0,0,0,0,0,0,0,0,0,0.43
501,lycée René,LOC,3,0,0,3,0,0,0,0,0,0,0,0,0,0.43
502,Etats européens,LOC,3,0,3,0,0,0,0,0,0,0,0,0,0,0.43
503,Rotkreuz,LOC,3,1,0,0,0,1,1,0,0,0,0,0,0,0.43
504,L’Italie,LOC,3,0,0,2,1,0,0,0,0,0,0,0,0,0.43
505,Chamonix,LOC,3,0,1,0,0,2,0,0,0,0,0,0,0,0.43
506,Canaries,LOC,3,0,2,0,0,1,0,0,0,0,0,0,0,0.43
507,Arménie,LOC,3,0,1,0,0,0,2,0,0,0,0,0,0,0.43
508,République populaire démocratique de Corée,LOC,3,0,2,0,0,0,1,0,0,0,0,0,0,0.43
509,Jérusalem,LOC,3,2,0,0,0,1,0,0,0,0,0,0,0,0.43
510,République islamique,LOC,3,0,1,0,1,0,0,1,0,0,0,0,0,0.43
511,Bourses,LOC,3,0,2,1,0,0,0,0,0,0,0,0,0,0.43
512,Mongolie,LOC,3,0,1,0,0,1,1,0,0,0,0,0,0,0.43
513,Majorque,LOC,3,0,1,0,1,1,0,0,0,0,0,0,0,0.43
514,Etat de New York,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
515,Mali,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
516,TEMPS00020200617eg6h0000w,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
517,Brookland,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
518,Caroline,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
519,Niger,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
520,Royaume du Maroc,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
521,AFPFR00020200428eg4s00ha9,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
522,Grand Palais,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
523,Graben,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
524,Heidi,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
525,Burkina Faso,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
526,Limete,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
527,hôpital Saint-Joseph,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
528,Aarau,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
529,Avasad,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
530,Lutry,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
531,Chloé,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
532,Centre Hospitalier Kabinda,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
533,RPC,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
534,Croissant,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
535,l’Algérie,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
536,Bourbon,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
537,Nicaragua,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
538,Bénévoles,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
539,Andokoi,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
540,Wharf,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
541,Strasbourg,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
542,Paléo,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
543,Oklahoma,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
544,Rhin,LOC,2,0,1,0,1,0,0,0,0,0,0,0,0,0.29
545,Habituées,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
546,AFPFR00020200622eg6m009hp,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
547,mer Egée,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
548,canton de Zurich,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
549,Caracas,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
550,Connecticut,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
551,D,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
552,Ehpad,LOC,2,0,0,0,0,0,1,1,0,0,0,0,0,0.29
553,TEMPS00020200331eg3v00015,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
554,AFPFR00020200619eg6j00om5,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
555,l'Afrique du Sud,LOC,2,0,0,0,0,0,1,1,0,0,0,0,0,0.29
556,FIGPRE0020200430eg4u003ux,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
557,FIGPRE0020200430eg4u00439,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
558,Asie du Sud-Est,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
559,Lune,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
560,Zurichois,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
561,Mauritanie,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
562,Slovaquie,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
563,Lettonie,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
564,Départements,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
565,Naters,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
566,TEMPS00020200409eg4900016,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
567,SO Valais,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
568,TEMPS00020200411eg4b0000l,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
569,AFPFR00020200408eg4800dqh,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
570,Ajoie,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
571,AFPFR00020200406eg4600ir4,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
572,Annemasse,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
573,Gruyères,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
574,AFNWSF0020200407eg47004bl,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
575,AFPFR00020200408eg4800ox9,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
576,LHC,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
577,Post-Finance,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
578,Guayaquil,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
579,AFPFR00020200415eg4f00nm1,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
580,G,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
581,AFPFR00020200415eg4f00a9h,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
582,Annecy,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
583,TEMPS00020200415eg4f0000w,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
584,Afrique sub-saharienne,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
585,WSJOP00020200401eg4100001,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
586,Capitole,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
587,AFPFR00020200401eg4100nud,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
588,Tripoli,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
589,AFNWSF0020200401eg41000jn,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
590,Shenzhen,LOC,2,0,1,0,1,0,0,0,0,0,0,0,0,0.29
591,Malte,LOC,2,0,1,1,0,0,0,0,0,0,0,0,0,0.29
592,AI,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
593,Héros,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
594,Hôpital universitaire de Zurich,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
595,Mars,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
596,Zermatt,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
597,Iata,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
598,Medtronics,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
599,Bâtiment administratif de la Pontaise,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
600,BCAH,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
601,État du Nil Bleu,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
602,Darfour,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
603,Bourg-en-Bresse,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
604,Yvelines,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
605,Stéphanoise,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
606,Grenoblois,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
607,la Ville,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
608,Redoutant,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
609,Saqez,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
610,AFPFR00020200422eg4m00pdx,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
611,AFPECOFI20200422eg4m00jd9,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
612,Blainville-sur-Orne,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
613,Calvados,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
614,Manigat,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
615,Cité de l’Eternel,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
616,Delouis,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
617,Soray,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
618,Nan beny,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
619,Cité plus,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
620,Ti bois,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
621,Grand ravin,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
622,aire urbaine de Port-au-Prince,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
623,Léogâne,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
624,Gressier,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
625,Hospices Civils de Lyon,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
626,HCL,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
627,Palais national,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
628,Grande-Anse,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
629,Nippes,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
630,Carrefour,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
631,Coronavirus ,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
632,AFPFR00020200417eg4h00mgd,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
633,ECHOFR0020200417eg4h000ec,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
634,ZHAW,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
635,TEMPS00020200421eg4l0000p,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
636,RoActemra,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
637,Tamiflu,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
638,Avastin,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
639,EEMEA,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
640,Janvier,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
641,Triptoréline,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
642,AFPFR00020200421eg4l00l2d,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
643,Fribourgeois,LOC,2,0,0,0,2,0,0,0,0,0,0,0,0,0.29
644,66 ,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
645,Colombien,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
646,Dahabiya,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
647,mer Rouge,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
648,AFPFR00020200129eg1t00txt,LOC,2,2,0,0,0,0,0,0,0,0,0,0,0,0.29
649,ville de,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
650,CPAM du Rhône,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
651,Telle,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
652,SARScoV-2,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
653,TBNWEB0020200127eg1o0000o,LOC,2,2,0,0,0,0,0,0,0,0,0,0,0,0.29
654,GTEX,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
655,Menatex,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
656,la Tunisie,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
657,Q,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
658,Nil,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
659,Lundi,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
660,En Rhône,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
661,Johannesburg,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
662,Salpêtrière,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
663,Evian-les-Bains,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
664,Aigle,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
665,Coppet,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
666,Chablais français,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
667,Saint-Nicolas,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
668,Bretagne,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
669,Sud de l'Isère,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
670,Les TPE,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
671,CCI,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
672,Thonon-les-Bains,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
673,Navarre,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
674,Seine-et-Marne,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
675,Anvers,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
676,Baléares,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
677,Casablanca,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
678,Djerba,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
679,Bali,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
680,Maghreb,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
681,Broadway,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
682,Tunisiens,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
683,FIGPRE0020200506eg56004xt,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
684,AFPFR00020200508eg5800dt9,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
685,cathédrale de Sion,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
686,Switzerland,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
687,Matoto,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
688,Eysins,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
689,AFPFR00020200528eg5s00mop,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
690,AFPFR00020200527eg5r00dnq,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
691,lac de Neuchâtel,LOC,2,0,0,0,0,1,0,1,0,0,0,0,0,0.29
692,Royaume Uni,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
693,Normandie,LOC,2,0,0,0,0,1,0,1,0,0,0,0,0,0.29
694,AFPFR00020200113eg1d00af1,LOC,2,2,0,0,0,0,0,0,0,0,0,0,0,0.29
695,Université libre de Bruxelles,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
696,Rwanda,LOC,2,0,0,0,0,1,0,1,0,0,0,0,0,0.29
697,LUNARD0020200529eg5t0001v,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
698,TEMPS00020200530eg5u0000l,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
699,Uruguay,LOC,2,0,0,0,0,1,0,1,0,0,0,0,0,0.29
700,San Francisco,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
701,Istanbul,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
702,Carina,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
703,Université de Pékin,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
704,Beida,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
705,Mykola,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
706,Kiev,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
707,Helsinki,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
708,AFPFR00020200521eg5l007sl,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
709,Aden,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
710,TEMPS00020200519eg5j0000w,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
711,Anglais,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
712,AFPFR00020200518eg5i00avp,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
713,Acropole,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
714,basilique Saint-Pierre,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
715,Université de Hongkong,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
716,Hongkongais,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
717,fleuve Jaune,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
718,Sita France,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
719,Inselgasse,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
720,Hôpital du Jura,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
721,Union,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
722,Mont-Blanc,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
723,Arve,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
724,Haute,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
725,Saint Gervais,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
726,Matignon,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
727,Drôme,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
728,CHU Pellegrin,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
729,Bordeaux,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
730,Montreux,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
731,hôpital Fuxing,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
732,Daegu,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
733,Eglise Shincheonji de Jésus,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
734,Haute-Loire,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
735,AFPECOFI20200218eg2i008et,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
736,SF00000020200213eg2d001p5,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
737,Irakiennes,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
738,Bordelais,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
739,BORDEAUX,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
740,Yangzi,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
741,Boston,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
742,NE,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
743,Swiss Centers,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
744,Guangzhou,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
745,AFPFR00020200213eg2d00se9,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
746,Centres américains,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
747,Ouganda,LOC,2,0,0,0,0,1,0,1,0,0,0,0,0,0.29
748,Chicago,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
749,Versoix,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
750,Shandong,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
751,Zhejiang,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
752,AFPFR00020200224eg2o00nrl,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
753,ReMask,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
754,AFPFR00020200603eg6300om5,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
755,AFPFR00020200603eg6300cvx,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
756,Neuchâtelois,LOC,2,0,1,0,0,1,0,0,0,0,0,0,0,0.29
757,AFPECOFI20200228eg2s00hil,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
758,Cameroun,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
759,RPDC,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
760,Minneapolis,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
761,AFPFR00020200605eg6500mge,LOC,2,0,0,0,0,0,2,0,0,0,0,0,0,0.29
762,K,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
763,Hajj,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
764,l'Oumra,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
765,Arabie,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
766,Fondation de la Haute Horlogerie,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
767,AFPFR00020200225eg2p00lap,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
768,Tenerife,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
769,AFPFR00020200225eg2p00orp,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
770,Jordanie,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
771,Koweit,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
772,Bahrein,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
773,Secugnago,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
774,AFPFR00020200228eg2s00pm9,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
775,Lagos,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
776,L'Estonie,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
777,AFPFR00020200227eg2r00llt,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
778,AFPFR00020200227eg2r00n85,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
779,Iranien,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
780,AFPFR00020200501eg5100669,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
781,Yverdon-les-Bains,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
782,Montpellier,LOC,2,1,0,0,0,0,0,1,0,0,0,0,0,0.29
783,Perpignan,LOC,2,1,0,0,0,1,0,0,0,0,0,0,0,0.29
784,Organics,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
785,Etat de Kano,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
786,Brig,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
787,canton du Valais,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
788,Thurgovie,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
789,AFNWSF0020200504eg54006ig,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
790,Bukavu,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
791,Ubique,LOC,2,0,0,0,0,2,0,0,0,0,0,0,0,0.29
792,de Californie,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
793,CO,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
794,Tessinois,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
795,Sud-Africain,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
796,Atlanta,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
797,AFPFR00020200211eg2b00ndp,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
798,Matin,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
799,Bernerhof,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
800,AFPFR00020200212eg2c00xkd,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
801,AFPFR00020200212eg2c01041,LOC,2,0,2,0,0,0,0,0,0,0,0,0,0,0.29
802,Stockholm,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
803,l’Asie,LOC,2,0,0,0,0,1,0,1,0,0,0,0,0,0.29
804,Contamines,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
805,Montjoie,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
806,lac Léman,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
807,Kazakhstan,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
808,Libanais,LOC,2,0,0,0,1,0,1,0,0,0,0,0,0,0.29
809,Dakar,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
810,Herzégovine,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
811,Porto,LOC,2,0,0,0,1,0,0,1,0,0,0,0,0,0.29
812,L’Afrique du Sud,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
813,GAETAN,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
814,Los Angeles,LOC,2,0,0,0,0,1,1,0,0,0,0,0,0,0.29
815,Britanniques,LOC,2,0,0,0,1,1,0,0,0,0,0,0,0,0.29
816,H1N1,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
817,Biélorussie,LOC,2,0,0,1,0,0,0,1,0,0,0,0,0,0.29
818,Croix-Rouge de Dakar,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
819,SCIAVFR020200726eg7q0002u,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
820,Birmanie,LOC,2,0,0,1,0,0,1,0,0,0,0,0,0,0.29
821,Auto-Suisse,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
822,Bridge,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
823,Donbass,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
824,Chargé,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
825,AFPFR00020200710eg7a00cqd,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
826,AFPFR00020200713eg7d00hld,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
827,AFNWSF0020200319eg3j00bkp,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
828,Belges,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
829,Péninsule,LOC,2,0,0,1,0,0,1,0,0,0,0,0,0,0.29
830,Place d'armes,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
831,rhone,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
832,Arizona,LOC,2,0,0,0,0,0,1,1,0,0,0,0,0,0.29
833,FMH,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
834,alpes,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
835,Hôpital du Valais,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
836,LMATI00020200303eg3200003,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
837,Phoenix,LOC,2,0,0,0,0,0,1,1,0,0,0,0,0,0.29
838,Salvador,LOC,2,0,0,0,0,0,1,1,0,0,0,0,0,0.29
839,Californiens,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
840,Africain,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
841,Savoie,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
842,Saône-et-Loire,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
843,PARIS,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
844,Galicia Bar,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
845,AFPFR00020200730eg7u00pul,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
846,AFPFR00020200709eg7900hd1,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
847,Pologne,LOC,2,0,0,1,0,1,0,0,0,0,0,0,0,0.29
848,Ottawa,LOC,2,0,0,1,0,0,0,1,0,0,0,0,0,0.29
849,La Carita,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
850,Montréal,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
851,Haut-Commissaire,LOC,2,0,0,1,0,0,1,0,0,0,0,0,0,0.29
852,Zimbabwe,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
853,ville de Genève,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
854,TEMPS00020200319eg3j0000a,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
855,TEMPS00020200327eg3r0000i,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
856,Panama,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
857,Croix Rouge,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
858,La Paz,LOC,2,0,0,1,0,0,1,0,0,0,0,0,0,0.29
859,AFPFR00020200305eg3500qp5,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
860,Institut Robert Koch,LOC,2,0,0,1,0,0,0,1,0,0,0,0,0,0.29
861,AFPFR00020200311eg3b00yex,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
862,université de Zurich,LOC,2,0,0,1,0,1,0,0,0,0,0,0,0,0.29
863,AFPFR00020200303eg33005pl,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
864,Menton,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
865,RTDJFR0020200708eg7800018,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
866,Lassa,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
867,Martin,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
868,Bologne,LOC,2,0,0,1,0,0,1,0,0,0,0,0,0,0.29
869,Cap,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
870,Winterthour,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
871,Heidelberg,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
872,Proche,LOC,2,0,0,1,0,0,0,1,0,0,0,0,0,0.29
873,impact de Covid-19,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
874,Américain,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
875,AFPFR00020200703eg7300rp9,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
876,auvergne,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
877,Croix-Rouge de Menton,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
878,AFPFR00020200706eg7600cf9,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
879,le Vieux,LOC,2,0,0,0,0,0,0,2,0,0,0,0,0,0.29
880,Renens,LOC,2,0,0,1,0,1,0,0,0,0,0,0,0,0.29
881,Yverdon,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
882,AFPECOFI20200319eg3j00b41,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
883,DNDi,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
884,Florence,LOC,2,0,1,1,0,0,0,0,0,0,0,0,0,0.29
885,FRTB,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
886,Réunion,LOC,2,0,1,0,0,1,0,0,0,0,0,0,0,0.29
887,VIDEO,LOC,2,0,1,1,0,0,0,0,0,0,0,0,0,0.29
888,NZZ am Sonntag,LOC,2,0,0,1,0,1,0,0,0,0,0,0,0,0.29
889,Covid-19-,LOC,2,0,1,0,0,0,1,0,0,0,0,0,0,0.29
890,Lugano,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
891,RH,LOC,2,0,0,1,0,0,0,1,0,0,0,0,0,0.29
892,AFPFR00020200303eg3300rs1,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
893,Lodi,LOC,2,0,1,0,1,0,0,0,0,0,0,0,0,0.29
894,République Démocratique du Congo,LOC,2,0,1,0,0,1,0,0,0,0,0,0,0,0.29
895,Zoug,LOC,2,0,1,0,0,1,0,0,0,0,0,0,0,0.29
896,Roissy,LOC,2,0,1,0,0,0,0,1,0,0,0,0,0,0.29
897,Orly,LOC,2,0,1,0,0,0,0,1,0,0,0,0,0,0.29
898,Palais,LOC,2,0,0,1,0,0,1,0,0,0,0,0,0,0.29
899,AFPFR00020200323eg3n00jiu,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
900,fondation Bill,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
901,île Maurice,LOC,2,0,1,0,0,0,1,0,0,0,0,0,0,0.29
902,l'Asie,LOC,2,0,0,1,0,1,0,0,0,0,0,0,0,0.29
903,Bonhôte,LOC,2,0,0,1,0,1,0,0,0,0,0,0,0,0.29
904,AFPECOFI20200303eg3300fid,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
905,USA,LOC,2,0,1,0,1,0,0,0,0,0,0,0,0,0.29
906,Campagne,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
907,Kaletra,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
908,Université d'Edimbourg,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
909,AFPFR00020200303eg3300tef,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
910,Bercy,LOC,2,0,0,1,1,0,0,0,0,0,0,0,0,0.29
911,TEMPS00020200324eg3o0000p,LOC,2,0,0,2,0,0,0,0,0,0,0,0,0,0.29
912,Pitié,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
913,Romandes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
914,AFPFR00020200703eg7300uv5,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
915,région Pacifique,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
916,Genevois·es,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
917,Flavia,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
918,TPS_20200513_0006-art_2.xml,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
919,Irlande du Nord,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
920,Française,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
921,AFPFR00020200513eg5d00fcu,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
922,Jilin,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
923,L'Amérique,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
924,ECHOFR0020200705eg750002y,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
925,TEMPS00020200514eg5e00007,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
926,TEMPS00020200513eg5d0000p,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
927,TPS_20200514_0003-art_2.xml,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
928,Etat social en Suisse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
929,Mont Rushmore,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
930,Basilique Saint-Paul-hors-les-Murs,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
931,SHUTTERSTOCK,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
932,hôpital de La Timone,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
933,région Mena,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
934,Alsaciens,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
935,VOSMAT0020200517eg5h0002j,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
936,Brighton,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
937,Brasserie de Montbenon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
938,Aérocanal,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
939,Adjouffou,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
940,Abidjan,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
941,CICG,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
942,TEMPS00020200516eg5g00012,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
943,TPS_20200516_0018-art_1.xml,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
944,Chambre africaine de l'Energie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
945,AFPFR00020200514eg5e00cyp,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
946,R0 suisse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
947,Munster,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
948,s)es,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
949,Addo,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
950,Ghana,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
951,hémisphère Nord,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
952,UNIVERSITÉ DE LAUSANNE,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
953,hémisphère Sud,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
954,TPS_20200515_0020-art_1.xml,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
955,Commence,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
956,Stavanger,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
957,Enterovirus D68,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
958,Post-doctorante,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
959,LSFin,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
960,Doha,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
961,ÉPIDÉMIOLOGISTE,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
962,AFPFR00020200703eg7300re5,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
963,BCP,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
964,Fouta,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
965,Ivry,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
966,Rhône ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
967,Mandhari,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
968,Djalon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
969,TEMPS00020200702eg720000z,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
970,Le Rhône,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
971,Val de Marne,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
972,Morbihan,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
973,Cévennes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
974,Grand Port maritime de Marseille,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
975,Bas-Rhin,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
976,Dambach-la-Ville,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
977,Unilabs,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
978,Inselspital,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
979,Alpha,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
980,Bâlois Lonza,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
981,outre-Atlantique,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
982,Carrières Comment,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
983,AFPFR00020200522eg5m00k29,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
984,ÉMILIEN GIGANDET,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
985,canton du Jura,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
986,Manchester,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
987,Bâles,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
988,Porrentruy,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
989,Delémont,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
990,Conseil départemental du Haut-Rhin,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
991,RÉÉQUILIBRER,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
992,Palo Alto,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
993,PROTESTINFO,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
994,TEMPS00020200523eg5n00018,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
995,Jurassiens,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
996,TEMPS00020200702eg720000c,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
997,Palais fédéral ouest,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
998,place Fédérale,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
999,Belfaux,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1000,Saint-Luc,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1001,Polichinelle,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1002,gare de Delémont,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1003,Gothard,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1004,Bundesgasse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1005,Troublés,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1006,Nashville,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1007,Cornavin,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1008,Schwytz,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1009,Moillesulaz,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1010,Palettes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1011,Bachet-de-Pesay,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1012,WAGNIÈRES,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1013,Société José,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1014,TEMPS00020200519eg5j00018,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1015,Acropole d'Athènes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1016,San Eustachio,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1017,Caucase,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1018,Daguestan,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1019,Nathalie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1020,Vatican,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1021,parc de Brooklyn,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1022,Mont Fuji,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1023,AG,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1024,Biergarten,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1025,Azerbaïdjan,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1026,Ixelles,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1027,gare de Genève,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1028,Braga,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1029,Hitlerum,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1030,Sanaa,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1031,Douvaine,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1032,AMS,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1033,AFNWSF0020200520eg5k001jl,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1034,Hôpital de Zurich,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1035,Samareh,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1036,Vieille-Ville de Genève,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1037,Vieille-Ville,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1038,Etablissement,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1039,Swisscovid,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1040,AFPFR00020200519eg5j00ac9,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1041,Mosquées,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1042,Aïd el-Fitr,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1043,San Cristobal,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1044,Saint-Pierre de Rome,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1045,Mont Saint-Michel,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1046,US,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1047,Ostende,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1048,République tchèque,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1049,Taj Mahal,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1050,Toutankhamon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1051,Kruger,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1052,l'Islande,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1053,Egilsstadir,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1054,Akureyri,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1055,Reykjavik,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1056,aéroport de Keflavik,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1057,L'Islande,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1058,Égypte,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1059,GEM,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1060,CHAMS,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1061,Las,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1062,temple de Karnak,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1063,Alexandrie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1064,La Havane,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1065,Santa Maria,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1066,Cayo Cruz,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1067,Cayo Guillermo,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1068,Cayo Coco,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1069,Cayo Largo,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1070,Bora Bora,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1071,Seychelles,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1072,Pragelato Vialattea,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1073,Kamarina,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1074,Cefalù,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1075,Tourisme,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1076,Caire,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1077,temple de Philae,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1078,musée du Caire,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1079,Marsa Matrouh,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1080,Sud-Sinaï,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1081,Mer rouge,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1082,océan Indien,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1083,Malé,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1084,TEMPS00020200509eg590000p,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1085,Mandera,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1086,Aktionäre,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1087,Erfahrung mitbringt und dazu,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1088,la Terre,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1089,Inuits,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1090,Présence Suisse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1091,Tok,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1092,lac de Zurich,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1093,AFPECOFI20200509eg59002p9,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1094,Hôpital Riviera,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1095,APR,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1096,mont Kenya,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1097,Mombasa,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1098,hôpital de Genève,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1099,Fédération des hôpitaux vaudois,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1100,Montbrillant,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1101,RHNE,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1102,Didier,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1103,hôpital de Fribourg,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1104,hôpital régional La Carità,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1105,TOUTOUS,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1106,N3,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1107,N1,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1108,la Riviera,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1109,district d’Aigle,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1110,Pont,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1111,Molodozeniec,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1112,Nouméa,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1113,Bouveret,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1114,Judicieuse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1115,hôpital de Nyon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1116,A Nyon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1117,FNTP,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1118,Mercredi 6 mai,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1119,l'Asie du Sud-Est,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1120,Massachusetts,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1121,Nairobi,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1122,Minorque,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1123,Ibiza,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1124,Sant Feliu de Llobregat,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1125,Vilafant,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1126,Figueras,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1127,Crète,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1128,Cyclades,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1129,Sardaigne,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1130,aéroport Roissy,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1131,Lloret de Mar,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1132,Occitanie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1133,Himalaya,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1134,Saint-Barthélémy,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1135,Kenyatta,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1136,Kenya ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1137,archipel d'Asie du Sud-Est,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1138,île de Bali,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1139,Collectivité,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1140,Guyane,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1141,île française de Saint-Barthélemy,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1142,Outre-mer,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1143,Marocains,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1144,Océan indien,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1145,Jardin secret,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1146,Majorelle,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1147,Luxembourgeois,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1148,Tarragone,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1149,université d'Alberta,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1150,Koltsovo,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1151,AFPFR00020200508eg5800haa,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1152,Oslo,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1153,Wuxi,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1154,AFPECOFI20200508eg58006v9,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1155,Pays baltes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1156,Village Catalan»,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1157,Perthus,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1158,Fès,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1159,États baltes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1160,Lituanie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1161,Estonie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1162,Meurthe-et-Moselle,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1163,Haut-Rhin,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1164,département du Nord,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1165,Pays de la Loire,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1166,Lérida,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1167,FIGPRE0020200508eg580035x,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1168,canal de Suez,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1169,Hollandais,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1170,Le Locle,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1171,Bulle,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1172,Galiciens,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1173,Oberland,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1174,Sociedad gallega,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1175,Russes,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1176,Galicia,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1177,gare d’Olten,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1178,château de Colpach,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1179,Hôpital cantonal fribourgeois,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1180,Lermontov,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1181,Doubs,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1182,Isère,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1183,Loire,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1184,Gueugnon,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1185,Challes-les-Eaux,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1186,Chambéry,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1187,SHC014,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1188,Boulogne-sur-Mer,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1189,Atlantiques,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1190,de Lille,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1191,Barkhane,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1192,Côte-d'Or,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1193,Ardèche,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1194,Savoies,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1195,le Rhône,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1196,Allemagne de l’Ouest,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1197,Grison,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1198,Mortagne-au-Perche,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1199,Arrivée,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1200,district de la Sarine,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1201,Une,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1202,Congo,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1203,comté d'A Marina,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1204,WHO self,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1205,province de Lugo,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1206,75 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1207,82 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1208,72 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1209,FIGPRE0020200512eg5c006bt,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1210,Haute-Sorne,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1211,84 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1212,Aix-en-Seine,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1213,Jura suisse,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1214,canton suisse du Jura,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1215,Breuleux,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1216,76 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1217,Kreuzlingen,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1218,Thoune,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1219,TEMPS00020200513eg5d0000c,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1220,49 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1221,18 ,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1222,Lerida,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1223,Allemand,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1224,L'Afrique du Sud,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1225,Togo,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1226,Nouveaux,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1227,Veyras,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1228,Musée Rodin,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1229,musée Rodin,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1230,Axa,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1231,Bochum,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1232,Université de Fribourg,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1233,Liberia Ellen Johnson Sirleaf,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1234,BALDINGER,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1235,Finanzielle und strukturelle Stärkung zur Überwindung der Coronakrise und Umsetzung der langfristigen Strategie,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1236,Calavi,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1237,Abomey,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1238,Canton,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1239,Littoral,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1240,Croix Rouge du Bénin,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1241,Ministère de la Santé,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1242,Somè,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1243,Djègan,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1244,Daho,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1245,Novo,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1246,FRTNIT0020200709eg790005n,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1247,Septentrion,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1248,Körperschaften sollen künftig,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1249,Aktien,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1250,Kanton Basel,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1251,Stadt,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1252,Kanton,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1253,Basel,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1254,Landschaft und die Basler Kantonalbank zur,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1255,fälligen Refinanzierung der,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1256,Riviera Française,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1257,Rouge de Menton,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1258,lycée Pierre-et-Marie-Curie,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1259,Mentonnais,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1260,Sospel,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1261,Castillon,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1262,Tende,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1263,porte de la,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1264,Croix Rouge de Menton,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1265,rue Partouneaux,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1266,Croix-Rouge : l’Est,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1267,Maritimes,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1268,Conseil Départemental,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1269,Evita,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1270,Paris SG,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1271,Apilimod,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1272,Beausoleil,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1273,La Turbie,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1274,Cap d’Ail,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1275,aéroport de Francfot,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1276,Fraport,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1277,AFNWSF0020200708eg78001v9,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1278,l'Etat français,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1279,Centrafrique,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1280,TEMPS00020200708eg780000e,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1281,Bangui,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1282,CDG,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1283,ville de Mexico,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1284,Xinfadi,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1285,Pékinois,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1286,Craintes,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1287,Nord-Est,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1288,Tulsa,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1289,Blick,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1290,Sonntags,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1291,Gare,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1292,Hesav,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1293,Université de Hong Kong,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1294,Codogno,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1295,Cascais,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1296,parc de Friedrichsain,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1297,hôpital de la Charité,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1298,district de Tübingen,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1299,36 ,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1300,Clinique,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1301,Balkan,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1302,faculté de médecine de Belgrade,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1303,Público,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1304,Tage,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1305,Val,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1306,H+,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1307,FIGPRE0020200625eg6p005v5,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1308,77 ,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1309,région de Lisbonne,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1310,Europe de l’Est,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1311,Sintra,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1312,Odivelas,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1313,Amadora,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1314,Loures,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1315,Etat de Vaud,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1316,Hanovre,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1317,Dortmund,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1318,Wiedenbrück,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1319,Rheda,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1320,AFPFR00020200727eg7r00a6p,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1321,P r Antoine Flahault,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1322,Rhénanie-,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1323,région de,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1324,43 ,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1325,AFPFR00020200626eg6q00fa1,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1326,Aïr,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1327,Réouverture,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1328,Investissement,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1329,Plateau,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1330,Mühleberg,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1331,Treuhand,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1332,AFNWSF0020200616eg6g007sl,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1333,Kinois,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1334,Stéroïde,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1335,AFPFR00020200616eg6g00tjx,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1336,Côte d'Ivoire,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1337,région du Golfe de Guinée,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1338,AFNWSF0020200616eg6g008yb,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1339,Directeur du centre,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1340,Centre Hospitalier,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1341,Ébola,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1342,Libéria,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1343,de Belgique,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1344,District d’Abidjan,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1345,Bps,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1346,Port-Bouët Derrière,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1347,Sahara,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1348,AFPFR00020200615eg6f00nm1,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1349,Mtn Côte d’Ivoire,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1350,Innosuisse,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1351,Grand Palais Ephémère,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1352,Steinitz,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1353,Laffanour,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1354,Béraudière,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1355,Aveline,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1356,Ariadne,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1357,Sahel,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1358,Centre Mère et Enfants de Ngaba,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1359,Djibouti,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1360,ex-Biennale des Antiquaires,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1361,Art Basel,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1362,ECHOFR0020200617eg6h000dx,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1363,Glaxo,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1364,Virus,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1365,AUTO-SUISSE,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1366,TPS_20200724_0009-art_1.xml,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1367,Prensa Latina,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1368,Cuban,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1369,région de Zurich,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1370,Institut de génétique de l’University College,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1371,6 from,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1372,Resource Center,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1373,État d'Amazonas,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1374,province d'Amazonas,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1375,TEMPS00020200718eg7i0000i,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1376,AFNWSF0020200720eg7k001mw,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1377,AFPFR00020200716eg7g00not,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1378,Bourget,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1379,Las Vegas,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1380,Villepinte,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1381,Porte de Versailles,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1382,Astag,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1383,Payerne,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1384,LMATI00020200715eg7f000jh,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1385,Suriname,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1386,Kirghizistan,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1387,Guatemala,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1388,Croix rouge de l'Ogooué,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1389,Lolo,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1390,Viparis,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1391,Croix rouge de,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1392,Croix rouge,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1393,Gabonaise,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1394,Eswatini,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1395,Zanjan,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1396,Impréparation,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1397,AFPECOFI20200624eg6o00htp,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1398,ECG,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1399,Care,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1400,Flon,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1401,Land,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1402,canton de Gütersloh,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1403,Crimée,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1404,Diamondscull,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1405,AFPFR00020200624eg6o00pxd,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1406,Petare,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1407,TEMPS00020200624eg6o0000v,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1408,Extrême-Orient,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1409,Rouge sahraoui,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1410,Budapest,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1411,détroit de Taïwan,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1412,HISTORIEN,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1413,Croissant rouge sahraoui,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1414,Vaudoise,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1415,République dominicaine,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1416,Ouzbékistan,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1417,Melbourne,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1418,New Hampshire,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1419,Schweiz,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1420,LANDIS,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1421,Rouge départementale de Dakar,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1422,News Online,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1423,Stimmrechtsvertretung,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1424,Villeneuve,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1425,Ontario,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1426,NATALIE,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1427,Idaho,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1428,Senn,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1429,Basses,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1430,EMS Parc de Beausobre,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1431,Université d'Helsinki,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1432,Saint-Jean-sur-Richelieu,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1433,Ardennais,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1434,May,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1435,TPS_20200529_0015-art_1.xml,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1436,Windsor,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1437,CHUV de,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1438,diocèse de Sion,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1439,pré-Covid,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1440,Lancy,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1441,EMS du Fort-Barreau,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1442,Maison de retraite du Petit-Saconnex,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1443,Résidence Bon-Séjour,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1444,Etat de Washington,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1445,Taegu,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1446,Kochmania,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1447,PAROISSIENNE,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1448,France).De,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1449,Houston,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1450,comté de Los Angeles,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1451,Amérique Latine,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1452,Fédération de Russie,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1453,Quiberon,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1454,la Bolivie,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1455,Tik Tok,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1456,MoneyGram,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1457,Denver,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1458,Asie de l’Est,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1459,Mythbuster,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1460,San Raffaele,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1461,Etats verte Adèle Thorens,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1462,TEMPS00020200602eg620000i,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1463,Santé Khalid Ait Taleb,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1464,Burundi,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1465,Hôpital de Lavaux,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1466,AFPFR00020200529eg5t00h1x,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1467,hôpital universitaire de Zurich,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1468,canton d'Argovie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1469,AFPFR00020200630eg6u00jod,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1470,Etats arabes,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1471,L'Amérique du Sud,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1472,WorldRemit,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1473,Néerlandais,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1474,baie de Hongkong,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1475,Instagram Pier,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1476,Pachacamac,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1477,Lima,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1478,Université technique,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1479,IgM,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1480,place Saint-François,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1481,WeWork,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1482,AFPECOFI20200523eg5n003xp,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1483,Tessinoise,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1484,Plaquénil,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1485,Scientifique,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1486,Bellinzone,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1487,plateau de,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1488,Secrétaire général de la Fédération internationale des Sociétés de la Croix-Rouge et du Croissant,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1489,Remdacta,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1490,Angola,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1491,Corfou,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1492,du Petit-Lancy,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1493,Grand-Saconnex,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1494,d'Algérie,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1495,GUIMAT0020200528eg5s000gq,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1496,EMS Pré-Fleuri,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1497,L’État,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1498,mer Ionienne,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1499,Conakry,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1500,Tougué,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1501,Remdesivir,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1502,l’Amérique du Nord,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1503,Cisjordanie,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1504,Epithelix,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1505,Plan-les-Ouates,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1506,Dynovo,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1507,Principal,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1508,GaDia,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1509,Saint-Sulpice,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1510,Augurix,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1511,Dallas,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1512,Azimo,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1513,Danilo,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1514,Sabine,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1515,BNS A,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1516,Tania,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1517,Vigneronne,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1518,Expatriée Dernière bière,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1519,Winnie,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1520,Eiger,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1521,Etats occidentaux,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
1522,ATS,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1523,ECHOFR0020200629eg6t000uq,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1524,SG,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1525,Suisse centrale,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1526,Swissgrid,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1527,centrale nucléaire de Gösgen,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1528,Gösgen,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1529,Notfallaufnahmekapazitäten,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1530,Nord-Sud,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1531,ÉTATS-UNIS,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1532,Populaire,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1533,Côte d’Ivoire,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1534,Laisse,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1535,Moutiou,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1536,Malaise,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1537,gare du Palais fédéral,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1538,ville de Zurich,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1539,Roi Soleil,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1540,Italienne,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1541,Aquapak,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1542,Unanimes,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1543,Uetlihof,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1544,Paradeplatz,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1545,AFPFR00020200611eg6b00uxx,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1546,EN,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1547,TransferWise,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1548,El Alto,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1549,Sao Paulo,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1550,Nord-est,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1551,Etat de Bahia,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1552,Fontaine de Trévi,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1553,aéroport de Venise,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1554,Maison blanche,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1555,FIRC,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1556,TEMPS00020200604eg640000e,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1557,laboratoire de Spiez,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1558,Université de Berne,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1559,STEP,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1560,Unigestion,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1561,Blancs,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1562,Bangladais,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1563,Pakistanais,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1564,Noirs,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1565,Seine-Saint-Denis,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1566,Etat de Sao Paulo,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1567,AFPFR00020200602eg6200ci1,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1568,Beyrouth,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1569,Brésiliens,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1570,Remitly,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1571,Bombay,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1572,T1,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1573,Contraction,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1574,REUTFR0020200603eg630030d,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1575,New Deal,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1576,Risquet,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1577,AFPECOFI20200608eg6800c6x,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1578,Empa,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1579,Agadir,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1580,Midi de la France,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1581,roseraie de la Maison,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1582,AFPFR00020200605eg6500pgp,LOC,1,0,0,0,0,0,1,0,0,0,0,0,0,0.14
1583,SCIAVFR020200326eg3q000e3,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1584,Université Aix,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1585,Cobas,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1586,Directeur général de la Santé,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1587,AFPFR00020200326eg3q00gl9,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1588,AFPECOFI20200326eg3q00ecp,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1589,FIGPRE0020200326eg3q001up,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1590,TMPRSS2,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1591,Poméranie,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1592,TEMPS00020200327eg3r00002,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1593,Directeur général de Marriot,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1594,Medgate,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1595,REUTFR0020200325eg3p007sl,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1596,Coronacheck,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1597,EFPL,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1598,HUG@home,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1599,Localmed,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1600,Hôpital de La Tour,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1601,Asmara,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1602,Chinoise,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1603,CRYPTOMONNAIES,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1604,Ensemble hospitalier de La Côte,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1605,Pourtalès,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1606,Secteur E,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1607,Suissesses,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1608,Heraeus,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1609,Argor,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1610,PAMP,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1611,Valcambi,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1612,Seelandais,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1613,Bâle III »,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1614,Corona-data.ch,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1615,Coronavirus ,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1616,Impopulaire,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1617,La Russie,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1618,Clémence,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1619,cathédrale de Lausanne,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1620,province de Bergame,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1621,TEMPS00020200321eg3l0003m,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1622,catastrophe nucléaire de Fukushima,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1623,Shenzen,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1624,AFPFR00020200320eg3k00odt,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1625,TEMPS00020200320eg3k0000u,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1626,Négociées,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1627,Sommes,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1628,Orbe,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1629,Echallens,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1630,d’Italie,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1631,L’Isle,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1632,Entremont,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1633,Gampel,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1634,Hublot,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1635,Patek,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1636,HORLOGERIE,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1637,ARND,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1638,San Diego,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1639,péninsule Arabique,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1640,83 LEp,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1641,Schuman,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1642,Tour,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1643,Georges,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1644,lycée de la Communication,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1645,Fournier,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1646,Mondon,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1647,Cormontaigne,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1648,lycée Cassin de Metz,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1649,Stockés,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1650,AFPFR00020200324eg3o00dcl,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1651,Courcelles,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1652,Net,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1653,FB,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1654,Saxe,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1655,Grand Est français,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1656,Hambourg,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1657,Karachi,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1658,Université Aga Khan,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1659,TEMPS00020200324eg3o00003,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1660,Uri,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1661,Purpan,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1662,Université de Jilin,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1663,BILLAUD,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1664,Romandie,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1665,Macédoine,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1666,TEMPS00020200404eg440000k,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1667,PIROSCHKA VAN DE WOUW,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1668,Préverenges,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1669,Université Grenoble Alpes,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1670,AGEFIF0020200331eg3v00003,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1671,Galway,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1672,TEMPS00020200403eg430000l,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1673,Mindray,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1674,Tolochenaz,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1675,Bonaduz,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1676,Draeger,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1677,Getinge,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1678,NC,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1679,CC BY,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1680,Graz,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1681,États membres,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1682,TBNWEB0020200403eg4300010,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1683,Khartoum,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1684,Ouchy,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1685,Cité,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1686,Vénus,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1687,le Vieux-Continent,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1688,L’Europe,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1689,Laboratoire de virologie des Hôpitaux universitaires de Genève,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1690,Université de Liège,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1691,TEMPS00020200406eg460000p,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1692,Marriott,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1693,AFPFR00020200406eg4600jah,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1694,Patmos,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1695,Jean-Nat,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1696,TEMPS00020200406eg460000b,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1697,TEMPS00020200404eg440001j,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1698,Limite,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1699,Maqari,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1700,Löwenstein,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1701,Parc,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1702,Limmat,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1703,État américain,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1704,Coople,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1705,Farmy,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1706,Carouge,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1707,TEMPS00020200401eg410000p,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1708,STOECKLIN,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1709,Rubéole,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1710,Rougeole,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1711,Misrata,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1712,El Corte Inglés,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1713,Malmaison,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1714,Rueil,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1715,Bâle 3,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1716,Pilier 3,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1717,GEORGIOS,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1718,Allschwil,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1719,Grande,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1720,JU,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1721,Boncourt,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1722,TEMPS00020200401eg410000j,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1723,MÉDECIN CANTONAL,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1724,Italie du Nord,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1725,TEMPS00020200401eg410000i,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1726,TEMPS00020200401eg4100006,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1727,OBSOLÈTE,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1728,Glaris,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1729,institut Robert Koch,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1730,55 ,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1731,hôtel de Zurich,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1732,Extérieures,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1733,Appenzell Rhodes,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1734,Verily,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1735,Sacramento,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1736,San Mateo,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1737,Lake Elsinore,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1738,San Jose,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1739,TPS_20200402_0011-art_1.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1740,Bade Wurtemberg,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1741,Electromag,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1742,Ecublens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1743,Confédération helvétique,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1744,Matterhorn,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1745,Office de tourisme de Zermatt,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1746,Gardons,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1747,Iéna,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1748,Samos,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1749,REUTFR0020200401eg4100b6,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1750,Lyndon Baines Johnson Room,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1751,TEMPS00020200402eg420000u,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1752,TPS_20200402_0002-art_1.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1753,TEMPS00020200402eg420000o,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1754,Conseil fédéral,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1755,TEMPS00020200402eg420000p,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1756,Bahnhofstrasse de Zurich,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1757,Théâtre,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1758,TEMPS00020200212eg2c000dy,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1759,Wuchang,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1760,Hanyang,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1761,Hankou,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1762,Trois-Gorges,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1763,Chambre du commerce Chine,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1764,Valley,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1765,TEMPS00020200212eg2c000dx,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1766,Corse du sud,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1767,Bavella,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1768,Genêve,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1769,AFPECOFI20200212eg2c00ir1,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1770,Bern,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1771,AFPFR00020200212eg2c00pb6,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1772,du Mont-Blanc,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1773,Mer de Glace,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1774,Cloudinomorphes,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1775,Université du Missouri,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1776,Didymos,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1777,CSG,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1778,cour d'appel de Paris,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1779,Rennes,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1780,Dijon,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1781,forêt de l'Aisne,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1782,Damas,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1783,Idleb,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1784,ISTANBUL,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1785,Erdogan,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1786,prison de la Santé,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1787,Perret,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1788,Levallois,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1789,Corse,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1790,AFPFR00020200213eg2d00n5d,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1791,AFPFR00020200224eg2o009st,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1792,Hanoi,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1793,Carnaval de Venise,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1794,AFPECOFI20200224eg2o00bcd,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1795,aéroport de Vienne,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1796,gare du Brenner,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1797,col du Brenner,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1798,Horlogerie,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1799,d'Italie,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1800,Innsbruck,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1801,Bahreïn,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1802,Koweït,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1803,Corée du sud,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1804,L'Asie,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1805,îles Canaries,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1806,Santé de pays voisins de la péninsule,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1807,Palerme,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1808,Pistoia,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1809,l'Arménie,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1810,Trafic,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1811,Inquiétude,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1812,Béatrice,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1813,Cofco,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1814,Le Japon,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1815,Carnaval de Nice,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1816,TPS_20200215_0013-art_2.xml,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1817,Parisien,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1818,AFPECOFI20200223eg2n005xx,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1819,AFPFR00020200221eg2l00sh1,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1820,Israélienne,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1821,AFPFR00020200221eg2l00zvp,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1822,AFPFR00020200220eg2k00cyp,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1823,Brent,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1824,Mutanda,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1825,Baar,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1826,Glencore,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1827,AFPECOFI20200128eg1s00ifx,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1828,Cueillie,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1829,REUTFR0020200122eg1m008c1,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1830,Galexis,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1831,Tsé,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1832,fleuve Yang,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1833,TEMPS00020200129eg1t0000l,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1834,BERNE,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1835,rue Centrale,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1836,MATHYS,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1837,Heathrow,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1838,Gafa,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1839,Vienne,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1840,FRANCE,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1841,Syndrome respiratoire du Moyen-Orient,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1842,AFPFR00020200108eg18012i5,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1843,M5S.,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1844,département de l'Aude,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1845,Prades,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1846,Codalet,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1847,préfecture des Pyrénées,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1848,Andorre,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1849,Via,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1850,Odeillo,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1851,Romeu,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1852,Font,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1853,Roussillon,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1854,Dordogne,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1855,Cour suprême,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1856,Université de Manchester,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1857,FIGPRE0020200207eg270058x,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1858,Homme,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1859,AFPFR00020200206eg2600i7l,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1860,Javel,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1861,AFNWSF0020200208eg28000gz,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1862,pays du Golfe,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1863,AFPECOFI20200205eg25008hl,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1864,AFPFR00020200204eg24005sd,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1865,Népalais,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1866,AFPFR00020200203eg23007vd,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1867,Tiktok,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1868,siège de Roche,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1869,Cov,LOC,1,1,0,0,0,0,0,0,0,0,0,0,0,0.14
1870,Blancpain,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1871,Omega,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1872,canton de Lucerne,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1873,Breguet,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1874,AFPFR00020200204eg2400bhx,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1875,FHH,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1876,Contactée,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1877,Coréens,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1878,Pittsburgh,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1879,Saint-Louis,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1880,NEYTS,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1881,PITTSBURGH,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1882,NATE,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1883,AFPECOFI20200318eg3i00mat,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1884,GR,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1885,Mendrisio,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1886,Coupole,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1887,New Rochelle,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1888,Qatar,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1889,Arno,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1890,Ponte Vecchio,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1891,Pompéi,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1892,place Saint-Pierre,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1893,Vac,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1894,Cure,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1895,TPS_20200311_0020-art_1.xml,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1896,Ébranlée,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1897,AFPFR00020200319eg3j00ojf,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1898,AFPFR00020200319eg3j00mx1,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1899,Pharma,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1900,Kriens,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1901,Montana,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1902,Hamilton,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1903,Directeur général de l'OMS,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1904,Veigy,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1905,Asnières,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1906,Moniaz,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1907,Fossard,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1908,Pas de l'Echelle,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1909,Veyrier,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1910,Collonges Sous Salève,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1911,Perly,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1912,Confédération Suisse,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1913,"Haute-Savoie
",LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1914,CALANDRA,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1915,FRANCINE,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1916,Chaîne du bonheur,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1917,TEMPS00020200319eg3j0000l,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1918,notre Terre,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1919,Vives,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1920,Eaux,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1921,PAV,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1922,La Roseraie,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1923,Suisse Genève,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1924,Norvégien,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1925,Rotterdam,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1926,AFPFR00020200303eg330106,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1927,Ble,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1928,Palais des Nations unies,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1929,TEMPS00020200304eg340008f,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1930,Haut-Valaisan,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1931,Berset,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1932,Hôpital de Brescia,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1933,Suisse Prudence,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1934,AFPFR00020200227eg2r013ql,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1935,AFPECOFI20200227eg2r00e1l,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1936,AFPFR00020200228eg2s00ngh,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1937,AFPECOFI20200228eg2s005k1,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1938,Amélioration,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1939,AFPFR00020200228eg2s008px,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1940,ONU Antonio Guterres,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1941,Arabie Saoudite,LOC,1,0,1,0,0,0,0,0,0,0,0,0,0,0.14
1942,Trevise,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1943,place de la Riponne,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1944,Vaudoises,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1945,TEMPS00020200309eg390000e,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1946,Klagenfurt,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1947,Vérone,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1948,Petit-Chêne,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1949,Grottes,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1950,FIGPRE0020200311eg3b005bp,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1951,AP,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1952,Palais des Nations,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1953,AFPECOFI20200304eg3400b9l,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1954,TEMPS00020200304eg340002,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1955,CENTRE,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1956,RITESH,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1957,Bihar,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1958,Etat indien,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1959,Zika,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1960,Kemptthal,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1961,TEMPS00020200306eg360000y,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1962,Taipei,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1963,Bangkok,LOC,1,0,0,1,0,0,0,0,0,0,0,0,0,0.14
1964,Dent d’Oche,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
1965,Bourbons,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1966,Valence,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1967,Pays basque,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1968,Grandola Vila Morena,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1969,AFPFR00020200425eg4p006mx,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1970,AFPFR00020200425eg4p006el,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1971,Petites,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1972,République fédérale du Nigeria,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1973,Allemande,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1974,Asturies,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1975,Palma de Majorque,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1976,Retiro,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1977,Corinna,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1978,l'Europe de l'Est,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1979,Botswana,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1980,université Autonoma,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1981,Couronne,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1982,Estoril,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1983,Orléans,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1984,Battenberg,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1985,Romanelsur,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1986,hôtel Mathurin de Paris,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1987,Gitan,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1988,Chilienne,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1989,ArcInfo,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1990,Germanophones,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1991,Grab,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1992,Röstigraben,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1993,Ilaris,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1994,Sud de la Loire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1995,Lahore,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1996,Premier ministre de la province d'Ontario,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1997,Milanais,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1998,AFPFR00020200426eg4q000dx,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
1999,Suisse alémanique,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2000,Vieux,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2001,AFPFR00020200427eg4r00gwd,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2002,lycée Chenjinglun,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2003,plaza de España,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2004,Eixample,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2005,Ramblas,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2006,Plaquenil,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2007,Pôle Santé Vallée de Joux,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2008,Lavandou,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2009,Hyères,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2010,Port-Man,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2011,Lopinavir/ Ritonavir,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2012,Immunoglobulines,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2013,Mauriciens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2014,TPS_20200424_0003-art_1.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2015,unige.ch/covid-19,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2016,Begnins,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2017,Rouennais,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2018,Romand,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2019,GL,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2020,Vatel,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2021,Europe de l'Ouest,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2022,Pacifique Sud,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2023,Musée Nobel,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2024,Miandoab,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2025,prison d'Ardabil,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2026,Kurdistan,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2027,Haute-Commissaire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2028,Bourse de Zurich,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2029,PDG de Roche,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2030,division Diagnostic moléculaire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2031,REUTFR0020200422eg4m004ed,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2032,Pentagone,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2033,Centres,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2034,TEMPS00020200424eg4o0000a,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2035,» de viande,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2036,europe,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2037,Métropole,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2038,Région Auvergne,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2039,Pretoria,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2040,Dakota du Sud,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2041,Cap Métropole,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2042,Métropole Habitat,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2043,ECHOFR0020200424eg4o000dz,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2044,Lire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2045,suisse,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2046,ECHOFR0020200424eg4o000ru,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2047,Agicap,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2048,Stéphanois,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2049,Covimad,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2050,Fribourgeois Carl,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2051,Caritas,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2052,Bénévolat,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2053,Nomad,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2054,Grande mosquée de La Mecque,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2055,Etats-Unis d'Amérique,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2056,Onu Antonio Guterres,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2057,REUTFR0020200424eg4o005sd,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2058,Oise,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2059,province italienne de,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2060,tunnel du Simplon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2061,Appui,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2062,CORNELIA,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2063,Renaissance,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2064,château de Stockalper,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2065,Domani,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2066,lac de Constance,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2067,Simplon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2068,Vide,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2069,Rempli,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2070,TEMPS00020200504eg5400010,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2071,Idjwi,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2072,WATA,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2073,province du Sud-Kivu,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2074,Division Provinciale de la Santé,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2075,Wurtemberg,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2076,Bade,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2077,Communauté urbaine,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2078,Institut Malgache des Recherches Appliquées,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2079,aéroport Osvaldo Vieira de Bissau,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2080,Bissau,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2081,Guinée Bissau,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2082,caserne de Chamblon,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2083,TEMPS00020200504eg540000r,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2084,gare de Munich,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2085,Lier,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2086,Guichet,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2087,Schaffhouse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2088,canton de Schaffhouse,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2089,DELAY,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2090,Actemra de Roche,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2091,Africains,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2092,l’Afrique du Sud,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2093,TEMPS00020200506eg560000h,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2094,TBNWEB0020200505eg5500016,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2095,Roche Diagnostics,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2096,La Pitié,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2097,Grammont,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2098,Hôtel de l’Union,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2099,GENDARME,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2100,ER,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2101,REUTFR0020200505eg550002,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2102,Terre,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2103,Hôpital de Sallanches,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2104,TEMPS00020200505eg550000s,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2105,Houches,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2106,Douarnenez,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2107,Saint-Gervolains,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2108,Haut-Savoyards,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2109,Dauphiné,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2110,hôpital de Sallanches,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2111,Lyonnais,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2112,tunnel du Mont-Blanc,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2113,autoroute Blanche,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2114,Bardonnex,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2115,l’Afrique de l’Ouest,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2116,l’Afrique du Nord,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2117,Cantons,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2118,Baltimore,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2119,Actualité,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2120,Confiner,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2121,TEMPS00020200501eg510000i,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2122,Etablissements hospitaliers du Nord vaudois,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2123,Institut tropical,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2124,Institut de Wuhan,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2125,Sinovac,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2126,Avalisé,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2127,région du Nord,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2128,Turkménistan,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2129,Etats insulaires,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2130,AFPFR00020200430eg4u000pa,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2131,Economie,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2132,P&TS,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2133,Gran Paradiso,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2134,val d’Aoste,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2135,Coud,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2136,État du Sénégal,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2137,Médis Sénégal,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2138,Cheffe,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2139,Fribourgeoise,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2140,Mandchourie,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2141,l’Asie de l’Est,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2142,Villa Médicis,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2143,Université d’Amsterdam,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2144,Anxiogènes,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2145,Liverpool,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2146,FR,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2147,PRENDRE,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2148,AFPFR00020200501eg5100af1,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2149,LBBW,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2150,Vingtcinq,LOC,1,0,0,0,0,1,0,0,0,0,0,0,0,0.14
2151,Felco,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2152,Découragées,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2153,Afro-Américains,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2154,PAR SÉBASTIEN,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2155,Toulon,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2156,AFPFR00020200415eg4f00tmp,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2157,AFPFR00020200415eg4f00efh,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2158,Economiesuisse,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2159,Kagra,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2160,Ligo,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2161,Pise,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2162,Sierra Nevada,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2163,plateau de Bure,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2164,Institut de radioastronomie millimétrique de Grenoble,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2165,désert d’Atacama,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2166,Harps,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2167,La Silla,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2168,VLT,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2169,Very Large Telescope,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2170,mont Paranal,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2171,Télescopes,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2172,Groenland,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2173,Svalbard,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2174,E,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2175,AFPFR00020200413eg4d009,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2176,TPS_20200411_0006-art_3.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2177,Feuille,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2178,île de Mayotte,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2179,Institut français,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2180,Postfinance,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2181,Confédération»,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2182,Denens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2183,Birmingham,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2184,NCTV,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2185,Est de la France,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2186,T,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2187,AFPECOFI20200417eg4h005k1,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2188,Fondation Bill,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2189,L'Elysée,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2190,Nommé,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2191,Ferney,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2192,Tunis,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2193,Meyrin,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2194,Théâtre yiddish,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2195,Saint-Julien,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2196,la Valida,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2197,Thônex,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2198,Avigan,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2199,TEMPS00020200417eg4h00007,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2200,AVOCAT,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2201,Bouchesdu,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2202,Cadarache,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2203,BERKLEY,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2204,Mogadiscio,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2205,Terriens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2206,Jobs.ch,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2207,BIODIVERSITÉ,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2208,Soudan du Sud,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2209,Etats africains,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2210,TEMPS00020200407eg470000p,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2211,Hôpital de Morges,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2212,Frauenfeld,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2213,Kribi,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2214,Chardonney,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2215,Bovernier,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2216,Union des communes vaudoises,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2217,Ouest lausannois,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2218,Bussigny,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2219,Alle,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2220,TEMPS00020200407eg4700013,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2221,Léman Express,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2222,pôle de régulation d'Annemasse,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2223,Bussy,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2224,Etat fribourgeois,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2225,fleuve Ntem,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2226,Guinée équatoriale,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2227,TPS_20200407_0011-art_2.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2228,Jobscout24.ch,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2229,Soleil,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2230,Darmstadt,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2231,Système solaire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2232,Mercure,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2233,Colombo,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2234,Bepi,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2235,HEIG,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2236,TEMPS00020200411eg4b0000n,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2237,TPS_20200411_0013-art_1.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2238,Institut Paul Scherrer,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2239,Oxfordshire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2240,Kourou,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2241,Centre spatial guyanais de,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2242,Centre spatial Kennedy,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2243,la Défense,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2244,Suisse Tourisme,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2245,LinkedIn,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2246,Beau-Rivage Palace,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2247,Dolder Grand de Zurich,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2248,Myjob.ch,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2249,Ostjob.ch,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2250,Fairmont Grand Hotel Geneva,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2251,AFPFR00020200410eg4a00ew5,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2252,Syndrome respiratoire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2253,AFPFR00020200410eg4a008vh,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2254,FEMME,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2255,GUILLIER,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2256,SYLVIE,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2257,Comparis.ch,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2258,Diagnostics,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2259,Division,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2260,Secteur international,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2261,Eloxatine,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2262,suisse Ferring,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2263,Debiopharm,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2264,Health Valley,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2265,Miami,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2266,Saint-Légier,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2267,O Peptides,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2268,bâlois Alpha,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2269,Mauvernay,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2270,Canadien,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2271,MabThera,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2272,EMEA(3,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2273,Régions,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2274,Molecular Diagnostics,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2275,Rozlytrek,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2276,BLA,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2277,sBLA,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2278,L1,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2279,Venclexta,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2280,AS,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2281,Xolair,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2282,Rituxan,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2283,Mio CHF,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2284,AbbVie,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2285,Romont,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2286,Pays basque espagnol,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2287,Kigali,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2288,International Arancha Gonzalez Laya,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2289,Iraniens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2290,Romagne,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2291,Emilie,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2292,Abruzzes,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2293,Latium,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2294,Länder,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2295,Autrichiens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2296,TPS_20200418_0018-art_1.xml,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2297,Oléoprotéagineux,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2298,Md,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2299,Elysée,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2300,Puy,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2301,Saint-Paulien,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2302,ECHOFR0020200417eg4h000ef,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2303,City londonienne,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2304,République Tchèque,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2305,pays de l'Est,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2306,Gers,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2307,La Ruche,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2308,ligne verte de Bruxelles,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2309,Commissaire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2310,la Pologne,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2311,Vingt-Sept,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2312,Kevzara,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2313,Etats genevoise,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2314,Etats verte Lisa Mazzone,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2315,ALTERMATT,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2316,Hollande,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2317,Altermatt,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2318,Glasgow,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2319,COP26,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2320,ÉCONOMISTE,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2321,CHERCHEUR,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2322,Instagram,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2323,Silicon Valley,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2324,Oulens-sous-Echallens,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2325,autoroute A1,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2326,Hôpital de La Chaux-de-Fonds,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2327,Coffrane,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2328,Suze,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2329,Sonceboz,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2330,cimetière de Tramelan,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2331,au Caire,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2332,EMRO,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2333,DP3T.,LOC,1,0,0,0,1,0,0,0,0,0,0,0,0,0.14
2334,Stade de France,LOC,1,0,0,0,0,0,0,1,0,0,0,0,0,0.14
|