@weavetab/mcp 2.5.0-beta.0

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 (281) hide show
  1. package/AGENTS.md +48 -0
  2. package/ARCHITECTURE.md +590 -0
  3. package/LICENSE +631 -0
  4. package/README.md +909 -0
  5. package/SECURITY.md +196 -0
  6. package/TROUBLESHOOTING.md +365 -0
  7. package/dist/anticaptcha/detector.d.ts +49 -0
  8. package/dist/anticaptcha/detector.js +465 -0
  9. package/dist/anticaptcha/integration.d.ts +36 -0
  10. package/dist/anticaptcha/integration.js +123 -0
  11. package/dist/anticaptcha/solver.d.ts +27 -0
  12. package/dist/anticaptcha/solver.js +552 -0
  13. package/dist/audit/logger.d.ts +13 -0
  14. package/dist/audit/logger.js +177 -0
  15. package/dist/audit/telemetry.d.ts +36 -0
  16. package/dist/audit/telemetry.js +162 -0
  17. package/dist/cdp/bridge.d.ts +16 -0
  18. package/dist/cdp/bridge.js +826 -0
  19. package/dist/cdp/confirm.d.ts +26 -0
  20. package/dist/cdp/confirm.js +79 -0
  21. package/dist/cdp/connector.d.ts +37 -0
  22. package/dist/cdp/connector.js +661 -0
  23. package/dist/cdp/extension.d.ts +36 -0
  24. package/dist/cdp/extension.js +118 -0
  25. package/dist/cdp/finder.d.ts +1 -0
  26. package/dist/cdp/finder.js +2 -0
  27. package/dist/cdp/helpers.d.ts +11 -0
  28. package/dist/cdp/helpers.js +195 -0
  29. package/dist/cdp/label_cache.d.ts +12 -0
  30. package/dist/cdp/label_cache.js +51 -0
  31. package/dist/cdp/lock.d.ts +33 -0
  32. package/dist/cdp/lock.js +206 -0
  33. package/dist/cdp/omni_broker.d.ts +17 -0
  34. package/dist/cdp/omni_broker.js +119 -0
  35. package/dist/cdp/profiles.d.ts +1 -0
  36. package/dist/cdp/profiles.js +87 -0
  37. package/dist/cdp/pruner.d.ts +41 -0
  38. package/dist/cdp/pruner.js +263 -0
  39. package/dist/cdp/ref_cache.d.ts +101 -0
  40. package/dist/cdp/ref_cache.js +234 -0
  41. package/dist/cdp/retry.d.ts +5 -0
  42. package/dist/cdp/retry.js +39 -0
  43. package/dist/cdp/retry_enhanced.d.ts +44 -0
  44. package/dist/cdp/retry_enhanced.js +102 -0
  45. package/dist/cdp/security.d.ts +50 -0
  46. package/dist/cdp/security.js +237 -0
  47. package/dist/cdp/verify.d.ts +39 -0
  48. package/dist/cdp/verify.js +143 -0
  49. package/dist/cdp/walker.d.ts +91 -0
  50. package/dist/cdp/walker.js +896 -0
  51. package/dist/cdp/walker.test.d.ts +2 -0
  52. package/dist/cdp/walker.test.js +172 -0
  53. package/dist/cdp/websocket_transport.d.ts +15 -0
  54. package/dist/cdp/websocket_transport.js +118 -0
  55. package/dist/cli/plugin.d.ts +9 -0
  56. package/dist/cli/plugin.js +1134 -0
  57. package/dist/cli/updater.d.ts +1 -0
  58. package/dist/cli/updater.js +72 -0
  59. package/dist/config/loader.d.ts +120 -0
  60. package/dist/config/loader.js +704 -0
  61. package/dist/index.d.ts +2 -0
  62. package/dist/index.js +1248 -0
  63. package/dist/intelligence/hints.d.ts +11 -0
  64. package/dist/intelligence/hints.js +39 -0
  65. package/dist/intelligence/intent.d.ts +33 -0
  66. package/dist/intelligence/intent.js +171 -0
  67. package/dist/intelligence/sessionMemory.d.ts +66 -0
  68. package/dist/intelligence/sessionMemory.js +284 -0
  69. package/dist/intelligence/sessionMemory.test.d.ts +2 -0
  70. package/dist/intelligence/sessionMemory.test.js +62 -0
  71. package/dist/intelligence/trail.d.ts +64 -0
  72. package/dist/intelligence/trail.js +233 -0
  73. package/dist/intelligence/trail.test.d.ts +2 -0
  74. package/dist/intelligence/trail.test.js +110 -0
  75. package/dist/intelligence/vision.d.ts +24 -0
  76. package/dist/intelligence/vision.js +151 -0
  77. package/dist/lifecycle/mission_manager.d.ts +16 -0
  78. package/dist/lifecycle/mission_manager.js +44 -0
  79. package/dist/overlay/bubble.d.ts +16 -0
  80. package/dist/overlay/bubble.js +37 -0
  81. package/dist/overlay/ghost.d.ts +35 -0
  82. package/dist/overlay/ghost.js +508 -0
  83. package/dist/overlay/injector.d.ts +22 -0
  84. package/dist/overlay/injector.js +198 -0
  85. package/dist/plugin/interface.d.ts +134 -0
  86. package/dist/plugin/interface.js +1 -0
  87. package/dist/plugin/loader.d.ts +18 -0
  88. package/dist/plugin/loader.js +155 -0
  89. package/dist/plugin/registry.d.ts +50 -0
  90. package/dist/plugin/registry.js +234 -0
  91. package/dist/security/blacklist.d.ts +24 -0
  92. package/dist/security/blacklist.js +80 -0
  93. package/dist/security/filter.d.ts +2 -0
  94. package/dist/security/filter.js +20 -0
  95. package/dist/security/guard.d.ts +8 -0
  96. package/dist/security/guard.js +35 -0
  97. package/dist/security/ratelimit.d.ts +11 -0
  98. package/dist/security/ratelimit.js +57 -0
  99. package/dist/security/secrets.d.ts +75 -0
  100. package/dist/security/secrets.js +365 -0
  101. package/dist/sensors/actionability.d.ts +81 -0
  102. package/dist/sensors/actionability.js +303 -0
  103. package/dist/sensors/guard.d.ts +25 -0
  104. package/dist/sensors/guard.js +168 -0
  105. package/dist/sensors/mutations.d.ts +23 -0
  106. package/dist/sensors/mutations.js +93 -0
  107. package/dist/sensors/network.d.ts +67 -0
  108. package/dist/sensors/network.js +193 -0
  109. package/dist/sensors/operation_monitor.d.ts +80 -0
  110. package/dist/sensors/operation_monitor.js +203 -0
  111. package/dist/sensors/pacing.d.ts +44 -0
  112. package/dist/sensors/pacing.js +111 -0
  113. package/dist/sensors/thoughts.d.ts +2 -0
  114. package/dist/sensors/thoughts.js +59 -0
  115. package/dist/sensors/wait.d.ts +12 -0
  116. package/dist/sensors/wait.js +44 -0
  117. package/dist/server.d.ts +7 -0
  118. package/dist/server.js +1687 -0
  119. package/dist/state/agent.d.ts +36 -0
  120. package/dist/state/agent.js +101 -0
  121. package/dist/state/cache.d.ts +16 -0
  122. package/dist/state/cache.js +92 -0
  123. package/dist/state/cache.test.d.ts +2 -0
  124. package/dist/state/cache.test.js +76 -0
  125. package/dist/state/delta.d.ts +71 -0
  126. package/dist/state/delta.js +234 -0
  127. package/dist/state/delta.test.d.ts +2 -0
  128. package/dist/state/delta.test.js +279 -0
  129. package/dist/state/groups.d.ts +15 -0
  130. package/dist/state/groups.js +80 -0
  131. package/dist/state/session.d.ts +30 -0
  132. package/dist/state/session.js +155 -0
  133. package/dist/tools/accessibility.d.ts +14 -0
  134. package/dist/tools/accessibility.js +32 -0
  135. package/dist/tools/ask.d.ts +14 -0
  136. package/dist/tools/ask.js +49 -0
  137. package/dist/tools/automation.d.ts +36 -0
  138. package/dist/tools/automation.js +218 -0
  139. package/dist/tools/browser_detect.d.ts +13 -0
  140. package/dist/tools/browser_detect.js +73 -0
  141. package/dist/tools/burst.d.ts +35 -0
  142. package/dist/tools/burst.js +344 -0
  143. package/dist/tools/canvas.d.ts +25 -0
  144. package/dist/tools/canvas.js +132 -0
  145. package/dist/tools/captcha.d.ts +38 -0
  146. package/dist/tools/captcha.js +209 -0
  147. package/dist/tools/click.d.ts +36 -0
  148. package/dist/tools/click.js +561 -0
  149. package/dist/tools/click_and_wait.d.ts +33 -0
  150. package/dist/tools/click_and_wait.js +149 -0
  151. package/dist/tools/clipboard.d.ts +29 -0
  152. package/dist/tools/clipboard.js +279 -0
  153. package/dist/tools/console.d.ts +21 -0
  154. package/dist/tools/console.js +107 -0
  155. package/dist/tools/cookies.d.ts +67 -0
  156. package/dist/tools/cookies.js +121 -0
  157. package/dist/tools/design_extract.d.ts +109 -0
  158. package/dist/tools/design_extract.js +641 -0
  159. package/dist/tools/dialog.d.ts +24 -0
  160. package/dist/tools/dialog.js +109 -0
  161. package/dist/tools/drag.d.ts +15 -0
  162. package/dist/tools/drag.js +29 -0
  163. package/dist/tools/emulation.d.ts +33 -0
  164. package/dist/tools/emulation.js +69 -0
  165. package/dist/tools/eval.d.ts +20 -0
  166. package/dist/tools/eval.js +92 -0
  167. package/dist/tools/fill.d.ts +41 -0
  168. package/dist/tools/fill.js +667 -0
  169. package/dist/tools/find.d.ts +30 -0
  170. package/dist/tools/find.js +60 -0
  171. package/dist/tools/geo.d.ts +19 -0
  172. package/dist/tools/geo.js +29 -0
  173. package/dist/tools/github/analyze.d.ts +4 -0
  174. package/dist/tools/github/analyze.js +113 -0
  175. package/dist/tools/github/cache.d.ts +21 -0
  176. package/dist/tools/github/cache.js +28 -0
  177. package/dist/tools/github/index.d.ts +4 -0
  178. package/dist/tools/github/index.js +4 -0
  179. package/dist/tools/github/issues.d.ts +9 -0
  180. package/dist/tools/github/issues.js +88 -0
  181. package/dist/tools/github/pr.d.ts +5 -0
  182. package/dist/tools/github/pr.js +88 -0
  183. package/dist/tools/github/rateLimiter.d.ts +4 -0
  184. package/dist/tools/github/rateLimiter.js +46 -0
  185. package/dist/tools/github/read.d.ts +34 -0
  186. package/dist/tools/github/read.js +74 -0
  187. package/dist/tools/github/repoContext.d.ts +20 -0
  188. package/dist/tools/github/repoContext.js +129 -0
  189. package/dist/tools/highlight.d.ts +20 -0
  190. package/dist/tools/highlight.js +140 -0
  191. package/dist/tools/hover.d.ts +19 -0
  192. package/dist/tools/hover.js +57 -0
  193. package/dist/tools/inspect.d.ts +17 -0
  194. package/dist/tools/inspect.js +125 -0
  195. package/dist/tools/integration.test.d.ts +2 -0
  196. package/dist/tools/integration.test.js +96 -0
  197. package/dist/tools/key.d.ts +25 -0
  198. package/dist/tools/key.js +173 -0
  199. package/dist/tools/macro_compiler.d.ts +7 -0
  200. package/dist/tools/macro_compiler.js +82 -0
  201. package/dist/tools/mouse.d.ts +21 -0
  202. package/dist/tools/mouse.js +62 -0
  203. package/dist/tools/navigate.d.ts +16 -0
  204. package/dist/tools/navigate.js +188 -0
  205. package/dist/tools/network_intercept.d.ts +17 -0
  206. package/dist/tools/network_intercept.js +151 -0
  207. package/dist/tools/office/index.d.ts +9 -0
  208. package/dist/tools/office/index.js +7 -0
  209. package/dist/tools/office/list.d.ts +15 -0
  210. package/dist/tools/office/list.js +41 -0
  211. package/dist/tools/office/parse.d.ts +20 -0
  212. package/dist/tools/office/parse.js +172 -0
  213. package/dist/tools/pdf.d.ts +22 -0
  214. package/dist/tools/pdf.js +42 -0
  215. package/dist/tools/performance.d.ts +12 -0
  216. package/dist/tools/performance.js +47 -0
  217. package/dist/tools/performance_test.d.ts +70 -0
  218. package/dist/tools/performance_test.js +128 -0
  219. package/dist/tools/plan.d.ts +39 -0
  220. package/dist/tools/plan.js +161 -0
  221. package/dist/tools/pointer.d.ts +35 -0
  222. package/dist/tools/pointer.js +522 -0
  223. package/dist/tools/read.d.ts +30 -0
  224. package/dist/tools/read.js +488 -0
  225. package/dist/tools/recording.d.ts +45 -0
  226. package/dist/tools/recording.js +124 -0
  227. package/dist/tools/response.d.ts +129 -0
  228. package/dist/tools/response.js +5 -0
  229. package/dist/tools/scrape.d.ts +24 -0
  230. package/dist/tools/scrape.js +140 -0
  231. package/dist/tools/screenshot.d.ts +40 -0
  232. package/dist/tools/screenshot.js +79 -0
  233. package/dist/tools/scroll.d.ts +23 -0
  234. package/dist/tools/scroll.js +196 -0
  235. package/dist/tools/select.d.ts +13 -0
  236. package/dist/tools/select.js +217 -0
  237. package/dist/tools/snapshot.d.ts +27 -0
  238. package/dist/tools/snapshot.js +99 -0
  239. package/dist/tools/storage.d.ts +18 -0
  240. package/dist/tools/storage.js +29 -0
  241. package/dist/tools/tabs.d.ts +77 -0
  242. package/dist/tools/tabs.js +342 -0
  243. package/dist/tools/thought.d.ts +16 -0
  244. package/dist/tools/thought.js +79 -0
  245. package/dist/tools/type.d.ts +65 -0
  246. package/dist/tools/type.js +1061 -0
  247. package/dist/tools/type_secret.d.ts +23 -0
  248. package/dist/tools/type_secret.js +229 -0
  249. package/dist/tools/upload.d.ts +19 -0
  250. package/dist/tools/upload.js +103 -0
  251. package/dist/tools/video_compiler.d.ts +24 -0
  252. package/dist/tools/video_compiler.js +199 -0
  253. package/dist/tools/viewport.d.ts +44 -0
  254. package/dist/tools/viewport.js +230 -0
  255. package/dist/tools/wait.d.ts +19 -0
  256. package/dist/tools/wait.js +202 -0
  257. package/dist/tools/wait_for.d.ts +23 -0
  258. package/dist/tools/wait_for.js +30 -0
  259. package/dist/tools/windows.d.ts +22 -0
  260. package/dist/tools/windows.js +57 -0
  261. package/dist/ui/index.d.ts +1 -0
  262. package/dist/ui/index.js +12 -0
  263. package/docs/DEV_MODE.md +68 -0
  264. package/docs/DOCUMENTATION.md +532 -0
  265. package/docs/PLUGINS.md +538 -0
  266. package/docs/TOOLS.md +104 -0
  267. package/docs/dev_plugin.md +310 -0
  268. package/ext-dist/background.js +467 -0
  269. package/ext-dist/content.js +3089 -0
  270. package/ext-dist/dashboard.html +583 -0
  271. package/ext-dist/hud/hud.js +73 -0
  272. package/ext-dist/hud/index.html +20 -0
  273. package/ext-dist/manifest.json +77 -0
  274. package/ext-dist/sidepanel/sidepanel.js +25 -0
  275. package/ext-dist/sidepanel.html +547 -0
  276. package/ext-dist/styles.css +218 -0
  277. package/icon.png +0 -0
  278. package/mcp.json +796 -0
  279. package/package.json +113 -0
  280. package/server.json +23 -0
  281. package/smithery.yaml +11 -0
