authorgravatar for meghan@unicycle.coMeghan Denny <meghan@unicycle.co> 2021-07-19 06:48:05 -07:00
committergravatar for meghan@unicycle.coMeghan Denny <meghan@unicycle.co> 2021-07-19 06:48:05 -07:00
log0ae4fa944bf5ff834022fd1aaecfabf10f2f69f6
treedda10302fc150131855029b58ebf2cdf6d9adca6
parent13a042cf6d5dd16a42515eae77e173b11a5f2803

change `License.url` to the reference one


2 files changed, 463 insertions(+), 463 deletions(-)

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