| 1 |
package speechrecorder; |
|---|
| 2 |
|
|---|
| 3 |
public class License { |
|---|
| 4 |
private String licenseFAQ; |
|---|
| 5 |
private String licenseNotice; |
|---|
| 6 |
private String VFlicenseNotice; |
|---|
| 7 |
private String gplLicense; |
|---|
| 8 |
|
|---|
| 9 |
public License() { |
|---|
| 10 |
licenseFAQ = "A. What is Copyright?:"+ System.getProperty("line.separator") + System.getProperty("line.separator") |
|---|
| 11 |
+ "Copyright is a set of exclusive rights regulating the use of a particular expression " + System.getProperty("line.separator") |
|---|
| 12 |
+ "of an idea. At its most general, it is literally 'the right to copy' an original creation." + System.getProperty("line.separator") |
|---|
| 13 |
+ "By default, only the creator of a work has the right to copy or modify that work. " + System.getProperty("line.separator") |
|---|
| 14 |
+ "For more information, see <http://en.wikipedia.org/wiki/Copyright>." + System.getProperty("line.separator") |
|---|
| 15 |
+ System.getProperty("line.separator") |
|---|
| 16 |
+ "B. What is an Assignment of Copyright?:"+ System.getProperty("line.separator") + System.getProperty("line.separator") |
|---|
| 17 |
+ "An assignment of Copyright is a transfer of the copyright in a work from one party " + System.getProperty("line.separator") |
|---|
| 18 |
+ "to another. For more information, see " + System.getProperty("line.separator") |
|---|
| 19 |
+ "<http://en.wikipedia.org/wiki/Copyright#Transfer_and_licensing>." + System.getProperty("line.separator") |
|---|
| 20 |
+ System.getProperty("line.separator") |
|---|
| 21 |
+ "C. What is a License?:"+ System.getProperty("line.separator") + System.getProperty("line.separator") |
|---|
| 22 |
+ "A license is a grant of permission to do something one could not otherwise do. " + System.getProperty("line.separator") |
|---|
| 23 |
+ "Without a license, a third party cannot copy, modify or distribute something protected by" + System.getProperty("line.separator") |
|---|
| 24 |
+ "Copyright. However, the creator of a work can give a third party a license permitting them " + System.getProperty("line.separator") |
|---|
| 25 |
+ "to copy, modify or distribute that work." + System.getProperty("line.separator") |
|---|
| 26 |
+ "For more information, see <http://en.wikipedia.org/wiki/License>." + System.getProperty("line.separator") |
|---|
| 27 |
+ System.getProperty("line.separator") |
|---|
| 28 |
+ "D. What is GPL?:"+ System.getProperty("line.separator") + System.getProperty("line.separator") |
|---|
| 29 |
+ "GPL refers to a type of open source license called the 'GNU General Public License'." + System.getProperty("line.separator") |
|---|
| 30 |
+ "In general terms, Copyright protects a *creator's* right to control copies and changes to" + System.getProperty("line.separator") |
|---|
| 31 |
+ "a work, whereas the GPL license protects a *user's* right to copy and change a work." + System.getProperty("line.separator") |
|---|
| 32 |
+ System.getProperty("line.separator"); |
|---|
| 33 |
|
|---|
| 34 |
licenseNotice = |
|---|
| 35 |
"These files are free software: you can redistribute them and/or modify" + System.getProperty("line.separator") |
|---|
| 36 |
+ "them under the terms of the GNU General Public License as published by" + System.getProperty("line.separator") |
|---|
| 37 |
+ "the Free Software Foundation, either version 3 of the License, or" + System.getProperty("line.separator") |
|---|
| 38 |
+ "(at your option) any later version." + System.getProperty("line.separator") |
|---|
| 39 |
+ System.getProperty("line.separator") |
|---|
| 40 |
+ "These files are distributed in the hope that they will be useful," + System.getProperty("line.separator") |
|---|
| 41 |
+ "but WITHOUT ANY WARRANTY; without even the implied warranty of" + System.getProperty("line.separator") |
|---|
| 42 |
+ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" + System.getProperty("line.separator") |
|---|
| 43 |
+ "GNU General Public License for more details." + System.getProperty("line.separator") |
|---|
| 44 |
+ System.getProperty("line.separator") |
|---|
| 45 |
+ "You should have received a copy of the GNU General Public License" + System.getProperty("line.separator") |
|---|
| 46 |
+ "along with these files. If not, see <http://www.gnu.org/licenses/>." + System.getProperty("line.separator") |
|---|
| 47 |
+ System.getProperty("line.separator"); |
|---|
| 48 |
|
|---|
| 49 |
VFlicenseNotice = |
|---|
| 50 |
"VoxForge Speech Submission Application v0.1.4" + System.getProperty("line.separator") |
|---|
| 51 |
+ "============================" + System.getProperty("line.separator") |
|---|
| 52 |
+ "Allows a user to record their speech and upload it to the VoxForge server" + System.getProperty("line.separator") |
|---|
| 53 |
+ "so that it can be incorporated into the VoxForge speech corpus and used" + System.getProperty("line.separator") |
|---|
| 54 |
+ "in the creation of GPL acoustic models." + System.getProperty("line.separator") |
|---|
| 55 |
+ System.getProperty("line.separator") |
|---|
| 56 |
+ "Notice:" + System.getProperty("line.separator") |
|---|
| 57 |
+ "====" + System.getProperty("line.separator") |
|---|
| 58 |
+ "Copyright (C) 2007 VoxForge" + System.getProperty("line.separator") |
|---|
| 59 |
+ System.getProperty("line.separator") |
|---|
| 60 |
+ "This program is free software: you can redistribute it and/or modify" + System.getProperty("line.separator") |
|---|
| 61 |
+ "them under the terms of the GNU General Public License as published by" + System.getProperty("line.separator") |
|---|
| 62 |
+ "the Free Software Foundation, either version 3 of the License, or" + System.getProperty("line.separator") |
|---|
| 63 |
+ "(at your option) any later version." + System.getProperty("line.separator") |
|---|
| 64 |
+ System.getProperty("line.separator") |
|---|
| 65 |
+ "This program is distributed in the hope that it will be useful," + System.getProperty("line.separator") |
|---|
| 66 |
+ "but WITHOUT ANY WARRANTY; without even the implied warranty of" + System.getProperty("line.separator") |
|---|
| 67 |
+ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" + System.getProperty("line.separator") |
|---|
| 68 |
+ "GNU General Public License for more details." + System.getProperty("line.separator") |
|---|
| 69 |
+ System.getProperty("line.separator") |
|---|
| 70 |
+ "You should have received a copy of the GNU General Public License" + System.getProperty("line.separator") |
|---|
| 71 |
+ "along with these files. If not, see <http://www.gnu.org/licenses/>." + System.getProperty("line.separator") |
|---|
| 72 |
+ System.getProperty("line.separator") |
|---|
| 73 |
+ "Acknowledgments:" + System.getProperty("line.separator") |
|---|
| 74 |
+ "===========" + System.getProperty("line.separator") |
|---|
| 75 |
+ "This Java Applet incorporates open-source Java code"+ System.getProperty("line.separator") |
|---|
| 76 |
+ "from other projects:"+ System.getProperty("line.separator") |
|---|
| 77 |
+ " - MoodleSpeex, (c) Dan Stowell 2006."+ System.getProperty("line.separator") |
|---|
| 78 |
+ " - Postlet HTTP uploader, (c) Simon Rycroft"+ System.getProperty("line.separator") |
|---|
| 79 |
+ " - JavaSoundDemo, (c) Sun Microsystems"+ System.getProperty("line.separator") |
|---|
| 80 |
+ "Please see the licences stored in the \"copyrights\" folder in the " + System.getProperty("line.separator") |
|---|
| 81 |
+ "speechsubmission jar file for more details."+ System.getProperty("line.separator") |
|---|
| 82 |
+ System.getProperty("line.separator") |
|---|
| 83 |
+ "The English prompts are from the FestVox CMU_ARCTIC speech synthesis database."+ System.getProperty("line.separator") |
|---|
| 84 |
+ "(the utterances were selected from out-of-copyright texts from Project Gutenberg)"+ System.getProperty("line.separator") |
|---|
| 85 |
+ System.getProperty("line.separator") |
|---|
| 86 |
+ "Full GPL License:" + System.getProperty("line.separator") |
|---|
| 87 |
+ "=========" ; |
|---|
| 88 |
|
|---|
| 89 |
gplLicense = " GNU GENERAL PUBLIC LICENSE" + System.getProperty("line.separator") |
|---|
| 90 |
+ " Version 3, 29 June 2007" + System.getProperty("line.separator") |
|---|
| 91 |
+ System.getProperty("line.separator") |
|---|
| 92 |
+ " Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>" + System.getProperty("line.separator") |
|---|
| 93 |
+ " Everyone is permitted to copy and distribute verbatim copies" + System.getProperty("line.separator") |
|---|
| 94 |
+ " of this license document, but changing it is not allowed." + System.getProperty("line.separator") |
|---|
| 95 |
+ System.getProperty("line.separator") |
|---|
| 96 |
+ " Preamble" + System.getProperty("line.separator") |
|---|
| 97 |
+ System.getProperty("line.separator") |
|---|
| 98 |
+ " The GNU General Public License is a free, copyleft license for" + System.getProperty("line.separator") |
|---|
| 99 |
+ "software and other kinds of works." + System.getProperty("line.separator") |
|---|
| 100 |
+ System.getProperty("line.separator") |
|---|
| 101 |
+ " The licenses for most software and other practical works are designed" + System.getProperty("line.separator") |
|---|
| 102 |
+ "to take away your freedom to share and change the works. By contrast," + System.getProperty("line.separator") |
|---|
| 103 |
+ "the GNU General Public License is intended to guarantee your freedom to" + System.getProperty("line.separator") |
|---|
| 104 |
+ "share and change all versions of a program--to make sure it remains free" + System.getProperty("line.separator") |
|---|
| 105 |
+ "software for all its users. We, the Free Software Foundation, use the" + System.getProperty("line.separator") |
|---|
| 106 |
+ "GNU General Public License for most of our software; it applies also to" + System.getProperty("line.separator") |
|---|
| 107 |
+ "any other work released this way by its authors. You can apply it to" + System.getProperty("line.separator") |
|---|
| 108 |
+ "your programs, too." + System.getProperty("line.separator") |
|---|
| 109 |
+ System.getProperty("line.separator") |
|---|
| 110 |
+ " When we speak of free software, we are referring to freedom, not" + System.getProperty("line.separator") |
|---|
| 111 |
+ "price. Our General Public Licenses are designed to make sure that you" + System.getProperty("line.separator") |
|---|
| 112 |
+ "have the freedom to distribute copies of free software (and charge for" + System.getProperty("line.separator") |
|---|
| 113 |
+ "them if you wish), that you receive source code or can get it if you" + System.getProperty("line.separator") |
|---|
| 114 |
+ "want it, that you can change the software or use pieces of it in new" + System.getProperty("line.separator") |
|---|
| 115 |
+ "free programs, and that you know you can do these things." + System.getProperty("line.separator") |
|---|
| 116 |
+ System.getProperty("line.separator") |
|---|
| 117 |
+ " To protect your rights, we need to prevent others from denying you" + System.getProperty("line.separator") |
|---|
| 118 |
+ "these rights or asking you to surrender the rights. Therefore, you have" + System.getProperty("line.separator") |
|---|
| 119 |
+ "certain responsibilities if you distribute copies of the software, or if" + System.getProperty("line.separator") |
|---|
| 120 |
+ "you modify it: responsibilities to respect the freedom of others." + System.getProperty("line.separator") |
|---|
| 121 |
+ System.getProperty("line.separator") |
|---|
| 122 |
+ " For example, if you distribute copies of such a program, whether" + System.getProperty("line.separator") |
|---|
| 123 |
+ "gratis or for a fee, you must pass on to the recipients the same" + System.getProperty("line.separator") |
|---|
| 124 |
+ "freedoms that you received. You must make sure that they, too, receive" + System.getProperty("line.separator") |
|---|
| 125 |
+ "or can get the source code. And you must show them these terms so they" + System.getProperty("line.separator") |
|---|
| 126 |
+ "know their rights." + System.getProperty("line.separator") |
|---|
| 127 |
+ System.getProperty("line.separator") |
|---|
| 128 |
+ " Developers that use the GNU GPL protect your rights with two steps:" + System.getProperty("line.separator") |
|---|
| 129 |
+ "(1) assert copyright on the software, and (2) offer you this License" + System.getProperty("line.separator") |
|---|
| 130 |
+ "giving you legal permission to copy, distribute and/or modify it." + System.getProperty("line.separator") |
|---|
| 131 |
+ System.getProperty("line.separator") |
|---|
| 132 |
+ " For the developers' and authors' protection, the GPL clearly explains" + System.getProperty("line.separator") |
|---|
| 133 |
+ "that there is no warranty for this free software. For both users' and" + System.getProperty("line.separator") |
|---|
| 134 |
+ "authors' sake, the GPL requires that modified versions be marked as" + System.getProperty("line.separator") |
|---|
| 135 |
+ "changed, so that their problems will not be attributed erroneously to" + System.getProperty("line.separator") |
|---|
| 136 |
+ "authors of previous versions." + System.getProperty("line.separator") |
|---|
| 137 |
+ System.getProperty("line.separator") |
|---|
| 138 |
+ " Some devices are designed to deny users access to install or run" + System.getProperty("line.separator") |
|---|
| 139 |
+ "modified versions of the software inside them, although the manufacturer" + System.getProperty("line.separator") |
|---|
| 140 |
+ "can do so. This is fundamentally incompatible with the aim of" + System.getProperty("line.separator") |
|---|
| 141 |
+ "protecting users' freedom to change the software. The systematic" + System.getProperty("line.separator") |
|---|
| 142 |
+ "pattern of such abuse occurs in the area of products for individuals to" + System.getProperty("line.separator") |
|---|
| 143 |
+ "use, which is precisely where it is most unacceptable. Therefore, we" + System.getProperty("line.separator") |
|---|
| 144 |
+ "have designed this version of the GPL to prohibit the practice for those" + System.getProperty("line.separator") |
|---|
| 145 |
+ "products. If such problems arise substantially in other domains, we" + System.getProperty("line.separator") |
|---|
| 146 |
+ "stand ready to extend this provision to those domains in future versions" + System.getProperty("line.separator") |
|---|
| 147 |
+ "of the GPL, as needed to protect the freedom of users." + System.getProperty("line.separator") |
|---|
| 148 |
+ System.getProperty("line.separator") |
|---|
| 149 |
+ " Finally, every program is threatened constantly by software patents." + System.getProperty("line.separator") |
|---|
| 150 |
+ "States should not allow patents to restrict development and use of" + System.getProperty("line.separator") |
|---|
| 151 |
+ "software on general-purpose computers, but in those that do, we wish to" + System.getProperty("line.separator") |
|---|
| 152 |
+ "avoid the special danger that patents applied to a free program could" + System.getProperty("line.separator") |
|---|
| 153 |
+ "make it effectively proprietary. To prevent this, the GPL assures that" + System.getProperty("line.separator") |
|---|
| 154 |
+ "patents cannot be used to render the program non-free." + System.getProperty("line.separator") |
|---|
| 155 |
+ System.getProperty("line.separator") |
|---|
| 156 |
+ " The precise terms and conditions for copying, distribution and" + System.getProperty("line.separator") |
|---|
| 157 |
+ "modification follow." + System.getProperty("line.separator") |
|---|
| 158 |
+ System.getProperty("line.separator") |
|---|
| 159 |
+ " TERMS AND CONDITIONS" + System.getProperty("line.separator") |
|---|
| 160 |
+ System.getProperty("line.separator") |
|---|
| 161 |
+ " 0. Definitions." + System.getProperty("line.separator") |
|---|
| 162 |
+ System.getProperty("line.separator") |
|---|
| 163 |
+ " \"This License\" refers to version 3 of the GNU General Public License." + System.getProperty("line.separator") |
|---|
| 164 |
+ System.getProperty("line.separator") |
|---|
| 165 |
+ " \"Copyright\" also means copyright-like laws that apply to other kinds of" + System.getProperty("line.separator") |
|---|
| 166 |
+ "works, such as semiconductor masks." + System.getProperty("line.separator") |
|---|
| 167 |
+ System.getProperty("line.separator") |
|---|
| 168 |
+ " \"The Program\" refers to any copyrightable work licensed under this" + System.getProperty("line.separator") |
|---|
| 169 |
+ "License. Each licensee is addressed as \"you\". \"Licensees\" and" + System.getProperty("line.separator") |
|---|
| 170 |
+ "\"recipients\" may be individuals or organizations." + System.getProperty("line.separator") |
|---|
| 171 |
+ System.getProperty("line.separator") |
|---|
| 172 |
+ " To \"modify\" a work means to copy from or adapt all or part of the work" + System.getProperty("line.separator") |
|---|
| 173 |
+ "in a fashion requiring copyright permission, other than the making of an" + System.getProperty("line.separator") |
|---|
| 174 |
+ "exact copy. The resulting work is called a \"modified version\" of the" + System.getProperty("line.separator") |
|---|
| 175 |
+ "earlier work or a work \"based on\" the earlier work." + System.getProperty("line.separator") |
|---|
| 176 |
+ System.getProperty("line.separator") |
|---|
| 177 |
+ " A \"covered work\" means either the unmodified Program or a work based" + System.getProperty("line.separator") |
|---|
| 178 |
+ "on the Program." + System.getProperty("line.separator") |
|---|
| 179 |
+ System.getProperty("line.separator") |
|---|
| 180 |
+ " To \"propagate\" a work means to do anything with it that, without" + System.getProperty("line.separator") |
|---|
| 181 |
+ "permission, would make you directly or secondarily liable for" + System.getProperty("line.separator") |
|---|
| 182 |
+ "infringement under applicable copyright law, except executing it on a" + System.getProperty("line.separator") |
|---|
| 183 |
+ "computer or modifying a private copy. Propagation includes copying," + System.getProperty("line.separator") |
|---|
| 184 |
+ "distribution (with or without modification), making available to the" + System.getProperty("line.separator") |
|---|
| 185 |
+ "public, and in some countries other activities as well." + System.getProperty("line.separator") |
|---|
| 186 |
+ System.getProperty("line.separator") |
|---|
| 187 |
+ " To \"convey\" a work means any kind of propagation that enables other" + System.getProperty("line.separator") |
|---|
| 188 |
+ "parties to make or receive copies. Mere interaction with a user through" + System.getProperty("line.separator") |
|---|
| 189 |
+ "a computer network, with no transfer of a copy, is not conveying." + System.getProperty("line.separator") |
|---|
| 190 |
+ System.getProperty("line.separator") |
|---|
| 191 |
+ " An interactive user interface displays \"Appropriate Legal Notices\"" + System.getProperty("line.separator") |
|---|
| 192 |
+ "to the extent that it includes a convenient and prominently visible" + System.getProperty("line.separator") |
|---|
| 193 |
+ "feature that (1) displays an appropriate copyright notice, and (2)" + System.getProperty("line.separator") |
|---|
| 194 |
+ "tells the user that there is no warranty for the work (except to the" + System.getProperty("line.separator") |
|---|
| 195 |
+ "extent that warranties are provided), that licensees may convey the" + System.getProperty("line.separator") |
|---|
| 196 |
+ "work under this License, and how to view a copy of this License. If" + System.getProperty("line.separator") |
|---|
| 197 |
+ "the interface presents a list of user commands or options, such as a" + System.getProperty("line.separator") |
|---|
| 198 |
+ "menu, a prominent item in the list meets this criterion." + System.getProperty("line.separator") |
|---|
| 199 |
+ System.getProperty("line.separator") |
|---|
| 200 |
+ " 1. Source Code." + System.getProperty("line.separator") |
|---|
| 201 |
+ System.getProperty("line.separator") |
|---|
| 202 |
+ " The \"source code\" for a work means the preferred form of the work" + System.getProperty("line.separator") |
|---|
| 203 |
+ "for making modifications to it. \"Object code\" means any non-source" + System.getProperty("line.separator") |
|---|
| 204 |
+ "form of a work." + System.getProperty("line.separator") |
|---|
| 205 |
+ System.getProperty("line.separator") |
|---|
| 206 |
+ " A \"Standard Interface\" means an interface that either is an official" + System.getProperty("line.separator") |
|---|
| 207 |
+ "standard defined by a recognized standards body, or, in the case of" + System.getProperty("line.separator") |
|---|
| 208 |
+ "interfaces specified for a particular programming language, one that" + System.getProperty("line.separator") |
|---|
| 209 |
+ "is widely used among developers working in that language." + System.getProperty("line.separator") |
|---|
| 210 |
+ System.getProperty("line.separator") |
|---|
| 211 |
+ " The \"System Libraries\" of an executable work include anything, other" + System.getProperty("line.separator") |
|---|
| 212 |
+ "than the work as a whole, that (a) is included in the normal form of" + System.getProperty("line.separator") |
|---|
| 213 |
+ "packaging a Major Component, but which is not part of that Major" + System.getProperty("line.separator") |
|---|
| 214 |
+ "Component, and (b) serves only to enable use of the work with that" + System.getProperty("line.separator") |
|---|
| 215 |
+ "Major Component, or to implement a Standard Interface for which an" + System.getProperty("line.separator") |
|---|
| 216 |
+ "implementation is available to the public in source code form. A" + System.getProperty("line.separator") |
|---|
| 217 |
+ "\"Major Component\", in this context, means a major essential component" + System.getProperty("line.separator") |
|---|
| 218 |
+ "(kernel, window system, and so on) of the specific operating system" + System.getProperty("line.separator") |
|---|
| 219 |
+ "(if any) on which the executable work runs, or a compiler used to" + System.getProperty("line.separator") |
|---|
| 220 |
+ "produce the work, or an object code interpreter used to run it." + System.getProperty("line.separator") |
|---|
| 221 |
+ System.getProperty("line.separator") |
|---|
| 222 |
+ " The \"Corresponding Source\" for a work in object code form means all" + System.getProperty("line.separator") |
|---|
| 223 |
+ "the source code needed to generate, install, and (for an executable" + System.getProperty("line.separator") |
|---|
| 224 |
+ "work) run the object code and to modify the work, including scripts to" + System.getProperty("line.separator") |
|---|
| 225 |
+ "control those activities. However, it does not include the work's" + System.getProperty("line.separator") |
|---|
| 226 |
+ "System Libraries, or general-purpose tools or generally available free" + System.getProperty("line.separator") |
|---|
| 227 |
+ "programs which are used unmodified in performing those activities but" + System.getProperty("line.separator") |
|---|
| 228 |
+ "which are not part of the work. For example, Corresponding Source" + System.getProperty("line.separator") |
|---|
| 229 |
+ "includes interface definition files associated with source files for" + System.getProperty("line.separator") |
|---|
| 230 |
+ "the work, and the source code for shared libraries and dynamically" + System.getProperty("line.separator") |
|---|
| 231 |
+ "linked subprograms that the work is specifically designed to require," + System.getProperty("line.separator") |
|---|
| 232 |
+ "such as by intimate data communication or control flow between those" + System.getProperty("line.separator") |
|---|
| 233 |
+ "subprograms and other parts of the work." + System.getProperty("line.separator") |
|---|
| 234 |
+ System.getProperty("line.separator") |
|---|
| 235 |
+ " The Corresponding Source need not include anything that users" + System.getProperty("line.separator") |
|---|
| 236 |
+ "can regenerate automatically from other parts of the Corresponding" + System.getProperty("line.separator") |
|---|
| 237 |
+ "Source." + System.getProperty("line.separator") |
|---|
| 238 |
+ System.getProperty("line.separator") |
|---|
| 239 |
+ " The Corresponding Source for a work in source code form is that" + System.getProperty("line.separator") |
|---|
| 240 |
+ "same work." + System.getProperty("line.separator") |
|---|
| 241 |
+ System.getProperty("line.separator") |
|---|
| 242 |
+ " 2. Basic Permissions." + System.getProperty("line.separator") |
|---|
| 243 |
+ System.getProperty("line.separator") |
|---|
| 244 |
+ " All rights granted under this License are granted for the term of" + System.getProperty("line.separator") |
|---|
| 245 |
+ "copyright on the Program, and are irrevocable provided the stated" + System.getProperty("line.separator") |
|---|
| 246 |
+ "conditions are met. This License explicitly affirms your unlimited" + System.getProperty("line.separator") |
|---|
| 247 |
+ "permission to run the unmodified Program. The output from running a" + System.getProperty("line.separator") |
|---|
| 248 |
+ "covered work is covered by this License only if the output, given its" + System.getProperty("line.separator") |
|---|
| 249 |
+ "content, constitutes a covered work. This License acknowledges your" + System.getProperty("line.separator") |
|---|
| 250 |
+ "rights of fair use or other equivalent, as provided by copyright law." + System.getProperty("line.separator") |
|---|
| 251 |
+ System.getProperty("line.separator") |
|---|
| 252 |
+ " You may make, run and propagate covered works that you do not" + System.getProperty("line.separator") |
|---|
| 253 |
+ "convey, without conditions so long as your license otherwise remains" + System.getProperty("line.separator") |
|---|
| 254 |
+ "in force. You may convey covered works to others for the sole purpose" + System.getProperty("line.separator") |
|---|
| 255 |
+ "of having them make modifications exclusively for you, or provide you" + System.getProperty("line.separator") |
|---|
| 256 |
+ "with facilities for running those works, provided that you comply with" + System.getProperty("line.separator") |
|---|
| 257 |
+ "the terms of this License in conveying all material for which you do" + System.getProperty("line.separator") |
|---|
| 258 |
+ "not control copyright. Those thus making or running the covered works" + System.getProperty("line.separator") |
|---|
| 259 |
+ "for you must do so exclusively on your behalf, under your direction" + System.getProperty("line.separator") |
|---|
| 260 |
+ "and control, on terms that prohibit them from making any copies of" + System.getProperty("line.separator") |
|---|
| 261 |
+ "your copyrighted material outside their relationship with you." + System.getProperty("line.separator") |
|---|
| 262 |
+ System.getProperty("line.separator") |
|---|
| 263 |
+ " Conveying under any other circumstances is permitted solely under" + System.getProperty("line.separator") |
|---|
| 264 |
+ "the conditions stated below. Sublicensing is not allowed; section 10" + System.getProperty("line.separator") |
|---|
| 265 |
+ "makes it unnecessary." + System.getProperty("line.separator") |
|---|
| 266 |
+ System.getProperty("line.separator") |
|---|
| 267 |
+ " 3. Protecting Users' Legal Rights From Anti-Circumvention Law." + System.getProperty("line.separator") |
|---|
| 268 |
+ System.getProperty("line.separator") |
|---|
| 269 |
+ " No covered work shall be deemed part of an effective technological" + System.getProperty("line.separator") |
|---|
| 270 |
+ "measure under any applicable law fulfilling obligations under article" + System.getProperty("line.separator") |
|---|
| 271 |
+ "11 of the WIPO copyright treaty adopted on 20 December 1996, or" + System.getProperty("line.separator") |
|---|
| 272 |
+ "similar laws prohibiting or restricting circumvention of such" + System.getProperty("line.separator") |
|---|
| 273 |
+ "measures." + System.getProperty("line.separator") |
|---|
| 274 |
+ System.getProperty("line.separator") |
|---|
| 275 |
+ " When you convey a covered work, you waive any legal power to forbid" + System.getProperty("line.separator") |
|---|
| 276 |
+ "circumvention of technological measures to the extent such circumvention" + System.getProperty("line.separator") |
|---|
| 277 |
+ "is effected by exercising rights under this License with respect to" + System.getProperty("line.separator") |
|---|
| 278 |
+ "the covered work, and you disclaim any intention to limit operation or" + System.getProperty("line.separator") |
|---|
| 279 |
+ "modification of the work as a means of enforcing, against the work's" + System.getProperty("line.separator") |
|---|
| 280 |
+ "users, your or third parties' legal rights to forbid circumvention of" + System.getProperty("line.separator") |
|---|
| 281 |
+ "technological measures." + System.getProperty("line.separator") |
|---|
| 282 |
+ System.getProperty("line.separator") |
|---|
| 283 |
+ " 4. Conveying Verbatim Copies." + System.getProperty("line.separator") |
|---|
| 284 |
+ System.getProperty("line.separator") |
|---|
| 285 |
+ " You may convey verbatim copies of the Program's source code as you" + System.getProperty("line.separator") |
|---|
| 286 |
+ "receive it, in any medium, provided that you conspicuously and" + System.getProperty("line.separator") |
|---|
| 287 |
+ "appropriately publish on each copy an appropriate copyright notice;" + System.getProperty("line.separator") |
|---|
| 288 |
+ "keep intact all notices stating that this License and any" + System.getProperty("line.separator") |
|---|
| 289 |
+ "non-permissive terms added in accord with section 7 apply to the code;" + System.getProperty("line.separator") |
|---|
| 290 |
+ "keep intact all notices of the absence of any warranty; and give all" + System.getProperty("line.separator") |
|---|
| 291 |
+ "recipients a copy of this License along with the Program." + System.getProperty("line.separator") |
|---|
| 292 |
+ System.getProperty("line.separator") |
|---|
| 293 |
+ " You may charge any price or no price for each copy that you convey," + System.getProperty("line.separator") |
|---|
| 294 |
+ "and you may offer support or warranty protection for a fee." + System.getProperty("line.separator") |
|---|
| 295 |
+ System.getProperty("line.separator") |
|---|
| 296 |
+ " 5. Conveying Modified Source Versions." + System.getProperty("line.separator") |
|---|
| 297 |
+ System.getProperty("line.separator") |
|---|
| 298 |
+ " You may convey a work based on the Program, or the modifications to" + System.getProperty("line.separator") |
|---|
| 299 |
+ "produce it from the Program, in the form of source code under the" + System.getProperty("line.separator") |
|---|
| 300 |
+ "terms of section 4, provided that you also meet all of these conditions:" + System.getProperty("line.separator") |
|---|
| 301 |
+ System.getProperty("line.separator") |
|---|
| 302 |
+ " a) The work must carry prominent notices stating that you modified" + System.getProperty("line.separator") |
|---|
| 303 |
+ " it, and giving a relevant date." + System.getProperty("line.separator") |
|---|
| 304 |
+ System.getProperty("line.separator") |
|---|
| 305 |
+ " b) The work must carry prominent notices stating that it is" + System.getProperty("line.separator") |
|---|
| 306 |
+ " released under this License and any conditions added under section" + System.getProperty("line.separator") |
|---|
| 307 |
+ " 7. This requirement modifies the requirement in section 4 to" + System.getProperty("line.separator") |
|---|
| 308 |
+ " \"keep intact all notices\"." + System.getProperty("line.separator") |
|---|
| 309 |
+ System.getProperty("line.separator") |
|---|
| 310 |
+ " c) You must license the entire work, as a whole, under this" + System.getProperty("line.separator") |
|---|
| 311 |
+ " License to anyone who comes into possession of a copy. This" + System.getProperty("line.separator") |
|---|
| 312 |
+ " License will therefore apply, along with any applicable section 7" + System.getProperty("line.separator") |
|---|
| 313 |
+ " additional terms, to the whole of the work, and all its parts," + System.getProperty("line.separator") |
|---|
| 314 |
+ " regardless of how they are packaged. This License gives no" + System.getProperty("line.separator") |
|---|
| 315 |
+ " permission to license the work in any other way, but it does not" + System.getProperty("line.separator") |
|---|
| 316 |
+ " invalidate such permission if you have separately received it." + System.getProperty("line.separator") |
|---|
| 317 |
+ System.getProperty("line.separator") |
|---|
| 318 |
+ " d) If the work has interactive user interfaces, each must display" + System.getProperty("line.separator") |
|---|
| 319 |
+ " Appropriate Legal Notices; however, if the Program has interactive" + System.getProperty("line.separator") |
|---|
| 320 |
+ " interfaces that do not display Appropriate Legal Notices, your" + System.getProperty("line.separator") |
|---|
| 321 |
+ " work need not make them do so." + System.getProperty("line.separator") |
|---|
| 322 |
+ System.getProperty("line.separator") |
|---|
| 323 |
+ " A compilation of a covered work with other separate and independent" + System.getProperty("line.separator") |
|---|
| 324 |
+ "works, which are not by their nature extensions of the covered work," + System.getProperty("line.separator") |
|---|
| 325 |
+ "and which are not combined with it such as to form a larger program," + System.getProperty("line.separator") |
|---|
| 326 |
+ "in or on a volume of a storage or distribution medium, is called an" + System.getProperty("line.separator") |
|---|
| 327 |
+ "\"aggregate\" if the compilation and its resulting copyright are not" + System.getProperty("line.separator") |
|---|
| 328 |
+ "used to limit the access or legal rights of the compilation's users" + System.getProperty("line.separator") |
|---|
| 329 |
+ "beyond what the individual works permit. Inclusion of a covered work" + System.getProperty("line.separator") |
|---|
| 330 |
+ "in an aggregate does not cause this License to apply to the other" + System.getProperty("line.separator") |
|---|
| 331 |
+ "parts of the aggregate." + System.getProperty("line.separator") |
|---|
| 332 |
+ System.getProperty("line.separator") |
|---|
| 333 |
+ " 6. Conveying Non-Source Forms." + System.getProperty("line.separator") |
|---|
| 334 |
+ System.getProperty("line.separator") |
|---|
| 335 |
+ " You may convey a covered work in object code form under the terms" + System.getProperty("line.separator") |
|---|
| 336 |
+ "of sections 4 and 5, provided that you also convey the" + System.getProperty("line.separator") |
|---|
| 337 |
+ "machine-readable Corresponding Source under the terms of this License," + System.getProperty("line.separator") |
|---|
| 338 |
+ "in one of these ways:" + System.getProperty("line.separator") |
|---|
| 339 |
+ System.getProperty("line.separator") |
|---|
| 340 |
+ " a) Convey the object code in, or embodied in, a physical product" + System.getProperty("line.separator") |
|---|
| 341 |
+ " (including a physical distribution medium), accompanied by the" + System.getProperty("line.separator") |
|---|
| 342 |
+ " Corresponding Source fixed on a durable physical medium" + System.getProperty("line.separator") |
|---|
| 343 |
+ " customarily used for software interchange." + System.getProperty("line.separator") |
|---|
| 344 |
+ System.getProperty("line.separator") |
|---|
| 345 |
+ " b) Convey the object code in, or embodied in, a physical product" + System.getProperty("line.separator") |
|---|
| 346 |
+ " (including a physical distribution medium), accompanied by a" + System.getProperty("line.separator") |
|---|
| 347 |
+ " written offer, valid for at least three years and valid for as" + System.getProperty("line.separator") |
|---|
| 348 |
+ " long as you offer spare parts or customer support for that product" + System.getProperty("line.separator") |
|---|
| 349 |
+ " model, to give anyone who possesses the object code either (1) a" + System.getProperty("line.separator") |
|---|
| 350 |
+ " copy of the Corresponding Source for all the software in the" + System.getProperty("line.separator") |
|---|
| 351 |
+ " product that is covered by this License, on a durable physical" + System.getProperty("line.separator") |
|---|
| 352 |
+ " medium customarily used for software interchange, for a price no" + System.getProperty("line.separator") |
|---|
| 353 |
+ " more than your reasonable cost of physically performing this" + System.getProperty("line.separator") |
|---|
| 354 |
+ " conveying of source, or (2) access to copy the" + System.getProperty("line.separator") |
|---|
| 355 |
+ " Corresponding Source from a network server at no charge." + System.getProperty("line.separator") |
|---|
| 356 |
+ System.getProperty("line.separator") |
|---|
| 357 |
+ " c) Convey individual copies of the object code with a copy of the" + System.getProperty("line.separator") |
|---|
| 358 |
+ " written offer to provide the Corresponding Source. This" + System.getProperty("line.separator") |
|---|
| 359 |
+ " alternative is allowed only occasionally and noncommercially, and" + System.getProperty("line.separator") |
|---|
| 360 |
+ " only if you received the object code with such an offer, in accord" + System.getProperty("line.separator") |
|---|
| 361 |
+ " with subsection 6b." + System.getProperty("line.separator") |
|---|
| 362 |
+ System.getProperty("line.separator") |
|---|
| 363 |
+ " d) Convey the object code by offering access from a designated" + System.getProperty("line.separator") |
|---|
| 364 |
+ " place (gratis or for a charge), and offer equivalent access to the" + System.getProperty("line.separator") |
|---|
| 365 |
+ " Corresponding Source in the same way through the same place at no" + System.getProperty("line.separator") |
|---|
| 366 |
+ " further charge. You need not require recipients to copy the" + System.getProperty("line.separator") |
|---|
| 367 |
+ " Corresponding Source along with the object code. If the place to" + System.getProperty("line.separator") |
|---|
| 368 |
+ " copy the object code is a network server, the Corresponding Source" + System.getProperty("line.separator") |
|---|
| 369 |
+ " may be on a different server (operated by you or a third party)" + System.getProperty("line.separator") |
|---|
| 370 |
+ " that supports equivalent copying facilities, provided you maintain" + System.getProperty("line.separator") |
|---|
| 371 |
+ " clear directions next to the object code saying where to find the" + System.getProperty("line.separator") |
|---|
| 372 |
+ " Corresponding Source. Regardless of what server hosts the" + System.getProperty("line.separator") |
|---|
| 373 |
+ " Corresponding Source, you remain obligated to ensure that it is" + System.getProperty("line.separator") |
|---|
| 374 |
+ " available for as long as needed to satisfy these requirements." + System.getProperty("line.separator") |
|---|
| 375 |
+ System.getProperty("line.separator") |
|---|
| 376 |
+ " e) Convey the object code using peer-to-peer transmission, provided" + System.getProperty("line.separator") |
|---|
| 377 |
+ " you inform other peers where the object code and Corresponding" + System.getProperty("line.separator") |
|---|
| 378 |
+ " Source of the work are being offered to the general public at no" + System.getProperty("line.separator") |
|---|
| 379 |
+ " charge under subsection 6d." + System.getProperty("line.separator") |
|---|
| 380 |
+ System.getProperty("line.separator") |
|---|
| 381 |
+ " A separable portion of the object code, whose source code is excluded" + System.getProperty("line.separator") |
|---|
| 382 |
+ "from the Corresponding Source as a System Library, need not be" + System.getProperty("line.separator") |
|---|
| 383 |
+ "included in conveying the object code work." + System.getProperty("line |
|---|