authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-03-12 16:14:49 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-03-12 16:14:49 -08:00
log1a19e4b71639ae2ed3be5a4b76979c365878c132
tree8c5414538145ca9552b55d7d2609b9a51fdac0a0
parentebbcba15ed71ab4a8422e8492de3460729132be3

field `isFsfLibre` was removed from license-data


2 files changed, 460 insertions(+), 483 deletions(-)

generate.sh+2-21
...@@ -29,7 +29,6 @@ do_print "//"...@@ -29,7 +29,6 @@ do_print "//"
29do_print29do_print
30do_print "pub const License = struct {"30do_print "pub const License = struct {"
31print_tab; do_print "isOsiApproved: bool,"31print_tab; do_print "isOsiApproved: bool,"
32print_tab; do_print "isFsfLibre: bool,"
33print_tab; do_print "url: []const u8,"32print_tab; do_print "url: []const u8,"
34do_print "};"33do_print "};"
3534
...@@ -38,12 +37,12 @@ do_print "};"...@@ -38,12 +37,12 @@ do_print "};"
38echo "spdx:"37echo "spdx:"
39do_print38do_print
40do_print "pub const spdx = struct {"39do_print "pub const spdx = struct {"
41list=$(do_filter '.licenses | sort_by(.licenseId)[] | { licenseId, isOsiApproved, isFsfLibre, url:.seeAlso[0] }')40list=$(do_filter '.licenses | sort_by(.licenseId)[] | { licenseId, isOsiApproved, url:.seeAlso[0] }')
42for lic in $list41for lic in $list
43do42do
44 lic_id=$(sub_filter $lic '.licenseId')43 lic_id=$(sub_filter $lic '.licenseId')
4544
46 lic_obj=$(sub_filter $lic '{ isOsiApproved, isFsfLibre, url }')45 lic_obj=$(sub_filter $lic '{ isOsiApproved, url }')
47 lic_obj=${lic_obj//\":/ = }46 lic_obj=${lic_obj//\":/ = }
48 lic_obj=${lic_obj//,\"/, .}47 lic_obj=${lic_obj//,\"/, .}
49 lic_obj=${lic_obj//\{\"/\{\.}48 lic_obj=${lic_obj//\{\"/\{\.}
...@@ -73,21 +72,3 @@ do...@@ -73,21 +72,3 @@ do
73done72done
74do_print "};"73do_print "};"
75echo74echo
76
77#
78#
79echo "fsf:"
80do_print
81do_print "pub const fsf = &[_][]const u8{"
82for lic in $list
83do
84 lic_id=$(sub_filter $lic '.licenseId')
85 valid=$(sub_filter $lic '.isFsfLibre')
86 if [[ $valid == "true" ]]
87 then
88 print_tab; do_print "\"$lic_id\","
89 fi
90 printf "|"
91done
92do_print "};"
93echo
src/lib.zig+458-462
...@@ -5,469 +5,468 @@...@@ -5,469 +5,468 @@
55
6pub const License = struct {6pub const License = struct {
7 isOsiApproved: bool,7 isOsiApproved: bool,
8 isFsfLibre: bool,
9 url: []const u8,8 url: []const u8,
10};9};
1110
12pub const spdx = struct {11pub const spdx = struct {
13 pub const @"0BSD" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://landley.net/toybox/license.html"};12 pub const @"0BSD" = License{.isOsiApproved = true, .url = "http://landley.net/toybox/license.html"};
14 pub const @"AAL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/attribution"};13 pub const @"AAL" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/attribution"};
15 pub const @"ADSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"};14 pub const @"ADSL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"};
16 pub const @"AFL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://opensource.linux-mirror.org/licenses/afl-1.1.txt"};15 pub const @"AFL-1.1" = License{.isOsiApproved = true, .url = "http://opensource.linux-mirror.org/licenses/afl-1.1.txt"};
17 pub const @"AFL-1.2" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://opensource.linux-mirror.org/licenses/afl-1.2.txt"};16 pub const @"AFL-1.2" = License{.isOsiApproved = true, .url = "http://opensource.linux-mirror.org/licenses/afl-1.2.txt"};
18 pub const @"AFL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt"};17 pub const @"AFL-2.0" = License{.isOsiApproved = true, .url = "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt"};
19 pub const @"AFL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://opensource.linux-mirror.org/licenses/afl-2.1.txt"};18 pub const @"AFL-2.1" = License{.isOsiApproved = true, .url = "http://opensource.linux-mirror.org/licenses/afl-2.1.txt"};
20 pub const @"AFL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.rosenlaw.com/AFL3.0.htm"};19 pub const @"AFL-3.0" = License{.isOsiApproved = true, .url = "http://www.rosenlaw.com/AFL3.0.htm"};
21 pub const @"AGPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.affero.org/oagpl.html"};20 pub const @"AGPL-1.0" = License{.isOsiApproved = false, .url = "http://www.affero.org/oagpl.html"};
22 pub const @"AGPL-1.0-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.affero.org/oagpl.html"};21 pub const @"AGPL-1.0-only" = License{.isOsiApproved = false, .url = "http://www.affero.org/oagpl.html"};
23 pub const @"AGPL-1.0-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.affero.org/oagpl.html"};22 pub const @"AGPL-1.0-or-later" = License{.isOsiApproved = false, .url = "http://www.affero.org/oagpl.html"};
24 pub const @"AGPL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/agpl.txt"};23 pub const @"AGPL-3.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/agpl.txt"};
25 pub const @"AGPL-3.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/agpl.txt"};24 pub const @"AGPL-3.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/agpl.txt"};
26 pub const @"AGPL-3.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/agpl.txt"};25 pub const @"AGPL-3.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/agpl.txt"};
27 pub const @"AMDPLPA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"};26 pub const @"AMDPLPA" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"};
28 pub const @"AML" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"};27 pub const @"AML" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"};
29 pub const @"AMPAS" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"};28 pub const @"AMPAS" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"};
30 pub const @"ANTLR-PD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.antlr2.org/license.html"};29 pub const @"ANTLR-PD" = License{.isOsiApproved = false, .url = "http://www.antlr2.org/license.html"};
31 pub const @"ANTLR-PD-fallback" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.antlr2.org/license.html"};30 pub const @"ANTLR-PD-fallback" = License{.isOsiApproved = false, .url = "http://www.antlr2.org/license.html"};
32 pub const @"APAFML" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"};31 pub const @"APAFML" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"};
33 pub const @"APL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/APL-1.0"};32 pub const @"APL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/APL-1.0"};
34 pub const @"APSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0"};33 pub const @"APSL-1.0" = License{.isOsiApproved = true, .url = "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0"};
35 pub const @"APSL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE"};34 pub const @"APSL-1.1" = License{.isOsiApproved = true, .url = "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE"};
36 pub const @"APSL-1.2" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php"};35 pub const @"APSL-1.2" = License{.isOsiApproved = true, .url = "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php"};
37 pub const @"APSL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.opensource.apple.com/license/apsl/"};36 pub const @"APSL-2.0" = License{.isOsiApproved = true, .url = "http://www.opensource.apple.com/license/apsl/"};
38 pub const @"Abstyles" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Abstyles"};37 pub const @"Abstyles" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Abstyles"};
39 pub const @"Adobe-2006" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobeLicense"};38 pub const @"Adobe-2006" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobeLicense"};
40 pub const @"Adobe-Glyph" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"};39 pub const @"Adobe-Glyph" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"};
41 pub const @"Afmparse" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Afmparse"};40 pub const @"Afmparse" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Afmparse"};
42 pub const @"Aladdin" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"};41 pub const @"Aladdin" = License{.isOsiApproved = false, .url = "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"};
43 pub const @"Apache-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.apache.org/licenses/LICENSE-1.0"};42 pub const @"Apache-1.0" = License{.isOsiApproved = false, .url = "http://www.apache.org/licenses/LICENSE-1.0"};
44 pub const @"Apache-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://apache.org/licenses/LICENSE-1.1"};43 pub const @"Apache-1.1" = License{.isOsiApproved = true, .url = "http://apache.org/licenses/LICENSE-1.1"};
45 pub const @"Apache-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.apache.org/licenses/LICENSE-2.0"};44 pub const @"Apache-2.0" = License{.isOsiApproved = true, .url = "http://www.apache.org/licenses/LICENSE-2.0"};
46 pub const @"Artistic-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Artistic-1.0"};45 pub const @"Artistic-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Artistic-1.0"};
47 pub const @"Artistic-1.0-Perl" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://dev.perl.org/licenses/artistic.html"};46 pub const @"Artistic-1.0-Perl" = License{.isOsiApproved = true, .url = "http://dev.perl.org/licenses/artistic.html"};
48 pub const @"Artistic-1.0-cl8" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Artistic-1.0"};47 pub const @"Artistic-1.0-cl8" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Artistic-1.0"};
49 pub const @"Artistic-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.perlfoundation.org/artistic_license_2_0"};48 pub const @"Artistic-2.0" = License{.isOsiApproved = true, .url = "http://www.perlfoundation.org/artistic_license_2_0"};
50 pub const @"BSD-1-Clause" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823"};49 pub const @"BSD-1-Clause" = License{.isOsiApproved = true, .url = "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823"};
51 pub const @"BSD-2-Clause" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/BSD-2-Clause"};50 pub const @"BSD-2-Clause" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/BSD-2-Clause"};
52 pub const @"BSD-2-Clause-FreeBSD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"};51 pub const @"BSD-2-Clause-FreeBSD" = License{.isOsiApproved = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"};
53 pub const @"BSD-2-Clause-NetBSD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.netbsd.org/about/redistribution.html#default"};52 pub const @"BSD-2-Clause-NetBSD" = License{.isOsiApproved = false, .url = "http://www.netbsd.org/about/redistribution.html#default"};
54 pub const @"BSD-2-Clause-Patent" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/BSDplusPatent"};53 pub const @"BSD-2-Clause-Patent" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/BSDplusPatent"};
55 pub const @"BSD-2-Clause-Views" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"};54 pub const @"BSD-2-Clause-Views" = License{.isOsiApproved = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"};
56 pub const @"BSD-3-Clause" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/BSD-3-Clause"};55 pub const @"BSD-3-Clause" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/BSD-3-Clause"};
57 pub const @"BSD-3-Clause-Attribution" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution"};56 pub const @"BSD-3-Clause-Attribution" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution"};
58 pub const @"BSD-3-Clause-Clear" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://labs.metacarta.com/license-explanation.html#license"};57 pub const @"BSD-3-Clause-Clear" = License{.isOsiApproved = false, .url = "http://labs.metacarta.com/license-explanation.html#license"};
59 pub const @"BSD-3-Clause-LBNL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/LBNLBSD"};58 pub const @"BSD-3-Clause-LBNL" = License{.isOsiApproved = true, .url = "https://fedoraproject.org/wiki/Licensing/LBNLBSD"};
60 pub const @"BSD-3-Clause-Modification" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant"};59 pub const @"BSD-3-Clause-Modification" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant"};
61 pub const @"BSD-3-Clause-No-Nuclear-License" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc"};60 pub const @"BSD-3-Clause-No-Nuclear-License" = License{.isOsiApproved = false, .url = "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc"};
62 pub const @"BSD-3-Clause-No-Nuclear-License-2014" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense"};61 pub const @"BSD-3-Clause-No-Nuclear-License-2014" = License{.isOsiApproved = false, .url = "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense"};
63 pub const @"BSD-3-Clause-No-Nuclear-Warranty" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"};62 pub const @"BSD-3-Clause-No-Nuclear-Warranty" = License{.isOsiApproved = false, .url = "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"};
64 pub const @"BSD-3-Clause-Open-MPI" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.open-mpi.org/community/license.php"};63 pub const @"BSD-3-Clause-Open-MPI" = License{.isOsiApproved = false, .url = "https://www.open-mpi.org/community/license.php"};
65 pub const @"BSD-4-Clause" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://directory.fsf.org/wiki/License:BSD_4Clause"};64 pub const @"BSD-4-Clause" = License{.isOsiApproved = false, .url = "http://directory.fsf.org/wiki/License:BSD_4Clause"};
66 pub const @"BSD-4-Clause-Shortened" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright"};65 pub const @"BSD-4-Clause-Shortened" = License{.isOsiApproved = false, .url = "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright"};
67 pub const @"BSD-4-Clause-UC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.freebsd.org/copyright/license.html"};66 pub const @"BSD-4-Clause-UC" = License{.isOsiApproved = false, .url = "http://www.freebsd.org/copyright/license.html"};
68 pub const @"BSD-Protection" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"};67 pub const @"BSD-Protection" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"};
69 pub const @"BSD-Source-Code" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt"};68 pub const @"BSD-Source-Code" = License{.isOsiApproved = false, .url = "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt"};
70 pub const @"BSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.boost.org/LICENSE_1_0.txt"};69 pub const @"BSL-1.0" = License{.isOsiApproved = true, .url = "http://www.boost.org/LICENSE_1_0.txt"};
71 pub const @"BUSL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://mariadb.com/bsl11/"};70 pub const @"BUSL-1.1" = License{.isOsiApproved = false, .url = "https://mariadb.com/bsl11/"};
72 pub const @"Bahyph" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Bahyph"};71 pub const @"Bahyph" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Bahyph"};
73 pub const @"Barr" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Barr"};72 pub const @"Barr" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Barr"};
74 pub const @"Beerware" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Beerware"};73 pub const @"Beerware" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Beerware"};
75 pub const @"BitTorrent-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s"};74 pub const @"BitTorrent-1.0" = License{.isOsiApproved = false, .url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s"};
76 pub const @"BitTorrent-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"};75 pub const @"BitTorrent-1.1" = License{.isOsiApproved = false, .url = "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"};
77 pub const @"BlueOak-1.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://blueoakcouncil.org/license/1.0.0"};76 pub const @"BlueOak-1.0.0" = License{.isOsiApproved = false, .url = "https://blueoakcouncil.org/license/1.0.0"};
78 pub const @"Borceux" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Borceux"};77 pub const @"Borceux" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Borceux"};
79 pub const @"C-UDA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md"};78 pub const @"C-UDA-1.0" = License{.isOsiApproved = false, .url = "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md"};
80 pub const @"CAL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://cryptographicautonomylicense.com/license-text.html"};79 pub const @"CAL-1.0" = License{.isOsiApproved = true, .url = "http://cryptographicautonomylicense.com/license-text.html"};
81 pub const @"CAL-1.0-Combined-Work-Exception" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://cryptographicautonomylicense.com/license-text.html"};80 pub const @"CAL-1.0-Combined-Work-Exception" = License{.isOsiApproved = true, .url = "http://cryptographicautonomylicense.com/license-text.html"};
82 pub const @"CATOSL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CATOSL-1.1"};81 pub const @"CATOSL-1.1" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CATOSL-1.1"};
83 pub const @"CC-BY-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/1.0/legalcode"};82 pub const @"CC-BY-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/1.0/legalcode"};
84 pub const @"CC-BY-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/2.0/legalcode"};83 pub const @"CC-BY-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/2.0/legalcode"};
85 pub const @"CC-BY-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/2.5/legalcode"};84 pub const @"CC-BY-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/2.5/legalcode"};
86 pub const @"CC-BY-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/3.0/legalcode"};85 pub const @"CC-BY-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/3.0/legalcode"};
87 pub const @"CC-BY-3.0-AT" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/3.0/at/legalcode"};86 pub const @"CC-BY-3.0-AT" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/3.0/at/legalcode"};
88 pub const @"CC-BY-3.0-US" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/3.0/us/legalcode"};87 pub const @"CC-BY-3.0-US" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/3.0/us/legalcode"};
89 pub const @"CC-BY-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/4.0/legalcode"};88 pub const @"CC-BY-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/4.0/legalcode"};
90 pub const @"CC-BY-NC-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/1.0/legalcode"};89 pub const @"CC-BY-NC-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/1.0/legalcode"};
91 pub const @"CC-BY-NC-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/2.0/legalcode"};90 pub const @"CC-BY-NC-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/2.0/legalcode"};
92 pub const @"CC-BY-NC-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/2.5/legalcode"};91 pub const @"CC-BY-NC-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/2.5/legalcode"};
93 pub const @"CC-BY-NC-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/3.0/legalcode"};92 pub const @"CC-BY-NC-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/3.0/legalcode"};
94 pub const @"CC-BY-NC-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/4.0/legalcode"};93 pub const @"CC-BY-NC-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/4.0/legalcode"};
95 pub const @"CC-BY-NC-ND-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"};94 pub const @"CC-BY-NC-ND-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"};
96 pub const @"CC-BY-NC-ND-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"};95 pub const @"CC-BY-NC-ND-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"};
97 pub const @"CC-BY-NC-ND-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"};96 pub const @"CC-BY-NC-ND-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"};
98 pub const @"CC-BY-NC-ND-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"};97 pub const @"CC-BY-NC-ND-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"};
99 pub const @"CC-BY-NC-ND-3.0-IGO" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"};98 pub const @"CC-BY-NC-ND-3.0-IGO" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"};
100 pub const @"CC-BY-NC-ND-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"};99 pub const @"CC-BY-NC-ND-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"};
101 pub const @"CC-BY-NC-SA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"};100 pub const @"CC-BY-NC-SA-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"};
102 pub const @"CC-BY-NC-SA-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"};101 pub const @"CC-BY-NC-SA-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"};
103 pub const @"CC-BY-NC-SA-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"};102 pub const @"CC-BY-NC-SA-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"};
104 pub const @"CC-BY-NC-SA-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"};103 pub const @"CC-BY-NC-SA-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"};
105 pub const @"CC-BY-NC-SA-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"};104 pub const @"CC-BY-NC-SA-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"};
106 pub const @"CC-BY-ND-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/1.0/legalcode"};105 pub const @"CC-BY-ND-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/1.0/legalcode"};
107 pub const @"CC-BY-ND-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/2.0/legalcode"};106 pub const @"CC-BY-ND-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/2.0/legalcode"};
108 pub const @"CC-BY-ND-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/2.5/legalcode"};107 pub const @"CC-BY-ND-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/2.5/legalcode"};
109 pub const @"CC-BY-ND-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/3.0/legalcode"};108 pub const @"CC-BY-ND-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/3.0/legalcode"};
110 pub const @"CC-BY-ND-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/4.0/legalcode"};109 pub const @"CC-BY-ND-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/4.0/legalcode"};
111 pub const @"CC-BY-SA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/1.0/legalcode"};110 pub const @"CC-BY-SA-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/1.0/legalcode"};
112 pub const @"CC-BY-SA-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/legalcode"};111 pub const @"CC-BY-SA-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/legalcode"};
113 pub const @"CC-BY-SA-2.0-UK" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"};112 pub const @"CC-BY-SA-2.0-UK" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"};
114 pub const @"CC-BY-SA-2.1-JP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"};113 pub const @"CC-BY-SA-2.1-JP" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"};
115 pub const @"CC-BY-SA-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.5/legalcode"};114 pub const @"CC-BY-SA-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.5/legalcode"};
116 pub const @"CC-BY-SA-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/legalcode"};115 pub const @"CC-BY-SA-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/legalcode"};
117 pub const @"CC-BY-SA-3.0-AT" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"};116 pub const @"CC-BY-SA-3.0-AT" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"};
118 pub const @"CC-BY-SA-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/4.0/legalcode"};117 pub const @"CC-BY-SA-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/4.0/legalcode"};
119 pub const @"CC-PDDC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/publicdomain/"};118 pub const @"CC-PDDC" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/publicdomain/"};
120 pub const @"CC0-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/publicdomain/zero/1.0/legalcode"};119 pub const @"CC0-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/publicdomain/zero/1.0/legalcode"};
121 pub const @"CDDL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/cddl1"};120 pub const @"CDDL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/cddl1"};
122 pub const @"CDDL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://glassfish.java.net/public/CDDL+GPL_1_1.html"};121 pub const @"CDDL-1.1" = License{.isOsiApproved = false, .url = "http://glassfish.java.net/public/CDDL+GPL_1_1.html"};
123 pub const @"CDLA-Permissive-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://cdla.io/permissive-1-0"};122 pub const @"CDLA-Permissive-1.0" = License{.isOsiApproved = false, .url = "https://cdla.io/permissive-1-0"};
124 pub const @"CDLA-Sharing-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://cdla.io/sharing-1-0"};123 pub const @"CDLA-Sharing-1.0" = License{.isOsiApproved = false, .url = "https://cdla.io/sharing-1-0"};
125 pub const @"CECILL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html"};124 pub const @"CECILL-1.0" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html"};
126 pub const @"CECILL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"};125 pub const @"CECILL-1.1" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"};
127 pub const @"CECILL-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html"};126 pub const @"CECILL-2.0" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html"};
128 pub const @"CECILL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"};127 pub const @"CECILL-2.1" = License{.isOsiApproved = true, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"};
129 pub const @"CECILL-B" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"};128 pub const @"CECILL-B" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"};
130 pub const @"CECILL-C" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"};129 pub const @"CECILL-C" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"};
131 pub const @"CERN-OHL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"};130 pub const @"CERN-OHL-1.1" = License{.isOsiApproved = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"};
132 pub const @"CERN-OHL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"};131 pub const @"CERN-OHL-1.2" = License{.isOsiApproved = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"};
133 pub const @"CERN-OHL-P-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"};132 pub const @"CERN-OHL-P-2.0" = License{.isOsiApproved = true, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"};
134 pub const @"CERN-OHL-S-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"};133 pub const @"CERN-OHL-S-2.0" = License{.isOsiApproved = true, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"};
135 pub const @"CERN-OHL-W-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"};134 pub const @"CERN-OHL-W-2.0" = License{.isOsiApproved = true, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"};
136 pub const @"CNRI-Jython" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.jython.org/license.html"};135 pub const @"CNRI-Jython" = License{.isOsiApproved = false, .url = "http://www.jython.org/license.html"};
137 pub const @"CNRI-Python" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CNRI-Python"};136 pub const @"CNRI-Python" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CNRI-Python"};
138 pub const @"CNRI-Python-GPL-Compatible" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.python.org/download/releases/1.6.1/download_win/"};137 pub const @"CNRI-Python-GPL-Compatible" = License{.isOsiApproved = false, .url = "http://www.python.org/download/releases/1.6.1/download_win/"};
139 pub const @"CPAL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CPAL-1.0"};138 pub const @"CPAL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CPAL-1.0"};
140 pub const @"CPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CPL-1.0"};139 pub const @"CPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CPL-1.0"};
141 pub const @"CPOL-1.02" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.codeproject.com/info/cpol10.aspx"};140 pub const @"CPOL-1.02" = License{.isOsiApproved = false, .url = "http://www.codeproject.com/info/cpol10.aspx"};
142 pub const @"CUA-OPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CUA-OPL-1.0"};141 pub const @"CUA-OPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CUA-OPL-1.0"};
143 pub const @"Caldera" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"};142 pub const @"Caldera" = License{.isOsiApproved = false, .url = "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"};
144 pub const @"ClArtistic" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/"};143 pub const @"ClArtistic" = License{.isOsiApproved = false, .url = "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/"};
145 pub const @"Condor-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://research.cs.wisc.edu/condor/license.html#condor"};144 pub const @"Condor-1.1" = License{.isOsiApproved = false, .url = "http://research.cs.wisc.edu/condor/license.html#condor"};
146 pub const @"Crossword" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Crossword"};145 pub const @"Crossword" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Crossword"};
147 pub const @"CrystalStacker" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker"};146 pub const @"CrystalStacker" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker"};
148 pub const @"Cube" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Cube"};147 pub const @"Cube" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Cube"};
149 pub const @"D-FSL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.dipp.nrw.de/d-fsl/lizenzen/"};148 pub const @"D-FSL-1.0" = License{.isOsiApproved = false, .url = "http://www.dipp.nrw.de/d-fsl/lizenzen/"};
150 pub const @"DOC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cs.wustl.edu/~schmidt/ACE-copying.html"};149 pub const @"DOC" = License{.isOsiApproved = false, .url = "http://www.cs.wustl.edu/~schmidt/ACE-copying.html"};
151 pub const @"DRL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md"};150 pub const @"DRL-1.0" = License{.isOsiApproved = false, .url = "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md"};
152 pub const @"DSDP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/DSDP"};151 pub const @"DSDP" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/DSDP"};
153 pub const @"Dotseqn" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Dotseqn"};152 pub const @"Dotseqn" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Dotseqn"};
154 pub const @"ECL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/ECL-1.0"};153 pub const @"ECL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/ECL-1.0"};
155 pub const @"ECL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/ECL-2.0"};154 pub const @"ECL-2.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/ECL-2.0"};
156 pub const @"EFL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.eiffel-nice.org/license/forum.txt"};155 pub const @"EFL-1.0" = License{.isOsiApproved = true, .url = "http://www.eiffel-nice.org/license/forum.txt"};
157 pub const @"EFL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html"};156 pub const @"EFL-2.0" = License{.isOsiApproved = true, .url = "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html"};
158 pub const @"EPICS" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://epics.anl.gov/license/open.php"};157 pub const @"EPICS" = License{.isOsiApproved = false, .url = "https://epics.anl.gov/license/open.php"};
159 pub const @"EPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.eclipse.org/legal/epl-v10.html"};158 pub const @"EPL-1.0" = License{.isOsiApproved = true, .url = "http://www.eclipse.org/legal/epl-v10.html"};
160 pub const @"EPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.eclipse.org/legal/epl-2.0"};159 pub const @"EPL-2.0" = License{.isOsiApproved = true, .url = "https://www.eclipse.org/legal/epl-2.0"};
161 pub const @"EUDatagrid" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html"};160 pub const @"EUDatagrid" = License{.isOsiApproved = true, .url = "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html"};
162 pub const @"EUPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://ec.europa.eu/idabc/en/document/7330.html"};161 pub const @"EUPL-1.0" = License{.isOsiApproved = false, .url = "http://ec.europa.eu/idabc/en/document/7330.html"};
163 pub const @"EUPL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl"};162 pub const @"EUPL-1.1" = License{.isOsiApproved = true, .url = "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl"};
164 pub const @"EUPL-1.2" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://joinup.ec.europa.eu/page/eupl-text-11-12"};163 pub const @"EUPL-1.2" = License{.isOsiApproved = true, .url = "https://joinup.ec.europa.eu/page/eupl-text-11-12"};
165 pub const @"Entessa" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Entessa"};164 pub const @"Entessa" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Entessa"};
166 pub const @"ErlPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.erlang.org/EPLICENSE"};165 pub const @"ErlPL-1.1" = License{.isOsiApproved = false, .url = "http://www.erlang.org/EPLICENSE"};
167 pub const @"Eurosym" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Eurosym"};166 pub const @"Eurosym" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Eurosym"};
168 pub const @"FSFAP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"};167 pub const @"FSFAP" = License{.isOsiApproved = false, .url = "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"};
169 pub const @"FSFUL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"};168 pub const @"FSFUL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"};
170 pub const @"FSFULLR" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant"};169 pub const @"FSFULLR" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant"};
171 pub const @"FTL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://freetype.fis.uniroma2.it/FTL.TXT"};170 pub const @"FTL" = License{.isOsiApproved = false, .url = "http://freetype.fis.uniroma2.it/FTL.TXT"};
172 pub const @"Fair" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://fairlicense.org/"};171 pub const @"Fair" = License{.isOsiApproved = true, .url = "http://fairlicense.org/"};
173 pub const @"Frameworx-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Frameworx-1.0"};172 pub const @"Frameworx-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Frameworx-1.0"};
174 pub const @"FreeBSD-DOC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.freebsd.org/copyright/freebsd-doc-license/"};173 pub const @"FreeBSD-DOC" = License{.isOsiApproved = false, .url = "https://www.freebsd.org/copyright/freebsd-doc-license/"};
175 pub const @"FreeImage" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://freeimage.sourceforge.net/freeimage-license.txt"};174 pub const @"FreeImage" = License{.isOsiApproved = false, .url = "http://freeimage.sourceforge.net/freeimage-license.txt"};
176 pub const @"GD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://libgd.github.io/manuals/2.3.0/files/license-txt.html"};175 pub const @"GD" = License{.isOsiApproved = false, .url = "https://libgd.github.io/manuals/2.3.0/files/license-txt.html"};
177 pub const @"GFDL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};176 pub const @"GFDL-1.1" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
178 pub const @"GFDL-1.1-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};177 pub const @"GFDL-1.1-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
179 pub const @"GFDL-1.1-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};178 pub const @"GFDL-1.1-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
180 pub const @"GFDL-1.1-no-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};179 pub const @"GFDL-1.1-no-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
181 pub const @"GFDL-1.1-no-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};180 pub const @"GFDL-1.1-no-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
182 pub const @"GFDL-1.1-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};181 pub const @"GFDL-1.1-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
183 pub const @"GFDL-1.1-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};182 pub const @"GFDL-1.1-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"};
184 pub const @"GFDL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};183 pub const @"GFDL-1.2" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
185 pub const @"GFDL-1.2-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};184 pub const @"GFDL-1.2-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
186 pub const @"GFDL-1.2-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};185 pub const @"GFDL-1.2-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
187 pub const @"GFDL-1.2-no-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};186 pub const @"GFDL-1.2-no-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
188 pub const @"GFDL-1.2-no-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};187 pub const @"GFDL-1.2-no-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
189 pub const @"GFDL-1.2-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};188 pub const @"GFDL-1.2-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
190 pub const @"GFDL-1.2-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};189 pub const @"GFDL-1.2-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"};
191 pub const @"GFDL-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};190 pub const @"GFDL-1.3" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
192 pub const @"GFDL-1.3-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};191 pub const @"GFDL-1.3-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
193 pub const @"GFDL-1.3-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};192 pub const @"GFDL-1.3-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
194 pub const @"GFDL-1.3-no-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};193 pub const @"GFDL-1.3-no-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
195 pub const @"GFDL-1.3-no-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};194 pub const @"GFDL-1.3-no-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
196 pub const @"GFDL-1.3-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};195 pub const @"GFDL-1.3-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
197 pub const @"GFDL-1.3-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};196 pub const @"GFDL-1.3-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"};
198 pub const @"GL2PS" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.geuz.org/gl2ps/COPYING.GL2PS"};197 pub const @"GL2PS" = License{.isOsiApproved = false, .url = "http://www.geuz.org/gl2ps/COPYING.GL2PS"};
199 pub const @"GLWTPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"};198 pub const @"GLWTPL" = License{.isOsiApproved = false, .url = "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"};
200 pub const @"GPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};199 pub const @"GPL-1.0" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};
201 pub const @"GPL-1.0+" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};200 pub const @"GPL-1.0+" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};
202 pub const @"GPL-1.0-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};201 pub const @"GPL-1.0-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};
203 pub const @"GPL-1.0-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};202 pub const @"GPL-1.0-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"};
204 pub const @"GPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};203 pub const @"GPL-2.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};
205 pub const @"GPL-2.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};204 pub const @"GPL-2.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};
206 pub const @"GPL-2.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};205 pub const @"GPL-2.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};
207 pub const @"GPL-2.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};206 pub const @"GPL-2.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"};
208 pub const @"GPL-2.0-with-GCC-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"};207 pub const @"GPL-2.0-with-GCC-exception" = License{.isOsiApproved = false, .url = "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"};
209 pub const @"GPL-2.0-with-autoconf-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://ac-archive.sourceforge.net/doc/copyright.html"};208 pub const @"GPL-2.0-with-autoconf-exception" = License{.isOsiApproved = false, .url = "http://ac-archive.sourceforge.net/doc/copyright.html"};
210 pub const @"GPL-2.0-with-bison-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141"};209 pub const @"GPL-2.0-with-bison-exception" = License{.isOsiApproved = false, .url = "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141"};
211 pub const @"GPL-2.0-with-classpath-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/software/classpath/license.html"};210 pub const @"GPL-2.0-with-classpath-exception" = License{.isOsiApproved = false, .url = "https://www.gnu.org/software/classpath/license.html"};
212 pub const @"GPL-2.0-with-font-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-faq.html#FontException"};211 pub const @"GPL-2.0-with-font-exception" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/gpl-faq.html#FontException"};
213 pub const @"GPL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};212 pub const @"GPL-3.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};
214 pub const @"GPL-3.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};213 pub const @"GPL-3.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};
215 pub const @"GPL-3.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};214 pub const @"GPL-3.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};
216 pub const @"GPL-3.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};215 pub const @"GPL-3.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"};
217 pub const @"GPL-3.0-with-GCC-exception" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gcc-exception-3.1.html"};216 pub const @"GPL-3.0-with-GCC-exception" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gcc-exception-3.1.html"};
218 pub const @"GPL-3.0-with-autoconf-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/autoconf-exception-3.0.html"};217 pub const @"GPL-3.0-with-autoconf-exception" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/autoconf-exception-3.0.html"};
219 pub const @"Giftware" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://liballeg.org/license.html#allegro-4-the-giftware-license"};218 pub const @"Giftware" = License{.isOsiApproved = false, .url = "http://liballeg.org/license.html#allegro-4-the-giftware-license"};
220 pub const @"Glide" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.users.on.net/~triforce/glidexp/COPYING.txt"};219 pub const @"Glide" = License{.isOsiApproved = false, .url = "http://www.users.on.net/~triforce/glidexp/COPYING.txt"};
221 pub const @"Glulxe" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Glulxe"};220 pub const @"Glulxe" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Glulxe"};
222 pub const @"HPND" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/HPND"};221 pub const @"HPND" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/HPND"};
223 pub const @"HPND-sell-variant" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19"};222 pub const @"HPND-sell-variant" = License{.isOsiApproved = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19"};
224 pub const @"HTMLTIDY" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md"};223 pub const @"HTMLTIDY" = License{.isOsiApproved = false, .url = "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md"};
225 pub const @"HaskellReport" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"};224 pub const @"HaskellReport" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"};
226 pub const @"Hippocratic-2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://firstdonoharm.dev/version/2/1/license.html"};225 pub const @"Hippocratic-2.1" = License{.isOsiApproved = false, .url = "https://firstdonoharm.dev/version/2/1/license.html"};
227 pub const @"IBM-pibs" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"};226 pub const @"IBM-pibs" = License{.isOsiApproved = false, .url = "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"};
228 pub const @"ICU" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://source.icu-project.org/repos/icu/icu/trunk/license.html"};227 pub const @"ICU" = License{.isOsiApproved = false, .url = "http://source.icu-project.org/repos/icu/icu/trunk/license.html"};
229 pub const @"IJG" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2"};228 pub const @"IJG" = License{.isOsiApproved = false, .url = "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2"};
230 pub const @"IPA" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/IPA"};229 pub const @"IPA" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/IPA"};
231 pub const @"IPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/IPL-1.0"};230 pub const @"IPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/IPL-1.0"};
232 pub const @"ISC" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.isc.org/downloads/software-support-policy/isc-license/"};231 pub const @"ISC" = License{.isOsiApproved = true, .url = "https://www.isc.org/downloads/software-support-policy/isc-license/"};
233 pub const @"ImageMagick" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.imagemagick.org/script/license.php"};232 pub const @"ImageMagick" = License{.isOsiApproved = false, .url = "http://www.imagemagick.org/script/license.php"};
234 pub const @"Imlib2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING"};233 pub const @"Imlib2" = License{.isOsiApproved = false, .url = "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING"};
235 pub const @"Info-ZIP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.info-zip.org/license.html"};234 pub const @"Info-ZIP" = License{.isOsiApproved = false, .url = "http://www.info-zip.org/license.html"};
236 pub const @"Intel" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Intel"};235 pub const @"Intel" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Intel"};
237 pub const @"Intel-ACPI" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement"};236 pub const @"Intel-ACPI" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement"};
238 pub const @"Interbase-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html"};237 pub const @"Interbase-1.0" = License{.isOsiApproved = false, .url = "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html"};
239 pub const @"JPNIC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366"};238 pub const @"JPNIC" = License{.isOsiApproved = false, .url = "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366"};
240 pub const @"JSON" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.json.org/license.html"};239 pub const @"JSON" = License{.isOsiApproved = false, .url = "http://www.json.org/license.html"};
241 pub const @"JasPer-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"};240 pub const @"JasPer-2.0" = License{.isOsiApproved = false, .url = "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"};
242 pub const @"LAL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://artlibre.org/licence/lal/licence-art-libre-12/"};241 pub const @"LAL-1.2" = License{.isOsiApproved = false, .url = "http://artlibre.org/licence/lal/licence-art-libre-12/"};
243 pub const @"LAL-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://artlibre.org/"};242 pub const @"LAL-1.3" = License{.isOsiApproved = false, .url = "https://artlibre.org/"};
244 pub const @"LGPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};243 pub const @"LGPL-2.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};
245 pub const @"LGPL-2.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};244 pub const @"LGPL-2.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};
246 pub const @"LGPL-2.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};245 pub const @"LGPL-2.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};
247 pub const @"LGPL-2.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};246 pub const @"LGPL-2.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"};
248 pub const @"LGPL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};247 pub const @"LGPL-2.1" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};
249 pub const @"LGPL-2.1+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};248 pub const @"LGPL-2.1+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};
250 pub const @"LGPL-2.1-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};249 pub const @"LGPL-2.1-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};
251 pub const @"LGPL-2.1-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};250 pub const @"LGPL-2.1-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"};
252 pub const @"LGPL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};251 pub const @"LGPL-3.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};
253 pub const @"LGPL-3.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};252 pub const @"LGPL-3.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};
254 pub const @"LGPL-3.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};253 pub const @"LGPL-3.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};
255 pub const @"LGPL-3.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};254 pub const @"LGPL-3.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"};
256 pub const @"LGPLLR" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html"};255 pub const @"LGPLLR" = License{.isOsiApproved = false, .url = "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html"};
257 pub const @"LPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/LPL-1.0"};256 pub const @"LPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/LPL-1.0"};
258 pub const @"LPL-1.02" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://plan9.bell-labs.com/plan9/license.html"};257 pub const @"LPL-1.02" = License{.isOsiApproved = true, .url = "http://plan9.bell-labs.com/plan9/license.html"};
259 pub const @"LPPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-0.txt"};258 pub const @"LPPL-1.0" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-0.txt"};
260 pub const @"LPPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-1.txt"};259 pub const @"LPPL-1.1" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-1.txt"};
261 pub const @"LPPL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-2.txt"};260 pub const @"LPPL-1.2" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-2.txt"};
262 pub const @"LPPL-1.3a" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-3a.txt"};261 pub const @"LPPL-1.3a" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-3a.txt"};
263 pub const @"LPPL-1.3c" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-3c.txt"};262 pub const @"LPPL-1.3c" = License{.isOsiApproved = true, .url = "http://www.latex-project.org/lppl/lppl-1-3c.txt"};
264 pub const @"Latex2e" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Latex2e"};263 pub const @"Latex2e" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Latex2e"};
265 pub const @"Leptonica" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Leptonica"};264 pub const @"Leptonica" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Leptonica"};
266 pub const @"LiLiQ-P-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/"};265 pub const @"LiLiQ-P-1.1" = License{.isOsiApproved = true, .url = "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/"};
267 pub const @"LiLiQ-R-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/"};266 pub const @"LiLiQ-R-1.1" = License{.isOsiApproved = true, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/"};
268 pub const @"LiLiQ-Rplus-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/"};267 pub const @"LiLiQ-Rplus-1.1" = License{.isOsiApproved = true, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/"};
269 pub const @"Libpng" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"};268 pub const @"Libpng" = License{.isOsiApproved = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"};
270 pub const @"Linux-OpenIB" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h"};269 pub const @"Linux-OpenIB" = License{.isOsiApproved = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h"};
271 pub const @"MIT" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/MIT"};270 pub const @"MIT" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/MIT"};
272 pub const @"MIT-0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://github.com/aws/mit-0"};271 pub const @"MIT-0" = License{.isOsiApproved = true, .url = "https://github.com/aws/mit-0"};
273 pub const @"MIT-CMU" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style"};272 pub const @"MIT-CMU" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style"};
274 pub const @"MIT-Modern-Variant" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants"};273 pub const @"MIT-Modern-Variant" = License{.isOsiApproved = true, .url = "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants"};
275 pub const @"MIT-advertising" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"};274 pub const @"MIT-advertising" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"};
276 pub const @"MIT-enna" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#enna"};275 pub const @"MIT-enna" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#enna"};
277 pub const @"MIT-feh" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#feh"};276 pub const @"MIT-feh" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#feh"};
278 pub const @"MIT-open-group" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING"};277 pub const @"MIT-open-group" = License{.isOsiApproved = false, .url = "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING"};
279 pub const @"MITNFA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MITNFA"};278 pub const @"MITNFA" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MITNFA"};
280 pub const @"MPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/MPL-1.0.html"};279 pub const @"MPL-1.0" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/MPL-1.0.html"};
281 pub const @"MPL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/MPL-1.1.html"};280 pub const @"MPL-1.1" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/MPL-1.1.html"};
282 pub const @"MPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/2.0/"};281 pub const @"MPL-2.0" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/2.0/"};
283 pub const @"MPL-2.0-no-copyleft-exception" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/2.0/"};282 pub const @"MPL-2.0-no-copyleft-exception" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/2.0/"};
284 pub const @"MS-PL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.microsoft.com/opensource/licenses.mspx"};283 pub const @"MS-PL" = License{.isOsiApproved = true, .url = "http://www.microsoft.com/opensource/licenses.mspx"};
285 pub const @"MS-RL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.microsoft.com/opensource/licenses.mspx"};284 pub const @"MS-RL" = License{.isOsiApproved = true, .url = "http://www.microsoft.com/opensource/licenses.mspx"};
286 pub const @"MTLL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"};285 pub const @"MTLL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"};
287 pub const @"MakeIndex" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MakeIndex"};286 pub const @"MakeIndex" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MakeIndex"};
288 pub const @"MirOS" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/MirOS"};287 pub const @"MirOS" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/MirOS"};
289 pub const @"Motosoto" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Motosoto"};288 pub const @"Motosoto" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Motosoto"};
290 pub const @"MulanPSL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://license.coscl.org.cn/MulanPSL/"};289 pub const @"MulanPSL-1.0" = License{.isOsiApproved = false, .url = "https://license.coscl.org.cn/MulanPSL/"};
291 pub const @"MulanPSL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://license.coscl.org.cn/MulanPSL2/"};290 pub const @"MulanPSL-2.0" = License{.isOsiApproved = true, .url = "https://license.coscl.org.cn/MulanPSL2/"};
292 pub const @"Multics" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Multics"};291 pub const @"Multics" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Multics"};
293 pub const @"Mup" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Mup"};292 pub const @"Mup" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Mup"};
294 pub const @"NAIST-2003" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text"};293 pub const @"NAIST-2003" = License{.isOsiApproved = false, .url = "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text"};
295 pub const @"NASA-1.3" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://ti.arc.nasa.gov/opensource/nosa/"};294 pub const @"NASA-1.3" = License{.isOsiApproved = true, .url = "http://ti.arc.nasa.gov/opensource/nosa/"};
296 pub const @"NBPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"};295 pub const @"NBPL-1.0" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"};
297 pub const @"NCGL-UK-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml"};296 pub const @"NCGL-UK-2.0" = License{.isOsiApproved = false, .url = "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml"};
298 pub const @"NCSA" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://otm.illinois.edu/uiuc_openSource"};297 pub const @"NCSA" = License{.isOsiApproved = true, .url = "http://otm.illinois.edu/uiuc_openSource"};
299 pub const @"NGPL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/NGPL"};298 pub const @"NGPL" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/NGPL"};
300 pub const @"NIST-PD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt"};299 pub const @"NIST-PD" = License{.isOsiApproved = false, .url = "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt"};
301 pub const @"NIST-PD-fallback" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE"};300 pub const @"NIST-PD-fallback" = License{.isOsiApproved = false, .url = "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE"};
302 pub const @"NLOD-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://data.norge.no/nlod/en/1.0"};301 pub const @"NLOD-1.0" = License{.isOsiApproved = false, .url = "http://data.norge.no/nlod/en/1.0"};
303 pub const @"NLPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/NLPL"};302 pub const @"NLPL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/NLPL"};
304 pub const @"NOSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://bits.netizen.com.au/licenses/NOSL/nosl.txt"};303 pub const @"NOSL" = License{.isOsiApproved = false, .url = "http://bits.netizen.com.au/licenses/NOSL/nosl.txt"};
305 pub const @"NPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/NPL/1.0/"};304 pub const @"NPL-1.0" = License{.isOsiApproved = false, .url = "http://www.mozilla.org/MPL/NPL/1.0/"};
306 pub const @"NPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/NPL/1.1/"};305 pub const @"NPL-1.1" = License{.isOsiApproved = false, .url = "http://www.mozilla.org/MPL/NPL/1.1/"};
307 pub const @"NPOSL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/NOSL3.0"};306 pub const @"NPOSL-3.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/NOSL3.0"};
308 pub const @"NRL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://web.mit.edu/network/isakmp/nrllicense.html"};307 pub const @"NRL" = License{.isOsiApproved = false, .url = "http://web.mit.edu/network/isakmp/nrllicense.html"};
309 pub const @"NTP" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/NTP"};308 pub const @"NTP" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/NTP"};
310 pub const @"NTP-0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c"};309 pub const @"NTP-0" = License{.isOsiApproved = false, .url = "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c"};
311 pub const @"Naumen" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Naumen"};310 pub const @"Naumen" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Naumen"};
312 pub const @"Net-SNMP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://net-snmp.sourceforge.net/about/license.html"};311 pub const @"Net-SNMP" = License{.isOsiApproved = false, .url = "http://net-snmp.sourceforge.net/about/license.html"};
313 pub const @"NetCDF" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.unidata.ucar.edu/software/netcdf/copyright.html"};312 pub const @"NetCDF" = License{.isOsiApproved = false, .url = "http://www.unidata.ucar.edu/software/netcdf/copyright.html"};
314 pub const @"Newsletr" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Newsletr"};313 pub const @"Newsletr" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Newsletr"};
315 pub const @"Nokia" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/nokia"};314 pub const @"Nokia" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/nokia"};
316 pub const @"Noweb" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Noweb"};315 pub const @"Noweb" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Noweb"};
317 pub const @"Nunit" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Nunit"};316 pub const @"Nunit" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Nunit"};
318 pub const @"O-UDA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md"};317 pub const @"O-UDA-1.0" = License{.isOsiApproved = false, .url = "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md"};
319 pub const @"OCCT-PL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.opencascade.com/content/occt-public-license"};318 pub const @"OCCT-PL" = License{.isOsiApproved = false, .url = "http://www.opencascade.com/content/occt-public-license"};
320 pub const @"OCLC-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.oclc.org/research/activities/software/license/v2final.htm"};319 pub const @"OCLC-2.0" = License{.isOsiApproved = true, .url = "http://www.oclc.org/research/activities/software/license/v2final.htm"};
321 pub const @"ODC-By-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://opendatacommons.org/licenses/by/1.0/"};320 pub const @"ODC-By-1.0" = License{.isOsiApproved = false, .url = "https://opendatacommons.org/licenses/by/1.0/"};
322 pub const @"ODbL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.opendatacommons.org/licenses/odbl/1.0/"};321 pub const @"ODbL-1.0" = License{.isOsiApproved = false, .url = "http://www.opendatacommons.org/licenses/odbl/1.0/"};
323 pub const @"OFL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"};322 pub const @"OFL-1.0" = License{.isOsiApproved = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"};
324 pub const @"OFL-1.0-RFN" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"};323 pub const @"OFL-1.0-RFN" = License{.isOsiApproved = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"};
325 pub const @"OFL-1.0-no-RFN" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"};324 pub const @"OFL-1.0-no-RFN" = License{.isOsiApproved = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"};
326 pub const @"OFL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"};325 pub const @"OFL-1.1" = License{.isOsiApproved = true, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"};
327 pub const @"OFL-1.1-RFN" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"};326 pub const @"OFL-1.1-RFN" = License{.isOsiApproved = true, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"};
328 pub const @"OFL-1.1-no-RFN" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"};327 pub const @"OFL-1.1-no-RFN" = License{.isOsiApproved = true, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"};
329 pub const @"OGC-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.ogc.org/ogc/software/1.0"};328 pub const @"OGC-1.0" = License{.isOsiApproved = false, .url = "https://www.ogc.org/ogc/software/1.0"};
330 pub const @"OGDL-Taiwan-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://data.gov.tw/license"};329 pub const @"OGDL-Taiwan-1.0" = License{.isOsiApproved = false, .url = "https://data.gov.tw/license"};
331 pub const @"OGL-Canada-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://open.canada.ca/en/open-government-licence-canada"};330 pub const @"OGL-Canada-2.0" = License{.isOsiApproved = false, .url = "https://open.canada.ca/en/open-government-licence-canada"};
332 pub const @"OGL-UK-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/"};331 pub const @"OGL-UK-1.0" = License{.isOsiApproved = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/"};
333 pub const @"OGL-UK-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"};332 pub const @"OGL-UK-2.0" = License{.isOsiApproved = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"};
334 pub const @"OGL-UK-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"};333 pub const @"OGL-UK-3.0" = License{.isOsiApproved = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"};
335 pub const @"OGTSL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt"};334 pub const @"OGTSL" = License{.isOsiApproved = true, .url = "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt"};
336 pub const @"OLDAP-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"};335 pub const @"OLDAP-1.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"};
337 pub const @"OLDAP-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"};336 pub const @"OLDAP-1.2" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"};
338 pub const @"OLDAP-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"};337 pub const @"OLDAP-1.3" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"};
339 pub const @"OLDAP-1.4" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"};338 pub const @"OLDAP-1.4" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"};
340 pub const @"OLDAP-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"};339 pub const @"OLDAP-2.0" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"};
341 pub const @"OLDAP-2.0.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"};340 pub const @"OLDAP-2.0.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"};
342 pub const @"OLDAP-2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"};341 pub const @"OLDAP-2.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"};
343 pub const @"OLDAP-2.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"};342 pub const @"OLDAP-2.2" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"};
344 pub const @"OLDAP-2.2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"};343 pub const @"OLDAP-2.2.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"};
345 pub const @"OLDAP-2.2.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"};344 pub const @"OLDAP-2.2.2" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"};
346 pub const @"OLDAP-2.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"};345 pub const @"OLDAP-2.3" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"};
347 pub const @"OLDAP-2.4" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"};346 pub const @"OLDAP-2.4" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"};
348 pub const @"OLDAP-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"};347 pub const @"OLDAP-2.5" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"};
349 pub const @"OLDAP-2.6" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"};348 pub const @"OLDAP-2.6" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"};
350 pub const @"OLDAP-2.7" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"};349 pub const @"OLDAP-2.7" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"};
351 pub const @"OLDAP-2.8" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.openldap.org/software/release/license.html"};350 pub const @"OLDAP-2.8" = License{.isOsiApproved = true, .url = "http://www.openldap.org/software/release/license.html"};
352 pub const @"OML" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Open_Market_License"};351 pub const @"OML" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Open_Market_License"};
353 pub const @"OPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://old.koalateam.com/jackaroo/OPL_1_0.TXT"};352 pub const @"OPL-1.0" = License{.isOsiApproved = false, .url = "http://old.koalateam.com/jackaroo/OPL_1_0.TXT"};
354 pub const @"OSET-PL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.osetfoundation.org/public-license"};353 pub const @"OSET-PL-2.1" = License{.isOsiApproved = true, .url = "http://www.osetfoundation.org/public-license"};
355 pub const @"OSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/OSL-1.0"};354 pub const @"OSL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/OSL-1.0"};
356 pub const @"OSL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/OSL1.1"};355 pub const @"OSL-1.1" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/OSL1.1"};
357 pub const @"OSL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html"};356 pub const @"OSL-2.0" = License{.isOsiApproved = true, .url = "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html"};
358 pub const @"OSL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm"};357 pub const @"OSL-2.1" = License{.isOsiApproved = true, .url = "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm"};
359 pub const @"OSL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm"};358 pub const @"OSL-3.0" = License{.isOsiApproved = true, .url = "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm"};
360 pub const @"OpenSSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openssl.org/source/license.html"};359 pub const @"OpenSSL" = License{.isOsiApproved = false, .url = "http://www.openssl.org/source/license.html"};
361 pub const @"PDDL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://opendatacommons.org/licenses/pddl/1.0/"};360 pub const @"PDDL-1.0" = License{.isOsiApproved = false, .url = "http://opendatacommons.org/licenses/pddl/1.0/"};
362 pub const @"PHP-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.php.net/license/3_0.txt"};361 pub const @"PHP-3.0" = License{.isOsiApproved = true, .url = "http://www.php.net/license/3_0.txt"};
363 pub const @"PHP-3.01" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.php.net/license/3_01.txt"};362 pub const @"PHP-3.01" = License{.isOsiApproved = true, .url = "http://www.php.net/license/3_01.txt"};
364 pub const @"PSF-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://opensource.org/licenses/Python-2.0"};363 pub const @"PSF-2.0" = License{.isOsiApproved = false, .url = "https://opensource.org/licenses/Python-2.0"};
365 pub const @"Parity-6.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://paritylicense.com/versions/6.0.0.html"};364 pub const @"Parity-6.0.0" = License{.isOsiApproved = false, .url = "https://paritylicense.com/versions/6.0.0.html"};
366 pub const @"Parity-7.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://paritylicense.com/versions/7.0.0.html"};365 pub const @"Parity-7.0.0" = License{.isOsiApproved = false, .url = "https://paritylicense.com/versions/7.0.0.html"};
367 pub const @"Plexus" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"};366 pub const @"Plexus" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"};
368 pub const @"PolyForm-Noncommercial-1.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://polyformproject.org/licenses/noncommercial/1.0.0"};367 pub const @"PolyForm-Noncommercial-1.0.0" = License{.isOsiApproved = false, .url = "https://polyformproject.org/licenses/noncommercial/1.0.0"};
369 pub const @"PolyForm-Small-Business-1.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://polyformproject.org/licenses/small-business/1.0.0"};368 pub const @"PolyForm-Small-Business-1.0.0" = License{.isOsiApproved = false, .url = "https://polyformproject.org/licenses/small-business/1.0.0"};
370 pub const @"PostgreSQL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.postgresql.org/about/licence"};369 pub const @"PostgreSQL" = License{.isOsiApproved = true, .url = "http://www.postgresql.org/about/licence"};
371 pub const @"Python-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Python-2.0"};370 pub const @"Python-2.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Python-2.0"};
372 pub const @"QPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://doc.qt.nokia.com/3.3/license.html"};371 pub const @"QPL-1.0" = License{.isOsiApproved = true, .url = "http://doc.qt.nokia.com/3.3/license.html"};
373 pub const @"Qhull" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Qhull"};372 pub const @"Qhull" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Qhull"};
374 pub const @"RHeCos-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://ecos.sourceware.org/old-license.html"};373 pub const @"RHeCos-1.1" = License{.isOsiApproved = false, .url = "http://ecos.sourceware.org/old-license.html"};
375 pub const @"RPL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/RPL-1.1"};374 pub const @"RPL-1.1" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/RPL-1.1"};
376 pub const @"RPL-1.5" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/RPL-1.5"};375 pub const @"RPL-1.5" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/RPL-1.5"};
377 pub const @"RPSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://helixcommunity.org/content/rpsl"};376 pub const @"RPSL-1.0" = License{.isOsiApproved = true, .url = "https://helixcommunity.org/content/rpsl"};
378 pub const @"RSA-MD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.faqs.org/rfcs/rfc1321.html"};377 pub const @"RSA-MD" = License{.isOsiApproved = false, .url = "http://www.faqs.org/rfcs/rfc1321.html"};
379 pub const @"RSCPL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml"};378 pub const @"RSCPL" = License{.isOsiApproved = true, .url = "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml"};
380 pub const @"Rdisc" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Rdisc_License"};379 pub const @"Rdisc" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Rdisc_License"};
381 pub const @"Ruby" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.ruby-lang.org/en/LICENSE.txt"};380 pub const @"Ruby" = License{.isOsiApproved = false, .url = "http://www.ruby-lang.org/en/LICENSE.txt"};
382 pub const @"SAX-PD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.saxproject.org/copying.html"};381 pub const @"SAX-PD" = License{.isOsiApproved = false, .url = "http://www.saxproject.org/copying.html"};
383 pub const @"SCEA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://research.scea.com/scea_shared_source_license.html"};382 pub const @"SCEA" = License{.isOsiApproved = false, .url = "http://research.scea.com/scea_shared_source_license.html"};
384 pub const @"SGI-B-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"};383 pub const @"SGI-B-1.0" = License{.isOsiApproved = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"};
385 pub const @"SGI-B-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://oss.sgi.com/projects/FreeB/"};384 pub const @"SGI-B-1.1" = License{.isOsiApproved = false, .url = "http://oss.sgi.com/projects/FreeB/"};
386 pub const @"SGI-B-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"};385 pub const @"SGI-B-2.0" = License{.isOsiApproved = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"};
387 pub const @"SHL-0.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://solderpad.org/licenses/SHL-0.5/"};386 pub const @"SHL-0.5" = License{.isOsiApproved = false, .url = "https://solderpad.org/licenses/SHL-0.5/"};
388 pub const @"SHL-0.51" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://solderpad.org/licenses/SHL-0.51/"};387 pub const @"SHL-0.51" = License{.isOsiApproved = false, .url = "https://solderpad.org/licenses/SHL-0.51/"};
389 pub const @"SISSL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.openoffice.org/licenses/sissl_license.html"};388 pub const @"SISSL" = License{.isOsiApproved = true, .url = "http://www.openoffice.org/licenses/sissl_license.html"};
390 pub const @"SISSL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html"};389 pub const @"SISSL-1.2" = License{.isOsiApproved = false, .url = "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html"};
391 pub const @"SMLNJ" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.smlnj.org/license.html"};390 pub const @"SMLNJ" = License{.isOsiApproved = false, .url = "https://www.smlnj.org/license.html"};
392 pub const @"SMPPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt"};391 pub const @"SMPPL" = License{.isOsiApproved = false, .url = "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt"};
393 pub const @"SNIA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"};392 pub const @"SNIA" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"};
394 pub const @"SPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/SPL-1.0"};393 pub const @"SPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/SPL-1.0"};
395 pub const @"SSH-OpenSSH" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10"};394 pub const @"SSH-OpenSSH" = License{.isOsiApproved = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10"};
396 pub const @"SSH-short" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h"};395 pub const @"SSH-short" = License{.isOsiApproved = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h"};
397 pub const @"SSPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.mongodb.com/licensing/server-side-public-license"};396 pub const @"SSPL-1.0" = License{.isOsiApproved = false, .url = "https://www.mongodb.com/licensing/server-side-public-license"};
398 pub const @"SWL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/SWL"};397 pub const @"SWL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/SWL"};
399 pub const @"Saxpath" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Saxpath_License"};398 pub const @"Saxpath" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Saxpath_License"};
400 pub const @"Sendmail" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"};399 pub const @"Sendmail" = License{.isOsiApproved = false, .url = "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"};
401 pub const @"Sendmail-8.23" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf"};400 pub const @"Sendmail-8.23" = License{.isOsiApproved = false, .url = "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf"};
402 pub const @"SimPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/SimPL-2.0"};401 pub const @"SimPL-2.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/SimPL-2.0"};
403 pub const @"Sleepycat" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Sleepycat"};402 pub const @"Sleepycat" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Sleepycat"};
404 pub const @"Spencer-86" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"};403 pub const @"Spencer-86" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"};
405 pub const @"Spencer-94" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"};404 pub const @"Spencer-94" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"};
406 pub const @"Spencer-99" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c"};405 pub const @"Spencer-99" = License{.isOsiApproved = false, .url = "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c"};
407 pub const @"StandardML-NJ" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.smlnj.org//license.html"};406 pub const @"StandardML-NJ" = License{.isOsiApproved = false, .url = "http://www.smlnj.org//license.html"};
408 pub const @"SugarCRM-1.1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.sugarcrm.com/crm/SPL"};407 pub const @"SugarCRM-1.1.3" = License{.isOsiApproved = false, .url = "http://www.sugarcrm.com/crm/SPL"};
409 pub const @"TAPR-OHL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.tapr.org/OHL"};408 pub const @"TAPR-OHL-1.0" = License{.isOsiApproved = false, .url = "https://www.tapr.org/OHL"};
410 pub const @"TCL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.tcl.tk/software/tcltk/license.html"};409 pub const @"TCL" = License{.isOsiApproved = false, .url = "http://www.tcl.tk/software/tcltk/license.html"};
411 pub const @"TCP-wrappers" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"};410 pub const @"TCP-wrappers" = License{.isOsiApproved = false, .url = "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"};
412 pub const @"TMate" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://svnkit.com/license.html"};411 pub const @"TMate" = License{.isOsiApproved = false, .url = "http://svnkit.com/license.html"};
413 pub const @"TORQUE-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1"};412 pub const @"TORQUE-1.1" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1"};
414 pub const @"TOSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/TOSL"};413 pub const @"TOSL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/TOSL"};
415 pub const @"TU-Berlin-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT"};414 pub const @"TU-Berlin-1.0" = License{.isOsiApproved = false, .url = "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT"};
416 pub const @"TU-Berlin-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt"};415 pub const @"TU-Berlin-2.0" = License{.isOsiApproved = false, .url = "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt"};
417 pub const @"UCL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/UCL-1.0"};416 pub const @"UCL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/UCL-1.0"};
418 pub const @"UPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/UPL"};417 pub const @"UPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/UPL"};
419 pub const @"Unicode-DFS-2015" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html"};418 pub const @"Unicode-DFS-2015" = License{.isOsiApproved = false, .url = "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html"};
420 pub const @"Unicode-DFS-2016" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.unicode.org/copyright.html"};419 pub const @"Unicode-DFS-2016" = License{.isOsiApproved = true, .url = "http://www.unicode.org/copyright.html"};
421 pub const @"Unicode-TOU" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.unicode.org/copyright.html"};420 pub const @"Unicode-TOU" = License{.isOsiApproved = false, .url = "http://www.unicode.org/copyright.html"};
422 pub const @"Unlicense" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://unlicense.org/"};421 pub const @"Unlicense" = License{.isOsiApproved = true, .url = "https://unlicense.org/"};
423 pub const @"VOSTROM" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/VOSTROM"};422 pub const @"VOSTROM" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/VOSTROM"};
424 pub const @"VSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/VSL-1.0"};423 pub const @"VSL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/VSL-1.0"};
425 pub const @"Vim" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://vimdoc.sourceforge.net/htmldoc/uganda.html"};424 pub const @"Vim" = License{.isOsiApproved = false, .url = "http://vimdoc.sourceforge.net/htmldoc/uganda.html"};
426 pub const @"W3C" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html"};425 pub const @"W3C" = License{.isOsiApproved = true, .url = "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html"};
427 pub const @"W3C-19980720" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html"};426 pub const @"W3C-19980720" = License{.isOsiApproved = false, .url = "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html"};
428 pub const @"W3C-20150513" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document"};427 pub const @"W3C-20150513" = License{.isOsiApproved = false, .url = "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document"};
429 pub const @"WTFPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.wtfpl.net/about/"};428 pub const @"WTFPL" = License{.isOsiApproved = false, .url = "http://www.wtfpl.net/about/"};
430 pub const @"Watcom-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Watcom-1.0"};429 pub const @"Watcom-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Watcom-1.0"};
431 pub const @"Wsuipa" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Wsuipa"};430 pub const @"Wsuipa" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Wsuipa"};
432 pub const @"X11" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"};431 pub const @"X11" = License{.isOsiApproved = false, .url = "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"};
433 pub const @"XFree86-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.xfree86.org/current/LICENSE4.html"};432 pub const @"XFree86-1.1" = License{.isOsiApproved = false, .url = "http://www.xfree86.org/current/LICENSE4.html"};
434 pub const @"XSkat" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/XSkat_License"};433 pub const @"XSkat" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/XSkat_License"};
435 pub const @"Xerox" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Xerox"};434 pub const @"Xerox" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Xerox"};
436 pub const @"Xnet" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Xnet"};435 pub const @"Xnet" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Xnet"};
437 pub const @"YPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.0.html"};436 pub const @"YPL-1.0" = License{.isOsiApproved = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.0.html"};
438 pub const @"YPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.1.html"};437 pub const @"YPL-1.1" = License{.isOsiApproved = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.1.html"};
439 pub const @"ZPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://old.zope.org/Resources/License/ZPL-1.1"};438 pub const @"ZPL-1.1" = License{.isOsiApproved = false, .url = "http://old.zope.org/Resources/License/ZPL-1.1"};
440 pub const @"ZPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://old.zope.org/Resources/License/ZPL-2.0"};439 pub const @"ZPL-2.0" = License{.isOsiApproved = true, .url = "http://old.zope.org/Resources/License/ZPL-2.0"};
441 pub const @"ZPL-2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://old.zope.org/Resources/ZPL/"};440 pub const @"ZPL-2.1" = License{.isOsiApproved = false, .url = "http://old.zope.org/Resources/ZPL/"};
442 pub const @"Zed" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Zed"};441 pub const @"Zed" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Zed"};
443 pub const @"Zend-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt"};442 pub const @"Zend-2.0" = License{.isOsiApproved = false, .url = "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt"};
444 pub const @"Zimbra-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html"};443 pub const @"Zimbra-1.3" = License{.isOsiApproved = false, .url = "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html"};
445 pub const @"Zimbra-1.4" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.zimbra.com/legal/zimbra-public-license-1-4"};444 pub const @"Zimbra-1.4" = License{.isOsiApproved = false, .url = "http://www.zimbra.com/legal/zimbra-public-license-1-4"};
446 pub const @"Zlib" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.zlib.net/zlib_license.html"};445 pub const @"Zlib" = License{.isOsiApproved = true, .url = "http://www.zlib.net/zlib_license.html"};
447 pub const @"blessing" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9"};446 pub const @"blessing" = License{.isOsiApproved = false, .url = "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9"};
448 pub const @"bzip2-1.0.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html"};447 pub const @"bzip2-1.0.5" = License{.isOsiApproved = false, .url = "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html"};
449 pub const @"bzip2-1.0.6" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6"};448 pub const @"bzip2-1.0.6" = License{.isOsiApproved = false, .url = "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6"};
450 pub const @"copyleft-next-0.3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0"};449 pub const @"copyleft-next-0.3.0" = License{.isOsiApproved = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0"};
451 pub const @"copyleft-next-0.3.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1"};450 pub const @"copyleft-next-0.3.1" = License{.isOsiApproved = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1"};
452 pub const @"curl" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/bagder/curl/blob/master/COPYING"};451 pub const @"curl" = License{.isOsiApproved = false, .url = "https://github.com/bagder/curl/blob/master/COPYING"};
453 pub const @"diffmark" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/diffmark"};452 pub const @"diffmark" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/diffmark"};
454 pub const @"dvipdfm" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/dvipdfm"};453 pub const @"dvipdfm" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/dvipdfm"};
455 pub const @"eCos-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/ecos-license.html"};454 pub const @"eCos-2.0" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/ecos-license.html"};
456 pub const @"eGenix" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf"};455 pub const @"eGenix" = License{.isOsiApproved = false, .url = "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf"};
457 pub const @"etalab-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf"};456 pub const @"etalab-2.0" = License{.isOsiApproved = false, .url = "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf"};
458 pub const @"gSOAP-1.3b" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cs.fsu.edu/~engelen/license.html"};457 pub const @"gSOAP-1.3b" = License{.isOsiApproved = false, .url = "http://www.cs.fsu.edu/~engelen/license.html"};
459 pub const @"gnuplot" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Gnuplot"};458 pub const @"gnuplot" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Gnuplot"};
460 pub const @"iMatix" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://legacy.imatix.com/html/sfl/sfl4.htm#license"};459 pub const @"iMatix" = License{.isOsiApproved = false, .url = "http://legacy.imatix.com/html/sfl/sfl4.htm#license"};
461 pub const @"libpng-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"};460 pub const @"libpng-2.0" = License{.isOsiApproved = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"};
462 pub const @"libselinux-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE"};461 pub const @"libselinux-1.0" = License{.isOsiApproved = false, .url = "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE"};
463 pub const @"libtiff" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/libtiff"};462 pub const @"libtiff" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/libtiff"};
464 pub const @"mpich2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT"};463 pub const @"mpich2" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT"};
465 pub const @"psfrag" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/psfrag"};464 pub const @"psfrag" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/psfrag"};
466 pub const @"psutils" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/psutils"};465 pub const @"psutils" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/psutils"};
467 pub const @"wxWindows" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://opensource.org/licenses/WXwindows"};466 pub const @"wxWindows" = License{.isOsiApproved = false, .url = "https://opensource.org/licenses/WXwindows"};
468 pub const @"xinetd" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Xinetd_License"};467 pub const @"xinetd" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Xinetd_License"};
469 pub const @"xpp" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/xpp"};468 pub const @"xpp" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/xpp"};
470 pub const @"zlib-acknowledgement" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"};469 pub const @"zlib-acknowledgement" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"};
471};470};
472471
473pub const osi = &[_][]const u8{472pub const osi = &[_][]const u8{
...@@ -609,6 +608,3 @@ pub const osi = &[_][]const u8{...@@ -609,6 +608,3 @@ pub const osi = &[_][]const u8{
609 "ZPL-2.0",608 "ZPL-2.0",
610 "Zlib",609 "Zlib",
611};610};
612
613pub const fsf = &[_][]const u8{
614};