Third party licenses used or pre-installed or distributed with Oplon(r) products Oplon products v.10.0 or upper Date revision: 22 March 2022 =========== JFreeChart: =========== Oplon(r)Management Console uses (only uses as external library) JFreeChart libraries without any changes. The sources and license are distribuited unmodified from original in a thirdparty/jfreechart-1.0.13.zip and dounloaded from http://www.jfree.org/ http://sourceforge.net/projects/jfreechart/files/. JFreeChart is distribuited with LGPL licence repoted in thirdparty/JFreeChart_licence-LGPL.txt and in original from thirdparty/jfreechart-1.0.13.zip JFreeChart requires the JCommon class library. The JCommon runtime jar file is included in the JFreeChart download --- if you require the source code for JCommon (recommended), you need to download this separately. ========== jlfgr-1_0: ========== Oplon(r)Management Console uses (only uses as external library) jlfgr-1_0 libraries without any changes. The library is located in extLib/jlfgr-1_0.jar the license is located in the thirdparty/jlfgr-1_0_LICENSE.txt and inside the jar file. ==================== Debian Distribution: ==================== Oplon(r) virtual appliances may be distributed on Debian Didtribution. In this case Oplon(r) Virtual Appliance is powered by Debian operating system by Software in the Public Interest, Inc. with selected standard packages in accordance with Software in the Public Interest, Inc. redistribution license (https://www.debian.org/legal). All Debian rights are reserved by their owners. ==================== UBUNTU Distribution: ==================== Oplon(r) virtual appliances may be distributed on Ubuntu Didtribution. In this case Oplon(r) Virtual Appliance is powered by Ubuntu operating system by Canonical Ltd with selected standard packages in accordance with Canonical redistribution license (https://www.ubuntu.com/legal). All Ubuntu rights are reserved by their owners. ==================== CentOS Distribution: ==================== Oplon(r) virtual appliances may be distributed on CentOS Didtribution. In this case Oplon(r) Virtual Appliance is powered by CentOS operating system with selected standard packages in accordance with redistribution license (https://www.centos.org/legal/ ). All CentOS rights are reserved by their owners. =========== Lanterna 2: =========== Oplon(r) uses lanterna library http://code.google.com/p/lanterna/ Lanterna is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see http://www.gnu.org/licenses =========== Lanterna 3: =========== Oplon(r) uses lanterna library https://github.com/mabe02/lanterna Lanterna is free software: you can redistribute it and/or modify it under the terms https://github.com/mabe02/lanterna/blob/master/License.txt ======== dnsjava: ======== Oplon(r) uses dnsjava library http://www.dnsjava.org/ See DNSJAVA_LICENSE and DNSJAVA_README copyright (c) 1998-2011, Brian Wellington. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. dnsjava v2.0 http://www.dnsjava.org/ Author: Brian Wellington (bwelling@xbill.org) March 12, 2004 Overview: dnsjava is an implementation of DNS in Java. It supports all defined record types (including the DNSSEC types), and unknown types. It can be used for queries, zone transfers, and dynamic updates. It includes a cache which can be used by clients, and an authoritative only server. It supports TSIG authenticated messages, partial DNSSEC verification, and EDNS0. It is fully thread safe. It can be used to replace the native DNS support in Java. dnsjava was started as an excuse to learn Java. It was useful for testing new features in BIND without rewriting the C resolver. It was then cleaned up and extended in order to be used as a testing framework for DNS interoperability testing. The high level API and caching resolver were added to make it useful to a wider audience. The authoritative only server was added as proof of concept. Getting started: Run 'ant' from the toplevel directory to build dnsjava (a Makefile is also provided, but does not have all of the features of the ant script). JDK 1.4 or higher is required. To compile name service provider support (org.xbill.DNS.spi), run 'ant spi'. Replacing the standard Java DNS functionality: Beginning with Java 1.4, service providers can be loaded at runtime. To load the dnsjava service provider, build it as explained above and set the system property: sun.net.spi.nameservice.provider.1=dns,dnsjava This instructs the JVM to use the dnsjava service provide for DNS at the highest priority. Testing dnsjava: Matt Rutherford contributed a number of unit tests, which are in the tests subdirectory. The hierarchy under tests mirrors the org.xbill.DNS classes. To build the unit tests, run 'ant compile_tests', and to run then, run 'ant run_tests'. The tests require JUnit (http://www.junit.org) to be installed. Some high-level test programs are in org/xbill/DNS/tests. Limitations: There's no standard way to determine what the local nameserver or DNS search path is at runtime from within the JVM. dnsjava attempts several methods until one succeeds. - The properties 'dns.server' and 'dns.search' (comma delimited lists) are checked. The servers can either be IP addresses or hostnames (which are resolved using Java's built in DNS support). - The sun.net.dns.ResolverConfiguration class is queried. - On Unix, /etc/resolv.conf is parsed. - On Windows, ipconfig/winipcfg is called and its output parsed. This may fail for non-English versions on Windows. - As a last resort, "localhost" is used as the nameserver, and the search path is empty. The underlying platform must use an ASCII encoding of characters. This means that dnsjava will not work on OS/390, for example. Additional documentation: Javadoc documentation is provided in the doc/ subdirectory of binary distributions, and can be built with 'ant docs'. License: dnsjava is placed under the BSD license. Several files are also under additional licenses; see the individual files for details. Copyright (c) 1999-2005, Brian Wellington All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the dnsjava project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Final notes: - Thanks to Network Associates, Inc. for sponsoring some of the original dnsjava work in 1999-2000. - Thanks to Nominum, Inc. for sponsoring some work on dnsjava from 2000 to the present. ========== bootstrap: ========== Oplon(r) uses bootstrap library http://startbootstrap.com/ See BOOTSTRAP_LICENSE and BOOTSTRAP_README.md =========== DataTables: =========== Oplon(r) uses DataTables library https://datatables.net/ See DataTables-MIT_license and metismenu_LICENSE.txt ============= Font Awesome: ============= Oplon(r) uses Font Awesome by Dave Gandy - http://fontawesome.io". Font License applies to all desktop and webfont files in the following directory: font-awesome/fonts/. License: SIL OFL 1.1 URL: http://scripts.sil.org/OFL Code License Applies to all CSS and LESS files in the following directories: font-awesome/css/, font-awesome/less/, and font-awesome/scss/. License: MIT License URL: http://opensource.org/licenses/mit-license.html ============ ShellInABox: ============ https://github.com/shellinabox/shellinabox) is used inside a Docker container https://www.docker.com/). The changes to the source code are distributed within the container image in which it is running. ShellInABox is not incorporated in any way into Oplon Networks programs but installed separately on Docker containers to be used. The changes, made by Oplon Networks, are also distributed in source form with the same licenses issued by the author Markus Gutschke of which we report below the links (present at the time of writing this document 21/03/2022) https://github.com/shellinabox/shellinabox/blob/master/COPYING https://www.gnu.org/licenses/old-licenses/gpl-2.0.html ============ DOCKER Moby: ============ Moby Project - a collaborative project for the container ecosystem to assemble container-based systems https://github.com/moby/moby. Oplon Networks uses Docker Moby within Linux systems in some circumstances. Use is in accordance with Apache License Version 2.0, January 2004 https://github.com/moby/moby/blob/master/LICENSE ===== BIND: ===== Oplon(r) Virtual Appliance is powered by BIND in accordance with ISC License (ISC) https://opensource.org/licenses/isc-license.txt https://www.isc.org/downloads/software-support-policy/isc-license/ All BIND rights are reserved by their owners. ======= acme4j: ======= https://shredzone.org/maven/acme4j/index.html https://github.com/shred/acme4j is open source software. The source code is distributed under the terms of Apache License 2.0. ========== Bootstrap: ========== Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ # [Start Bootstrap](http://startbootstrap.com/) - [SB Admin 2](http://startbootstrap.com/template-overviews/sb-admin-2/) [SB Admin 2](http://startbootstrap.com/template-overviews/sb-admin-2/) is an open source, admin dashboard template for [Bootstrap](http://getbootstrap.com/) created by [Start Bootstrap](http://startbootstrap.com/). ## Getting Started To use this template, choose one of the following options to get started: * Download the latest release on Start Bootstrap * Fork this repository on GitHub * Install via bower using `bower install startbootstrap-sb-admin-2` ## Bugs and Issues Have a bug or an issue with this template? [Open a new issue](https://github.com/IronSummitMedia/startbootstrap-sb-admin-2/issues) here on GitHub or leave a comment on the [template overview page at Start Bootstrap](http://startbootstrap.com/template-overviews/sb-admin-2/). ## Creator Start Bootstrap was created by and is maintained by **David Miller**, Managing Parter at [Iron Summit Media Strategies](http://www.ironsummitmedia.com/). * https://twitter.com/davidmillerskt * https://github.com/davidtmiller Start Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat). ## Copyright and License Copyright 2013-2015 Iron Summit Media Strategies, LLC. Code released under the [Apache 2.0](https://github.com/IronSummitMedia/startbootstrap-sb-admin-2/blob/gh-pages/LICENSE) license. ============== Bouncy Castle: ============== Please note this should be read in the same way as the MIT license. Please also note this licensing model is made possible through funding from donations and the sale of support contracts. License Copyright (c) 2000 - 2017 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. =========== DataTables: =========== DataTables is available under the MIT license. In short, this means that you are free to use DataTables as you wish, including modifying and redistributing the code, as long as the original copyright notice is retained. MIT license Copyright (C) 2008-2017, SpryMedia Ltd. 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. DataTables designed and created by SpryMedia Ltd © 2007-2017. MIT licensed. SpryMedia Ltd is registered in Scotland, company no. SC456502. =============== datetimepicker: =============== https://github.com/xdan/datetimepicker MIT-LICENSE Copyright (c) 2013 http://xdsoft.net 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. ========= jose.4.j: ========= https://github.com/RbkGh/Jose4j The jose.4.j library is an open source (Apache 2.0) implementation of JWT and the JOSE specification suite. Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ ====== JSZip: ====== https://github.com/Stuk/jszip JSZip is a JavaScript library for creating, reading and editing .zip files, with a lovely and simple API. JSZip is dual licensed. At your choice you may use it under the MIT license *or* the GPLv3 license. The MIT License Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. GPL version 3 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 https://www.fsf.org/ ========== metismenu: ========== https://github.com/onokumus/metismenu The MIT License (MIT) Copyright (c) 2014-2021 Osman Nuri Okumuş 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. ======== pdfmake: ======== http://pdfmake.org/#/ https://github.com/bpampuch/pdfmake Client/server side PDF printing in pure JavaScript The MIT License (MIT) Copyright (c) 2014-2015 bpampuch 2016-2021 liborm85 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. ====== SLF4J: ====== https://www.slf4j.org/ https://github.com/qos-ch/slf4j Copyright (c) 2004-2022 QOS.ch Sarl (Switzerland) All rights reserved. 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. =========== Summernote: =========== https://github.com/summernote/summernote Summernote v0.8.4 · Created and Maintained by Summernote team. Based on Bootstrap and jQuery. Icons from Font Awesome. Summernote distributed under the MIT license. http://summernote.org/ he MIT License (MIT) Copyright (c) 2015~ Summernote Team (https://github.com/orgs/summernote/people) 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. /* object-assign (c) Sindre Sorhus @license MIT */ /*! * The buffer module from node.js, for the browser. * * @author Feross Aboukhadijeh * @license MIT */ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ /** @license MUI v5.2.5 * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** @license React v0.20.2 * scheduler.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** @license React v16.13.1 * react-is.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** @license React v17.0.2 * react-dom.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** @license React v17.0.2 * react-is.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** @license React v17.0.2 * react-jsx-runtime.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** @license React v17.0.2 * react.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */