jekyll-theme-hydebetty 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (301) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +622 -0
  3. data/README.md +180 -0
  4. data/_includes/body/analytics.html +43 -0
  5. data/_includes/body/comments.html +6 -0
  6. data/_includes/body/footer.html +19 -0
  7. data/_includes/body/index.html +22 -0
  8. data/_includes/body/main.html +18 -0
  9. data/_includes/body/menu.html +24 -0
  10. data/_includes/body/nav.html +41 -0
  11. data/_includes/body/scripts.html +9 -0
  12. data/_includes/body/sidebar.html +47 -0
  13. data/_includes/components/about.html +8 -0
  14. data/_includes/components/author.html +24 -0
  15. data/_includes/components/avatar-tag.html +4 -0
  16. data/_includes/components/hy-img.html +40 -0
  17. data/_includes/components/link.html +12 -0
  18. data/_includes/components/message.html +14 -0
  19. data/_includes/components/pagination.html +15 -0
  20. data/_includes/components/post-list-item.html +7 -0
  21. data/_includes/components/post.html +49 -0
  22. data/_includes/components/related-posts.html +25 -0
  23. data/_includes/components/social-list-item.html +40 -0
  24. data/_includes/components/social.html +23 -0
  25. data/_includes/components/tag-list.html +26 -0
  26. data/_includes/head/feed-tag.html +1 -0
  27. data/_includes/head/index.html +9 -0
  28. data/_includes/head/links.html +33 -0
  29. data/_includes/head/meta.html +34 -0
  30. data/_includes/head/page-style.html +6 -0
  31. data/_includes/head/scripts.html +9 -0
  32. data/_includes/head/seo-fallback.html +13 -0
  33. data/_includes/head/seo-tag.html +4 -0
  34. data/_includes/head/styles.html +41 -0
  35. data/_includes/header.txt +13 -0
  36. data/_includes/icon-github.html +2 -0
  37. data/_includes/my-body.html +42 -0
  38. data/_includes/my-comments.html +24 -0
  39. data/_includes/my-head.html +13 -0
  40. data/_includes/my-scripts.html +55 -0
  41. data/_includes/scripts/cssrelpreload.min.js +1 -0
  42. data/_includes/scripts/load-js.js +60 -0
  43. data/_includes/scripts/load-js.min.js +0 -0
  44. data/_includes/scripts/loadCSS.min.js +1 -0
  45. data/_includes/scripts/nomodule.js +21 -0
  46. data/_includes/scripts/nomodule.min.js +0 -0
  47. data/_includes/scripts.html +33 -0
  48. data/_includes/smart-url.txt +1 -0
  49. data/_includes/styles/inline.scss +62 -0
  50. data/_includes/styles/page-style.scss +64 -0
  51. data/_includes/styles/style.scss +113 -0
  52. data/_includes/templates/animation.html +7 -0
  53. data/_includes/templates/back.html +6 -0
  54. data/_includes/templates/error.html +10 -0
  55. data/_includes/templates/forward.html +6 -0
  56. data/_includes/templates/index.html +12 -0
  57. data/_includes/templates/loading.html +6 -0
  58. data/_includes/templates/permalink.html +6 -0
  59. data/_layouts/about.html +43 -0
  60. data/_layouts/base.html +38 -0
  61. data/_layouts/blog.html +32 -0
  62. data/_layouts/compress.html +15 -0
  63. data/_layouts/default.html +56 -0
  64. data/_layouts/home.html +20 -0
  65. data/_layouts/list.html +46 -0
  66. data/_layouts/not-found.html +37 -0
  67. data/_layouts/page.html +27 -0
  68. data/_layouts/post.html +34 -0
  69. data/_layouts/redirect.html +23 -0
  70. data/_sass/_mixins.scss +63 -0
  71. data/_sass/_reboot-mod.scss +286 -0
  72. data/_sass/_spinner.scss +45 -0
  73. data/_sass/_syntax.scss +131 -0
  74. data/_sass/_variables.scss +63 -0
  75. data/_sass/hydejack/__inline__/_avatar.scss +48 -0
  76. data/_sass/hydejack/__inline__/_base.scss +73 -0
  77. data/_sass/hydejack/__inline__/_break-layout.scss +25 -0
  78. data/_sass/hydejack/__inline__/_content.scss +59 -0
  79. data/_sass/hydejack/__inline__/_footer.scss +25 -0
  80. data/_sass/hydejack/__inline__/_images.scss +38 -0
  81. data/_sass/hydejack/__inline__/_katex.scss +25 -0
  82. data/_sass/hydejack/__inline__/_links.scss +45 -0
  83. data/_sass/hydejack/__inline__/_mark-external.scss +25 -0
  84. data/_sass/hydejack/__inline__/_menu.scss +67 -0
  85. data/_sass/hydejack/__inline__/_sidebar.scss +144 -0
  86. data/_sass/hydejack/__inline__/_social.scss +58 -0
  87. data/_sass/hydejack/__inline__/_utilities.scss +45 -0
  88. data/_sass/hydejack/__link__/_avatar.scss +38 -0
  89. data/_sass/hydejack/__link__/_base.scss +42 -0
  90. data/_sass/hydejack/__link__/_break-layout.scss +64 -0
  91. data/_sass/hydejack/__link__/_content.scss +32 -0
  92. data/_sass/hydejack/__link__/_footer.scss +47 -0
  93. data/_sass/hydejack/__link__/_images.scss +90 -0
  94. data/_sass/hydejack/__link__/_katex.scss +57 -0
  95. data/_sass/hydejack/__link__/_links.scss +53 -0
  96. data/_sass/hydejack/__link__/_mark-external.scss +51 -0
  97. data/_sass/hydejack/__link__/_menu.scss +42 -0
  98. data/_sass/hydejack/__link__/_sidebar.scss +114 -0
  99. data/_sass/hydejack/__link__/_social.scss +33 -0
  100. data/_sass/hydejack/__link__/_utilities.scss +54 -0
  101. data/_sass/hydejack/_avatar.pre.scss +44 -0
  102. data/_sass/hydejack/_base.pre.scss +78 -0
  103. data/_sass/hydejack/_break-layout.pre.scss +55 -0
  104. data/_sass/hydejack/_content.pre.scss +56 -0
  105. data/_sass/hydejack/_footer.pre.scss +38 -0
  106. data/_sass/hydejack/_images.pre.scss +83 -0
  107. data/_sass/hydejack/_katex.pre.scss +48 -0
  108. data/_sass/hydejack/_links.pre.scss +47 -0
  109. data/_sass/hydejack/_mark-external.pre.scss +42 -0
  110. data/_sass/hydejack/_menu.pre.scss +74 -0
  111. data/_sass/hydejack/_sidebar.pre.scss +175 -0
  112. data/_sass/hydejack/_social.pre.scss +55 -0
  113. data/_sass/hydejack/_utilities.pre.scss +46 -0
  114. data/_sass/my-inline.scss +16 -0
  115. data/_sass/my-style.scss +9 -0
  116. data/_sass/my-variables.scss +1 -0
  117. data/_sass/pooleparty/__inline__/_base.scss +75 -0
  118. data/_sass/pooleparty/__inline__/_code.scss +25 -0
  119. data/_sass/pooleparty/__inline__/_footer.scss +25 -0
  120. data/_sass/pooleparty/__inline__/_footnotes.scss +25 -0
  121. data/_sass/pooleparty/__inline__/_message.scss +35 -0
  122. data/_sass/pooleparty/__inline__/_pagination.scss +25 -0
  123. data/_sass/pooleparty/__inline__/_posts.scss +49 -0
  124. data/_sass/pooleparty/__inline__/_read-more.scss +25 -0
  125. data/_sass/pooleparty/__inline__/_related.scss +38 -0
  126. data/_sass/pooleparty/__inline__/_table.scss +53 -0
  127. data/_sass/pooleparty/__inline__/_type.scss +88 -0
  128. data/_sass/pooleparty/__link__/_base.scss +40 -0
  129. data/_sass/pooleparty/__link__/_code.scss +75 -0
  130. data/_sass/pooleparty/__link__/_footer.scss +25 -0
  131. data/_sass/pooleparty/__link__/_footnotes.scss +80 -0
  132. data/_sass/pooleparty/__link__/_message.scss +25 -0
  133. data/_sass/pooleparty/__link__/_pagination.scss +90 -0
  134. data/_sass/pooleparty/__link__/_posts.scss +38 -0
  135. data/_sass/pooleparty/__link__/_read-more.scss +45 -0
  136. data/_sass/pooleparty/__link__/_related.scss +33 -0
  137. data/_sass/pooleparty/__link__/_table.scss +171 -0
  138. data/_sass/pooleparty/__link__/_type.scss +141 -0
  139. data/_sass/pooleparty/_base.pre.scss +74 -0
  140. data/_sass/pooleparty/_code.pre.scss +66 -0
  141. data/_sass/pooleparty/_footer.pre.scss +16 -0
  142. data/_sass/pooleparty/_footnotes.pre.scss +71 -0
  143. data/_sass/pooleparty/_message.pre.scss +26 -0
  144. data/_sass/pooleparty/_pagination.pre.scss +81 -0
  145. data/_sass/pooleparty/_posts.pre.scss +52 -0
  146. data/_sass/pooleparty/_read-more.pre.scss +36 -0
  147. data/_sass/pooleparty/_related.pre.scss +35 -0
  148. data/_sass/pooleparty/_table.pre.scss +180 -0
  149. data/_sass/pooleparty/_type.pre.scss +193 -0
  150. data/assets/Resume.pdf +0 -0
  151. data/assets/bower.json +11 -0
  152. data/assets/bower_components/html5shiv/.bower.json +26 -0
  153. data/assets/bower_components/html5shiv/Gruntfile.js +61 -0
  154. data/assets/bower_components/html5shiv/bower.json +15 -0
  155. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.js +524 -0
  156. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  157. data/assets/bower_components/html5shiv/dist/html5shiv.js +326 -0
  158. data/assets/bower_components/html5shiv/dist/html5shiv.min.js +4 -0
  159. data/assets/bower_components/html5shiv/package.json +16 -0
  160. data/assets/bower_components/katex/.bower.json +47 -0
  161. data/assets/bower_components/katex/LICENSE +21 -0
  162. data/assets/bower_components/katex/bower.json +36 -0
  163. data/assets/bower_components/katex/dist/contrib/auto-render.js +339 -0
  164. data/assets/bower_components/katex/dist/contrib/auto-render.min.js +1 -0
  165. data/assets/bower_components/katex/dist/contrib/auto-render.mjs +215 -0
  166. data/assets/bower_components/katex/dist/contrib/copy-tex.css +14 -0
  167. data/assets/bower_components/katex/dist/contrib/copy-tex.js +213 -0
  168. data/assets/bower_components/katex/dist/contrib/copy-tex.min.css +1 -0
  169. data/assets/bower_components/katex/dist/contrib/copy-tex.min.js +1 -0
  170. data/assets/bower_components/katex/dist/contrib/copy-tex.mjs +85 -0
  171. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.js +137 -0
  172. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.min.js +1 -0
  173. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.mjs +24 -0
  174. data/assets/bower_components/katex/dist/contrib/mhchem.js +3241 -0
  175. data/assets/bower_components/katex/dist/contrib/mhchem.min.js +1 -0
  176. data/assets/bower_components/katex/dist/contrib/mhchem.mjs +3109 -0
  177. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.ttf +0 -0
  178. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff +0 -0
  179. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  180. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  181. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  182. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  183. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  184. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  185. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  186. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  187. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  188. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  189. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  190. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  191. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  192. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.ttf +0 -0
  193. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff +0 -0
  194. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff2 +0 -0
  195. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  196. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  197. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  198. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.ttf +0 -0
  199. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff +0 -0
  200. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff2 +0 -0
  201. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.ttf +0 -0
  202. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff +0 -0
  203. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff2 +0 -0
  204. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  205. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  206. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  207. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.ttf +0 -0
  208. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff +0 -0
  209. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff2 +0 -0
  210. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  211. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  212. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  213. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  214. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  215. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  216. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  217. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  218. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  219. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.ttf +0 -0
  220. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff +0 -0
  221. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff2 +0 -0
  222. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.ttf +0 -0
  223. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff +0 -0
  224. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  225. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.ttf +0 -0
  226. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff +0 -0
  227. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  228. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.ttf +0 -0
  229. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff +0 -0
  230. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  231. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.ttf +0 -0
  232. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff +0 -0
  233. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  234. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  235. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  236. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  237. data/assets/bower_components/katex/dist/katex.css +1021 -0
  238. data/assets/bower_components/katex/dist/katex.js +16809 -0
  239. data/assets/bower_components/katex/dist/katex.min.css +1 -0
  240. data/assets/bower_components/katex/dist/katex.min.js +1 -0
  241. data/assets/bower_components/katex/dist/katex.mjs +16342 -0
  242. data/assets/bower_components/katex/yarn.lock +8952 -0
  243. data/assets/css/hydejack-7.5.2.css +3 -0
  244. data/assets/css/hydejack-8.5.2.css +3 -0
  245. data/assets/icomoon/fonts/icomoon.eot +0 -0
  246. data/assets/icomoon/fonts/icomoon.svg +96 -0
  247. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  248. data/assets/icomoon/fonts/icomoon.woff +0 -0
  249. data/assets/icomoon/selection.json +1 -0
  250. data/assets/icomoon/style.css +284 -0
  251. data/assets/icons/favicon.ico +0 -0
  252. data/assets/icons/icon.png +0 -0
  253. data/assets/icons/icon@0,25x.png +0 -0
  254. data/assets/icons/icon@0,5x.png +0 -0
  255. data/assets/icons/icon@0,75x.png +0 -0
  256. data/assets/icons/icon@2x.png +0 -0
  257. data/assets/icons/icon@3x.png +0 -0
  258. data/assets/icons/tile-large.png +0 -0
  259. data/assets/icons/tile-medium.png +0 -0
  260. data/assets/icons/tile-small.png +0 -0
  261. data/assets/icons/tile-wide.png +0 -0
  262. data/assets/ieconfig.xml +15 -0
  263. data/assets/img/blog/COLOURlovers.com-Hydejack.png +0 -0
  264. data/assets/img/blog/blog-layout.jpg +0 -0
  265. data/assets/img/blog/caleb-george-old.jpg +0 -0
  266. data/assets/img/blog/caleb-george.jpg +0 -0
  267. data/assets/img/blog/cover-page.jpg +0 -0
  268. data/assets/img/blog/dark-mode-ii.jpg +0 -0
  269. data/assets/img/blog/dark-mode.jpg +0 -0
  270. data/assets/img/blog/example-content-ii.jpg +0 -0
  271. data/assets/img/blog/example-content-iii.jpg +0 -0
  272. data/assets/img/blog/hydejack-8.png +0 -0
  273. data/assets/img/blog/hydejack-8@0,25x.png +0 -0
  274. data/assets/img/blog/hydejack-8@0,5x.png +0 -0
  275. data/assets/img/blog/lazy-images.jpg +0 -0
  276. data/assets/img/blog/louis-hansel.jpg +0 -0
  277. data/assets/img/blog/resume.png +0 -0
  278. data/assets/img/blog/steve-harvey.jpg +0 -0
  279. data/assets/img/blog/w3m.png +0 -0
  280. data/assets/img/blog/wade-lambert.jpg +0 -0
  281. data/assets/img/docs/google-fonts.png +0 -0
  282. data/assets/img/projects/hy-drawer.svg +12 -0
  283. data/assets/img/projects/hy-img.svg +17 -0
  284. data/assets/img/projects/hy-push-state.svg +13 -0
  285. data/assets/img/sidebar-bg.jpg +0 -0
  286. data/assets/img/swipe.svg +22 -0
  287. data/assets/js/hydejack-8.5.2.js +161 -0
  288. data/assets/js/hydejack-legacy-8.5.2.js +190 -0
  289. data/assets/manifest.json +46 -0
  290. data/assets/version.json +3 -0
  291. data/assets/video/blog-layout.mp4 +0 -0
  292. data/assets/video/cover-page.mp4 +0 -0
  293. data/assets/video/dark-mode.mp4 +0 -0
  294. data/assets/video/lazy-images.mp4 +0 -0
  295. data/licenses/Apache-2.0.md +208 -0
  296. data/licenses/GPL-3.0.md +620 -0
  297. data/licenses/MIT.md +21 -0
  298. data/licenses/PRO.md +136 -0
  299. data/licenses/README.md +10 -0
  300. data/licenses/W3C.md +31 -0
  301. metadata +385 -0
@@ -0,0 +1,46 @@
1
+ ---
2
+ # https://developer.mozilla.org/en-US/docs/Web/Manifest
3
+ ---
4
+ {
5
+ {% if site.lang %}"lang": "{{ site.lang }}",{% endif %}
6
+ "name": "{{ site.title }}",
7
+ "short_name": "{{ site.short_title | default:site.title }}",
8
+ "description": "{{ site.description | markdownify | strip_html | strip_newlines }}",
9
+ "start_url": "{{ '/' | relative_url }}?utm_source=homescreen",
10
+ "theme_color": "{{ site.theme_color | default:site.accent_color | default:'#4fb1ba' }}",
11
+ "background_color": "{{ site.background_color | default:'#fff' }}",
12
+ "orientation": "portrait",
13
+ "display": "standalone",
14
+ "icons": [
15
+ {
16
+ "src": "{{ 'assets/icons/icon@0,25x.png' | relative_url }}",
17
+ "type": "image/png",
18
+ "sizes": "48x48"
19
+ },
20
+ {
21
+ "src": "{{ 'assets/icons/icon@0,5x.png' | relative_url }}",
22
+ "type": "image/png",
23
+ "sizes": "96x96"
24
+ },
25
+ {
26
+ "src": "{{ 'assets/icons/icon@0,75x.png' | relative_url }}",
27
+ "type": "image/png",
28
+ "sizes": "144x144"
29
+ },
30
+ {
31
+ "src": "{{ 'assets/icons/icon.png' | relative_url }}",
32
+ "type": "image/png",
33
+ "sizes": "192x192"
34
+ },
35
+ {
36
+ "src": "{{ 'assets/icons/icon@2x.png' | relative_url }}",
37
+ "type": "image/png",
38
+ "sizes": "384x384"
39
+ },
40
+ {
41
+ "src": "{{ 'assets/icons/icon@3x.png' | relative_url }}",
42
+ "type": "image/png",
43
+ "sizes": "576x576"
44
+ }
45
+ ]
46
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "version": "8.5.2"
3
+ }
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,208 @@
1
+ # Apache License
2
+
3
+ Version 2.0, January 2004
4
+
5
+ <http://www.apache.org/licenses/>
6
+
7
+ ## TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+ ### 1. Definitions
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ ### 2. Grant of Copyright License
68
+ Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to reproduce, prepare Derivative Works of,
72
+ publicly display, publicly perform, sublicense, and distribute the
73
+ Work and such Derivative Works in Source or Object form.
74
+
75
+ ### 3. Grant of Patent License
76
+ Subject to the terms and conditions of
77
+ this License, each Contributor hereby grants to You a perpetual,
78
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
79
+ (except as stated in this section) patent license to make, have made,
80
+ use, offer to sell, sell, import, and otherwise transfer the Work,
81
+ where such license applies only to those patent claims licensable
82
+ by such Contributor that are necessarily infringed by their
83
+ Contribution(s) alone or by combination of their Contribution(s)
84
+ with the Work to which such Contribution(s) was submitted. If You
85
+ institute patent litigation against any entity (including a
86
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
87
+ or a Contribution incorporated within the Work constitutes direct
88
+ or contributory patent infringement, then any patent licenses
89
+ granted to You under this License for that Work shall terminate
90
+ as of the date such litigation is filed.
91
+
92
+ ### 4. Redistribution
93
+ You may reproduce and distribute copies of the
94
+ Work or Derivative Works thereof in any medium, with or without
95
+ modifications, and in Source or Object form, provided that You
96
+ meet the following conditions:
97
+
98
+ {:style="list-style: lower-latin"}
99
+ 1. You must give any other recipients of the Work or
100
+ Derivative Works a copy of this License; and
101
+
102
+ 2. You must cause any modified files to carry prominent notices
103
+ stating that You changed the files; and
104
+
105
+ 3. You must retain, in the Source form of any Derivative Works
106
+ that You distribute, all copyright, patent, trademark, and
107
+ attribution notices from the Source form of the Work,
108
+ excluding those notices that do not pertain to any part of
109
+ the Derivative Works; and
110
+
111
+ 4. If the Work includes a "NOTICE" text file as part of its
112
+ distribution, then any Derivative Works that You distribute must
113
+ include a readable copy of the attribution notices contained
114
+ within such NOTICE file, excluding those notices that do not
115
+ pertain to any part of the Derivative Works, in at least one
116
+ of the following places: within a NOTICE text file distributed
117
+ as part of the Derivative Works; within the Source form or
118
+ documentation, if provided along with the Derivative Works; or,
119
+ within a display generated by the Derivative Works, if and
120
+ wherever such third-party notices normally appear. The contents
121
+ of the NOTICE file are for informational purposes only and
122
+ do not modify the License. You may add Your own attribution
123
+ notices within Derivative Works that You distribute, alongside
124
+ or as an addendum to the NOTICE text from the Work, provided
125
+ that such additional attribution notices cannot be construed
126
+ as modifying the License.
127
+
128
+ You may add Your own copyright statement to Your modifications and
129
+ may provide additional or different license terms and conditions
130
+ for use, reproduction, or distribution of Your modifications, or
131
+ for any such Derivative Works as a whole, provided Your use,
132
+ reproduction, and distribution of the Work otherwise complies with
133
+ the conditions stated in this License.
134
+
135
+ ### 5. Submission of Contributions
136
+ Unless You explicitly state otherwise,
137
+ any Contribution intentionally submitted for inclusion in the Work
138
+ by You to the Licensor shall be under the terms and conditions of
139
+ this License, without any additional terms or conditions.
140
+ Notwithstanding the above, nothing herein shall supersede or modify
141
+ the terms of any separate license agreement you may have executed
142
+ with Licensor regarding such Contributions.
143
+
144
+ ### 6. Trademarks
145
+ This License does not grant permission to use the trade
146
+ names, trademarks, service marks, or product names of the Licensor,
147
+ except as required for reasonable and customary use in describing the
148
+ origin of the Work and reproducing the content of the NOTICE file.
149
+
150
+ ### 7. Disclaimer of Warranty
151
+ Unless required by applicable law or
152
+ agreed to in writing, Licensor provides the Work (and each
153
+ Contributor provides its Contributions) on an "AS IS" BASIS,
154
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
155
+ implied, including, without limitation, any warranties or conditions
156
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
157
+ PARTICULAR PURPOSE. You are solely responsible for determining the
158
+ appropriateness of using or redistributing the Work and assume any
159
+ risks associated with Your exercise of permissions under this License.
160
+
161
+ ### 8. Limitation of Liability
162
+ In no event and under no legal theory,
163
+ whether in tort (including negligence), contract, or otherwise,
164
+ unless required by applicable law (such as deliberate and grossly
165
+ negligent acts) or agreed to in writing, shall any Contributor be
166
+ liable to You for damages, including any direct, indirect, special,
167
+ incidental, or consequential damages of any character arising as a
168
+ result of this License or out of the use or inability to use the
169
+ Work (including but not limited to damages for loss of goodwill,
170
+ work stoppage, computer failure or malfunction, or any and all
171
+ other commercial damages or losses), even if such Contributor
172
+ has been advised of the possibility of such damages.
173
+
174
+ ### 9. Accepting Warranty or Additional Liability
175
+ While redistributing
176
+ the Work or Derivative Works thereof, You may choose to offer,
177
+ and charge a fee for, acceptance of support, warranty, indemnity,
178
+ or other liability obligations and/or rights consistent with this
179
+ License. However, in accepting such obligations, You may act only
180
+ on Your own behalf and on Your sole responsibility, not on behalf
181
+ of any other Contributor, and only if You agree to indemnify,
182
+ defend, and hold each Contributor harmless for any liability
183
+
184
+ END OF TERMS AND CONDITIONS
185
+
186
+ ## APPENDIX: How to apply the Apache License to your work
187
+
188
+ To apply the Apache License to your work, attach the following boilerplate
189
+ notice, with the fields enclosed by brackets `[]` replaced with your own
190
+ identifying information. (Don't include the brackets!) The text should be
191
+ enclosed in the appropriate comment syntax for the file format. We also
192
+ recommend that a file or class name and description of purpose be included on
193
+ the same “printed page” as the copyright notice for easier identification within
194
+ third-party archives.
195
+
196
+ Copyright [yyyy] [name of copyright owner]
197
+
198
+ Licensed under the Apache License, Version 2.0 (the "License");
199
+ you may not use this file except in compliance with the License.
200
+ You may obtain a copy of the License at
201
+
202
+ http://www.apache.org/licenses/LICENSE-2.0
203
+
204
+ Unless required by applicable law or agreed to in writing, software
205
+ distributed under the License is distributed on an "AS IS" BASIS,
206
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207
+ See the License for the specific language governing permissions and
208
+ limitations under the License.
@@ -0,0 +1,620 @@
1
+ # GNU GENERAL PUBLIC LICENSE
2
+
3
+ Version 3, 29 June 2007
4
+
5
+ Copyright (C) 2007 Free Software Foundation, Inc.
6
+ <http://fsf.org/>
7
+
8
+ Everyone is permitted to copy and distribute verbatim copies of this
9
+ license document, but changing it is not allowed.
10
+
11
+ ## Preamble
12
+
13
+ The GNU General Public License is a free, copyleft license for
14
+ software and other kinds of works.
15
+
16
+ The licenses for most software and other practical works are designed
17
+ to take away your freedom to share and change the works. By contrast,
18
+ the GNU General Public License is intended to guarantee your freedom
19
+ to share and change all versions of a program--to make sure it remains
20
+ free software for all its users. We, the Free Software Foundation, use
21
+ the GNU General Public License for most of our software; it applies
22
+ also to any other work released this way by its authors. You can apply
23
+ it to your programs, too.
24
+
25
+ When we speak of free software, we are referring to freedom, not
26
+ price. Our General Public Licenses are designed to make sure that you
27
+ have the freedom to distribute copies of free software (and charge for
28
+ them if you wish), that you receive source code or can get it if you
29
+ want it, that you can change the software or use pieces of it in new
30
+ free programs, and that you know you can do these things.
31
+
32
+ To protect your rights, we need to prevent others from denying you
33
+ these rights or asking you to surrender the rights. Therefore, you
34
+ have certain responsibilities if you distribute copies of the
35
+ software, or if you modify it: responsibilities to respect the freedom
36
+ of others.
37
+
38
+ For example, if you distribute copies of such a program, whether
39
+ gratis or for a fee, you must pass on to the recipients the same
40
+ freedoms that you received. You must make sure that they, too, receive
41
+ or can get the source code. And you must show them these terms so they
42
+ know their rights.
43
+
44
+ Developers that use the GNU GPL protect your rights with two steps:
45
+ (1) assert copyright on the software, and (2) offer you this License
46
+ giving you legal permission to copy, distribute and/or modify it.
47
+
48
+ For the developers' and authors' protection, the GPL clearly explains
49
+ that there is no warranty for this free software. For both users' and
50
+ authors' sake, the GPL requires that modified versions be marked as
51
+ changed, so that their problems will not be attributed erroneously to
52
+ authors of previous versions.
53
+
54
+ Some devices are designed to deny users access to install or run
55
+ modified versions of the software inside them, although the
56
+ manufacturer can do so. This is fundamentally incompatible with the
57
+ aim of protecting users' freedom to change the software. The
58
+ systematic pattern of such abuse occurs in the area of products for
59
+ individuals to use, which is precisely where it is most unacceptable.
60
+ Therefore, we have designed this version of the GPL to prohibit the
61
+ practice for those products. If such problems arise substantially in
62
+ other domains, we stand ready to extend this provision to those
63
+ domains in future versions of the GPL, as needed to protect the
64
+ freedom of users.
65
+
66
+ Finally, every program is threatened constantly by software patents.
67
+ States should not allow patents to restrict development and use of
68
+ software on general-purpose computers, but in those that do, we wish
69
+ to avoid the special danger that patents applied to a free program
70
+ could make it effectively proprietary. To prevent this, the GPL
71
+ assures that patents cannot be used to render the program non-free.
72
+
73
+ The precise terms and conditions for copying, distribution and
74
+ modification follow.
75
+
76
+ ## TERMS AND CONDITIONS
77
+
78
+ ### 0. Definitions
79
+
80
+ "This License" refers to version 3 of the GNU General Public License.
81
+
82
+ "Copyright" also means copyright-like laws that apply to other kinds
83
+ of works, such as semiconductor masks.
84
+
85
+ "The Program" refers to any copyrightable work licensed under this
86
+ License. Each licensee is addressed as "you". "Licensees" and
87
+ "recipients" may be individuals or organizations.
88
+
89
+ To "modify" a work means to copy from or adapt all or part of the work
90
+ in a fashion requiring copyright permission, other than the making of
91
+ an exact copy. The resulting work is called a "modified version" of
92
+ the earlier work or a work "based on" the earlier work.
93
+
94
+ A "covered work" means either the unmodified Program or a work based
95
+ on the Program.
96
+
97
+ To "propagate" a work means to do anything with it that, without
98
+ permission, would make you directly or secondarily liable for
99
+ infringement under applicable copyright law, except executing it on a
100
+ computer or modifying a private copy. Propagation includes copying,
101
+ distribution (with or without modification), making available to the
102
+ public, and in some countries other activities as well.
103
+
104
+ To "convey" a work means any kind of propagation that enables other
105
+ parties to make or receive copies. Mere interaction with a user
106
+ through a computer network, with no transfer of a copy, is not
107
+ conveying.
108
+
109
+ An interactive user interface displays "Appropriate Legal Notices" to
110
+ the extent that it includes a convenient and prominently visible
111
+ feature that (1) displays an appropriate copyright notice, and (2)
112
+ tells the user that there is no warranty for the work (except to the
113
+ extent that warranties are provided), that licensees may convey the
114
+ work under this License, and how to view a copy of this License. If
115
+ the interface presents a list of user commands or options, such as a
116
+ menu, a prominent item in the list meets this criterion.
117
+
118
+ ### 1. Source Code
119
+
120
+ The "source code" for a work means the preferred form of the work for
121
+ making modifications to it. "Object code" means any non-source form of
122
+ a work.
123
+
124
+ A "Standard Interface" means an interface that either is an official
125
+ standard defined by a recognized standards body, or, in the case of
126
+ interfaces specified for a particular programming language, one that
127
+ is widely used among developers working in that language.
128
+
129
+ The "System Libraries" of an executable work include anything, other
130
+ than the work as a whole, that (a) is included in the normal form of
131
+ packaging a Major Component, but which is not part of that Major
132
+ Component, and (b) serves only to enable use of the work with that
133
+ Major Component, or to implement a Standard Interface for which an
134
+ implementation is available to the public in source code form. A
135
+ "Major Component", in this context, means a major essential component
136
+ (kernel, window system, and so on) of the specific operating system
137
+ (if any) on which the executable work runs, or a compiler used to
138
+ produce the work, or an object code interpreter used to run it.
139
+
140
+ The "Corresponding Source" for a work in object code form means all
141
+ the source code needed to generate, install, and (for an executable
142
+ work) run the object code and to modify the work, including scripts to
143
+ control those activities. However, it does not include the work's
144
+ System Libraries, or general-purpose tools or generally available free
145
+ programs which are used unmodified in performing those activities but
146
+ which are not part of the work. For example, Corresponding Source
147
+ includes interface definition files associated with source files for
148
+ the work, and the source code for shared libraries and dynamically
149
+ linked subprograms that the work is specifically designed to require,
150
+ such as by intimate data communication or control flow between those
151
+ subprograms and other parts of the work.
152
+
153
+ The Corresponding Source need not include anything that users can
154
+ regenerate automatically from other parts of the Corresponding Source.
155
+
156
+ The Corresponding Source for a work in source code form is that same
157
+ work.
158
+
159
+ ### 2. Basic Permissions
160
+
161
+ All rights granted under this License are granted for the term of
162
+ copyright on the Program, and are irrevocable provided the stated
163
+ conditions are met. This License explicitly affirms your unlimited
164
+ permission to run the unmodified Program. The output from running a
165
+ covered work is covered by this License only if the output, given its
166
+ content, constitutes a covered work. This License acknowledges your
167
+ rights of fair use or other equivalent, as provided by copyright law.
168
+
169
+ You may make, run and propagate covered works that you do not convey,
170
+ without conditions so long as your license otherwise remains in force.
171
+ You may convey covered works to others for the sole purpose of having
172
+ them make modifications exclusively for you, or provide you with
173
+ facilities for running those works, provided that you comply with the
174
+ terms of this License in conveying all material for which you do not
175
+ control copyright. Those thus making or running the covered works for
176
+ you must do so exclusively on your behalf, under your direction and
177
+ control, on terms that prohibit them from making any copies of your
178
+ copyrighted material outside their relationship with you.
179
+
180
+ Conveying under any other circumstances is permitted solely under the
181
+ conditions stated below. Sublicensing is not allowed; section 10 makes
182
+ it unnecessary.
183
+
184
+ ### 3. Protecting Users' Legal Rights From Anti-Circumvention Law
185
+
186
+ No covered work shall be deemed part of an effective technological
187
+ measure under any applicable law fulfilling obligations under article
188
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
189
+ similar laws prohibiting or restricting circumvention of such
190
+ measures.
191
+
192
+ When you convey a covered work, you waive any legal power to forbid
193
+ circumvention of technological measures to the extent such
194
+ circumvention is effected by exercising rights under this License with
195
+ respect to the covered work, and you disclaim any intention to limit
196
+ operation or modification of the work as a means of enforcing, against
197
+ the work's users, your or third parties' legal rights to forbid
198
+ circumvention of technological measures.
199
+
200
+ ### 4. Conveying Verbatim Copies
201
+
202
+ You may convey verbatim copies of the Program's source code as you
203
+ receive it, in any medium, provided that you conspicuously and
204
+ appropriately publish on each copy an appropriate copyright notice;
205
+ keep intact all notices stating that this License and any
206
+ non-permissive terms added in accord with section 7 apply to the code;
207
+ keep intact all notices of the absence of any warranty; and give all
208
+ recipients a copy of this License along with the Program.
209
+
210
+ You may charge any price or no price for each copy that you convey,
211
+ and you may offer support or warranty protection for a fee.
212
+
213
+ ### 5. Conveying Modified Source Versions
214
+
215
+ You may convey a work based on the Program, or the modifications to
216
+ produce it from the Program, in the form of source code under the
217
+ terms of section 4, provided that you also meet all of these
218
+ conditions:
219
+
220
+ {:style="list-style-type:lower-latin"}
221
+ 1. The work must carry prominent notices stating that you modified
222
+ it, and giving a relevant date.
223
+ 2. The work must carry prominent notices stating that it is
224
+ released under this License and any conditions added under
225
+ section 7. This requirement modifies the requirement in section 4
226
+ to "keep intact all notices".
227
+ 3. You must license the entire work, as a whole, under this
228
+ License to anyone who comes into possession of a copy. This
229
+ License will therefore apply, along with any applicable section 7
230
+ additional terms, to the whole of the work, and all its parts,
231
+ regardless of how they are packaged. This License gives no
232
+ permission to license the work in any other way, but it does not
233
+ invalidate such permission if you have separately received it.
234
+ 4. If the work has interactive user interfaces, each must display
235
+ Appropriate Legal Notices; however, if the Program has interactive
236
+ interfaces that do not display Appropriate Legal Notices, your
237
+ work need not make them do so.
238
+
239
+ A compilation of a covered work with other separate and independent
240
+ works, which are not by their nature extensions of the covered work,
241
+ and which are not combined with it such as to form a larger program,
242
+ in or on a volume of a storage or distribution medium, is called an
243
+ "aggregate" if the compilation and its resulting copyright are not
244
+ used to limit the access or legal rights of the compilation's users
245
+ beyond what the individual works permit. Inclusion of a covered work
246
+ in an aggregate does not cause this License to apply to the other
247
+ parts of the aggregate.
248
+
249
+ ### 6. Conveying Non-Source Forms
250
+
251
+ You may convey a covered work in object code form under the terms of
252
+ sections 4 and 5, provided that you also convey the machine-readable
253
+ Corresponding Source under the terms of this License, in one of these
254
+ ways:
255
+
256
+ {:style="list-style-type:lower-latin"}
257
+ 1. Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by the
259
+ Corresponding Source fixed on a durable physical medium
260
+ customarily used for software interchange.
261
+ 2. Convey the object code in, or embodied in, a physical product
262
+ (including a physical distribution medium), accompanied by a
263
+ written offer, valid for at least three years and valid for as
264
+ long as you offer spare parts or customer support for that product
265
+ model, to give anyone who possesses the object code either (1) a
266
+ copy of the Corresponding Source for all the software in the
267
+ product that is covered by this License, on a durable physical
268
+ medium customarily used for software interchange, for a price no
269
+ more than your reasonable cost of physically performing this
270
+ conveying of source, or (2) access to copy the Corresponding
271
+ Source from a network server at no charge.
272
+ 3. Convey individual copies of the object code with a copy of the
273
+ written offer to provide the Corresponding Source. This
274
+ alternative is allowed only occasionally and noncommercially, and
275
+ only if you received the object code with such an offer, in accord
276
+ with subsection 6b.
277
+ 4. Convey the object code by offering access from a designated
278
+ place (gratis or for a charge), and offer equivalent access to the
279
+ Corresponding Source in the same way through the same place at no
280
+ further charge. You need not require recipients to copy the
281
+ Corresponding Source along with the object code. If the place to
282
+ copy the object code is a network server, the Corresponding Source
283
+ may be on a different server (operated by you or a third party)
284
+ that supports equivalent copying facilities, provided you maintain
285
+ clear directions next to the object code saying where to find the
286
+ Corresponding Source. Regardless of what server hosts the
287
+ Corresponding Source, you remain obligated to ensure that it is
288
+ available for as long as needed to satisfy these requirements.
289
+ 5. Convey the object code using peer-to-peer transmission,
290
+ provided you inform other peers where the object code and
291
+ Corresponding Source of the work are being offered to the general
292
+ public at no charge under subsection 6d.
293
+
294
+ A separable portion of the object code, whose source code is excluded
295
+ from the Corresponding Source as a System Library, need not be
296
+ included in conveying the object code work.
297
+
298
+ A "User Product" is either (1) a "consumer product", which means any
299
+ tangible personal property which is normally used for personal,
300
+ family, or household purposes, or (2) anything designed or sold for
301
+ incorporation into a dwelling. In determining whether a product is a
302
+ consumer product, doubtful cases shall be resolved in favor of
303
+ coverage. For a particular product received by a particular user,
304
+ "normally used" refers to a typical or common use of that class of
305
+ product, regardless of the status of the particular user or of the way
306
+ in which the particular user actually uses, or expects or is expected
307
+ to use, the product. A product is a consumer product regardless of
308
+ whether the product has substantial commercial, industrial or
309
+ non-consumer uses, unless such uses represent the only significant
310
+ mode of use of the product.
311
+
312
+ "Installation Information" for a User Product means any methods,
313
+ procedures, authorization keys, or other information required to
314
+ install and execute modified versions of a covered work in that User
315
+ Product from a modified version of its Corresponding Source. The
316
+ information must suffice to ensure that the continued functioning of
317
+ the modified object code is in no case prevented or interfered with
318
+ solely because modification has been made.
319
+
320
+ If you convey an object code work under this section in, or with, or
321
+ specifically for use in, a User Product, and the conveying occurs as
322
+ part of a transaction in which the right of possession and use of the
323
+ User Product is transferred to the recipient in perpetuity or for a
324
+ fixed term (regardless of how the transaction is characterized), the
325
+ Corresponding Source conveyed under this section must be accompanied
326
+ by the Installation Information. But this requirement does not apply
327
+ if neither you nor any third party retains the ability to install
328
+ modified object code on the User Product (for example, the work has
329
+ been installed in ROM).
330
+
331
+ The requirement to provide Installation Information does not include a
332
+ requirement to continue to provide support service, warranty, or
333
+ updates for a work that has been modified or installed by the
334
+ recipient, or for the User Product in which it has been modified or
335
+ installed. Access to a network may be denied when the modification
336
+ itself materially and adversely affects the operation of the network
337
+ or violates the rules and protocols for communication across the
338
+ network.
339
+
340
+ Corresponding Source conveyed, and Installation Information provided,
341
+ in accord with this section must be in a format that is publicly
342
+ documented (and with an implementation available to the public in
343
+ source code form), and must require no special password or key for
344
+ unpacking, reading or copying.
345
+
346
+ ### 7. Additional Terms
347
+
348
+ "Additional permissions" are terms that supplement the terms of this
349
+ License by making exceptions from one or more of its conditions.
350
+ Additional permissions that are applicable to the entire Program shall
351
+ be treated as though they were included in this License, to the extent
352
+ that they are valid under applicable law. If additional permissions
353
+ apply only to part of the Program, that part may be used separately
354
+ under those permissions, but the entire Program remains governed by
355
+ this License without regard to the additional permissions.
356
+
357
+ When you convey a copy of a covered work, you may at your option
358
+ remove any additional permissions from that copy, or from any part of
359
+ it. (Additional permissions may be written to require their own
360
+ removal in certain cases when you modify the work.) You may place
361
+ additional permissions on material, added by you to a covered work,
362
+ for which you have or can give appropriate copyright permission.
363
+
364
+ Notwithstanding any other provision of this License, for material you
365
+ add to a covered work, you may (if authorized by the copyright holders
366
+ of that material) supplement the terms of this License with terms:
367
+
368
+ {:style="list-style-type:lower-latin"}
369
+ 1. Disclaiming warranty or limiting liability differently from the
370
+ terms of sections 15 and 16 of this License; or
371
+ 2. Requiring preservation of specified reasonable legal notices or
372
+ author attributions in that material or in the Appropriate Legal
373
+ Notices displayed by works containing it; or
374
+ 3. Prohibiting misrepresentation of the origin of that material,
375
+ or requiring that modified versions of such material be marked in
376
+ reasonable ways as different from the original version; or
377
+ 4. Limiting the use for publicity purposes of names of licensors
378
+ or authors of the material; or
379
+ 5. Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+ 6. Requiring indemnification of licensors and authors of that
382
+ material by anyone who conveys the material (or modified versions
383
+ of it) with contractual assumptions of liability to the recipient,
384
+ for any liability that these contractual assumptions directly
385
+ impose on those licensors and authors.
386
+
387
+ All other non-permissive additional terms are considered "further
388
+ restrictions" within the meaning of section 10. If the Program as you
389
+ received it, or any part of it, contains a notice stating that it is
390
+ governed by this License along with a term that is a further
391
+ restriction, you may remove that term. If a license document contains
392
+ a further restriction but permits relicensing or conveying under this
393
+ License, you may add to a covered work material governed by the terms
394
+ of that license document, provided that the further restriction does
395
+ not survive such relicensing or conveying.
396
+
397
+ If you add terms to a covered work in accord with this section, you
398
+ must place, in the relevant source files, a statement of the
399
+ additional terms that apply to those files, or a notice indicating
400
+ where to find the applicable terms.
401
+
402
+ Additional terms, permissive or non-permissive, may be stated in the
403
+ form of a separately written license, or stated as exceptions; the
404
+ above requirements apply either way.
405
+
406
+ ### 8. Termination
407
+
408
+ You may not propagate or modify a covered work except as expressly
409
+ provided under this License. Any attempt otherwise to propagate or
410
+ modify it is void, and will automatically terminate your rights under
411
+ this License (including any patent licenses granted under the third
412
+ paragraph of section 11).
413
+
414
+ However, if you cease all violation of this License, then your license
415
+ from a particular copyright holder is reinstated (a) provisionally,
416
+ unless and until the copyright holder explicitly and finally
417
+ terminates your license, and (b) permanently, if the copyright holder
418
+ fails to notify you of the violation by some reasonable means prior to
419
+ 60 days after the cessation.
420
+
421
+ Moreover, your license from a particular copyright holder is
422
+ reinstated permanently if the copyright holder notifies you of the
423
+ violation by some reasonable means, this is the first time you have
424
+ received notice of violation of this License (for any work) from that
425
+ copyright holder, and you cure the violation prior to 30 days after
426
+ your receipt of the notice.
427
+
428
+ Termination of your rights under this section does not terminate the
429
+ licenses of parties who have received copies or rights from you under
430
+ this License. If your rights have been terminated and not permanently
431
+ reinstated, you do not qualify to receive new licenses for the same
432
+ material under section 10.
433
+
434
+ ### 9. Acceptance Not Required for Having Copies
435
+
436
+ You are not required to accept this License in order to receive or run
437
+ a copy of the Program. Ancillary propagation of a covered work
438
+ occurring solely as a consequence of using peer-to-peer transmission
439
+ to receive a copy likewise does not require acceptance. However,
440
+ nothing other than this License grants you permission to propagate or
441
+ modify any covered work. These actions infringe copyright if you do
442
+ not accept this License. Therefore, by modifying or propagating a
443
+ covered work, you indicate your acceptance of this License to do so.
444
+
445
+ ### 10. Automatic Licensing of Downstream Recipients
446
+
447
+ Each time you convey a covered work, the recipient automatically
448
+ receives a license from the original licensors, to run, modify and
449
+ propagate that work, subject to this License. You are not responsible
450
+ for enforcing compliance by third parties with this License.
451
+
452
+ An "entity transaction" is a transaction transferring control of an
453
+ organization, or substantially all assets of one, or subdividing an
454
+ organization, or merging organizations. If propagation of a covered
455
+ work results from an entity transaction, each party to that
456
+ transaction who receives a copy of the work also receives whatever
457
+ licenses to the work the party's predecessor in interest had or could
458
+ give under the previous paragraph, plus a right to possession of the
459
+ Corresponding Source of the work from the predecessor in interest, if
460
+ the predecessor has it or can get it with reasonable efforts.
461
+
462
+ You may not impose any further restrictions on the exercise of the
463
+ rights granted or affirmed under this License. For example, you may
464
+ not impose a license fee, royalty, or other charge for exercise of
465
+ rights granted under this License, and you may not initiate litigation
466
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
467
+ any patent claim is infringed by making, using, selling, offering for
468
+ sale, or importing the Program or any portion of it.
469
+
470
+ ### 11. Patents
471
+
472
+ A "contributor" is a copyright holder who authorizes use under this
473
+ License of the Program or a work on which the Program is based. The
474
+ work thus licensed is called the contributor's "contributor version".
475
+
476
+ A contributor's "essential patent claims" are all patent claims owned
477
+ or controlled by the contributor, whether already acquired or
478
+ hereafter acquired, that would be infringed by some manner, permitted
479
+ by this License, of making, using, or selling its contributor version,
480
+ but do not include claims that would be infringed only as a
481
+ consequence of further modification of the contributor version. For
482
+ purposes of this definition, "control" includes the right to grant
483
+ patent sublicenses in a manner consistent with the requirements of
484
+ this License.
485
+
486
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
487
+ patent license under the contributor's essential patent claims, to
488
+ make, use, sell, offer for sale, import and otherwise run, modify and
489
+ propagate the contents of its contributor version.
490
+
491
+ In the following three paragraphs, a "patent license" is any express
492
+ agreement or commitment, however denominated, not to enforce a patent
493
+ (such as an express permission to practice a patent or covenant not to
494
+ sue for patent infringement). To "grant" such a patent license to a
495
+ party means to make such an agreement or commitment not to enforce a
496
+ patent against the party.
497
+
498
+ If you convey a covered work, knowingly relying on a patent license,
499
+ and the Corresponding Source of the work is not available for anyone
500
+ to copy, free of charge and under the terms of this License, through a
501
+ publicly available network server or other readily accessible means,
502
+ then you must either (1) cause the Corresponding Source to be so
503
+ available, or (2) arrange to deprive yourself of the benefit of the
504
+ patent license for this particular work, or (3) arrange, in a manner
505
+ consistent with the requirements of this License, to extend the patent
506
+ license to downstream recipients. "Knowingly relying" means you have
507
+ actual knowledge that, but for the patent license, your conveying the
508
+ covered work in a country, or your recipient's use of the covered work
509
+ in a country, would infringe one or more identifiable patents in that
510
+ country that you have reason to believe are valid.
511
+
512
+ If, pursuant to or in connection with a single transaction or
513
+ arrangement, you convey, or propagate by procuring conveyance of, a
514
+ covered work, and grant a patent license to some of the parties
515
+ receiving the covered work authorizing them to use, propagate, modify
516
+ or convey a specific copy of the covered work, then the patent license
517
+ you grant is automatically extended to all recipients of the covered
518
+ work and works based on it.
519
+
520
+ A patent license is "discriminatory" if it does not include within the
521
+ scope of its coverage, prohibits the exercise of, or is conditioned on
522
+ the non-exercise of one or more of the rights that are specifically
523
+ granted under this License. You may not convey a covered work if you
524
+ are a party to an arrangement with a third party that is in the
525
+ business of distributing software, under which you make payment to the
526
+ third party based on the extent of your activity of conveying the
527
+ work, and under which the third party grants, to any of the parties
528
+ who would receive the covered work from you, a discriminatory patent
529
+ license (a) in connection with copies of the covered work conveyed by
530
+ you (or copies made from those copies), or (b) primarily for and in
531
+ connection with specific products or compilations that contain the
532
+ covered work, unless you entered into that arrangement, or that patent
533
+ license was granted, prior to 28 March 2007.
534
+
535
+ Nothing in this License shall be construed as excluding or limiting
536
+ any implied license or other defenses to infringement that may
537
+ otherwise be available to you under applicable patent law.
538
+
539
+ ### 12. No Surrender of Others' Freedom
540
+
541
+ If conditions are imposed on you (whether by court order, agreement or
542
+ otherwise) that contradict the conditions of this License, they do not
543
+ excuse you from the conditions of this License. If you cannot convey a
544
+ covered work so as to satisfy simultaneously your obligations under
545
+ this License and any other pertinent obligations, then as a
546
+ consequence you may not convey it at all. For example, if you agree to
547
+ terms that obligate you to collect a royalty for further conveying
548
+ from those to whom you convey the Program, the only way you could
549
+ satisfy both those terms and this License would be to refrain entirely
550
+ from conveying the Program.
551
+
552
+ ### 13. Use with the GNU Affero General Public License
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ ### 14. Revised Versions of this License
564
+
565
+ The Free Software Foundation may publish revised and/or new versions
566
+ of the GNU General Public License from time to time. Such new versions
567
+ will be similar in spirit to the present version, but may differ in
568
+ detail to address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the Program
571
+ specifies that a certain numbered version of the GNU General Public
572
+ License "or any later version" applies to it, you have the option of
573
+ following the terms and conditions either of that numbered version or
574
+ of any later version published by the Free Software Foundation. If the
575
+ Program does not specify a version number of the GNU General Public
576
+ License, you may choose any version ever published by the Free
577
+ Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future versions
580
+ of the GNU General Public License can be used, that proxy's public
581
+ statement of acceptance of a version permanently authorizes you to
582
+ choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ ### 15. Disclaimer of Warranty
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
594
+ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
595
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
596
+ A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
597
+ PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
598
+ DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
599
+ CORRECTION.
600
+
601
+ ### 16. Limitation of Liability
602
+
603
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
604
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
605
+ CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
606
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
607
+ ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
608
+ NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
609
+ LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
610
+ TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
611
+ PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
612
+
613
+ ### 17. Interpretation of Sections 15 and 16
614
+
615
+ If the disclaimer of warranty and limitation of liability provided
616
+ above cannot be given local legal effect according to their terms,
617
+ reviewing courts shall apply local law that most closely approximates
618
+ an absolute waiver of all civil liability in connection with the
619
+ Program, unless a warranty or assumption of liability accompanies a
620
+ copy of the Program in return for a fee.