LCOV - code coverage report
Current view: top level - lib - licenses.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 0 30 0.0 %
Date: 2026-07-15 19:28:30 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:flutter/foundation.dart';
       2             : 
       3           0 : Stream<LicenseEntry> licenses() async* {
       4             :   /// Open Privacy Code
       5           0 :   yield LicenseEntryWithLineBreaks(
       6           0 :     ["cwtch", "tapir", "connectivity", "log"],
       7             :     '''MIT License
       8             :   
       9             :    Copyright (c) 2018-2023 Open Privacy Research Society
      10             :   
      11             :   Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files ("the Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
      12             :   
      13             :   The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
      14             :   
      15             :   THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.''',
      16             :   );
      17             : 
      18             :   /// Ristretto Code
      19           0 :   yield LicenseEntryWithLineBreaks(
      20           0 :     ["ristretto255"],
      21             :     '''Copyright (c) 2009 The Go Authors. All rights reserved.
      22             : Copyright (c) 2017 George Tankersley. All rights reserved.
      23             : Copyright (c) 2019 Henry de Valence. All rights reserved.
      24             : 
      25             : Redistribution and use in source and binary forms, with or without
      26             : modification, are permitted provided that the following conditions are
      27             : met:
      28             : 
      29             :    * Redistributions of source code must retain the above copyright
      30             : notice, this list of conditions and the following disclaimer.
      31             :    * Redistributions in binary form must reproduce the above
      32             : copyright notice, this list of conditions and the following disclaimer
      33             : in the documentation and/or other materials provided with the
      34             : distribution.
      35             :    * Neither the name of Google Inc. nor the names of its
      36             : contributors may be used to endorse or promote products derived from
      37             : this software without specific prior written permission.
      38             : 
      39             : THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
      40             : "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
      41             : LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
      42             : A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
      43             : OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
      44             : SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
      45             : LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
      46             : DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      47             : THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      48             : (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
      49             : OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.''',
      50             :   );
      51             : 
      52             :   /// Package pretty provides pretty-printing for Go values. (via Cwtch)
      53           0 :   yield LicenseEntryWithLineBreaks(
      54           0 :     ["pretty"],
      55             :     '''Copyright 2012 Keith Rarick
      56             : 
      57             : Permission is hereby granted, free of charge, to any person obtaining a copy
      58             : of this software and associated documentation files (the "Software"), to deal
      59             : in the Software without restriction, including without limitation the rights
      60             : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      61             : copies of the Software, and to permit persons to whom the Software is
      62             : furnished to do so, subject to the following conditions:
      63             : 
      64             : The above copyright notice and this permission notice shall be included in
      65             : all copies or substantial portions of the Software.
      66             : 
      67             : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      68             : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      69             : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      70             : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      71             : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      72             : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      73             : THE SOFTWARE.''',
      74             :   );
      75             : 
      76           0 :   yield LicenseEntryWithLineBreaks(
      77           0 :     ["pidusage"],
      78             :     '''MIT License
      79             : 
      80             : Copyright (c) 2017 David 大伟
      81             : 
      82             : Permission is hereby granted, free of charge, to any person obtaining a copy
      83             : of this software and associated documentation files (the "Software"), to deal
      84             : in the Software without restriction, including without limitation the rights
      85             : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      86             : copies of the Software, and to permit persons to whom the Software is
      87             : furnished to do so, subject to the following conditions:
      88             : 
      89             : The above copyright notice and this permission notice shall be included in all
      90             : copies or substantial portions of the Software.
      91             : 
      92             : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      93             : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      94             : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      95             : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      96             : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      97             : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
      98             : SOFTWARE.''',
      99             :   );
     100             : 
     101             :   /// Go Standard Lib
     102           0 :   yield LicenseEntryWithLineBreaks(
     103           0 :     ["crypto, net"],
     104             :     '''Copyright (c) 2009 The Go Authors. All rights reserved.
     105             : 
     106             : Redistribution and use in source and binary forms, with or without
     107             : modification, are permitted provided that the following conditions are
     108             : met:
     109             : 
     110             :    * Redistributions of source code must retain the above copyright
     111             : notice, this list of conditions and the following disclaimer.
     112             :    * Redistributions in binary form must reproduce the above
     113             : copyright notice, this list of conditions and the following disclaimer
     114             : in the documentation and/or other materials provided with the
     115             : distribution.
     116             :    * Neither the name of Google Inc. nor the names of its
     117             : contributors may be used to endorse or promote products derived from
     118             : this software without specific prior written permission.
     119             : 
     120             : THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     121             : "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     122             : LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     123             : A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     124             : OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     125             : SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     126             : LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     127             : DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     128             : THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     129             : (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     130             : OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.''',
     131             :   );
     132             : 
     133           0 :   yield LicenseEntryWithLineBreaks(["flaticons"], "Icons made by Freepik (https://www.freepik.com) from Flaticon (www.flaticon.com)");
     134             : 
     135           0 :   yield LicenseEntryWithLineBreaks(
     136           0 :     ["flutter_linkify", "linkify"],
     137             :     '''MIT License
     138             : 
     139             : Copyright (c) 2019/2020 Charles-William Crete
     140             : 
     141             : Permission is hereby granted, free of charge, to any person obtaining a copy
     142             : of this software and associated documentation files (the "Software"), to deal
     143             : in the Software without restriction, including without limitation the rights
     144             : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     145             : copies of the Software, and to permit persons to whom the Software is
     146             : furnished to do so, subject to the following conditions:
     147             : 
     148             : The above copyright notice and this permission notice shall be included in all
     149             : copies or substantial portions of the Software.
     150             : 
     151             : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     152             : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     153             : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     154             : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     155             : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     156             : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
     157             : SOFTWARE.''',
     158             :   );
     159             : 
     160           0 :   yield LicenseEntryWithLineBreaks(
     161           0 :     ["connectivity_plus", "connectivity_plus_platform_interface"],
     162             :     '''
     163             :   Copyright 2017 The Chromium Authors. All rights reserved.
     164             : 
     165             :   Redistribution and use in source and binary forms, with or without
     166             :   modification, are permitted provided that the following conditions are
     167             :   met:
     168             : 
     169             :   * Redistributions of source code must retain the above copyright
     170             :   notice, this list of conditions and the following disclaimer.
     171             :   * Redistributions in binary form must reproduce the above
     172             :   copyright notice, this list of conditions and the following disclaimer
     173             :   in the documentation and/or other materials provided with the
     174             :   distribution.
     175             :   * Neither the name of Google Inc. nor the names of its
     176             :   contributors may be used to endorse or promote products derived from
     177             :   this software without specific prior written permission.
     178             : 
     179             :   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     180             :   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     181             :   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     182             :   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     183             :   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     184             :   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     185             :   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     186             :   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     187             :   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     188             :   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     189             :   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.''',
     190             :   );
     191             : 
     192           0 :   yield LicenseEntryWithLineBreaks(
     193           0 :     ["connectivity_plus"],
     194             :     '''
     195             :   * Copyright (c) 2013-2020, The PurpleI2P Project
     196             :   *
     197             :   * This file is part of Purple i2pd project and licensed under BSD3
     198             :   *
     199             :   * See full license text in LICENSE file at top of project tree''',
     200             :   );
     201             : 
     202           0 :   yield LicenseEntryWithLineBreaks(
     203           0 :     ["nm"],
     204             :     '''Mozilla Public License Version 2.0
     205             : ==================================
     206             : 
     207             : 1. Definitions
     208             : --------------
     209             : 
     210             : 1.1. "Contributor"
     211             :     means each individual or legal entity that creates, contributes to
     212             :     the creation of, or owns Covered Software.
     213             : 
     214             : 1.2. "Contributor Version"
     215             :     means the combination of the Contributions of others (if any) used
     216             :     by a Contributor and that particular Contributor's Contribution.
     217             : 
     218             : 1.3. "Contribution"
     219             :     means Covered Software of a particular Contributor.
     220             : 
     221             : 1.4. "Covered Software"
     222             :     means Source Code Form to which the initial Contributor has attached
     223             :     the notice in Exhibit A, the Executable Form of such Source Code
     224             :     Form, and Modifications of such Source Code Form, in each case
     225             :     including portions thereof.
     226             : 
     227             : 1.5. "Incompatible With Secondary Licenses"
     228             :     means
     229             : 
     230             :     (a) that the initial Contributor has attached the notice described
     231             :         in Exhibit B to the Covered Software; or
     232             : 
     233             :     (b) that the Covered Software was made available under the terms of
     234             :         version 1.1 or earlier of the License, but not also under the
     235             :         terms of a Secondary License.
     236             : 
     237             : 1.6. "Executable Form"
     238             :     means any form of the work other than Source Code Form.
     239             : 
     240             : 1.7. "Larger Work"
     241             :     means a work that combines Covered Software with other material, in 
     242             :     a separate file or files, that is not Covered Software.
     243             : 
     244             : 1.8. "License"
     245             :     means this document.
     246             : 
     247             : 1.9. "Licensable"
     248             :     means having the right to grant, to the maximum extent possible,
     249             :     whether at the time of the initial grant or subsequently, any and
     250             :     all of the rights conveyed by this License.
     251             : 
     252             : 1.10. "Modifications"
     253             :     means any of the following:
     254             : 
     255             :     (a) any file in Source Code Form that results from an addition to,
     256             :         deletion from, or modification of the contents of Covered
     257             :         Software; or
     258             : 
     259             :     (b) any new file in Source Code Form that contains any Covered
     260             :         Software.
     261             : 
     262             : 1.11. "Patent Claims" of a Contributor
     263             :     means any patent claim(s), including without limitation, method,
     264             :     process, and apparatus claims, in any patent Licensable by such
     265             :     Contributor that would be infringed, but for the grant of the
     266             :     License, by the making, using, selling, offering for sale, having
     267             :     made, import, or transfer of either its Contributions or its
     268             :     Contributor Version.
     269             : 
     270             : 1.12. "Secondary License"
     271             :     means either the GNU General Public License, Version 2.0, the GNU
     272             :     Lesser General Public License, Version 2.1, the GNU Affero General
     273             :     Public License, Version 3.0, or any later versions of those
     274             :     licenses.
     275             : 
     276             : 1.13. "Source Code Form"
     277             :     means the form of the work preferred for making modifications.
     278             : 
     279             : 1.14. "You" (or "Your")
     280             :     means an individual or a legal entity exercising rights under this
     281             :     License. For legal entities, "You" includes any entity that
     282             :     controls, is controlled by, or is under common control with You. For
     283             :     purposes of this definition, "control" means (a) the power, direct
     284             :     or indirect, to cause the direction or management of such entity,
     285             :     whether by contract or otherwise, or (b) ownership of more than
     286             :     fifty percent (50%) of the outstanding shares or beneficial
     287             :     ownership of such entity.
     288             : 
     289             : 2. License Grants and Conditions
     290             : --------------------------------
     291             : 
     292             : 2.1. Grants
     293             : 
     294             : Each Contributor hereby grants You a world-wide, royalty-free,
     295             : non-exclusive license:
     296             : 
     297             : (a) under intellectual property rights (other than patent or trademark)
     298             :     Licensable by such Contributor to use, reproduce, make available,
     299             :     modify, display, perform, distribute, and otherwise exploit its
     300             :     Contributions, either on an unmodified basis, with Modifications, or
     301             :     as part of a Larger Work; and
     302             : 
     303             : (b) under Patent Claims of such Contributor to make, use, sell, offer
     304             :     for sale, have made, import, and otherwise transfer either its
     305             :     Contributions or its Contributor Version.
     306             : 
     307             : 2.2. Effective Date
     308             : 
     309             : The licenses granted in Section 2.1 with respect to any Contribution
     310             : become effective for each Contribution on the date the Contributor first
     311             : distributes such Contribution.
     312             : 
     313             : 2.3. Limitations on Grant Scope
     314             : 
     315             : The licenses granted in this Section 2 are the only rights granted under
     316             : this License. No additional rights or licenses will be implied from the
     317             : distribution or licensing of Covered Software under this License.
     318             : Notwithstanding Section 2.1(b) above, no patent license is granted by a
     319             : Contributor:
     320             : 
     321             : (a) for any code that a Contributor has removed from Covered Software;
     322             :     or
     323             : 
     324             : (b) for infringements caused by: (i) Your and any other third party's
     325             :     modifications of Covered Software, or (ii) the combination of its
     326             :     Contributions with other software (except as part of its Contributor
     327             :     Version); or
     328             : 
     329             : (c) under Patent Claims infringed by Covered Software in the absence of
     330             :     its Contributions.
     331             : 
     332             : This License does not grant any rights in the trademarks, service marks,
     333             : or logos of any Contributor (except as may be necessary to comply with
     334             : the notice requirements in Section 3.4).
     335             : 
     336             : 2.4. Subsequent Licenses
     337             : 
     338             : No Contributor makes additional grants as a result of Your choice to
     339             : distribute the Covered Software under a subsequent version of this
     340             : License (see Section 10.2) or under the terms of a Secondary License (if
     341             : permitted under the terms of Section 3.3).
     342             : 
     343             : 2.5. Representation
     344             : 
     345             : Each Contributor represents that the Contributor believes its
     346             : Contributions are its original creation(s) or it has sufficient rights
     347             : to grant the rights to its Contributions conveyed by this License.
     348             : 
     349             : 2.6. Fair Use
     350             : 
     351             : This License is not intended to limit any rights You have under
     352             : applicable copyright doctrines of fair use, fair dealing, or other
     353             : equivalents.
     354             : 
     355             : 2.7. Conditions
     356             : 
     357             : Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
     358             : in Section 2.1.
     359             : 
     360             : 3. Responsibilities
     361             : -------------------
     362             : 
     363             : 3.1. Distribution of Source Form
     364             : 
     365             : All distribution of Covered Software in Source Code Form, including any
     366             : Modifications that You create or to which You contribute, must be under
     367             : the terms of this License. You must inform recipients that the Source
     368             : Code Form of the Covered Software is governed by the terms of this
     369             : License, and how they can obtain a copy of this License. You may not
     370             : attempt to alter or restrict the recipients' rights in the Source Code
     371             : Form.
     372             : 
     373             : 3.2. Distribution of Executable Form
     374             : 
     375             : If You distribute Covered Software in Executable Form then:
     376             : 
     377             : (a) such Covered Software must also be made available in Source Code
     378             :     Form, as described in Section 3.1, and You must inform recipients of
     379             :     the Executable Form how they can obtain a copy of such Source Code
     380             :     Form by reasonable means in a timely manner, at a charge no more
     381             :     than the cost of distribution to the recipient; and
     382             : 
     383             : (b) You may distribute such Executable Form under the terms of this
     384             :     License, or sublicense it under different terms, provided that the
     385             :     license for the Executable Form does not attempt to limit or alter
     386             :     the recipients' rights in the Source Code Form under this License.
     387             : 
     388             : 3.3. Distribution of a Larger Work
     389             : 
     390             : You may create and distribute a Larger Work under terms of Your choice,
     391             : provided that You also comply with the requirements of this License for
     392             : the Covered Software. If the Larger Work is a combination of Covered
     393             : Software with a work governed by one or more Secondary Licenses, and the
     394             : Covered Software is not Incompatible With Secondary Licenses, this
     395             : License permits You to additionally distribute such Covered Software
     396             : under the terms of such Secondary License(s), so that the recipient of
     397             : the Larger Work may, at their option, further distribute the Covered
     398             : Software under the terms of either this License or such Secondary
     399             : License(s).
     400             : 
     401             : 3.4. Notices
     402             : 
     403             : You may not remove or alter the substance of any license notices
     404             : (including copyright notices, patent notices, disclaimers of warranty,
     405             : or limitations of liability) contained within the Source Code Form of
     406             : the Covered Software, except that You may alter any license notices to
     407             : the extent required to remedy known factual inaccuracies.
     408             : 
     409             : 3.5. Application of Additional Terms
     410             : 
     411             : You may choose to offer, and to charge a fee for, warranty, support,
     412             : indemnity or liability obligations to one or more recipients of Covered
     413             : Software. However, You may do so only on Your own behalf, and not on
     414             : behalf of any Contributor. You must make it absolutely clear that any
     415             : such warranty, support, indemnity, or liability obligation is offered by
     416             : You alone, and You hereby agree to indemnify every Contributor for any
     417             : liability incurred by such Contributor as a result of warranty, support,
     418             : indemnity or liability terms You offer. You may include additional
     419             : disclaimers of warranty and limitations of liability specific to any
     420             : jurisdiction.
     421             : 
     422             : 4. Inability to Comply Due to Statute or Regulation
     423             : ---------------------------------------------------
     424             : 
     425             : If it is impossible for You to comply with any of the terms of this
     426             : License with respect to some or all of the Covered Software due to
     427             : statute, judicial order, or regulation then You must: (a) comply with
     428             : the terms of this License to the maximum extent possible; and (b)
     429             : describe the limitations and the code they affect. Such description must
     430             : be placed in a text file included with all distributions of the Covered
     431             : Software under this License. Except to the extent prohibited by statute
     432             : or regulation, such description must be sufficiently detailed for a
     433             : recipient of ordinary skill to be able to understand it.
     434             : 
     435             : 5. Termination
     436             : --------------
     437             : 
     438             : 5.1. The rights granted under this License will terminate automatically
     439             : if You fail to comply with any of its terms. However, if You become
     440             : compliant, then the rights granted under this License from a particular
     441             : Contributor are reinstated (a) provisionally, unless and until such
     442             : Contributor explicitly and finally terminates Your grants, and (b) on an
     443             : ongoing basis, if such Contributor fails to notify You of the
     444             : non-compliance by some reasonable means prior to 60 days after You have
     445             : come back into compliance. Moreover, Your grants from a particular
     446             : Contributor are reinstated on an ongoing basis if such Contributor
     447             : notifies You of the non-compliance by some reasonable means, this is the
     448             : first time You have received notice of non-compliance with this License
     449             : from such Contributor, and You become compliant prior to 30 days after
     450             : Your receipt of the notice.
     451             : 
     452             : 5.2. If You initiate litigation against any entity by asserting a patent
     453             : infringement claim (excluding declaratory judgment actions,
     454             : counter-claims, and cross-claims) alleging that a Contributor Version
     455             : directly or indirectly infringes any patent, then the rights granted to
     456             : You by any and all Contributors for the Covered Software under Section
     457             : 2.1 of this License shall terminate.
     458             : 
     459             : 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
     460             : end user license agreements (excluding distributors and resellers) which
     461             : have been validly granted by You or Your distributors under this License
     462             : prior to termination shall survive termination.
     463             : 
     464             : ************************************************************************
     465             : *                                                                      *
     466             : *  6. Disclaimer of Warranty                                           *
     467             : *  -------------------------                                           *
     468             : *                                                                      *
     469             : *  Covered Software is provided under this License on an "as is"       *
     470             : *  basis, without warranty of any kind, either expressed, implied, or  *
     471             : *  statutory, including, without limitation, warranties that the       *
     472             : *  Covered Software is free of defects, merchantable, fit for a        *
     473             : *  particular purpose or non-infringing. The entire risk as to the     *
     474             : *  quality and performance of the Covered Software is with You.        *
     475             : *  Should any Covered Software prove defective in any respect, You     *
     476             : *  (not any Contributor) assume the cost of any necessary servicing,   *
     477             : *  repair, or correction. This disclaimer of warranty constitutes an   *
     478             : *  essential part of this License. No use of any Covered Software is   *
     479             : *  authorized under this License except under this disclaimer.         *
     480             : *                                                                      *
     481             : ************************************************************************
     482             : 
     483             : ************************************************************************
     484             : *                                                                      *
     485             : *  7. Limitation of Liability                                          *
     486             : *  --------------------------                                          *
     487             : *                                                                      *
     488             : *  Under no circumstances and under no legal theory, whether tort      *
     489             : *  (including negligence), contract, or otherwise, shall any           *
     490             : *  Contributor, or anyone who distributes Covered Software as          *
     491             : *  permitted above, be liable to You for any direct, indirect,         *
     492             : *  special, incidental, or consequential damages of any character      *
     493             : *  including, without limitation, damages for lost profits, loss of    *
     494             : *  goodwill, work stoppage, computer failure or malfunction, or any    *
     495             : *  and all other commercial damages or losses, even if such party      *
     496             : *  shall have been informed of the possibility of such damages. This   *
     497             : *  limitation of liability shall not apply to liability for death or   *
     498             : *  personal injury resulting from such party's negligence to the       *
     499             : *  extent applicable law prohibits such limitation. Some               *
     500             : *  jurisdictions do not allow the exclusion or limitation of           *
     501             : *  incidental or consequential damages, so this exclusion and          *
     502             : *  limitation may not apply to You.                                    *
     503             : *                                                                      *
     504             : ************************************************************************
     505             : 
     506             : 8. Litigation
     507             : -------------
     508             : 
     509             : Any litigation relating to this License may be brought only in the
     510             : courts of a jurisdiction where the defendant maintains its principal
     511             : place of business and such litigation shall be governed by laws of that
     512             : jurisdiction, without reference to its conflict-of-law provisions.
     513             : Nothing in this Section shall prevent a party's ability to bring
     514             : cross-claims or counter-claims.
     515             : 
     516             : 9. Miscellaneous
     517             : ----------------
     518             : 
     519             : This License represents the complete agreement concerning the subject
     520             : matter hereof. If any provision of this License is held to be
     521             : unenforceable, such provision shall be reformed only to the extent
     522             : necessary to make it enforceable. Any law or regulation which provides
     523             : that the language of a contract shall be construed against the drafter
     524             : shall not be used to construe this License against a Contributor.
     525             : 
     526             : 10. Versions of the License
     527             : ---------------------------
     528             : 
     529             : 10.1. New Versions
     530             : 
     531             : Mozilla Foundation is the license steward. Except as provided in Section
     532             : 10.3, no one other than the license steward has the right to modify or
     533             : publish new versions of this License. Each version will be given a
     534             : distinguishing version number.
     535             : 
     536             : 10.2. Effect of New Versions
     537             : 
     538             : You may distribute the Covered Software under the terms of the version
     539             : of the License under which You originally received the Covered Software,
     540             : or under the terms of any subsequent version published by the license
     541             : steward.
     542             : 
     543             : 10.3. Modified Versions
     544             : 
     545             : If you create software not governed by this License, and you want to
     546             : create a new license for such software, you may create and use a
     547             : modified version of this License if you rename the license and remove
     548             : any references to the name of the license steward (except to note that
     549             : such modified license differs from this License).
     550             : 
     551             : 10.4. Distributing Source Code Form that is Incompatible With Secondary
     552             : Licenses
     553             : 
     554             : If You choose to distribute Source Code Form that is Incompatible With
     555             : Secondary Licenses under the terms of this version of the License, the
     556             : notice described in Exhibit B of this License must be attached.
     557             : 
     558             : Exhibit A - Source Code Form License Notice
     559             : -------------------------------------------
     560             : 
     561             :   This Source Code Form is subject to the terms of the Mozilla Public
     562             :   License, v. 2.0. If a copy of the MPL was not distributed with this
     563             :   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     564             : 
     565             : If it is not possible or desirable to put the notice in a particular
     566             : file, then You may include the notice in a location (such as a LICENSE
     567             : file in a relevant directory) where a recipient would be likely to look
     568             : for such a notice.
     569             : 
     570             : You may add additional accurate notices of copyright ownership.
     571             : 
     572             : Exhibit B - "Incompatible With Secondary Licenses" Notice
     573             : ---------------------------------------------------------
     574             : 
     575             :   This Source Code Form is "Incompatible With Secondary Licenses", as
     576             :   defined by the Mozilla Public License, v. 2.0.''',
     577             :   );
     578             : 
     579           0 :   yield LicenseEntryWithLineBreaks(
     580           0 :     ["Inter Fonts"],
     581             :     '''
     582             :   Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter)
     583             : 
     584             : This Font Software is licensed under the SIL Open Font License, Version 1.1.
     585             : This license is copied below, and is also available with a FAQ at:
     586             : http://scripts.sil.org/OFL
     587             : 
     588             : 
     589             : -----------------------------------------------------------
     590             : SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
     591             : -----------------------------------------------------------
     592             : 
     593             : PREAMBLE
     594             : The goals of the Open Font License (OFL) are to stimulate worldwide
     595             : development of collaborative font projects, to support the font creation
     596             : efforts of academic and linguistic communities, and to provide a free and
     597             : open framework in which fonts may be shared and improved in partnership
     598             : with others.
     599             : 
     600             : The OFL allows the licensed fonts to be used, studied, modified and
     601             : redistributed freely as long as they are not sold by themselves. The
     602             : fonts, including any derivative works, can be bundled, embedded, 
     603             : redistributed and/or sold with any software provided that any reserved
     604             : names are not used by derivative works. The fonts and derivatives,
     605             : however, cannot be released under any other type of license. The
     606             : requirement for fonts to remain under this license does not apply
     607             : to any document created using the fonts or their derivatives.
     608             : 
     609             : DEFINITIONS
     610             : "Font Software" refers to the set of files released by the Copyright
     611             : Holder(s) under this license and clearly marked as such. This may
     612             : include source files, build scripts and documentation.
     613             : 
     614             : "Reserved Font Name" refers to any names specified as such after the
     615             : copyright statement(s).
     616             : 
     617             : "Original Version" refers to the collection of Font Software components as
     618             : distributed by the Copyright Holder(s).
     619             : 
     620             : "Modified Version" refers to any derivative made by adding to, deleting,
     621             : or substituting -- in part or in whole -- any of the components of the
     622             : Original Version, by changing formats or by porting the Font Software to a
     623             : new environment.
     624             : 
     625             : "Author" refers to any designer, engineer, programmer, technical
     626             : writer or other person who contributed to the Font Software.
     627             : 
     628             : PERMISSION & CONDITIONS
     629             : Permission is hereby granted, free of charge, to any person obtaining
     630             : a copy of the Font Software, to use, study, copy, merge, embed, modify,
     631             : redistribute, and sell modified and unmodified copies of the Font
     632             : Software, subject to the following conditions:
     633             : 
     634             : 1) Neither the Font Software nor any of its individual components,
     635             : in Original or Modified Versions, may be sold by itself.
     636             : 
     637             : 2) Original or Modified Versions of the Font Software may be bundled,
     638             : redistributed and/or sold with any software, provided that each copy
     639             : contains the above copyright notice and this license. These can be
     640             : included either as stand-alone text files, human-readable headers or
     641             : in the appropriate machine-readable metadata fields within text or
     642             : binary files as long as those fields can be easily viewed by the user.
     643             : 
     644             : 3) No Modified Version of the Font Software may use the Reserved Font
     645             : Name(s) unless explicit written permission is granted by the corresponding
     646             : Copyright Holder. This restriction only applies to the primary font name as
     647             : presented to the users.
     648             : 
     649             : 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
     650             : Software shall not be used to promote, endorse or advertise any
     651             : Modified Version, except to acknowledge the contribution(s) of the
     652             : Copyright Holder(s) and the Author(s) or with their explicit written
     653             : permission.
     654             : 
     655             : 5) The Font Software, modified or unmodified, in part or in whole,
     656             : must be distributed entirely under this license, and must not be
     657             : distributed under any other license. The requirement for fonts to
     658             : remain under this license does not apply to any document created
     659             : using the Font Software.
     660             : 
     661             : TERMINATION
     662             : This license becomes null and void if any of the above conditions are
     663             : not met.
     664             : 
     665             : DISCLAIMER
     666             : THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     667             : EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
     668             : MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
     669             : OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
     670             : COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
     671             : INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
     672             : DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     673             : FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
     674             : OTHER DEALINGS IN THE FONT SOFTWARE.
     675             : 
     676             :   ''',
     677             :   );
     678           0 :   yield LicenseEntryWithLineBreaks(
     679           0 :     ["Noto Color Emoji Fonts"],
     680             :     '''
     681             :   Copyright 2021 Google Inc. All Rights Reserved.
     682             : 
     683             : This Font Software is licensed under the SIL Open Font License, Version 1.1.
     684             : This license is copied below, and is also available with a FAQ at:
     685             : http://scripts.sil.org/OFL
     686             : 
     687             : 
     688             : -----------------------------------------------------------
     689             : SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
     690             : -----------------------------------------------------------
     691             : 
     692             : PREAMBLE
     693             : The goals of the Open Font License (OFL) are to stimulate worldwide
     694             : development of collaborative font projects, to support the font creation
     695             : efforts of academic and linguistic communities, and to provide a free and
     696             : open framework in which fonts may be shared and improved in partnership
     697             : with others.
     698             : 
     699             : The OFL allows the licensed fonts to be used, studied, modified and
     700             : redistributed freely as long as they are not sold by themselves. The
     701             : fonts, including any derivative works, can be bundled, embedded, 
     702             : redistributed and/or sold with any software provided that any reserved
     703             : names are not used by derivative works. The fonts and derivatives,
     704             : however, cannot be released under any other type of license. The
     705             : requirement for fonts to remain under this license does not apply
     706             : to any document created using the fonts or their derivatives.
     707             : 
     708             : DEFINITIONS
     709             : "Font Software" refers to the set of files released by the Copyright
     710             : Holder(s) under this license and clearly marked as such. This may
     711             : include source files, build scripts and documentation.
     712             : 
     713             : "Reserved Font Name" refers to any names specified as such after the
     714             : copyright statement(s).
     715             : 
     716             : "Original Version" refers to the collection of Font Software components as
     717             : distributed by the Copyright Holder(s).
     718             : 
     719             : "Modified Version" refers to any derivative made by adding to, deleting,
     720             : or substituting -- in part or in whole -- any of the components of the
     721             : Original Version, by changing formats or by porting the Font Software to a
     722             : new environment.
     723             : 
     724             : "Author" refers to any designer, engineer, programmer, technical
     725             : writer or other person who contributed to the Font Software.
     726             : 
     727             : PERMISSION & CONDITIONS
     728             : Permission is hereby granted, free of charge, to any person obtaining
     729             : a copy of the Font Software, to use, study, copy, merge, embed, modify,
     730             : redistribute, and sell modified and unmodified copies of the Font
     731             : Software, subject to the following conditions:
     732             : 
     733             : 1) Neither the Font Software nor any of its individual components,
     734             : in Original or Modified Versions, may be sold by itself.
     735             : 
     736             : 2) Original or Modified Versions of the Font Software may be bundled,
     737             : redistributed and/or sold with any software, provided that each copy
     738             : contains the above copyright notice and this license. These can be
     739             : included either as stand-alone text files, human-readable headers or
     740             : in the appropriate machine-readable metadata fields within text or
     741             : binary files as long as those fields can be easily viewed by the user.
     742             : 
     743             : 3) No Modified Version of the Font Software may use the Reserved Font
     744             : Name(s) unless explicit written permission is granted by the corresponding
     745             : Copyright Holder. This restriction only applies to the primary font name as
     746             : presented to the users.
     747             : 
     748             : 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
     749             : Software shall not be used to promote, endorse or advertise any
     750             : Modified Version, except to acknowledge the contribution(s) of the
     751             : Copyright Holder(s) and the Author(s) or with their explicit written
     752             : permission.
     753             : 
     754             : 5) The Font Software, modified or unmodified, in part or in whole,
     755             : must be distributed entirely under this license, and must not be
     756             : distributed under any other license. The requirement for fonts to
     757             : remain under this license does not apply to any document created
     758             : using the Font Software.
     759             : 
     760             : TERMINATION
     761             : This license becomes null and void if any of the above conditions are
     762             : not met.
     763             : 
     764             : DISCLAIMER
     765             : THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     766             : EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
     767             : MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
     768             : OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
     769             : COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
     770             : INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
     771             : DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     772             : FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
     773             : OTHER DEALINGS IN THE FONT SOFTWARE.
     774             : 
     775             :   ''',
     776             :   );
     777           0 :   yield LicenseEntryWithLineBreaks(
     778           0 :     ["Roboto fonts"],
     779             :     '''
     780             :   
     781             :                                  Apache License
     782             :                            Version 2.0, January 2004
     783             :                         http://www.apache.org/licenses/
     784             : 
     785             :    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
     786             : 
     787             :    1. Definitions.
     788             : 
     789             :       "License" shall mean the terms and conditions for use, reproduction,
     790             :       and distribution as defined by Sections 1 through 9 of this document.
     791             : 
     792             :       "Licensor" shall mean the copyright owner or entity authorized by
     793             :       the copyright owner that is granting the License.
     794             : 
     795             :       "Legal Entity" shall mean the union of the acting entity and all
     796             :       other entities that control, are controlled by, or are under common
     797             :       control with that entity. For the purposes of this definition,
     798             :       "control" means (i) the power, direct or indirect, to cause the
     799             :       direction or management of such entity, whether by contract or
     800             :       otherwise, or (ii) ownership of fifty percent (50%) or more of the
     801             :       outstanding shares, or (iii) beneficial ownership of such entity.
     802             : 
     803             :       "You" (or "Your") shall mean an individual or Legal Entity
     804             :       exercising permissions granted by this License.
     805             : 
     806             :       "Source" form shall mean the preferred form for making modifications,
     807             :       including but not limited to software source code, documentation
     808             :       source, and configuration files.
     809             : 
     810             :       "Object" form shall mean any form resulting from mechanical
     811             :       transformation or translation of a Source form, including but
     812             :       not limited to compiled object code, generated documentation,
     813             :       and conversions to other media types.
     814             : 
     815             :       "Work" shall mean the work of authorship, whether in Source or
     816             :       Object form, made available under the License, as indicated by a
     817             :       copyright notice that is included in or attached to the work
     818             :       (an example is provided in the Appendix below).
     819             : 
     820             :       "Derivative Works" shall mean any work, whether in Source or Object
     821             :       form, that is based on (or derived from) the Work and for which the
     822             :       editorial revisions, annotations, elaborations, or other modifications
     823             :       represent, as a whole, an original work of authorship. For the purposes
     824             :       of this License, Derivative Works shall not include works that remain
     825             :       separable from, or merely link (or bind by name) to the interfaces of,
     826             :       the Work and Derivative Works thereof.
     827             : 
     828             :       "Contribution" shall mean any work of authorship, including
     829             :       the original version of the Work and any modifications or additions
     830             :       to that Work or Derivative Works thereof, that is intentionally
     831             :       submitted to Licensor for inclusion in the Work by the copyright owner
     832             :       or by an individual or Legal Entity authorized to submit on behalf of
     833             :       the copyright owner. For the purposes of this definition, "submitted"
     834             :       means any form of electronic, verbal, or written communication sent
     835             :       to the Licensor or its representatives, including but not limited to
     836             :       communication on electronic mailing lists, source code control systems,
     837             :       and issue tracking systems that are managed by, or on behalf of, the
     838             :       Licensor for the purpose of discussing and improving the Work, but
     839             :       excluding communication that is conspicuously marked or otherwise
     840             :       designated in writing by the copyright owner as "Not a Contribution."
     841             : 
     842             :       "Contributor" shall mean Licensor and any individual or Legal Entity
     843             :       on behalf of whom a Contribution has been received by Licensor and
     844             :       subsequently incorporated within the Work.
     845             : 
     846             :    2. Grant of Copyright License. Subject to the terms and conditions of
     847             :       this License, each Contributor hereby grants to You a perpetual,
     848             :       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
     849             :       copyright license to reproduce, prepare Derivative Works of,
     850             :       publicly display, publicly perform, sublicense, and distribute the
     851             :       Work and such Derivative Works in Source or Object form.
     852             : 
     853             :    3. Grant of Patent License. Subject to the terms and conditions of
     854             :       this License, each Contributor hereby grants to You a perpetual,
     855             :       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
     856             :       (except as stated in this section) patent license to make, have made,
     857             :       use, offer to sell, sell, import, and otherwise transfer the Work,
     858             :       where such license applies only to those patent claims licensable
     859             :       by such Contributor that are necessarily infringed by their
     860             :       Contribution(s) alone or by combination of their Contribution(s)
     861             :       with the Work to which such Contribution(s) was submitted. If You
     862             :       institute patent litigation against any entity (including a
     863             :       cross-claim or counterclaim in a lawsuit) alleging that the Work
     864             :       or a Contribution incorporated within the Work constitutes direct
     865             :       or contributory patent infringement, then any patent licenses
     866             :       granted to You under this License for that Work shall terminate
     867             :       as of the date such litigation is filed.
     868             : 
     869             :    4. Redistribution. You may reproduce and distribute copies of the
     870             :       Work or Derivative Works thereof in any medium, with or without
     871             :       modifications, and in Source or Object form, provided that You
     872             :       meet the following conditions:
     873             : 
     874             :       (a) You must give any other recipients of the Work or
     875             :           Derivative Works a copy of this License; and
     876             : 
     877             :       (b) You must cause any modified files to carry prominent notices
     878             :           stating that You changed the files; and
     879             : 
     880             :       (c) You must retain, in the Source form of any Derivative Works
     881             :           that You distribute, all copyright, patent, trademark, and
     882             :           attribution notices from the Source form of the Work,
     883             :           excluding those notices that do not pertain to any part of
     884             :           the Derivative Works; and
     885             : 
     886             :       (d) If the Work includes a "NOTICE" text file as part of its
     887             :           distribution, then any Derivative Works that You distribute must
     888             :           include a readable copy of the attribution notices contained
     889             :           within such NOTICE file, excluding those notices that do not
     890             :           pertain to any part of the Derivative Works, in at least one
     891             :           of the following places: within a NOTICE text file distributed
     892             :           as part of the Derivative Works; within the Source form or
     893             :           documentation, if provided along with the Derivative Works; or,
     894             :           within a display generated by the Derivative Works, if and
     895             :           wherever such third-party notices normally appear. The contents
     896             :           of the NOTICE file are for informational purposes only and
     897             :           do not modify the License. You may add Your own attribution
     898             :           notices within Derivative Works that You distribute, alongside
     899             :           or as an addendum to the NOTICE text from the Work, provided
     900             :           that such additional attribution notices cannot be construed
     901             :           as modifying the License.
     902             : 
     903             :       You may add Your own copyright statement to Your modifications and
     904             :       may provide additional or different license terms and conditions
     905             :       for use, reproduction, or distribution of Your modifications, or
     906             :       for any such Derivative Works as a whole, provided Your use,
     907             :       reproduction, and distribution of the Work otherwise complies with
     908             :       the conditions stated in this License.
     909             : 
     910             :    5. Submission of Contributions. Unless You explicitly state otherwise,
     911             :       any Contribution intentionally submitted for inclusion in the Work
     912             :       by You to the Licensor shall be under the terms and conditions of
     913             :       this License, without any additional terms or conditions.
     914             :       Notwithstanding the above, nothing herein shall supersede or modify
     915             :       the terms of any separate license agreement you may have executed
     916             :       with Licensor regarding such Contributions.
     917             : 
     918             :    6. Trademarks. This License does not grant permission to use the trade
     919             :       names, trademarks, service marks, or product names of the Licensor,
     920             :       except as required for reasonable and customary use in describing the
     921             :       origin of the Work and reproducing the content of the NOTICE file.
     922             : 
     923             :    7. Disclaimer of Warranty. Unless required by applicable law or
     924             :       agreed to in writing, Licensor provides the Work (and each
     925             :       Contributor provides its Contributions) on an "AS IS" BASIS,
     926             :       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
     927             :       implied, including, without limitation, any warranties or conditions
     928             :       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
     929             :       PARTICULAR PURPOSE. You are solely responsible for determining the
     930             :       appropriateness of using or redistributing the Work and assume any
     931             :       risks associated with Your exercise of permissions under this License.
     932             : 
     933             :    8. Limitation of Liability. In no event and under no legal theory,
     934             :       whether in tort (including negligence), contract, or otherwise,
     935             :       unless required by applicable law (such as deliberate and grossly
     936             :       negligent acts) or agreed to in writing, shall any Contributor be
     937             :       liable to You for damages, including any direct, indirect, special,
     938             :       incidental, or consequential damages of any character arising as a
     939             :       result of this License or out of the use or inability to use the
     940             :       Work (including but not limited to damages for loss of goodwill,
     941             :       work stoppage, computer failure or malfunction, or any and all
     942             :       other commercial damages or losses), even if such Contributor
     943             :       has been advised of the possibility of such damages.
     944             : 
     945             :    9. Accepting Warranty or Additional Liability. While redistributing
     946             :       the Work or Derivative Works thereof, You may choose to offer,
     947             :       and charge a fee for, acceptance of support, warranty, indemnity,
     948             :       or other liability obligations and/or rights consistent with this
     949             :       License. However, in accepting such obligations, You may act only
     950             :       on Your own behalf and on Your sole responsibility, not on behalf
     951             :       of any other Contributor, and only if You agree to indemnify,
     952             :       defend, and hold each Contributor harmless for any liability
     953             :       incurred by, or claims asserted against, such Contributor by reason
     954             :       of your accepting any such warranty or additional liability.
     955             : 
     956             :    END OF TERMS AND CONDITIONS
     957             : 
     958             :    APPENDIX: How to apply the Apache License to your work.
     959             : 
     960             :       To apply the Apache License to your work, attach the following
     961             :       boilerplate notice, with the fields enclosed by brackets "[]"
     962             :       replaced with your own identifying information. (Don't include
     963             :       the brackets!)  The text should be enclosed in the appropriate
     964             :       comment syntax for the file format. We also recommend that a
     965             :       file or class name and description of purpose be included on the
     966             :       same "printed page" as the copyright notice for easier
     967             :       identification within third-party archives.
     968             : 
     969             :    Copyright [yyyy] [name of copyright owner]
     970             : 
     971             :    Licensed under the Apache License, Version 2.0 (the "License");
     972             :    you may not use this file except in compliance with the License.
     973             :    You may obtain a copy of the License at
     974             : 
     975             :        http://www.apache.org/licenses/LICENSE-2.0
     976             : 
     977             :    Unless required by applicable law or agreed to in writing, software
     978             :    distributed under the License is distributed on an "AS IS" BASIS,
     979             :    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     980             :    See the License for the specific language governing permissions and
     981             :    limitations under the License.
     982             : ''',
     983             :   );
     984             : 
     985           0 :   yield LicenseEntryWithLineBreaks(
     986           0 :     ["go-sqlite3"],
     987             :     '''
     988             : The code taken from https://github.com/mattn/go-sqlite3 is licensed under:
     989             : 
     990             : The MIT License (MIT)
     991             : 
     992             : Copyright (c) 2014 Yasuhiro Matsumoto
     993             : 
     994             : Permission is hereby granted, free of charge, to any person obtaining a copy
     995             : of this software and associated documentation files (the "Software"), to deal
     996             : in the Software without restriction, including without limitation the rights
     997             : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     998             : copies of the Software, and to permit persons to whom the Software is
     999             : furnished to do so, subject to the following conditions:
    1000             : 
    1001             : The above copyright notice and this permission notice shall be included in all
    1002             : copies or substantial portions of the Software.
    1003             : 
    1004             : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    1005             : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    1006             : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    1007             : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    1008             : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    1009             : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    1010             : SOFTWARE.
    1011             : ''',
    1012             :   );
    1013           0 :   yield LicenseEntryWithLineBreaks(
    1014           0 :     ["sqlcipher"],
    1015             :     '''
    1016             : The code taken from https://github.com/sqlcipher/sqlcipher is licensed under:
    1017             : 
    1018             : Copyright (c) 2008, ZETETIC LLC
    1019             : All rights reserved.
    1020             : 
    1021             : Redistribution and use in source and binary forms, with or without
    1022             : modification, are permitted provided that the following conditions are met:
    1023             :     * Redistributions of source code must retain the above copyright
    1024             :       notice, this list of conditions and the following disclaimer.
    1025             :     * Redistributions in binary form must reproduce the above copyright
    1026             :       notice, this list of conditions and the following disclaimer in the
    1027             :       documentation and/or other materials provided with the distribution.
    1028             :     * Neither the name of the ZETETIC LLC nor the
    1029             :       names of its contributors may be used to endorse or promote products
    1030             :       derived from this software without specific prior written permission.
    1031             : 
    1032             : THIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY
    1033             : EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    1034             : WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    1035             : DISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY
    1036             : DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    1037             : (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    1038             : LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    1039             : ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    1040             : (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    1041             : SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1042             : ''',
    1043             :   );
    1044             : }

Generated by: LCOV version 1.14