LicenseRef-PdfiumThirdParty.txt 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. # BEGIN libpng license
  2. PNG Reference Library License version 2
  3. ---------------------------------------
  4. * Copyright (c) 1995-2019 The PNG Reference Library Authors.
  5. * Copyright (c) 2018-2019 Cosmin Truta.
  6. * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
  7. * Copyright (c) 1996-1997 Andreas Dilger.
  8. * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  9. The software is supplied "as is", without warranty of any kind,
  10. express or implied, including, without limitation, the warranties
  11. of merchantability, fitness for a particular purpose, title, and
  12. non-infringement. In no event shall the Copyright owners, or
  13. anyone distributing the software, be liable for any damages or
  14. other liability, whether in contract, tort or otherwise, arising
  15. from, out of, or in connection with the software, or the use or
  16. other dealings in the software, even if advised of the possibility
  17. of such damage.
  18. Permission is hereby granted to use, copy, modify, and distribute
  19. this software, or portions hereof, for any purpose, without fee,
  20. subject to the following restrictions:
  21. 1. The origin of this software must not be misrepresented; you
  22. must not claim that you wrote the original software. If you
  23. use this software in a product, an acknowledgment in the product
  24. documentation would be appreciated, but is not required.
  25. 2. Altered source versions must be plainly marked as such, and must
  26. not be misrepresented as being the original software.
  27. 3. This Copyright notice may not be removed or altered from any
  28. source or altered source distribution.
  29. # END libpng license
  30. # BEGIN LibTIFF License
  31. Copyright © 1988-1997 Sam Leffler\
  32. Copyright © 1991-1997 Silicon Graphics, Inc.
  33. Permission to use, copy, modify, distribute, and sell this software and
  34. its documentation for any purpose is hereby granted without fee, provided
  35. that (i) the above copyright notices and this permission notice appear in
  36. all copies of the software and related documentation, and (ii) the names of
  37. Sam Leffler and Silicon Graphics may not be used in any advertising or
  38. publicity relating to the software without the specific, prior written
  39. permission of Sam Leffler and Silicon Graphics.
  40. THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  41. EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  42. WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  43. IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  44. ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  45. OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  46. WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  47. LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  48. OF THIS SOFTWARE.
  49. # END LibTIFF License
  50. # BEGIN agg23 (Anti-Grain Geometry 2.3) license note
  51. //----------------------------------------------------------------------------
  52. // Anti-Grain Geometry - Version 2.3
  53. // Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
  54. //
  55. // Permission to copy, use, modify, sell and distribute this software
  56. // is granted provided this copyright notice appears in all copies.
  57. // This software is provided "as is" without express or implied
  58. // warranty, and with no claim as to its suitability for any purpose.
  59. //
  60. //----------------------------------------------------------------------------
  61. // Contact: mcseem@antigrain.com
  62. // mcseemagg@yahoo.com
  63. // http://www.antigrain.com
  64. //---------------------------------------------------------------------------
  65. # END agg23 (Anti-Grain Geometry 2.3) license note
  66. # BEGIN FreeType license
  67. The FreeType Project LICENSE
  68. ----------------------------
  69. 2006-Jan-27
  70. Copyright 1996-2002, 2006 by
  71. David Turner, Robert Wilhelm, and Werner Lemberg
  72. Introduction
  73. ============
  74. The FreeType Project is distributed in several archive packages;
  75. some of them may contain, in addition to the FreeType font engine,
  76. various tools and contributions which rely on, or relate to, the
  77. FreeType Project.
  78. This license applies to all files found in such packages, and
  79. which do not fall under their own explicit license. The license
  80. affects thus the FreeType font engine, the test programs,
  81. documentation and makefiles, at the very least.
  82. This license was inspired by the BSD, Artistic, and IJG
  83. (Independent JPEG Group) licenses, which all encourage inclusion
  84. and use of free software in commercial and freeware products
  85. alike. As a consequence, its main points are that:
  86. o We don't promise that this software works. However, we will be
  87. interested in any kind of bug reports. (`as is' distribution)
  88. o You can use this software for whatever you want, in parts or
  89. full form, without having to pay us. (`royalty-free' usage)
  90. o You may not pretend that you wrote this software. If you use
  91. it, or only parts of it, in a program, you must acknowledge
  92. somewhere in your documentation that you have used the
  93. FreeType code. (`credits')
  94. We specifically permit and encourage the inclusion of this
  95. software, with or without modifications, in commercial products.
  96. We disclaim all warranties covering The FreeType Project and
  97. assume no liability related to The FreeType Project.
  98. Finally, many people asked us for a preferred form for a
  99. credit/disclaimer to use in compliance with this license. We thus
  100. encourage you to use the following text:
  101. """
  102. Portions of this software are copyright © <year> The FreeType
  103. Project (www.freetype.org). All rights reserved.
  104. """
  105. Please replace <year> with the value from the FreeType version you
  106. actually use.
  107. Legal Terms
  108. ===========
  109. 0. Definitions
  110. --------------
  111. Throughout this license, the terms `package', `FreeType Project',
  112. and `FreeType archive' refer to the set of files originally
  113. distributed by the authors (David Turner, Robert Wilhelm, and
  114. Werner Lemberg) as the `FreeType Project', be they named as alpha,
  115. beta or final release.
  116. `You' refers to the licensee, or person using the project, where
  117. `using' is a generic term including compiling the project's source
  118. code as well as linking it to form a `program' or `executable'.
  119. This program is referred to as `a program using the FreeType
  120. engine'.
  121. This license applies to all files distributed in the original
  122. FreeType Project, including all source code, binaries and
  123. documentation, unless otherwise stated in the file in its
  124. original, unmodified form as distributed in the original archive.
  125. If you are unsure whether or not a particular file is covered by
  126. this license, you must contact us to verify this.
  127. The FreeType Project is copyright (C) 1996-2000 by David Turner,
  128. Robert Wilhelm, and Werner Lemberg. All rights reserved except as
  129. specified below.
  130. 1. No Warranty
  131. --------------
  132. THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
  133. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  134. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  135. PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
  136. BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
  137. USE, OF THE FREETYPE PROJECT.
  138. 2. Redistribution
  139. -----------------
  140. This license grants a worldwide, royalty-free, perpetual and
  141. irrevocable right and license to use, execute, perform, compile,
  142. display, copy, create derivative works of, distribute and
  143. sublicense the FreeType Project (in both source and object code
  144. forms) and derivative works thereof for any purpose; and to
  145. authorize others to exercise some or all of the rights granted
  146. herein, subject to the following conditions:
  147. o Redistribution of source code must retain this license file
  148. (`FTL.TXT') unaltered; any additions, deletions or changes to
  149. the original files must be clearly indicated in accompanying
  150. documentation. The copyright notices of the unaltered,
  151. original files must be preserved in all copies of source
  152. files.
  153. o Redistribution in binary form must provide a disclaimer that
  154. states that the software is based in part of the work of the
  155. FreeType Team, in the distribution documentation. We also
  156. encourage you to put an URL to the FreeType web page in your
  157. documentation, though this isn't mandatory.
  158. These conditions apply to any software derived from or based on
  159. the FreeType Project, not just the unmodified files. If you use
  160. our work, you must acknowledge us. However, no fee need be paid
  161. to us.
  162. 3. Advertising
  163. --------------
  164. Neither the FreeType authors and contributors nor you shall use
  165. the name of the other for commercial, advertising, or promotional
  166. purposes without specific prior written permission.
  167. We suggest, but do not require, that you use one or more of the
  168. following phrases to refer to this software in your documentation
  169. or advertising materials: `FreeType Project', `FreeType Engine',
  170. `FreeType library', or `FreeType Distribution'.
  171. As you have not signed this license, you are not required to
  172. accept it. However, as the FreeType Project is copyrighted
  173. material, only this license, or another one contracted with the
  174. authors, grants you the right to use, distribute, and modify it.
  175. Therefore, by using, distributing, or modifying the FreeType
  176. Project, you indicate that you understand and accept all the terms
  177. of this license.
  178. 4. Contacts
  179. -----------
  180. There are two mailing lists related to FreeType:
  181. o freetype@nongnu.org
  182. Discusses general use and applications of FreeType, as well as
  183. future and wanted additions to the library and distribution.
  184. If you are looking for support, start in this list if you
  185. haven't found anything to help you in the documentation.
  186. o freetype-devel@nongnu.org
  187. Discusses bugs, as well as engine internals, design issues,
  188. specific licenses, porting, etc.
  189. Our home page can be found at
  190. https://www.freetype.org
  191. # END FreeType license
  192. # BEGIN lcms license note
  193. //---------------------------------------------------------------------------------
  194. //
  195. // Little Color Management System
  196. // Copyright (c) 1998-2020 Marti Maria Saguer
  197. //
  198. // Permission is hereby granted, free of charge, to any person obtaining
  199. // a copy of this software and associated documentation files (the "Software"),
  200. // to deal in the Software without restriction, including without limitation
  201. // the rights to use, copy, modify, merge, publish, distribute, sublicense,
  202. // and/or sell copies of the Software, and to permit persons to whom the Software
  203. // is furnished to do so, subject to the following conditions:
  204. //
  205. // The above copyright notice and this permission notice shall be included in
  206. // all copies or substantial portions of the Software.
  207. //
  208. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  209. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  210. // THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  211. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  212. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  213. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  214. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  215. //
  216. //---------------------------------------------------------------------------------
  217. //
  218. # END lcms license note
  219. # BEGIN openjpeg license note
  220. /*
  221. * The copyright in this software is being made available under the 2-clauses
  222. * BSD License, included below. This software may be subject to other third
  223. * party and contributor rights, including patent rights, and no such rights
  224. * are granted under this license.
  225. *
  226. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  227. * Copyright (c) 2002-2014, Professor Benoit Macq
  228. * Copyright (c) 2001-2003, David Janssens
  229. * Copyright (c) 2002-2003, Yannick Verschueren
  230. * Copyright (c) 2003-2007, Francois-Olivier Devaux
  231. * Copyright (c) 2003-2014, Antonin Descampe
  232. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  233. * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
  234. * Copyright (c) 2012, CS Systemes d'Information, France
  235. * All rights reserved.
  236. *
  237. * Redistribution and use in source and binary forms, with or without
  238. * modification, are permitted provided that the following conditions
  239. * are met:
  240. * 1. Redistributions of source code must retain the above copyright
  241. * notice, this list of conditions and the following disclaimer.
  242. * 2. Redistributions in binary form must reproduce the above copyright
  243. * notice, this list of conditions and the following disclaimer in the
  244. * documentation and/or other materials provided with the distribution.
  245. *
  246. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  247. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  248. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  249. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  250. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  251. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  252. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  253. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  254. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  255. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  256. * POSSIBILITY OF SUCH DAMAGE.
  257. */
  258. # END openjpeg license note
  259. # BEGIN zlib license
  260. /* zlib.h -- interface of the 'zlib' general purpose compression library
  261. version 1.2.11, January 15th, 2017
  262. Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
  263. This software is provided 'as-is', without any express or implied
  264. warranty. In no event will the authors be held liable for any damages
  265. arising from the use of this software.
  266. Permission is granted to anyone to use this software for any purpose,
  267. including commercial applications, and to alter it and redistribute it
  268. freely, subject to the following restrictions:
  269. 1. The origin of this software must not be misrepresented; you must not
  270. claim that you wrote the original software. If you use this software
  271. in a product, an acknowledgment in the product documentation would be
  272. appreciated but is not required.
  273. 2. Altered source versions must be plainly marked as such, and must not be
  274. misrepresented as being the original software.
  275. 3. This notice may not be removed or altered from any source distribution.
  276. Jean-loup Gailly Mark Adler
  277. jloup@gzip.org madler@alumni.caltech.edu
  278. */
  279. # END zlib license
  280. # BEGIN libjpeg-turbo license file
  281. libjpeg-turbo Licenses
  282. ======================
  283. libjpeg-turbo is covered by three compatible BSD-style open source licenses:
  284. - The IJG (Independent JPEG Group) License, which is listed in
  285. [README.ijg](README.ijg)
  286. This license applies to the libjpeg API library and associated programs
  287. (any code inherited from libjpeg, and any modifications to that code.)
  288. - The Modified (3-clause) BSD License, which is listed below
  289. This license covers the TurboJPEG API library and associated programs, as
  290. well as the build system.
  291. - The [zlib License](https://opensource.org/licenses/Zlib)
  292. This license is a subset of the other two, and it covers the libjpeg-turbo
  293. SIMD extensions.
  294. Complying with the libjpeg-turbo Licenses
  295. =========================================
  296. This section provides a roll-up of the libjpeg-turbo licensing terms, to the
  297. best of our understanding.
  298. 1. If you are distributing a modified version of the libjpeg-turbo source,
  299. then:
  300. 1. You cannot alter or remove any existing copyright or license notices
  301. from the source.
  302. **Origin**
  303. - Clause 1 of the IJG License
  304. - Clause 1 of the Modified BSD License
  305. - Clauses 1 and 3 of the zlib License
  306. 2. You must add your own copyright notice to the header of each source
  307. file you modified, so others can tell that you modified that file (if
  308. there is not an existing copyright header in that file, then you can
  309. simply add a notice stating that you modified the file.)
  310. **Origin**
  311. - Clause 1 of the IJG License
  312. - Clause 2 of the zlib License
  313. 3. You must include the IJG README file, and you must not alter any of the
  314. copyright or license text in that file.
  315. **Origin**
  316. - Clause 1 of the IJG License
  317. 2. If you are distributing only libjpeg-turbo binaries without the source, or
  318. if you are distributing an application that statically links with
  319. libjpeg-turbo, then:
  320. 1. Your product documentation must include a message stating:
  321. This software is based in part on the work of the Independent JPEG
  322. Group.
  323. **Origin**
  324. - Clause 2 of the IJG license
  325. 2. If your binary distribution includes or uses the TurboJPEG API, then
  326. your product documentation must include the text of the Modified BSD
  327. License (see below.)
  328. **Origin**
  329. - Clause 2 of the Modified BSD License
  330. 3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
  331. contributors thereof in advertising, publicity, etc.
  332. **Origin**
  333. - IJG License
  334. - Clause 3 of the Modified BSD License
  335. 4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
  336. free of defects, nor do we accept any liability for undesirable
  337. consequences resulting from your use of the software.
  338. **Origin**
  339. - IJG License
  340. - Modified BSD License
  341. - zlib License
  342. The Modified (3-clause) BSD License
  343. ===================================
  344. Copyright (C)2009-2021 D. R. Commander. All Rights Reserved.
  345. Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
  346. Redistribution and use in source and binary forms, with or without
  347. modification, are permitted provided that the following conditions are met:
  348. - Redistributions of source code must retain the above copyright notice,
  349. this list of conditions and the following disclaimer.
  350. - Redistributions in binary form must reproduce the above copyright notice,
  351. this list of conditions and the following disclaimer in the documentation
  352. and/or other materials provided with the distribution.
  353. - Neither the name of the libjpeg-turbo Project nor the names of its
  354. contributors may be used to endorse or promote products derived from this
  355. software without specific prior written permission.
  356. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
  357. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  358. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  359. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
  360. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  361. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  362. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  363. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  364. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  365. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  366. POSSIBILITY OF SUCH DAMAGE.
  367. Why Three Licenses?
  368. ===================
  369. The zlib License could have been used instead of the Modified (3-clause) BSD
  370. License, and since the IJG License effectively subsumes the distribution
  371. conditions of the zlib License, this would have effectively placed
  372. libjpeg-turbo binary distributions under the IJG License. However, the IJG
  373. License specifically refers to the Independent JPEG Group and does not extend
  374. attribution and endorsement protections to other entities. Thus, it was
  375. desirable to choose a license that granted us the same protections for new code
  376. that were granted to the IJG for code derived from their software.
  377. # END libjpeg-turbo license file
  378. # BEGIN IJG (Independent JPEG Group) legal information
  379. LEGAL ISSUES
  380. ============
  381. In plain English:
  382. 1. We don't promise that this software works. (But if you find any bugs,
  383. please let us know!)
  384. 2. You can use this software for whatever you want. You don't have to pay us.
  385. 3. You may not pretend that you wrote this software. If you use it in a
  386. program, you must acknowledge somewhere in your documentation that
  387. you've used the IJG code.
  388. In legalese:
  389. The authors make NO WARRANTY or representation, either express or implied,
  390. with respect to this software, its quality, accuracy, merchantability, or
  391. fitness for a particular purpose. This software is provided "AS IS", and you,
  392. its user, assume the entire risk as to its quality and accuracy.
  393. This software is copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding.
  394. All Rights Reserved except as specified below.
  395. Permission is hereby granted to use, copy, modify, and distribute this
  396. software (or portions thereof) for any purpose, without fee, subject to these
  397. conditions:
  398. (1) If any part of the source code for this software is distributed, then this
  399. README file must be included, with this copyright and no-warranty notice
  400. unaltered; and any additions, deletions, or changes to the original files
  401. must be clearly indicated in accompanying documentation.
  402. (2) If only executable code is distributed, then the accompanying
  403. documentation must state that "this software is based in part on the work of
  404. the Independent JPEG Group".
  405. (3) Permission for use of this software is granted only if the user accepts
  406. full responsibility for any undesirable consequences; the authors accept
  407. NO LIABILITY for damages of any kind.
  408. These conditions apply to any software derived from or based on the IJG code,
  409. not just to the unmodified library. If you use our work, you ought to
  410. acknowledge us.
  411. Permission is NOT granted for the use of any IJG author's name or company name
  412. in advertising or publicity relating to this software or products derived from
  413. it. This software may be referred to only as "the Independent JPEG Group's
  414. software".
  415. We specifically permit and encourage the use of this software as the basis of
  416. commercial products, provided that all warranty or liability claims are
  417. assumed by the product vendor.
  418. # END IJG (Independent JPEG Group) legal information
  419. # BEGIN ICU (International Components for Unicode) license file
  420. COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later)
  421. Copyright © 1991-2020 Unicode, Inc. All rights reserved.
  422. Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
  423. Permission is hereby granted, free of charge, to any person obtaining
  424. a copy of the Unicode data files and any associated documentation
  425. (the "Data Files") or Unicode software and any associated documentation
  426. (the "Software") to deal in the Data Files or Software
  427. without restriction, including without limitation the rights to use,
  428. copy, modify, merge, publish, distribute, and/or sell copies of
  429. the Data Files or Software, and to permit persons to whom the Data Files
  430. or Software are furnished to do so, provided that either
  431. (a) this copyright and permission notice appear with all copies
  432. of the Data Files or Software, or
  433. (b) this copyright and permission notice appear in associated
  434. Documentation.
  435. THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
  436. ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  437. WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  438. NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  439. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
  440. NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
  441. DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  442. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  443. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  444. PERFORMANCE OF THE DATA FILES OR SOFTWARE.
  445. Except as contained in this notice, the name of a copyright holder
  446. shall not be used in advertising or otherwise to promote the sale,
  447. use or other dealings in these Data Files or Software without prior
  448. written authorization of the copyright holder.
  449. ---------------------
  450. Third-Party Software Licenses
  451. This section contains third-party software notices and/or additional
  452. terms for licensed third-party software components included within ICU
  453. libraries.
  454. 1. ICU License - ICU 1.8.1 to ICU 57.1
  455. COPYRIGHT AND PERMISSION NOTICE
  456. Copyright (c) 1995-2016 International Business Machines Corporation and others
  457. All rights reserved.
  458. Permission is hereby granted, free of charge, to any person obtaining
  459. a copy of this software and associated documentation files (the
  460. "Software"), to deal in the Software without restriction, including
  461. without limitation the rights to use, copy, modify, merge, publish,
  462. distribute, and/or sell copies of the Software, and to permit persons
  463. to whom the Software is furnished to do so, provided that the above
  464. copyright notice(s) and this permission notice appear in all copies of
  465. the Software and that both the above copyright notice(s) and this
  466. permission notice appear in supporting documentation.
  467. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  468. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  469. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
  470. OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  471. HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
  472. SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
  473. RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  474. CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  475. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  476. Except as contained in this notice, the name of a copyright holder
  477. shall not be used in advertising or otherwise to promote the sale, use
  478. or other dealings in this Software without prior written authorization
  479. of the copyright holder.
  480. All trademarks and registered trademarks mentioned herein are the
  481. property of their respective owners.
  482. 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
  483. # The Google Chrome software developed by Google is licensed under
  484. # the BSD license. Other software included in this distribution is
  485. # provided under other licenses, as set forth below.
  486. #
  487. # The BSD License
  488. # http://opensource.org/licenses/bsd-license.php
  489. # Copyright (C) 2006-2008, Google Inc.
  490. #
  491. # All rights reserved.
  492. #
  493. # Redistribution and use in source and binary forms, with or without
  494. # modification, are permitted provided that the following conditions are met:
  495. #
  496. # Redistributions of source code must retain the above copyright notice,
  497. # this list of conditions and the following disclaimer.
  498. # Redistributions in binary form must reproduce the above
  499. # copyright notice, this list of conditions and the following
  500. # disclaimer in the documentation and/or other materials provided with
  501. # the distribution.
  502. # Neither the name of Google Inc. nor the names of its
  503. # contributors may be used to endorse or promote products derived from
  504. # this software without specific prior written permission.
  505. #
  506. #
  507. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  508. # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  509. # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  510. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  511. # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  512. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  513. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  514. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  515. # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  516. # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  517. # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  518. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  519. #
  520. #
  521. # The word list in cjdict.txt are generated by combining three word lists
  522. # listed below with further processing for compound word breaking. The
  523. # frequency is generated with an iterative training against Google web
  524. # corpora.
  525. #
  526. # * Libtabe (Chinese)
  527. # - https://sourceforge.net/project/?group_id=1519
  528. # - Its license terms and conditions are shown below.
  529. #
  530. # * IPADIC (Japanese)
  531. # - http://chasen.aist-nara.ac.jp/chasen/distribution.html
  532. # - Its license terms and conditions are shown below.
  533. #
  534. # ---------COPYING.libtabe ---- BEGIN--------------------
  535. #
  536. # /*
  537. # * Copyright (c) 1999 TaBE Project.
  538. # * Copyright (c) 1999 Pai-Hsiang Hsiao.
  539. # * All rights reserved.
  540. # *
  541. # * Redistribution and use in source and binary forms, with or without
  542. # * modification, are permitted provided that the following conditions
  543. # * are met:
  544. # *
  545. # * . Redistributions of source code must retain the above copyright
  546. # * notice, this list of conditions and the following disclaimer.
  547. # * . Redistributions in binary form must reproduce the above copyright
  548. # * notice, this list of conditions and the following disclaimer in
  549. # * the documentation and/or other materials provided with the
  550. # * distribution.
  551. # * . Neither the name of the TaBE Project nor the names of its
  552. # * contributors may be used to endorse or promote products derived
  553. # * from this software without specific prior written permission.
  554. # *
  555. # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  556. # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  557. # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  558. # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  559. # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  560. # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  561. # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  562. # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  563. # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  564. # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  565. # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  566. # * OF THE POSSIBILITY OF SUCH DAMAGE.
  567. # */
  568. #
  569. # /*
  570. # * Copyright (c) 1999 Computer Systems and Communication Lab,
  571. # * Institute of Information Science, Academia
  572. # * Sinica. All rights reserved.
  573. # *
  574. # * Redistribution and use in source and binary forms, with or without
  575. # * modification, are permitted provided that the following conditions
  576. # * are met:
  577. # *
  578. # * . Redistributions of source code must retain the above copyright
  579. # * notice, this list of conditions and the following disclaimer.
  580. # * . Redistributions in binary form must reproduce the above copyright
  581. # * notice, this list of conditions and the following disclaimer in
  582. # * the documentation and/or other materials provided with the
  583. # * distribution.
  584. # * . Neither the name of the Computer Systems and Communication Lab
  585. # * nor the names of its contributors may be used to endorse or
  586. # * promote products derived from this software without specific
  587. # * prior written permission.
  588. # *
  589. # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  590. # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  591. # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  592. # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  593. # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  594. # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  595. # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  596. # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  597. # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  598. # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  599. # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  600. # * OF THE POSSIBILITY OF SUCH DAMAGE.
  601. # */
  602. #
  603. # Copyright 1996 Chih-Hao Tsai @ Beckman Institute,
  604. # University of Illinois
  605. # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4
  606. #
  607. # ---------------COPYING.libtabe-----END--------------------------------
  608. #
  609. #
  610. # ---------------COPYING.ipadic-----BEGIN-------------------------------
  611. #
  612. # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
  613. # and Technology. All Rights Reserved.
  614. #
  615. # Use, reproduction, and distribution of this software is permitted.
  616. # Any copy of this software, whether in its original form or modified,
  617. # must include both the above copyright notice and the following
  618. # paragraphs.
  619. #
  620. # Nara Institute of Science and Technology (NAIST),
  621. # the copyright holders, disclaims all warranties with regard to this
  622. # software, including all implied warranties of merchantability and
  623. # fitness, in no event shall NAIST be liable for
  624. # any special, indirect or consequential damages or any damages
  625. # whatsoever resulting from loss of use, data or profits, whether in an
  626. # action of contract, negligence or other tortuous action, arising out
  627. # of or in connection with the use or performance of this software.
  628. #
  629. # A large portion of the dictionary entries
  630. # originate from ICOT Free Software. The following conditions for ICOT
  631. # Free Software applies to the current dictionary as well.
  632. #
  633. # Each User may also freely distribute the Program, whether in its
  634. # original form or modified, to any third party or parties, PROVIDED
  635. # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
  636. # on, or be attached to, the Program, which is distributed substantially
  637. # in the same form as set out herein and that such intended
  638. # distribution, if actually made, will neither violate or otherwise
  639. # contravene any of the laws and regulations of the countries having
  640. # jurisdiction over the User or the intended distribution itself.
  641. #
  642. # NO WARRANTY
  643. #
  644. # The program was produced on an experimental basis in the course of the
  645. # research and development conducted during the project and is provided
  646. # to users as so produced on an experimental basis. Accordingly, the
  647. # program is provided without any warranty whatsoever, whether express,
  648. # implied, statutory or otherwise. The term "warranty" used herein
  649. # includes, but is not limited to, any warranty of the quality,
  650. # performance, merchantability and fitness for a particular purpose of
  651. # the program and the nonexistence of any infringement or violation of
  652. # any right of any third party.
  653. #
  654. # Each user of the program will agree and understand, and be deemed to
  655. # have agreed and understood, that there is no warranty whatsoever for
  656. # the program and, accordingly, the entire risk arising from or
  657. # otherwise connected with the program is assumed by the user.
  658. #
  659. # Therefore, neither ICOT, the copyright holder, or any other
  660. # organization that participated in or was otherwise related to the
  661. # development of the program and their respective officials, directors,
  662. # officers and other employees shall be held liable for any and all
  663. # damages, including, without limitation, general, special, incidental
  664. # and consequential damages, arising out of or otherwise in connection
  665. # with the use or inability to use the program or any product, material
  666. # or result produced or otherwise obtained by using the program,
  667. # regardless of whether they have been advised of, or otherwise had
  668. # knowledge of, the possibility of such damages at any time during the
  669. # project or thereafter. Each user will be deemed to have agreed to the
  670. # foregoing by his or her commencement of use of the program. The term
  671. # "use" as used herein includes, but is not limited to, the use,
  672. # modification, copying and distribution of the program and the
  673. # production of secondary products from the program.
  674. #
  675. # In the case where the program, whether in its original form or
  676. # modified, was distributed or delivered to or received by a user from
  677. # any person, organization or entity other than ICOT, unless it makes or
  678. # grants independently of ICOT any specific warranty to the user in
  679. # writing, such person, organization or entity, will also be exempted
  680. # from and not be held liable to the user for any such damages as noted
  681. # above as far as the program is concerned.
  682. #
  683. # ---------------COPYING.ipadic-----END----------------------------------
  684. 3. Lao Word Break Dictionary Data (laodict.txt)
  685. # Copyright (C) 2016 and later: Unicode, Inc. and others.
  686. # License & terms of use: http://www.unicode.org/copyright.html
  687. # Copyright (c) 2015 International Business Machines Corporation
  688. # and others. All Rights Reserved.
  689. #
  690. # Project: https://github.com/rober42539/lao-dictionary
  691. # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt
  692. # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt
  693. # (copied below)
  694. #
  695. # This file is derived from the above dictionary version of Nov 22, 2020
  696. # ----------------------------------------------------------------------
  697. # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
  698. # All rights reserved.
  699. #
  700. # Redistribution and use in source and binary forms, with or without
  701. # modification, are permitted provided that the following conditions are met:
  702. #
  703. # Redistributions of source code must retain the above copyright notice, this
  704. # list of conditions and the following disclaimer. Redistributions in binary
  705. # form must reproduce the above copyright notice, this list of conditions and
  706. # the following disclaimer in the documentation and/or other materials
  707. # provided with the distribution.
  708. #
  709. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  710. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  711. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  712. # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  713. # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  714. # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  715. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  716. # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  717. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  718. # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  719. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  720. # OF THE POSSIBILITY OF SUCH DAMAGE.
  721. # --------------------------------------------------------------------------
  722. 4. Burmese Word Break Dictionary Data (burmesedict.txt)
  723. # Copyright (c) 2014 International Business Machines Corporation
  724. # and others. All Rights Reserved.
  725. #
  726. # This list is part of a project hosted at:
  727. # github.com/kanyawtech/myanmar-karen-word-lists
  728. #
  729. # --------------------------------------------------------------------------
  730. # Copyright (c) 2013, LeRoy Benjamin Sharon
  731. # All rights reserved.
  732. #
  733. # Redistribution and use in source and binary forms, with or without
  734. # modification, are permitted provided that the following conditions
  735. # are met: Redistributions of source code must retain the above
  736. # copyright notice, this list of conditions and the following
  737. # disclaimer. Redistributions in binary form must reproduce the
  738. # above copyright notice, this list of conditions and the following
  739. # disclaimer in the documentation and/or other materials provided
  740. # with the distribution.
  741. #
  742. # Neither the name Myanmar Karen Word Lists, nor the names of its
  743. # contributors may be used to endorse or promote products derived
  744. # from this software without specific prior written permission.
  745. #
  746. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  747. # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  748. # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  749. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  750. # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
  751. # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  752. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  753. # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  754. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  755. # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  756. # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  757. # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  758. # SUCH DAMAGE.
  759. # --------------------------------------------------------------------------
  760. 5. Time Zone Database
  761. ICU uses the public domain data and code derived from Time Zone
  762. Database for its time zone support. The ownership of the TZ database
  763. is explained in BCP 175: Procedure for Maintaining the Time Zone
  764. Database section 7.
  765. # 7. Database Ownership
  766. #
  767. # The TZ database itself is not an IETF Contribution or an IETF
  768. # document. Rather it is a pre-existing and regularly updated work
  769. # that is in the public domain, and is intended to remain in the
  770. # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do
  771. # not apply to the TZ Database or contributions that individuals make
  772. # to it. Should any claims be made and substantiated against the TZ
  773. # Database, the organization that is providing the IANA
  774. # Considerations defined in this RFC, under the memorandum of
  775. # understanding with the IETF, currently ICANN, may act in accordance
  776. # with all competent court orders. No ownership claims will be made
  777. # by ICANN or the IETF Trust on the database or the code. Any person
  778. # making a contribution to the database or code waives all rights to
  779. # future claims in that contribution or in the TZ Database.
  780. 6. Google double-conversion
  781. Copyright 2006-2011, the V8 project authors. All rights reserved.
  782. Redistribution and use in source and binary forms, with or without
  783. modification, are permitted provided that the following conditions are
  784. met:
  785. * Redistributions of source code must retain the above copyright
  786. notice, this list of conditions and the following disclaimer.
  787. * Redistributions in binary form must reproduce the above
  788. copyright notice, this list of conditions and the following
  789. disclaimer in the documentation and/or other materials provided
  790. with the distribution.
  791. * Neither the name of Google Inc. nor the names of its
  792. contributors may be used to endorse or promote products derived
  793. from this software without specific prior written permission.
  794. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  795. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  796. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  797. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  798. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  799. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  800. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  801. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  802. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  803. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  804. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  805. # END ICU (International Components for Unicode) license file