File size: 74,134 Bytes
79252b8 |
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 |
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<style type="text/css">
@import url('https://themes.googleusercontent.com/fonts/css?kit=OPeqXG-QxW3ZD8BtmPikfA');
.lst-kix_4t5rj2ymaawc-7>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-7, lower-latin) ". "
}
.lst-kix_4t5rj2ymaawc-8>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-8, lower-roman) ". "
}
.lst-kix_4t5rj2ymaawc-5>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-5, lower-roman) ". "
}
.lst-kix_px0qq4gnpzjq-2>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-2, lower-roman) ". "
}
.lst-kix_px0qq4gnpzjq-0>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-0, decimal) ". "
}
ol.lst-kix_px0qq4gnpzjq-2 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-1 {
list-style-type: none
}
.lst-kix_4t5rj2ymaawc-6>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-6, decimal) ". "
}
ol.lst-kix_px0qq4gnpzjq-0 {
list-style-type: none
}
.lst-kix_px0qq4gnpzjq-1>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-1, lower-latin) ". "
}
.lst-kix_4t5rj2ymaawc-1>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-1, lower-latin) ". "
}
.lst-kix_4t5rj2ymaawc-3>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-3, decimal) ". "
}
.lst-kix_4t5rj2ymaawc-0>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-0, decimal) ". "
}
.lst-kix_4t5rj2ymaawc-4>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-4, lower-latin) ". "
}
.lst-kix_4t5rj2ymaawc-2>li:before {
content: "" counter(lst-ctn-kix_4t5rj2ymaawc-2, lower-roman) ". "
}
.lst-kix_aux6bb4ckrxp-5>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-5
}
ol.lst-kix_4t5rj2ymaawc-2.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-2 0
}
.lst-kix_px0qq4gnpzjq-8>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-8, lower-roman) ". "
}
.lst-kix_px0qq4gnpzjq-6>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-6, decimal) ". "
}
.lst-kix_px0qq4gnpzjq-3>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-3, decimal) ". "
}
.lst-kix_px0qq4gnpzjq-7>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-7, lower-latin) ". "
}
.lst-kix_px0qq4gnpzjq-4>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-4, lower-latin) ". "
}
.lst-kix_px0qq4gnpzjq-5>li:before {
content: "" counter(lst-ctn-kix_px0qq4gnpzjq-5, lower-roman) ". "
}
ol.lst-kix_px0qq4gnpzjq-2.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-2 0
}
.lst-kix_4t5rj2ymaawc-1>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-1
}
ul.lst-kix_vczmoe3n37hp-0 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-1 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-2 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-3 {
list-style-type: none
}
.lst-kix_aux6bb4ckrxp-7>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-7
}
.lst-kix_aux6bb4ckrxp-1>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-1
}
.lst-kix_4t5rj2ymaawc-8>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-8
}
ul.lst-kix_vczmoe3n37hp-4 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-5 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-6 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-7 {
list-style-type: none
}
ul.lst-kix_vczmoe3n37hp-8 {
list-style-type: none
}
.lst-kix_px0qq4gnpzjq-6>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-6
}
ol.lst-kix_4t5rj2ymaawc-1 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-3.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-3 0
}
ol.lst-kix_4t5rj2ymaawc-0 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-6.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-6 0
}
.lst-kix_px0qq4gnpzjq-0>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-0
}
ol.lst-kix_px0qq4gnpzjq-0.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-0 0
}
.lst-kix_vczmoe3n37hp-8>li:before {
content: "- "
}
.lst-kix_px0qq4gnpzjq-1>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-1
}
.lst-kix_uk7jq4t70dzj-0>li:before {
content: "\0025cf "
}
ol.lst-kix_aux6bb4ckrxp-8.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-8 0
}
.lst-kix_vczmoe3n37hp-0>li:before {
content: "- "
}
.lst-kix_vczmoe3n37hp-4>li:before {
content: "- "
}
.lst-kix_vczmoe3n37hp-6>li:before {
content: "- "
}
.lst-kix_txy2chrzfkzx-3>li:before {
content: "\0025cf "
}
.lst-kix_px0qq4gnpzjq-2>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-2
}
.lst-kix_txy2chrzfkzx-5>li:before {
content: "\0025a0 "
}
.lst-kix_txy2chrzfkzx-7>li:before {
content: "\0025cb "
}
.lst-kix_vczmoe3n37hp-2>li:before {
content: "- "
}
.lst-kix_cr5nnj2e3g1t-8>li:before {
content: "- "
}
ul.lst-kix_txy2chrzfkzx-2 {
list-style-type: none
}
ul.lst-kix_txy2chrzfkzx-3 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-8.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-8 0
}
ul.lst-kix_txy2chrzfkzx-0 {
list-style-type: none
}
ul.lst-kix_txy2chrzfkzx-1 {
list-style-type: none
}
.lst-kix_4t5rj2ymaawc-6>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-6
}
.lst-kix_px0qq4gnpzjq-8>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-8
}
.lst-kix_cr5nnj2e3g1t-0>li:before {
content: "- "
}
ol.lst-kix_px0qq4gnpzjq-1.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-1 0
}
ul.lst-kix_txy2chrzfkzx-6 {
list-style-type: none
}
.lst-kix_txy2chrzfkzx-1>li:before {
content: "\0025cb "
}
ul.lst-kix_txy2chrzfkzx-7 {
list-style-type: none
}
ul.lst-kix_txy2chrzfkzx-4 {
list-style-type: none
}
ul.lst-kix_txy2chrzfkzx-5 {
list-style-type: none
}
ul.lst-kix_txy2chrzfkzx-8 {
list-style-type: none
}
ul.lst-kix_uk7jq4t70dzj-1 {
list-style-type: none
}
ul.lst-kix_uk7jq4t70dzj-0 {
list-style-type: none
}
.lst-kix_x86nlyhxmdmt-1>li:before {
content: "- "
}
ul.lst-kix_uk7jq4t70dzj-3 {
list-style-type: none
}
ul.lst-kix_uk7jq4t70dzj-2 {
list-style-type: none
}
ul.lst-kix_uk7jq4t70dzj-5 {
list-style-type: none
}
.lst-kix_uk7jq4t70dzj-2>li:before {
content: "\0025a0 "
}
ul.lst-kix_uk7jq4t70dzj-4 {
list-style-type: none
}
.lst-kix_uk7jq4t70dzj-6>li:before {
content: "\0025cf "
}
ul.lst-kix_uk7jq4t70dzj-7 {
list-style-type: none
}
ul.lst-kix_uk7jq4t70dzj-6 {
list-style-type: none
}
ul.lst-kix_uk7jq4t70dzj-8 {
list-style-type: none
}
.lst-kix_x86nlyhxmdmt-3>li:before {
content: "- "
}
ol.lst-kix_4t5rj2ymaawc-7.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-7 0
}
.lst-kix_uk7jq4t70dzj-4>li:before {
content: "\0025cb "
}
.lst-kix_4t5rj2ymaawc-0>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-0
}
.lst-kix_aux6bb4ckrxp-0>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-0
}
.lst-kix_x86nlyhxmdmt-7>li:before {
content: "- "
}
.lst-kix_cr5nnj2e3g1t-2>li:before {
content: "- "
}
ol.lst-kix_4t5rj2ymaawc-3 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-2 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-5 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-4 {
list-style-type: none
}
.lst-kix_aux6bb4ckrxp-6>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-6
}
.lst-kix_x86nlyhxmdmt-5>li:before {
content: "- "
}
.lst-kix_cr5nnj2e3g1t-4>li:before {
content: "- "
}
.lst-kix_cr5nnj2e3g1t-6>li:before {
content: "- "
}
ol.lst-kix_4t5rj2ymaawc-7 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-6 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-8 {
list-style-type: none
}
.lst-kix_uk7jq4t70dzj-8>li:before {
content: "\0025a0 "
}
.lst-kix_aux6bb4ckrxp-4>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-4
}
.lst-kix_aux6bb4ckrxp-8>li:before {
content: "(" counter(lst-ctn-kix_aux6bb4ckrxp-8, lower-roman) ") "
}
.lst-kix_aux6bb4ckrxp-3>li:before {
content: "" counter(lst-ctn-kix_aux6bb4ckrxp-3, lower-latin) ") "
}
.lst-kix_aux6bb4ckrxp-2>li:before {
content: "" counter(lst-ctn-kix_aux6bb4ckrxp-2, decimal) ". "
}
.lst-kix_aux6bb4ckrxp-4>li:before {
content: "(" counter(lst-ctn-kix_aux6bb4ckrxp-4, decimal) ") "
}
.lst-kix_aux6bb4ckrxp-7>li:before {
content: "(" counter(lst-ctn-kix_aux6bb4ckrxp-7, lower-latin) ") "
}
ol.lst-kix_aux6bb4ckrxp-7 {
list-style-type: none
}
ol.lst-kix_aux6bb4ckrxp-8 {
list-style-type: none
}
.lst-kix_aux6bb4ckrxp-6>li:before {
content: "(" counter(lst-ctn-kix_aux6bb4ckrxp-6, lower-roman) ") "
}
.lst-kix_aux6bb4ckrxp-5>li:before {
content: "(" counter(lst-ctn-kix_aux6bb4ckrxp-5, lower-latin) ") "
}
ol.lst-kix_aux6bb4ckrxp-0 {
list-style-type: none
}
ol.lst-kix_aux6bb4ckrxp-1 {
list-style-type: none
}
.lst-kix_aux6bb4ckrxp-2>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-2
}
ol.lst-kix_aux6bb4ckrxp-2 {
list-style-type: none
}
ol.lst-kix_aux6bb4ckrxp-3 {
list-style-type: none
}
.lst-kix_px0qq4gnpzjq-7>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-7
}
ol.lst-kix_aux6bb4ckrxp-4 {
list-style-type: none
}
ol.lst-kix_aux6bb4ckrxp-5 {
list-style-type: none
}
ol.lst-kix_aux6bb4ckrxp-6 {
list-style-type: none
}
.lst-kix_aux6bb4ckrxp-0>li:before {
content: "" counter(lst-ctn-kix_aux6bb4ckrxp-0, upper-roman) ". "
}
.lst-kix_aux6bb4ckrxp-1>li:before {
content: "" counter(lst-ctn-kix_aux6bb4ckrxp-1, upper-latin) ". "
}
ol.lst-kix_aux6bb4ckrxp-6.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-6 0
}
.lst-kix_px0qq4gnpzjq-5>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-5
}
.lst-kix_4t5rj2ymaawc-7>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-7
}
ol.lst-kix_4t5rj2ymaawc-5.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-5 0
}
.lst-kix_eeo2oty5lsqc-0>li:before {
content: "- "
}
.lst-kix_px0qq4gnpzjq-3>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-3
}
.lst-kix_eeo2oty5lsqc-3>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-8>li:before {
content: "- "
}
ol.lst-kix_px0qq4gnpzjq-5.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-5 0
}
.lst-kix_eeo2oty5lsqc-4>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-7>li:before {
content: "- "
}
.lst-kix_eeo2oty5lsqc-6>li:before {
content: "- "
}
.lst-kix_eeo2oty5lsqc-5>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-6>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-3>li:before {
content: "- "
}
ol.lst-kix_4t5rj2ymaawc-4.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-4 0
}
ol.lst-kix_aux6bb4ckrxp-0.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-0 0
}
.lst-kix_b4xv2ycpx6n2-1>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-5>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-0>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-4>li:before {
content: "- "
}
.lst-kix_4t5rj2ymaawc-2>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-2
}
.lst-kix_eeo2oty5lsqc-2>li:before {
content: "- "
}
.lst-kix_eeo2oty5lsqc-1>li:before {
content: "- "
}
.lst-kix_b4xv2ycpx6n2-2>li:before {
content: "- "
}
.lst-kix_4t5rj2ymaawc-5>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-5
}
ol.lst-kix_px0qq4gnpzjq-4.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-4 0
}
ol.lst-kix_aux6bb4ckrxp-7.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-7 0
}
.lst-kix_eeo2oty5lsqc-8>li:before {
content: "- "
}
ol.lst-kix_aux6bb4ckrxp-1.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-1 0
}
ul.lst-kix_x86nlyhxmdmt-6 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-7 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-8 {
list-style-type: none
}
.lst-kix_eeo2oty5lsqc-7>li:before {
content: "- "
}
ul.lst-kix_x86nlyhxmdmt-2 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-3 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-4 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-5 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-0 {
list-style-type: none
}
ul.lst-kix_x86nlyhxmdmt-1 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-3.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-3 0
}
.lst-kix_4t5rj2ymaawc-4>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-4
}
ol.lst-kix_aux6bb4ckrxp-5.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-5 0
}
ol.lst-kix_px0qq4gnpzjq-6.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-6 0
}
ul.lst-kix_eeo2oty5lsqc-3 {
list-style-type: none
}
.lst-kix_vczmoe3n37hp-7>li:before {
content: "- "
}
ul.lst-kix_eeo2oty5lsqc-2 {
list-style-type: none
}
ul.lst-kix_eeo2oty5lsqc-1 {
list-style-type: none
}
ul.lst-kix_eeo2oty5lsqc-0 {
list-style-type: none
}
.lst-kix_uk7jq4t70dzj-1>li:before {
content: "\0025cb "
}
.lst-kix_vczmoe3n37hp-1>li:before {
content: "- "
}
.lst-kix_aux6bb4ckrxp-8>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-8
}
.lst-kix_vczmoe3n37hp-3>li:before {
content: "- "
}
ul.lst-kix_cr5nnj2e3g1t-0 {
list-style-type: none
}
ul.lst-kix_cr5nnj2e3g1t-2 {
list-style-type: none
}
ul.lst-kix_cr5nnj2e3g1t-1 {
list-style-type: none
}
.lst-kix_vczmoe3n37hp-5>li:before {
content: "- "
}
ol.lst-kix_aux6bb4ckrxp-2.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-2 0
}
.lst-kix_txy2chrzfkzx-4>li:before {
content: "\0025cb "
}
.lst-kix_txy2chrzfkzx-6>li:before {
content: "\0025cf "
}
ul.lst-kix_cr5nnj2e3g1t-4 {
list-style-type: none
}
.lst-kix_txy2chrzfkzx-8>li:before {
content: "\0025a0 "
}
ul.lst-kix_cr5nnj2e3g1t-3 {
list-style-type: none
}
ul.lst-kix_cr5nnj2e3g1t-6 {
list-style-type: none
}
ul.lst-kix_cr5nnj2e3g1t-5 {
list-style-type: none
}
ul.lst-kix_cr5nnj2e3g1t-8 {
list-style-type: none
}
ul.lst-kix_cr5nnj2e3g1t-7 {
list-style-type: none
}
ul.lst-kix_b4xv2ycpx6n2-0 {
list-style-type: none
}
ol.lst-kix_4t5rj2ymaawc-1.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-1 0
}
ul.lst-kix_b4xv2ycpx6n2-1 {
list-style-type: none
}
ul.lst-kix_b4xv2ycpx6n2-2 {
list-style-type: none
}
.lst-kix_cr5nnj2e3g1t-7>li:before {
content: "- "
}
ol.lst-kix_px0qq4gnpzjq-8.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-8 0
}
ul.lst-kix_b4xv2ycpx6n2-7 {
list-style-type: none
}
ul.lst-kix_b4xv2ycpx6n2-8 {
list-style-type: none
}
ul.lst-kix_b4xv2ycpx6n2-3 {
list-style-type: none
}
ul.lst-kix_b4xv2ycpx6n2-4 {
list-style-type: none
}
ul.lst-kix_b4xv2ycpx6n2-5 {
list-style-type: none
}
.lst-kix_cr5nnj2e3g1t-1>li:before {
content: "- "
}
ul.lst-kix_b4xv2ycpx6n2-6 {
list-style-type: none
}
.lst-kix_txy2chrzfkzx-2>li:before {
content: "\0025a0 "
}
.lst-kix_txy2chrzfkzx-0>li:before {
content: "\0025cf "
}
.lst-kix_px0qq4gnpzjq-4>li {
counter-increment: lst-ctn-kix_px0qq4gnpzjq-4
}
ol.lst-kix_aux6bb4ckrxp-3.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-3 0
}
.lst-kix_uk7jq4t70dzj-3>li:before {
content: "\0025cf "
}
.lst-kix_uk7jq4t70dzj-5>li:before {
content: "\0025a0 "
}
ol.lst-kix_aux6bb4ckrxp-4.start {
counter-reset: lst-ctn-kix_aux6bb4ckrxp-4 0
}
.lst-kix_x86nlyhxmdmt-0>li:before {
content: "- "
}
ul.lst-kix_eeo2oty5lsqc-7 {
list-style-type: none
}
ul.lst-kix_eeo2oty5lsqc-6 {
list-style-type: none
}
ul.lst-kix_eeo2oty5lsqc-5 {
list-style-type: none
}
ul.lst-kix_eeo2oty5lsqc-4 {
list-style-type: none
}
li.li-bullet-0:before {
margin-left: -18pt;
white-space: nowrap;
display: inline-block;
min-width: 18pt
}
.lst-kix_x86nlyhxmdmt-2>li:before {
content: "- "
}
ul.lst-kix_eeo2oty5lsqc-8 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-6 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-5 {
list-style-type: none
}
.lst-kix_4t5rj2ymaawc-3>li {
counter-increment: lst-ctn-kix_4t5rj2ymaawc-3
}
ol.lst-kix_px0qq4gnpzjq-4 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-3 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-7.start {
counter-reset: lst-ctn-kix_px0qq4gnpzjq-7 0
}
ol.lst-kix_px0qq4gnpzjq-8 {
list-style-type: none
}
ol.lst-kix_px0qq4gnpzjq-7 {
list-style-type: none
}
.lst-kix_x86nlyhxmdmt-4>li:before {
content: "- "
}
.lst-kix_x86nlyhxmdmt-8>li:before {
content: "- "
}
.lst-kix_cr5nnj2e3g1t-3>li:before {
content: "- "
}
ol.lst-kix_4t5rj2ymaawc-0.start {
counter-reset: lst-ctn-kix_4t5rj2ymaawc-0 0
}
.lst-kix_uk7jq4t70dzj-7>li:before {
content: "\0025cb "
}
.lst-kix_aux6bb4ckrxp-3>li {
counter-increment: lst-ctn-kix_aux6bb4ckrxp-3
}
.lst-kix_x86nlyhxmdmt-6>li:before {
content: "- "
}
.lst-kix_cr5nnj2e3g1t-5>li:before {
content: "- "
}
ol {
margin: 0;
padding: 0
}
table td,
table th {
padding: 0
}
.c23 {
border-right-style: solid;
padding: 5pt 5pt 5pt 5pt;
border-bottom-color: #000000;
border-top-width: 1pt;
border-right-width: 1pt;
border-left-color: #000000;
vertical-align: top;
border-right-color: #000000;
border-left-width: 1pt;
border-top-style: solid;
border-left-style: solid;
border-bottom-width: 1pt;
width: 451.4pt;
border-top-color: #000000;
border-bottom-style: solid
}
.c26 {
margin-left: 14.2pt;
padding-top: 20pt;
text-indent: -14.2pt;
padding-bottom: 6pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: justify
}
.c2 {
margin-left: 14.2pt;
padding-top: 0pt;
text-indent: -14.2pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: justify
}
.c21 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 10pt;
font-family: "Arial";
font-style: normal
}
.c22 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 20pt;
font-family: "Arial";
font-style: normal
}
.c31 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 14pt;
font-family: "Arial";
font-style: normal
}
.c1 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c35 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 16pt;
font-family: "Arial";
font-style: normal
}
.c27 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: italic
}
.c36 {
color: #3c4043;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 10.5pt;
font-family: "Roboto";
font-style: normal
}
.c34 {
padding-top: 0pt;
padding-bottom: 3pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: center
}
.c18 {
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c28 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: right
}
.c33 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: left
}
.c6 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: justify
}
.c9 {
padding-top: 6pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: justify
}
.c15 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: center
}
.c24 {
color: #000000;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c7 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: justify
}
.c32 {
text-decoration-skip-ink: none;
-webkit-text-decoration-skip: none;
color: #1155cc;
text-decoration: underline
}
.c3 {
margin-left: 14.2pt;
border-spacing: 0;
border-collapse: collapse;
margin-right: auto
}
.c13 {
margin-left: 0pt;
list-style-position: inside;
text-indent: 45pt
}
.c16 {
margin-left: 72pt;
padding-left: 0pt
}
.c10 {
margin-left: 36pt;
padding-left: 0pt
}
.c25 {
max-width: 451.4pt;
padding: 72pt 72pt 72pt 72pt
}
.c12 {
margin-left: 86.2pt;
text-indent: -14.2pt
}
.c8 {
margin-left: 50.2pt;
text-indent: -14.2pt
}
.c14 {
padding: 0;
margin: 0
}
.c29 {
color: inherit;
text-decoration: inherit
}
.c37 {
margin-left: 14.2pt;
text-indent: -14.2pt
}
.c30 {
font-style: italic
}
.c0 {
height: 0pt
}
.c4 {
color: #1d1c1d
}
.c11 {
font-weight: 700
}
.c19 {
text-indent: 36pt
}
.c5 {
height: 11pt
}
.c17 {
margin-left: 36pt
}
.c20 {
background-color: #ffffff
}
.title {
padding-top: 0pt;
color: #000000;
font-size: 26pt;
padding-bottom: 3pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.subtitle {
padding-top: 0pt;
color: #666666;
font-size: 15pt;
padding-bottom: 16pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
li {
color: #000000;
font-size: 11pt;
font-family: "Arial"
}
p {
margin: 0;
color: #000000;
font-size: 11pt;
font-family: "Arial"
}
h1 {
padding-top: 20pt;
color: #000000;
font-size: 20pt;
padding-bottom: 6pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h2 {
padding-top: 18pt;
color: #000000;
font-size: 16pt;
padding-bottom: 6pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h3 {
padding-top: 16pt;
color: #434343;
font-size: 14pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h4 {
padding-top: 14pt;
color: #666666;
font-size: 12pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h5 {
padding-top: 12pt;
color: #666666;
font-size: 11pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h6 {
padding-top: 12pt;
color: #666666;
font-size: 11pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
font-style: italic;
orphans: 2;
widows: 2;
text-align: left
}
</style>
</head>
<body>
<p class="c34 title" id="h.m1jppgo2l757"><span class="c35">DATA PROVIDER-HOST AGREEMENT</span></p>
<p class="c5 c15"><span class="c31"></span></p>
<p class="c6"><span class="c27">v0.1</span></p>
<p class="c5 c15"><span class="c31"></span></p>
<p class="c6"><span class="c27">Download as <a
href="https://huggingface.co/spaces/bigscience/data_host_provider_agreement/raw/main/data_host_provider_agreement.txt"
download> .txt </a>,
<a href="https://huggingface.co/spaces/bigscience/data_host_provider_agreement/raw/main/data_host_provider_agreement.pdf"
download> .pdf </a>,
<a href="https://huggingface.co/spaces/bigscience/data_host_provider_agreement/raw/main/data_host_provider_agreement.docx"
download> .docx </a>,
or <a
href="https://huggingface.co/spaces/bigscience/data_host_provider_agreement/raw/main/data_host_provider_agreement.html"
download>
.html</a></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0 start" start="1">
<li class="c6 c13"><span>PREAMBLE</span></li>
</ol>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6"><span class="c18 c4">BigScience is an open research collaboration involving over 1000 participants
from 60 countries, focusing its collaborative research efforts in the study and development of natural
language processing systems (hereinafter NLP). </span></p>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6"><span class="c18 c4">The project is motivated by recent evolutions in the field brought about by the
growing capabilities, popularity, size and cost of Large Language Model-based methods. The computational
resources and data needed to develop LLMs are affordable by a handful of institutions, who often conduct
this research behind closed doors despite its significant impact on society. </span></p>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6"><span class="c4">Thanks to the support of a large compute grant on the French </span><span
class="c4"><a class="c29"
href="https://www.google.com/url?q=http://www.idris.fr/eng/jean-zay/jean-zay-presentation-eng.html&sa=D&source=editors&ust=1653494561013669&usg=AOvVaw3if3lBppSk72iVlS5BVsGD">Jean
Zay public super-computer</a></span><span class="c4">, the participants of BigScience can instead
collaborate across a range of academic institutions and organizations to </span><span class="c4">create an
openly accessible Large Language Model (LLM), available for the general public. This can be used to
fuel research, governance, regulation, and future technology.</span></p>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6"><span class="c4">In particular, the choice and governance of the D</span><span
class="c4">ata</span><span class="c4"> used to develop these technologies are of paramount importance.
Previous </span><span class="c4">work has</span><span class="c4"> mainly relied on text obtained
from snapshots of the Internet, due to </span><span class="c4">the large amount of Data and
availability</span><span class="c18 c4">. Unfortunately, this convenience choice raises multiple ethical and
legal issues and leads the technology to amplify harmful biases in its deployed applications.</span></p>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6"><span class="c4">BigScience takes an alternative approach of identifying Data sources for a training
corpus. Specifically, our participants built an annotated catalog of high-quality language resources to
cover the diversity of languages and social contexts that should make up such a training corpus. There are
two essential parties in charge of making this data available, under the auspices of BigScience: First, the
</span><span class="c4 c11">Data Providers</span><span class="c4">, any institution willing to license datasets
of interest purely for research purposes on a royalty free basis; and Second, the </span><span
class="c4 c11">Data Hosts</span><span class="c4">, institutions willing to contribute their technical
capabilities in order to host the data provided, enabling society to access it. These are the </span><span
class="c18 c4">champions of data sharing and openness in research. </span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c33"><span>This License governs the use of Data as</span><span> informed by the BigScience Ethical
Charter</span><span> and the values set forth in the BigScience workshop. These establish the
perspective informing this license that text and language are above all human-centric data. This means that
data subjects have inherent rights and protections, and interests that exist outside of its Machine Learning
context, and which we also need to account for.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span class="c1">Although the BigScience community does not aim to impose its values on potential
users of the Data, it is determined to take tangible steps towards protecting the community from
inappropriate uses of the work being developed by BigScience.</span></p>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6"><span class="c18 c4">Consequently, the main objective of this Data Provider Agreement (the Agreement)
is to serve as the core instrument enabling and governing the sharing of data between the interested
parties, for the benefit of open research. Both parties strive to serve this goal by entering into this
Agreement.</span></p>
<p class="c6 c5"><span class="c18 c4"></span></p>
<p class="c6 c5"><span class="c20 c36"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="2">
<li class="c6 c13"><span>DEFINITIONS</span></li>
</ol>
<p class="c6 c5 c17"><span class="c1"></span></p>
<p class="c6"><span class="c11">“Agreement</span><span>” means this Agreement including all its
Exhibits.</span></p>
<p class="c9"><span class="c4">“</span><span class="c4 c11">Confidential</span><span
class="c4"> </span><span class="c4 c11">Information</span><span class="c18 c4">” means
information that one Party discloses to the other Party under this Agreement and that is marked as
confidential or would normally be considered confidential.</span></p>
<p class="c9"><span class="c4">“</span><span class="c4 c11">Data</span><span class="c4">”</span><span
class="c4"> means </span><span class="c4">machine-readable </span><span class="c4">informational
content</span><span class="c4"> (individually or as a whole i.e., collection of Datasets) made
</span><span class="c4">available</span><span class="c4"> by the Data Provider</span><span
class="c4">.</span><span class="c18 c4"> </span></p>
<p class="c9"><span class="c4 c11">“Meta-Data”</span><span class="c4"> means supplementary
information of the Data, for example, summaries or visualizations of the data, restricted excerpts,
authorship information and high-level statistics (i.e. word counts))</span><span class="c18 c4">.</span></p>
<p class="c9"><span class="c4">“</span><span class="c4 c11">Dataset</span><span class="c4">”</span><span
class="c18 c4"> means one specific collection of Data that the Data Provider has the necessary rights
for sharing under this agreement.</span></p>
<p class="c9"><span class="c4 c11">“Processed Dataset”</span><span class="c4"> </span><span
class="c4">is a </span><span class="c4">Dataset</span><span class="c4"> that is further processed via
Data transformations, including additional modifications to one dataset (e.g., personal information removal,
additional annotations, extracted text, subsetting by language, removal of individual data points), dataset
combinations, etc.</span></p>
<p class="c9"><span class="c4">“</span><span class="c4 c11">Data</span><span class="c4"> </span><span
class="c4 c11">Host</span><span class="c4">”</span><span class="c4"> means a </span><span
class="c4">legal entity</span><span class="c18 c4"> permitted to process, prepare, and manage
subsequent 3rd party access to the Data of the Data Provider under the scope of this agreement.</span></p>
<p class="c9"><span class="c4">“</span><span class="c4 c11">Data</span><span class="c4"> </span><span
class="c4 c11">Provider</span><span class="c4">”</span><span class="c4"> means the individual or
legal entity granting permission to the Data Host to access and further </span><span class="c4">manage
the</span><span class="c4"> </span><span class="c4">Data</span><span class="c18 c4"> for the
purpose of this Agreement.</span></p>
<p class="c9"><span class="c4 c11">“</span><span class="c4 c11">Derived Work</span><span
class="c4 c11">”</span><span class="c4"> means any artifact created using Data covered by this
Agreement. </span></p>
<p class="c9"><span>“</span><span class="c11">Parties</span><span>” means any individual or entity
</span><span>entering into this Agreement.</span></p>
<p class="c9"><span class="c4">“</span><span class="c4 c11">Third Parties</span><span class="c18 c4">”
means individuals or legal entities that are not controlled by any of the involved parties in this
Agreement.</span></p>
<p class="c9"><span class="c4 c11 c20">“User”</span><span class="c4 c20"> means individual and/or
legal entity having access to the data provided by the Data Provider and hosted by the Data Host for the
purpose of this Agreement.</span></p>
<p class="c9 c5 c19"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="3">
<li class="c6 c13"><span class="c1">PURPOSE, RIGHTS GRANTED & SCOPE</span></li>
</ol>
<p class="c6"><span>The Data Provider grants to the Data Host a non-exclusive, </span><span>non-transferable,
non-sublicensable, irrevocable</span><span>, perpetual, royalty-free and worldwide license to use (that is
access, store, prepare, </span><span>process</span><span>, label and/or share) the agreed upon Data (see
List of Datasets in Exhibit A) in accordance with</span><span> </span><span>the use case scenarios and
further (re)distribution policy, as stated in </span><span>Annex III (see below)</span><span>.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="4">
<li class="c6 c13"><span>DATA PROVIDER RIGHTS AND OBLIGATIONS</span></li>
</ol>
<ol class="c14 lst-kix_4t5rj2ymaawc-1 start" start="1">
<li class="c6 c16 li-bullet-0"><span class="c1">The Data Provider warrants that it is the owner of the Data or
has the necessary rights to enter into this Agreement regarding the Data listed in the Dataset section
(see Exhibit A).</span></li>
<li class="c6 c16 li-bullet-0"><span class="c1">The Data Provider will provide Data Host with valid contact
information in order to settle any queries or issues related to the Data.</span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Provider will provide the Data Host access to the Data in
</span><span class="c1">a suitable format agreed upon by both parties. </span></li>
<li class="c6 c16 li-bullet-0"><span class="c1">The Data Provider shall not be subject to any damages or
liabilities for any malfunction, error or omission in the Data. In case the Data Provider becomes aware
of, it will diligently inform the Data Host in order to implement the proper modifications. From its
side, the Data Host will do the same.</span></li>
<li class="c6 c16 li-bullet-0"><span>In case the Data Provider is informed about the application of restrictions
of any kind the Data Provider will notify the Data Host.</span><span> For instance, i</span><span>n
case of becoming knowledgeable of any actual or suspected intellectual property rights infringement,
damages or claims associated with the Dataset the Data Provider promptly notifies the Data Host such
that the further infringing usage of the Dataset can be stopped.</span></li>
<li class="c6 c16 li-bullet-0"><span class="c1">The Data Provider acknowledges that the Data does not contain
any malicious source-code that adversely affect, alter, damage or destroy the proper functioning of any
software, operating system and/or hardware this may include but is not limited to viruses, trojan horses
ransomware, back doors and spy software.</span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Provider shall inform the Data Host in case the Data Provider
becomes aware that </span><span>the </span><span>dataset </span><span>does not comply with relevant
regulations and laws, such as personal data-related regulations.</span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Provider hereby disclaims any representations and warranties of
any kind, express or implied, including without limitation any warranties of fitness for the purpose set
out in this Agreement or beyond regarding the Data. The Data Provider does not guarantee the accuracy,
adequacy or completeness of the Da</span><span>ta.</span></li>
</ol>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="5">
<li class="c6 c13"><span class="c1">DATA HOST RIGHTS AND OBLIGATIONS</span></li>
</ol>
<ol class="c14 lst-kix_4t5rj2ymaawc-1 start" start="1">
<li class="c6 c16 li-bullet-0"><span class="c1">No rights are granted to the Data Host with respect to the Data
other than those stipulated in this Agreement, except any exceptions or limitations provided by
law.</span></li>
<li class="c6 c16 li-bullet-0"><span class="c1">The Data Host will hold harmless the Data Provider against any
claims, demands, suits or damages arising from the use of the Data in accordance with the purpose set
out in this Agreement. </span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Host acknowledges and agrees that the following disclaimers apply
to all End-Users and other entities who have access to the Data The Data is provided
“</span><span>as-is”</span><span class="c1">. </span></li>
<li class="c6 c16 li-bullet-0"><span>In case of becoming knowledgeable of any actual or suspected intellectual
property rights infringement, damages or claims associated with the Data the Data Host will promptly
</span><span>notify</span><span class="c1"> the Data Provider and stop the further usage of the Data
until the issue in question can be resolved.</span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Host will not </span><span>assert rights</span><span
class="c1"> over any Data (excluding Meta-Data) made available by way of this Agreement.</span>
</li>
<li class="c6 c16 li-bullet-0"><span>The Data Host will undertake </span><span>commercially
reasonable</span><span class="c1"> efforts to appropriately attribute the Data Provider as the
source of the Data.</span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Host is allowed to create and publish research (including
benchmarks, performance indicators and/or scientific insights) gained using the data under this
agreement</span><span class="c1">, for the purposes of BigScience’s research scope.</span></li>
<li class="c6 c16 li-bullet-0"><span>The Data Host will undertake commercially reasonable efforts to remove
personal data and information from the Dataset before using the
Dataset</span><span> Notwithstanding the latter undertaking, the Data Provider should, under
Section 4(j) of this agreement, inform the Data Host in case the former is aware of the existence of
personal data under the licensed dataset(s).</span></li>
</ol>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="6">
<li class="c6 c13"><span>LIMITATIONS</span></li>
</ol>
<ol class="c14 lst-kix_4t5rj2ymaawc-1 start" start="1">
<li class="c6 c16 li-bullet-0"><span class="c1">This agreement grants access to the Data exclusively for the
purpose and chosen Data Access Policy (see Exhibit A) stated in this Agreement and does not extend to
any other purpose nor does it apply to any other data not listed in the Dataset section (see Exhibit
A).</span></li>
<li class="c6 c16 li-bullet-0"><span>If the Data Provider complies to the data management plan </span><span
class="c1">the Data Provider holds the Data Host free and harmless of any action, recourse or claims
made by any third party due to the non-observance by the Data Provider of its obligations under this
Agreement and intellectual property and/or personal data related 3rd party claims. </span></li>
<li class="c6 c16 li-bullet-0"><span>Both Data Provider and Data Host will not be liable for any processing
activities of the Data under this agreement by any User having access to it under the framework of
BigScience. </span></li>
</ol>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="7">
<li class="c6 c13"><span>FEES </span><span class="c1">AND COSTS</span></li>
</ol>
<p class="c6"><span class="c1">Neither party will charge any fees, royalties or costs associated with implementing
this Agreement. All accruing costs or expenses of any party in relation to this Agreement are solely to be
carried by the responsible party alone.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="8">
<li class="c6 c13"><span>SECURITY</span></li>
</ol>
<p class="c6"><span>The Data Provider shall make reasonable efforts to provide the Data to the Data Host using
up-to-date security standards (this may include but is not limited to data transmission via secure transport
protocols, storage on secured servers as well as secure data processing). In case the data is made
accessible via authentication the Data Host ensures that the used authentication method
</span><span>meets</span><span class="c1"> up-to-date standards.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="9">
<li class="c6 c13"><span>TERM AND </span><span>TERMINATION</span></li>
</ol>
<ol class="c14 lst-kix_4t5rj2ymaawc-1 start" start="1">
<li class="c6 c16 li-bullet-0"><span class="c1">This Agreement is valid from the date the involved parties
agree, or by default, from the moment it is signed by all the involved parties.</span></li>
<li class="c6 c16 li-bullet-0"><span>The term of this Agreement shall be from the Agreement Date until the last
to expire of the Data Provider’s intellectual property rights or any related rights on the
licensed Dataset, strictly for the purpose of this Agreement.</span></li>
<li class="c6 c16 li-bullet-0"><span class="c1">This Agreement can be terminated by either party immediately in
case the other party breaches this Agreement upon due notice of it and the breach is not remediated
within 30 days.</span></li>
<li class="c6 c16 li-bullet-0"><span>In case either party would like to voluntarily terminate the Agreement, it
shall act in good faith and provide the other party with (i) a reasoned statement justifying the
decision; (ii) a 60 days pre-advice; (iii) and, give the other party the
</span><span>opportunity</span><span> to negotiate any new terms and conditions for the sake of the
Agreement’s continuity, and beyond, for the sake of BigScience’s research goals.</span><span
class="c1"> </span></li>
<li class="c6 c16 li-bullet-0"><span class="c1">Upon termination of this Agreement for any reason, the Data Host
and Data Provider cease to use the Data and Processed Datasets and for the purposes set out in
this Agreement within 14 days and upon that delete the Data and Processed Datasets immediately
(respecting any holding periods or processing information storage required by the law) . This does not
affect already completed or created Derived Work before the termination of this Agreement.</span></li>
</ol>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="10">
<li class="c6 c13"><span class="c1">FORCE MAJEURE</span></li>
</ol>
<p class="c6"><span class="c1">Neither party shall be liable to the other for a failure of performance undertaken in
this Agreement if prevented from doing so by any circumstances beyond its reasonable control (such as but
not limited to fire, flood, drought, war, explosion, terrorism, computer hacking and viruses, acts of any
government body, perils of the sea and air).</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="11">
<li class="c6 c13"><span class="c1">CONFIDENTIALITY</span></li>
</ol>
<p class="c6"><span>Each party shall treat this Agreement and all information and/or business practices of the other
party it </span><span>aquires</span><span class="c1"> or becomes knowledgeable of as confidential.
Confidential information does not include any public or generally available information or any information
independently obtained or available prior to entering this Agreement. Notwithstanding the foregoing, either
party is allowed to reveal confidential information if it is required by law to do so.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="12">
<li class="c6 c13"><span class="c1">ENTIRE AGREEMENT</span></li>
</ol>
<p class="c6"><span class="c1">This Agreement including its exhibits and attachments constitute the entirety of the
Agreement between the parties and supersedes any prior negotiations or understanding.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="13">
<li class="c6 c13"><span class="c1">MODIFICATION AND AMENDMENT</span></li>
</ol>
<p class="c6"><span class="c1">This Agreement can be amended or modified by mutual consent at any time. The
amendment and/or modification must be put forth in writing.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="14">
<li class="c6 c13"><span>DISPUTE RESOLUTION</span></li>
</ol>
<p class="c9"><span class="c4">Any dispute that may arise from the breach of this Agreement will be first subject to
an alternative dispute resolution phase under the auspices of the BigScience Community.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="15">
<li class="c6 c13"><span class="c1">SURVIVAL</span></li>
</ol>
<p class="c6"><span class="c1">The provisions set forth in section 6(b) (Limits of Liability), 10 (Term and
Termination), 12 (Confidentiality), 15 (Governing Law), 16 (Survival) and Exhibit A (Section Restrictions of
Use in the Dataset section) shall survive the termination of this agreement and continue to bind both
parties.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="16">
<li class="c6 c13"><span class="c1">SEVERABILITY</span></li>
</ol>
<p class="c6"><span class="c1">If any provision of this Agreement is held to be invalid, illegal or unenforceable,
the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set
forth herein. The parties agree to substitute such a provision with a valid provision most closely
resembling the intent of such severed provision.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="17">
<li class="c6 c13"><span class="c1">NO ADDITIONAL TERMS</span></li>
</ol>
<p class="c6"><span class="c1">Unless and to the extent expressly agreed to in writing between the Data Host and the
Data Provider no other terms and conditions shall be binding to either party.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_4t5rj2ymaawc-0" start="18">
<li class="c6 c13"><span class="c1">FULL UNDERSTANDING</span></li>
</ol>
<p class="c6"><span class="c1">The parties acknowledge that they fully understand and agree to all of their rights
and obligations under this Agreement.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c2"><span class="c1">DATA
PROVIDER DATA
HOST</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2"><span
class="c1">…………………………………. ………………………………….</span>
</p>
<p class="c2"><span
class="c1">Name Name</span>
</p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2"><span
class="c1">…………………………………. ………………………………….</span>
</p>
<p class="c2"><span class="c1">Date and
Location Date
and Location</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<hr style="page-break-before:always;display:none;">
<p class="c6 c5"><span class="c1"></span></p>
<h1 class="c26" id="h.jvts60i5swq4"><span class="c22">Annex </span></h1>
<p class="c2 c5"><span class="c24 c11"></span></p>
<p class="c2"><span class="c24 c11">DATA PROVIDER SCHEDULE (EXHIBIT A)</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_aux6bb4ckrxp-0 start" start="1">
<li class="c6 c10 li-bullet-0"><span class="c1">Data Provider Information</span></li>
</ol>
<p class="c2 c5"><span class="c1"></span></p><a id="t.1aebe24dda1b56316fca09844ec7bf63e4290b0d"></a><a id="t.0"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span class="c1"> Data Provider Name</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.c06f5ae8823510bc7bdc98a6ebb4d663986381f0"></a><a id="t.1"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span class="c1"> Data Address</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.c06f5ae8823510bc7bdc98a6ebb4d663986381f0"></a><a id="t.2"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span class="c1"> Data Provider Contact
Information</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.1aebe24dda1b56316fca09844ec7bf63e4290b0d"></a><a id="t.3"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span class="c1"> Data Provider Name</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.1aebe24dda1b56316fca09844ec7bf63e4290b0d"></a><a id="t.4"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span> Special Conditions (</span><span class="c30">if
applicable</span><span class="c1">)</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.1aebe24dda1b56316fca09844ec7bf63e4290b0d"></a><a id="t.5"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span> D</span><span>ata Management Plan</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_aux6bb4ckrxp-0" start="2">
<li class="c6 c10 li-bullet-0"><span>Datasets</span></li>
</ol>
<p class="c2 c5"><span class="c1"></span></p><a id="t.240e3e31feb831c8b0d6526779ad9e3796c7176c"></a><a id="t.6"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span class="c1"> List of Datasets</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.c06f5ae8823510bc7bdc98a6ebb4d663986381f0"></a><a id="t.7"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c5 c7"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span> License of Datasets (</span><span class="c30">if
more than one, please assign in List of Datasets</span><span class="c1">)</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p><a id="t.c06f5ae8823510bc7bdc98a6ebb4d663986381f0"></a><a id="t.8"></a>
<table class="c3">
<tr class="c0">
<td class="c23" colspan="1" rowspan="1">
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
<p class="c7 c5"><span class="c1"></span></p>
</td>
</tr>
</table>
<p class="c2"><span class="c1"> Restrictions - Please indicate of any
restrictions apply to any of the above listed datasets</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_aux6bb4ckrxp-0" start="3">
<li class="c6 c10 li-bullet-0"><span class="c1">Field of Use</span></li>
</ol>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span class="c1">Scope / use cases:</span></p>
<p class="c5 c6"><span class="c1"></span></p>
<p class="c6 c8"><span>▯ under condition: openly released models, results, and artifacts</span></p>
<p class="c6 c8"><span class="c1">▯under condition: use RAIL license for ML artifacts (has to be
attached)</span></p>
<p class="c6 c8"><span>▯under condition: value alignment (determined by data host)</span></p>
<p class="c6 c8"><span>▯under condition: value alignment (data modelers sign click-through form)</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<ol class="c14 lst-kix_aux6bb4ckrxp-0" start="4">
<li class="c6 c10 li-bullet-0"><span>Data </span><span>Distribution Policy</span></li>
</ol>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span>Acknowledging </span><span>the immense value and benefits that your datasets may provide, and
</span><span> being conscious and respectful towards the different economic interests that you may have,
this Agreement offers the Data Provider a flexible set of optional frameworks for the use, re-use, and
distribution of data:</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c8"><span>▯</span><span>The Data Provider permits the Data Host to use the Data for the purpose
set out in this Agreement. The Data Host is </span><span class="c11">not </span><span>allowed to make the
</span><span>Data</span><span> publicly available outside of the remits of this license </span><span>(this
does not include Meta Data)</span><span>.</span></p>
<p class="c6 c8 c5"><span class="c1"></span></p>
<p class="c6 c8"><span class="c1">▯The Data Provider permits the Data Host to make the Data (as a whole or in
parts or processed) available to downstream users upon signing a non-dissemination agreement.</span></p>
<p class="c6 c8 c5"><span class="c1"></span></p>
<p class="c6 c8"><span>▯The Data Provider permits the Data Host to make the Data (as a whole or in parts or
processed) available to downstream users using a system that supports authentication/synchronization</span>
</p>
<p class="c6 c8 c5"><span class="c1"></span></p>
<p class="c6 c8"><span>▯The Data Provider permits the Data Host to make the Data </span><span>(as a whole or
in parts or processed) </span><span>available with modifications such as anonymizing personal and/or
sensitive information about individuals.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c8"><span>▯</span><span>The </span><span>Data </span><span>Provider permits the Data
Host</span><span class="c1"> to use the Data for the purpose set out in this Agreement. Additionally,
the Data Host is allowed to make the Data publicly available under the Data license (select one) provided by
the Data Provider. </span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c12"><span class="c1">▯ CC BY 4.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ CC BY-NC-ND 4.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ CC BY-NC-SA 3.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ CC BY-NC-SA 4.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ CC BY-SA 3.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ CC BY-SA 4.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ CC-BY-NC 4.0 (Link)</span></p>
<p class="c6 c12"><span class="c1">▯ Microsoft Research Data License Agreement (Link)</span></p>
<p class="c6 c12"><span>▯custom license agreement (see Attachment if applicable)</span></p>
<p class="c6 c12"><span>▯ </span><span class="c1">Linux Foundation CDLA Permissive</span></p>
<p class="c6 c12"><span>▯ </span><span class="c1">Linux Foundation CDLA Restrictive</span></p>
<p class="c6 c12 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<hr style="page-break-before:always;display:none;">
<p class="c6 c5"><span class="c1"></span></p>
<p class="c2"><span class="c11 c24">RAIL Model License (EXHIBIT B)</span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c2 c5"><span class="c1"></span></p>
<p class="c33 c37"><span>Find here: </span><span class="c32"><a class="c29"
href="https://huggingface.co/spaces/bigscience/license">BLOOM RAIL License v1.0</a></span><span
class="c1"> </span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6 c5"><span class="c1"></span></p>
<hr style="page-break-before:always;display:none;">
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span class="c1">Potential further clauses:</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span class="c1">X. CONFLICT RESOLUTION</span></p>
<p class="c6"><span class="c1">In the case of any dispute, the parties shall attempt to resolve the issue by
negotiation first.</span></p>
<p class="c6"><span class="c1">In the case such negotiations cannot resolve the issue within six months either party
may bring the issue to the applicable court of law.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span class="c1">X. NO WAIVER</span></p>
<p class="c6"><span class="c1">The failure of the Data Host or Data Provider to enforce or execute any right or
provision of this Agreement shall not constitute a waiver of that right or provision.</span></p>
<p class="c6 c5"><span class="c1"></span></p>
<p class="c6"><span class="c1">X TITLES</span></p>
<p class="c6"><span class="c1">Headings and Section titles in this Agreement are only for convenience and are not to
be considered in construing this Agreement.</span></p>
<div>
<p class="c5 c28"><span class="c1"></span></p>
</div>
</body>
</html> |