File: copyright

package info (click to toggle)
pystac 1.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,388 kB
  • sloc: python: 24,703; makefile: 22; sh: 7
file content (2172 lines) | stat: -rw-r--r-- 115,212 bytes parent folder | download
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
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: pystac
Upstream-Contact: Rob Emanuele <rdemanuele@gmail.com>, Jon Duckworth <duckontheweb@gmail.com>
Source: https://github.com/stac-utils/pystac

Files: *
Copyright: 2019-2024, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: Apache-2.0

Files: tests/data-files/examples/0.8.1/extensions/scientific/examples/collection.json
       tests/data-files/examples/0.9.0/extensions/scientific/examples/collection.json
       tests/data-files/examples/0.9.0/extensions/version/examples/collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/scientific/examples/collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/version/examples/collection.json
       tests/data-files/scientific/collection.json
       tests/data-files/version/collection.json
Copyright: 2019-2021, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: CC0-1.0

Files: tests/data-files/catalogs/label_catalog-v0.8.1/acc/665946-labels/665946-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/a42435-labels/a42435-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/ca041a-labels/ca041a-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/d41d81-labels/d41d81-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/0a4c40-labels/0a4c40-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/0a4c40/0a4c40.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/353093-labels/353093-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/42f235-labels/42f235-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/42f235/42f235.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/a017f9-labels/a017f9-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/b15fce-labels/b15fce-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/f883a0-labels/f883a0-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/f883a0/f883a0.json
       tests/data-files/catalogs/label_catalog-v0.8.1/kam/4e7c7f-labels/4e7c7f-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/207cc7-labels/207cc7-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/401175-labels/401175-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/493701-labels/493701-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/f15272-labels/f15272-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/nia/825a50-labels/825a50-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/ptn/abe1a3-labels/abe1a3-labels.json
       tests/data-files/catalogs/label_catalog-v0.8.1/ptn/f49f31-labels/f49f31-labels.json
       tests/data-files/catalogs/test-case-4/acc/665946-labels/665946-labels.json
       tests/data-files/catalogs/test-case-4/acc/a42435-labels/a42435-labels.json
       tests/data-files/catalogs/test-case-4/acc/ca041a-labels/ca041a-labels.json
       tests/data-files/catalogs/test-case-4/acc/d41d81-labels/d41d81-labels.json
       tests/data-files/catalogs/test-case-4/dar/0a4c40-labels/0a4c40-labels.json
       tests/data-files/catalogs/test-case-4/dar/0a4c40/0a4c40.json
       tests/data-files/catalogs/test-case-4/dar/353093-labels/353093-labels.json
       tests/data-files/catalogs/test-case-4/dar/42f235-labels/42f235-labels.json
       tests/data-files/catalogs/test-case-4/dar/42f235/42f235.json
       tests/data-files/catalogs/test-case-4/dar/a017f9-labels/a017f9-labels.json
       tests/data-files/catalogs/test-case-4/dar/b15fce-labels/b15fce-labels.json
       tests/data-files/catalogs/test-case-4/dar/f883a0-labels/f883a0-labels.json
       tests/data-files/catalogs/test-case-4/dar/f883a0/f883a0.json
       tests/data-files/catalogs/test-case-4/kam/4e7c7f-labels/4e7c7f-labels.json
       tests/data-files/catalogs/test-case-4/mon/207cc7-labels/207cc7-labels.json
       tests/data-files/catalogs/test-case-4/mon/401175-labels/401175-labels.json
       tests/data-files/catalogs/test-case-4/mon/493701-labels/493701-labels.json
       tests/data-files/catalogs/test-case-4/mon/f15272-labels/f15272-labels.json
       tests/data-files/catalogs/test-case-4/nia/825a50-labels/825a50-labels.json
       tests/data-files/catalogs/test-case-4/ptn/abe1a3-labels/abe1a3-labels.json
       tests/data-files/catalogs/test-case-4/ptn/f49f31-labels/f49f31-labels.json
Copyright: 2019-2021, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: ODbL-1.0

Files: tests/cassettes/test_catalog/TestCatalog.test_read_remote.yaml
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/665946/665946.json
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/a42435/a42435.json
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/ca041a/ca041a.json
       tests/data-files/catalogs/label_catalog-v0.8.1/acc/d41d81/d41d81.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/353093/353093.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/a017f9/a017f9.json
       tests/data-files/catalogs/label_catalog-v0.8.1/dar/b15fce/b15fce.json
       tests/data-files/catalogs/label_catalog-v0.8.1/kam/4e7c7f/4e7c7f.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/207cc7/207cc7.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/401175/401175.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/493701/493701.json
       tests/data-files/catalogs/label_catalog-v0.8.1/mon/f15272/f15272.json
       tests/data-files/catalogs/label_catalog-v0.8.1/nia/825a50/825a50.json
       tests/data-files/catalogs/label_catalog-v0.8.1/ptn/abe1a3/abe1a3.json
       tests/data-files/catalogs/label_catalog-v0.8.1/ptn/f49f31/f49f31.json
       tests/data-files/catalogs/label_catalog-v0.8.1/znz/collection.json
       tests/data-files/catalogs/test-case-4/acc/665946/665946.json
       tests/data-files/catalogs/test-case-4/acc/a42435/a42435.json
       tests/data-files/catalogs/test-case-4/acc/ca041a/ca041a.json
       tests/data-files/catalogs/test-case-4/acc/d41d81/d41d81.json
       tests/data-files/catalogs/test-case-4/dar/353093/353093.json
       tests/data-files/catalogs/test-case-4/dar/a017f9/a017f9.json
       tests/data-files/catalogs/test-case-4/dar/b15fce/b15fce.json
       tests/data-files/catalogs/test-case-4/kam/4e7c7f/4e7c7f.json
       tests/data-files/catalogs/test-case-4/mon/207cc7/207cc7.json
       tests/data-files/catalogs/test-case-4/mon/401175/401175.json
       tests/data-files/catalogs/test-case-4/mon/493701/493701.json
       tests/data-files/catalogs/test-case-4/mon/f15272/f15272.json
       tests/data-files/catalogs/test-case-4/nia/825a50/825a50.json
       tests/data-files/catalogs/test-case-4/ptn/abe1a3/abe1a3.json
       tests/data-files/catalogs/test-case-4/ptn/f49f31/f49f31.json
       tests/data-files/catalogs/test-case-4/znz/collection.json
       tests/data-files/examples/0.8.1/catalog-spec/examples/summaries-s2.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/zanzibar/collection.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/zanzibar/znz001.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/zanzibar/znz029.json
       tests/data-files/examples/0.9.0/extensions/label/examples/multidataset/zanzibar/collection.json
       tests/data-files/examples/0.9.0/extensions/label/examples/multidataset/zanzibar/znz001.json
       tests/data-files/examples/1.0.0-RC1/collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/zanzibar/collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/zanzibar/znz001.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/zanzibar/znz029.json
       tests/data-files/examples/1.0.0/collection.json
       tests/data-files/examples/1.1.0/collection.json
       tests/data-files/examples/hand-0.8.1/collection.json
       tests/data-files/examples/hand-0.9.0/collection.json
Copyright: 2019-2021, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: CC-BY-4.0

Files: tests/data-files/catalogs/cbers-partial/CBERS4AWFI/collection.json
       tests/data-files/catalogs/cbers-partial/CBERS4MUX/collection.json
       tests/data-files/catalogs/cbers-partial/CBERS4PAN10M/collection.json
       tests/data-files/catalogs/cbers-partial/CBERS4PAN5M/collection.json
       tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/collection.json
       tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/collection.json
Copyright: 2019-2021, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: CC-BY-SA-3.0

Files: docs/tutorials/how-to-read-data-from-stac.ipynb
       tests/data-files/catalogs/planet-example-v1.0.0-beta.2/collection.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/spacenet-buildings/AOI_2_Vegas_img2636.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/spacenet-buildings/AOI_3_Paris_img1648.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/spacenet-buildings/AOI_4_Shanghai_img3344.json
       tests/data-files/examples/0.8.1/extensions/label/examples/multidataset/spacenet-buildings/collection.json
       tests/data-files/examples/0.8.1/extensions/label/examples/spacenet-roads/roads_collection.json
       tests/data-files/examples/0.9.0/extensions/label/examples/multidataset/spacenet-buildings/AOI_2_Vegas_img2636.json
       tests/data-files/examples/0.9.0/extensions/label/examples/multidataset/spacenet-buildings/AOI_3_Paris_img1648.json
       tests/data-files/examples/0.9.0/extensions/label/examples/multidataset/spacenet-buildings/AOI_4_Shanghai_img3344.json
       tests/data-files/examples/0.9.0/extensions/label/examples/multidataset/spacenet-buildings/collection.json
       tests/data-files/examples/0.9.0/extensions/label/examples/spacenet-roads/roads_collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/spacenet-buildings/AOI_2_Vegas_img2636.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/spacenet-buildings/AOI_3_Paris_img1648.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/spacenet-buildings/AOI_4_Shanghai_img3344.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/multidataset/spacenet-buildings/collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/label/examples/spacenet-roads/roads_collection.json
Copyright: 2019-2021, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: CC-BY-SA-4.0

Files: tests/data-files/eo/eo-collection.json
       tests/data-files/eo/sample-bands-in-item-properties.json
       tests/data-files/examples/0.8.1/collection-spec/examples/landsat-collection.json
       tests/data-files/examples/0.8.1/extensions/asset/examples/example-landsat8.json
       tests/data-files/examples/0.8.1/item-spec/examples/itemcollection-sample-full.json
       tests/data-files/examples/0.8.1/item-spec/examples/sample-full.json
       tests/data-files/examples/0.9.0/collection-spec/examples/landsat-collection.json
       tests/data-files/examples/0.9.0/extensions/commons/examples/landsat-collection.json
       tests/data-files/examples/0.9.0/item-spec/examples/itemcollection-sample-full.json
       tests/data-files/examples/0.9.0/item-spec/examples/sample-full.json
       tests/data-files/examples/1.0.0-RC1/extensions-collection/collection.json
       tests/data-files/examples/1.0.0-beta.2/extensions/single-file-stac/examples/example-search.json
       tests/data-files/examples/1.0.0-beta.2/item-spec/examples/null-geom-item.json
       tests/data-files/examples/1.0.0-beta.2/item-spec/examples/sample-full.json
       tests/data-files/examples/1.0.0/extensions-collection/collection.json
       tests/data-files/item/sample-item-asset-properties.json
       tests/data-files/item/sample-item-with-relative-extension-path.json
       tests/data-files/item/sample-item.json
Copyright: 2019-2021, Rob Emanuele <rdemanuele@gmail.com>
                      Jon Duckworth <duckontheweb@gmail.com>
License: PDDL-1.0