package/LICENSE ADDED
@@ -0,0 +1,631 @@
1
+ Weavetab v2.5.0+ — Copyright (C) 2026 fy2ne
2
+ Licensing inquiries: license@weavetab.dev
3
+ Commercial licenses available for proprietary/embedded use.
4
+
5
+ MCP Transport Clarification:
6
+ Running Weavetab MCP as an independent process communicating over standard Model Context Protocol
7
+ transports (stdio or WebSocket JSON-RPC) does NOT cause AGPL copyleft obligations to extend to your
8
+ client applications, IDEs, or host AI models.
9
+
10
+ ---
11
+
12
+ GNU AFFERO GENERAL PUBLIC LICENSE
13
+ Version 3, 19 November 2007
14
+
15
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
16
+ Everyone is permitted to copy and distribute verbatim copies
17
+ of this license document, but changing it is not allowed.
18
+
19
+ Preamble
20
+
21
+ The GNU Affero General Public License is a free, copyleft license for
22
+ software and other kinds of works, specifically designed to ensure
23
+ cooperation with the community in the case of network server software.
24
+
25
+ The licenses for most software and other practical works are designed
26
+ to take away your freedom to share and change the works. By contrast,
27
+ our General Public Licenses are intended to guarantee your freedom to
28
+ share and change all versions of a program--to make sure it remains free
29
+ software for all its users.
30
+
31
+ When we speak of free software, we are referring to freedom, not
32
+ price. Our General Public Licenses are designed to make sure that you
33
+ have the freedom to distribute copies of free software (and charge for
34
+ them if you wish), that you receive source code or can get it if you
35
+ want it, that you can change the software or use pieces of it in new
36
+ free programs, and that you know you can do these things.
37
+
38
+ Developers that use our General Public Licenses protect your rights
39
+ with two steps: (1) assert copyright on the software, and (2) offer
40
+ you this License which gives you legal permission to copy, distribute
41
+ and/or modify the software.
42
+
43
+ A secondary benefit of defending all users' freedom is that
44
+ improvements made in alternate versions of the program, if they
45
+ receive widespread use, become available for other developers to
46
+ incorporate. Many developers of free software are heartened and
47
+ encouraged by the resulting cooperation. However, in the case of
48
+ software used on network servers, this result may fail to occur.
49
+ The GNU General Public License permits making a modified version and
50
+ letting the public access it on a server without ever releasing its
51
+ source code to the public.
52
+
53
+ The GNU Affero General Public License is designed specifically to
54
+ alter this network omission during server use. If you modify the
55
+ program, and run it on a server, your modified version must be made
56
+ freely available as source code to the public over the network.
57
+ Therefore, public use of a modified version, on a public server,
58
+ gives the public access to the source code of the modified version.
59
+
60
+ An older license, called the Affero General Public License and
61
+ published by Affero, Inc., was designed to accomplish similar goals.
62
+ This is a different license, not a version of the Affero GPL, but
63
+ Affero, Inc. has permitted us to publish this version under the
64
+ GNU name.
65
+
66
+ The precise terms and conditions for copying, distribution and
67
+ modification follow.
68
+
69
+ TERMS AND CONDITIONS
70
+
71
+ 0. Definitions.
72
+
73
+ "This License" refers to version 3 of the GNU Affero General Public License.
74
+
75
+ "Copyright" also means copyright-like laws that apply to other kinds of
76
+ works, such as semiconductor masks.
77
+
78
+ "The Program" refers to any copyrightable work licensed under this
79
+ License. Each licensee is addressed as "you". "Licensees" and
80
+ "recipients" may be individuals or organizations.
81
+
82
+ To "modify" a work means to copy from or adapt all or part of the work
83
+ in a fashion requiring copyright permission, other than the making of an
84
+ exact copy. The resulting work is called a "modified version" of the
85
+ earlier work or a work "based on" the earlier work.
86
+
87
+ A "covered work" means either the unmodified Program or a work based
88
+ on the Program.
89
+
90
+ To "propagate" a work means to do anything with it that, without
91
+ permission, would make you directly or secondarily liable for
92
+ infringement under applicable copyright law, except executing it on a
93
+ computer or modifying a private copy. Propagation includes copying,
94
+ distribution (with or without modification), making available to the
95
+ public, and in some countries other activities as well.
96
+
97
+ To "convey" a work means any kind of propagation that enables other
98
+ parties to make or receive copies. Mere interaction with a user through
99
+ a computer network, with no transfer of a copy, is not conveying.
100
+
101
+ An interactive user interface displays "Appropriate Legal Notices"
102
+ to the extent that it includes a convenient and prominently visible
103
+ feature that (1) displays an appropriate copyright notice, and (2)
104
+ tells the user that there is no warranty for the work (except to the
105
+ extent that warranties are provided), that licensees may convey the
106
+ work under this License, and how to view a copy of this License. If
107
+ the interface presents a list of user commands or options, such as a
108
+ menu, a prominent item in the list meets this criterion.
109
+
110
+ 1. Source Code.
111
+
112
+ The "source code" for a work means the preferred form of the work
113
+ for making modifications to it. "Object code" means any non-source
114
+ form of a work.
115
+
116
+ A "Standard Interface" means an interface that either is an official
117
+ standard defined by a recognized standards body, or, in the case of
118
+ interfaces specified for a particular programming language, one that
119
+ is widely used among developers working in that language.
120
+
121
+ The "System Libraries" of an executable work include anything, other
122
+ than the work as a whole, that (a) is included in the normal form of
123
+ packaging a Component, but which is not part of that Component, and
124
+ (b) serves only to enable use of the work with that Component, or to
125
+ implement a Standard Interface for which an implementation is
126
+ available to the public in source code form. A "Component" in this
127
+ context means a major essential component (kernel, window system, and
128
+ so on) of the specific operating system (if any) on which the
129
+ executable work runs, or a compiler used to produce the work, or an
130
+ object code interpreter used to run it.
131
+
132
+ The "Corresponding Source" for a work in object code form means all
133
+ the source code needed to generate, install, and (for an executable
134
+ work) run the object code and to modify the work, including scripts to
135
+ control those activities. However, it does not include the work's
136
+ System Libraries, or general-purpose tools or generally available free
137
+ programs which are used unmodified in performing those activities but
138
+ which are not part of the work. For example, Corresponding Source
139
+ includes interface definition files associated with source files for
140
+ the work, and the source code for shared libraries and dynamically
141
+ linked subprograms that the work is specifically designed to require,
142
+ such as by intimate data communication or control flow between those
143
+ subprograms and other parts of the work.
144
+
145
+ The Corresponding Source need not include anything that users
146
+ can regenerate automatically from other parts of the Corresponding
147
+ Source.
148
+
149
+ The Corresponding Source for a work in source code form is that
150
+ same work.
151
+
152
+ 2. Basic Permissions.
153
+
154
+ All rights granted under this License are granted for the term of
155
+ copyright on the Program, and are irrevocable provided the stated
156
+ conditions are met. This License explicitly affirms your unlimited
157
+ permission to run the unmodified Program. The output from running a
158
+ covered work is covered by this License only if the output, given its
159
+ content, constitutes a covered work. This License acknowledges your
160
+ rights of fair use or other equivalent, as provided by copyright law.
161
+
162
+ You may make, run and propagate covered works that you do not
163
+ convey, without conditions so long as your license otherwise remains
164
+ in force. You may convey covered works to others for the sole purpose
165
+ of having them make modifications exclusively for you, or provide you
166
+ with facilities for running those works, provided that you comply with
167
+ the terms of this License in conveying all material for which you do
168
+ not control copyright. Those thus making or running the covered works
169
+ for you must do so exclusively on your behalf, under your direction
170
+ and control, on terms that prohibit them from making any copies of
171
+ your copyrighted material outside their relationship with you.
172
+
173
+ Conveying under any other circumstances is permitted solely under
174
+ the conditions stated below. Sublicensing is not allowed; section 10
175
+ makes it unnecessary.
176
+
177
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
178
+
179
+ No covered work shall be deemed part of an effective technological
180
+ measure under any applicable law fulfilling obligations under article
181
+ 11 of the WIPO Copyright Treaty adopted on 20 December 1996, or
182
+ similar laws prohibiting or restricting circumvention of such
183
+ measures.
184
+
185
+ When you convey a covered work, you waive any legal power to forbid
186
+ circumvention of technological measures to the extent such circumvention
187
+ is effected by exercising rights under this License with respect to
188
+ the covered work, and you disclaim any intention to limit operation or
189
+ modification of the work as a means of enforcing, against the work's
190
+ users, your or third parties' legal rights to forbid circumvention of
191
+ technological measures.
192
+
193
+ 4. Conveying Verbatim Copies.
194
+
195
+ You may convey verbatim copies of the Program's source code as you
196
+ receive it, in any medium, provided that you conspicuously and
197
+ appropriately publish on each copy an appropriate copyright notice;
198
+ keep intact all notices stating that this License and any
199
+ non-permissive terms added in accord with section 7 apply to the code;
200
+ keep intact all notices of the absence of any warranty; and give all
201
+ recipients a copy of this License along with the Program.
202
+
203
+ You may charge any price or no price for each copy that you convey,
204
+ and you may offer support or warranty protection for a fee.
205
+
206
+ 5. Conveying Modified Source Versions.
207
+
208
+ You may convey a work based on the Program, or the modifications to
209
+ produce it from the Program, in the form of source code under the
210
+ terms of section 4, provided that you also meet all of these conditions:
211
+
212
+ a) The work must carry prominent notices stating that you modified
213
+ it, and giving a relevant date.
214
+
215
+ b) The work must carry prominent notices stating that it is
216
+ released under this License and any conditions added under section
217
+ 7. This requirement modifies the requirement in section 4 to
218
+ "keep intact all notices".
219
+
220
+ c) You must license the entire work, as a whole, under this
221
+ License to anyone who comes into possession of a copy. This
222
+ License will therefore apply, along with any applicable section 7
223
+ additional terms, to the whole of the work, and all its parts,
224
+ regardless of how they are packaged. This License gives no
225
+ permission to license the work in any other way, but it does not
226
+ invalidate such permission if you have separately received it.
227
+
228
+ d) If the work has interactive user interfaces, each must display
229
+ Appropriate Legal Notices; however, if the Program has interactive
230
+ interfaces that do not display Appropriate Legal Notices, your
231
+ work need not make them do so.
232
+
233
+ A compilation of a covered work with other separate and independent
234
+ works, which are not by their nature extensions of the covered work,
235
+ and which are not combined with it such as to form a larger program,
236
+ in or on a volume of a storage or distribution medium, is called an
237
+ "aggregate" if the compilation and its resulting copyright are not
238
+ used to limit the access or legal rights of the compilation's users
239
+ beyond what the individual works permit. Inclusion of a covered work
240
+ in an aggregate does not cause this License to apply to the other
241
+ parts of the aggregate.
242
+
243
+ 6. Conveying Non-Source Forms.
244
+
245
+ You may convey a covered work in object code form under the terms
246
+ of sections 4 and 5, provided that you also convey the
247
+ machine-readable Corresponding Source under the terms of this License,
248
+ in one of these ways:
249
+
250
+ a) Convey the object code in, or embodied in, a physical product
251
+ (including a physical distribution medium), accompanied by the
252
+ Corresponding Source fixed on a durable physical medium
253
+ customarily used for software interchange.
254
+
255
+ b) Convey the object code in, or embodied in, a physical product
256
+ (including a physical distribution medium), accompanied by a
257
+ written offer, valid for at least three years and valid for as
258
+ long as you offer spare parts or customer support for that product
259
+ model, to give anyone who possesses the object code either (1) a
260
+ copy of the Corresponding Source for all the software in the
261
+ product that is covered by this License, on a durable physical
262
+ medium customarily used for software interchange, for a price no
263
+ more than your reasonable cost of physically performing this
264
+ conveying of source, or (2) access to copy the
265
+ Corresponding Source from a network server at no charge.
266
+
267
+ c) Convey individual copies of the object code with a copy of the
268
+ written offer to provide the Corresponding Source. This
269
+ alternative is allowed only occasionally and noncommercially, and
270
+ only if you received the object code with such an offer, in
271
+ accord with subsection 6b.
272
+
273
+ d) Convey the object code by offering access from a designated
274
+ place (gratis or for a charge), and offer equivalent access to the
275
+ Corresponding Source in the same way through the same place at no
276
+ further charge. You need not require recipients to copy the
277
+ Corresponding Source along with the object code. If the place to
278
+ copy the object code is a network server, the Corresponding Source
279
+ may be on a different server (operated by you or a third party)
280
+ that supports equivalent copy facilities, provided you maintain
281
+ clear directions next to the object code saying where the
282
+ Corresponding Source is located. Regardless of what server hosts
283
+ the Corresponding Source, you remain obligated to ensure that it
284
+ is available for as long as needed to satisfy these requirements.
285
+
286
+ e) Convey the object code using peer-to-peer transmission, provided
287
+ you inform other peers where the object code and Corresponding
288
+ Source of the work are being offered to the general public at no
289
+ charge under subsection 6d.
290
+
291
+ A separable portion of the object code, whose source code is excluded
292
+ from the Corresponding Source as a System Library, need not be
293
+ included in conveying the object code work.
294
+
295
+ A "User Product" is either (1) a "consumer product", which means any
296
+ tangible personal property which is normally used for personal,
297
+ family, or household purposes, or (2) anything designed or sold for
298
+ incorporation into a dwelling. In determining whether a product is a
299
+ consumer product, doubtful cases shall be resolved in favor of
300
+ coverage. For a particular product received by a particular user,
301
+ "normally used" refers to a typical or common use of that class of
302
+ product, regardless of the status of the particular user or of the
303
+ way in which the particular user actually uses, or expects or is
304
+ expected to use, the product. A product is a consumer product
305
+ regardless of whether the product has substantial commercial,
306
+ industrial or non-consumer uses, unless such uses represent the only
307
+ significant mode of use of the product.
308
+
309
+ "Installation Information" for a User Product means any methods,
310
+ procedures, authorization keys, or other information required to
311
+ install and execute modified versions of a covered work in that User
312
+ Product from a modified version of its Corresponding Source. The
313
+ information must suffice to ensure that the continued functioning of
314
+ the modified object code is in no case prevented or interfered with
315
+ solely because modification has been made.
316
+
317
+ If you convey an object code work under this section in, or with, or
318
+ specifically for use in, a User Product, and the conveying occurs as
319
+ part of a transaction in which the right of possession and use of the
320
+ User Product is transferred to the recipient in perpetuity or for a
321
+ fixed term (regardless of how the transaction is characterized), the
322
+ Corresponding Source conveyed under this section must be accompanied
323
+ by the Installation Information. But this requirement does not apply
324
+ If neither you nor any third party retains the ability to install
325
+ modified object code on the User Product (for example, the work has
326
+ been installed in ROM).
327
+
328
+ The requirement to provide Installation Information does not include a
329
+ requirement to continue to provide support service, warranty, or updates
330
+ for a work that has been modified or installed by the recipient, or for
331
+ the User Product in which it has been modified or installed. Access to
332
+ a network may be denied when the modification itself materially and
333
+ adversely affects the operation of the network or violates the
334
+ rules and protocols for communication across the network.
335
+
336
+ Corresponding Source conveyed, and Installation Information provided,
337
+ in accord with this section must be in a format that is publicly
338
+ documented (and with an implementation available to the public in
339
+ source code form), and must require no special password or key for
340
+ unpacking, reading or execution.
341
+
342
+ 7. Additional Terms.
343
+
344
+ "Additional permissions" are terms that supplement the terms of this
345
+ License by making exceptions from one or more of its conditions.
346
+ Additional permissions that are applicable to the entire Program shall
347
+ be treated as though they were included in this License, to the extent
348
+ that they are valid under applicable law. If additional permissions
349
+ apply only to part of the Program, that part may be used separately
350
+ under those permissions, but the entire Program remains governed by
351
+ this License without regard to the additional permissions.
352
+
353
+ When you convey a copy of a covered work, you may at your option
354
+ remove any additional permissions from that copy, or from any part of
355
+ it. (Additional permissions may be written to require their own
356
+ removal in certain cases when you modify the work.) You may place
357
+ additional permissions on material, added by you to a covered work,
358
+ for which you have or can give appropriate copyright permission.
359
+
360
+ Notwithstanding any other provision of this License, for material you
361
+ add to a covered work, you may (if authorized by the copyright holders of
362
+ that material) supplement the terms of this License with terms:
363
+
364
+ a) Disclaiming warranty or limiting liability differently from the
365
+ terms of sections 15 and 16 of this License; or
366
+
367
+ b) Requiring preservation of specified reasonable legal notices or
368
+ author attributions in that material or in the Appropriate Legal
369
+ Notices displayed by works containing it; or
370
+
371
+ c) Prohibiting misrepresentation of the origin of that material, or
372
+ requiring that modified versions of such material be marked in
373
+ reasonable ways as different from the original version; or
374
+
375
+ d) Limiting the use for publicity purposes of names of licensors or
376
+ authors of the material; or
377
+
378
+ e) Declining to grant rights under trademark law for use of some
379
+ trade names, trademarks, or service marks; or
380
+
381
+ f) Requiring indemnification of licensors and authors of that
382
+ material by anyone who conveys the material (or modified versions of
383
+ it) with contractual assumptions of liability to the recipient, for
384
+ any liability that these contractual assumptions directly impose on
385
+ 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 the 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;
404
+ the 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
415
+ license from a particular copyright holder is reinstated (a)
416
+ provisionally, unless and until the copyright holder explicitly and
417
+ finally terminates your license, and (b) permanently, if the copyright
418
+ holder fails to notify you of the violation by some reasonable means
419
+ prior to 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
437
+ run 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 are copyright infringement if
442
+ you do not accept this License. Therefore, by modifying or
443
+ propagating a covered work, you indicate your acceptance of this
444
+ License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not
451
+ responsible for enforcing compliance by third parties with this
452
+ License.
453
+
454
+ An "entity transaction" is a transaction transferring control of an
455
+ organization, or substantially all assets of one, or subdividing an
456
+ organization, or merging organizations. If propagation of a covered
457
+ work results from an entity transaction, each party to that
458
+ transaction who receives a copy of the work also receives whatever
459
+ licenses to the work the party's predecessor in interest had or could
460
+ give under the previous paragraph, plus a right to possession of the
461
+ Corresponding Source of the work from the predecessor in interest, if
462
+ the predecessor has it or can get it with reasonable efforts.
463
+
464
+ You may not impose any further restrictions on the exercise of the
465
+ rights granted or affirmed under this License. For example, you may
466
+ not impose a licensing fee, royalty, or other charge for exercise of
467
+ rights granted under this License, and you may not initiate litigation
468
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
469
+ any patent claim is infringed by making, using, selling, offering for
470
+ sale, or importing the Program or any portion of it.
471
+
472
+ 11. Patents.
473
+
474
+ A "contributor" is a copyright holder who authorizes use under this
475
+ License of the Program or a work on which the Program is based. The
476
+ work thus licensed is called the contributor's "contributor version".
477
+
478
+ A contributor's "essential patent claims" are all patent claims
479
+ owned or controlled by the contributor, whether already acquired or
480
+ hereafter acquired, that would be infringed by some manner, permitted
481
+ by this License, of making, using, or selling its contributor version,
482
+ but do not include claims that would be infringed only as a
483
+ consequence of further modification of the contributor version. For
484
+ purposes of this definition, "control" includes the right to grant
485
+ patent sublicenses in a manner consistent with the requirements of
486
+ this License.
487
+
488
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
489
+ patent license under the contributor's essential patent claims, to
490
+ make, use, sell, offer for sale, import and otherwise run, modify and
491
+ propagate the contents of its contributor version.
492
+
493
+ In the following three paragraphs, a "patent license" is any express
494
+ agreement or commitment, however denominated, not to enforce a patent
495
+ (such as an express permission to practice a patent or covenant not to
496
+ sue for patent infringement). To "grant" such a patent license to a
497
+ party means to make such an agreement or commitment not to enforce a
498
+ patent against the party.
499
+
500
+ If you convey a covered work, knowingly relying on a patent license,
501
+ and the Corresponding Source of the work is not available for anyone
502
+ to copy, free of charge and under the terms of this License, through a
503
+ publicly available network server or other readily accessible means,
504
+ then you must either (1) cause the Corresponding Source to be so
505
+ available, or (2) arrange to deprive yourself of the benefit of the
506
+ patent license for this particular work, or (3) arrange, in a manner
507
+ consistent with the requirements of this License, to extend the patent
508
+ license to downstream recipients. "Knowingly relying" means you have
509
+ actual knowledge that, but for the patent license, your conveying the
510
+ covered work in a country, or your recipient's use of the covered work
511
+ in a country, would infringe one or more identifiable patents in that
512
+ country that you have reason to believe are valid.
513
+
514
+ If, pursuant to or in connection with a single transaction or
515
+ arrangement, you convey, or propagate by procuring conveyance of, a
516
+ covered work, and grant a patent license to some of the parties
517
+ receiving the covered work authorizing them to use, propagate, modify
518
+ or convey a specific copy of the covered work, then the patent license
519
+ you grant is automatically extended to all recipients of the covered
520
+ work and works based on it.
521
+
522
+ A patent license is "discriminatory" if it does not include within
523
+ the scope of its coverage, prohibits the exercise of, or is
524
+ conditioned on the non-exercise of one or more of the rights that are
525
+ specifically granted under this License. You may not convey a covered
526
+ work if you are a party to an arrangement with a third party that is
527
+ in the business of distributing software, under which you make payment
528
+ to the third party based on the extent of your activity of conveying
529
+ the work, and under which the third party grants, to any of the
530
+ parties who would receive the covered work from you, a discriminatory
531
+ patent license (a) in connection with copies of the covered work
532
+ conveyed by you (or copies made from those copies), or (b) primarily
533
+ for and in connection with specific products or compilations that
534
+ contain the covered work, unless you entered into that arrangement,
535
+ or that patent license was granted, prior to 28 March 2007.
536
+
537
+ Nothing in this License shall be construed as excluding or limiting
538
+ any implied license or other defenses to infringement that may
539
+ otherwise be available to you under applicable patent law.
540
+
541
+ 12. No Surrender of Others' Freedom.
542
+
543
+ If conditions are imposed on you (whether by court order, agreement or
544
+ otherwise) that contradict the conditions of this License, they do not
545
+ excuse you from the conditions of this License. If you cannot convey a
546
+ covered work so as to satisfy simultaneously your obligations under this
547
+ License and any other pertinent obligations, then as a consequence you may
548
+ not convey it at all. For example, if you agree to terms that obligate you
549
+ to collect a royalty for further conveying from those to whom you convey
550
+ the Program, the only way you could satisfy both those terms and this
551
+ License would be to refrain entirely from conveying the Program.
552
+
553
+ 13. Remote Network Interaction; Use with the GNU General Public License.
554
+
555
+ Notwithstanding any other provision of this License, if you modify the
556
+ Program, your modified version must prominently offer all users
557
+ interacting with it remotely through a computer network (if your
558
+ version supports such interaction) an opportunity to receive the
559
+ Corresponding Source of your version by providing access to the
560
+ Corresponding Source from a network server at no charge, through some
561
+ standard or customary means of facilitating copying of source. This
562
+ Corresponding Source shall include the Corresponding Source for any
563
+ work covered by version 3 of the GNU General Public License that is
564
+ incorporated pursuant to the following paragraph.
565
+
566
+ You may link or combine a covered work with a work licensed under
567
+ version 3 of the GNU General Public License into a single combined
568
+ work, and convey the resulting work. The terms of this License will
569
+ continue to apply to the part which is the covered work, but the work
570
+ with which it is combined will remain governed by version 3 of the
571
+ GNU General Public License.
572
+
573
+ 14. Revised Versions of this License.
574
+
575
+ The Free Software Foundation may publish revised and/or new versions
576
+ of the GNU Affero General Public License from time to time. Such new
577
+ versions will be similar in spirit to the present version, but may
578
+ differ in detail to address new problems or concerns.
579
+
580
+ Each version is given a distinguishing version number. If the
581
+ Program specifies that a certain numbered version of the GNU Affero
582
+ General Public License "or any later version" applies to it, you have
583
+ the option of following the terms and conditions either of that
584
+ numbered version or of any later version published by the Free
585
+ Software Foundation. If the Program does not specify a version number
586
+ of the GNU Affero General Public License, you may choose any version
587
+ ever published by the Free Software Foundation.
588
+
589
+ If the Program specifies that a proxy can decide which future
590
+ versions of the GNU Affero General Public License can be used, that
591
+ proxy's public statement of acceptance of a version permanently
592
+ authorizes you to choose that version for the Program.
593
+
594
+ Later license versions may give you additional or different
595
+ permissions. However, no additional or different obligations are
596
+ imposed on any author or copyright holder as a result of your choosing
597
+ to follow a later version.
598
+
599
+ 15. Disclaimer of Warranty.
600
+
601
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
602
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
603
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
604
+ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
605
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
606
+ PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE
607
+ OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU
608
+ ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
609
+
610
+ 16. Limitation of Liability.
611
+
612
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
613
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
614
+ CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
615
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
616
+ ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
617
+ NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
618
+ LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
619
+ TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY
620
+ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
621
+
622
+ 17. Interpretation of Sections 15 and 16.
623
+
624
+ If the disclaimer of warranty and limitation of liability provided
625
+ above cannot be given local legal effect according to their terms,
626
+ reviewing courts shall apply local law that most closely approximates
627
+ a absolute waiver of all civil liability in connection with the
628
+ Program, unless a warranty or assumption of liability accompanies a
629
+ copy of the Program in return for a fee.
630
+
631
+ END OF TERMS AND CONDITIONS