Working on v4.2.3
[platform/upstream/nodejs.git] / LICENSE
1 Node.js is licensed for use as follows:
2
3 """
4 Copyright Node.js contributors. All rights reserved.
5
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to
8 deal in the Software without restriction, including without limitation the
9 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 sell copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 IN THE SOFTWARE.
23 """
24
25 This license applies to parts of Node.js originating from the
26 https://github.com/joyent/node repository:
27
28 """
29 Copyright Joyent, Inc. and other Node contributors. All rights reserved.
30 Permission is hereby granted, free of charge, to any person obtaining a copy
31 of this software and associated documentation files (the "Software"), to
32 deal in the Software without restriction, including without limitation the
33 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
34 sell copies of the Software, and to permit persons to whom the Software is
35 furnished to do so, subject to the following conditions:
36
37 The above copyright notice and this permission notice shall be included in
38 all copies or substantial portions of the Software.
39
40 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
42 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
43 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
44 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
45 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
46 IN THE SOFTWARE.
47 """
48
49 The Node.js license applies to all parts of Node.js that are not externally
50 maintained libraries.
51
52 The externally maintained libraries used by Node.js are:
53
54 - V8, located at deps/v8. V8's license follows:
55   """
56     This license applies to all parts of V8 that are not externally
57     maintained libraries.  The externally maintained libraries used by V8
58     are:
59
60       - PCRE test suite, located in
61         test/mjsunit/third_party/regexp-pcre.js.  This is based on the
62         test suite from PCRE-7.3, which is copyrighted by the University
63         of Cambridge and Google, Inc.  The copyright notice and license
64         are embedded in regexp-pcre.js.
65
66       - Layout tests, located in test/mjsunit/third_party.  These are
67         based on layout tests from webkit.org which are copyrighted by
68         Apple Computer, Inc. and released under a 3-clause BSD license.
69
70       - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
71         assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
72         assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
73         assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,
74         assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
75         This code is copyrighted by Sun Microsystems Inc. and released
76         under a 3-clause BSD license.
77
78       - Valgrind client API header, located at third_party/valgrind/valgrind.h
79         This is release under the BSD license.
80
81     These libraries have their own licenses; we recommend you read them,
82     as their terms may differ from the terms below.
83
84     Copyright 2006-2012, the V8 project authors. All rights reserved.
85     Redistribution and use in source and binary forms, with or without
86     modification, are permitted provided that the following conditions are
87     met:
88
89         * Redistributions of source code must retain the above copyright
90           notice, this list of conditions and the following disclaimer.
91         * Redistributions in binary form must reproduce the above
92           copyright notice, this list of conditions and the following
93           disclaimer in the documentation and/or other materials provided
94           with the distribution.
95         * Neither the name of Google Inc. nor the names of its
96           contributors may be used to endorse or promote products derived
97           from this software without specific prior written permission.
98
99     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
100     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
101     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
102     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
103     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
104     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
105     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
106     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
107     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
108     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
109     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
110   """
111
112 - C-Ares, an asynchronous DNS client, located at deps/cares. C-Ares license
113   follows:
114   """
115     /* Copyright 1998 by the Massachusetts Institute of Technology.
116      *
117      * Permission to use, copy, modify, and distribute this
118      * software and its documentation for any purpose and without
119      * fee is hereby granted, provided that the above copyright
120      * notice appear in all copies and that both that copyright
121      * notice and this permission notice appear in supporting
122      * documentation, and that the name of M.I.T. not be used in
123      * advertising or publicity pertaining to distribution of the
124      * software without specific, written prior permission.
125      * M.I.T. makes no representations about the suitability of
126      * this software for any purpose.  It is provided "as is"
127      * without express or implied warranty.
128   """
129
130 - OpenSSL located at deps/openssl. OpenSSL is cryptographic software written
131   by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's
132   license follows:
133   """
134     /* ====================================================================
135      * Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
136      *
137      * Redistribution and use in source and binary forms, with or without
138      * modification, are permitted provided that the following conditions
139      * are met:
140      *
141      * 1. Redistributions of source code must retain the above copyright
142      *    notice, this list of conditions and the following disclaimer.
143      *
144      * 2. Redistributions in binary form must reproduce the above copyright
145      *    notice, this list of conditions and the following disclaimer in
146      *    the documentation and/or other materials provided with the
147      *    distribution.
148      *
149      * 3. All advertising materials mentioning features or use of this
150      *    software must display the following acknowledgment:
151      *    "This product includes software developed by the OpenSSL Project
152      *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
153      *
154      * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
155      *    endorse or promote products derived from this software without
156      *    prior written permission. For written permission, please contact
157      *    openssl-core@openssl.org.
158      *
159      * 5. Products derived from this software may not be called "OpenSSL"
160      *    nor may "OpenSSL" appear in their names without prior written
161      *    permission of the OpenSSL Project.
162      *
163      * 6. Redistributions of any form whatsoever must retain the following
164      *    acknowledgment:
165      *    "This product includes software developed by the OpenSSL Project
166      *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
167      *
168      * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
169      * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
170      * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
171      * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
172      * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
173      * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
174      * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
175      * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
176      * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
177      * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
178      * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
179      * OF THE POSSIBILITY OF SUCH DAMAGE.
180      * ====================================================================
181      *
182      * This product includes cryptographic software written by Eric Young
183      * (eay@cryptsoft.com).  This product includes software written by Tim
184      * Hudson (tjh@cryptsoft.com).
185      *
186      */
187   """
188
189 - HTTP Parser, located at deps/http_parser. HTTP Parser's license follows:
190   """
191     http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright
192     Igor Sysoev.
193
194     Additional changes are licensed under the same terms as NGINX and
195     copyright Joyent, Inc. and other Node contributors. All rights reserved.
196
197     Permission is hereby granted, free of charge, to any person obtaining a copy
198     of this software and associated documentation files (the "Software"), to
199     deal in the Software without restriction, including without limitation the
200     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
201     sell copies of the Software, and to permit persons to whom the Software is
202     furnished to do so, subject to the following conditions:
203
204     The above copyright notice and this permission notice shall be included in
205     all copies or substantial portions of the Software.
206
207     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
208     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
209     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
210     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
211     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
212     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
213     IN THE SOFTWARE.
214   """
215
216 - ESLint is located at tools/eslint. ESLint's license follows:
217   """
218     ESLint
219     Copyright (c) 2013 Nicholas C. Zakas. All rights reserved.
220
221     Permission is hereby granted, free of charge, to any person obtaining a copy
222     of this software and associated documentation files (the "Software"), to deal
223     in the Software without restriction, including without limitation the rights
224     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
225     copies of the Software, and to permit persons to whom the Software is
226     furnished to do so, subject to the following conditions:
227
228     The above copyright notice and this permission notice shall be included in
229     all copies or substantial portions of the Software.
230
231     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
232     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
233     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
234     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
235     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
236     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
237     THE SOFTWARE.
238   """
239
240 - tools/cpplint.py is a C++ linter. Its license follows:
241   """
242     # Copyright (c) 2009 Google Inc. All rights reserved.
243     #
244     # Redistribution and use in source and binary forms, with or without
245     # modification, are permitted provided that the following conditions are
246     # met:
247     #
248     #    * Redistributions of source code must retain the above copyright
249     # notice, this list of conditions and the following disclaimer.
250     #    * Redistributions in binary form must reproduce the above
251     # copyright notice, this list of conditions and the following disclaimer
252     # in the documentation and/or other materials provided with the
253     # distribution.
254     #    * Neither the name of Google Inc. nor the names of its
255     # contributors may be used to endorse or promote products derived from
256     # this software without specific prior written permission.
257     #
258     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
259     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
260     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
261     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
262     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
263     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
264     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
265     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
266     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
268     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
269   """
270
271 - lib/punycode.js is copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
272   and released under the MIT license.
273   """
274     * Punycode.js <http://mths.be/punycode>
275     * Copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
276     * Available under MIT license <http://mths.be/mit>
277   """
278
279 - tools/gyp. GYP is a meta-build system. GYP's license follows:
280   """
281     Copyright (c) 2009 Google Inc. All rights reserved.
282
283     Redistribution and use in source and binary forms, with or without
284     modification, are permitted provided that the following conditions are
285     met:
286
287        * Redistributions of source code must retain the above copyright
288     notice, this list of conditions and the following disclaimer.
289        * Redistributions in binary form must reproduce the above
290     copyright notice, this list of conditions and the following disclaimer
291     in the documentation and/or other materials provided with the
292     distribution.
293        * Neither the name of Google Inc. nor the names of its
294     contributors may be used to endorse or promote products derived from
295     this software without specific prior written permission.
296
297     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
298     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
299     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
300     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
301     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
302     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
303     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
304     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
305     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
306     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
307     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
308   """
309
310 - Zlib at deps/zlib. zlib's license follows:
311   """
312     /* zlib.h -- interface of the 'zlib' general purpose compression library
313       version 1.2.8, April 28th, 2013
314
315       Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
316
317       This software is provided 'as-is', without any express or implied
318       warranty.  In no event will the authors be held liable for any damages
319       arising from the use of this software.
320
321       Permission is granted to anyone to use this software for any purpose,
322       including commercial applications, and to alter it and redistribute it
323       freely, subject to the following restrictions:
324
325       1. The origin of this software must not be misrepresented; you must not
326          claim that you wrote the original software. If you use this software
327          in a product, an acknowledgment in the product documentation would be
328          appreciated but is not required.
329       2. Altered source versions must be plainly marked as such, and must not be
330          misrepresented as being the original software.
331       3. This notice may not be removed or altered from any source distribution.
332
333       Jean-loup Gailly        Mark Adler
334       jloup@gzip.org          madler@alumni.caltech.edu
335     */
336   """
337
338 - npm is a package manager program located at deps/npm.
339   npm's license follows:
340   """
341     Copyright (c) Isaac Z. Schlueter
342     All rights reserved.
343
344     npm is released under the Artistic 2.0 License.
345     The text of the License follows:
346
347
348     --------
349
350
351     The Artistic License 2.0
352
353     Copyright (c) 2000-2006, The Perl Foundation.
354
355     Everyone is permitted to copy and distribute verbatim copies
356     of this license document, but changing it is not allowed.
357
358     Preamble
359
360     This license establishes the terms under which a given free software
361     Package may be copied, modified, distributed, and/or redistributed.
362     The intent is that the Copyright Holder maintains some artistic
363     control over the development of that Package while still keeping the
364     Package available as open source and free software.
365
366     You are always permitted to make arrangements wholly outside of this
367     license directly with the Copyright Holder of a given Package.  If the
368     terms of this license do not permit the full use that you propose to
369     make of the Package, you should contact the Copyright Holder and seek
370     a different licensing arrangement.
371
372     Definitions
373
374         "Copyright Holder" means the individual(s) or organization(s)
375         named in the copyright notice for the entire Package.
376
377         "Contributor" means any party that has contributed code or other
378         material to the Package, in accordance with the Copyright Holder's
379         procedures.
380
381         "You" and "your" means any person who would like to copy,
382         distribute, or modify the Package.
383
384         "Package" means the collection of files distributed by the
385         Copyright Holder, and derivatives of that collection and/or of
386         those files. A given Package may consist of either the Standard
387         Version, or a Modified Version.
388
389         "Distribute" means providing a copy of the Package or making it
390         accessible to anyone else, or in the case of a company or
391         organization, to others outside of your company or organization.
392
393         "Distributor Fee" means any fee that you charge for Distributing
394         this Package or providing support for this Package to another
395         party.  It does not mean licensing fees.
396
397         "Standard Version" refers to the Package if it has not been
398         modified, or has been modified only in ways explicitly requested
399         by the Copyright Holder.
400
401         "Modified Version" means the Package, if it has been changed, and
402         such changes were not explicitly requested by the Copyright
403         Holder.
404
405         "Original License" means this Artistic License as Distributed with
406         the Standard Version of the Package, in its current version or as
407         it may be modified by The Perl Foundation in the future.
408
409         "Source" form means the source code, documentation source, and
410         configuration files for the Package.
411
412         "Compiled" form means the compiled bytecode, object code, binary,
413         or any other form resulting from mechanical transformation or
414         translation of the Source form.
415
416
417     Permission for Use and Modification Without Distribution
418
419     (1)  You are permitted to use the Standard Version and create and use
420     Modified Versions for any purpose without restriction, provided that
421     you do not Distribute the Modified Version.
422
423
424     Permissions for Redistribution of the Standard Version
425
426     (2)  You may Distribute verbatim copies of the Source form of the
427     Standard Version of this Package in any medium without restriction,
428     either gratis or for a Distributor Fee, provided that you duplicate
429     all of the original copyright notices and associated disclaimers.  At
430     your discretion, such verbatim copies may or may not include a
431     Compiled form of the Package.
432
433     (3)  You may apply any bug fixes, portability changes, and other
434     modifications made available from the Copyright Holder.  The resulting
435     Package will still be considered the Standard Version, and as such
436     will be subject to the Original License.
437
438
439     Distribution of Modified Versions of the Package as Source
440
441     (4)  You may Distribute your Modified Version as Source (either gratis
442     or for a Distributor Fee, and with or without a Compiled form of the
443     Modified Version) provided that you clearly document how it differs
444     from the Standard Version, including, but not limited to, documenting
445     any non-standard features, executables, or modules, and provided that
446     you do at least ONE of the following:
447
448         (a)  make the Modified Version available to the Copyright Holder
449         of the Standard Version, under the Original License, so that the
450         Copyright Holder may include your modifications in the Standard
451         Version.
452
453         (b)  ensure that installation of your Modified Version does not
454         prevent the user installing or running the Standard Version. In
455         addition, the Modified Version must bear a name that is different
456         from the name of the Standard Version.
457
458         (c)  allow anyone who receives a copy of the Modified Version to
459         make the Source form of the Modified Version available to others
460         under
461
462             (i)  the Original License or
463
464             (ii)  a license that permits the licensee to freely copy,
465             modify and redistribute the Modified Version using the same
466             licensing terms that apply to the copy that the licensee
467             received, and requires that the Source form of the Modified
468             Version, and of any works derived from it, be made freely
469             available in that license fees are prohibited but Distributor
470             Fees are allowed.
471
472
473     Distribution of Compiled Forms of the Standard Version
474     or Modified Versions without the Source
475
476     (5)  You may Distribute Compiled forms of the Standard Version without
477     the Source, provided that you include complete instructions on how to
478     get the Source of the Standard Version.  Such instructions must be
479     valid at the time of your distribution.  If these instructions, at any
480     time while you are carrying out such distribution, become invalid, you
481     must provide new instructions on demand or cease further distribution.
482     If you provide valid instructions or cease distribution within thirty
483     days after you become aware that the instructions are invalid, then
484     you do not forfeit any of your rights under this license.
485
486     (6)  You may Distribute a Modified Version in Compiled form without
487     the Source, provided that you comply with Section 4 with respect to
488     the Source of the Modified Version.
489
490
491     Aggregating or Linking the Package
492
493     (7)  You may aggregate the Package (either the Standard Version or
494     Modified Version) with other packages and Distribute the resulting
495     aggregation provided that you do not charge a licensing fee for the
496     Package.  Distributor Fees are permitted, and licensing fees for other
497     components in the aggregation are permitted. The terms of this license
498     apply to the use and Distribution of the Standard or Modified Versions
499     as included in the aggregation.
500
501     (8) You are permitted to link Modified and Standard Versions with
502     other works, to embed the Package in a larger work of your own, or to
503     build stand-alone binary or bytecode versions of applications that
504     include the Package, and Distribute the result without restriction,
505     provided the result does not expose a direct interface to the Package.
506
507
508     Items That are Not Considered Part of a Modified Version
509
510     (9) Works (including, but not limited to, modules and scripts) that
511     merely extend or make use of the Package, do not, by themselves, cause
512     the Package to be a Modified Version.  In addition, such works are not
513     considered parts of the Package itself, and are not subject to the
514     terms of this license.
515
516
517     General Provisions
518
519     (10)  Any use, modification, and distribution of the Standard or
520     Modified Versions is governed by this Artistic License. By using,
521     modifying or distributing the Package, you accept this license. Do not
522     use, modify, or distribute the Package, if you do not accept this
523     license.
524
525     (11)  If your Modified Version has been derived from a Modified
526     Version made by someone other than you, you are nevertheless required
527     to ensure that your Modified Version complies with the requirements of
528     this license.
529
530     (12)  This license does not grant you the right to use any trademark,
531     service mark, tradename, or logo of the Copyright Holder.
532
533     (13)  This license includes the non-exclusive, worldwide,
534     free-of-charge patent license to make, have made, use, offer to sell,
535     sell, import and otherwise transfer the Package with respect to any
536     patent claims licensable by the Copyright Holder that are necessarily
537     infringed by the Package. If you institute patent litigation
538     (including a cross-claim or counterclaim) against any party alleging
539     that the Package constitutes direct or contributory patent
540     infringement, then this Artistic License to you shall terminate on the
541     date that such litigation is filed.
542
543     (14)  Disclaimer of Warranty:
544     THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
545     IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
546     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
547     NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
548     LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
549     BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
550     DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
551     ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
552
553
554     --------
555
556
557     "Node.js" and "node" trademark Joyent, Inc. npm is not officially
558     part of the Node.js project, and is neither owned by nor
559     officially affiliated with Joyent, Inc.
560
561     Packages published in the npm registry (other than the Software and
562     its included dependencies) are not part of npm itself, are the sole
563     property of their respective maintainers, and are not covered by
564     this license.
565
566     "npm Logo" created by Mathias Pettersson and Brian Hammond,
567     used with permission.
568
569     "Gubblebum Blocky" font
570     Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com
571     included for use in the npm website and documentation,
572     used with permission.
573
574     This program uses several Node.js modules contained in the node_modules/
575     subdirectory, according to the terms of their respective licenses.
576   """
577
578 - tools/doc/node_modules/marked. Marked is a Markdown parser. Marked's
579   license follows:
580   """
581     Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)
582
583     Permission is hereby granted, free of charge, to any person obtaining a copy
584     of this software and associated documentation files (the "Software"), to deal
585     in the Software without restriction, including without limitation the rights
586     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
587     copies of the Software, and to permit persons to whom the Software is
588     furnished to do so, subject to the following conditions:
589
590     The above copyright notice and this permission notice shall be included in
591     all copies or substantial portions of the Software.
592
593     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
594     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
595     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
596     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
597     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
598     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
599     THE SOFTWARE.
600   """
601
602 - test/gc/node_modules/weak. Node-weak is a node.js addon that provides garbage
603   collector notifications. Node-weak's license follows:
604   """
605     Copyright (c) 2011, Ben Noordhuis <info@bnoordhuis.nl>
606
607     Permission to use, copy, modify, and/or distribute this software for any
608     purpose with or without fee is hereby granted, provided that the above
609     copyright notice and this permission notice appear in all copies.
610
611     THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
612     WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
613     MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
614     ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
615     WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
616     ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
617     OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
618   """
619
620 - ICU's license follows:
621   From http://source.icu-project.org/repos/icu/icu/trunk/license.html
622   """
623   ICU License - ICU 1.8.1 and later
624
625     COPYRIGHT AND PERMISSION NOTICE
626
627     Copyright (c) 1995-2014 International Business Machines Corporation and others
628
629     All rights reserved.
630
631     Permission is hereby granted, free of charge, to any person
632     obtaining a copy of this software and associated documentation
633     files (the "Software"), to deal in the Software without
634     restriction, including without limitation the rights to use, copy,
635     modify, merge, publish, distribute, and/or sell copies of the
636     Software, and to permit persons to whom the Software is furnished
637     to do so, provided that the above copyright notice(s) and this
638     permission notice appear in all copies of the Software and that
639     both the above copyright notice(s) and this permission notice
640     appear in supporting documentation.
641
642     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
643     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
644     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
645     NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE
646     COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR
647     ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
648     ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
649     PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
650     TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
651     PERFORMANCE OF THIS SOFTWARE.
652
653     Except as contained in this notice, the name of a copyright holder
654     shall not be used in advertising or otherwise to promote the sale,
655     use or other dealings in this Software without prior written
656     authorization of the copyright holder.
657
658     All trademarks and registered trademarks mentioned herein are the
659     property of their respective owners.
660
661   Third-Party Software Licenses
662
663     This section contains third-party software notices and/or
664     additional terms for licensed third-party software components
665     included within ICU libraries.
666
667   1. Unicode Data Files and Software
668     COPYRIGHT AND PERMISSION NOTICE
669
670     Copyright Â© 1991-2014 Unicode, Inc. All rights reserved.
671     Distributed under the Terms of Use in
672     http://www.unicode.org/copyright.html.
673
674     Permission is hereby granted, free of charge, to any person obtaining
675     a copy of the Unicode data files and any associated documentation
676     (the "Data Files") or Unicode software and any associated documentation
677     (the "Software") to deal in the Data Files or Software
678     without restriction, including without limitation the rights to use,
679     copy, modify, merge, publish, distribute, and/or sell copies of
680     the Data Files or Software, and to permit persons to whom the Data Files
681     or Software are furnished to do so, provided that
682     (a) this copyright and permission notice appear with all copies
683     of the Data Files or Software,
684     (b) this copyright and permission notice appear in associated
685     documentation, and
686     (c) there is clear notice in each modified Data File or in the Software
687     as well as in the documentation associated with the Data File(s) or
688     Software that the data or software has been modified.
689
690     THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
691     ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
692     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
693     NONINFRINGEMENT OF THIRD PARTY RIGHTS.
694     IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
695     NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
696     DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
697     DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
698     TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
699     PERFORMANCE OF THE DATA FILES OR SOFTWARE.
700
701     Except as contained in this notice, the name of a copyright holder
702     shall not be used in advertising or otherwise to promote the sale,
703     use or other dealings in these Data Files or Software without prior
704     written authorization of the copyright holder.
705
706   2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
707      #    The Google Chrome software developed by Google is licensed
708      #  under the BSD license. Other software included in this distribution
709      #  is provided under other licenses, as set forth below.
710      #
711      #  The BSD License
712      #  http://opensource.org/licenses/bsd-license.php
713      #  Copyright (C) 2006-2008, Google Inc.
714      #
715      #  All rights reserved.
716      #
717      #  Redistribution and use in source and binary forms, with or
718      #  without modification, are permitted provided that the following
719      #  conditions are met:
720      #
721      #  Redistributions of source code must retain the above copyright
722   notice, this list of conditions and the following disclaimer.
723      #  Redistributions in binary form must reproduce the above
724      #  copyright notice, this list of conditions and the following
725      #  disclaimer in the documentation and/or other materials provided with
726      #  the distribution.
727      #  Neither the name of  Google Inc. nor the names of its
728      #  contributors may be used to endorse or promote products derived from
729      #  this software without specific prior written permission.
730      #
731      #
732      #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
733   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
734   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
735   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
736   DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
737   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
738   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
739   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
740   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
741   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
742   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
743   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
744      #
745      #
746      #  The word list in cjdict.txt are generated by combining three
747   word lists listed
748      #  below with further processing for compound word breaking. The
749   frequency is generated
750      #  with an iterative training against Google web corpora.
751      #
752      #  * Libtabe (Chinese)
753      #    - https://sourceforge.net/project/?group_id=1519
754      #    - Its license terms and conditions are shown below.
755      #
756      #  * IPADIC (Japanese)
757      #    - http://chasen.aist-nara.ac.jp/chasen/distribution.html
758      #    - Its license terms and conditions are shown below.
759      #
760      #  ---------COPYING.libtabe ---- BEGIN--------------------
761      #
762      #  /*
763      #   * Copyrighy (c) 1999 TaBE Project.
764      #   * Copyright (c) 1999 Pai-Hsiang Hsiao.
765      #   * All rights reserved.
766      #   *
767      #   * Redistribution and use in source and binary forms, with or without
768      #   * modification, are permitted provided that the following conditions
769      #   * are met:
770      #   *
771      #   * . Redistributions of source code must retain the above copyright
772      #   *   notice, this list of conditions and the following disclaimer.
773      #   * . Redistributions in binary form must reproduce the above copyright
774      #   *   notice, this list of conditions and the following disclaimer in
775      #   *   the documentation and/or other materials provided with the
776      #   *   distribution.
777      #   * . Neither the name of the TaBE Project nor the names of its
778      #   *   contributors may be used to endorse or promote products derived
779      #   *   from this software without specific prior written permission.
780      #   *
781      #   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
782      #   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
783      #   * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
784      #   * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
785      #   * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
786      #   * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
787      #   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
788      #   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
789      #   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
790      #   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
791      #   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
792      #   * OF THE POSSIBILITY OF SUCH DAMAGE.
793      #   */
794      #
795      #  /*
796      #   * Copyright (c) 1999 Computer Systems and Communication Lab,
797      #   *                    Institute of Information Science, Academia Sinica.
798      #   * All rights reserved.
799      #   *
800      #   * Redistribution and use in source and binary forms, with or without
801      #   * modification, are permitted provided that the following conditions
802      #   * are met:
803      #   *
804      #   * . Redistributions of source code must retain the above copyright
805      #   *   notice, this list of conditions and the following disclaimer.
806      #   * . Redistributions in binary form must reproduce the above copyright
807      #   *   notice, this list of conditions and the following disclaimer in
808      #   *   the documentation and/or other materials provided with the
809      #   *   distribution.
810      #   * . Neither the name of the Computer Systems and Communication Lab
811      #   *   nor the names of its contributors may be used to endorse or
812      #   *   promote products derived from this software without specific
813      #   *   prior written permission.
814      #   *
815      #   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
816      #   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
817      #   * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
818      #   * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
819      #   * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
820      #   * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
821      #   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
822      #   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
823      #   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
824      #   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
825      #   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
826      #   * OF THE POSSIBILITY OF SUCH DAMAGE.
827      #   */
828      #
829      #  Copyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois
830      #  c-tsai4@uiuc.edu  http://casper.beckman.uiuc.edu/~c-tsai4
831      #
832      #  ---------------COPYING.libtabe-----END------------------------------------
833      #
834      #
835      #  ---------------COPYING.ipadic-----BEGIN------------------------------------
836      #
837      #  Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
838      #  and Technology.  All Rights Reserved.
839      #
840      #  Use, reproduction, and distribution of this software is permitted.
841      #  Any copy of this software, whether in its original form or modified,
842      #  must include both the above copyright notice and the following
843      #  paragraphs.
844      #
845      #  Nara Institute of Science and Technology (NAIST),
846      #  the copyright holders, disclaims all warranties with regard to this
847      #  software, including all implied warranties of merchantability and
848      #  fitness, in no event shall NAIST be liable for
849      #  any special, indirect or consequential damages or any damages
850      #  whatsoever resulting from loss of use, data or profits, whether in an
851      #  action of contract, negligence or other tortuous action, arising out
852      #  of or in connection with the use or performance of this software.
853      #
854      #  A large portion of the dictionary entries
855      #  originate from ICOT Free Software.  The following conditions for ICOT
856      #  Free Software applies to the current dictionary as well.
857      #
858      #  Each User may also freely distribute the Program, whether in its
859      #  original form or modified, to any third party or parties, PROVIDED
860      #  that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
861      #  on, or be attached to, the Program, which is distributed substantially
862      #  in the same form as set out herein and that such intended
863      #  distribution, if actually made, will neither violate or otherwise
864      #  contravene any of the laws and regulations of the countries having
865      #  jurisdiction over the User or the intended distribution itself.
866      #
867      #  NO WARRANTY
868      #
869      #  The program was produced on an experimental basis in the course of the
870      #  research and development conducted during the project and is provided
871      #  to users as so produced on an experimental basis.  Accordingly, the
872      #  program is provided without any warranty whatsoever, whether express,
873      #  implied, statutory or otherwise.  The term "warranty" used herein
874      #  includes, but is not limited to, any warranty of the quality,
875      #  performance, merchantability and fitness for a particular purpose of
876      #  the program and the nonexistence of any infringement or violation of
877      #  any right of any third party.
878      #
879      #  Each user of the program will agree and understand, and be deemed to
880      #  have agreed and understood, that there is no warranty whatsoever for
881      #  the program and, accordingly, the entire risk arising from or
882      #  otherwise connected with the program is assumed by the user.
883      #
884      #  Therefore, neither ICOT, the copyright holder, or any other
885      #  organization that participated in or was otherwise related to the
886      #  development of the program and their respective officials, directors,
887      #  officers and other employees shall be held liable for any and all
888      #  damages, including, without limitation, general, special, incidental
889      #  and consequential damages, arising out of or otherwise in connection
890      #  with the use or inability to use the program or any product, material
891      #  or result produced or otherwise obtained by using the program,
892      #  regardless of whether they have been advised of, or otherwise had
893      #  knowledge of, the possibility of such damages at any time during the
894      #  project or thereafter.  Each user will be deemed to have agreed to the
895      #  foregoing by his or her commencement of use of the program.  The term
896      #  "use" as used herein includes, but is not limited to, the use,
897      #  modification, copying and distribution of the program and the
898      #  production of secondary products from the program.
899      #
900      #  In the case where the program, whether in its original form or
901      #  modified, was distributed or delivered to or received by a user from
902      #  any person, organization or entity other than ICOT, unless it makes or
903      #  grants independently of ICOT any specific warranty to the user in
904      #  writing, such person, organization or entity, will also be exempted
905      #  from and not be held liable to the user for any such damages as noted
906      #  above as far as the program is concerned.
907      #
908      #  ---------------COPYING.ipadic-----END------------------------------------
909
910    3. Lao Word Break Dictionary Data (laodict.txt)
911      #  Copyright (c) 2013 International Business Machines Corporation
912      #  and others. All Rights Reserved.
913      #
914      #  Project:    http://code.google.com/p/lao-dictionary/
915      #  Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt
916      #  License:    http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt
917      #              (copied below)
918      #
919      #  This file is derived from the above dictionary, with slight modifications.
920      #  --------------------------------------------------------------------------------
921      #  Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
922      #  All rights reserved.
923      #
924      #  Redistribution and use in source and binary forms, with or without modification,
925      #  are permitted provided that the following conditions are met:
926      #
927      #          Redistributions of source code must retain the above copyright notice, this
928      #          list of conditions and the following disclaimer. Redistributions in binary
929      #          form must reproduce the above copyright notice, this list of conditions and
930      #          the following disclaimer in the documentation and/or other materials
931      #          provided with the distribution.
932      #
933      #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
934      #  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
935      #  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
936      #  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
937      #  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
938      #  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
939      #  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
940      #  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
941      #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
942      #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
943      #  --------------------------------------------------------------------------------
944
945   4. Burmese Word Break Dictionary Data (burmesedict.txt)
946      #  Copyright (c) 2014 International Business Machines Corporation
947      #  and others. All Rights Reserved.
948      #
949      #  This list is part of a project hosted at:
950      #    github.com/kanyawtech/myanmar-karen-word-lists
951      #
952      #  --------------------------------------------------------------------------------
953      #  Copyright (c) 2013, LeRoy Benjamin Sharon
954      #  All rights reserved.
955      #
956      #  Redistribution and use in source and binary forms, with or without modification,
957      #  are permitted provided that the following conditions are met:
958      #
959      #    Redistributions of source code must retain the above copyright notice, this
960      #    list of conditions and the following disclaimer.
961      #
962      #    Redistributions in binary form must reproduce the above copyright notice, this
963      #    list of conditions and the following disclaimer in the documentation and/or
964      #    other materials provided with the distribution.
965      #
966      #    Neither the name Myanmar Karen Word Lists, nor the names of its
967      #    contributors may be used to endorse or promote products derived from
968      #    this software without specific prior written permission.
969      #
970      #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
971      #  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
972      #  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
973      #  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
974      #  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
975      #  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
976      #  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
977      #  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
978      #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
979      #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
980      #  --------------------------------------------------------------------------------
981
982     5. Time Zone Database
983     ICU uses the public domain data and code derived from Time Zone
984     Database for its time zone support. The ownership of the TZ
985     database is explained in BCP 175: Procedure for Maintaining the
986     Time Zone Database section 7.
987
988         7.  Database Ownership
989
990        The TZ database itself is not an IETF Contribution or an IETF
991        document.  Rather it is a pre-existing and regularly updated work
992        that is in the public domain, and is intended to remain in the public
993        domain.  Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply
994        to the TZ Database or contributions that individuals make to it.
995        Should any claims be made and substantiated against the TZ Database,
996        the organization that is providing the IANA Considerations defined in
997        this RFC, under the memorandum of understanding with the IETF,
998        currently ICANN, may act in accordance with all competent court
999        orders.  No ownership claims will be made by ICANN or the IETF Trust
1000        on the database or the code.  Any person making a contribution to the
1001        database or code waives all rights to future claims in that
1002        contribution or in the TZ Database.
1003   """