2
0

THIRD-PARTY-NOTICES.txt 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. ChakraCore uses third party material from the projects listed below.
  2. The original copyright notice and the license under which Microsoft
  3. received such third party material are set forth below. Microsoft
  4. reserves all other rights not expressly granted, whether by
  5. implication, estoppel or otherwise.
  6. In the event that we accidentally failed to list a required notice, please
  7. bring it to our attention. Post an issue or email us: [email protected]
  8. THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
  9. Do Not Translate or Localize
  10. ChakraCore incorporates third party material from the projects listed below.
  11. The original copyright notice and the license under which Microsoft received
  12. such third party material are set forth below. Microsoft reserves all other
  13. rights not expressly granted, whether by implication, estoppel or otherwise.
  14. 1. backbone.suggestions (https://github.com/qloo/backbone.suggestions)
  15. 2. BeatDetektor.js
  16. 3. Catch
  17. 4. CRC.h
  18. 5. deltablue.js
  19. 6. Dojo Toolkit (https://dojotoolkit.org)
  20. 7. DSP.js (https://github.com/corbanbrook/dsp.js/)
  21. 8. ecma-proposal-object.getownpropertydescriptors (https://github.com/tc39/proposal-object-getownpropertydescriptors/)
  22. 9. File copyright Microsoft and Geoff Norton
  23. 10. File with code copyright Baron Schwartz (Sunspider/xparb.js)
  24. 11. Files copyright .NET Foundation
  25. 12. Files with code copyright Paul Johnston (http://pajhome.org.uk/)
  26. 13. Intel VTune Amplifier XE (https://software.intel.com/en-us/intel-vtune-amplifier-xe)
  27. 14. JavaScript GameBoy Color Emulator
  28. 15. JetStream
  29. 16. jQuery (https://github.com/jquery/jquery)
  30. 17. Kraken (http://krakenbenchmark.mozilla.org)
  31. 18. MakeNewWorld() function
  32. 19. MochiKit (https://github.com/mochi/mochikit)
  33. 20. Mozilla XML-RPC Client code
  34. 21. Octane (https://github.com/chromium/octane)
  35. 22. pdfjs.js (https://github.com/mozilla/pdf.js)
  36. 23. Pixastic Lib (https://github.com/jseidelin/pixastic)
  37. 24. Prototype (https://github.com/sstephenson/prototype)
  38. 25. Sputnik (https://github.com/fholm/IronJS/tree/master/Src/Tests/Sputnik/sputnik-v1)
  39. 26. SunSpider
  40. 27. test262 (https://github.com/tc39/test262)
  41. 28. The Computer Language Shootout
  42. 29. WebAssembly/testsuite (https://github.com/WebAssembly/testsuite)
  43. 30. zlib-data.js
  44. 31. yargs-parser.js (https://github.com/yargs/yargs-parser)
  45. 32. camelcase.js (https://github.com/sindresorhus/camelcase)
  46. %% backbone.suggestions NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  47. =========================================
  48. Copyright (c) 2011-2012 Michael Diolosa (@mbrio)
  49. Permission is hereby granted, free of charge, to any person obtaining a copy of
  50. this software and associated documentation files (the "Software"), to deal in
  51. the Software without restriction, including without limitation the rights to
  52. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  53. of the Software, and to permit persons to whom the Software is furnished to do
  54. so, subject to the following conditions:
  55. The above copyright notice and this permission notice shall be included in all
  56. copies or substantial portions of the Software.
  57. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  58. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  59. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  60. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  61. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  62. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  63. SOFTWARE.
  64. =========================================
  65. END OF backbone.suggestions NOTICES, INFORMATION, AND LICENSE
  66. %% BeatDetektor.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  67. [PART OF KRAKEN TEST SUITE]
  68. =========================================
  69. * BeatDetektor.js
  70. *
  71. * BeatDetektor - CubicFX Visualizer Beat Detection & Analysis Algorithm
  72. * Javascript port by Charles J. Cliffe and Corban Brook
  73. *
  74. * Created by Charles J. Cliffe on 09-11-30.
  75. * Copyright 2009 Charles J. Cliffe. All rights reserved.
  76. *
  77. * BeatDetektor is free software: you can redistribute it and/or modify
  78. * it under the terms of the GNU Lesser General Public License as published by
  79. * the Free Software Foundation, either version 3 of the License, or
  80. * (at your option) any later version.
  81. *
  82. * Please note that only the Javascript version of BeatDetektor is licensed
  83. * under the terms of LGPL version 3; ports of BeatDetektor or derivatives
  84. * in other languages are licensed under the terms of GPL version 3.
  85. *
  86. * BeatDetektor is distributed in the hope that it will be useful,
  87. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  88. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  89. * GNU Lesser General Public License for more details.
  90. *
  91. * You should have received a copy of the GNU Lesser General Public License
  92. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  93. *
  94. * Please contact [email protected] if you seek alternate
  95. * licensing terms for your project.
  96. *
  97. GNU LESSER GENERAL PUBLIC LICENSE
  98. Version 3, 29 June 2007
  99. Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
  100. Everyone is permitted to copy and distribute verbatim copies of this license
  101. document, but changing it is not allowed. This version of the GNU Lesser General
  102. Public License incorporates the terms and conditions of version 3 of the GNU
  103. General Public License, supplemented by the additional permissions listed below.
  104. 0. Additional Definitions.
  105. As used herein, 'this License' refers to version 3 of the GNU Lesser General
  106. Public License, and the 'GNU GPL' refers to version 3 of the GNU General Public License.
  107. 'The Library' refers to a covered work governed by this License, other than an
  108. Application or a Combined Work as defined below.
  109. An 'Application' is any work that makes use of an interface provided by the Library,
  110. but which is not otherwise based on the Library. Defining a subclass of a class
  111. defined by the Library is deemed a mode of using an interface provided by the Library.
  112. A 'Combined Work' is a work produced by combining or linking an Application with
  113. the Library. The particular version of the Library with which the Combined Work
  114. was made is also called the 'Linked Version'.
  115. The 'Minimal Corresponding Source' for a Combined Work means the Corresponding
  116. Source for the Combined Work, excluding any source code for portions of the
  117. Combined Work that, considered in isolation, are based on the Application,
  118. and not on the Linked Version.
  119. The 'Corresponding Application Code' for a Combined Work means the object code
  120. and/or source code for the Application, including any data and utility programs
  121. needed for reproducing the Combined Work from the Application, but excluding the
  122. System Libraries of the Combined Work.
  123. 1. Exception to Section 3 of the GNU GPL.
  124. You may convey a covered work under sections 3 and 4 of this License without being
  125. bound by section 3 of the GNU GPL.
  126. 2. Conveying Modified Versions.
  127. If you modify a copy of the Library, and, in your modifications, a facility refers
  128. to a function or data to be supplied by an Application that uses the facility
  129. (other than as an argument passed when the facility is invoked), then you may
  130. convey a copy of the modified version:
  131. a) under this License, provided that you make a good faith effort to ensure that,
  132. in the event an Application does not supply the function or data, the facility
  133. still operates, and performs whatever part of its purpose remains meaningful, or
  134. b) under the GNU GPL, with none of the additional permissions of this License
  135. applicable to that copy.
  136. 3. Object Code Incorporating Material from Library Header Files.
  137. The object code form of an Application may incorporate material from a header file
  138. that is part of the Library. You may convey such object code under terms of your
  139. choice, provided that, if the incorporated material is not limited to numerical
  140. parameters, data structure layouts and accessors, or small macros, inline functions
  141. and templates (ten or fewer lines in length), you do both of the following:
  142. a) Give prominent notice with each copy of the object code that the Library is used
  143. in it and that the Library and its use are covered by this License.
  144. b) Accompany the object code with a copy of the GNU GPL and this license document.
  145. 4. Combined Works.
  146. You may convey a Combined Work under terms of your choice that, taken together,
  147. effectively do not restrict modification of the portions of the Library contained
  148. in the Combined Work and reverse engineering for debugging such modifications, if
  149. you also do each of the following:
  150. a) Give prominent notice with each copy of the Combined Work that the Library is
  151. used in it and that the Library and its use are covered by this License.
  152. b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
  153. c) For a Combined Work that displays copyright notices during execution, include
  154. the copyright notice for the Library among these notices, as well as a reference
  155. directing the user to the copies of the GNU GPL and this license document.
  156. d) Do one of the following:
  157. 0) Convey the Minimal Corresponding Source under the terms of this License, and
  158. the Corresponding Application Code in a form suitable for, and under terms that
  159. permit, the user to recombine or relink the Application with a modified version
  160. of the Linked Version to produce a modified Combined Work, in the manner specified
  161. by section 6 of the GNU GPL for conveying Corresponding Source.
  162. 1) Use a suitable shared library mechanism for linking with the Library. A suitable
  163. mechanism is one that (a) uses at run time a copy of the Library already present
  164. on the user's computer system, and (b) will operate properly with a modified
  165. version of the Library that is interface-compatible with the Linked Version.
  166. e) Provide Installation Information, but only if you would otherwise be required
  167. to provide such information under section 6 of the GNU GPL, and only to the extent
  168. that such information is necessary to install and execute a modified version of
  169. the Combined Work produced by recombining or relinking the Application with a
  170. modified version of the Linked Version. (If you use option 4d0, the Installation
  171. Information must accompany the Minimal Corresponding Source and Corresponding
  172. Application Code. If you use option 4d1, you must provide the Installation
  173. Information in the manner specified by section 6 of the GNU GPL for conveying
  174. Corresponding Source.)
  175. 5. Combined Libraries.
  176. You may place library facilities that are a work based on the Library side by
  177. side in a single library together with other library facilities that are not
  178. Applications and are not covered by this License, and convey such a combined
  179. library under terms of your choice, if you do both of the following:
  180. a) Accompany the combined library with a copy of the same work based on the
  181. Library, uncombined with any other library facilities, conveyed under the terms
  182. of this License.
  183. b) Give prominent notice with the combined library that part of it is a work
  184. based on the Library, and explaining where to find the accompanying uncombined
  185. form of the same work.
  186. 6. Revised Versions of the GNU Lesser General Public License.
  187. The Free Software Foundation may publish revised and/or new versions of the GNU
  188. Lesser General Public License from time to time. Such new versions will be similar
  189. in spirit to the present version, but may differ in detail to address new problems
  190. or concerns. Each version is given a distinguishing version number. If the Library
  191. as you received it specifies that a certain numbered version of the GNU Lesser
  192. General Public License 'or any later version' applies to it, you have the option
  193. of following the terms and conditions either of that published version or of any
  194. later version published by the Free Software Foundation. If the Library as you
  195. received it does not specify a version number of the GNU Lesser General Public
  196. License, you may choose any version of the GNU Lesser General Public License
  197. ever published by the Free Software Foundation.
  198. If the Library as you received it specifies that a proxy can decide whether
  199. future versions of the GNU Lesser General Public License shall apply, that
  200. proxy's public statement of acceptance of any version is permanent authorization
  201. for you to choose that version for the Library.
  202. =========================================
  203. END OF BeatDetektor.js NOTICES, INFORMATION, AND LICENSE
  204. %% Catch NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  205. =========================================
  206. For Catch:
  207. Catch
  208. Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
  209. Boost Software License - Version 1.0 - August 17th, 2003
  210. Permission is hereby granted, free of charge, to any person or organization
  211. obtaining a copy of the software and accompanying documentation covered by
  212. this license (the "Software") to use, reproduce, display, distribute,
  213. execute, and transmit the Software, and to prepare derivative works of the
  214. Software, and to permit third-parties to whom the Software is furnished to
  215. do so, all subject to the following:
  216. The copyright notices in the Software and this entire statement, including
  217. the above license grant, this restriction and the following disclaimer,
  218. must be included in all copies of the Software, in whole or in part, and
  219. all derivative works of the Software, unless such copies or derivative
  220. works are solely in the form of machine-executable object code generated by
  221. a source language processor.
  222. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  223. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  224. FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
  225. SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
  226. FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
  227. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  228. DEALINGS IN THE SOFTWARE.
  229. For code from cocoawithlove.com:
  230. Copyright © 2008-2016 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved.
  231. Permission to use, copy, modify, and/or distribute this software for any purpose
  232. with or without fee is hereby granted, provided that the above copyright notice
  233. and this permission notice appear in all copies.
  234. THE SOFTWARE IS PROVIDED 'AS IS' AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
  235. REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  236. FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
  237. OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  238. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  239. ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  240. For code from developer.apple.com:
  241. Ownership of Site; Agreement to Terms of Use
  242. These Terms and Conditions of Use (the 'Terms of Use') apply to the Apple web
  243. site located at www.apple.com, and all associated sites linked to www.apple.com
  244. by Apple, its subsidiaries and affiliates, including Apple sites around the world
  245. (collectively, the 'Site'). The Site is the property of Apple Inc. ('Apple') and
  246. its licensors. BY USING THE SITE, YOU AGREE TO THESE TERMS OF USE; IF YOU DO NOT
  247. AGREE, DO NOT USE THE SITE.
  248. Apple reserves the right, at its sole discretion, to change, modify, add or remove
  249. portions of these Terms of Use, at any time. It is your responsibility to check
  250. these Terms of Use periodically for changes. Your continued use of the Site following
  251. the posting of changes will mean that you accept and agree to the changes. As long
  252. as you comply with these Terms of Use, Apple grants you a personal, non-exclusive,
  253. non-transferable, limited privilege to enter and use the Site.
  254. Content
  255. All text, graphics, user interfaces, visual interfaces, photographs, trademarks,
  256. logos, sounds, music, artwork and computer code (collectively, 'Content'),
  257. including but not limited to the design, structure, selection, coordination,
  258. expression, 'look and feel' and arrangement of such Content, contained on the
  259. Site is owned, controlled or licensed by or to Apple, and is protected by trade
  260. dress, copyright, patent and trademark laws, and various other intellectual
  261. property rights and unfair competition laws.
  262. Except as expressly provided in these Terms of Use, no part of the Site and no
  263. Content may be copied, reproduced, republished, uploaded, posted, publicly displayed,
  264. encoded, translated, transmitted or distributed in any way (including 'mirroring')
  265. to any other computer, server, Web site or other medium for publication or
  266. distribution or for any commercial enterprise, without Appleís express prior written
  267. consent.
  268. You may use information on Apple products and services (such as data sheets,
  269. knowledge base articles, and similar materials) purposely made available by Apple
  270. for downloading from the Site, provided that you (1) not remove any proprietary
  271. notice language in all copies of such documents, (2) use such information only
  272. for your personal, non-commercial informational purpose and do not copy or post
  273. such information on any networked computer or broadcast it in any media, (3)
  274. make no modifications to any such information, and (4) not make any additional
  275. representations or warranties relating to such documents.
  276. Your Use of the Site
  277. You may not use any 'deep-link', 'page-scrape', 'robot', 'spider' or other
  278. automatic device, program, algorithm or methodology, or any similar or equivalent
  279. manual process, to access, acquire, copy or monitor any portion of the Site or
  280. any Content, or in any way reproduce or circumvent the navigational structure or
  281. presentation of the Site or any Content, to obtain or attempt to obtain any
  282. materials, documents or information through any means not purposely made available
  283. through the Site. Apple reserves the right to bar any such activity.
  284. You may not attempt to gain unauthorized access to any portion or feature of the
  285. Site, or any other systems or networks connected to the Site or to any Apple
  286. server, or to any of the services offered on or through the Site, by hacking,
  287. password 'mining' or any other illegitimate means.
  288. You may not probe, scan or test the vulnerability of the Site or any network
  289. connected to the Site, nor breach the security or authentication measures on
  290. the Site or any network connected to the Site. You may not reverse look-up,
  291. trace or seek to trace any information on any other user of or visitor to the
  292. Site, or any other customer of Apple, including any Apple account not owned by
  293. you, to its source, or exploit the Site or any service or information made
  294. available or offered by or through the Site, in any way where the purpose is
  295. to reveal any information, including but not limited to personal identification
  296. or information, other than your own information, as provided for by the Site.
  297. You agree that you will not take any action that imposes an unreasonable or
  298. disproportionately large load on the infrastructure of the Site or Apple's
  299. systems or networks, or any systems or networks connected to the Site or to Apple.
  300. You agree not to use any device, software or routine to interfere or attempt
  301. to interfere with the proper working of the Site or any transaction being
  302. conducted on the Site, or with any other personís use of the Site.
  303. You may not forge headers or otherwise manipulate identifiers in order to disguise
  304. the origin of any message or transmittal you send to Apple on or through the Site
  305. or any service offered on or through the Site. You may not pretend that you are,
  306. or that you represent, someone else, or impersonate any other individual or entity.
  307. You may not use the Site or any Content for any purpose that is unlawful or
  308. prohibited by these Terms of Use, or to solicit the performance of any illegal
  309. activity or other activity which infringes the rights of Apple or others.
  310. Purchases; Other Terms and Conditions
  311. Additional terms and conditions may apply to purchases of goods or services and
  312. to specific portions or features of the Site, including contests, promotions or
  313. other similar features, all of which terms are made a part of these Terms of Use
  314. by this reference. You agree to abide by such other terms and conditions,
  315. including where applicable representing that you are of sufficient legal age to
  316. use or participate in such service or feature. If there is a conflict between
  317. these Terms of Use and the terms posted for or applicable to a specific portion
  318. of the Site or for any service offered on or through the Site, the latter terms
  319. shall control with respect to your use of that portion of the Site or the specific service.
  320. Apple's obligations, if any, with regard to its products and services are governed
  321. solely by the agreements pursuant to which they are provided, and nothing on this
  322. Site should be construed to alter such agreements.
  323. Apple may make changes to any products or services offered on the Site, or to the
  324. applicable prices for any such products or services, at any time, without notice.
  325. The materials on the Site with respect to products and services may be out of date,
  326. and Apple makes no commitment to update the materials on the Site with respect to
  327. such products and services.
  328. The following terms also govern and apply to your use of the Site, and they are
  329. incorporated herein by this reference:
  330. Guidelines for Using Apple Trademarks & Copyrights
  331. Rights & Permissions
  332. Trademarks
  333. Claims of Copyright Infringement
  334. Piracy
  335. Counterfeit Products
  336. Apple's Unsolicited Idea Submission Policy
  337. Software License Information
  338. Legal Contacts
  339. Each of these policies may be changed from time to time and are effective
  340. immediately upon posting such changes on the Site.
  341. Accounts, Passwords and Security
  342. Certain features or services offered on or through the Site may require you to
  343. open an account (including setting up an Apple ID and password). You are entirely
  344. responsible for maintaining the confidentiality of the information you hold for
  345. your account, including your password, and for any and all activity that occurs
  346. under your account as a result of your failing to keep this information secure
  347. and confidential. You agree to notify Apple immediately of any unauthorized use
  348. of your account or password, or any other breach of security. You may be held
  349. liable for losses incurred by Apple or any other user of or visitor to the Site
  350. due to someone else using your Apple ID, password or account as a result of your
  351. failing to keep your account information secure and confidential.
  352. You may not use anyone elseís Apple ID, password or account at any time without
  353. the express permission and consent of the holder of that Apple ID, password or
  354. account. Apple cannot and will not be liable for any loss or damage arising
  355. from your failure to comply with these obligations.
  356. Privacy
  357. Appleís Privacy Policy applies to use of this Site, and its terms are made a part
  358. of these Terms of Use by this reference. To view Appleís Privacy Policy, click
  359. here. Additionally, by using the Site, you acknowledge and agree that Internet
  360. transmissions are never completely private or secure. You understand that any
  361. message or information you send to the Site may be read or intercepted by others,
  362. even if there is a special notice that a particular transmission (for example,
  363. credit card information) is encrypted.
  364. Links to Other Sites and to the Apple Site
  365. This Site may contain links to other independent third-party Web sites ('Linked
  366. Sites'). These Linked Sites are provided solely as a convenience to our visitors.
  367. Such Linked Sites are not under Appleís control, and Apple is not responsible
  368. for and does not endorse the content of such Linked Sites, including any information
  369. or materials contained on such Linked Sites. You will need to make your own
  370. independent judgment regarding your interaction with these Linked Sites.
  371. Disclaimers
  372. APPLE DOES NOT PROMISE THAT THE SITE OR ANY CONTENT, SERVICE OR FEATURE OF THE
  373. SITE WILL BE ERROR-FREE OR UNINTERRUPTED, OR THAT ANY DEFECTS WILL BE CORRECTED,
  374. OR THAT YOUR USE OF THE SITE WILL PROVIDE SPECIFIC RESULTS. THE SITE AND ITS CONTENT
  375. ARE DELIVERED ON AN 'AS-IS' AND 'AS-AVAILABLE' BASIS. ALL INFORMATION PROVIDED ON
  376. THE SITE IS SUBJECT TO CHANGE WITHOUT NOTICE. APPLE CANNOT ENSURE THAT ANY FILES
  377. OR OTHER DATA YOU DOWNLOAD FROM THE SITE WILL BE FREE OF VIRUSES OR CONTAMINATION
  378. OR DESTRUCTIVE FEATURES. APPLE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  379. INCLUDING ANY WARRANTIES OF ACCURACY, NON-INFRINGEMENT, MERCHANTABILITY AND
  380. FITNESS FOR A PARTICULAR PURPOSE. APPLE DISCLAIMS ANY AND ALL LIABILITY FOR THE
  381. ACTS, OMISSIONS AND CONDUCT OF ANY THIRD PARTIES IN CONNECTION WITH OR RELATED
  382. TO YOUR USE OF THE SITE AND/OR ANY APPLE SERVICES. YOU ASSUME TOTAL RESPONSIBILITY
  383. FOR YOUR USE OF THE SITE AND ANY LINKED SITES. YOUR SOLE REMEDY AGAINST APPLE FOR
  384. DISSATISFACTION WITH THE SITE OR ANY CONTENT IS TO STOP USING THE SITE OR ANY SUCH
  385. CONTENT. THIS LIMITATION OF RELIEF IS A PART OF THE BARGAIN BETWEEN THE PARTIES.
  386. The above disclaimer applies to any damages, liability or injuries caused by any
  387. failure of performance, error, omission, interruption, deletion, defect, delay in
  388. operation or transmission, computer virus, communication line failure, theft or
  389. destruction of or unauthorized access to, alteration of, or use, whether for breach
  390. of contract, tort, negligence or any other cause of action.
  391. Apple reserves the right to do any of the following, at any time, without notice:
  392. (1) to modify, suspend or terminate operation of or access to the Site, or any
  393. portion of the Site, for any reason; (2) to modify or change the Site, or any
  394. portion of the Site, and any applicable policies or terms; and (3) to interrupt
  395. the operation of the Site, or any portion of the Site, as necessary to perform
  396. routine or non-routine maintenance, error correction, or other changes.
  397. Limitation of Liability
  398. Except where prohibited by law, in no event will Apple be liable to you for any
  399. indirect, consequential, exemplary, incidental or punitive damages, including
  400. lost profits, even if Apple has been advised of the possibility of such damages.
  401. If, notwithstanding the other provisions of these Terms of Use, Apple is found
  402. to be liable to you for any damage or loss which arises out of or is in any way
  403. connected with your use of the Site or any Content, Appleís liability shall in
  404. no event exceed the greater of (1) the total of any subscription or similar fees
  405. with respect to any service or feature of or on the Site paid in the six months
  406. prior to the date of the initial claim made against Apple (but not including the
  407. purchase price for any Apple hardware or software products or any AppleCare or
  408. similar support program), or (2) US$100.00. Some jurisdictions do not allow
  409. limitations of liability, so the foregoing limitation may not apply to you.
  410. Indemnity
  411. You agree to indemnify and hold Apple, its officers, directors, shareholders,
  412. predecessors, successors in interest, employees, agents, subsidiaries and affiliates,
  413. harmless from any demands, loss, liability, claims or expenses (including attorneys'
  414. fees), made against Apple by any third party due to or arising out of or in
  415. connection with your use of the Site.
  416. Violation of These Terms of Use
  417. Apple may disclose any information we have about you (including your identity)
  418. if we determine that such disclosure is necessary in connection with any
  419. investigation or complaint regarding your use of the Site, or to identify, contact
  420. or bring legal action against someone who may be causing injury to or interference
  421. with (either intentionally or unintentionally) Appleís rights or property, or the
  422. rights or property of visitors to or users of the Site, including Apple's
  423. customers. Apple reserves the right at all times to disclose any information that
  424. Apple deems necessary to comply with any applicable law, regulation, legal process
  425. or governmental request. Apple also may disclose your information when Apple
  426. determines that applicable law requires or permits such disclosure, including
  427. exchanging information with other companies and organizations for fraud protection
  428. purposes.
  429. You acknowledge and agree that Apple may preserve any transmittal or communication
  430. by you with Apple through the Site or any service offered on or through the Site,
  431. and may also disclose such data if required to do so by law or Apple determines
  432. that such preservation or disclosure is reasonably necessary to (1) comply with
  433. legal process, (2) enforce these Terms of Use, (3) respond to claims that any
  434. such data violates the rights of others, or (4) protect the rights, property or
  435. personal safety of Apple, its employees, users of or visitors to the Site, and
  436. the public.
  437. You agree that Apple may, in its sole discretion and without prior notice,
  438. terminate your access to the Site and/or block your future access to the Site
  439. if we determine that you have violated these Terms of Use or other agreements
  440. or guidelines which may be associated with your use of the Site. You also agree
  441. that any violation by you of these Terms of Use will constitute an unlawful and
  442. unfair business practice, and will cause irreparable harm to Apple, for which
  443. monetary damages would be inadequate, and you consent to Apple obtaining any
  444. injunctive or equitable relief that Apple deems necessary or appropriate in
  445. such circumstances. These remedies are in addition to any other remedies Apple
  446. may have at law or in equity.
  447. You agree that Apple may, in its sole discretion and without prior notice,
  448. terminate your access to the Site, for cause, which includes (but is not limited
  449. to) (1) requests by law enforcement or other government agencies, (2) a request
  450. by you (self-initiated account deletions), (3) discontinuance or material
  451. modification of the Site or any service offered on or through the Site, or (4)
  452. unexpected technical issues or problems.
  453. If Apple does take any legal action against you as a result of your violation of
  454. these Terms of Use, Apple will be entitled to recover from you, and you agree to
  455. pay, all reasonable attorneysí fees and costs of such action, in addition to any
  456. other relief granted to Apple. You agree that Apple will not be liable to you or
  457. to any third party for termination of your access to the Site as a result of any
  458. violation of these Terms of Use.
  459. Governing Law; Dispute Resolution
  460. You agree that all matters relating to your access to or use of the Site,
  461. including all disputes, will be governed by the laws of the United States and by
  462. the laws of the State of California without regard to its conflicts of laws
  463. provisions. You agree to the personal jurisdiction by and venue in the state and
  464. federal courts in Santa Clara County, California, and waive any objection to such
  465. jurisdiction or venue. The preceding provision regarding venue does not apply if
  466. you are a consumer based in the European Union. If you are a consumer based in
  467. the European Union, you may make a claim in the courts of the country where you
  468. reside. Any claim under these Terms of Use must be brought within one (1) year
  469. after the cause of action arises, or such claim or cause of action is barred.
  470. Claims made under the separate terms and conditions of purchase for goods and
  471. services are not subject to this limitation. No recovery may be sought or
  472. received for damages other than out-of-pocket expenses, except that the
  473. prevailing party will be entitled to costs and attorneysí fees. In the event of
  474. any controversy or dispute between Apple and you arising out of or in connection
  475. with your use of the Site, the parties shall attempt, promptly and in good faith,
  476. to resolve any such dispute. If we are unable to resolve any such dispute within
  477. a reasonable time (not to exceed thirty (30) days), then either party may submit
  478. such controversy or dispute to mediation. If the dispute cannot be resolved
  479. through mediation, then the parties shall be free to pursue any right or remedy
  480. available to them under applicable law.
  481. Void Where Prohibited
  482. Apple administers and operates the www.apple.com Site from its location in Cupertino,
  483. California USA; other Apple sites may be administered and operated from various
  484. locations outside the United States. Although the Site is accessible worldwide,
  485. not all features, products or services discussed, referenced, provided or offered
  486. through or on the Site are available to all persons or in all geographic locations,
  487. or appropriate or available for use outside the United States. Apple reserves the
  488. right to limit, in its sole discretion, the provision and quantity of any feature,
  489. product or service to any person or geographic area. Any offer for any feature,
  490. product or service made on the Site is void where prohibited. If you choose to
  491. access the Site from outside the United States, you do so on your own initiative
  492. and you are solely responsible for complying with applicable local laws.
  493. Miscellaneous
  494. You may not use or export or re-export any Content or any copy or adaptation of
  495. such Content, or any product or service offered on the Site, in violation of any
  496. applicable laws or regulations, including without limitation United States export
  497. laws and regulations.
  498. If any of the provisions of these Terms of Use are held by a court or other
  499. tribunal of competent jurisdiction to be void or unenforceable, such provisions
  500. shall be limited or eliminated to the minimum extent necessary and replaced with
  501. a valid provision that best embodies the intent of these Terms of Use, so that
  502. these Terms of Use shall remain in full force and effect. These Terms of Use
  503. constitute the entire agreement between you and Apple with regard to your use of
  504. the Site, and any and all other written or oral agreements or understandings
  505. previously existing between you and Apple with respect to such use are hereby
  506. superseded and cancelled. Other than as provided in a purchase agreement you
  507. enter into with Apple, Apple will not accept any counter-offers to these Terms
  508. of Use, and all such offers are hereby categorically rejected. Appleís failure
  509. to insist on or enforce strict performance of these Terms of Use shall not be
  510. construed as a waiver by Apple of any provision or any right it has to enforce
  511. these Terms of Use, nor shall any course of conduct between Apple and you or
  512. any other party be deemed to modify any provision of these Terms of Use. These
  513. Terms of Use shall not be interpreted or construed to confer any rights or
  514. remedies on any third parties.
  515. Apple provides access to Apple international data and, therefore, may contain
  516. references or cross references to Apple products, programs and services that
  517. are not announced in your country. Such reference does not imply that Apple in
  518. your country intends to announce such products, programs or services.
  519. Feedback and Information
  520. Any feedback you provide at this site shall be deemed to be non-confidential.
  521. Apple shall be free to use such information on an unrestricted basis.
  522. The information contained in this web site is subject to change without notice.
  523. Copyright © 1997-2009 Apple Inc. All rights reserved.
  524. Apple Inc., 1 Infinite Loop, Cupertino, CA 95014, USA.
  525. Updated by The Apple Legal Team on Nov. 20, 2009
  526. =========================================
  527. END OF Catch NOTICES, INFORMATION, AND LICENSE
  528. %% CRC.h NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  529. =========================================
  530. COPYRIGHT (C) 1986 Gary S. Brown. You may use this program, or code or tables
  531. extracted from it, as desired without restriction.
  532. =========================================
  533. END OF CRC.h NOTICES, INFORMATION, AND LICENSE
  534. %% deltablue.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  535. [PART OF OCTANE BENCHMARK]
  536. =========================================
  537. /////////////////////////////////////////////////////////////
  538. // deltablue.js
  539. /////////////////////////////////////////////////////////////
  540. // Copyright 2008 the V8 project authors. All rights reserved.
  541. // Copyright 1996 John Maloney and Mario Wolczko.
  542. // This program is free software; you can redistribute it and/or modify
  543. // it under the terms of the GNU General Public License as published by
  544. // the Free Software Foundation; either version 2 of the License, or
  545. // (at your option) any later version.
  546. //
  547. // This program is distributed in the hope that it will be useful,
  548. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  549. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  550. // GNU General Public License for more details.
  551. //
  552. // You should have received a copy of the GNU General Public License
  553. // along with this program; if not, write to the Free Software
  554. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  555. // This implementation of the DeltaBlue benchmark is derived
  556. // from the Smalltalk implementation by John Maloney and Mario
  557. // Wolczko. Some parts have been translated directly, whereas
  558. // others have been modified more aggresively to make it feel
  559. // more like a JavaScript program.
  560. GNU GENERAL PUBLIC LICENSE
  561. Version 2, June 1991
  562. Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  563. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  564. Everyone is permitted to copy and distribute verbatim copies
  565. of this license document, but changing it is not allowed.
  566. Preamble
  567. The licenses for most software are designed to take away your freedom to share
  568. and change it. By contrast, the GNU General Public License is intended to guarantee
  569. your freedom to share and change free software--to make sure the software is free
  570. for all its users. This General Public License applies to most of the Free
  571. Software Foundation's software and to any other program whose authors commit
  572. to using it. (Some other Free Software Foundation software is covered by the GNU
  573. Lesser General Public License instead.) You can apply it to your programs, too.
  574. When we speak of free software, we are referring to freedom, not price. Our General
  575. Public Licenses are designed to make sure that you have the freedom to distribute
  576. copies of free software (and charge for this service if you wish), that you receive
  577. source code or can get it if you want it, that you can change the software or
  578. use pieces of it in new free programs; and that you know you can do these things.
  579. To protect your rights, we need to make restrictions that forbid anyone to deny
  580. you these rights or to ask you to surrender the rights. These restrictions
  581. translate to certain responsibilities for you if you distribute copies of the
  582. software, or if you modify it. For example, if you distribute copies of such a
  583. program, whether gratis or for a fee, you must give the recipients all the rights
  584. that you have. You must make sure that they, too, receive or can get the source
  585. code. And you must show them these terms so they know their rights.
  586. We protect your rights with two steps: (1) copyright the software, and (2) offer
  587. you this license which gives you legal permission to copy, distribute and/or
  588. modify the software.
  589. Also, for each author's protection and ours, we want to make certain that
  590. everyone understands that there is no warranty for this free software. If the
  591. software is modified by someone else and passed on, we want its recipients to
  592. know that what they have is not the original, so that any problems introduced
  593. by others will not reflect on the original authors' reputations.
  594. Finally, any free program is threatened constantly by software patents. We wish
  595. to avoid the danger that redistributors of a free program will individually
  596. obtain patent licenses, in effect making the program proprietary. To prevent
  597. this, we have made it clear that any patent must be licensed for everyone's
  598. free use or not licensed at all.
  599. The precise terms and conditions for copying, distribution and modification follow.
  600. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  601. 0. This License applies to any program or other work which contains a notice
  602. placed by the copyright holder saying it may be distributed under the terms
  603. of this General Public License. The "Program", below, refers to any such program
  604. or work, and a "work based on the Program" means either the Program or any
  605. derivative work under copyright law: that is to say, a work containing the
  606. Program or a portion of it, either verbatim or with modifications and/or translated
  607. into another language. (Hereinafter, translation is included without limitation in
  608. the term "modification".) Each licensee is addressed as "you".
  609. Activities other than copying, distribution and modification are not covered by
  610. this License; they are outside its scope. The act of running the Program is not
  611. restricted, and the output from the Program is covered only if its contents
  612. constitute a work based on the Program (independent of having been made by running
  613. the Program). Whether that is true depends on what the Program does.
  614. 1. You may copy and distribute verbatim copies of the Program's source code as
  615. you receive it, in any medium, provided that you conspicuously and appropriately
  616. publish on each copy an appropriate copyright notice and disclaimer of warranty;
  617. keep intact all the notices that refer to this License and to the absence of any
  618. warranty; and give any other recipients of the Program a copy of this License
  619. along with the Program.
  620. You may charge a fee for the physical act of transferring a copy, and you may at
  621. your option offer warranty protection in exchange for a fee.
  622. 2. You may modify your copy or copies of the Program or any portion of it, thus
  623. forming a work based on the Program, and copy and distribute such modifications
  624. or work under the terms of Section 1 above, provided that you also meet all of
  625. these conditions:
  626. a) You must cause the modified files to carry prominent notices stating that
  627. you changed the files and the date of any change.
  628. b) You must cause any work that you distribute or publish, that in whole or in
  629. part contains or is derived from the Program or any part thereof, to be licensed
  630. as a whole at no charge to all third parties under the terms of this License.
  631. c) If the modified program normally reads commands interactively when run, you
  632. must cause it, when started running for such interactive use in the most ordinary
  633. way, to print or display an announcement including an appropriate copyright notice
  634. and a notice that there is no warranty (or else, saying that you provide a
  635. warranty) and that users may redistribute the program under these conditions,
  636. and telling the user how to view a copy of this License. (Exception: if the
  637. Program itself is interactive but does not normally print such an announcement,
  638. your work based on the Program is not required to print an announcement.)
  639. These requirements apply to the modified work as a whole. If identifiable sections
  640. of that work are not derived from the Program, and can be reasonably considered
  641. independent and separate works in themselves, then this License, and its terms,
  642. do not apply to those sections when you distribute them as separate works. But
  643. when you distribute the same sections as part of a whole which is a work based
  644. on the Program, the distribution of the whole must be on the terms of this
  645. License, whose permissions for other licensees extend to the entire whole, and
  646. thus to each and every part regardless of who wrote it.
  647. Thus, it is not the intent of this section to claim rights or contest your rights
  648. to work written entirely by you; rather, the intent is to exercise the right to
  649. control the distribution of derivative or collective works based on the Program.
  650. In addition, mere aggregation of another work not based on the Program with the
  651. Program (or with a work based on the Program) on a volume of a storage or
  652. distribution medium does not bring the other work under the scope of this License.
  653. 3. You may copy and distribute the Program (or a work based on it, under
  654. Section 2) in object code or executable form under the terms of Sections 1 and 2
  655. above provided that you also do one of the following:
  656. a) Accompany it with the complete corresponding machine-readable source code,
  657. which must be distributed under the terms of Sections 1 and 2 above on a medium
  658. customarily used for software interchange; or,
  659. b) Accompany it with a written offer, valid for at least three years, to give
  660. any third party, for a charge no more than your cost of physically performing
  661. source distribution, a complete machine-readable copy of the corresponding
  662. source code, to be distributed under the terms of Sections 1 and 2 above on a
  663. medium customarily used for software interchange; or,
  664. c) Accompany it with the information you received as to the offer to distribute
  665. corresponding source code. (This alternative is allowed only for noncommercial
  666. distribution and only if you received the program in object code or executable
  667. form with such an offer, in accord with Subsection b above.)
  668. The source code for a work means the preferred form of the work for making
  669. modifications to it. For an executable work, complete source code means all
  670. the source code for all modules it contains, plus any associated interface
  671. definition files, plus the scripts used to control compilation and installation
  672. of the executable. However, as a special exception, the source code distributed
  673. need not include anything that is normally distributed (in either source or binary
  674. form) with the major components (compiler, kernel, and so on) of the operating
  675. system on which the executable runs, unless that component itself accompanies the
  676. executable. If distribution of executable or object code is made by offering access
  677. to copy from a designated place, then offering equivalent access to copy the source
  678. code from the same place counts as distribution of the source code, even though
  679. third parties are not compelled to copy the source along with the object code.
  680. 4. You may not copy, modify, sublicense, or distribute the Program except as
  681. expressly provided under this License. Any attempt otherwise to copy, modify,
  682. sublicense or distribute the Program is void, and will automatically terminate
  683. your rights under this License. However, parties who have received copies, or
  684. rights, from you under this License will not have their licenses terminated so
  685. long as such parties remain in full compliance.
  686. 5. You are not required to accept this License, since you have not signed it.
  687. However, nothing else grants you permission to modify or distribute the Program
  688. or its derivative works. These actions are prohibited by law if you do not
  689. accept this License. Therefore, by modifying or distributing the Program (or any
  690. work based on the Program), you indicate your acceptance of this License to do so,
  691. and all its terms and conditions for copying, distributing or modifying the Program
  692. or works based on it.
  693. 6. Each time you redistribute the Program (or any work based on the Program), the
  694. recipient automatically receives a license from the original licensor to copy,
  695. distribute or modify the Program subject to these terms and conditions. You may
  696. not impose any further restrictions on the recipients' exercise of the rights
  697. granted herein. You are not responsible for enforcing compliance by third parties
  698. to this License.
  699. 7. If, as a consequence of a court judgment or allegation of patent infringement
  700. or for any other reason (not limited to patent issues), conditions are imposed
  701. on you (whether by court order, agreement or otherwise) that contradict the
  702. conditions of this License, they do not excuse you from the conditions of this
  703. License. If you cannot distribute so as to satisfy simultaneously your obligations
  704. under this License and any other pertinent obligations, then as a consequence you
  705. may not distribute the Program at all. For example, if a patent license would not
  706. permit royalty-free redistribution of the Program by all those who receive copies
  707. directly or indirectly through you, then the only way you could satisfy both it
  708. and this License would be to refrain entirely from distribution of the Program.
  709. If any portion of this section is held invalid or unenforceable under any particular
  710. circumstance, the balance of the section is intended to apply and the section as
  711. a whole is intended to apply in other circumstances.
  712. It is not the purpose of this section to induce you to infringe any patents or
  713. other property right claims or to contest validity of any such claims; this
  714. section has the sole purpose of protecting the integrity of the free software
  715. distribution system, which is implemented by public license practices. Many
  716. people have made generous contributions to the wide range of software distributed
  717. through that system in reliance on consistent application of that system; it is
  718. up to the author/donor to decide if he or she is willing to distribute software
  719. through any other system and a licensee cannot impose that choice.
  720. This section is intended to make thoroughly clear what is believed to be a
  721. consequence of the rest of this License.
  722. 8. If the distribution and/or use of the Program is restricted in certain countries
  723. either by patents or by copyrighted interfaces, the original copyright holder who
  724. places the Program under this License may add an explicit geographical distribution
  725. limitation excluding those countries, so that distribution is permitted only in or
  726. among countries not thus excluded. In such case, this License incorporates the
  727. limitation as if written in the body of this License.
  728. 9. The Free Software Foundation may publish revised and/or new versions of the
  729. General Public License from time to time. Such new versions will be similar in
  730. spirit to the present version, but may differ in detail to address new problems
  731. or concerns.
  732. Each version is given a distinguishing version number. If the Program specifies
  733. a version number of this License which applies to it and "any later version",
  734. you have the option of following the terms and conditions either of that version
  735. or of any later version published by the Free Software Foundation. If the Program
  736. does not specify a version number of this License, you may choose any version ever
  737. published by the Free Software Foundation.
  738. 10. If you wish to incorporate parts of the Program into other free programs whose
  739. distribution conditions are different, write to the author to ask for permission.
  740. For software which is copyrighted by the Free Software Foundation, write to the
  741. Free Software Foundation; we sometimes make exceptions for this. Our decision
  742. will be guided by the two goals of preserving the free status of all derivatives
  743. of our free software and of promoting the sharing and reuse of software generally.
  744. NO WARRANTY
  745. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE
  746. PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED
  747. IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS"
  748. WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
  749. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  750. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH
  751. YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
  752. SERVICING, REPAIR OR CORRECTION.
  753. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
  754. ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
  755. PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,
  756. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY
  757. TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  758. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE
  759. OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR
  760. OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  761. END OF TERMS AND CONDITIONS
  762. =========================================
  763. END OF deltablue.js NOTICES, INFORMATION, AND LICENSE
  764. %% Dojo Toolkit NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  765. =========================================
  766. Copyright (c) 2005-2015, The Dojo Foundation All rights reserved.
  767. Redistribution and use in source and binary forms, with or without modification,
  768. are permitted provided that the following conditions are met:
  769. Redistributions of source code must retain the above copyright notice, this list
  770. of conditions and the following disclaimer. Redistributions in binary form must
  771. reproduce the above copyright notice, this list of conditions and the following
  772. disclaimer in the documentation and/or other materials provided with the distribution.
  773. Neither the name of the Dojo Foundation nor the names of its contributors may be
  774. used to endorse or promote products derived from this software without specific
  775. prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  776. CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  777. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  778. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  779. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  780. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  781. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  782. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  783. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  784. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  785. =========================================
  786. END OF Dojo Toolkit NOTICES, INFORMATION, AND LICENSE
  787. %% DSP.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  788. =========================================
  789. For DSP.js:
  790. Copyright (c) 2010 Corban Brook
  791. Permission is hereby granted, free of charge, to any person obtaining
  792. a copy of this software and associated documentation files (the
  793. "Software"), to deal in the Software without restriction, including
  794. without limitation the rights to use, copy, modify, merge, publish,
  795. distribute, sublicense, and/or sell copies of the Software, and to
  796. permit persons to whom the Software is furnished to do so, subject to
  797. the following conditions:
  798. The above copyright notice and this permission notice shall be
  799. included in all copies or substantial portions of the Software.
  800. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  801. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  802. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  803. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  804. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  805. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  806. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  807. For Locutus:
  808. Copyright (c) 2007-2016 Kevin van Zonneveld (http://kvz.io)
  809. and Contributors (http://locutus.io/authors)
  810. Permission is hereby granted, free of charge, to any person obtaining a copy of
  811. this software and associated documentation files (the "Software"), to deal in
  812. the Software without restriction, including without limitation the rights to
  813. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  814. of the Software, and to permit persons to whom the Software is furnished to do
  815. so, subject to the following conditions:
  816. The above copyright notice and this permission notice shall be included in all
  817. copies or substantial portions of the Software.
  818. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  819. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  820. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  821. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  822. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  823. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  824. SOFTWARE.
  825. =========================================
  826. END OF DSP.js NOTICES, INFORMATION, AND LICENSE
  827. %% ecma-proposal-object.getownpropertydescriptors NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  828. =========================================
  829. Copyright (c) 2016, Andrea Giammarchi
  830. All rights reserved.
  831. Redistribution and use in source and binary forms, with or without
  832. modification, are permitted provided that the following conditions are met:
  833. 1. Redistributions of source code must retain the above copyright notice, this
  834. list of conditions and the following disclaimer.
  835. 2. Redistributions in binary form must reproduce the above copyright notice,
  836. this list of conditions and the following disclaimer in the documentation
  837. and/or other materials provided with the distribution.
  838. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  839. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  840. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  841. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  842. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  843. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  844. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  845. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  846. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  847. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  848. The views and conclusions contained in the software and documentation are those
  849. of the authors and should not be interpreted as representing official policies,
  850. either expressed or implied, of the FreeBSD Project.
  851. =========================================
  852. END OF ecma-proposal-object.getownpropertydescriptors NOTICES, INFORMATION, AND LICENSE
  853. %% File copyright Microsoft and Geoff Norton NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  854. =========================================
  855. Copyright (c) Microsoft
  856. Copyright (c) Geoff Norton
  857. Permission is hereby granted, free of charge, to any person obtaining a copy
  858. of this software and associated documentation files (the ""Software""), to deal
  859. in the Software without restriction, including without limitation the rights
  860. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  861. copies of the Software, and to permit persons to whom the Software is
  862. furnished to do so, subject to the following conditions:
  863. The above copyright notice and this permission notice shall be included in all
  864. copies or substantial portions of the Software.
  865. THE SOFTWARE IS PROVIDED ""AS IS"", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  866. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  867. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  868. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  869. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  870. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  871. SOFTWARE."
  872. =========================================
  873. END OF File copyright Microsoft and Geoff Norton NOTICES, INFORMATION, AND LICENSE
  874. %% File with code copyright Baron Schwartz NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  875. =========================================
  876. Includes code prefaced by the following notice:
  877. /*
  878. * Copyright (C) 2004 Baron Schwartz <baron at sequent dot org>
  879. *
  880. * This program is free software; you can redistribute it and/or modify it
  881. * under the terms of the GNU Lesser General Public License as published by the
  882. * Free Software Foundation, version 2.1.
  883. *
  884. * This program is distributed in the hope that it will be useful, but WITHOUT
  885. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  886. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  887. * details.
  888. */
  889. =========================================
  890. END OF File with code copyright Baron Schwartz NOTICES, INFORMATION, AND LICENSE
  891. %% Files copyright .NET Foundation NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  892. =========================================
  893. Copyright (c) .NET Foundation
  894. Permission is hereby granted, free of charge, to any person obtaining a copy
  895. of this software and associated documentation files (the ""Software""), to deal
  896. in the Software without restriction, including without limitation the rights
  897. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  898. copies of the Software, and to permit persons to whom the Software is
  899. furnished to do so, subject to the following conditions:
  900. The above copyright notice and this permission notice shall be included in all
  901. copies or substantial portions of the Software.
  902. THE SOFTWARE IS PROVIDED ""AS IS"", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  903. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  904. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  905. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  906. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  907. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  908. SOFTWARE."
  909. =========================================
  910. END OF Files copyright .NET Foundation NOTICES, INFORMATION, AND LICENSE
  911. %% Files with code copyright Paul Johnston NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  912. =========================================
  913. For overall Paul Johnson material:
  914. Copyright (c) 1998 - 2009, Paul Johnston & Contributors
  915. All rights reserved.
  916. Redistribution and use in source and binary forms, with or without modification,
  917. are permitted provided that the following conditions are met:
  918. Redistributions of source code must retain the above copyright notice, this list
  919. of conditions and the following disclaimer. Redistributions in binary form must
  920. reproduce the above copyright notice, this list of conditions and the following
  921. disclaimer in the documentation and/or other materials provided with the distribution.
  922. Neither the name of the author nor the names of its contributors may be used to
  923. endorse or promote products derived from this software without specific prior
  924. written permission.
  925. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  926. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  927. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  928. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  929. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  930. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  931. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  932. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  933. OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  934. OF THE POSSIBILITY OF SUCH DAMAGE.
  935. For RSA MD5 implementation:
  936. License to copy and use this software is granted provided that it is identified
  937. as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material
  938. mentioning or referencing this software or this function.
  939. License is also granted to make and use derivative works provided that such works
  940. are identified as "derived from the RSA Data Security, Inc. MD5 Message-Digest
  941. Algorithm" in all material mentioning or referencing the derived work.
  942. RSA Data Security, Inc. makes no representations concerning either the merchantability
  943. of this software or the suitability of this software for any particular purpose.
  944. It is provided "as is" without express or implied warranty of any kind.
  945. These notices must be retained in any copies of any part of this documentation and/or software.
  946. This copyright does not prohibit distribution of the JavaScript MD5 code under the BSD license.
  947. =========================================
  948. END OF Files with code copyright Paul Johnston NOTICES, INFORMATION, AND LICENSE
  949. %% Intel VTune Amplifier XE NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  950. =========================================
  951. /*
  952. BSD LICENSE
  953. Copyright (c) 2005-2013 Intel Corporation. All rights reserved.
  954. All rights reserved.
  955. Redistribution and use in source and binary forms, with or without
  956. modification, are permitted provided that the following conditions
  957. are met:
  958. * Redistributions of source code must retain the above copyright
  959. notice, this list of conditions and the following disclaimer.
  960. * Redistributions in binary form must reproduce the above copyright
  961. notice, this list of conditions and the following disclaimer in
  962. the documentation and/or other materials provided with the
  963. distribution.
  964. * Neither the name of Intel Corporation nor the names of its
  965. contributors may be used to endorse or promote products derived
  966. from this software without specific prior written permission.
  967. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  968. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  969. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  970. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  971. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  972. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  973. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  974. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  975. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  976. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  977. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  978. */
  979. =========================================
  980. END OF Intel VTune Amplifier XE NOTICES, INFORMATION, AND LICENSE
  981. %% JavaScript GameBoy Color Emulator NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  982. =========================================
  983. // Copyright (C) 2010 - 2012 Grant Galitz
  984. // This program is free software; you can redistribute it and/or modify
  985. // it under the terms of the GNU General Public License version 2 as
  986. // published by the Free Software Foundation.
  987. // The full license is available at http://www.gnu.org/licenses/gpl.html
  988. // This program is distributed in the hope that it will be useful, but
  989. // WITHOUT ANY WARRANTY; without even the implied warranty of
  990. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  991. // See the GNU General Public License for more details.
  992. // The code has been adapted for use as a benchmark by Google.
  993. and
  994. /*
  995. * JavaScript GameBoy Color Emulator
  996. * Copyright (C) 2010 - 2012 Grant Galitz
  997. *
  998. * This program is free software; you can redistribute it and/or
  999. * modify it under the terms of the GNU General Public License
  1000. * version 2 as published by the Free Software Foundation.
  1001. * The full license is available at http://www.gnu.org/licenses/gpl.html
  1002. *
  1003. * This program is distributed in the hope that it will be useful,
  1004. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  1005. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1006. * GNU General Public License for more details.
  1007. *
  1008. */
  1009. =========================================
  1010. END OF JavaScript GameBoy Color Emulator NOTICES, INFORMATION, AND LICENSE
  1011. %% JetStream NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1012. =========================================
  1013. JetStream - LLVM Release License
  1014. ==============================================================================
  1015. University of Illinois/NCSA
  1016. Open Source License
  1017. Copyright (c) 2003, 2004, 2005 University of Illinois at Urbana-Champaign.
  1018. All rights reserved.
  1019. Developed by:
  1020. LLVM Team
  1021. University of Illinois at Urbana-Champaign
  1022. http://llvm.org/
  1023. Permission is hereby granted, free of charge, to any person obtaining a copy of
  1024. this software and associated documentation files (the "Software"), to deal with
  1025. the Software without restriction, including without limitation the rights to
  1026. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  1027. of the Software, and to permit persons to whom the Software is furnished to do
  1028. so, subject to the following conditions:
  1029. * Redistributions of source code must retain the above copyright notice,
  1030. this list of conditions and the following disclaimers.
  1031. * Redistributions in binary form must reproduce the above copyright notice,
  1032. this list of conditions and the following disclaimers in the
  1033. documentation and/or other materials provided with the distribution.
  1034. * Neither the names of the LLVM Team, University of Illinois at
  1035. Urbana-Champaign, nor the names of its contributors may be used to
  1036. endorse or promote products derived from this Software without specific
  1037. prior written permission.
  1038. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1039. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  1040. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1041. CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1042. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1043. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
  1044. SOFTWARE.
  1045. ===
  1046. Anything not in the tests/ directory:
  1047. Copyright (C) 2014 Apple Inc. All rights reserved.
  1048. Redistribution and use in source and binary forms, with or without
  1049. modification, are permitted provided that the following conditions
  1050. are met:
  1051. 1. Redistributions of source code must retain the above copyright
  1052. notice, this list of conditions and the following disclaimer.
  1053. 2. Redistributions in binary form must reproduce the above copyright
  1054. notice, this list of conditions and the following disclaimer in the
  1055. documentation and/or other materials provided with the distribution.
  1056. THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
  1057. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1058. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1059. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
  1060. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  1061. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  1062. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  1063. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  1064. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1065. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1066. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1067. =========================================
  1068. END OF JetStream NOTICES, INFORMATION, AND LICENSE
  1069. %% jQuery NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1070. =========================================
  1071. Copyright jQuery Foundation and other contributors, https://jquery.org/
  1072. This software consists of voluntary contributions made by many
  1073. individuals. For exact contribution history, see the revision history
  1074. available at https://github.com/jquery/jquery
  1075. The following license applies to all parts of this software except as
  1076. documented below:
  1077. ====
  1078. Permission is hereby granted, free of charge, to any person obtaining
  1079. a copy of this software and associated documentation files (the
  1080. "Software"), to deal in the Software without restriction, including
  1081. without limitation the rights to use, copy, modify, merge, publish,
  1082. distribute, sublicense, and/or sell copies of the Software, and to
  1083. permit persons to whom the Software is furnished to do so, subject to
  1084. the following conditions:
  1085. The above copyright notice and this permission notice shall be
  1086. included in all copies or substantial portions of the Software.
  1087. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1088. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1089. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1090. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1091. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1092. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1093. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1094. ====
  1095. All files located in the node_modules and external directories are
  1096. externally maintained libraries used by this software which have their
  1097. own licenses; we recommend you read them, as their terms may differ from
  1098. the terms above.
  1099. =========================================
  1100. END OF jQuery NOTICES, INFORMATION, AND LICENSE
  1101. %% Kraken NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1102. =========================================
  1103. Copyright (C) 2007 Apple Inc. All rights reserved.
  1104. Copyright (C) 2010 Mozilla Foundation
  1105. Redistribution and use in source and binary forms, with or without
  1106. modification, are permitted provided that the following conditions
  1107. are met:
  1108. 1. Redistributions of source code must retain the above copyright
  1109. notice, this list of conditions and the following disclaimer.
  1110. 2. Redistributions in binary form must reproduce the above copyright
  1111. notice, this list of conditions and the following disclaimer in the
  1112. documentation and/or other materials provided with the distribution.
  1113. THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
  1114. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1115. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1116. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
  1117. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  1118. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  1119. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  1120. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  1121. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1122. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1123. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1124. =========================================
  1125. END OF Kraken NOTICES, INFORMATION, AND LICENSE
  1126. %% MakeNewWorld() function NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1127. =========================================
  1128. // Copyright 2013 the V8 project authors. All rights reserved.
  1129. // This program is free software; you can redistribute it and/or modify
  1130. // it under the terms of the GNU General Public License as published by
  1131. // the Free Software Foundation; either version 2 of the License, or
  1132. // (at your option) any later version.
  1133. //
  1134. // This program is distributed in the hope that it will be useful,
  1135. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  1136. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1137. // GNU General Public License for more details.
  1138. //
  1139. // You should have received a copy of the GNU General Public License
  1140. // along with this program; if not, write to the Free Software
  1141. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  1142. =========================================
  1143. END OF MakeNewWorld() function NOTICES, INFORMATION, AND LICENSE
  1144. %% MochiKit NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1145. =========================================
  1146. Copyright (c) 2005 Bob Ippolito. All rights reserved.
  1147. Permission is hereby granted, free of charge, to any person obtaining a copy of
  1148. this software and associated documentation files (the "Software"), to deal in the
  1149. Software without restriction, including without limitation the rights to use,
  1150. copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
  1151. Software, and to permit persons to whom the Software is furnished to do so, subject
  1152. to the following conditions:
  1153. The above copyright notice and this permission notice shall be included in all
  1154. copies or substantial portions of the Software.
  1155. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  1156. INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  1157. PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  1158. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1159. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  1160. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1161. =========================================
  1162. END OF MochiKit NOTICES, INFORMATION, AND LICENSE
  1163. %% Mozilla XML-RPC Client code NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1164. =========================================
  1165. /* ***** BEGIN LICENSE BLOCK *****
  1166. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  1167. *
  1168. * The contents of this file are subject to the Mozilla Public License Version
  1169. * 1.1 (the "License"); you may not use this file except in compliance with
  1170. * the License. You may obtain a copy of the License at
  1171. * http://www.mozilla.org/MPL/
  1172. *
  1173. * Software distributed under the License is distributed on an "AS IS" basis,
  1174. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  1175. * for the specific language governing rights and limitations under the
  1176. * License.
  1177. *
  1178. * The Original Code is Mozilla XML-RPC Client component.
  1179. *
  1180. * The Initial Developer of the Original Code is
  1181. * Digital Creations 2, Inc.
  1182. * Portions created by the Initial Developer are Copyright (C) 2000
  1183. * the Initial Developer. All Rights Reserved.
  1184. *
  1185. * Contributor(s):
  1186. * Martijn Pieters <[email protected]> (original author)
  1187. * Samuel Sieb <[email protected]>
  1188. *
  1189. * Alternatively, the contents of this file may be used under the terms of
  1190. * either the GNU General Public License Version 2 or later (the "GPL"), or
  1191. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  1192. * in which case the provisions of the GPL or the LGPL are applicable instead
  1193. * of those above. If you wish to allow use of your version of this file only
  1194. * under the terms of either the GPL or the LGPL, and not to allow others to
  1195. * use your version of this file under the terms of the MPL, indicate your
  1196. * decision by deleting the provisions above and replace them with the notice
  1197. * and other provisions required by the GPL or the LGPL. If you do not delete
  1198. * the provisions above, a recipient may use your version of this file under
  1199. * the terms of any one of the MPL, the GPL or the LGPL.
  1200. *
  1201. * ***** END LICENSE BLOCK ***** */
  1202. =========================================
  1203. END OF Mozilla XML-RPC Client code NOTICES, INFORMATION, AND LICENSE
  1204. %% Octane NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1205. =========================================
  1206. Copyright (c) 2013, the V8 project authors (http://code.google.com/p/v8/)
  1207. All rights reserved.
  1208. Redistribution and use in source and binary forms, with or without
  1209. modification, are permitted provided that the following conditions are met:
  1210. * Redistributions of source code must retain the above copyright notice, this
  1211. list of conditions and the following disclaimer.
  1212. * Redistributions in binary form must reproduce the above copyright notice,
  1213. this list of conditions and the following disclaimer in the documentation
  1214. and/or other materials provided with the distribution.
  1215. * Neither the name of Google, Inc. nor the names of its
  1216. contributors may be used to endorse or promote products derived from
  1217. this software without specific prior written permission.
  1218. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  1219. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1220. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1221. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  1222. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1223. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1224. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  1225. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  1226. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1227. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1228. =========================================
  1229. END OF Octane NOTICES, INFORMATION, AND LICENSE
  1230. %% pdfjs.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1231. =========================================
  1232. ////////////////////////////////////////////////////////////////////////////////
  1233. // pdfjs.js
  1234. ////////////////////////////////////////////////////////////////////////////////
  1235. // Portions copyright 2012 Google, Inc.
  1236. // Portions copyright 2011 Mozilla Foundation. All rights reserved.
  1237. // This program is free software; you can redistribute it and/or modify
  1238. // it under the terms of the GNU General Public License as published by
  1239. // the Free Software Foundation; either version 2 of the License, or
  1240. // (at your option) any later version.
  1241. //
  1242. // This program is distributed in the hope that it will be useful,
  1243. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  1244. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1245. // GNU General Public License for more details.
  1246. //
  1247. // You should have received a copy of the GNU General Public License
  1248. // along with this program; if not, write to the Free Software
  1249. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  1250. // The PDF-JS code in this file has been written by Mozilla.
  1251. // It is available in its latest version from:
  1252. //
  1253. // https://github.com/mozilla/pdf.js
  1254. =========================================
  1255. END OF pdfjs.js NOTICES, INFORMATION, AND LICENSE
  1256. %% Pixastic Lib NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1257. =========================================
  1258. * Pixastic Lib - Desaturation filter - v0.1.1
  1259. * Copyright (c) 2008 Jacob Seidelin, [email protected], http://blog.nihilogic.dk/
  1260. * License: [http://www.pixastic.com/lib/license.txt] (MPL 1.1)
  1261. Mozilla Public License Version 1.1
  1262. 1. Definitions.
  1263. 1.0.1. "Commercial Use"
  1264. means distribution or otherwise making the Covered Code available to a third party.
  1265. 1.1. "Contributor"
  1266. means each entity that creates or contributes to the creation of Modifications.
  1267. 1.2. "Contributor Version"
  1268. means the combination of the Original Code, prior Modifications used by a Contributor,
  1269. and the Modifications made by that particular Contributor.
  1270. 1.3. "Covered Code"
  1271. means the Original Code or Modifications or the combination of the Original Code
  1272. and Modifications, in each case including portions thereof.
  1273. 1.4. "Electronic Distribution Mechanism"
  1274. means a mechanism generally accepted in the software development community for
  1275. the electronic transfer of data.
  1276. 1.5. "Executable"
  1277. means Covered Code in any form other than Source Code.
  1278. 1.6. "Initial Developer"
  1279. means the individual or entity identified as the Initial Developer in the Source
  1280. Code notice required by Exhibit A.
  1281. 1.7. "Larger Work"
  1282. means a work which combines Covered Code or portions thereof with code not
  1283. governed by the terms of this License.
  1284. 1.8. "License"
  1285. means this document.
  1286. 1.8.1. "Licensable"
  1287. means having the right to grant, to the maximum extent possible, whether at the
  1288. time of the initial grant or subsequently acquired, any and all of the rights
  1289. conveyed herein.
  1290. 1.9. "Modifications"
  1291. means any addition to or deletion from the substance or structure of either the
  1292. Original Code or any previous Modifications. When Covered Code is released as a
  1293. series of files, a Modification is:
  1294. Any addition to or deletion from the contents of a file containing Original Code
  1295. or previous Modifications. Any new file that contains any part of the Original
  1296. Code or previous Modifications.
  1297. 1.10. "Original Code"
  1298. means Source Code of computer software code which is described in the Source
  1299. Code notice required by Exhibit A as Original Code, and which, at the time of
  1300. its release under this License is not already Covered Code governed by this License.
  1301. 1.10.1. "Patent Claims"
  1302. means any patent claim(s), now owned or hereafter acquired, including without
  1303. limitation, method, process, and apparatus claims, in any patent Licensable by
  1304. grantor.
  1305. 1.11. "Source Code"
  1306. means the preferred form of the Covered Code for making modifications to it,
  1307. including all modules it contains, plus any associated interface definition files,
  1308. scripts used to control compilation and installation of an Executable, or source
  1309. code differential comparisons against either the Original Code or another well
  1310. known, available Covered Code of the Contributor's choice. The Source Code can
  1311. be in a compressed or archival form, provided the appropriate decompression or
  1312. de-archiving software is widely available for no charge.
  1313. 1.12. "You" (or "Your")
  1314. means an individual or a legal entity exercising rights under, and complying with
  1315. all of the terms of, this License or a future version of this License issued under
  1316. Section 6.1. For legal entities, "You" includes any entity which controls, is
  1317. controlled by, or is under common control with You. For purposes of this definition,
  1318. "control" means (a) the power, direct or indirect, to cause the direction or
  1319. management of such entity, whether by contract or otherwise, or (b) ownership of
  1320. more than fifty percent (50%) of the outstanding shares or beneficial ownership
  1321. of such entity.
  1322. 2. Source Code License.
  1323. 2.1. The Initial Developer Grant.
  1324. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive
  1325. license, subject to third party intellectual property claims:
  1326. under intellectual property rights (other than patent or trademark) Licensable by
  1327. Initial Developer to use, reproduce, modify, display, perform, sublicense and
  1328. distribute the Original Code (or portions thereof) with or without Modifications,
  1329. and/or as part of a Larger Work; and
  1330. under Patents Claims infringed by the making, using or selling of Original Code,
  1331. to make, have made, use, practice, sell, and offer for sale, and/or otherwise
  1332. dispose of the Original Code (or portions thereof).
  1333. the licenses granted in this Section 2.1 (a) and (b) are effective on the date
  1334. Initial Developer first distributes Original Code under the terms of this License.
  1335. Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code
  1336. that You delete from the Original Code; 2) separate from the Original Code;
  1337. or 3) for infringements caused by: i) the modification of the Original Code
  1338. or ii) the combination of the Original Code with other software or devices.
  1339. 2.2. Contributor Grant.
  1340. Subject to third party intellectual property claims, each Contributor hereby grants
  1341. You a world-wide, royalty-free, non-exclusive license under intellectual property
  1342. rights (other than patent or trademark) Licensable by Contributor, to use,
  1343. reproduce, modify, display, perform, sublicense and distribute the Modifications
  1344. created by such Contributor (or portions thereof) either on an unmodified basis,
  1345. with other Modifications, as Covered Code and/or as part of a Larger Work; and
  1346. under Patent Claims infringed by the making, using, or selling of Modifications
  1347. made by that Contributor either alone and/or in combination with its Contributor
  1348. Version (or portions of such combination), to make, use, sell, offer for sale,
  1349. have made, and/or otherwise dispose of: 1) Modifications made by that Contributor
  1350. (or portions thereof); and 2) the combination of Modifications made by that
  1351. Contributor with its Contributor Version (or portions of such combination).
  1352. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date
  1353. Contributor first makes Commercial Use of the Covered Code.
  1354. Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any
  1355. code that Contributor has deleted from the Contributor Version; 2) separate from
  1356. the Contributor Version; 3) for infringements caused by: i) third party
  1357. modifications of Contributor Version or ii) the combination of Modifications
  1358. made by that Contributor with other software (except as part of the Contributor
  1359. Version) or other devices; or 4) under Patent Claims infringed by Covered Code
  1360. in the absence of Modifications made by that Contributor.
  1361. 3. Distribution Obligations.
  1362. 3.1. Application of License.
  1363. The Modifications which You create or to which You contribute are governed by
  1364. the terms of this License, including without limitation Section 2.2. The Source
  1365. Code version of Covered Code may be distributed only under the terms of this
  1366. License or a future version of this License released under Section 6.1, and
  1367. You must include a copy of this License with every copy of the Source Code You
  1368. distribute. You may not offer or impose any terms on any Source Code version that
  1369. alters or restricts the applicable version of this License or the recipients'
  1370. rights hereunder. However, You may include an additional document offering the
  1371. additional rights described in Section 3.5.
  1372. 3.2. Availability of Source Code.
  1373. Any Modification which You create or to which You contribute must be made available
  1374. in Source Code form under the terms of this License either on the same media as an
  1375. Executable version or via an accepted Electronic Distribution Mechanism to anyone
  1376. to whom you made an Executable version available; and if made available via
  1377. Electronic Distribution Mechanism, must remain available for at least twelve (12)
  1378. months after the date it initially became available, or at least six (6) months
  1379. after a subsequent version of that particular Modification has been made available
  1380. to such recipients. You are responsible for ensuring that the Source Code version
  1381. remains available even if the Electronic Distribution Mechanism is maintained by
  1382. a third party.
  1383. 3.3. Description of Modifications.
  1384. You must cause all Covered Code to which You contribute to contain a file documenting
  1385. the changes You made to create that Covered Code and the date of any change. You must
  1386. include a prominent statement that the Modification is derived, directly or indirectly,
  1387. from Original Code provided by the Initial Developer and including the name of the
  1388. Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version
  1389. or related documentation in which You describe the origin or ownership of the Covered Code.
  1390. 3.4. Intellectual Property Matters
  1391. (a) Third Party Claims
  1392. If Contributor has knowledge that a license under a third party's intellectual
  1393. property rights is required to exercise the rights granted by such Contributor
  1394. under Sections 2.1 or 2.2, Contributor must include a text file with the Source
  1395. Code distribution titled "LEGAL" which describes the claim and the party making the
  1396. claim in sufficient detail that a recipient will know whom to contact. If Contributor
  1397. obtains such knowledge after the Modification is made available as described in
  1398. Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor
  1399. makes available thereafter and shall take other steps (such as notifying appropriate
  1400. mailing lists or newsgroups) reasonably calculated to inform those who received the
  1401. Covered Code that new knowledge has been obtained.
  1402. (b) Contributor APIs
  1403. If Contributor's Modifications include an application programming interface and
  1404. Contributor has knowledge of patent licenses which are reasonably necessary to
  1405. implement that API, Contributor must also include this information in the legal
  1406. file.
  1407. (c) Representations.
  1408. Contributor represents that, except as disclosed pursuant to Section 3.4 (a) above,
  1409. Contributor believes that Contributor's Modifications are Contributor's original
  1410. creation(s) and/or Contributor has sufficient rights to grant the rights conveyed
  1411. by this License.
  1412. 3.5. Required Notices.
  1413. You must duplicate the notice in Exhibit A in each file of the Source Code. If it
  1414. is not possible to put such notice in a particular Source Code file due to its
  1415. structure, then You must include such notice in a location (such as a relevant
  1416. directory) where a user would be likely to look for such a notice. If You created
  1417. one or more Modification(s) You may add your name as a Contributor to the notice
  1418. described in Exhibit A. You must also duplicate this License in any documentation
  1419. for the Source Code where You describe recipients' rights or ownership rights
  1420. relating to Covered Code. You may choose to offer, and to charge a fee for, warranty,
  1421. support, indemnity or liability obligations to one or more recipients of Covered Code.
  1422. However, You may do so only on Your own behalf, and not on behalf of the Initial
  1423. Developer or any Contributor. You must make it absolutely clear than any such warranty,
  1424. support, indemnity or liability obligation is offered by You alone, and You hereby
  1425. agree to indemnify the Initial Developer and every Contributor for any liability
  1426. incurred by the Initial Developer or such Contributor as a result of warranty,
  1427. support, indemnity or liability terms You offer.
  1428. 3.6. Distribution of Executable Versions.
  1429. You may distribute Covered Code in Executable form only if the requirements of
  1430. Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if
  1431. You include a notice stating that the Source Code version of the Covered Code is
  1432. available under the terms of this License, including a description of how and where
  1433. You have fulfilled the obligations of Section 3.2. The notice must be conspicuously
  1434. included in any notice in an Executable version, related documentation or collateral
  1435. in which You describe recipients' rights relating to the Covered Code. You may
  1436. distribute the Executable version of Covered Code or ownership rights under a
  1437. license of Your choice, which may contain terms different from this License, provided
  1438. that You are in compliance with the terms of this License and that the license for
  1439. the Executable version does not attempt to limit or alter the recipient's rights
  1440. in the Source Code version from the rights set forth in this License. If You
  1441. distribute the Executable version under a different license You must make it
  1442. absolutely clear that any terms which differ from this License are offered by
  1443. You alone, not by the Initial Developer or any Contributor. You hereby agree to
  1444. indemnify the Initial Developer and every Contributor for any liability incurred
  1445. by the Initial Developer or such Contributor as a result of any such terms You offer.
  1446. 3.7. Larger Works.
  1447. You may create a Larger Work by combining Covered Code with other code not governed
  1448. by the terms of this License and distribute the Larger Work as a single product.
  1449. In such a case, You must make sure the requirements of this License are fulfilled
  1450. for the Covered Code.
  1451. 4. Inability to Comply Due to Statute or Regulation.
  1452. If it is impossible for You to comply with any of the terms of this License with
  1453. respect to some or all of the Covered Code due to statute, judicial order, or
  1454. regulation then You must: (a) comply with the terms of this License to the maximum
  1455. extent possible; and (b) describe the limitations and the code they affect. Such
  1456. description must be included in the legal file described in Section 3.4 and must
  1457. be included with all distributions of the Source Code. Except to the extent
  1458. prohibited by statute or regulation, such description must be sufficiently detailed
  1459. for a recipient of ordinary skill to be able to understand it.
  1460. 5. Application of this License.
  1461. This License applies to code to which the Initial Developer has attached the notice
  1462. in Exhibit A and to related Covered Code.
  1463. 6. Versions of the License.
  1464. 6.1. New Versions
  1465. Netscape Communications Corporation ("Netscape") may publish revised and/or new
  1466. versions of the License from time to time. Each version will be given a
  1467. distinguishing version number.
  1468. 6.2. Effect of New Versions
  1469. Once Covered Code has been published under a particular version of the License,
  1470. You may always continue to use it under the terms of that version. You may also
  1471. choose to use such Covered Code under the terms of any subsequent version of the
  1472. License published by Netscape. No one other than Netscape has the right to modify
  1473. the terms applicable to Covered Code created under this License.
  1474. 6.3. Derivative Works
  1475. If You create or use a modified version of this License (which you may only do in
  1476. order to apply it to code which is not already Covered Code governed by this
  1477. License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL",
  1478. "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in
  1479. your license (except to note that your license differs from this License) and (b)
  1480. otherwise make it clear that Your version of the license contains terms which differ
  1481. from the Mozilla Public License and Netscape Public License. (Filling in the name
  1482. of the Initial Developer, Original Code or Contributor in the notice described in
  1483. Exhibit A shall not of themselves be deemed to be modifications of this License.)
  1484. 7. Disclaimer of warranty
  1485. Covered code is provided under this license on an "as is" basis, without warranty
  1486. of any kind, either expressed or implied, including, without limitation, warranties
  1487. that the covered code is free of defects, merchantable, fit for a particular purpose
  1488. or non-infringing. The entire risk as to the quality and performance of the covered
  1489. code is with you. Should any covered code prove defective in any respect, you (not
  1490. the initial developer or any other contributor) assume the cost of any necessary
  1491. servicing, repair or correction. This disclaimer of warranty constitutes an
  1492. essential part of this license. No use of any covered code is authorized hereunder
  1493. except under this disclaimer.
  1494. 8. Termination
  1495. 8.1. This License and the rights granted hereunder will terminate automatically if
  1496. You fail to comply with terms herein and fail to cure such breach within 30 days of
  1497. becoming aware of the breach. All sublicenses to the Covered Code which are properly
  1498. granted shall survive any termination of this License. Provisions which, by their
  1499. nature, must remain in effect beyond the termination of this License shall survive.
  1500. 8.2. If You initiate litigation by asserting a patent infringement claim (excluding
  1501. declatory judgment actions) against Initial Developer or a Contributor (the Initial
  1502. Developer or Contributor against whom You file such action is referred to as
  1503. "Participant") alleging that:
  1504. such Participant's Contributor Version directly or indirectly infringes any patent,
  1505. then any and all rights granted by such Participant to You under Sections 2.1 and/or
  1506. 2.2 of this License shall, upon 60 days notice from Participant terminate
  1507. prospectively, unless if within 60 days after receipt of notice You either:
  1508. (i) agree in writing to pay Participant a mutually agreeable reasonable royalty
  1509. for Your past and future use of Modifications made by such Participant, or
  1510. (ii) withdraw Your litigation claim with respect to the Contributor Version against
  1511. such Participant. If within 60 days of notice, a reasonable royalty and payment
  1512. arrangement are not mutually agreed upon in writing by the parties or the litigation
  1513. claim is not withdrawn, the rights granted by Participant to You under Sections 2.1
  1514. and/or 2.2 automatically terminate at the expiration of the 60 day notice period
  1515. specified above. any software, hardware, or device, other than such Participant's
  1516. Contributor Version, directly or indirectly infringes any patent, then any rights
  1517. granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked
  1518. effective as of the date You first made, used, sold, distributed, or had made,
  1519. Modifications made by that Participant.
  1520. 8.3. If You assert a patent infringement claim against Participant alleging that
  1521. such Participant's Contributor Version directly or indirectly infringes any patent
  1522. where such claim is resolved (such as by license or settlement) prior to the
  1523. initiation of patent infringement litigation, then the reasonable value of the
  1524. licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken
  1525. into account in determining the amount or value of any payment or license.
  1526. 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user
  1527. license agreements (excluding distributors and resellers) which have been validly
  1528. granted by You or any distributor hereunder prior to termination shall survive
  1529. termination.
  1530. 9. Limitation of liability
  1531. Under no circumstances and under no legal theory, whether tort (including
  1532. negligence), contract, or otherwise, shall you, the initial developer, any
  1533. other contributor, or any distributor of covered code, or any supplier of any
  1534. of such parties, be liable to any person for any indirect, special, incidental,
  1535. or consequential damages of any character including, without limitation, damages
  1536. for loss of goodwill, work stoppage, computer failure or malfunction, or any and
  1537. all other commercial damages or losses, even if such party shall have been
  1538. informed of the possibility of such damages. This limitation of liability shall
  1539. not apply to liability for death or personal injury resulting from such party's
  1540. negligence to the extent applicable law prohibits such limitation. Some jurisdictions
  1541. do not allow the exclusion or limitation of incidental or consequential damages,
  1542. so this exclusion and limitation may not apply to you.
  1543. 10. U.S. government end users
  1544. The Covered Code is a "commercial item," as that term is defined in 48 C.F.R.
  1545. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial
  1546. computer software documentation," as such terms are used in 48 C.F.R. 12.212
  1547. (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through
  1548. 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with
  1549. only those rights set forth herein.
  1550. 11. Miscellaneous
  1551. This License represents the complete agreement concerning subject matter hereof.
  1552. If any provision of this License is held to be unenforceable, such provision
  1553. shall be reformed only to the extent necessary to make it enforceable. This
  1554. License shall be governed by California law provisions (except to the extent
  1555. applicable law, if any, provides otherwise), excluding its conflict-of-law
  1556. provisions. With respect to disputes in which at least one party is a citizen
  1557. of, or an entity chartered or registered to do business in the United States of
  1558. America, any litigation relating to this License shall be subject to the
  1559. jurisdiction of the Federal Courts of the Northern District of California, with
  1560. venue lying in Santa Clara County, California, with the losing party responsible
  1561. for costs, including without limitation, court costs and reasonable attorneys'
  1562. fees and expenses. The application of the United Nations Convention on Contracts
  1563. for the International Sale of Goods is expressly excluded. Any law or regulation
  1564. which provides that the language of a contract shall be construed against the
  1565. drafter shall not apply to this License.
  1566. 12. Responsibility for claims
  1567. As between Initial Developer and the Contributors, each party is responsible for
  1568. claims and damages arising, directly or indirectly, out of its utilization of
  1569. rights under this License and You agree to work with Initial Developer and
  1570. Contributors to distribute such responsibility on an equitable basis. Nothing
  1571. herein is intended or shall be deemed to constitute any admission of liability.
  1572. 13. Multiple-licensed code
  1573. Initial Developer may designate portions of the Covered Code as "Multiple-Licensed".
  1574. "Multiple-Licensed" means that the Initial Developer permits you to utilize portions
  1575. of the Covered Code under Your choice of the MPL or the alternative licenses, if
  1576. any, specified by the Initial Developer in the file described in Exhibit A.
  1577. =========================================
  1578. END OF Pixastic Lib NOTICES, INFORMATION, AND LICENSE
  1579. %% Prototype NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1580. =========================================
  1581. Copyright (c) 2005-2010 Sam Stephenson
  1582. Permission is hereby granted, free of charge, to any person obtaining a copy
  1583. of this software and associated documentation files (the "Software"), to deal
  1584. in the Software without restriction, including without limitation the rights
  1585. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1586. copies of the Software, and to permit persons to whom the Software is
  1587. furnished to do so, subject to the following conditions:
  1588. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1589. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1590. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1591. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1592. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1593. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1594. SOFTWARE.
  1595. =========================================
  1596. END OF Prototype NOTICES, INFORMATION, AND LICENSE
  1597. %% Sputnik NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1598. =========================================
  1599. Copyright 2009, Google Inc. All rights reserved.
  1600. Redistribution and use in source and binary forms, with or without
  1601. modification, are permitted provided that the following conditions are
  1602. met:
  1603. * Redistributions of source code must retain the above copyright
  1604. notice, this list of conditions and the following disclaimer.
  1605. * Redistributions in binary form must reproduce the above
  1606. copyright notice, this list of conditions and the following
  1607. disclaimer in the documentation and/or other materials provided
  1608. with the distribution.
  1609. * Neither the name of Google Inc. nor the names of its
  1610. contributors may be used to endorse or promote products derived
  1611. from this software without specific prior written permission.
  1612. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1613. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1614. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1615. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1616. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1617. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1618. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1619. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1620. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1621. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1622. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1623. =========================================
  1624. END OF Sputnik NOTICES, INFORMATION, AND LICENSE
  1625. %% SunSpider NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1626. =========================================
  1627. SunSpider
  1628. Copyright (C) 2007 Apple Inc. All rights reserved.
  1629. Redistribution and use in source and binary forms, with or without
  1630. modification, are permitted provided that the following conditions
  1631. are met:
  1632. 1. Redistributions of source code must retain the above copyright
  1633. notice, this list of conditions and the following disclaimer.
  1634. 2. Redistributions in binary form must reproduce the above copyright
  1635. notice, this list of conditions and the following disclaimer in the
  1636. documentation and/or other materials provided with the distribution.
  1637. THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
  1638. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1639. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1640. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
  1641. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  1642. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  1643. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  1644. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  1645. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1646. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1647. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1648. =========================================
  1649. END OF SunSpider NOTICES, INFORMATION, AND LICENSE
  1650. %% test262 NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1651. =========================================
  1652. The << Software identified by reference to the Ecma Standard* ("Software)">> is
  1653. protected by copyright and is being made available under the "BSD License",
  1654. included below. This Software may be subject to third party rights (rights from
  1655. parties other than Ecma International), including patent rights, and no licenses
  1656. under such third party rights are granted under this license even if the third
  1657. party concerned is a member of Ecma International. SEE THE ECMA CODE OF CONDUCT
  1658. IN PATENT MATTERS AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR
  1659. INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO
  1660. IMPLEMENT ECMA INTERNATIONAL STANDARDS*.
  1661. Copyright (C) 2012-2013 Ecma International
  1662. All rights reserved.
  1663. Redistribution and use in source and binary forms, with or without modification,
  1664. are permitted provided that the following conditions are met:
  1665. 1. Redistributions of source code must retain the above copyright notice, this
  1666. list of conditions and the following disclaimer.
  1667. 2. Redistributions in binary form must reproduce the above copyright notice,
  1668. this list of conditions and the following disclaimer in the documentation
  1669. and/or other materials provided with the distribution.
  1670. 3. Neither the name of the authors nor Ecma International may be used to endorse
  1671. or promote products derived from this software without specific prior written permission.
  1672. THIS SOFTWARE IS PROVIDED BY THE ECMA INTERNATIONAL "AS IS" AND ANY EXPRESS OR
  1673. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  1674. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  1675. SHALL ECMA INTERNATIONAL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  1676. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  1677. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  1678. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1679. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  1680. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1681. * Ecma International Standards hereafter means Ecma International Standards as
  1682. well as Ecma Technical Reports
  1683. =========================================
  1684. END OF test262 NOTICES, INFORMATION, AND LICENSE
  1685. %% The Computer Language Shootout NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1686. =========================================
  1687. Copyright © 2004-2012 Brent Fulgham
  1688. All rights reserved.
  1689. Redistribution and use in source and binary forms, with or without modification,
  1690. are permitted provided that the following conditions are met:
  1691. Redistributions of source code must retain the above copyright notice, this list
  1692. of conditions and the following disclaimer. Redistributions in binary form must
  1693. reproduce the above copyright notice, this list of conditions and the following
  1694. disclaimer in the documentation and/or other materials provided with the distribution.
  1695. Neither the name of "The Computer Language Benchmarks Game" nor the name of "The
  1696. Computer Language Shootout Benchmarks" nor the names of its contributors may be
  1697. used to endorse or promote products derived from this software without specific
  1698. prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  1699. CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1700. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1701. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  1702. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1703. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1704. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  1705. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  1706. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  1707. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1708. =========================================
  1709. END OF The Computer Language Shootout NOTICES, INFORMATION, AND LICENSE
  1710. %% WebAssembly/testsuite NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1711. =========================================
  1712. * Copyright 2016 WebAssembly Community Group participants
  1713. *
  1714. * Licensed under the Apache License, Version 2.0 (the "License");
  1715. * you may not use this file except in compliance with the License.
  1716. * You may obtain a copy of the License at
  1717. *
  1718. * http://www.apache.org/licenses/LICENSE-2.0
  1719. *
  1720. * Unless required by applicable law or agreed to in writing, software
  1721. * distributed under the License is distributed on an "AS IS" BASIS,
  1722. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  1723. * See the License for the specific language governing permissions and
  1724. * limitations under the License.
  1725. =========================================
  1726. END OF WebAssembly/testsuite NOTICES, INFORMATION, AND LICENSE
  1727. %% zlib-data.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1728. =========================================
  1729. For material from https://github.com/dvander/arewefastyet/blob/master/benchmarks/asmjs-apps/zlib.js:
  1730. This Source Code Form is subject to the terms of the Mozilla Public
  1731. License, v. 2.0. If a copy of the MPL was not distributed with this
  1732. file, You can obtain one at http://mozilla.org/MPL/2.0/.
  1733. Third party benchmarks included with AreWeFastYet uses different licenses.
  1734. For material from zlib and https://github.com/kripken/emscripten/blob/master/tests/zlib/benchmark.c:
  1735. /* zlib.h -- interface of the 'zlib' general purpose compression library
  1736. version 1.2.8, April 28th, 2013
  1737. Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
  1738. This software is provided 'as-is', without any express or implied
  1739. warranty. In no event will the authors be held liable for any damages
  1740. arising from the use of this software.
  1741. Permission is granted to anyone to use this software for any purpose,
  1742. including commercial applications, and to alter it and redistribute it
  1743. freely, subject to the following restrictions:
  1744. 1. The origin of this software must not be misrepresented; you must not
  1745. claim that you wrote the original software. If you use this software
  1746. in a product, an acknowledgment in the product documentation would be
  1747. appreciated but is not required.
  1748. 2. Altered source versions must be plainly marked as such, and must not be
  1749. misrepresented as being the original software.
  1750. 3. This notice may not be removed or altered from any source distribution.
  1751. Jean-loup Gailly Mark Adler
  1752. [email protected] [email protected]
  1753. */
  1754. =========================================
  1755. END OF zlib-data.js NOTICES, INFORMATION, AND LICENSE
  1756. %% yargs-parser.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1757. =========================================
  1758. Copyright (c) 2016, Contributors
  1759. Permission to use, copy, modify, and/or distribute this software
  1760. for any purpose with or without fee is hereby granted, provided
  1761. that the above copyright notice and this permission notice
  1762. appear in all copies.
  1763. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  1764. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
  1765. OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
  1766. LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
  1767. OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  1768. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  1769. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  1770. =========================================
  1771. END OF yargs-parser.js NOTICES, INFORMATION, AND LICENSE
  1772. %% camelcase.js NOTICES, INFORMATION, AND LICENSE BEGIN HERE
  1773. =========================================
  1774. The MIT License (MIT)
  1775. Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
  1776. Permission is hereby granted, free of charge, to any person obtaining a copy
  1777. of this software and associated documentation files (the "Software"), to deal
  1778. in the Software without restriction, including without limitation the rights
  1779. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1780. copies of the Software, and to permit persons to whom the Software is
  1781. furnished to do so, subject to the following conditions:
  1782. The above copyright notice and this permission notice shall be included in
  1783. all copies or substantial portions of the Software.
  1784. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1785. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1786. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1787. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1788. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1789. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1790. THE SOFTWARE.
  1791. =========================================
  1792. END OF camelcase.js NOTICES, INFORMATION, AND LICENSE
  1793. ---------------------------------------------------------------------------
  1794. Wabt
  1795. URL of the license https://github.com/WebAssembly/wabt/blob/master/LICENSE
  1796. The files in lib/wabt are licensed as specified in lib/wabt/LICENSE
  1797. unless otherwise stated in the file
  1798. ---------------------------------------------