- Commit
- afc4221f82913bef21340ab7fbdc22ba080ce5fe
- Parent
- 7d4974a6db3e265f978b1380093abb7df9c263b6
- Author
- Pablo <pablo-escobar@riseup.net>
- Date
Made the line numbers in code blocks look nicer
Design documents for git.pablopie.xyz ✏️
Made the line numbers in code blocks look nicer
3 files changed, 721 insertions, 3 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | TODO.md | 3 | 0 | 3 |
Added | file.html | 711 | 711 | 0 |
Modified | styles.css | 10 | 10 | 0 |
diff --git a/TODO.md b/TODO.md @@ -2,9 +2,6 @@ * Changed the titles of the pages so that they reflect the names of the repos * Make the first column of the table on the repo tree the correnct size -* Make code blocks look nicer - * Make the line numbers nicer - * Implement syntax highlighting? * Add license indicators other than page on the LICENSE file # Bugs
diff --git a/file.html b/file.html @@ -0,0 +1,711 @@ +<!DOCTYPE html> +<html><head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<title>A OCaml module for manipulating unlimited register machines</title> +<link rel="icon" type="image/svg" href="https://git.pablopie.xyz/icons/favicon.svg"> +<link rel="stylesheet" type="text/css" href="./styles.css"> +</head> +<body> +<nav> +<a href="https://git.pablopie.xyz/"> +<img aria-hidden="true" alt="Website logo" src="./favicon.svg"> +git.pablopie.xyz +</a> +</nav> +<main> +<h1>caml-urm</h1> +<p>A OCaml module for manipulating unlimited register machines +</p> +<ul> +<li>git clone: <a href="git://git.escobar.life/caml-urm">git://git.escobar.life/caml-urm</a></li> +<li><a href="https://git.pablopie.xyz/caml-urm/log.html">Log</a></li> +<li><a href="https://git.pablopie.xyz/caml-urm/files.html">Files</a></li> +<li><a href="https://git.pablopie.xyz/caml-urm/refs.html">Refs</a></li> +<li><a href="https://git.pablopie.xyz/caml-urm/README.html">README</a></li> +<li><a href="https://git.pablopie.xyz/caml-urm/file/LICENSE.html">LICENSE</a></li> +<li><a href="https://git.pablopie.xyz/caml-urm/blob/LICENSE">raw file (blob)</a></li></ul> +<h2>LICENSE (35149B)</h2> +<div class="codeblock"> +<pre id="blob"><a href="#l1" class="line" id="l1"> 1</a> GNU GENERAL PUBLIC LICENSE +<a href="#l2" class="line" id="l2"> 2</a> Version 3, 29 June 2007 +<a href="#l3" class="line" id="l3"> 3</a> +<a href="#l4" class="line" id="l4"> 4</a> Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> +<a href="#l5" class="line" id="l5"> 5</a> Everyone is permitted to copy and distribute verbatim copies +<a href="#l6" class="line" id="l6"> 6</a> of this license document, but changing it is not allowed. +<a href="#l7" class="line" id="l7"> 7</a> +<a href="#l8" class="line" id="l8"> 8</a> Preamble +<a href="#l9" class="line" id="l9"> 9</a> +<a href="#l10" class="line" id="l10"> 10</a> The GNU General Public License is a free, copyleft license for +<a href="#l11" class="line" id="l11"> 11</a> software and other kinds of works. +<a href="#l12" class="line" id="l12"> 12</a> +<a href="#l13" class="line" id="l13"> 13</a> The licenses for most software and other practical works are designed +<a href="#l14" class="line" id="l14"> 14</a> to take away your freedom to share and change the works. By contrast, +<a href="#l15" class="line" id="l15"> 15</a> the GNU General Public License is intended to guarantee your freedom to +<a href="#l16" class="line" id="l16"> 16</a> share and change all versions of a program--to make sure it remains free +<a href="#l17" class="line" id="l17"> 17</a> software for all its users. We, the Free Software Foundation, use the +<a href="#l18" class="line" id="l18"> 18</a> GNU General Public License for most of our software; it applies also to +<a href="#l19" class="line" id="l19"> 19</a> any other work released this way by its authors. You can apply it to +<a href="#l20" class="line" id="l20"> 20</a> your programs, too. +<a href="#l21" class="line" id="l21"> 21</a> +<a href="#l22" class="line" id="l22"> 22</a> When we speak of free software, we are referring to freedom, not +<a href="#l23" class="line" id="l23"> 23</a> price. Our General Public Licenses are designed to make sure that you +<a href="#l24" class="line" id="l24"> 24</a> have the freedom to distribute copies of free software (and charge for +<a href="#l25" class="line" id="l25"> 25</a> them if you wish), that you receive source code or can get it if you +<a href="#l26" class="line" id="l26"> 26</a> want it, that you can change the software or use pieces of it in new +<a href="#l27" class="line" id="l27"> 27</a> free programs, and that you know you can do these things. +<a href="#l28" class="line" id="l28"> 28</a> +<a href="#l29" class="line" id="l29"> 29</a> To protect your rights, we need to prevent others from denying you +<a href="#l30" class="line" id="l30"> 30</a> these rights or asking you to surrender the rights. Therefore, you have +<a href="#l31" class="line" id="l31"> 31</a> certain responsibilities if you distribute copies of the software, or if +<a href="#l32" class="line" id="l32"> 32</a> you modify it: responsibilities to respect the freedom of others. +<a href="#l33" class="line" id="l33"> 33</a> +<a href="#l34" class="line" id="l34"> 34</a> For example, if you distribute copies of such a program, whether +<a href="#l35" class="line" id="l35"> 35</a> gratis or for a fee, you must pass on to the recipients the same +<a href="#l36" class="line" id="l36"> 36</a> freedoms that you received. You must make sure that they, too, receive +<a href="#l37" class="line" id="l37"> 37</a> or can get the source code. And you must show them these terms so they +<a href="#l38" class="line" id="l38"> 38</a> know their rights. +<a href="#l39" class="line" id="l39"> 39</a> +<a href="#l40" class="line" id="l40"> 40</a> Developers that use the GNU GPL protect your rights with two steps: +<a href="#l41" class="line" id="l41"> 41</a> (1) assert copyright on the software, and (2) offer you this License +<a href="#l42" class="line" id="l42"> 42</a> giving you legal permission to copy, distribute and/or modify it. +<a href="#l43" class="line" id="l43"> 43</a> +<a href="#l44" class="line" id="l44"> 44</a> For the developers' and authors' protection, the GPL clearly explains +<a href="#l45" class="line" id="l45"> 45</a> that there is no warranty for this free software. For both users' and +<a href="#l46" class="line" id="l46"> 46</a> authors' sake, the GPL requires that modified versions be marked as +<a href="#l47" class="line" id="l47"> 47</a> changed, so that their problems will not be attributed erroneously to +<a href="#l48" class="line" id="l48"> 48</a> authors of previous versions. +<a href="#l49" class="line" id="l49"> 49</a> +<a href="#l50" class="line" id="l50"> 50</a> Some devices are designed to deny users access to install or run +<a href="#l51" class="line" id="l51"> 51</a> modified versions of the software inside them, although the manufacturer +<a href="#l52" class="line" id="l52"> 52</a> can do so. This is fundamentally incompatible with the aim of +<a href="#l53" class="line" id="l53"> 53</a> protecting users' freedom to change the software. The systematic +<a href="#l54" class="line" id="l54"> 54</a> pattern of such abuse occurs in the area of products for individuals to +<a href="#l55" class="line" id="l55"> 55</a> use, which is precisely where it is most unacceptable. Therefore, we +<a href="#l56" class="line" id="l56"> 56</a> have designed this version of the GPL to prohibit the practice for those +<a href="#l57" class="line" id="l57"> 57</a> products. If such problems arise substantially in other domains, we +<a href="#l58" class="line" id="l58"> 58</a> stand ready to extend this provision to those domains in future versions +<a href="#l59" class="line" id="l59"> 59</a> of the GPL, as needed to protect the freedom of users. +<a href="#l60" class="line" id="l60"> 60</a> +<a href="#l61" class="line" id="l61"> 61</a> Finally, every program is threatened constantly by software patents. +<a href="#l62" class="line" id="l62"> 62</a> States should not allow patents to restrict development and use of +<a href="#l63" class="line" id="l63"> 63</a> software on general-purpose computers, but in those that do, we wish to +<a href="#l64" class="line" id="l64"> 64</a> avoid the special danger that patents applied to a free program could +<a href="#l65" class="line" id="l65"> 65</a> make it effectively proprietary. To prevent this, the GPL assures that +<a href="#l66" class="line" id="l66"> 66</a> patents cannot be used to render the program non-free. +<a href="#l67" class="line" id="l67"> 67</a> +<a href="#l68" class="line" id="l68"> 68</a> The precise terms and conditions for copying, distribution and +<a href="#l69" class="line" id="l69"> 69</a> modification follow. +<a href="#l70" class="line" id="l70"> 70</a> +<a href="#l71" class="line" id="l71"> 71</a> TERMS AND CONDITIONS +<a href="#l72" class="line" id="l72"> 72</a> +<a href="#l73" class="line" id="l73"> 73</a> 0. Definitions. +<a href="#l74" class="line" id="l74"> 74</a> +<a href="#l75" class="line" id="l75"> 75</a> "This License" refers to version 3 of the GNU General Public License. +<a href="#l76" class="line" id="l76"> 76</a> +<a href="#l77" class="line" id="l77"> 77</a> "Copyright" also means copyright-like laws that apply to other kinds of +<a href="#l78" class="line" id="l78"> 78</a> works, such as semiconductor masks. +<a href="#l79" class="line" id="l79"> 79</a> +<a href="#l80" class="line" id="l80"> 80</a> "The Program" refers to any copyrightable work licensed under this +<a href="#l81" class="line" id="l81"> 81</a> License. Each licensee is addressed as "you". "Licensees" and +<a href="#l82" class="line" id="l82"> 82</a> "recipients" may be individuals or organizations. +<a href="#l83" class="line" id="l83"> 83</a> +<a href="#l84" class="line" id="l84"> 84</a> To "modify" a work means to copy from or adapt all or part of the work +<a href="#l85" class="line" id="l85"> 85</a> in a fashion requiring copyright permission, other than the making of an +<a href="#l86" class="line" id="l86"> 86</a> exact copy. The resulting work is called a "modified version" of the +<a href="#l87" class="line" id="l87"> 87</a> earlier work or a work "based on" the earlier work. +<a href="#l88" class="line" id="l88"> 88</a> +<a href="#l89" class="line" id="l89"> 89</a> A "covered work" means either the unmodified Program or a work based +<a href="#l90" class="line" id="l90"> 90</a> on the Program. +<a href="#l91" class="line" id="l91"> 91</a> +<a href="#l92" class="line" id="l92"> 92</a> To "propagate" a work means to do anything with it that, without +<a href="#l93" class="line" id="l93"> 93</a> permission, would make you directly or secondarily liable for +<a href="#l94" class="line" id="l94"> 94</a> infringement under applicable copyright law, except executing it on a +<a href="#l95" class="line" id="l95"> 95</a> computer or modifying a private copy. Propagation includes copying, +<a href="#l96" class="line" id="l96"> 96</a> distribution (with or without modification), making available to the +<a href="#l97" class="line" id="l97"> 97</a> public, and in some countries other activities as well. +<a href="#l98" class="line" id="l98"> 98</a> +<a href="#l99" class="line" id="l99"> 99</a> To "convey" a work means any kind of propagation that enables other +<a href="#l100" class="line" id="l100">100</a> parties to make or receive copies. Mere interaction with a user through +<a href="#l101" class="line" id="l101">101</a> a computer network, with no transfer of a copy, is not conveying. +<a href="#l102" class="line" id="l102">102</a> +<a href="#l103" class="line" id="l103">103</a> An interactive user interface displays "Appropriate Legal Notices" +<a href="#l104" class="line" id="l104">104</a> to the extent that it includes a convenient and prominently visible +<a href="#l105" class="line" id="l105">105</a> feature that (1) displays an appropriate copyright notice, and (2) +<a href="#l106" class="line" id="l106">106</a> tells the user that there is no warranty for the work (except to the +<a href="#l107" class="line" id="l107">107</a> extent that warranties are provided), that licensees may convey the +<a href="#l108" class="line" id="l108">108</a> work under this License, and how to view a copy of this License. If +<a href="#l109" class="line" id="l109">109</a> the interface presents a list of user commands or options, such as a +<a href="#l110" class="line" id="l110">110</a> menu, a prominent item in the list meets this criterion. +<a href="#l111" class="line" id="l111">111</a> +<a href="#l112" class="line" id="l112">112</a> 1. Source Code. +<a href="#l113" class="line" id="l113">113</a> +<a href="#l114" class="line" id="l114">114</a> The "source code" for a work means the preferred form of the work +<a href="#l115" class="line" id="l115">115</a> for making modifications to it. "Object code" means any non-source +<a href="#l116" class="line" id="l116">116</a> form of a work. +<a href="#l117" class="line" id="l117">117</a> +<a href="#l118" class="line" id="l118">118</a> A "Standard Interface" means an interface that either is an official +<a href="#l119" class="line" id="l119">119</a> standard defined by a recognized standards body, or, in the case of +<a href="#l120" class="line" id="l120">120</a> interfaces specified for a particular programming language, one that +<a href="#l121" class="line" id="l121">121</a> is widely used among developers working in that language. +<a href="#l122" class="line" id="l122">122</a> +<a href="#l123" class="line" id="l123">123</a> The "System Libraries" of an executable work include anything, other +<a href="#l124" class="line" id="l124">124</a> than the work as a whole, that (a) is included in the normal form of +<a href="#l125" class="line" id="l125">125</a> packaging a Major Component, but which is not part of that Major +<a href="#l126" class="line" id="l126">126</a> Component, and (b) serves only to enable use of the work with that +<a href="#l127" class="line" id="l127">127</a> Major Component, or to implement a Standard Interface for which an +<a href="#l128" class="line" id="l128">128</a> implementation is available to the public in source code form. A +<a href="#l129" class="line" id="l129">129</a> "Major Component", in this context, means a major essential component +<a href="#l130" class="line" id="l130">130</a> (kernel, window system, and so on) of the specific operating system +<a href="#l131" class="line" id="l131">131</a> (if any) on which the executable work runs, or a compiler used to +<a href="#l132" class="line" id="l132">132</a> produce the work, or an object code interpreter used to run it. +<a href="#l133" class="line" id="l133">133</a> +<a href="#l134" class="line" id="l134">134</a> The "Corresponding Source" for a work in object code form means all +<a href="#l135" class="line" id="l135">135</a> the source code needed to generate, install, and (for an executable +<a href="#l136" class="line" id="l136">136</a> work) run the object code and to modify the work, including scripts to +<a href="#l137" class="line" id="l137">137</a> control those activities. However, it does not include the work's +<a href="#l138" class="line" id="l138">138</a> System Libraries, or general-purpose tools or generally available free +<a href="#l139" class="line" id="l139">139</a> programs which are used unmodified in performing those activities but +<a href="#l140" class="line" id="l140">140</a> which are not part of the work. For example, Corresponding Source +<a href="#l141" class="line" id="l141">141</a> includes interface definition files associated with source files for +<a href="#l142" class="line" id="l142">142</a> the work, and the source code for shared libraries and dynamically +<a href="#l143" class="line" id="l143">143</a> linked subprograms that the work is specifically designed to require, +<a href="#l144" class="line" id="l144">144</a> such as by intimate data communication or control flow between those +<a href="#l145" class="line" id="l145">145</a> subprograms and other parts of the work. +<a href="#l146" class="line" id="l146">146</a> +<a href="#l147" class="line" id="l147">147</a> The Corresponding Source need not include anything that users +<a href="#l148" class="line" id="l148">148</a> can regenerate automatically from other parts of the Corresponding +<a href="#l149" class="line" id="l149">149</a> Source. +<a href="#l150" class="line" id="l150">150</a> +<a href="#l151" class="line" id="l151">151</a> The Corresponding Source for a work in source code form is that +<a href="#l152" class="line" id="l152">152</a> same work. +<a href="#l153" class="line" id="l153">153</a> +<a href="#l154" class="line" id="l154">154</a> 2. Basic Permissions. +<a href="#l155" class="line" id="l155">155</a> +<a href="#l156" class="line" id="l156">156</a> All rights granted under this License are granted for the term of +<a href="#l157" class="line" id="l157">157</a> copyright on the Program, and are irrevocable provided the stated +<a href="#l158" class="line" id="l158">158</a> conditions are met. This License explicitly affirms your unlimited +<a href="#l159" class="line" id="l159">159</a> permission to run the unmodified Program. The output from running a +<a href="#l160" class="line" id="l160">160</a> covered work is covered by this License only if the output, given its +<a href="#l161" class="line" id="l161">161</a> content, constitutes a covered work. This License acknowledges your +<a href="#l162" class="line" id="l162">162</a> rights of fair use or other equivalent, as provided by copyright law. +<a href="#l163" class="line" id="l163">163</a> +<a href="#l164" class="line" id="l164">164</a> You may make, run and propagate covered works that you do not +<a href="#l165" class="line" id="l165">165</a> convey, without conditions so long as your license otherwise remains +<a href="#l166" class="line" id="l166">166</a> in force. You may convey covered works to others for the sole purpose +<a href="#l167" class="line" id="l167">167</a> of having them make modifications exclusively for you, or provide you +<a href="#l168" class="line" id="l168">168</a> with facilities for running those works, provided that you comply with +<a href="#l169" class="line" id="l169">169</a> the terms of this License in conveying all material for which you do +<a href="#l170" class="line" id="l170">170</a> not control copyright. Those thus making or running the covered works +<a href="#l171" class="line" id="l171">171</a> for you must do so exclusively on your behalf, under your direction +<a href="#l172" class="line" id="l172">172</a> and control, on terms that prohibit them from making any copies of +<a href="#l173" class="line" id="l173">173</a> your copyrighted material outside their relationship with you. +<a href="#l174" class="line" id="l174">174</a> +<a href="#l175" class="line" id="l175">175</a> Conveying under any other circumstances is permitted solely under +<a href="#l176" class="line" id="l176">176</a> the conditions stated below. Sublicensing is not allowed; section 10 +<a href="#l177" class="line" id="l177">177</a> makes it unnecessary. +<a href="#l178" class="line" id="l178">178</a> +<a href="#l179" class="line" id="l179">179</a> 3. Protecting Users' Legal Rights From Anti-Circumvention Law. +<a href="#l180" class="line" id="l180">180</a> +<a href="#l181" class="line" id="l181">181</a> No covered work shall be deemed part of an effective technological +<a href="#l182" class="line" id="l182">182</a> measure under any applicable law fulfilling obligations under article +<a href="#l183" class="line" id="l183">183</a> 11 of the WIPO copyright treaty adopted on 20 December 1996, or +<a href="#l184" class="line" id="l184">184</a> similar laws prohibiting or restricting circumvention of such +<a href="#l185" class="line" id="l185">185</a> measures. +<a href="#l186" class="line" id="l186">186</a> +<a href="#l187" class="line" id="l187">187</a> When you convey a covered work, you waive any legal power to forbid +<a href="#l188" class="line" id="l188">188</a> circumvention of technological measures to the extent such circumvention +<a href="#l189" class="line" id="l189">189</a> is effected by exercising rights under this License with respect to +<a href="#l190" class="line" id="l190">190</a> the covered work, and you disclaim any intention to limit operation or +<a href="#l191" class="line" id="l191">191</a> modification of the work as a means of enforcing, against the work's +<a href="#l192" class="line" id="l192">192</a> users, your or third parties' legal rights to forbid circumvention of +<a href="#l193" class="line" id="l193">193</a> technological measures. +<a href="#l194" class="line" id="l194">194</a> +<a href="#l195" class="line" id="l195">195</a> 4. Conveying Verbatim Copies. +<a href="#l196" class="line" id="l196">196</a> +<a href="#l197" class="line" id="l197">197</a> You may convey verbatim copies of the Program's source code as you +<a href="#l198" class="line" id="l198">198</a> receive it, in any medium, provided that you conspicuously and +<a href="#l199" class="line" id="l199">199</a> appropriately publish on each copy an appropriate copyright notice; +<a href="#l200" class="line" id="l200">200</a> keep intact all notices stating that this License and any +<a href="#l201" class="line" id="l201">201</a> non-permissive terms added in accord with section 7 apply to the code; +<a href="#l202" class="line" id="l202">202</a> keep intact all notices of the absence of any warranty; and give all +<a href="#l203" class="line" id="l203">203</a> recipients a copy of this License along with the Program. +<a href="#l204" class="line" id="l204">204</a> +<a href="#l205" class="line" id="l205">205</a> You may charge any price or no price for each copy that you convey, +<a href="#l206" class="line" id="l206">206</a> and you may offer support or warranty protection for a fee. +<a href="#l207" class="line" id="l207">207</a> +<a href="#l208" class="line" id="l208">208</a> 5. Conveying Modified Source Versions. +<a href="#l209" class="line" id="l209">209</a> +<a href="#l210" class="line" id="l210">210</a> You may convey a work based on the Program, or the modifications to +<a href="#l211" class="line" id="l211">211</a> produce it from the Program, in the form of source code under the +<a href="#l212" class="line" id="l212">212</a> terms of section 4, provided that you also meet all of these conditions: +<a href="#l213" class="line" id="l213">213</a> +<a href="#l214" class="line" id="l214">214</a> a) The work must carry prominent notices stating that you modified +<a href="#l215" class="line" id="l215">215</a> it, and giving a relevant date. +<a href="#l216" class="line" id="l216">216</a> +<a href="#l217" class="line" id="l217">217</a> b) The work must carry prominent notices stating that it is +<a href="#l218" class="line" id="l218">218</a> released under this License and any conditions added under section +<a href="#l219" class="line" id="l219">219</a> 7. This requirement modifies the requirement in section 4 to +<a href="#l220" class="line" id="l220">220</a> "keep intact all notices". +<a href="#l221" class="line" id="l221">221</a> +<a href="#l222" class="line" id="l222">222</a> c) You must license the entire work, as a whole, under this +<a href="#l223" class="line" id="l223">223</a> License to anyone who comes into possession of a copy. This +<a href="#l224" class="line" id="l224">224</a> License will therefore apply, along with any applicable section 7 +<a href="#l225" class="line" id="l225">225</a> additional terms, to the whole of the work, and all its parts, +<a href="#l226" class="line" id="l226">226</a> regardless of how they are packaged. This License gives no +<a href="#l227" class="line" id="l227">227</a> permission to license the work in any other way, but it does not +<a href="#l228" class="line" id="l228">228</a> invalidate such permission if you have separately received it. +<a href="#l229" class="line" id="l229">229</a> +<a href="#l230" class="line" id="l230">230</a> d) If the work has interactive user interfaces, each must display +<a href="#l231" class="line" id="l231">231</a> Appropriate Legal Notices; however, if the Program has interactive +<a href="#l232" class="line" id="l232">232</a> interfaces that do not display Appropriate Legal Notices, your +<a href="#l233" class="line" id="l233">233</a> work need not make them do so. +<a href="#l234" class="line" id="l234">234</a> +<a href="#l235" class="line" id="l235">235</a> A compilation of a covered work with other separate and independent +<a href="#l236" class="line" id="l236">236</a> works, which are not by their nature extensions of the covered work, +<a href="#l237" class="line" id="l237">237</a> and which are not combined with it such as to form a larger program, +<a href="#l238" class="line" id="l238">238</a> in or on a volume of a storage or distribution medium, is called an +<a href="#l239" class="line" id="l239">239</a> "aggregate" if the compilation and its resulting copyright are not +<a href="#l240" class="line" id="l240">240</a> used to limit the access or legal rights of the compilation's users +<a href="#l241" class="line" id="l241">241</a> beyond what the individual works permit. Inclusion of a covered work +<a href="#l242" class="line" id="l242">242</a> in an aggregate does not cause this License to apply to the other +<a href="#l243" class="line" id="l243">243</a> parts of the aggregate. +<a href="#l244" class="line" id="l244">244</a> +<a href="#l245" class="line" id="l245">245</a> 6. Conveying Non-Source Forms. +<a href="#l246" class="line" id="l246">246</a> +<a href="#l247" class="line" id="l247">247</a> You may convey a covered work in object code form under the terms +<a href="#l248" class="line" id="l248">248</a> of sections 4 and 5, provided that you also convey the +<a href="#l249" class="line" id="l249">249</a> machine-readable Corresponding Source under the terms of this License, +<a href="#l250" class="line" id="l250">250</a> in one of these ways: +<a href="#l251" class="line" id="l251">251</a> +<a href="#l252" class="line" id="l252">252</a> a) Convey the object code in, or embodied in, a physical product +<a href="#l253" class="line" id="l253">253</a> (including a physical distribution medium), accompanied by the +<a href="#l254" class="line" id="l254">254</a> Corresponding Source fixed on a durable physical medium +<a href="#l255" class="line" id="l255">255</a> customarily used for software interchange. +<a href="#l256" class="line" id="l256">256</a> +<a href="#l257" class="line" id="l257">257</a> b) Convey the object code in, or embodied in, a physical product +<a href="#l258" class="line" id="l258">258</a> (including a physical distribution medium), accompanied by a +<a href="#l259" class="line" id="l259">259</a> written offer, valid for at least three years and valid for as +<a href="#l260" class="line" id="l260">260</a> long as you offer spare parts or customer support for that product +<a href="#l261" class="line" id="l261">261</a> model, to give anyone who possesses the object code either (1) a +<a href="#l262" class="line" id="l262">262</a> copy of the Corresponding Source for all the software in the +<a href="#l263" class="line" id="l263">263</a> product that is covered by this License, on a durable physical +<a href="#l264" class="line" id="l264">264</a> medium customarily used for software interchange, for a price no +<a href="#l265" class="line" id="l265">265</a> more than your reasonable cost of physically performing this +<a href="#l266" class="line" id="l266">266</a> conveying of source, or (2) access to copy the +<a href="#l267" class="line" id="l267">267</a> Corresponding Source from a network server at no charge. +<a href="#l268" class="line" id="l268">268</a> +<a href="#l269" class="line" id="l269">269</a> c) Convey individual copies of the object code with a copy of the +<a href="#l270" class="line" id="l270">270</a> written offer to provide the Corresponding Source. This +<a href="#l271" class="line" id="l271">271</a> alternative is allowed only occasionally and noncommercially, and +<a href="#l272" class="line" id="l272">272</a> only if you received the object code with such an offer, in accord +<a href="#l273" class="line" id="l273">273</a> with subsection 6b. +<a href="#l274" class="line" id="l274">274</a> +<a href="#l275" class="line" id="l275">275</a> d) Convey the object code by offering access from a designated +<a href="#l276" class="line" id="l276">276</a> place (gratis or for a charge), and offer equivalent access to the +<a href="#l277" class="line" id="l277">277</a> Corresponding Source in the same way through the same place at no +<a href="#l278" class="line" id="l278">278</a> further charge. You need not require recipients to copy the +<a href="#l279" class="line" id="l279">279</a> Corresponding Source along with the object code. If the place to +<a href="#l280" class="line" id="l280">280</a> copy the object code is a network server, the Corresponding Source +<a href="#l281" class="line" id="l281">281</a> may be on a different server (operated by you or a third party) +<a href="#l282" class="line" id="l282">282</a> that supports equivalent copying facilities, provided you maintain +<a href="#l283" class="line" id="l283">283</a> clear directions next to the object code saying where to find the +<a href="#l284" class="line" id="l284">284</a> Corresponding Source. Regardless of what server hosts the +<a href="#l285" class="line" id="l285">285</a> Corresponding Source, you remain obligated to ensure that it is +<a href="#l286" class="line" id="l286">286</a> available for as long as needed to satisfy these requirements. +<a href="#l287" class="line" id="l287">287</a> +<a href="#l288" class="line" id="l288">288</a> e) Convey the object code using peer-to-peer transmission, provided +<a href="#l289" class="line" id="l289">289</a> you inform other peers where the object code and Corresponding +<a href="#l290" class="line" id="l290">290</a> Source of the work are being offered to the general public at no +<a href="#l291" class="line" id="l291">291</a> charge under subsection 6d. +<a href="#l292" class="line" id="l292">292</a> +<a href="#l293" class="line" id="l293">293</a> A separable portion of the object code, whose source code is excluded +<a href="#l294" class="line" id="l294">294</a> from the Corresponding Source as a System Library, need not be +<a href="#l295" class="line" id="l295">295</a> included in conveying the object code work. +<a href="#l296" class="line" id="l296">296</a> +<a href="#l297" class="line" id="l297">297</a> A "User Product" is either (1) a "consumer product", which means any +<a href="#l298" class="line" id="l298">298</a> tangible personal property which is normally used for personal, family, +<a href="#l299" class="line" id="l299">299</a> or household purposes, or (2) anything designed or sold for incorporation +<a href="#l300" class="line" id="l300">300</a> into a dwelling. In determining whether a product is a consumer product, +<a href="#l301" class="line" id="l301">301</a> doubtful cases shall be resolved in favor of coverage. For a particular +<a href="#l302" class="line" id="l302">302</a> product received by a particular user, "normally used" refers to a +<a href="#l303" class="line" id="l303">303</a> typical or common use of that class of product, regardless of the status +<a href="#l304" class="line" id="l304">304</a> of the particular user or of the way in which the particular user +<a href="#l305" class="line" id="l305">305</a> actually uses, or expects or is expected to use, the product. A product +<a href="#l306" class="line" id="l306">306</a> is a consumer product regardless of whether the product has substantial +<a href="#l307" class="line" id="l307">307</a> commercial, industrial or non-consumer uses, unless such uses represent +<a href="#l308" class="line" id="l308">308</a> the only significant mode of use of the product. +<a href="#l309" class="line" id="l309">309</a> +<a href="#l310" class="line" id="l310">310</a> "Installation Information" for a User Product means any methods, +<a href="#l311" class="line" id="l311">311</a> procedures, authorization keys, or other information required to install +<a href="#l312" class="line" id="l312">312</a> and execute modified versions of a covered work in that User Product from +<a href="#l313" class="line" id="l313">313</a> a modified version of its Corresponding Source. The information must +<a href="#l314" class="line" id="l314">314</a> suffice to ensure that the continued functioning of the modified object +<a href="#l315" class="line" id="l315">315</a> code is in no case prevented or interfered with solely because +<a href="#l316" class="line" id="l316">316</a> modification has been made. +<a href="#l317" class="line" id="l317">317</a> +<a href="#l318" class="line" id="l318">318</a> If you convey an object code work under this section in, or with, or +<a href="#l319" class="line" id="l319">319</a> specifically for use in, a User Product, and the conveying occurs as +<a href="#l320" class="line" id="l320">320</a> part of a transaction in which the right of possession and use of the +<a href="#l321" class="line" id="l321">321</a> User Product is transferred to the recipient in perpetuity or for a +<a href="#l322" class="line" id="l322">322</a> fixed term (regardless of how the transaction is characterized), the +<a href="#l323" class="line" id="l323">323</a> Corresponding Source conveyed under this section must be accompanied +<a href="#l324" class="line" id="l324">324</a> by the Installation Information. But this requirement does not apply +<a href="#l325" class="line" id="l325">325</a> if neither you nor any third party retains the ability to install +<a href="#l326" class="line" id="l326">326</a> modified object code on the User Product (for example, the work has +<a href="#l327" class="line" id="l327">327</a> been installed in ROM). +<a href="#l328" class="line" id="l328">328</a> +<a href="#l329" class="line" id="l329">329</a> The requirement to provide Installation Information does not include a +<a href="#l330" class="line" id="l330">330</a> requirement to continue to provide support service, warranty, or updates +<a href="#l331" class="line" id="l331">331</a> for a work that has been modified or installed by the recipient, or for +<a href="#l332" class="line" id="l332">332</a> the User Product in which it has been modified or installed. Access to a +<a href="#l333" class="line" id="l333">333</a> network may be denied when the modification itself materially and +<a href="#l334" class="line" id="l334">334</a> adversely affects the operation of the network or violates the rules and +<a href="#l335" class="line" id="l335">335</a> protocols for communication across the network. +<a href="#l336" class="line" id="l336">336</a> +<a href="#l337" class="line" id="l337">337</a> Corresponding Source conveyed, and Installation Information provided, +<a href="#l338" class="line" id="l338">338</a> in accord with this section must be in a format that is publicly +<a href="#l339" class="line" id="l339">339</a> documented (and with an implementation available to the public in +<a href="#l340" class="line" id="l340">340</a> source code form), and must require no special password or key for +<a href="#l341" class="line" id="l341">341</a> unpacking, reading or copying. +<a href="#l342" class="line" id="l342">342</a> +<a href="#l343" class="line" id="l343">343</a> 7. Additional Terms. +<a href="#l344" class="line" id="l344">344</a> +<a href="#l345" class="line" id="l345">345</a> "Additional permissions" are terms that supplement the terms of this +<a href="#l346" class="line" id="l346">346</a> License by making exceptions from one or more of its conditions. +<a href="#l347" class="line" id="l347">347</a> Additional permissions that are applicable to the entire Program shall +<a href="#l348" class="line" id="l348">348</a> be treated as though they were included in this License, to the extent +<a href="#l349" class="line" id="l349">349</a> that they are valid under applicable law. If additional permissions +<a href="#l350" class="line" id="l350">350</a> apply only to part of the Program, that part may be used separately +<a href="#l351" class="line" id="l351">351</a> under those permissions, but the entire Program remains governed by +<a href="#l352" class="line" id="l352">352</a> this License without regard to the additional permissions. +<a href="#l353" class="line" id="l353">353</a> +<a href="#l354" class="line" id="l354">354</a> When you convey a copy of a covered work, you may at your option +<a href="#l355" class="line" id="l355">355</a> remove any additional permissions from that copy, or from any part of +<a href="#l356" class="line" id="l356">356</a> it. (Additional permissions may be written to require their own +<a href="#l357" class="line" id="l357">357</a> removal in certain cases when you modify the work.) You may place +<a href="#l358" class="line" id="l358">358</a> additional permissions on material, added by you to a covered work, +<a href="#l359" class="line" id="l359">359</a> for which you have or can give appropriate copyright permission. +<a href="#l360" class="line" id="l360">360</a> +<a href="#l361" class="line" id="l361">361</a> Notwithstanding any other provision of this License, for material you +<a href="#l362" class="line" id="l362">362</a> add to a covered work, you may (if authorized by the copyright holders of +<a href="#l363" class="line" id="l363">363</a> that material) supplement the terms of this License with terms: +<a href="#l364" class="line" id="l364">364</a> +<a href="#l365" class="line" id="l365">365</a> a) Disclaiming warranty or limiting liability differently from the +<a href="#l366" class="line" id="l366">366</a> terms of sections 15 and 16 of this License; or +<a href="#l367" class="line" id="l367">367</a> +<a href="#l368" class="line" id="l368">368</a> b) Requiring preservation of specified reasonable legal notices or +<a href="#l369" class="line" id="l369">369</a> author attributions in that material or in the Appropriate Legal +<a href="#l370" class="line" id="l370">370</a> Notices displayed by works containing it; or +<a href="#l371" class="line" id="l371">371</a> +<a href="#l372" class="line" id="l372">372</a> c) Prohibiting misrepresentation of the origin of that material, or +<a href="#l373" class="line" id="l373">373</a> requiring that modified versions of such material be marked in +<a href="#l374" class="line" id="l374">374</a> reasonable ways as different from the original version; or +<a href="#l375" class="line" id="l375">375</a> +<a href="#l376" class="line" id="l376">376</a> d) Limiting the use for publicity purposes of names of licensors or +<a href="#l377" class="line" id="l377">377</a> authors of the material; or +<a href="#l378" class="line" id="l378">378</a> +<a href="#l379" class="line" id="l379">379</a> e) Declining to grant rights under trademark law for use of some +<a href="#l380" class="line" id="l380">380</a> trade names, trademarks, or service marks; or +<a href="#l381" class="line" id="l381">381</a> +<a href="#l382" class="line" id="l382">382</a> f) Requiring indemnification of licensors and authors of that +<a href="#l383" class="line" id="l383">383</a> material by anyone who conveys the material (or modified versions of +<a href="#l384" class="line" id="l384">384</a> it) with contractual assumptions of liability to the recipient, for +<a href="#l385" class="line" id="l385">385</a> any liability that these contractual assumptions directly impose on +<a href="#l386" class="line" id="l386">386</a> those licensors and authors. +<a href="#l387" class="line" id="l387">387</a> +<a href="#l388" class="line" id="l388">388</a> All other non-permissive additional terms are considered "further +<a href="#l389" class="line" id="l389">389</a> restrictions" within the meaning of section 10. If the Program as you +<a href="#l390" class="line" id="l390">390</a> received it, or any part of it, contains a notice stating that it is +<a href="#l391" class="line" id="l391">391</a> governed by this License along with a term that is a further +<a href="#l392" class="line" id="l392">392</a> restriction, you may remove that term. If a license document contains +<a href="#l393" class="line" id="l393">393</a> a further restriction but permits relicensing or conveying under this +<a href="#l394" class="line" id="l394">394</a> License, you may add to a covered work material governed by the terms +<a href="#l395" class="line" id="l395">395</a> of that license document, provided that the further restriction does +<a href="#l396" class="line" id="l396">396</a> not survive such relicensing or conveying. +<a href="#l397" class="line" id="l397">397</a> +<a href="#l398" class="line" id="l398">398</a> If you add terms to a covered work in accord with this section, you +<a href="#l399" class="line" id="l399">399</a> must place, in the relevant source files, a statement of the +<a href="#l400" class="line" id="l400">400</a> additional terms that apply to those files, or a notice indicating +<a href="#l401" class="line" id="l401">401</a> where to find the applicable terms. +<a href="#l402" class="line" id="l402">402</a> +<a href="#l403" class="line" id="l403">403</a> Additional terms, permissive or non-permissive, may be stated in the +<a href="#l404" class="line" id="l404">404</a> form of a separately written license, or stated as exceptions; +<a href="#l405" class="line" id="l405">405</a> the above requirements apply either way. +<a href="#l406" class="line" id="l406">406</a> +<a href="#l407" class="line" id="l407">407</a> 8. Termination. +<a href="#l408" class="line" id="l408">408</a> +<a href="#l409" class="line" id="l409">409</a> You may not propagate or modify a covered work except as expressly +<a href="#l410" class="line" id="l410">410</a> provided under this License. Any attempt otherwise to propagate or +<a href="#l411" class="line" id="l411">411</a> modify it is void, and will automatically terminate your rights under +<a href="#l412" class="line" id="l412">412</a> this License (including any patent licenses granted under the third +<a href="#l413" class="line" id="l413">413</a> paragraph of section 11). +<a href="#l414" class="line" id="l414">414</a> +<a href="#l415" class="line" id="l415">415</a> However, if you cease all violation of this License, then your +<a href="#l416" class="line" id="l416">416</a> license from a particular copyright holder is reinstated (a) +<a href="#l417" class="line" id="l417">417</a> provisionally, unless and until the copyright holder explicitly and +<a href="#l418" class="line" id="l418">418</a> finally terminates your license, and (b) permanently, if the copyright +<a href="#l419" class="line" id="l419">419</a> holder fails to notify you of the violation by some reasonable means +<a href="#l420" class="line" id="l420">420</a> prior to 60 days after the cessation. +<a href="#l421" class="line" id="l421">421</a> +<a href="#l422" class="line" id="l422">422</a> Moreover, your license from a particular copyright holder is +<a href="#l423" class="line" id="l423">423</a> reinstated permanently if the copyright holder notifies you of the +<a href="#l424" class="line" id="l424">424</a> violation by some reasonable means, this is the first time you have +<a href="#l425" class="line" id="l425">425</a> received notice of violation of this License (for any work) from that +<a href="#l426" class="line" id="l426">426</a> copyright holder, and you cure the violation prior to 30 days after +<a href="#l427" class="line" id="l427">427</a> your receipt of the notice. +<a href="#l428" class="line" id="l428">428</a> +<a href="#l429" class="line" id="l429">429</a> Termination of your rights under this section does not terminate the +<a href="#l430" class="line" id="l430">430</a> licenses of parties who have received copies or rights from you under +<a href="#l431" class="line" id="l431">431</a> this License. If your rights have been terminated and not permanently +<a href="#l432" class="line" id="l432">432</a> reinstated, you do not qualify to receive new licenses for the same +<a href="#l433" class="line" id="l433">433</a> material under section 10. +<a href="#l434" class="line" id="l434">434</a> +<a href="#l435" class="line" id="l435">435</a> 9. Acceptance Not Required for Having Copies. +<a href="#l436" class="line" id="l436">436</a> +<a href="#l437" class="line" id="l437">437</a> You are not required to accept this License in order to receive or +<a href="#l438" class="line" id="l438">438</a> run a copy of the Program. Ancillary propagation of a covered work +<a href="#l439" class="line" id="l439">439</a> occurring solely as a consequence of using peer-to-peer transmission +<a href="#l440" class="line" id="l440">440</a> to receive a copy likewise does not require acceptance. However, +<a href="#l441" class="line" id="l441">441</a> nothing other than this License grants you permission to propagate or +<a href="#l442" class="line" id="l442">442</a> modify any covered work. These actions infringe copyright if you do +<a href="#l443" class="line" id="l443">443</a> not accept this License. Therefore, by modifying or propagating a +<a href="#l444" class="line" id="l444">444</a> covered work, you indicate your acceptance of this License to do so. +<a href="#l445" class="line" id="l445">445</a> +<a href="#l446" class="line" id="l446">446</a> 10. Automatic Licensing of Downstream Recipients. +<a href="#l447" class="line" id="l447">447</a> +<a href="#l448" class="line" id="l448">448</a> Each time you convey a covered work, the recipient automatically +<a href="#l449" class="line" id="l449">449</a> receives a license from the original licensors, to run, modify and +<a href="#l450" class="line" id="l450">450</a> propagate that work, subject to this License. You are not responsible +<a href="#l451" class="line" id="l451">451</a> for enforcing compliance by third parties with this License. +<a href="#l452" class="line" id="l452">452</a> +<a href="#l453" class="line" id="l453">453</a> An "entity transaction" is a transaction transferring control of an +<a href="#l454" class="line" id="l454">454</a> organization, or substantially all assets of one, or subdividing an +<a href="#l455" class="line" id="l455">455</a> organization, or merging organizations. If propagation of a covered +<a href="#l456" class="line" id="l456">456</a> work results from an entity transaction, each party to that +<a href="#l457" class="line" id="l457">457</a> transaction who receives a copy of the work also receives whatever +<a href="#l458" class="line" id="l458">458</a> licenses to the work the party's predecessor in interest had or could +<a href="#l459" class="line" id="l459">459</a> give under the previous paragraph, plus a right to possession of the +<a href="#l460" class="line" id="l460">460</a> Corresponding Source of the work from the predecessor in interest, if +<a href="#l461" class="line" id="l461">461</a> the predecessor has it or can get it with reasonable efforts. +<a href="#l462" class="line" id="l462">462</a> +<a href="#l463" class="line" id="l463">463</a> You may not impose any further restrictions on the exercise of the +<a href="#l464" class="line" id="l464">464</a> rights granted or affirmed under this License. For example, you may +<a href="#l465" class="line" id="l465">465</a> not impose a license fee, royalty, or other charge for exercise of +<a href="#l466" class="line" id="l466">466</a> rights granted under this License, and you may not initiate litigation +<a href="#l467" class="line" id="l467">467</a> (including a cross-claim or counterclaim in a lawsuit) alleging that +<a href="#l468" class="line" id="l468">468</a> any patent claim is infringed by making, using, selling, offering for +<a href="#l469" class="line" id="l469">469</a> sale, or importing the Program or any portion of it. +<a href="#l470" class="line" id="l470">470</a> +<a href="#l471" class="line" id="l471">471</a> 11. Patents. +<a href="#l472" class="line" id="l472">472</a> +<a href="#l473" class="line" id="l473">473</a> A "contributor" is a copyright holder who authorizes use under this +<a href="#l474" class="line" id="l474">474</a> License of the Program or a work on which the Program is based. The +<a href="#l475" class="line" id="l475">475</a> work thus licensed is called the contributor's "contributor version". +<a href="#l476" class="line" id="l476">476</a> +<a href="#l477" class="line" id="l477">477</a> A contributor's "essential patent claims" are all patent claims +<a href="#l478" class="line" id="l478">478</a> owned or controlled by the contributor, whether already acquired or +<a href="#l479" class="line" id="l479">479</a> hereafter acquired, that would be infringed by some manner, permitted +<a href="#l480" class="line" id="l480">480</a> by this License, of making, using, or selling its contributor version, +<a href="#l481" class="line" id="l481">481</a> but do not include claims that would be infringed only as a +<a href="#l482" class="line" id="l482">482</a> consequence of further modification of the contributor version. For +<a href="#l483" class="line" id="l483">483</a> purposes of this definition, "control" includes the right to grant +<a href="#l484" class="line" id="l484">484</a> patent sublicenses in a manner consistent with the requirements of +<a href="#l485" class="line" id="l485">485</a> this License. +<a href="#l486" class="line" id="l486">486</a> +<a href="#l487" class="line" id="l487">487</a> Each contributor grants you a non-exclusive, worldwide, royalty-free +<a href="#l488" class="line" id="l488">488</a> patent license under the contributor's essential patent claims, to +<a href="#l489" class="line" id="l489">489</a> make, use, sell, offer for sale, import and otherwise run, modify and +<a href="#l490" class="line" id="l490">490</a> propagate the contents of its contributor version. +<a href="#l491" class="line" id="l491">491</a> +<a href="#l492" class="line" id="l492">492</a> In the following three paragraphs, a "patent license" is any express +<a href="#l493" class="line" id="l493">493</a> agreement or commitment, however denominated, not to enforce a patent +<a href="#l494" class="line" id="l494">494</a> (such as an express permission to practice a patent or covenant not to +<a href="#l495" class="line" id="l495">495</a> sue for patent infringement). To "grant" such a patent license to a +<a href="#l496" class="line" id="l496">496</a> party means to make such an agreement or commitment not to enforce a +<a href="#l497" class="line" id="l497">497</a> patent against the party. +<a href="#l498" class="line" id="l498">498</a> +<a href="#l499" class="line" id="l499">499</a> If you convey a covered work, knowingly relying on a patent license, +<a href="#l500" class="line" id="l500">500</a> and the Corresponding Source of the work is not available for anyone +<a href="#l501" class="line" id="l501">501</a> to copy, free of charge and under the terms of this License, through a +<a href="#l502" class="line" id="l502">502</a> publicly available network server or other readily accessible means, +<a href="#l503" class="line" id="l503">503</a> then you must either (1) cause the Corresponding Source to be so +<a href="#l504" class="line" id="l504">504</a> available, or (2) arrange to deprive yourself of the benefit of the +<a href="#l505" class="line" id="l505">505</a> patent license for this particular work, or (3) arrange, in a manner +<a href="#l506" class="line" id="l506">506</a> consistent with the requirements of this License, to extend the patent +<a href="#l507" class="line" id="l507">507</a> license to downstream recipients. "Knowingly relying" means you have +<a href="#l508" class="line" id="l508">508</a> actual knowledge that, but for the patent license, your conveying the +<a href="#l509" class="line" id="l509">509</a> covered work in a country, or your recipient's use of the covered work +<a href="#l510" class="line" id="l510">510</a> in a country, would infringe one or more identifiable patents in that +<a href="#l511" class="line" id="l511">511</a> country that you have reason to believe are valid. +<a href="#l512" class="line" id="l512">512</a> +<a href="#l513" class="line" id="l513">513</a> If, pursuant to or in connection with a single transaction or +<a href="#l514" class="line" id="l514">514</a> arrangement, you convey, or propagate by procuring conveyance of, a +<a href="#l515" class="line" id="l515">515</a> covered work, and grant a patent license to some of the parties +<a href="#l516" class="line" id="l516">516</a> receiving the covered work authorizing them to use, propagate, modify +<a href="#l517" class="line" id="l517">517</a> or convey a specific copy of the covered work, then the patent license +<a href="#l518" class="line" id="l518">518</a> you grant is automatically extended to all recipients of the covered +<a href="#l519" class="line" id="l519">519</a> work and works based on it. +<a href="#l520" class="line" id="l520">520</a> +<a href="#l521" class="line" id="l521">521</a> A patent license is "discriminatory" if it does not include within +<a href="#l522" class="line" id="l522">522</a> the scope of its coverage, prohibits the exercise of, or is +<a href="#l523" class="line" id="l523">523</a> conditioned on the non-exercise of one or more of the rights that are +<a href="#l524" class="line" id="l524">524</a> specifically granted under this License. You may not convey a covered +<a href="#l525" class="line" id="l525">525</a> work if you are a party to an arrangement with a third party that is +<a href="#l526" class="line" id="l526">526</a> in the business of distributing software, under which you make payment +<a href="#l527" class="line" id="l527">527</a> to the third party based on the extent of your activity of conveying +<a href="#l528" class="line" id="l528">528</a> the work, and under which the third party grants, to any of the +<a href="#l529" class="line" id="l529">529</a> parties who would receive the covered work from you, a discriminatory +<a href="#l530" class="line" id="l530">530</a> patent license (a) in connection with copies of the covered work +<a href="#l531" class="line" id="l531">531</a> conveyed by you (or copies made from those copies), or (b) primarily +<a href="#l532" class="line" id="l532">532</a> for and in connection with specific products or compilations that +<a href="#l533" class="line" id="l533">533</a> contain the covered work, unless you entered into that arrangement, +<a href="#l534" class="line" id="l534">534</a> or that patent license was granted, prior to 28 March 2007. +<a href="#l535" class="line" id="l535">535</a> +<a href="#l536" class="line" id="l536">536</a> Nothing in this License shall be construed as excluding or limiting +<a href="#l537" class="line" id="l537">537</a> any implied license or other defenses to infringement that may +<a href="#l538" class="line" id="l538">538</a> otherwise be available to you under applicable patent law. +<a href="#l539" class="line" id="l539">539</a> +<a href="#l540" class="line" id="l540">540</a> 12. No Surrender of Others' Freedom. +<a href="#l541" class="line" id="l541">541</a> +<a href="#l542" class="line" id="l542">542</a> If conditions are imposed on you (whether by court order, agreement or +<a href="#l543" class="line" id="l543">543</a> otherwise) that contradict the conditions of this License, they do not +<a href="#l544" class="line" id="l544">544</a> excuse you from the conditions of this License. If you cannot convey a +<a href="#l545" class="line" id="l545">545</a> covered work so as to satisfy simultaneously your obligations under this +<a href="#l546" class="line" id="l546">546</a> License and any other pertinent obligations, then as a consequence you may +<a href="#l547" class="line" id="l547">547</a> not convey it at all. For example, if you agree to terms that obligate you +<a href="#l548" class="line" id="l548">548</a> to collect a royalty for further conveying from those to whom you convey +<a href="#l549" class="line" id="l549">549</a> the Program, the only way you could satisfy both those terms and this +<a href="#l550" class="line" id="l550">550</a> License would be to refrain entirely from conveying the Program. +<a href="#l551" class="line" id="l551">551</a> +<a href="#l552" class="line" id="l552">552</a> 13. Use with the GNU Affero General Public License. +<a href="#l553" class="line" id="l553">553</a> +<a href="#l554" class="line" id="l554">554</a> Notwithstanding any other provision of this License, you have +<a href="#l555" class="line" id="l555">555</a> permission to link or combine any covered work with a work licensed +<a href="#l556" class="line" id="l556">556</a> under version 3 of the GNU Affero General Public License into a single +<a href="#l557" class="line" id="l557">557</a> combined work, and to convey the resulting work. The terms of this +<a href="#l558" class="line" id="l558">558</a> License will continue to apply to the part which is the covered work, +<a href="#l559" class="line" id="l559">559</a> but the special requirements of the GNU Affero General Public License, +<a href="#l560" class="line" id="l560">560</a> section 13, concerning interaction through a network will apply to the +<a href="#l561" class="line" id="l561">561</a> combination as such. +<a href="#l562" class="line" id="l562">562</a> +<a href="#l563" class="line" id="l563">563</a> 14. Revised Versions of this License. +<a href="#l564" class="line" id="l564">564</a> +<a href="#l565" class="line" id="l565">565</a> The Free Software Foundation may publish revised and/or new versions of +<a href="#l566" class="line" id="l566">566</a> the GNU General Public License from time to time. Such new versions will +<a href="#l567" class="line" id="l567">567</a> be similar in spirit to the present version, but may differ in detail to +<a href="#l568" class="line" id="l568">568</a> address new problems or concerns. +<a href="#l569" class="line" id="l569">569</a> +<a href="#l570" class="line" id="l570">570</a> Each version is given a distinguishing version number. If the +<a href="#l571" class="line" id="l571">571</a> Program specifies that a certain numbered version of the GNU General +<a href="#l572" class="line" id="l572">572</a> Public License "or any later version" applies to it, you have the +<a href="#l573" class="line" id="l573">573</a> option of following the terms and conditions either of that numbered +<a href="#l574" class="line" id="l574">574</a> version or of any later version published by the Free Software +<a href="#l575" class="line" id="l575">575</a> Foundation. If the Program does not specify a version number of the +<a href="#l576" class="line" id="l576">576</a> GNU General Public License, you may choose any version ever published +<a href="#l577" class="line" id="l577">577</a> by the Free Software Foundation. +<a href="#l578" class="line" id="l578">578</a> +<a href="#l579" class="line" id="l579">579</a> If the Program specifies that a proxy can decide which future +<a href="#l580" class="line" id="l580">580</a> versions of the GNU General Public License can be used, that proxy's +<a href="#l581" class="line" id="l581">581</a> public statement of acceptance of a version permanently authorizes you +<a href="#l582" class="line" id="l582">582</a> to choose that version for the Program. +<a href="#l583" class="line" id="l583">583</a> +<a href="#l584" class="line" id="l584">584</a> Later license versions may give you additional or different +<a href="#l585" class="line" id="l585">585</a> permissions. However, no additional obligations are imposed on any +<a href="#l586" class="line" id="l586">586</a> author or copyright holder as a result of your choosing to follow a +<a href="#l587" class="line" id="l587">587</a> later version. +<a href="#l588" class="line" id="l588">588</a> +<a href="#l589" class="line" id="l589">589</a> 15. Disclaimer of Warranty. +<a href="#l590" class="line" id="l590">590</a> +<a href="#l591" class="line" id="l591">591</a> THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +<a href="#l592" class="line" id="l592">592</a> APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +<a href="#l593" class="line" id="l593">593</a> HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +<a href="#l594" class="line" id="l594">594</a> OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +<a href="#l595" class="line" id="l595">595</a> THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +<a href="#l596" class="line" id="l596">596</a> PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +<a href="#l597" class="line" id="l597">597</a> IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +<a href="#l598" class="line" id="l598">598</a> ALL NECESSARY SERVICING, REPAIR OR CORRECTION. +<a href="#l599" class="line" id="l599">599</a> +<a href="#l600" class="line" id="l600">600</a> 16. Limitation of Liability. +<a href="#l601" class="line" id="l601">601</a> +<a href="#l602" class="line" id="l602">602</a> IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +<a href="#l603" class="line" id="l603">603</a> WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +<a href="#l604" class="line" id="l604">604</a> THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +<a href="#l605" class="line" id="l605">605</a> GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +<a href="#l606" class="line" id="l606">606</a> USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +<a href="#l607" class="line" id="l607">607</a> DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +<a href="#l608" class="line" id="l608">608</a> PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +<a href="#l609" class="line" id="l609">609</a> EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +<a href="#l610" class="line" id="l610">610</a> SUCH DAMAGES. +<a href="#l611" class="line" id="l611">611</a> +<a href="#l612" class="line" id="l612">612</a> 17. Interpretation of Sections 15 and 16. +<a href="#l613" class="line" id="l613">613</a> +<a href="#l614" class="line" id="l614">614</a> If the disclaimer of warranty and limitation of liability provided +<a href="#l615" class="line" id="l615">615</a> above cannot be given local legal effect according to their terms, +<a href="#l616" class="line" id="l616">616</a> reviewing courts shall apply local law that most closely approximates +<a href="#l617" class="line" id="l617">617</a> an absolute waiver of all civil liability in connection with the +<a href="#l618" class="line" id="l618">618</a> Program, unless a warranty or assumption of liability accompanies a +<a href="#l619" class="line" id="l619">619</a> copy of the Program in return for a fee. +<a href="#l620" class="line" id="l620">620</a> +<a href="#l621" class="line" id="l621">621</a> END OF TERMS AND CONDITIONS +<a href="#l622" class="line" id="l622">622</a> +<a href="#l623" class="line" id="l623">623</a> How to Apply These Terms to Your New Programs +<a href="#l624" class="line" id="l624">624</a> +<a href="#l625" class="line" id="l625">625</a> If you develop a new program, and you want it to be of the greatest +<a href="#l626" class="line" id="l626">626</a> possible use to the public, the best way to achieve this is to make it +<a href="#l627" class="line" id="l627">627</a> free software which everyone can redistribute and change under these terms. +<a href="#l628" class="line" id="l628">628</a> +<a href="#l629" class="line" id="l629">629</a> To do so, attach the following notices to the program. It is safest +<a href="#l630" class="line" id="l630">630</a> to attach them to the start of each source file to most effectively +<a href="#l631" class="line" id="l631">631</a> state the exclusion of warranty; and each file should have at least +<a href="#l632" class="line" id="l632">632</a> the "copyright" line and a pointer to where the full notice is found. +<a href="#l633" class="line" id="l633">633</a> +<a href="#l634" class="line" id="l634">634</a> <one line to give the program's name and a brief idea of what it does.> +<a href="#l635" class="line" id="l635">635</a> Copyright (C) <year> <name of author> +<a href="#l636" class="line" id="l636">636</a> +<a href="#l637" class="line" id="l637">637</a> This program is free software: you can redistribute it and/or modify +<a href="#l638" class="line" id="l638">638</a> it under the terms of the GNU General Public License as published by +<a href="#l639" class="line" id="l639">639</a> the Free Software Foundation, either version 3 of the License, or +<a href="#l640" class="line" id="l640">640</a> (at your option) any later version. +<a href="#l641" class="line" id="l641">641</a> +<a href="#l642" class="line" id="l642">642</a> This program is distributed in the hope that it will be useful, +<a href="#l643" class="line" id="l643">643</a> but WITHOUT ANY WARRANTY; without even the implied warranty of +<a href="#l644" class="line" id="l644">644</a> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +<a href="#l645" class="line" id="l645">645</a> GNU General Public License for more details. +<a href="#l646" class="line" id="l646">646</a> +<a href="#l647" class="line" id="l647">647</a> You should have received a copy of the GNU General Public License +<a href="#l648" class="line" id="l648">648</a> along with this program. If not, see <https://www.gnu.org/licenses/>. +<a href="#l649" class="line" id="l649">649</a> +<a href="#l650" class="line" id="l650">650</a> Also add information on how to contact you by electronic and paper mail. +<a href="#l651" class="line" id="l651">651</a> +<a href="#l652" class="line" id="l652">652</a> If the program does terminal interaction, make it output a short +<a href="#l653" class="line" id="l653">653</a> notice like this when it starts in an interactive mode: +<a href="#l654" class="line" id="l654">654</a> +<a href="#l655" class="line" id="l655">655</a> <program> Copyright (C) <year> <name of author> +<a href="#l656" class="line" id="l656">656</a> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +<a href="#l657" class="line" id="l657">657</a> This is free software, and you are welcome to redistribute it +<a href="#l658" class="line" id="l658">658</a> under certain conditions; type `show c' for details. +<a href="#l659" class="line" id="l659">659</a> +<a href="#l660" class="line" id="l660">660</a> The hypothetical commands `show w' and `show c' should show the appropriate +<a href="#l661" class="line" id="l661">661</a> parts of the General Public License. Of course, your program's commands +<a href="#l662" class="line" id="l662">662</a> might be different; for a GUI interface, you would use an "about box". +<a href="#l663" class="line" id="l663">663</a> +<a href="#l664" class="line" id="l664">664</a> You should also get your employer (if you work as a programmer) or school, +<a href="#l665" class="line" id="l665">665</a> if any, to sign a "copyright disclaimer" for the program, if necessary. +<a href="#l666" class="line" id="l666">666</a> For more information on this, and how to apply and follow the GNU GPL, see +<a href="#l667" class="line" id="l667">667</a> <https://www.gnu.org/licenses/>. +<a href="#l668" class="line" id="l668">668</a> +<a href="#l669" class="line" id="l669">669</a> The GNU General Public License does not permit incorporating your program +<a href="#l670" class="line" id="l670">670</a> into proprietary programs. If your program is a subroutine library, you +<a href="#l671" class="line" id="l671">671</a> may consider it more useful to permit linking proprietary applications with +<a href="#l672" class="line" id="l672">672</a> the library. If this is what you want to do, use the GNU Lesser General +<a href="#l673" class="line" id="l673">673</a> Public License instead of this License. But first, please read +<a href="#l674" class="line" id="l674">674</a> <https://www.gnu.org/licenses/why-not-lgpl.html>. +</pre> +</div> + +</main> +<footer>made with ❤️ by <a href="https://pablopie.xyz/">@pablo</a></footer> + + +</body></html>
diff --git a/styles.css b/styles.css @@ -160,3 +160,13 @@ nav img { .codeblock pre { margin: 0; } + +.line { + color: var(--accent); + font-weight: bold; + text-decoration: none; +} + +.line:hover { + text-decoration: underline; +}