pyneat-cli 2.2.1b0__tar.gz → 2.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/LICENSE +486 -486
- pyneat_cli-2.3.0/PKG-INFO +435 -0
- pyneat_cli-2.3.0/README.md +403 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/__init__.py +28 -13
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/__main__.py +24 -24
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/benchmark.py +348 -348
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/cli.py +44 -281
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/config.py +452 -452
- pyneat_cli-2.3.0/pyneat/core/__init__.py +59 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/core/atomic.py +215 -215
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/core/engine.py +609 -675
- pyneat_cli-2.3.0/pyneat/core/manifest.py +403 -0
- pyneat_cli-2.3.0/pyneat/core/marker_cleanup.py +152 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/core/scope_guard.py +152 -152
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/core/semantic_guard.py +248 -278
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/core/type_shield.py +226 -226
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/core/types.py +97 -78
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/pre_commit.py +120 -120
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/__init__.py +3 -2
- pyneat_cli-2.3.0/pyneat/rules/ai_bugs.py +712 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/base.py +92 -102
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/comments.py +179 -179
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/conservative.py +36 -36
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/dataclass.py +312 -320
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/deadcode.py +517 -579
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/destructive.py +43 -43
- pyneat_cli-2.3.0/pyneat/rules/duplication.py +131 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/fstring.py +261 -264
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/imports.py +184 -184
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/init_protection.py +218 -218
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/is_not_none.py +129 -129
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/isolated.py +163 -163
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/magic_numbers.py +149 -161
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/match_case.py +375 -375
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/naming.py +108 -125
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/performance.py +38 -49
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/quality.py +124 -174
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/range_len_pattern.py +215 -215
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/redundant.py +190 -270
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/refactoring.py +258 -264
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/safe.py +37 -37
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security.py +1199 -1245
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_pack/__init__.py +77 -77
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_pack/critical.py +59 -59
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_pack/high.py +39 -39
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_pack/info.py +39 -39
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_pack/low.py +39 -39
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_pack/medium.py +44 -44
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/security_registry.py +1991 -1991
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/typing.py +1 -1
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/unused.py +332 -366
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/scanner/rust_scanner.py +0 -18
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/__init__.py +22 -22
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/github_fuzz/__init__.py +321 -321
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/github_fuzz/__main__.py +719 -719
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/github_fuzz/debug_logger.py +17 -17
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/github_fuzz/fuzz_runner.py +627 -627
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/github_fuzz/github_client.py +412 -412
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/security/advisory_db.py +741 -741
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/tools/security/dependency_scanner.py +393 -393
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/utils/naming.py +68 -68
- pyneat_cli-2.3.0/pyneat_cli.egg-info/PKG-INFO +435 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat_cli.egg-info/SOURCES.txt +0 -5
- pyneat_cli-2.3.0/pyneat_cli.egg-info/requires.txt +9 -0
- pyneat_cli-2.3.0/pyproject.toml +57 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/setup.py +3 -3
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_layers.py +2 -2
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_semantic_integrity.py +23 -23
- pyneat_cli-2.2.1b0/LICENSE_COMMERCIAL.md +0 -156
- pyneat_cli-2.2.1b0/NOTICE +0 -103
- pyneat_cli-2.2.1b0/PKG-INFO +0 -265
- pyneat_cli-2.2.1b0/README.md +0 -215
- pyneat_cli-2.2.1b0/pyneat/core/__init__.py +0 -0
- pyneat_cli-2.2.1b0/pyneat/core/manifest.py +0 -680
- pyneat_cli-2.2.1b0/pyneat/core/marker_cleanup.py +0 -145
- pyneat_cli-2.2.1b0/pyneat/lsp.py +0 -727
- pyneat_cli-2.2.1b0/pyneat/plugin/__init__.py +0 -495
- pyneat_cli-2.2.1b0/pyneat/rules/ai_bugs.py +0 -1216
- pyneat_cli-2.2.1b0/pyneat/rules/duplication.py +0 -378
- pyneat_cli-2.2.1b0/pyneat/scanner/__init__.py +0 -0
- pyneat_cli-2.2.1b0/pyneat_cli.egg-info/PKG-INFO +0 -265
- pyneat_cli-2.2.1b0/pyneat_cli.egg-info/requires.txt +0 -19
- pyneat_cli-2.2.1b0/pyproject.toml +0 -125
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat/rules/debug.py +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat_cli.egg-info/dependency_links.txt +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat_cli.egg-info/entry_points.txt +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/pyneat_cli.egg-info/top_level.txt +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/setup.cfg +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_engine.py +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_fuzz.py +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_fuzz_github.py +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_integration.py +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_rust_scanner.py +0 -0
- {pyneat_cli-2.2.1b0 → pyneat_cli-2.3.0}/tests/test_smoke.py +0 -0
|
@@ -1,486 +1,486 @@
|
|
|
1
|
-
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
-
Version 3, 19 November 2007
|
|
3
|
-
|
|
4
|
-
Copyright (C) 2026 PyNEAT Authors
|
|
5
|
-
|
|
6
|
-
"PyNEAT" is a trademark of the PyNEAT Authors.
|
|
7
|
-
The AGPLv3 license does not grant permission to use the "PyNEAT" trademark
|
|
8
|
-
without a separate trademark license agreement. For commercial trademark licensing,
|
|
9
|
-
contact:
|
|
10
|
-
|
|
11
|
-
Everyone is permitted to copy and distribute verbatim copies
|
|
12
|
-
of this license document, but changing it is not allowed.
|
|
13
|
-
|
|
14
|
-
Preamble
|
|
15
|
-
|
|
16
|
-
The GNU Affero General Public License is a free, copyleft license
|
|
17
|
-
for software and other kinds of works.
|
|
18
|
-
|
|
19
|
-
The licenses for most software and other practical works are designed
|
|
20
|
-
to take away your freedom to share and change the works. By contrast,
|
|
21
|
-
our General Public Licenses are intended to guarantee your freedom to
|
|
22
|
-
share and change all versions of a program--to make sure it remains free
|
|
23
|
-
software for all its users.
|
|
24
|
-
|
|
25
|
-
When we speak of free software, we are referring to freedom, not
|
|
26
|
-
price. Our General Public Licenses are designed to make sure that you
|
|
27
|
-
have the freedom to distribute copies of free software (and charge for
|
|
28
|
-
them if you wish), that you receive source code or can get it if you
|
|
29
|
-
want it, that you can change the software or use pieces of it in new
|
|
30
|
-
free programs, and that you know you can do these things.
|
|
31
|
-
|
|
32
|
-
Developers that use our General Public Licenses give you the freedom to
|
|
33
|
-
share and change a work, and to charge for this service if you wish.
|
|
34
|
-
|
|
35
|
-
However, for users interacting with your work over a computer network,
|
|
36
|
-
the Corresponding Source means all the source code needed to generate,
|
|
37
|
-
install, and run the object code and any interface definitions,
|
|
38
|
-
including scripts used to control compilation and installation of the
|
|
39
|
-
executable.
|
|
40
|
-
|
|
41
|
-
As an exception, the source code distributed need not include anything
|
|
42
|
-
that is normally distributed (in either source code or binary form)
|
|
43
|
-
with the major components (compiler, kernel, and so on) of the operating
|
|
44
|
-
system on which the executable runs, unless that component itself
|
|
45
|
-
accompanies the executable.
|
|
46
|
-
|
|
47
|
-
If you link or otherwise combine this program with other parts of a
|
|
48
|
-
work that is licensed under AGPLv3, the whole combined work must be
|
|
49
|
-
licensed under AGPLv3. If your service provides network access and
|
|
50
|
-
serves this program's output, you must also provide the Corresponding
|
|
51
|
-
Source, either by including the source with your distribution, or by
|
|
52
|
-
offering it from the same network location where users interact with
|
|
53
|
-
your service.
|
|
54
|
-
|
|
55
|
-
TERMS AND CONDITIONS
|
|
56
|
-
|
|
57
|
-
0. Definitions.
|
|
58
|
-
|
|
59
|
-
"This License" refers to version 3 of the GNU Affero General Public
|
|
60
|
-
License.
|
|
61
|
-
|
|
62
|
-
"The Program" refers to any copyrightable work licensed under this
|
|
63
|
-
License. Each licensee is addressed as "you". "Licensees" and
|
|
64
|
-
"recipients" may be individuals or organizations.
|
|
65
|
-
|
|
66
|
-
To "modify" a work means to copy from or adapt all or part of the work
|
|
67
|
-
in a fashion requiring copyright permission, other than the making of an
|
|
68
|
-
exact copy. The resulting work is called a "modified version" of the
|
|
69
|
-
earlier work or a work "based on" the earlier work.
|
|
70
|
-
|
|
71
|
-
A "covered work" means either the unmodified Program or a work based
|
|
72
|
-
on the Program.
|
|
73
|
-
|
|
74
|
-
To "propagate" a work means to do anything with it that, without
|
|
75
|
-
permission, would make you directly or secondarily liable for
|
|
76
|
-
infringement under applicable copyright law, except executing on a
|
|
77
|
-
computer or modifying a private copy. Propagation includes copying,
|
|
78
|
-
distribution (with or without modification), making available to the
|
|
79
|
-
public, and in some countries other activities as well.
|
|
80
|
-
|
|
81
|
-
To "convey" a work means any kind of propagation that enables other
|
|
82
|
-
parties to make or receive copies. Mere interaction with a user
|
|
83
|
-
through a computer network, with no transfer of a copy, is not
|
|
84
|
-
conveying.
|
|
85
|
-
|
|
86
|
-
An interactive user interface displays "Appropriate Legal Notices" to
|
|
87
|
-
the extent that it includes a convenient and prominently visible
|
|
88
|
-
feature that (1) displays an appropriate copyright notice, and (2)
|
|
89
|
-
tells the user that there is no warranty for the work (except to the
|
|
90
|
-
extent warranties are provided), that licensees may convey the work
|
|
91
|
-
under this License, and how to view a copy of this License. If the
|
|
92
|
-
interface presents a list of user commands or options, such as a menu,
|
|
93
|
-
a prominent item in the list meets this criterion.
|
|
94
|
-
|
|
95
|
-
1. Source Code.
|
|
96
|
-
|
|
97
|
-
The "source code" for a work means the preferred form of the work for
|
|
98
|
-
making modifications to it. "Object code" means any non-source form of
|
|
99
|
-
a work.
|
|
100
|
-
|
|
101
|
-
The "Corresponding Source" for a work in object code form means all
|
|
102
|
-
the source code needed to generate, install, and (for an executable
|
|
103
|
-
work) run the object code and to modify the work, including scripts to
|
|
104
|
-
control those activities. However, it does not include the work's
|
|
105
|
-
System Libraries, or general-purpose tools or generally available free
|
|
106
|
-
programs which are used unmodified in performing those activities but
|
|
107
|
-
which are not part of the work.
|
|
108
|
-
|
|
109
|
-
The Corresponding Source need not include anything that users can
|
|
110
|
-
regenerate automatically from other parts of the Corresponding Source.
|
|
111
|
-
|
|
112
|
-
The Corresponding Source for a work in source code form is that same
|
|
113
|
-
work.
|
|
114
|
-
|
|
115
|
-
2. Basic Permissions.
|
|
116
|
-
|
|
117
|
-
All rights granted under this License are granted for the term of
|
|
118
|
-
copyright and are irrevocable, provided the stated conditions are met.
|
|
119
|
-
This License explicitly affirms your unlimited permission to run the
|
|
120
|
-
unmodified Program. The output from running a covered work is covered
|
|
121
|
-
by this License only if the output, given its content, constitutes a
|
|
122
|
-
covered work. This License acknowledges your rights of fair use or
|
|
123
|
-
other equivalent, as provided by copyright law.
|
|
124
|
-
|
|
125
|
-
You may make, run and propagate covered works that you do not convey,
|
|
126
|
-
without conditions so long as your license otherwise remains in force.
|
|
127
|
-
You may convey covered works to others for the purpose of having them
|
|
128
|
-
make modifications exclusively for you, or provide you with
|
|
129
|
-
facilities for running those works, provided that you comply with the
|
|
130
|
-
terms of this License in conveying all material for which you do not
|
|
131
|
-
control copyright. Those thus making or running the covered works for
|
|
132
|
-
you must do so exclusively on your behalf, under your direction and
|
|
133
|
-
control, in terms that prevent them from making any copies of your
|
|
134
|
-
copyrighted material outside their relationship with you.
|
|
135
|
-
|
|
136
|
-
Conveying under any other circumstances is permitted solely under the
|
|
137
|
-
conditions stated below. Sublicensing is not allowed; section 10 makes
|
|
138
|
-
it unnecessary.
|
|
139
|
-
|
|
140
|
-
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
141
|
-
|
|
142
|
-
No covered work shall be deemed part of an effective technological
|
|
143
|
-
measure under any applicable law fulfilling obligations under article 11
|
|
144
|
-
of the WIPO copyright treaty adopted on 20 December 1996, or similar
|
|
145
|
-
laws prohibiting or restricting circumvention of such measures.
|
|
146
|
-
|
|
147
|
-
When you convey a covered work, you waive any legal power to forbid
|
|
148
|
-
circumvention of technological measures to the extent that such
|
|
149
|
-
circumvention is effected by exercising rights under this License with
|
|
150
|
-
respect to the covered work, and you disclaim any intention to limit
|
|
151
|
-
operation or modification of the work as a means of enforcing, against
|
|
152
|
-
the work's users, your or third parties' legal rights to forbid
|
|
153
|
-
circumvention of technological measures.
|
|
154
|
-
|
|
155
|
-
4. Conveying Verbatim Copies.
|
|
156
|
-
|
|
157
|
-
You may convey verbatim copies of the Program's source code as you
|
|
158
|
-
receive it, in any medium, provided that you conspicuously and
|
|
159
|
-
appropriately publish on each copy an appropriate copyright notice;
|
|
160
|
-
keep intact all notices stating that this License and the absence of
|
|
161
|
-
any warranty; and give all other recipients a copy of this License
|
|
162
|
-
along with the Program.
|
|
163
|
-
|
|
164
|
-
You may charge any price or no price for each copy that you convey,
|
|
165
|
-
and you may offer or convey the Program with offer to provide a
|
|
166
|
-
warranty and/or sell support for it.
|
|
167
|
-
|
|
168
|
-
5. Conveying Modified Source Versions.
|
|
169
|
-
|
|
170
|
-
You may convey a work based on the Program, or the modifications to
|
|
171
|
-
produce it from the Program, in the form of source code under the
|
|
172
|
-
terms of section 4, provided that you also meet all of these
|
|
173
|
-
conditions:
|
|
174
|
-
|
|
175
|
-
a) The work must carry prominent notices stating that you modified
|
|
176
|
-
it, and giving a relevant date.
|
|
177
|
-
|
|
178
|
-
b) The work must carry prominent notices stating that it is
|
|
179
|
-
released under this License and any conditions added under
|
|
180
|
-
section 4. This requirement modifies the requirement in section
|
|
181
|
-
4 of "keep intact all notices".
|
|
182
|
-
|
|
183
|
-
c) You must license the entire work, as a whole, under this
|
|
184
|
-
License to anyone who comes into possession of a copy. This
|
|
185
|
-
License will therefore apply, along with any applicable section
|
|
186
|
-
4 additional terms, to the whole of the work, and all its parts,
|
|
187
|
-
regardless of how they are packaged. This License gives no
|
|
188
|
-
permission to license the work in any other way, but it does not
|
|
189
|
-
invalidate such permission if you have separately received it.
|
|
190
|
-
|
|
191
|
-
d) If the work has interactive user interfaces, each must display
|
|
192
|
-
Appropriate Legal Notices. However, if the Program has interactive
|
|
193
|
-
interfaces that do not display Appropriate Legal Notices, your
|
|
194
|
-
work need not make them do so.
|
|
195
|
-
|
|
196
|
-
A compilation of a covered work with other separate and independent
|
|
197
|
-
works, which are not by their nature extensions of the covered work,
|
|
198
|
-
and which are not combined with it such as to form a larger program,
|
|
199
|
-
in or on a volume of a storage or distribution medium, is called an
|
|
200
|
-
"aggregate" if the compilation and its resulting copyright are not
|
|
201
|
-
used to limit the access or legal rights of the compilation's users
|
|
202
|
-
beyond what the individual works permit. Inclusion of a covered work
|
|
203
|
-
in an aggregate does not cause this License to affect the other
|
|
204
|
-
portions of the aggregate.
|
|
205
|
-
|
|
206
|
-
6. Conveying Non-Source Forms.
|
|
207
|
-
|
|
208
|
-
You may convey a covered work in object code form under the terms of
|
|
209
|
-
sections 4 and 5, provided that you also convey the machine-readable
|
|
210
|
-
Corresponding Source under the terms of this License, in one of these
|
|
211
|
-
ways:
|
|
212
|
-
|
|
213
|
-
a) Convey the object code in, or embodied in, a physical product
|
|
214
|
-
(including a physical distribution medium), accompanied by the
|
|
215
|
-
Corresponding Source fixed on a durable physical medium
|
|
216
|
-
customarily used for software interchange.
|
|
217
|
-
|
|
218
|
-
b) Convey the object code in, or embodied in, a physical product
|
|
219
|
-
(including a physical distribution medium), accompanied by a
|
|
220
|
-
written offer, valid for at least three years and valid for as
|
|
221
|
-
long as you offer spare parts or customer support for that
|
|
222
|
-
product model, to give anyone who possesses the object code
|
|
223
|
-
either (1) a copy of the Corresponding Source for all the
|
|
224
|
-
software in the product, packaged with the product at no charge;
|
|
225
|
-
or (2) access to copy the Corresponding Source from a network
|
|
226
|
-
server at no charge.
|
|
227
|
-
|
|
228
|
-
c) Convey individual copies of the object code with a copy of the
|
|
229
|
-
written offer to provide the Corresponding Source. This
|
|
230
|
-
alternative is allowed only occasionally and noncommercially, and
|
|
231
|
-
only if you received the object code with such an offer, in accord
|
|
232
|
-
with subsection 6b.
|
|
233
|
-
|
|
234
|
-
d) Convey the object code by offering access from a designated
|
|
235
|
-
place (gratis or for a charge), and offer equivalent access to
|
|
236
|
-
the Corresponding Source in the same way through the same place
|
|
237
|
-
at no further charge. You need not require recipients to copy
|
|
238
|
-
the Corresponding Source along with the object code. If the place
|
|
239
|
-
to copy the Corresponding Source is a network server, the
|
|
240
|
-
Corresponding Source may be on a different server (operated by
|
|
241
|
-
you or a third party) that supports equivalent copying
|
|
242
|
-
facilities, provided you maintain clear directions next to the
|
|
243
|
-
object code saying where to find the Corresponding Source.
|
|
244
|
-
Regardless of what server hosts the Corresponding Source, you
|
|
245
|
-
remain obligated to ensure that it is available for as long as
|
|
246
|
-
needed to satisfy these requirements.
|
|
247
|
-
|
|
248
|
-
e) Convey the object code using peer-to-peer transmission,
|
|
249
|
-
provided you inform other peers where the object code and
|
|
250
|
-
Corresponding Source of the work are being offered by other
|
|
251
|
-
third-party servers.
|
|
252
|
-
|
|
253
|
-
f) If the work has interactive user interfaces, each must display
|
|
254
|
-
Appropriate Legal Notices. However, if the Program has
|
|
255
|
-
interactive interfaces that do not display Appropriate Legal
|
|
256
|
-
Notices, your work need not make them do so.
|
|
257
|
-
|
|
258
|
-
A separable portion of the object code, whose source code is excluded
|
|
259
|
-
from the Corresponding Source as a System Library, need not be
|
|
260
|
-
included in the object code.
|
|
261
|
-
|
|
262
|
-
7. Additional Terms.
|
|
263
|
-
|
|
264
|
-
"Additional permissions" are terms that supplement the terms of this
|
|
265
|
-
License by making exceptions from one or more of its conditions.
|
|
266
|
-
Additional permissions that are applicable to the entire Program shall
|
|
267
|
-
be treated as though they were included in this License, to the extent
|
|
268
|
-
that they are valid under applicable law. If additional permissions
|
|
269
|
-
apply only to part of the Program, that part may be used separately
|
|
270
|
-
under those permissions, but the entire Program remains governed by
|
|
271
|
-
this License without regard to the additional permissions.
|
|
272
|
-
|
|
273
|
-
When you convey a copy of a covered work, you may at your option
|
|
274
|
-
remove any additional permissions from that copy, or from any part of
|
|
275
|
-
it. (Additional permissions may be written to require their own
|
|
276
|
-
removal in certain cases when you modify the work.) You may add
|
|
277
|
-
additional permissions for material you have added to a covered work,
|
|
278
|
-
provided that those additional permissions do not extend to any
|
|
279
|
-
portion of the work that you cause to be inserted into the source.
|
|
280
|
-
|
|
281
|
-
You may convey a covered work with the additional permission of your
|
|
282
|
-
choice. A copy of this License plus the additional permission must
|
|
283
|
-
be attached to every copy of the work you convey.
|
|
284
|
-
|
|
285
|
-
8. Termination.
|
|
286
|
-
|
|
287
|
-
You may not propagate or modify a covered work except as expressly
|
|
288
|
-
provided under this License. Any attempt otherwise to propagate or
|
|
289
|
-
modify it is void, and will automatically terminate your rights under
|
|
290
|
-
this License.
|
|
291
|
-
|
|
292
|
-
However, if you cease all violation of this License, then your license
|
|
293
|
-
from a particular copyright holder is reinstated (a) provisionally,
|
|
294
|
-
unless and until the copyright holder explicitly and finally terminates
|
|
295
|
-
your license, and (b) permanently, if the copyright holder fails to
|
|
296
|
-
notify you of the violation by some reasonable means prior to 60
|
|
297
|
-
days after the cessation.
|
|
298
|
-
|
|
299
|
-
Moreover, your license from a particular copyright holder is reinstated
|
|
300
|
-
permanently if the copyright holder notifies you of the violation by
|
|
301
|
-
some reasonable means, this is the first time you have received notice
|
|
302
|
-
of violation of this License (for any work) from that copyright
|
|
303
|
-
holder, and you cure the violation prior to 30 days after your
|
|
304
|
-
receipt of the notice.
|
|
305
|
-
|
|
306
|
-
Termination of your rights under this section does not terminate the
|
|
307
|
-
licenses of parties who have received copies or rights from you under
|
|
308
|
-
this License. If your rights have been terminated and not reinstated,
|
|
309
|
-
you are not entitled to reuse the material covered by this License.
|
|
310
|
-
|
|
311
|
-
9. License Not Granted.
|
|
312
|
-
|
|
313
|
-
You are not required to accept this License, since you have not
|
|
314
|
-
signed it. However, nothing else grants you permission to propagate or
|
|
315
|
-
modify the covered work or any derivative works. These actions are
|
|
316
|
-
prohibited by law if you do not accept this License. Therefore, by
|
|
317
|
-
modifying or propagating a covered work, you indicate your acceptance
|
|
318
|
-
of this License to do so.
|
|
319
|
-
|
|
320
|
-
10. Automatic Licensing of Downstream Recipients.
|
|
321
|
-
|
|
322
|
-
Each time you convey a covered work, the recipient automatically
|
|
323
|
-
receives a license from the original licensors, to run, modify and
|
|
324
|
-
propagate that work, subject to this License. You are not responsible
|
|
325
|
-
for enforcing compliance by third parties with this License.
|
|
326
|
-
|
|
327
|
-
An "entity transaction" is a transaction transferring control of an
|
|
328
|
-
organization, or substantially all assets of one, or subdividing an
|
|
329
|
-
organization, or merging organizations. If propagation of a covered
|
|
330
|
-
work results from an entity transaction, each party to that transaction
|
|
331
|
-
who receives a copy of the work also receives whatever licenses to the
|
|
332
|
-
work the party's predecessor in interest had or could give, and may
|
|
333
|
-
rely on the "Corresponding Source" of the work from the predecessor
|
|
334
|
-
in interest, if the predecessor has it and can get it with reasonable
|
|
335
|
-
efforts.
|
|
336
|
-
|
|
337
|
-
You may not impose any further restrictions on the exercise of the
|
|
338
|
-
rights granted or affirmed under this License. For example, you may
|
|
339
|
-
not impose a license fee, royalty, or other charge for exercise of
|
|
340
|
-
rights granted under this License, and you may not initiate litigation
|
|
341
|
-
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
342
|
-
any patent claim is infringed by making, using, selling, offering for
|
|
343
|
-
sale, or importing the Program or any portion of it.
|
|
344
|
-
|
|
345
|
-
11. Patents.
|
|
346
|
-
|
|
347
|
-
A "contributor" is a copyright holder who authorizes use under this
|
|
348
|
-
License of the Program or a work on which the Program is based. The
|
|
349
|
-
work thus licensed is called the contributor's "contributor version".
|
|
350
|
-
|
|
351
|
-
A contributor's "essential patent claims" are all patent claims owned
|
|
352
|
-
or controlled by the contributor, that are infringed by some manner,
|
|
353
|
-
permitted by this License, of making, using, or selling its
|
|
354
|
-
contributor version, but do not include claims that would be
|
|
355
|
-
infringed only as a consequence of further modification of the
|
|
356
|
-
contributor version.
|
|
357
|
-
|
|
358
|
-
For purposes of this definition, "control" includes the right to
|
|
359
|
-
grant patent sublicenses in a manner consistent with the requirements
|
|
360
|
-
of this License.
|
|
361
|
-
|
|
362
|
-
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
363
|
-
patent license under the contributor's essential patent claims, to
|
|
364
|
-
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
365
|
-
propagate the contributor version.
|
|
366
|
-
|
|
367
|
-
In the following three paragraphs, a "patent license" is any express
|
|
368
|
-
agreement or commitment, however denominated, not to enforce a patent
|
|
369
|
-
(such as an express permission to practice a patent or covenant not to
|
|
370
|
-
sue for infringement). To "grant" such a patent license to a party
|
|
371
|
-
means to make such an agreement or commitment not to enforce a
|
|
372
|
-
patent against the party.
|
|
373
|
-
|
|
374
|
-
If you convey a covered work, knowingly relying on a patent license,
|
|
375
|
-
and the Corresponding Source is not available for anyone to copy,
|
|
376
|
-
free of charge and under the terms of this License, through a
|
|
377
|
-
publicly available network server or other readily accessible means,
|
|
378
|
-
then you must either (1) cause the Corresponding Source to be so
|
|
379
|
-
available, or (2) arrange to deprive yourself of the benefit of the
|
|
380
|
-
patent license for this particular work, or (3) arrange, in a manner
|
|
381
|
-
consistent with the requirements of this License, to extend the
|
|
382
|
-
patent license to downstream recipients. "Knowingly relying" means
|
|
383
|
-
you have actual knowledge that, but for the patent license, your
|
|
384
|
-
conveying the covered work in a country, or your recipient's use of
|
|
385
|
-
the covered work in a country, would infringe one or more identifiable
|
|
386
|
-
patents in that country that you have reason to think are essential.
|
|
387
|
-
|
|
388
|
-
If you are a software vendor, patent licensing under this section may
|
|
389
|
-
be important for your business. To prevent this from happening, this
|
|
390
|
-
section is intended to make it clear that any patent license granted
|
|
391
|
-
herein only covers your contributions and does not extend to works
|
|
392
|
-
combining your contributions with those of others.
|
|
393
|
-
|
|
394
|
-
If you convey a covered work under this section, or with a work or
|
|
395
|
-
anModification that is a covered work under this section, in a
|
|
396
|
-
country or your recipient's use of the covered work in a country,
|
|
397
|
-
you may not grant patent licenses for that work under this License.
|
|
398
|
-
|
|
399
|
-
12. No Sublicensing.
|
|
400
|
-
|
|
401
|
-
Each time you convey a covered work, the recipient automatically
|
|
402
|
-
receives a license from the original licensors, to copy, distribute,
|
|
403
|
-
modify or otherwise deal with the covered work under this License.
|
|
404
|
-
You may not offer or impose any terms on the covered work that
|
|
405
|
-
restrict or alter the recipient's exercise of the rights granted
|
|
406
|
-
or affirmed under this License, including any translation of this
|
|
407
|
-
License into another language. You are responsible for ensuring that
|
|
408
|
-
if you modify the covered work you do not introduce additional
|
|
409
|
-
terms that require the covered work or any derivative work to reveal
|
|
410
|
-
source code that is not part of the covered work.
|
|
411
|
-
|
|
412
|
-
13. Remote Network Interaction.
|
|
413
|
-
|
|
414
|
-
If you use the Program to provide a network service to users over
|
|
415
|
-
a computer network, the Corresponding Source of the offered service
|
|
416
|
-
must be made available. This requirement applies both to the service
|
|
417
|
-
itself and to any derivative works you create that provide the same
|
|
418
|
-
functionality through the network.
|
|
419
|
-
|
|
420
|
-
For example, if you run a web server that hosts an instance of this
|
|
421
|
-
Program or serves its output, you must make the Corresponding Source
|
|
422
|
-
available to users of your service. You must also provide clear
|
|
423
|
-
instructions on how to obtain the Corresponding Source, including
|
|
424
|
-
any modifications you've made to the Program.
|
|
425
|
-
|
|
426
|
-
14. Revised Versions of this License.
|
|
427
|
-
|
|
428
|
-
The Free Software Foundation may publish revised and/or new versions
|
|
429
|
-
of the GNU Affero General Public License from time to time. Such
|
|
430
|
-
new versions will be similar in spirit to the present version, but
|
|
431
|
-
may differ in detail to address new problems or concerns.
|
|
432
|
-
|
|
433
|
-
Each version is given a distinguishing version number. If the
|
|
434
|
-
Program specifies that a designated numbered version of this License
|
|
435
|
-
"or any later version" applies to it, you have the option of
|
|
436
|
-
following the terms and conditions either of that designated version
|
|
437
|
-
or of any later version published by the Free Software Foundation.
|
|
438
|
-
If the Program does not specify a version number of this License,
|
|
439
|
-
you may choose any version ever published by the Free Software
|
|
440
|
-
Foundation.
|
|
441
|
-
|
|
442
|
-
If the Program specifies that a proxy can decide which future
|
|
443
|
-
versions of this License can be used, that proxy's public statement
|
|
444
|
-
of acceptance of a version permanently authorizes you to choose
|
|
445
|
-
that version for the Program.
|
|
446
|
-
|
|
447
|
-
Later license versions may give you additional or different
|
|
448
|
-
permissions. However, no additional obligations are imposed on any
|
|
449
|
-
author or copyright holder as a result of your choosing to follow a
|
|
450
|
-
later version.
|
|
451
|
-
|
|
452
|
-
15. Disclaimer of Warranty.
|
|
453
|
-
|
|
454
|
-
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
455
|
-
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
456
|
-
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
|
|
457
|
-
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
|
|
458
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
459
|
-
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
|
460
|
-
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
|
461
|
-
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
|
462
|
-
CORRECTION.
|
|
463
|
-
|
|
464
|
-
16. Limitation of Liability.
|
|
465
|
-
|
|
466
|
-
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
|
467
|
-
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES
|
|
468
|
-
AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
|
|
469
|
-
DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
|
470
|
-
DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
|
|
471
|
-
(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
|
|
472
|
-
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE
|
|
473
|
-
OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
|
|
474
|
-
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
475
|
-
DAMAGES.
|
|
476
|
-
|
|
477
|
-
17. Interpretation of Sections 15 and 16.
|
|
478
|
-
|
|
479
|
-
If the disclaimer of warranty and limitation of liability provided
|
|
480
|
-
above cannot be given local legal effect according to their terms,
|
|
481
|
-
reviewing courts shall apply local law that most closely approximates
|
|
482
|
-
an absolute waiver of all civil liability in connection with the
|
|
483
|
-
Program, unless a warranty or assumption of liability accompanies a
|
|
484
|
-
copy of the Program in return for a fee.
|
|
485
|
-
|
|
486
|
-
END OF TERMS AND CONDITIONS
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2026 PyNEAT Authors
|
|
5
|
+
|
|
6
|
+
"PyNEAT" is a trademark of the PyNEAT Authors.
|
|
7
|
+
The AGPLv3 license does not grant permission to use the "PyNEAT" trademark
|
|
8
|
+
without a separate trademark license agreement. For commercial trademark licensing,
|
|
9
|
+
contact: license@pyneat.dev
|
|
10
|
+
|
|
11
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
12
|
+
of this license document, but changing it is not allowed.
|
|
13
|
+
|
|
14
|
+
Preamble
|
|
15
|
+
|
|
16
|
+
The GNU Affero General Public License is a free, copyleft license
|
|
17
|
+
for software and other kinds of works.
|
|
18
|
+
|
|
19
|
+
The licenses for most software and other practical works are designed
|
|
20
|
+
to take away your freedom to share and change the works. By contrast,
|
|
21
|
+
our General Public Licenses are intended to guarantee your freedom to
|
|
22
|
+
share and change all versions of a program--to make sure it remains free
|
|
23
|
+
software for all its users.
|
|
24
|
+
|
|
25
|
+
When we speak of free software, we are referring to freedom, not
|
|
26
|
+
price. Our General Public Licenses are designed to make sure that you
|
|
27
|
+
have the freedom to distribute copies of free software (and charge for
|
|
28
|
+
them if you wish), that you receive source code or can get it if you
|
|
29
|
+
want it, that you can change the software or use pieces of it in new
|
|
30
|
+
free programs, and that you know you can do these things.
|
|
31
|
+
|
|
32
|
+
Developers that use our General Public Licenses give you the freedom to
|
|
33
|
+
share and change a work, and to charge for this service if you wish.
|
|
34
|
+
|
|
35
|
+
However, for users interacting with your work over a computer network,
|
|
36
|
+
the Corresponding Source means all the source code needed to generate,
|
|
37
|
+
install, and run the object code and any interface definitions,
|
|
38
|
+
including scripts used to control compilation and installation of the
|
|
39
|
+
executable.
|
|
40
|
+
|
|
41
|
+
As an exception, the source code distributed need not include anything
|
|
42
|
+
that is normally distributed (in either source code or binary form)
|
|
43
|
+
with the major components (compiler, kernel, and so on) of the operating
|
|
44
|
+
system on which the executable runs, unless that component itself
|
|
45
|
+
accompanies the executable.
|
|
46
|
+
|
|
47
|
+
If you link or otherwise combine this program with other parts of a
|
|
48
|
+
work that is licensed under AGPLv3, the whole combined work must be
|
|
49
|
+
licensed under AGPLv3. If your service provides network access and
|
|
50
|
+
serves this program's output, you must also provide the Corresponding
|
|
51
|
+
Source, either by including the source with your distribution, or by
|
|
52
|
+
offering it from the same network location where users interact with
|
|
53
|
+
your service.
|
|
54
|
+
|
|
55
|
+
TERMS AND CONDITIONS
|
|
56
|
+
|
|
57
|
+
0. Definitions.
|
|
58
|
+
|
|
59
|
+
"This License" refers to version 3 of the GNU Affero General Public
|
|
60
|
+
License.
|
|
61
|
+
|
|
62
|
+
"The Program" refers to any copyrightable work licensed under this
|
|
63
|
+
License. Each licensee is addressed as "you". "Licensees" and
|
|
64
|
+
"recipients" may be individuals or organizations.
|
|
65
|
+
|
|
66
|
+
To "modify" a work means to copy from or adapt all or part of the work
|
|
67
|
+
in a fashion requiring copyright permission, other than the making of an
|
|
68
|
+
exact copy. The resulting work is called a "modified version" of the
|
|
69
|
+
earlier work or a work "based on" the earlier work.
|
|
70
|
+
|
|
71
|
+
A "covered work" means either the unmodified Program or a work based
|
|
72
|
+
on the Program.
|
|
73
|
+
|
|
74
|
+
To "propagate" a work means to do anything with it that, without
|
|
75
|
+
permission, would make you directly or secondarily liable for
|
|
76
|
+
infringement under applicable copyright law, except executing on a
|
|
77
|
+
computer or modifying a private copy. Propagation includes copying,
|
|
78
|
+
distribution (with or without modification), making available to the
|
|
79
|
+
public, and in some countries other activities as well.
|
|
80
|
+
|
|
81
|
+
To "convey" a work means any kind of propagation that enables other
|
|
82
|
+
parties to make or receive copies. Mere interaction with a user
|
|
83
|
+
through a computer network, with no transfer of a copy, is not
|
|
84
|
+
conveying.
|
|
85
|
+
|
|
86
|
+
An interactive user interface displays "Appropriate Legal Notices" to
|
|
87
|
+
the extent that it includes a convenient and prominently visible
|
|
88
|
+
feature that (1) displays an appropriate copyright notice, and (2)
|
|
89
|
+
tells the user that there is no warranty for the work (except to the
|
|
90
|
+
extent warranties are provided), that licensees may convey the work
|
|
91
|
+
under this License, and how to view a copy of this License. If the
|
|
92
|
+
interface presents a list of user commands or options, such as a menu,
|
|
93
|
+
a prominent item in the list meets this criterion.
|
|
94
|
+
|
|
95
|
+
1. Source Code.
|
|
96
|
+
|
|
97
|
+
The "source code" for a work means the preferred form of the work for
|
|
98
|
+
making modifications to it. "Object code" means any non-source form of
|
|
99
|
+
a work.
|
|
100
|
+
|
|
101
|
+
The "Corresponding Source" for a work in object code form means all
|
|
102
|
+
the source code needed to generate, install, and (for an executable
|
|
103
|
+
work) run the object code and to modify the work, including scripts to
|
|
104
|
+
control those activities. However, it does not include the work's
|
|
105
|
+
System Libraries, or general-purpose tools or generally available free
|
|
106
|
+
programs which are used unmodified in performing those activities but
|
|
107
|
+
which are not part of the work.
|
|
108
|
+
|
|
109
|
+
The Corresponding Source need not include anything that users can
|
|
110
|
+
regenerate automatically from other parts of the Corresponding Source.
|
|
111
|
+
|
|
112
|
+
The Corresponding Source for a work in source code form is that same
|
|
113
|
+
work.
|
|
114
|
+
|
|
115
|
+
2. Basic Permissions.
|
|
116
|
+
|
|
117
|
+
All rights granted under this License are granted for the term of
|
|
118
|
+
copyright and are irrevocable, provided the stated conditions are met.
|
|
119
|
+
This License explicitly affirms your unlimited permission to run the
|
|
120
|
+
unmodified Program. The output from running a covered work is covered
|
|
121
|
+
by this License only if the output, given its content, constitutes a
|
|
122
|
+
covered work. This License acknowledges your rights of fair use or
|
|
123
|
+
other equivalent, as provided by copyright law.
|
|
124
|
+
|
|
125
|
+
You may make, run and propagate covered works that you do not convey,
|
|
126
|
+
without conditions so long as your license otherwise remains in force.
|
|
127
|
+
You may convey covered works to others for the purpose of having them
|
|
128
|
+
make modifications exclusively for you, or provide you with
|
|
129
|
+
facilities for running those works, provided that you comply with the
|
|
130
|
+
terms of this License in conveying all material for which you do not
|
|
131
|
+
control copyright. Those thus making or running the covered works for
|
|
132
|
+
you must do so exclusively on your behalf, under your direction and
|
|
133
|
+
control, in terms that prevent them from making any copies of your
|
|
134
|
+
copyrighted material outside their relationship with you.
|
|
135
|
+
|
|
136
|
+
Conveying under any other circumstances is permitted solely under the
|
|
137
|
+
conditions stated below. Sublicensing is not allowed; section 10 makes
|
|
138
|
+
it unnecessary.
|
|
139
|
+
|
|
140
|
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
141
|
+
|
|
142
|
+
No covered work shall be deemed part of an effective technological
|
|
143
|
+
measure under any applicable law fulfilling obligations under article 11
|
|
144
|
+
of the WIPO copyright treaty adopted on 20 December 1996, or similar
|
|
145
|
+
laws prohibiting or restricting circumvention of such measures.
|
|
146
|
+
|
|
147
|
+
When you convey a covered work, you waive any legal power to forbid
|
|
148
|
+
circumvention of technological measures to the extent that such
|
|
149
|
+
circumvention is effected by exercising rights under this License with
|
|
150
|
+
respect to the covered work, and you disclaim any intention to limit
|
|
151
|
+
operation or modification of the work as a means of enforcing, against
|
|
152
|
+
the work's users, your or third parties' legal rights to forbid
|
|
153
|
+
circumvention of technological measures.
|
|
154
|
+
|
|
155
|
+
4. Conveying Verbatim Copies.
|
|
156
|
+
|
|
157
|
+
You may convey verbatim copies of the Program's source code as you
|
|
158
|
+
receive it, in any medium, provided that you conspicuously and
|
|
159
|
+
appropriately publish on each copy an appropriate copyright notice;
|
|
160
|
+
keep intact all notices stating that this License and the absence of
|
|
161
|
+
any warranty; and give all other recipients a copy of this License
|
|
162
|
+
along with the Program.
|
|
163
|
+
|
|
164
|
+
You may charge any price or no price for each copy that you convey,
|
|
165
|
+
and you may offer or convey the Program with offer to provide a
|
|
166
|
+
warranty and/or sell support for it.
|
|
167
|
+
|
|
168
|
+
5. Conveying Modified Source Versions.
|
|
169
|
+
|
|
170
|
+
You may convey a work based on the Program, or the modifications to
|
|
171
|
+
produce it from the Program, in the form of source code under the
|
|
172
|
+
terms of section 4, provided that you also meet all of these
|
|
173
|
+
conditions:
|
|
174
|
+
|
|
175
|
+
a) The work must carry prominent notices stating that you modified
|
|
176
|
+
it, and giving a relevant date.
|
|
177
|
+
|
|
178
|
+
b) The work must carry prominent notices stating that it is
|
|
179
|
+
released under this License and any conditions added under
|
|
180
|
+
section 4. This requirement modifies the requirement in section
|
|
181
|
+
4 of "keep intact all notices".
|
|
182
|
+
|
|
183
|
+
c) You must license the entire work, as a whole, under this
|
|
184
|
+
License to anyone who comes into possession of a copy. This
|
|
185
|
+
License will therefore apply, along with any applicable section
|
|
186
|
+
4 additional terms, to the whole of the work, and all its parts,
|
|
187
|
+
regardless of how they are packaged. This License gives no
|
|
188
|
+
permission to license the work in any other way, but it does not
|
|
189
|
+
invalidate such permission if you have separately received it.
|
|
190
|
+
|
|
191
|
+
d) If the work has interactive user interfaces, each must display
|
|
192
|
+
Appropriate Legal Notices. However, if the Program has interactive
|
|
193
|
+
interfaces that do not display Appropriate Legal Notices, your
|
|
194
|
+
work need not make them do so.
|
|
195
|
+
|
|
196
|
+
A compilation of a covered work with other separate and independent
|
|
197
|
+
works, which are not by their nature extensions of the covered work,
|
|
198
|
+
and which are not combined with it such as to form a larger program,
|
|
199
|
+
in or on a volume of a storage or distribution medium, is called an
|
|
200
|
+
"aggregate" if the compilation and its resulting copyright are not
|
|
201
|
+
used to limit the access or legal rights of the compilation's users
|
|
202
|
+
beyond what the individual works permit. Inclusion of a covered work
|
|
203
|
+
in an aggregate does not cause this License to affect the other
|
|
204
|
+
portions of the aggregate.
|
|
205
|
+
|
|
206
|
+
6. Conveying Non-Source Forms.
|
|
207
|
+
|
|
208
|
+
You may convey a covered work in object code form under the terms of
|
|
209
|
+
sections 4 and 5, provided that you also convey the machine-readable
|
|
210
|
+
Corresponding Source under the terms of this License, in one of these
|
|
211
|
+
ways:
|
|
212
|
+
|
|
213
|
+
a) Convey the object code in, or embodied in, a physical product
|
|
214
|
+
(including a physical distribution medium), accompanied by the
|
|
215
|
+
Corresponding Source fixed on a durable physical medium
|
|
216
|
+
customarily used for software interchange.
|
|
217
|
+
|
|
218
|
+
b) Convey the object code in, or embodied in, a physical product
|
|
219
|
+
(including a physical distribution medium), accompanied by a
|
|
220
|
+
written offer, valid for at least three years and valid for as
|
|
221
|
+
long as you offer spare parts or customer support for that
|
|
222
|
+
product model, to give anyone who possesses the object code
|
|
223
|
+
either (1) a copy of the Corresponding Source for all the
|
|
224
|
+
software in the product, packaged with the product at no charge;
|
|
225
|
+
or (2) access to copy the Corresponding Source from a network
|
|
226
|
+
server at no charge.
|
|
227
|
+
|
|
228
|
+
c) Convey individual copies of the object code with a copy of the
|
|
229
|
+
written offer to provide the Corresponding Source. This
|
|
230
|
+
alternative is allowed only occasionally and noncommercially, and
|
|
231
|
+
only if you received the object code with such an offer, in accord
|
|
232
|
+
with subsection 6b.
|
|
233
|
+
|
|
234
|
+
d) Convey the object code by offering access from a designated
|
|
235
|
+
place (gratis or for a charge), and offer equivalent access to
|
|
236
|
+
the Corresponding Source in the same way through the same place
|
|
237
|
+
at no further charge. You need not require recipients to copy
|
|
238
|
+
the Corresponding Source along with the object code. If the place
|
|
239
|
+
to copy the Corresponding Source is a network server, the
|
|
240
|
+
Corresponding Source may be on a different server (operated by
|
|
241
|
+
you or a third party) that supports equivalent copying
|
|
242
|
+
facilities, provided you maintain clear directions next to the
|
|
243
|
+
object code saying where to find the Corresponding Source.
|
|
244
|
+
Regardless of what server hosts the Corresponding Source, you
|
|
245
|
+
remain obligated to ensure that it is available for as long as
|
|
246
|
+
needed to satisfy these requirements.
|
|
247
|
+
|
|
248
|
+
e) Convey the object code using peer-to-peer transmission,
|
|
249
|
+
provided you inform other peers where the object code and
|
|
250
|
+
Corresponding Source of the work are being offered by other
|
|
251
|
+
third-party servers.
|
|
252
|
+
|
|
253
|
+
f) If the work has interactive user interfaces, each must display
|
|
254
|
+
Appropriate Legal Notices. However, if the Program has
|
|
255
|
+
interactive interfaces that do not display Appropriate Legal
|
|
256
|
+
Notices, your work need not make them do so.
|
|
257
|
+
|
|
258
|
+
A separable portion of the object code, whose source code is excluded
|
|
259
|
+
from the Corresponding Source as a System Library, need not be
|
|
260
|
+
included in the object code.
|
|
261
|
+
|
|
262
|
+
7. Additional Terms.
|
|
263
|
+
|
|
264
|
+
"Additional permissions" are terms that supplement the terms of this
|
|
265
|
+
License by making exceptions from one or more of its conditions.
|
|
266
|
+
Additional permissions that are applicable to the entire Program shall
|
|
267
|
+
be treated as though they were included in this License, to the extent
|
|
268
|
+
that they are valid under applicable law. If additional permissions
|
|
269
|
+
apply only to part of the Program, that part may be used separately
|
|
270
|
+
under those permissions, but the entire Program remains governed by
|
|
271
|
+
this License without regard to the additional permissions.
|
|
272
|
+
|
|
273
|
+
When you convey a copy of a covered work, you may at your option
|
|
274
|
+
remove any additional permissions from that copy, or from any part of
|
|
275
|
+
it. (Additional permissions may be written to require their own
|
|
276
|
+
removal in certain cases when you modify the work.) You may add
|
|
277
|
+
additional permissions for material you have added to a covered work,
|
|
278
|
+
provided that those additional permissions do not extend to any
|
|
279
|
+
portion of the work that you cause to be inserted into the source.
|
|
280
|
+
|
|
281
|
+
You may convey a covered work with the additional permission of your
|
|
282
|
+
choice. A copy of this License plus the additional permission must
|
|
283
|
+
be attached to every copy of the work you convey.
|
|
284
|
+
|
|
285
|
+
8. Termination.
|
|
286
|
+
|
|
287
|
+
You may not propagate or modify a covered work except as expressly
|
|
288
|
+
provided under this License. Any attempt otherwise to propagate or
|
|
289
|
+
modify it is void, and will automatically terminate your rights under
|
|
290
|
+
this License.
|
|
291
|
+
|
|
292
|
+
However, if you cease all violation of this License, then your license
|
|
293
|
+
from a particular copyright holder is reinstated (a) provisionally,
|
|
294
|
+
unless and until the copyright holder explicitly and finally terminates
|
|
295
|
+
your license, and (b) permanently, if the copyright holder fails to
|
|
296
|
+
notify you of the violation by some reasonable means prior to 60
|
|
297
|
+
days after the cessation.
|
|
298
|
+
|
|
299
|
+
Moreover, your license from a particular copyright holder is reinstated
|
|
300
|
+
permanently if the copyright holder notifies you of the violation by
|
|
301
|
+
some reasonable means, this is the first time you have received notice
|
|
302
|
+
of violation of this License (for any work) from that copyright
|
|
303
|
+
holder, and you cure the violation prior to 30 days after your
|
|
304
|
+
receipt of the notice.
|
|
305
|
+
|
|
306
|
+
Termination of your rights under this section does not terminate the
|
|
307
|
+
licenses of parties who have received copies or rights from you under
|
|
308
|
+
this License. If your rights have been terminated and not reinstated,
|
|
309
|
+
you are not entitled to reuse the material covered by this License.
|
|
310
|
+
|
|
311
|
+
9. License Not Granted.
|
|
312
|
+
|
|
313
|
+
You are not required to accept this License, since you have not
|
|
314
|
+
signed it. However, nothing else grants you permission to propagate or
|
|
315
|
+
modify the covered work or any derivative works. These actions are
|
|
316
|
+
prohibited by law if you do not accept this License. Therefore, by
|
|
317
|
+
modifying or propagating a covered work, you indicate your acceptance
|
|
318
|
+
of this License to do so.
|
|
319
|
+
|
|
320
|
+
10. Automatic Licensing of Downstream Recipients.
|
|
321
|
+
|
|
322
|
+
Each time you convey a covered work, the recipient automatically
|
|
323
|
+
receives a license from the original licensors, to run, modify and
|
|
324
|
+
propagate that work, subject to this License. You are not responsible
|
|
325
|
+
for enforcing compliance by third parties with this License.
|
|
326
|
+
|
|
327
|
+
An "entity transaction" is a transaction transferring control of an
|
|
328
|
+
organization, or substantially all assets of one, or subdividing an
|
|
329
|
+
organization, or merging organizations. If propagation of a covered
|
|
330
|
+
work results from an entity transaction, each party to that transaction
|
|
331
|
+
who receives a copy of the work also receives whatever licenses to the
|
|
332
|
+
work the party's predecessor in interest had or could give, and may
|
|
333
|
+
rely on the "Corresponding Source" of the work from the predecessor
|
|
334
|
+
in interest, if the predecessor has it and can get it with reasonable
|
|
335
|
+
efforts.
|
|
336
|
+
|
|
337
|
+
You may not impose any further restrictions on the exercise of the
|
|
338
|
+
rights granted or affirmed under this License. For example, you may
|
|
339
|
+
not impose a license fee, royalty, or other charge for exercise of
|
|
340
|
+
rights granted under this License, and you may not initiate litigation
|
|
341
|
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
342
|
+
any patent claim is infringed by making, using, selling, offering for
|
|
343
|
+
sale, or importing the Program or any portion of it.
|
|
344
|
+
|
|
345
|
+
11. Patents.
|
|
346
|
+
|
|
347
|
+
A "contributor" is a copyright holder who authorizes use under this
|
|
348
|
+
License of the Program or a work on which the Program is based. The
|
|
349
|
+
work thus licensed is called the contributor's "contributor version".
|
|
350
|
+
|
|
351
|
+
A contributor's "essential patent claims" are all patent claims owned
|
|
352
|
+
or controlled by the contributor, that are infringed by some manner,
|
|
353
|
+
permitted by this License, of making, using, or selling its
|
|
354
|
+
contributor version, but do not include claims that would be
|
|
355
|
+
infringed only as a consequence of further modification of the
|
|
356
|
+
contributor version.
|
|
357
|
+
|
|
358
|
+
For purposes of this definition, "control" includes the right to
|
|
359
|
+
grant patent sublicenses in a manner consistent with the requirements
|
|
360
|
+
of this License.
|
|
361
|
+
|
|
362
|
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
363
|
+
patent license under the contributor's essential patent claims, to
|
|
364
|
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
365
|
+
propagate the contributor version.
|
|
366
|
+
|
|
367
|
+
In the following three paragraphs, a "patent license" is any express
|
|
368
|
+
agreement or commitment, however denominated, not to enforce a patent
|
|
369
|
+
(such as an express permission to practice a patent or covenant not to
|
|
370
|
+
sue for infringement). To "grant" such a patent license to a party
|
|
371
|
+
means to make such an agreement or commitment not to enforce a
|
|
372
|
+
patent against the party.
|
|
373
|
+
|
|
374
|
+
If you convey a covered work, knowingly relying on a patent license,
|
|
375
|
+
and the Corresponding Source is not available for anyone to copy,
|
|
376
|
+
free of charge and under the terms of this License, through a
|
|
377
|
+
publicly available network server or other readily accessible means,
|
|
378
|
+
then you must either (1) cause the Corresponding Source to be so
|
|
379
|
+
available, or (2) arrange to deprive yourself of the benefit of the
|
|
380
|
+
patent license for this particular work, or (3) arrange, in a manner
|
|
381
|
+
consistent with the requirements of this License, to extend the
|
|
382
|
+
patent license to downstream recipients. "Knowingly relying" means
|
|
383
|
+
you have actual knowledge that, but for the patent license, your
|
|
384
|
+
conveying the covered work in a country, or your recipient's use of
|
|
385
|
+
the covered work in a country, would infringe one or more identifiable
|
|
386
|
+
patents in that country that you have reason to think are essential.
|
|
387
|
+
|
|
388
|
+
If you are a software vendor, patent licensing under this section may
|
|
389
|
+
be important for your business. To prevent this from happening, this
|
|
390
|
+
section is intended to make it clear that any patent license granted
|
|
391
|
+
herein only covers your contributions and does not extend to works
|
|
392
|
+
combining your contributions with those of others.
|
|
393
|
+
|
|
394
|
+
If you convey a covered work under this section, or with a work or
|
|
395
|
+
anModification that is a covered work under this section, in a
|
|
396
|
+
country or your recipient's use of the covered work in a country,
|
|
397
|
+
you may not grant patent licenses for that work under this License.
|
|
398
|
+
|
|
399
|
+
12. No Sublicensing.
|
|
400
|
+
|
|
401
|
+
Each time you convey a covered work, the recipient automatically
|
|
402
|
+
receives a license from the original licensors, to copy, distribute,
|
|
403
|
+
modify or otherwise deal with the covered work under this License.
|
|
404
|
+
You may not offer or impose any terms on the covered work that
|
|
405
|
+
restrict or alter the recipient's exercise of the rights granted
|
|
406
|
+
or affirmed under this License, including any translation of this
|
|
407
|
+
License into another language. You are responsible for ensuring that
|
|
408
|
+
if you modify the covered work you do not introduce additional
|
|
409
|
+
terms that require the covered work or any derivative work to reveal
|
|
410
|
+
source code that is not part of the covered work.
|
|
411
|
+
|
|
412
|
+
13. Remote Network Interaction.
|
|
413
|
+
|
|
414
|
+
If you use the Program to provide a network service to users over
|
|
415
|
+
a computer network, the Corresponding Source of the offered service
|
|
416
|
+
must be made available. This requirement applies both to the service
|
|
417
|
+
itself and to any derivative works you create that provide the same
|
|
418
|
+
functionality through the network.
|
|
419
|
+
|
|
420
|
+
For example, if you run a web server that hosts an instance of this
|
|
421
|
+
Program or serves its output, you must make the Corresponding Source
|
|
422
|
+
available to users of your service. You must also provide clear
|
|
423
|
+
instructions on how to obtain the Corresponding Source, including
|
|
424
|
+
any modifications you've made to the Program.
|
|
425
|
+
|
|
426
|
+
14. Revised Versions of this License.
|
|
427
|
+
|
|
428
|
+
The Free Software Foundation may publish revised and/or new versions
|
|
429
|
+
of the GNU Affero General Public License from time to time. Such
|
|
430
|
+
new versions will be similar in spirit to the present version, but
|
|
431
|
+
may differ in detail to address new problems or concerns.
|
|
432
|
+
|
|
433
|
+
Each version is given a distinguishing version number. If the
|
|
434
|
+
Program specifies that a designated numbered version of this License
|
|
435
|
+
"or any later version" applies to it, you have the option of
|
|
436
|
+
following the terms and conditions either of that designated version
|
|
437
|
+
or of any later version published by the Free Software Foundation.
|
|
438
|
+
If the Program does not specify a version number of this License,
|
|
439
|
+
you may choose any version ever published by the Free Software
|
|
440
|
+
Foundation.
|
|
441
|
+
|
|
442
|
+
If the Program specifies that a proxy can decide which future
|
|
443
|
+
versions of this License can be used, that proxy's public statement
|
|
444
|
+
of acceptance of a version permanently authorizes you to choose
|
|
445
|
+
that version for the Program.
|
|
446
|
+
|
|
447
|
+
Later license versions may give you additional or different
|
|
448
|
+
permissions. However, no additional obligations are imposed on any
|
|
449
|
+
author or copyright holder as a result of your choosing to follow a
|
|
450
|
+
later version.
|
|
451
|
+
|
|
452
|
+
15. Disclaimer of Warranty.
|
|
453
|
+
|
|
454
|
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
455
|
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
456
|
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
|
|
457
|
+
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
|
|
458
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
459
|
+
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
|
460
|
+
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
|
461
|
+
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
|
462
|
+
CORRECTION.
|
|
463
|
+
|
|
464
|
+
16. Limitation of Liability.
|
|
465
|
+
|
|
466
|
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
|
467
|
+
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES
|
|
468
|
+
AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
|
|
469
|
+
DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
|
470
|
+
DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
|
|
471
|
+
(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
|
|
472
|
+
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE
|
|
473
|
+
OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
|
|
474
|
+
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
475
|
+
DAMAGES.
|
|
476
|
+
|
|
477
|
+
17. Interpretation of Sections 15 and 16.
|
|
478
|
+
|
|
479
|
+
If the disclaimer of warranty and limitation of liability provided
|
|
480
|
+
above cannot be given local legal effect according to their terms,
|
|
481
|
+
reviewing courts shall apply local law that most closely approximates
|
|
482
|
+
an absolute waiver of all civil liability in connection with the
|
|
483
|
+
Program, unless a warranty or assumption of liability accompanies a
|
|
484
|
+
copy of the Program in return for a fee.
|
|
485
|
+
|
|
486
|
+
END OF TERMS AND CONDITIONS
|