THIRD-PARTY-NOTICES.txt 117 KB

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