Files: tests/validation/cassettes/test_validate/TestValidate.test_validate_examples?example92?.yaml
       tests/validation/cassettes/test_validate/TestValidate.test_validate_examples?example124?.yaml
       tests/extensions/cassettes/test_projection/test_wkt2.yaml
       tests/extensions/cassettes/test_projection/test_centroid.yaml
       tests/extensions/cassettes/test_projection/test_validate_proj.yaml
       tests/extensions/cassettes/test_projection/test_epsg.yaml
       tests/extensions/cassettes/test_projection/test_shape.yaml
       tests/extensions/cassettes/test_projection/test_partial_apply.yaml
       tests/extensions/cassettes/test_projection/test_projjson.yaml
       tests/extensions/cassettes/test_projection/test_bbox.yaml
       tests/extensions/cassettes/test_projection/test_transform.yaml
       tests/extensions/cassettes/test_projection/test_geometry.yaml
       tests/extensions/cassettes/test_datacube/test_validate.yaml
       tests/extensions/cassettes/test_datacube/test_set_variables.yaml
Copyright: 2019-2023, Even Rouault and PROJ contributors
License: Expat

Files: debian/*
Copyright: 2023-2026, Antonio Valentino <antonio.valentino@tiscali.it>
License: Apache-2.0

License: Apache-2.0
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 .
     http://www.apache.org/licenses/LICENSE-2.0
 .
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 .
 On Debian systems, the complete text of the Apache License,
 Version 2.0 can be found in '/usr/share/common-licenses/Apache-2.0'.

License: CC0-1.0
 To the extent possible under law, the author(s) have dedicated all copyright
 and related and neighboring rights to this software to the public domain
 worldwide. This software is distributed without any warranty.
 .
 You should have received a copy of the CC0 Public Domain Dedication along with
 this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
 .
 On Debian systems, the full text of the CC0 1.0 Universal license can be found
 in the file `/usr/share/common-licenses/CC0-1.0'.

License: ODbL-1.0
 ## ODC Open Database License (ODbL)
 .
 ### Preamble
 .
 The Open Database License (ODbL) is a license agreement intended to
 allow users to freely share, modify, and use this Database while
 maintaining this same freedom for others. Many databases are covered by
 copyright, and therefore this document licenses these rights. Some
 jurisdictions, mainly in the European Union, have specific rights that
 cover databases, and so the ODbL addresses these rights, too. Finally,
 the ODbL is also an agreement in contract for users of this Database to
 act in certain ways in return for accessing this Database.
 .
 Databases can contain a wide variety of types of content (images,
 audiovisual material, and sounds all in the same database, for example),
 and so the ODbL only governs the rights over the Database, and not the
 contents of the Database individually. Licensors should use the ODbL
 together with another license for the contents, if the contents have a
 single set of rights that uniformly covers all of the contents. If the
 contents have multiple sets of different rights, Licensors should
 describe what rights govern what contents together in the individual
 record or in some other way that clarifies what rights apply.
 .
 Sometimes the contents of a database, or the database itself, can be
 covered by other rights not addressed here (such as private contracts,
 trade mark over the name, or privacy rights / data protection rights
 over information in the contents), and so you are advised that you may
 have to consult other documents or clear other rights before doing
 activities not covered by this License.
 .
 ------
 .
 The Licensor (as defined below)
 .
 and
 .
 You (as defined below)
 .
 agree as follows:
 .
 ### 1.0 Definitions of Capitalised Words
 .
 "Collective Database" - Means this Database in unmodified form as part
 of a collection of independent databases in themselves that together are
 assembled into a collective whole. A work that constitutes a Collective
 Database will not be considered a Derivative Database.
 .
 "Convey" - As a verb, means Using the Database, a Derivative Database,
 or the Database as part of a Collective Database in any way that enables
 a Person to make or receive copies of the Database or a Derivative
 Database.  Conveying does not include interaction with a user through a
 computer network, or creating and Using a Produced Work, where no
 transfer of a copy of the Database or a Derivative Database occurs.
 "Contents" - The contents of this Database, which includes the
 information, independent works, or other material collected into the
 Database. For example, the contents of the Database could be factual
 data or works such as images, audiovisual material, text, or sounds.
 .
 "Database" - A collection of material (the Contents) arranged in a
 systematic or methodical way and individually accessible by electronic
 or other means offered under the terms of this License.
 .
 "Database Directive" - Means Directive 96/9/EC of the European
 Parliament and of the Council of 11 March 1996 on the legal protection
 of databases, as amended or succeeded.
 .
 "Database Right" - Means rights resulting from the Chapter III ("sui
 generis") rights in the Database Directive (as amended and as transposed
 by member states), which includes the Extraction and Re-utilisation of
 the whole or a Substantial part of the Contents, as well as any similar
 rights available in the relevant jurisdiction under Section 10.4.
 .
 "Derivative Database" - Means a database based upon the Database, and
 includes any translation, adaptation, arrangement, modification, or any
 other alteration of the Database or of a Substantial part of the
 Contents. This includes, but is not limited to, Extracting or
 Re-utilising the whole or a Substantial part of the Contents in a new
 Database.
 .
 "Extraction" - Means the permanent or temporary transfer of all or a
 Substantial part of the Contents to another medium by any means or in
 any form.
 .
 "License" - Means this license agreement and is both a license of rights
 such as copyright and Database Rights and an agreement in contract.
 .
 "Licensor" - Means the Person that offers the Database under the terms
 of this License.
 .
 "Person" - Means a natural or legal person or a body of persons
 corporate or incorporate.
 .
 "Produced Work" -  a work (such as an image, audiovisual material, text,
 or sounds) resulting from using the whole or a Substantial part of the
 Contents (via a search or other query) from this Database, a Derivative
 Database, or this Database as part of a Collective Database.
 .
 "Publicly" - means to Persons other than You or under Your control by
 either more than 50% ownership or by the power to direct their
 activities (such as contracting with an independent consultant).
 .
 "Re-utilisation" - means any form of making available to the public all
 or a Substantial part of the Contents by the distribution of copies, by
 renting, by online or other forms of transmission.
 .
 "Substantial" - Means substantial in terms of quantity or quality or a
 combination of both. The repeated and systematic Extraction or
 Re-utilisation of insubstantial parts of the Contents may amount to the
 Extraction or Re-utilisation of a Substantial part of the Contents.
 .
 "Use" - As a verb, means doing any act that is restricted by copyright
 or Database Rights whether in the original medium or any other; and
 includes without limitation distributing, copying, publicly performing,
 publicly displaying, and preparing derivative works of the Database, as
 well as modifying the Database as may be technically necessary to use it
 in a different mode or format.
 .
 "You" - Means a Person exercising rights under this License who has not
 previously violated the terms of this License with respect to the
 Database, or who has received express permission from the Licensor to
 exercise rights under this License despite a previous violation.
 .
 Words in the singular include the plural and vice versa.
 .
 ### 2.0 What this License covers
 .
 2.1. Legal effect of this document. This License is:
 .
   a. A license of applicable copyright and neighbouring rights;
 .
   b. A license of the Database Right; and
 .
   c. An agreement in contract between You and the Licensor.
 .
 2.2 Legal rights covered. This License covers the legal rights in the
 Database, including:
 .
   a. Copyright. Any copyright or neighbouring rights in the Database.
   The copyright licensed includes any individual elements of the
   Database, but does not cover the copyright over the Contents
   independent of this Database. See Section 2.4 for details. Copyright
   law varies between jurisdictions, but is likely to cover: the Database
   model or schema, which is the structure, arrangement, and organisation
   of the Database, and can also include the Database tables and table
   indexes; the data entry and output sheets; and the Field names of
   Contents stored in the Database;
 .
   b. Database Rights. Database Rights only extend to the Extraction and
   Re-utilisation of the whole or a Substantial part of the Contents.
   Database Rights can apply even when there is no copyright over the
   Database. Database Rights can also apply when the Contents are removed
   from the Database and are selected and arranged in a way that would
   not infringe any applicable copyright; and
 .
   c. Contract. This is an agreement between You and the Licensor for
   access to the Database. In return you agree to certain conditions of
   use on this access as outlined in this License.
 .
 2.3 Rights not covered.
 .
   a. This License does not apply to computer programs used in the making
   or operation of the Database;
 .
   b. This License does not cover any patents over the Contents or the
   Database; and
 .
   c. This License does not cover any trademarks associated with the
   Database.
 .
 2.4 Relationship to Contents in the Database. The individual items of
 the Contents contained in this Database may be covered by other rights,
 including copyright, patent, data protection, privacy, or personality
 rights, and this License does not cover any rights (other than Database
 Rights or in contract) in individual Contents contained in the Database.
 For example, if used on a Database of images (the Contents), this
 License would not apply to copyright over individual images, which could
 have their own separate licenses, or one single license covering all of
 the rights over the images.
 .
 ### 3.0 Rights granted
 .
 3.1 Subject to the terms and conditions of this License, the Licensor
 grants to You a worldwide, royalty-free, non-exclusive, terminable (but
 only under Section 9) license to Use the Database for the duration of
 any applicable copyright and Database Rights. These rights explicitly
 include commercial use, and do not exclude any field of endeavour. To
 the extent possible in the relevant jurisdiction, these rights may be
 exercised in all media and formats whether now known or created in the
 future.
 .
 The rights granted cover, for example:
 .
   a. Extraction and Re-utilisation of the whole or a Substantial part of
   the Contents;
 .
   b. Creation of Derivative Databases;
 .
   c. Creation of Collective Databases;
 .
   d. Creation of temporary or permanent reproductions by any means and
   in any form, in whole or in part, including of any Derivative
   Databases or as a part of Collective Databases; and
 .
   e. Distribution, communication, display, lending, making available, or
   performance to the public by any means and in any form, in whole or in
   part, including of any Derivative Database or as a part of Collective
   Databases.
 .
 3.2 Compulsory license schemes. For the avoidance of doubt:
 .
   a. Non-waivable compulsory license schemes. In those jurisdictions in
   which the right to collect royalties through any statutory or
   compulsory licensing scheme cannot be waived, the Licensor reserves
   the exclusive right to collect such royalties for any exercise by You
   of the rights granted under this License;
 .
   b. Waivable compulsory license schemes. In those jurisdictions in
   which the right to collect royalties through any statutory or
   compulsory licensing scheme can be waived, the Licensor waives the
   exclusive right to collect such royalties for any exercise by You of
   the rights granted under this License; and,
 .
   c. Voluntary license schemes. The Licensor waives the right to collect
   royalties, whether individually or, in the event that the Licensor is
   a member of a collecting society that administers voluntary licensing
   schemes, via that society, from any exercise by You of the rights
   granted under this License.
 .
 3.3 The right to release the Database under different terms, or to stop
 distributing or making available the Database, is reserved. Note that
 this Database may be multiple-licensed, and so You may have the choice
 of using alternative licenses for this Database. Subject to Section
 10.4, all other rights not expressly granted by Licensor are reserved.
 .
 ### 4.0 Conditions of Use
 .
 4.1 The rights granted in Section 3 above are expressly made subject to
 Your complying with the following conditions of use. These are important
 conditions of this License, and if You fail to follow them, You will be
 in material breach of its terms.
 .
 4.2 Notices. If You Publicly Convey this Database, any Derivative
 Database, or the Database as part of a Collective Database, then You
 must:
 .
   a. Do so only under the terms of this License or another license
   permitted under Section 4.4;
 .
   b. Include a copy of this License (or, as applicable, a license
   permitted under Section 4.4) or its Uniform Resource Identifier (URI)
   with the Database or Derivative Database, including both in the
   Database or Derivative Database and in any relevant documentation; and
 .
   c. Keep intact any copyright or Database Right notices and notices
   that refer to this License.
 .
   d. If it is not possible to put the required notices in a particular
   file due to its structure, then You must include the notices in a
   location (such as a relevant directory) where users would be likely to
   look for it.
 .
 4.3 Notice for using output (Contents). Creating and Using a Produced
 Work does not require the notice in Section 4.2. However, if you
 Publicly Use a Produced Work, You must include a notice associated with
 the Produced Work reasonably calculated to make any Person that uses,
 views, accesses, interacts with, or is otherwise exposed to the Produced
 Work aware that Content was obtained from the Database, Derivative
 Database, or the Database as part of a Collective Database, and that it
 is available under this License.
 .
   a. Example notice. The following text will satisfy notice under
   Section 4.3:
 .
         Contains information from DATABASE NAME, which is made available
         here under the Open Database License (ODbL).
 .
 DATABASE NAME should be replaced with the name of the Database and a
 hyperlink to the URI of the Database. "Open Database License" should
 contain a hyperlink to the URI of the text of this License. If
 hyperlinks are not possible, You should include the plain text of the
 required URI's with the above notice.
 .
 4.4 Share alike.
 .
   a. Any Derivative Database that You Publicly Use must be only under
   the terms of:
 .
     i. This License;
 .
     ii. A later version of this License similar in spirit to this
       License; or
 .
     iii. A compatible license.
 .
   If You license the Derivative Database under one of the licenses
   mentioned in (iii), You must comply with the terms of that license.
 .
   b. For the avoidance of doubt, Extraction or Re-utilisation of the
   whole or a Substantial part of the Contents into a new database is a
   Derivative Database and must comply with Section 4.4.
 .
   c. Derivative Databases and Produced Works.  A Derivative Database is
   Publicly Used and so must comply with Section 4.4. if a Produced Work
   created from the Derivative Database is Publicly Used.
 .
   d. Share Alike and additional Contents. For the avoidance of doubt,
   You must not add Contents to Derivative Databases under Section 4.4 a
   that are incompatible with the rights granted under this License.
 .
   e. Compatible licenses. Licensors may authorise a proxy to determine
   compatible licenses under Section 4.4 a iii. If they do so, the
   authorised proxy's public statement of acceptance of a compatible
   license grants You permission to use the compatible license.
 .
 4.5 Limits of Share Alike.  The requirements of Section 4.4 do not apply
 in the following:
 .
   a. For the avoidance of doubt, You are not required to license
   Collective Databases under this License if You incorporate this
   Database or a Derivative Database in the collection, but this License
   still applies to this Database or a Derivative Database as a part of
   the Collective Database;
 .
   b. Using this Database, a Derivative Database, or this Database as
   part of a Collective Database to create a Produced Work does not
   create a Derivative Database for purposes of  Section 4.4; and
 .
   c. Use of a Derivative Database internally within an organisation is
   not to the public and therefore does not fall under the requirements
   of Section 4.4.
 .
 4.6 Access to Derivative Databases. If You Publicly Use a Derivative
 Database or a Produced Work from a Derivative Database, You must also
 offer to recipients of the Derivative Database or Produced Work a copy
 in a machine readable form of:
 .
   a. The entire Derivative Database; or
 .
   b. A file containing all of the alterations made to the Database or
   the method of making the alterations to the Database (such as an
   algorithm), including any additional Contents, that make up all the
   differences between the Database and the Derivative Database.
 .
 The Derivative Database (under a.) or alteration file (under b.) must be
 available at no more than a reasonable production cost for physical
 distributions and free of charge if distributed over the internet.
 .
 4.7 Technological measures and additional terms
 .
   a. This License does not allow You to impose (except subject to
   Section 4.7 b.)  any terms or any technological measures on the
   Database, a Derivative Database, or the whole or a Substantial part of
   the Contents that alter or restrict the terms of this License, or any
   rights granted under it, or have the effect or intent of restricting
   the ability of any person to exercise those rights.
 .
   b. Parallel distribution. You may impose terms or technological
   measures on the Database, a Derivative Database, or the whole or a
   Substantial part of the Contents (a "Restricted Database") in
   contravention of Section 4.74 a. only if You also make a copy of the
   Database or a Derivative Database available to the recipient of the
   Restricted Database:
 .
     i. That is available without additional fee;
 .
     ii. That is available in a medium that does not alter or restrict
     the terms of this License, or any rights granted under it, or have
     the effect or intent of restricting the ability of any person to
     exercise those rights (an "Unrestricted Database"); and
 .
     iii. The Unrestricted Database is at least as accessible to the
     recipient as a practical matter as the Restricted Database.
 .
   c. For the avoidance of doubt, You may place this Database or a
   Derivative Database in an authenticated environment, behind a
   password, or within a similar access control scheme provided that You
   do not alter or restrict the terms of this License or any rights
   granted under it or have the effect or intent of restricting the
   ability of any person to exercise those rights.
 .
 4.8 Licensing of others. You may not sublicense the Database. Each time
 You communicate the Database, the whole or Substantial part of the
 Contents, or any Derivative Database to anyone else in any way, the
 Licensor offers to the recipient a license to the Database on the same
 terms and conditions as this License. You are not responsible for
 enforcing compliance by third parties with this License, but You may
 enforce any rights that You have over a Derivative Database. You are
 solely responsible for any modifications of a Derivative Database made
 by You or another Person at Your direction. You may not impose any
 further restrictions on the exercise of the rights granted or affirmed
 under this License.
 .
 ### 5.0 Moral rights
 .
 5.1 Moral rights. This section covers moral rights, including any rights
 to be identified as the author of the Database or to object to treatment
 that would otherwise prejudice the author's honour and reputation, or
 any other derogatory treatment:
 .
   a. For jurisdictions allowing waiver of moral rights, Licensor waives
   all moral rights that Licensor may have in the Database to the fullest
   extent possible by the law of the relevant jurisdiction under Section
   10.4;
 .
   b. If waiver of moral rights under Section 5.1 a in the relevant
   jurisdiction is not possible, Licensor agrees not to assert any moral
   rights over the Database and waives all claims in moral rights to the
   fullest extent possible by the law of the relevant jurisdiction under
   Section 10.4; and
 .
   c. For jurisdictions not allowing waiver or an agreement not to assert
   moral rights under Section 5.1 a and b, the author may retain their
   moral rights over certain aspects of the Database.
 .
 Please note that some jurisdictions do not allow for the waiver of moral
 rights, and so moral rights may still subsist over the Database in some
 jurisdictions.
 .
 ### 6.0 Fair dealing, Database exceptions, and other rights not affected
 .
 6.1 This License does not affect any rights that You or anyone else may
 independently have under any applicable law to make any use of this
 Database, including without limitation:
 .
   a. Exceptions to the Database Right including: Extraction of Contents
   from non-electronic Databases for private purposes, Extraction for
   purposes of illustration for teaching or scientific research, and
   Extraction or Re-utilisation for public security or an administrative
   or judicial procedure.
 .
   b. Fair dealing, fair use, or any other legally recognised limitation
   or exception to infringement of copyright or other applicable laws.
 .
 6.2 This License does not affect any rights of lawful users to Extract
 and Re-utilise insubstantial parts of the Contents, evaluated
 quantitatively or qualitatively, for any purposes whatsoever, including
 creating a Derivative Database (subject to other rights over the
 Contents, see Section 2.4). The repeated and systematic Extraction or
 Re-utilisation of insubstantial parts of the Contents may however amount
 to the Extraction or Re-utilisation of a Substantial part of the
 Contents.
 .
 ### 7.0 Warranties and Disclaimer
 .
 7.1 The Database is licensed by the Licensor "as is" and without any
 warranty of any kind, either express, implied, or arising by statute,
 custom, course of dealing, or trade usage. Licensor specifically
 disclaims any and all implied warranties or conditions of title,
 non-infringement, accuracy or completeness, the presence or absence of
 errors, fitness for a particular purpose, merchantability, or otherwise.
 Some jurisdictions do not allow the exclusion of implied warranties, so
 this exclusion may not apply to You.
 .
 ### 8.0 Limitation of liability
 .
 8.1 Subject to any liability that may not be excluded or limited by law,
 the Licensor is not liable for, and expressly excludes, all liability
 for loss or damage however and whenever caused to anyone by any use
 under this License, whether by You or by anyone else, and whether caused
 by any fault on the part of the Licensor or not. This exclusion of
 liability includes, but is not limited to, any special, incidental,
 consequential, punitive, or exemplary damages such as loss of revenue,
 data, anticipated profits, and lost business. This exclusion applies
 even if the Licensor has been advised of the possibility of such
 damages.
 .
 8.2 If liability may not be excluded by law, it is limited to actual and
 direct financial loss to the extent it is caused by proved negligence on
 the part of the Licensor.
 .
 ### 9.0 Termination of Your rights under this License
 .
 9.1 Any breach by You of the terms and conditions of this License
 automatically terminates this License with immediate effect and without
 notice to You. For the avoidance of doubt, Persons who have received the
 Database, the whole or a Substantial part of the Contents, Derivative
 Databases, or the Database as part of a Collective Database from You
 under this License will not have their licenses terminated provided
 their use is in full compliance with this License or a license granted
 under Section 4.8 of this License.  Sections 1, 2, 7, 8, 9 and 10 will
 survive any termination of this License.
 .
 9.2 If You are not in breach of the terms of this License, the Licensor
 will not terminate Your rights under it.
 .
 9.3 Unless terminated under Section 9.1, this License is granted to You
 for the duration of applicable rights in the Database.
 .
 9.4 Reinstatement of rights. If you cease any breach of the terms and
 conditions of this License, then your full rights under this License
 will be reinstated:
 .
   a. Provisionally and subject to permanent termination until the 60th
   day after cessation of breach;
 .
   b. Permanently on the 60th day after cessation of breach unless
   otherwise reasonably notified by the Licensor; or
 .
   c.  Permanently if reasonably notified by the Licensor of the
   violation, this is the first time You have received notice of
   violation of this License from  the Licensor, and You cure the
   violation prior to 30 days after your receipt of the notice.
 .
 Persons subject to permanent termination of rights are not eligible to
 be a recipient and receive a license under Section 4.8.
 .
 9.5 Notwithstanding the above, Licensor reserves the right to release
 the Database under different license terms or to stop distributing or
 making available the Database. Releasing the Database under different
 license terms or stopping the distribution of the Database will not
 withdraw this License (or any other license that has been, or is
 required to be, granted under the terms of this License), and this
 License will continue in full force and effect unless terminated as
 stated above.
 .
 ### 10.0 General
 .
 10.1 If any provision of this License is held to be invalid or
 unenforceable, that must not affect the validity or enforceability of
 the remainder of the terms and conditions of this License and each
 remaining provision of this License shall be valid and enforced to the
 fullest extent permitted by law.
 .
 10.2 This License is the entire agreement between the parties with
 respect to the rights granted here over the Database. It replaces any
 earlier understandings, agreements or representations with respect to
 the Database.
 .
 10.3 If You are in breach of the terms of this License, You will not be
 entitled to rely on the terms of this License or to complain of any
 breach by the Licensor.
 .
 10.4 Choice of law. This License takes effect in and will be governed by
 the laws of the relevant jurisdiction in which the License terms are
 sought to be enforced. If the standard suite of rights granted under
 applicable copyright law and Database Rights in the relevant
 jurisdiction includes additional rights not granted under this License,
 these additional rights are granted in this License in order to meet the
 terms of this License.

License: CC-BY-4.0
 Creative Commons Attribution 4.0 International Public License
 .
 By exercising the Licensed Rights (defined below), You accept and agree
 to be bound by the terms and conditions of this Creative Commons
 Attribution 4.0 International Public License ("Public License"). To the
 extent this Public License may be interpreted as a contract, You are
 granted the Licensed Rights in consideration of Your acceptance of
 these terms and conditions, and the Licensor grants You such rights in
 consideration of benefits the Licensor receives from making the
 Licensed Material available under these terms and conditions.
 .
 Section 1 -- Definitions.
 .
  a. Adapted Material means material subject to Copyright and Similar
     Rights that is derived from or based upon the Licensed Material
     and in which the Licensed Material is translated, altered,
     arranged, transformed, or otherwise modified in a manner requiring
     permission under the Copyright and Similar Rights held by the
     Licensor. For purposes of this Public License, where the Licensed
     Material is a musical work, performance, or sound recording,
     Adapted Material is always produced where the Licensed Material is
     synched in timed relation with a moving image.
 .
  b. Adapter's License means the license You apply to Your Copyright
     and Similar Rights in Your contributions to Adapted Material in
     accordance with the terms and conditions of this Public License.
 .
  c. Copyright and Similar Rights means copyright and/or similar rights
     closely related to copyright including, without limitation,
     performance, broadcast, sound recording, and Sui Generis Database
     Rights, without regard to how the rights are labeled or
     categorized. For purposes of this Public License, the rights
     specified in Section 2(b)(1)-(2) are not Copyright and Similar
     Rights.
 .
  d. Effective Technological Measures means those measures that, in the
     absence of proper authority, may not be circumvented under laws
     fulfilling obligations under Article 11 of the WIPO Copyright
     Treaty adopted on December 20, 1996, and/or similar international
     agreements.
 .
  e. Exceptions and Limitations means fair use, fair dealing, and/or
     any other exception or limitation to Copyright and Similar Rights
     that applies to Your use of the Licensed Material.
 .
  f. Licensed Material means the artistic or literary work, database,
     or other material to which the Licensor applied this Public
     License.
 .
  g. Licensed Rights means the rights granted to You subject to the
     terms and conditions of this Public License, which are limited to
     all Copyright and Similar Rights that apply to Your use of the
     Licensed Material and that the Licensor has authority to license.
 .
  h. Licensor means the individual(s) or entity(ies) granting rights
     under this Public License.
 .
  i. Share means to provide material to the public by any means or
     process that requires permission under the Licensed Rights, such
     as reproduction, public display, public performance, distribution,
     dissemination, communication, or importation, and to make material
     available to the public including in ways that members of the
     public may access the material from a place and at a time
     individually chosen by them.
 .
  j. Sui Generis Database Rights means rights other than copyright
     resulting from Directive 96/9/EC of the European Parliament and of
     the Council of 11 March 1996 on the legal protection of databases,
     as amended and/or succeeded, as well as other essentially
     equivalent rights anywhere in the world.
 .
  k. You means the individual or entity exercising the Licensed Rights
     under this Public License. Your has a corresponding meaning.
 .
 Section 2 -- Scope.
 .
  a. License grant.
 .
       1. Subject to the terms and conditions of this Public License,
          the Licensor hereby grants You a worldwide, royalty-free,
          non-sublicensable, non-exclusive, irrevocable license to
          exercise the Licensed Rights in the Licensed Material to:
 .
            a. reproduce and Share the Licensed Material, in whole or
               in part; and
 .
            b. produce, reproduce, and Share Adapted Material.
 .
       2. Exceptions and Limitations. For the avoidance of doubt, where
          Exceptions and Limitations apply to Your use, this Public
          License does not apply, and You do not need to comply with
          its terms and conditions.
 .
       3. Term. The term of this Public License is specified in Section
          6(a).
 .
       4. Media and formats; technical modifications allowed. The
          Licensor authorizes You to exercise the Licensed Rights in
          all media and formats whether now known or hereafter created,
          and to make technical modifications necessary to do so. The
          Licensor waives and/or agrees not to assert any right or
          authority to forbid You from making technical modifications
          necessary to exercise the Licensed Rights, including
          technical modifications necessary to circumvent Effective
          Technological Measures. For purposes of this Public License,
          simply making modifications authorized by this Section 2(a)
          (4) never produces Adapted Material.
 .
       5. Downstream recipients.
 .
            a. Offer from the Licensor -- Licensed Material. Every
               recipient of the Licensed Material automatically
               receives an offer from the Licensor to exercise the
               Licensed Rights under the terms and conditions of this
               Public License.
 .
            b. No downstream restrictions. You may not offer or impose
               any additional or different terms or conditions on, or
               apply any Effective Technological Measures to, the
               Licensed Material if doing so restricts exercise of the
               Licensed Rights by any recipient of the Licensed
               Material.
 .
       6. No endorsement. Nothing in this Public License constitutes or
          may be construed as permission to assert or imply that You
          are, or that Your use of the Licensed Material is, connected
          with, or sponsored, endorsed, or granted official status by,
          the Licensor or others designated to receive attribution as
          provided in Section 3(a)(1)(A)(i).
 .
  b. Other rights.
 .
       1. Moral rights, such as the right of integrity, are not
          licensed under this Public License, nor are publicity,
          privacy, and/or other similar personality rights; however, to
          the extent possible, the Licensor waives and/or agrees not to
          assert any such rights held by the Licensor to the limited
          extent necessary to allow You to exercise the Licensed
          Rights, but not otherwise.
 .
       2. Patent and trademark rights are not licensed under this
          Public License.
 .
       3. To the extent possible, the Licensor waives any right to
          collect royalties from You for the exercise of the Licensed
          Rights, whether directly or through a collecting society
          under any voluntary or waivable statutory or compulsory
          licensing scheme. In all other cases the Licensor expressly
          reserves any right to collect such royalties.
 .
 Section 3 -- License Conditions.
 .
 Your exercise of the Licensed Rights is expressly made subject to the
 following conditions.
 .
  a. Attribution.
 .
       1. If You Share the Licensed Material (including in modified
          form), You must:
 .
            a. retain the following if it is supplied by the Licensor
               with the Licensed Material:
 .
                 i. identification of the creator(s) of the Licensed
                    Material and any others designated to receive
                    attribution, in any reasonable manner requested by
                    the Licensor (including by pseudonym if
                    designated);
 .
                ii. a copyright notice;
 .
               iii. a notice that refers to this Public License;
 .
                iv. a notice that refers to the disclaimer of
                    warranties;
 .
                 v. a URI or hyperlink to the Licensed Material to the
                    extent reasonably practicable;
 .
            b. indicate if You modified the Licensed Material and
               retain an indication of any previous modifications; and
 .
            c. indicate the Licensed Material is licensed under this
               Public License, and include the text of, or the URI or
               hyperlink to, this Public License.
 .
       2. You may satisfy the conditions in Section 3(a)(1) in any
          reasonable manner based on the medium, means, and context in
          which You Share the Licensed Material. For example, it may be
          reasonable to satisfy the conditions by providing a URI or
          hyperlink to a resource that includes the required
          information.
 .
       3. If requested by the Licensor, You must remove any of the
          information required by Section 3(a)(1)(A) to the extent
          reasonably practicable.
 .
       4. If You Share Adapted Material You produce, the Adapter's
          License You apply must not prevent recipients of the Adapted
          Material from complying with this Public License.
 .
 Section 4 -- Sui Generis Database Rights.
 .
 Where the Licensed Rights include Sui Generis Database Rights that
 apply to Your use of the Licensed Material:
 .
  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
     to extract, reuse, reproduce, and Share all or a substantial
     portion of the contents of the database;
 .
  b. if You include all or a substantial portion of the database
     contents in a database in which You have Sui Generis Database
     Rights, then the database in which You have Sui Generis Database
     Rights (but not its individual contents) is Adapted Material; and
 .
  c. You must comply with the conditions in Section 3(a) if You Share
     all or a substantial portion of the contents of the database.
 .
 For the avoidance of doubt, this Section 4 supplements and does not
 replace Your obligations under this Public License where the Licensed
 Rights include other Copyright and Similar Rights.
 .
 Section 5 -- Disclaimer of Warranties and Limitation of Liability.
 .
  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
 .
  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
 .
  c. The disclaimer of warranties and limitation of liability provided
     above shall be interpreted in a manner that, to the extent
     possible, most closely approximates an absolute disclaimer and
     waiver of all liability.
 .
 Section 6 -- Term and Termination.
 .
  a. This Public License applies for the term of the Copyright and
     Similar Rights licensed here. However, if You fail to comply with
     this Public License, then Your rights under this Public License
     terminate automatically.
 .
  b. Where Your right to use the Licensed Material has terminated under
     Section 6(a), it reinstates:
 .
       1. automatically as of the date the violation is cured, provided
          it is cured within 30 days of Your discovery of the
          violation; or
 .
       2. upon express reinstatement by the Licensor.
 .
     For the avoidance of doubt, this Section 6(b) does not affect any
     right the Licensor may have to seek remedies for Your violations
     of this Public License.
 .
  c. For the avoidance of doubt, the Licensor may also offer the
     Licensed Material under separate terms or conditions or stop
     distributing the Licensed Material at any time; however, doing so
     will not terminate this Public License.
 .
  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
     License.
 .
 Section 7 -- Other Terms and Conditions.
 .
  a. The Licensor shall not be bound by any additional or different
     terms or conditions communicated by You unless expressly agreed.
 .
  b. Any arrangements, understandings, or agreements regarding the
     Licensed Material not stated herein are separate from and
     independent of the terms and conditions of this Public License.
 .
 Section 8 -- Interpretation.
 .
  a. For the avoidance of doubt, this Public License does not, and
     shall not be interpreted to, reduce, limit, restrict, or impose
     conditions on any use of the Licensed Material that could lawfully
     be made without permission under this Public License.
 .
  b. To the extent possible, if any provision of this Public License is
     deemed unenforceable, it shall be automatically reformed to the
     minimum extent necessary to make it enforceable. If the provision
     cannot be reformed, it shall be severed from this Public License
     without affecting the enforceability of the remaining terms and
     conditions.
 .
  c. No term or condition of this Public License will be waived and no
     failure to comply consented to unless expressly agreed to by the
     Licensor.
 .
  d. Nothing in this Public License constitutes or may be interpreted
     as a limitation upon, or waiver of, any privileges and immunities
     that apply to the Licensor or You, including from the legal
     processes of any jurisdiction or authority.

License: CC-BY-SA-3.0
 THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS
 CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS
 PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE
 WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS
 PROHIBITED.
 .
 BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND
 AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS
 LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU
 THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH
 TERMS AND CONDITIONS.
 .
    1. Definitions
 .
    1. "Adaptation" means a work based upon the Work, or upon the Work and
    other pre-existing works, such as a translation, adaptation, derivative
    work, arrangement of music or other alterations of a literary or artistic
    work, or phonogram or performance and includes cinematographic adaptations
    or any other form in which the Work may be recast, transformed, or adapted
    including in any form recognizably derived from the original, except that a
    work that constitutes a Collection will not be considered an Adaptation for
    the purpose of this License. For the avoidance of doubt, where the Work is
    a musical work, performance or phonogram, the synchronization of the Work
    in timed-relation with a moving image ("synching") will be considered an
    Adaptation for the purpose of this License.
 .
    2. "Collection" means a collection of literary or artistic works, such as
    encyclopedias and anthologies, or performances, phonograms or broadcasts,
    or other works or subject matter other than works listed in Section 1(f)
    below, which, by reason of the selection and arrangement of their contents,
    constitute intellectual creations, in which the Work is included in its
    entirety in unmodified form along with one or more other contributions,
    each constituting separate and independent works in themselves, which
    together are assembled into a collective whole. A work that constitutes a
    Collection will not be considered an Adaptation (as defined above) for the
    purposes of this License.
 .
    3. "Creative Commons Compatible License" means a license that is listed at
    http://creativecommons.org/compatiblelicenses that has been approved by
    Creative Commons as being essentially equivalent to this License, including,
    at a minimum, because that license: (i) contains terms that have the same
    purpose, meaning and effect as the License Elements of this License; and,
    (ii) explicitly permits the relicensing of adaptations of works made
    available under that license under this License or a Creative Commons
    jurisdiction license with the same License Elements as this License.
 .
    4. "Distribute" means to make available to the public the original and
    copies of the Work or Adaptation, as appropriate, through sale or other
    transfer of ownership.
 .
    5. "License Elements" means the following high-level license attributes
    as selected by Licensor and indicated in the title of this License:
    Attribution, ShareAlike.
 .
    6. "Licensor" means the individual, individuals, entity or entities that
    offer(s) the Work under the terms of this License.
 .
    7. "Original Author" means, in the case of a literary or artistic work,
    the individual, individuals, entity or entities who created the Work or
    if no individual or entity can be identified, the publisher; and in
    addition (i) in the case of a performance the actors, singers, musicians,
    dancers, and other persons who act, sing, deliver, declaim, play in,
    interpret or otherwise perform literary or artistic works or expressions
    of folklore; (ii) in the case of a phonogram the producer being the person
    or legal entity who first fixes the sounds of a performance or other
    sounds; and, (iii) in the case of broadcasts, the organization that
    transmits the broadcast.
 .
    8. "Work" means the literary and/or artistic work offered under the
    terms of this License including without limitation any production in
    the literary, scientific and artistic domain, whatever may be the mode
    or form of its expression including digital form, such as a book,
    pamphlet and other writing; a lecture, address, sermon or other
    work of the same nature; a dramatic or dramatico-musical work; a
    choreographic work or entertainment in dumb show; a musical composition
    with or without words; a cinematographic work to which are assimilated
    works expressed by a process analogous to cinematography; a work of
    drawing, painting, architecture, sculpture, engraving or lithography; a
    photographic work to which are assimilated works expressed by a
    process analogous to photography; a work of applied art; an illustration,
    map, plan, sketch or three-dimensional work relative to geography,
    topography, architecture or science; a performance; a broadcast; a
    phonogram; a compilation of data to the extent it is protected as a
    copyrightable work; or a work performed by a variety or circus performer
    to the extent it is not otherwise considered a literary or artistic work.
 .
    9. "You" means an individual or entity exercising rights under this
    License who has not previously violated the terms of this License with
    respect to the Work, or who has received express permission from the
    Licensor to exercise rights under this License despite a previous
    violation.
 .
    10. "Publicly Perform" means to perform public recitations of the Work
    and to communicate to the public those public recitations, by any means
    or process, including by wire or wireless means or public digital
    performances; to make available to the public Works in such a way that
    members of the public may access these Works from a place and at a place
    individually chosen by them; to perform the Work to the public by any
    means or process and the communication to the public of the performances
    of the Work, including by public digital performance; to broadcast and
    rebroadcast the Work by any means including signs, sounds or images.
 .
    11. "Reproduce" means to make copies of the Work by any means including
    without limitation by sound or visual recordings and the right of
    fixation and reproducing fixations of the Work, including storage of
    a protected performance or phonogram in digital form or other electronic
    medium.
 .
    2. Fair Dealing Rights. Nothing in this License is intended to reduce,
    limit, or restrict any uses free from copyright or rights arising from
    limitations or exceptions that are provided for in connection with the
    copyright protection under copyright law or other applicable laws.
 .
    3. License Grant. Subject to the terms and conditions of this License,
    Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
    perpetual (for the duration of the applicable copyright) license to
    exercise the rights in the Work as stated below:
 .
    1. to Reproduce the Work, to incorporate the Work into one or more
    Collections, and to Reproduce the Work as incorporated in the Collections;
    2. to create and Reproduce Adaptations provided that any such Adaptation,
    including any translation in any medium, takes reasonable steps to
    clearly label, demarcate or otherwise identify that changes were made to
    the original Work. For example, a translation could be marked "The
    original work was translated from English to Spanish," or a modification
    could indicate "The original work has been modified.";
    3. to Distribute and Publicly Perform the Work including as incorporated
    in Collections; and,
    4. to Distribute and Publicly Perform Adaptations.
    5. For the avoidance of doubt:
         1. Non-waivable Compulsory License Schemes. In those jurisdictions
    in which the right to collect royalties through any statutory or
    compulsory licensing scheme cannot be waived, the Licensor reserves
    the exclusive right to collect such royalties for any exercise by You
    of the rights granted under this License;
         2. Waivable Compulsory License Schemes. In those jurisdictions in
    which the right to collect royalties through any statutory or compulsory
    licensing scheme can be waived, the Licensor waives the exclusive right
    to collect such royalties for any exercise by You of the rights granted
    under this License; and,
         3. Voluntary License Schemes. The Licensor waives the right to
    collect royalties, whether individually or, in the event that the Licensor
    is a member of a collecting society that administers voluntary licensing
    schemes, via that society, from any exercise by You of the rights granted
    under this License.
 .
    The above rights may be exercised in all media and formats whether now
    known or hereafter devised. The above rights include the right to make
    such modifications as are technically necessary to exercise the rights
    in other media and formats. Subject to Section 8(f), all rights not
    expressly granted by Licensor are hereby reserved.
 .
    4. Restrictions. The license granted in Section 3 above is expressly
    made subject to and limited by the following restrictions:
 .
    1. You may Distribute or Publicly Perform the Work only under the terms
    of this License. You must include a copy of, or the Uniform Resource
    Identifier (URI) for, this License with every copy of the Work You
    Distribute or Publicly Perform. You may not offer or impose any terms on
    the Work that restrict the terms of this License or the ability of the
    recipient of the Work to exercise the rights granted to that recipient
    under the terms of the License. You may not sublicense the Work. You must
    keep intact all notices that refer to this License and to the disclaimer of
    warranties with every copy of the Work You Distribute or Publicly Perform.
    When You Distribute or Publicly Perform the Work, You may not impose any
    effective technological measures on the Work that restrict the ability of a
    recipient of the Work from You to exercise the rights granted to that
    recipient under the terms of the License. This Section 4(a) applies to the
    Work as incorporated in a Collection, but this does not require the
    Collection apart from the Work itself to be made subject to the terms of
    this License. If You create a Collection, upon notice from any Licensor You
    must, to the extent practicable, remove from the Collection any credit as
    required by Section 4(c), as requested. If You create an Adaptation, upon
    notice from any Licensor You must, to the extent practicable, remove from
    the Adaptation any credit as required by Section 4(c), as requested.
 .
    2. You may Distribute or Publicly Perform an Adaptation only under the
    terms of: (i) this License; (ii) a later version of this License with the
    same License Elements as this License; (iii) a Creative Commons
    jurisdiction license (either this or a later license version) that contains
    the same License Elements as this License (e.g., Attribution-ShareAlike
    3.0 US)); (iv) a Creative Commons Compatible License. If you license the
    Adaptation under one of the licenses mentioned in (iv), you must comply
    with the terms of that license. If you license the Adaptation under the
    terms of any of the licenses mentioned in (i), (ii) or (iii) (the
    "Applicable License"), you must comply with the terms of the Applicable
    License generally and the following provisions: (I) You must include a
    copy of, or the URI for, the Applicable License with every copy of each
    Adaptation You Distribute or Publicly Perform; (II) You may not offer or
    impose any terms on the Adaptation that restrict the terms of the
    Applicable License or the ability of the recipient of the Adaptation to
    exercise the rights granted to that recipient under the terms of the
    Applicable License; (III) You must keep intact all notices that refer to
    the Applicable License and to the disclaimer of warranties with every copy
    of the Work as included in the Adaptation You Distribute or Publicly
    Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You
    may not impose any effective technological measures on the Adaptation that
    restrict the ability of a recipient of the Adaptation from You to exercise
    the rights granted to that recipient under the terms of the Applicable
    License. This Section 4(b) applies to the Adaptation as incorporated in a
    Collection, but this does not require the Collection apart from the
    Adaptation itself to be made subject to the terms of the Applicable
    License.
 .
    3. If You Distribute, or Publicly Perform the Work or any Adaptations or
    Collections, You must, unless a request has been made pursuant to Section
    4(a), keep intact all copyright notices for the Work and provide,
    reasonable to the medium or means You are utilizing: (i) the name of the
    Original Author (or pseudonym, if applicable) if supplied, and/or if the
    Original Author and/or Licensor designate another party or parties (e.g.,
    a sponsor institute, publishing entity, journal) for attribution
    ("Attribution Parties") in Licensor's copyright notice, terms of service
    or by other reasonable means, the name of such party or parties; (ii) the
    title of the Work if supplied; (iii) to the extent reasonably practicable,
    the URI, if any, that Licensor specifies to be associated with the Work,
    unless such URI does not refer to the copyright notice or licensing
    information for the Work; and (iv) , consistent with Ssection 3(b), in the
    case of an Adaptation, a credit identifying the use of the Work in the
    Adaptation (e.g., "French translation of the Work by Original Author," or
    "Screenplay based on original Work by Original Author"). The credit
    required by this Section 4(c) may be implemented in any reasonable manner;
    provided, however, that in the case of a Adaptation or Collection, at a
    minimum such credit will appear, if a credit for all contributing authors
    of the Adaptation or Collection appears, then as part of these credits and
    in a manner at least as prominent as the credits for the other contributing
    authors. For the avoidance of doubt, You may only use the credit required by
    this Section for the purpose of attribution in the manner set out above and,
    by exercising Your rights under this License, You may not implicitly or
    explicitly assert or imply any connection with, sponsorship or endorsement
    by the Original Author, Licensor and/or Attribution Parties, as
    appropriate, of You or Your use of the Work, without the separate, express
    prior written permission of the Original Author, Licensor and/or
    Attribution Parties.
 .
    4. Except as otherwise agreed in writing by the Licensor or as may be
    otherwise permitted by applicable law, if You Reproduce, Distribute or
    Publicly Perform the Work either by itself or as part of any Adaptations
    or Collections, You must not distort, mutilate, modify or take other
    derogatory action in relation to the Work which would be prejudicial to
    the Original Author's honor or reputation. Licensor agrees that in those
    jurisdictions (e.g. Japan), in which any exercise of the right granted in
    Section 3(b) of this License (the right to make Adaptations) would be
    deemed to be a distortion, mutilation, modification or other derogatory
    action prejudicial to the Original Author's honor and reputation, the
    Licensor will waive or not assert, as appropriate, this Section, to the
    fullest extent permitted by the applicable national law, to enable You to
    reasonably exercise Your right under Section 3(b) of this License (right
    to make Adaptations) but not otherwise.
 .
    5. Representations, Warranties and Disclaimer
 .
    UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
    OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
    KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
    INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
    FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
    LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
    WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE
    EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
 .
    6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
     LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
    ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
    ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
    BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 .
    7. Termination
 .
    1. This License and the rights granted hereunder will terminate
    automatically upon any breach by You of the terms of this License.
    Individuals or entities who have received Adaptations or Collections
    from You under this License, however, will not have their licenses
    terminated provided such individuals or entities remain in full
    compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
    survive any termination of this License.
    2. Subject to the above terms and conditions, the license granted
    here is perpetual (for the duration of the applicable copyright in
    the Work). Notwithstanding the above, Licensor reserves the right to
    release the Work under different license terms or to stop distributing
    the Work at any time; provided, however that any such election will
    not serve to withdraw this License (or any other license that has been,
    or is required to be, granted under the terms of this License), and this
    License will continue in full force and effect unless terminated as stated
    above.
 .
    8. Miscellaneous
 .
    1. Each time You Distribute or Publicly Perform the Work or a Collection,
    the Licensor offers to the recipient a license to the Work on the same
    terms and conditions as the license granted to You under this License.
    2. Each time You Distribute or Publicly Perform an Adaptation, Licensor
    offers to the recipient a license to the original Work on the same terms
    and conditions as the license granted to You under this License.
    3. If any provision of this License is invalid or unenforceable under
    applicable law, it shall not affect the validity or enforceability of
    the remainder of the terms of this License, and without further action
    by the parties to this agreement, such provision shall be reformed to
    the minimum extent necessary to make such provision valid and enforceable.
    4. No term or provision of this License shall be deemed waived and no
    breach consented to unless such waiver or consent shall be in writing
    and signed by the party to be charged with such waiver or consent.
    5. This License constitutes the entire agreement between the parties
    with respect to the Work licensed here. There are no understandings,
    agreements or representations with respect to the Work not specified
    here. Licensor shall not be bound by any additional provisions that
    may appear in any communication from You. This License may not be
    modified without the mutual written agreement of the Licensor and You.
    6. The rights granted under, and the subject matter referenced, in this
    License were drafted utilizing the terminology of the Berne Convention
    for the Protection of Literary and Artistic Works (as amended on
    September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
    Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996
    and the Universal Copyright Convention (as revised on July 24, 1971).
    These rights and subject matter take effect in the relevant jurisdiction
    in which the License terms are sought to be enforced according to the
    corresponding provisions of the implementation of those treaty
    provisions in the applicable national law. If the standard suite of
    rights granted under applicable copyright law includes additional rights
    not granted under this License, such additional rights are deemed to be
    included in the License; this License is not intended to restrict the
    license of any rights under applicable law.
 .
    Creative Commons Notice
 .
    Creative Commons is not a party to this License, and makes no warranty
    whatsoever in connection with the Work. Creative Commons will not be
    liable to You or any party on any legal theory for any damages whatsoever,
    vincluding without limitation any general, special, incidental or
    consequential damages arising in connection to this license.
    Notwithstanding the foregoing two (2) sentences, if Creative Commons has
    expressly identified itself as the Licensor hereunder, it shall have all
    rights and obligations of Licensor.
 .
    Except for the limited purpose of indicating to the public that the
    Work is licensed under the CCPL, Creative Commons does not authorize
    the use by either party of the trademark "Creative Commons" or any
    related trademark or logo of Creative Commons without the prior written
    consent of Creative Commons. Any permitted use will be in compliance
    with Creative Commons' then-current trademark usage guidelines, as may
    be published on its website or otherwise made available upon request
    from time to time. For the avoidance of doubt, this trademark restriction
    does not form part of this License.
 .
    Creative Commons may be contacted at http://creativecommons.org/.

License: CC-BY-SA-4.0
 Attribution-ShareAlike 4.0 International
 .
 =======================================================================
 .
 Creative Commons Corporation ("Creative Commons") is not a law firm and
 does not provide legal services or legal advice. Distribution of
 Creative Commons public licenses does not create a lawyer-client or
 other relationship. Creative Commons makes its licenses and related
 information available on an "as-is" basis. Creative Commons gives no
 warranties regarding its licenses, any material licensed under their
 terms and conditions, or any related information. Creative Commons
 disclaims all liability for damages resulting from their use to the
 fullest extent possible.
 .
 Using Creative Commons Public Licenses
 .
 Creative Commons public licenses provide a standard set of terms and
 conditions that creators and other rights holders may use to share
 original works of authorship and other material subject to copyright
 and certain other rights specified in the public license below. The
 following considerations are for informational purposes only, are not
 exhaustive, and do not form part of our licenses.
 .
     Considerations for licensors: Our public licenses are
     intended for use by those authorized to give the public
     permission to use material in ways otherwise restricted by
     copyright and certain other rights. Our licenses are
     irrevocable. Licensors should read and understand the terms
     and conditions of the license they choose before applying it.
     Licensors should also secure all rights necessary before
     applying our licenses so that the public can reuse the
     material as expected. Licensors should clearly mark any
     material not subject to the license. This includes other CC-
     licensed material, or material used under an exception or
     limitation to copyright. More considerations for licensors:
     wiki.creativecommons.org/Considerations_for_licensors
 .
     Considerations for the public: By using one of our public
     licenses, a licensor grants the public permission to use the
     licensed material under specified terms and conditions. If
     the licensor's permission is not necessary for any reason--for
     example, because of any applicable exception or limitation to
     copyright--then that use is not regulated by the license. Our
     licenses grant only permissions under copyright and certain
     other rights that a licensor has authority to grant. Use of
     the licensed material may still be restricted for other
     reasons, including because others have copyright or other
     rights in the material. A licensor may make special requests,
     such as asking that all changes be marked or described.
     Although not required by our licenses, you are encouraged to
     respect those requests where reasonable. More_considerations
     for the public:
     wiki.creativecommons.org/Considerations_for_licensees
 .
 =======================================================================
 .
 Creative Commons Attribution-ShareAlike 4.0 International Public
 License
 .
 By exercising the Licensed Rights (defined below), You accept and agree
 to be bound by the terms and conditions of this Creative Commons
 Attribution-ShareAlike 4.0 International Public License ("Public
 License"). To the extent this Public License may be interpreted as a
 contract, You are granted the Licensed Rights in consideration of Your
 acceptance of these terms and conditions, and the Licensor grants You
 such rights in consideration of benefits the Licensor receives from
 making the Licensed Material available under these terms and
 conditions.
 .
 .
 Section 1 -- Definitions.
 .
  a. Adapted Material means material subject to Copyright and Similar
     Rights that is derived from or based upon the Licensed Material
     and in which the Licensed Material is translated, altered,
     arranged, transformed, or otherwise modified in a manner requiring
     permission under the Copyright and Similar Rights held by the
     Licensor. For purposes of this Public License, where the Licensed
     Material is a musical work, performance, or sound recording,
     Adapted Material is always produced where the Licensed Material is
     synched in timed relation with a moving image.
 .
  b. Adapter's License means the license You apply to Your Copyright
     and Similar Rights in Your contributions to Adapted Material in
     accordance with the terms and conditions of this Public License.
 .
  c. BY-SA Compatible License means a license listed at
     creativecommons.org/compatiblelicenses, approved by Creative
     Commons as essentially the equivalent of this Public License.
 .
  d. Copyright and Similar Rights means copyright and/or similar rights
     closely related to copyright including, without limitation,
     performance, broadcast, sound recording, and Sui Generis Database
     Rights, without regard to how the rights are labeled or
     categorized. For purposes of this Public License, the rights
     specified in Section 2(b)(1)-(2) are not Copyright and Similar
     Rights.
 .
  e. Effective Technological Measures means those measures that, in the
     absence of proper authority, may not be circumvented under laws
     fulfilling obligations under Article 11 of the WIPO Copyright
     Treaty adopted on December 20, 1996, and/or similar international
     agreements.
 .
  f. Exceptions and Limitations means fair use, fair dealing, and/or
     any other exception or limitation to Copyright and Similar Rights
     that applies to Your use of the Licensed Material.
 .
  g. License Elements means the license attributes listed in the name
     of a Creative Commons Public License. The License Elements of this
     Public License are Attribution and ShareAlike.
 .
  h. Licensed Material means the artistic or literary work, database,
     or other material to which the Licensor applied this Public
     License.
 .
  i. Licensed Rights means the rights granted to You subject to the
     terms and conditions of this Public License, which are limited to
     all Copyright and Similar Rights that apply to Your use of the
     Licensed Material and that the Licensor has authority to license.
 .
  j. Licensor means the individual(s) or entity(ies) granting rights
     under this Public License.
 .
  k. Share means to provide material to the public by any means or
     process that requires permission under the Licensed Rights, such
     as reproduction, public display, public performance, distribution,
     dissemination, communication, or importation, and to make material
     available to the public including in ways that members of the
     public may access the material from a place and at a time
     individually chosen by them.
 .
  l. Sui Generis Database Rights means rights other than copyright
     resulting from Directive 96/9/EC of the European Parliament and of
     the Council of 11 March 1996 on the legal protection of databases,
     as amended and/or succeeded, as well as other essentially
     equivalent rights anywhere in the world.
 .
  m. You means the individual or entity exercising the Licensed Rights
     under this Public License. Your has a corresponding meaning.
 .
 .
 Section 2 -- Scope.
 .
  a. License grant.
 .
       1. Subject to the terms and conditions of this Public License,
          the Licensor hereby grants You a worldwide, royalty-free,
          non-sublicensable, non-exclusive, irrevocable license to
          exercise the Licensed Rights in the Licensed Material to:
 .
            a. reproduce and Share the Licensed Material, in whole or
               in part; and
 .
            b. produce, reproduce, and Share Adapted Material.
 .
       2. Exceptions and Limitations. For the avoidance of doubt, where
          Exceptions and Limitations apply to Your use, this Public
          License does not apply, and You do not need to comply with
          its terms and conditions.
 .
       3. Term. The term of this Public License is specified in Section
          6(a).
 .
       4. Media and formats; technical modifications allowed. The
          Licensor authorizes You to exercise the Licensed Rights in
          all media and formats whether now known or hereafter created,
          and to make technical modifications necessary to do so. The
          Licensor waives and/or agrees not to assert any right or
          authority to forbid You from making technical modifications
          necessary to exercise the Licensed Rights, including
          technical modifications necessary to circumvent Effective
          Technological Measures. For purposes of this Public License,
          simply making modifications authorized by this Section 2(a)
          (4) never produces Adapted Material.
 .
       5. Downstream recipients.
 .
            a. Offer from the Licensor -- Licensed Material. Every
               recipient of the Licensed Material automatically
               receives an offer from the Licensor to exercise the
               Licensed Rights under the terms and conditions of this
               Public License.
 .
            b. Additional offer from the Licensor -- Adapted Material.
               Every recipient of Adapted Material from You
               automatically receives an offer from the Licensor to
               exercise the Licensed Rights in the Adapted Material
               under the conditions of the Adapter's License You apply.
 .
            c. No downstream restrictions. You may not offer or impose
               any additional or different terms or conditions on, or
               apply any Effective Technological Measures to, the
               Licensed Material if doing so restricts exercise of the
               Licensed Rights by any recipient of the Licensed
               Material.
 .
       6. No endorsement. Nothing in this Public License constitutes or
          may be construed as permission to assert or imply that You
          are, or that Your use of the Licensed Material is, connected
          with, or sponsored, endorsed, or granted official status by,
          the Licensor or others designated to receive attribution as
          provided in Section 3(a)(1)(A)(i).
 .
  b. Other rights.
 .
       1. Moral rights, such as the right of integrity, are not
          licensed under this Public License, nor are publicity,
          privacy, and/or other similar personality rights; however, to
          the extent possible, the Licensor waives and/or agrees not to
          assert any such rights held by the Licensor to the limited
          extent necessary to allow You to exercise the Licensed
          Rights, but not otherwise.
 .
       2. Patent and trademark rights are not licensed under this
          Public License.
 .
       3. To the extent possible, the Licensor waives any right to
          collect royalties from You for the exercise of the Licensed
          Rights, whether directly or through a collecting society
          under any voluntary or waivable statutory or compulsory
          licensing scheme. In all other cases the Licensor expressly
          reserves any right to collect such royalties.
 .
 .
 Section 3 -- License Conditions.
 .
 Your exercise of the Licensed Rights is expressly made subject to the
 following conditions.
 .
  a. Attribution.
 .
       1. If You Share the Licensed Material (including in modified
          form), You must:
 .
            a. retain the following if it is supplied by the Licensor
               with the Licensed Material:
 .
                 i. identification of the creator(s) of the Licensed
                    Material and any others designated to receive
                    attribution, in any reasonable manner requested by
                    the Licensor (including by pseudonym if
                    designated);
 .
                ii. a copyright notice;
 .
               iii. a notice that refers to this Public License;
 .
                iv. a notice that refers to the disclaimer of
                    warranties;
 .
                 v. a URI or hyperlink to the Licensed Material to the
                    extent reasonably practicable;
 .
            b. indicate if You modified the Licensed Material and
               retain an indication of any previous modifications; and
 .
            c. indicate the Licensed Material is licensed under this
               Public License, and include the text of, or the URI or
               hyperlink to, this Public License.
 .
       2. You may satisfy the conditions in Section 3(a)(1) in any
          reasonable manner based on the medium, means, and context in
          which You Share the Licensed Material. For example, it may be
          reasonable to satisfy the conditions by providing a URI or
          hyperlink to a resource that includes the required
          information.
 .
       3. If requested by the Licensor, You must remove any of the
          information required by Section 3(a)(1)(A) to the extent
          reasonably practicable.
 .
  b. ShareAlike.
 .
     In addition to the conditions in Section 3(a), if You Share
     Adapted Material You produce, the following conditions also apply.
 .
       1. The Adapter's License You apply must be a Creative Commons
          license with the same License Elements, this version or
          later, or a BY-SA Compatible License.
 .
       2. You must include the text of, or the URI or hyperlink to, the
          Adapter's License You apply. You may satisfy this condition
          in any reasonable manner based on the medium, means, and
          context in which You Share Adapted Material.
 .
       3. You may not offer or impose any additional or different terms
          or conditions on, or apply any Effective Technological
          Measures to, Adapted Material that restrict exercise of the
          rights granted under the Adapter's License You apply.
 .
 .
 Section 4 -- Sui Generis Database Rights.
 .
 Where the Licensed Rights include Sui Generis Database Rights that
 apply to Your use of the Licensed Material:
 .
  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
     to extract, reuse, reproduce, and Share all or a substantial
     portion of the contents of the database;
 .
  b. if You include all or a substantial portion of the database
     contents in a database in which You have Sui Generis Database
     Rights, then the database in which You have Sui Generis Database
     Rights (but not its individual contents) is Adapted Material,
 .
     including for purposes of Section 3(b); and
  c. You must comply with the conditions in Section 3(a) if You Share
     all or a substantial portion of the contents of the database.
 .
 For the avoidance of doubt, this Section 4 supplements and does not
 replace Your obligations under this Public License where the Licensed
 Rights include other Copyright and Similar Rights.
 .
 .
 Section 5 -- Disclaimer of Warranties and Limitation of Liability.
 .
  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
 .
  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
 .
  c. The disclaimer of warranties and limitation of liability provided
     above shall be interpreted in a manner that, to the extent
     possible, most closely approximates an absolute disclaimer and
     waiver of all liability.
 .
 .
 Section 6 -- Term and Termination.
 .
  a. This Public License applies for the term of the Copyright and
     Similar Rights licensed here. However, if You fail to comply with
     this Public License, then Your rights under this Public License
     terminate automatically.
 .
  b. Where Your right to use the Licensed Material has terminated under
     Section 6(a), it reinstates:
 .
       1. automatically as of the date the violation is cured, provided
          it is cured within 30 days of Your discovery of the
          violation; or
 .
       2. upon express reinstatement by the Licensor.
 .
     For the avoidance of doubt, this Section 6(b) does not affect any
     right the Licensor may have to seek remedies for Your violations
     of this Public License.
 .
  c. For the avoidance of doubt, the Licensor may also offer the
     Licensed Material under separate terms or conditions or stop
     distributing the Licensed Material at any time; however, doing so
     will not terminate this Public License.
 .
  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
     License.
 .
 .
 Section 7 -- Other Terms and Conditions.
 .
  a. The Licensor shall not be bound by any additional or different
     terms or conditions communicated by You unless expressly agreed.
 .
  b. Any arrangements, understandings, or agreements regarding the
     Licensed Material not stated herein are separate from and
     independent of the terms and conditions of this Public License.
 .
 .
 Section 8 -- Interpretation.
 .
  a. For the avoidance of doubt, this Public License does not, and
     shall not be interpreted to, reduce, limit, restrict, or impose
     conditions on any use of the Licensed Material that could lawfully
     be made without permission under this Public License.
 .
  b. To the extent possible, if any provision of this Public License is
     deemed unenforceable, it shall be automatically reformed to the
     minimum extent necessary to make it enforceable. If the provision
     cannot be reformed, it shall be severed from this Public License
     without affecting the enforceability of the remaining terms and
     conditions.
 .
  c. No term or condition of this Public License will be waived and no
     failure to comply consented to unless expressly agreed to by the
     Licensor.
 .
  d. Nothing in this Public License constitutes or may be interpreted
     as a limitation upon, or waiver of, any privileges and immunities
     that apply to the Licensor or You, including from the legal
     processes of any jurisdiction or authority.
 .
 .
 =======================================================================
 .
 Creative Commons is not a party to its public licenses.
 Notwithstanding, Creative Commons may elect to apply one of its public
 licenses to material it publishes and in those instances will be
 considered the "Licensor." Except for the limited purpose of indicating
 that material is shared under a Creative Commons public license or as
 otherwise permitted by the Creative Commons policies published at
 creativecommons.org/policies, Creative Commons does not authorize the
 use of the trademark "Creative Commons" or any other trademark or logo
 of Creative Commons without its prior written consent including,
 without limitation, in connection with any unauthorized modifications
 to any of its public licenses or any other arrangements,
 understandings, or agreements concerning use of licensed material. For
 the avoidance of doubt, this paragraph does not form part of the public
 licenses.
 .
 Creative Commons may be contacted at creativecommons.org.

License: PDDL-1.0
 Public Domain Dedication and License (PDDL)
 .
 Preamble
 .
 The Open Data Commons – Public Domain Dedication and Licence is a document
 intended to allow you to freely share, modify, and use this work for any
 purpose and without any restrictions. This licence is intended for use on
 databases or their contents (“data”), either together or individually.
 .
 Many databases are covered by copyright. Some jurisdictions, mainly in Europe,
 have specific special rights that cover databases called the “sui generis”
 database right. Both of these sets of rights, as well as other legal rights
 used to protect databases and data, can create uncertainty or practical
 difficulty for those wishing to share databases and their underlying data
 but retain a limited amount of rights under a “some rights reserved” approach
 to licensing as outlined in the Science Commons Protocol for Implementing
 Open Access Data. As a result, this waiver and licence tries to the fullest
 extent possible to eliminate or fully license any rights that cover this
 database and data. Any Community Norms or similar statements of use of the
 database or data do not form a part of this document, and do not act as a
 contract for access or other terms of use for the database or data.
 .
 The position of the recipient of the work
 .
 Because this document places the database and its contents in or as close as
 possible within the public domain, there are no restrictions or requirements
 placed on the recipient by this document. Recipients may use this work
 commercially, use technical protection measures, combine this data or
 database with other databases or data, and share their changes and additions
 or keep them secret. It is not a requirement that recipients provide further
 users with a copy of this licence or attribute the original creator of the
 data or database as a source. The goal is to eliminate restrictions held by
 the original creator of the data and database on the use of it by others.
 .
 The position of the dedicator of the work
 .
 Copyright law, as with most other law under the banner of “intellectual
 property”, is inherently national law. This means that there exists several
 differences in how copyright and other IP rights can be relinquished, waived
 or licensed in the many legal jurisdictions of the world. This is despite
 much harmonisation of minimum levels of protection. The internet and other
 communication technologies span these many disparate legal jurisdictions
 and thus pose special difficulties for a document relinquishing and waiving
 intellectual property rights, including copyright and database rights,
 for use by the global community. Because of this feature of intellectual
 property law, this document first relinquishes the rights and waives the
 relevant rights and claims. It then goes on to license these same rights
 for jurisdictions or areas of law that may make it difficult to relinquish
 or waive rights or claims.
 .
 The purpose of this document is to enable rightsholders to place their work
 into the public domain. Unlike licences for free and open source software,
 free cultural works, or open content licences, rightsholders will not be
 able to “dual license” their work by releasing the same work under different
 licences. This is because they have allowed anyone to use the work in
 whatever way they choose. Rightsholders therefore can’t re-license it under
 copyright or database rights on different terms because they have nothing
 left to license. Doing so creates truly accessible data to build rich
 applications and advance the progress of science and the arts.
 .
 This document can cover either or both of the database and its contents
 (the data). Because databases can have a wide variety of content – not just
 factual data – rightsholders should use the Open Data Commons – Public Domain
 Dedication & Licence for an entire database and its contents only if
 everything can be placed under the terms of this document. Because even
 factual data can sometimes have intellectual property rights, rightsholders
 should use this licence to cover both the database and its factual data when
 making material available under this document; even if it is likely that the
 data would not be covered by copyright or database rights.
 .
 Rightsholders can also use this document to cover any copyright or database
 rights claims over only a database, and leave the contents to be covered by
 other licences or documents. They can do this because this document refers
 to the “Work”, which can be either – or both – the database and its contents.
 As a result, rightsholders need to clearly state what they are dedicating
 under this document when they dedicate it.
 .
 Just like any licence or other document dealing with intellectual property,
 rightsholders should be aware that one can only license what one owns.
 Please ensure that the rights have been cleared to make this material
 available under this document.
 .
 This document permanently and irrevocably makes the Work available to the
 public for any use of any kind, and it should not be used unless the
 rightsholder is prepared for this to happen.
 .
 Part I: Introduction
 .
 The Rightsholder (the Person holding rights or claims over the Work) agrees
 as follows:
 .
 1.0 Definitions of Capitalised Words
 .
 “Copyright” – Includes rights under copyright and under neighbouring rights
 and similarly related sets of rights under the law of the relevant
 jurisdiction under Section 6.4.
 .
 “Data” – The contents of the Database, which includes the information,
 independent works, or other material collected into the Database offered
 under the terms of this Document.
 .
 “Database” – A collection of Data arranged in a systematic or methodical way
 and individually accessible by electronic or other means offered under the
 terms of this Document.
 .
 “Database Right” – Means rights over Data resulting from the Chapter III
 (“sui generis”) rights in the Database Directive (Directive 96/9/EC of the
 European Parliament and of the Council of 11 March 1996 on the legal
 protection of databases) and any future updates as well as any similar
 rights available in the relevant jurisdiction under Section 6.4.
 .
 “Document” – means this relinquishment and waiver of rights and claims and
 back up licence agreement.
 .
 “Person” – Means a natural or legal person or a body of persons corporate or
 incorporate.
 .
 “Use” – As a verb, means doing any act that is restricted by Copyright or
 Database Rights whether in the original medium or any other; and includes
 modifying the Work as may be technically necessary to use it in a different
 mode or format. This includes the right to sublicense the Work.
 .
 “Work” – Means either or both of the Database and Data offered under the
 terms of this Document.
 .
 “You” – the Person acquiring rights under the licence elements of this
 Document.
 .
 Words in the singular include the plural and vice versa.
 .
 2.0 What this document covers
 .
 2.1. Legal effect of this Document. This Document is:
 .
     a. A dedication to the public domain and waiver of Copyright and Database
        Rights over the Work; and
 .
     b. A licence of Copyright and Database Rights over the Work in
        jurisdictions that do not allow for relinquishment or waiver.
 .
 2.2. Legal rights covered.
 .
     a. Copyright. Any copyright or neighbouring rights in the Work.
        Copyright law varies between jurisdictions, but is likely to cover:
        the Database model or schema, which is the structure, arrangement,
        and organisation of the Database, and can also include the Database
        tables and table indexes; the data entry and output sheets; and the
        Field names of Data stored in the Database. Copyright may also cover
        the Data depending on the jurisdiction and type of Data; and
 .
     b. Database Rights. Database Rights only extend to the extraction and
        re-utilisation of the whole or a substantial part of the Data.
        Database Rights can apply even when there is no copyright over
        the Database. Database Rights can also apply when the Data is removed
        from the Database and is selected and arranged in a way that would not
        infringe any applicable copyright.
 .
 2.2 Rights not covered.
 .
     a. This Document does not apply to computer programs used in the making
        or operation of the Database;
 .
     b. This Document does not cover any patents over the Data or the Database.
        Please see Section 4.2 later in this Document for further details; and
 .
     c. This Document does not cover any trade marks associated with the
        Database. Please see Section 4.3 later in this Document for further
        details.
 .
 Users of this Database are cautioned that they may have to clear other rights
 or consult other licences.
 .
 2.3 Facts are free. The Rightsholder takes the position that factual
 information is not covered by Copyright. This Document however covers the
 Work in jurisdictions that may protect the factual information in the Work
 by Copyright, and to cover any information protected by Copyright that is
 contained in the Work.
 .
 Part II: Dedication to the public domain
 .
 3.0 Dedication, waiver, and licence of Copyright and Database Rights
 .
 3.1 Dedication of Copyright and Database Rights to the public domain.
    The Rightsholder by using this Document, dedicates the Work to the public
    domain for the benefit of the public and relinquishes all rights in
    Copyright and Database Rights over the Work.
 .
 a. The Rightsholder realises that once these rights are relinquished, that
    the Rightsholder has no further rights in Copyright and Database Rights
    over the Work, and that the Work is free and open for others to Use.
 .
 b. The Rightsholder intends for their relinquishment to cover all present
    and future rights in the Work under Copyright and Database Rights,
    whether they are vested or contingent rights, and that this relinquishment
    of rights covers all their heirs and successors.
 .
 The above relinquishment of rights applies worldwide and includes media and
 formats now known or created in the future.
 .
 3.2 Waiver of rights and claims in Copyright and Database Rights when
 Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does
 not apply in the relevant jurisdiction under Section 6.4, the Rightsholder
 waives any rights and claims that the Rightsholder may have or acquire in
 the future over the Work in:
 .
 a. Copyright; and
 .
 b. Database Rights.
 .
 To the extent possible in the relevant jurisdiction, the above waiver of
 rights and claims applies worldwide and includes media and formats now known
 or created in the future. The Rightsholder agrees not to assert the above
 rights and waives the right to enforce them over the Work.
 .
 3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2
 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not
 apply in the relevant jurisdiction under Section 6.4, the Rightsholder and
 You agree as follows:
 .
 a. The Licensor grants to You a worldwide, royalty-free, non-exclusive,
    licence to Use the Work for the duration of any applicable Copyright and
    Database Rights. These rights explicitly include commercial use, and do
    not exclude any field of endeavour. To the extent possible in the relevant
    jurisdiction, these rights may be exercised in all media and formats
    whether now known or created in the future.
 .
 3.4 Moral rights. This section covers moral rights, including the right to
 be identified as the author of the Work or to object to treatment that would
 otherwise prejudice the author’s honour and reputation, or any other
 derogatory treatment:
 .
 a. For jurisdictions allowing waiver of moral rights, Licensor waives all
    moral rights that Licensor may have in the Work to the fullest extent
    possible by the law of the relevant jurisdiction under Section 6.4;
 .
 b. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction
    is not possible, Licensor agrees not to assert any moral rights over the
    Work and waives all claims in moral rights to the fullest extent possible
    by the law of the relevant jurisdiction under Section 6.4; and
 .
 c. For jurisdictions not allowing waiver or an agreement not to assert moral
    rights under Section 3.4 a and b, the author may retain their moral rights
    over the copyrighted aspects of the Work.
 .
 Please note that some jurisdictions do not allow for the waiver of moral
 rights, and so moral rights may still subsist over the work in some
 jurisdictions.
 .
 4.0 Relationship to other rights
 .
 4.1 No other contractual conditions. The Rightsholder makes this Work
 available to You without any other contractual obligations, either express
 or implied. Any Community Norms statement associated with the Work is not a
 contract and does not form part of this Document.
 .
 4.2 Relationship to patents. This Document does not grant You a licence for
 any patents that the Rightsholder may own. Users of this Database are
 cautioned that they may have to clear other rights or consult other licences.
 .
 4.3 Relationship to trade marks. This Document does not grant You a licence
 for any trade marks that the Rightsholder may own or that the Rightsholder
 may use to cover the Work. Users of this Database are cautioned that they
 may have to clear other rights or consult other licences.
 .
 Part III: General provisions
 .
 5.0 Warranties, disclaimer, and limitation of liability
 .
 5.1 The Work is provided by the Rightsholder “as is” and without any warranty
 of any kind, either express or implied, whether of title, of accuracy or
 completeness, of the presence of absence of errors, of fitness for purpose,
 or otherwise. Some jurisdictions do not allow the exclusion of implied
 warranties, so this exclusion may not apply to You.
 .
 5.2 Subject to any liability that may not be excluded or limited by law,
 the Rightsholder is not liable for, and expressly excludes, all liability
 for loss or damage however and whenever caused to anyone by any use under
 this Document, whether by You or by anyone else, and whether caused by any
 fault on the part of the Rightsholder or not. This exclusion of liability
 includes, but is not limited to, any special, incidental, consequential,
 punitive, or exemplary damages. This exclusion applies even if the
 Rightsholder has been advised of the possibility of such damages.
 .
 5.3 If liability may not be excluded by law, it is limited to actual and
 direct financial loss to the extent it is caused by proved negligence on
 the part of the Rightsholder.
 .
 6.0 General
 .
 6.1 If any provision of this Document is held to be invalid or unenforceable,
 that must not affect the validity or enforceability of the remainder of the
 terms of this Document.
 .
 6.2 This Document is the entire agreement between the parties with respect
 to the Work covered here. It replaces any earlier understandings, agreements
 or representations with respect to the Work not specified here.
 .
 6.3 This Document does not affect any rights that You or anyone else may
 independently have under any applicable law to make any use of this Work,
 including (for jurisdictions where this Document is a licence) fair dealing,
 fair use, database exceptions, or any other legally recognised limitation
 or exception to infringement of copyright or other applicable laws.
 .
 6.4 This Document takes effect in the relevant jurisdiction in which the
 Document terms are sought to be enforced. If the rights waived or granted
 under applicable law in the relevant jurisdiction includes additional
 rights not waived or granted under this Document, these additional rights
 are included in this Document in order to meet the intent of this Document.

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.