From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- readlicense_oo/CustomTarget_license.mk | 75 + readlicense_oo/CustomTarget_readme.mk | 75 + readlicense_oo/Makefile | 7 + readlicense_oo/Module_readlicense_oo.mk | 20 + readlicense_oo/Package_files.mk | 20 + readlicense_oo/Package_license.mk | 28 + readlicense_oo/Package_readlicense_oo_readmes.mk | 17 + readlicense_oo/README.md | 34 + readlicense_oo/docs/readme.xrm | 217 + readlicense_oo/docs/readme.xsl | 170 + readlicense_oo/license/CREDITS.fodt | 17758 +++++++++++++++++++++ readlicense_oo/license/NOTICE | 117 + readlicense_oo/license/license.xml | 7261 +++++++++ readlicense_oo/license/license_html.xsl | 32 + readlicense_oo/license/license_plain_text.xsl | 62 + 15 files changed, 25893 insertions(+) create mode 100644 readlicense_oo/CustomTarget_license.mk create mode 100644 readlicense_oo/CustomTarget_readme.mk create mode 100644 readlicense_oo/Makefile create mode 100644 readlicense_oo/Module_readlicense_oo.mk create mode 100644 readlicense_oo/Package_files.mk create mode 100644 readlicense_oo/Package_license.mk create mode 100644 readlicense_oo/Package_readlicense_oo_readmes.mk create mode 100644 readlicense_oo/README.md create mode 100644 readlicense_oo/docs/readme.xrm create mode 100644 readlicense_oo/docs/readme.xsl create mode 100644 readlicense_oo/license/CREDITS.fodt create mode 100644 readlicense_oo/license/NOTICE create mode 100644 readlicense_oo/license/license.xml create mode 100644 readlicense_oo/license/license_html.xsl create mode 100644 readlicense_oo/license/license_plain_text.xsl (limited to 'readlicense_oo') diff --git a/readlicense_oo/CustomTarget_license.mk b/readlicense_oo/CustomTarget_license.mk new file mode 100644 index 000000000..b4baf7a8f --- /dev/null +++ b/readlicense_oo/CustomTarget_license.mk @@ -0,0 +1,75 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_CustomTarget_CustomTarget,readlicense_oo/license)) + +readlicense_oo_DIR := $(call gb_CustomTarget_get_workdir,readlicense_oo/license) +readlicense_oo_LICENSE_xml := $(SRCDIR)/readlicense_oo/license/license.xml + +$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/LICENSE.html + +ifeq ($(OS),WNT) +$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/license.txt +else +$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/LICENSE +endif + +$(readlicense_oo_DIR)/LICENSE.html : \ + $(SRCDIR)/readlicense_oo/license/license_html.xsl \ + $(readlicense_oo_LICENSE_xml) \ + | $(readlicense_oo_DIR)/.dir \ + $(call gb_ExternalExecutable_get_dependencies,xsltproc) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),XSL) + $(call gb_Helper_abbreviate_dirs, \ + $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@ \ + --stringparam build_type "$(BUILD_TYPE)" \ + --stringparam os "$(OS)" \ + --stringparam themes "$(WITH_THEMES)" \ + $(if $(MPL_SUBSET),,--stringparam no_mpl_subset no_mpl_subset) \ + $< \ + $(readlicense_oo_LICENSE_xml) \ + $(if $(filter WNT,$(OS)), \ + && $(gb_AWK) 'sub("$$","\r")' $@ > $@.tmp \ + && mv $@.tmp $@ \ + ) \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),XSL) + +$(readlicense_oo_DIR)/LICENSE : \ + $(SRCDIR)/readlicense_oo/license/license_plain_text.xsl \ + $(readlicense_oo_LICENSE_xml) \ + | $(readlicense_oo_DIR)/.dir \ + $(call gb_ExternalExecutable_get_dependencies,xsltproc) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),XSL) + $(call gb_Helper_abbreviate_dirs, \ + $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@ \ + --stringparam build_type "$(BUILD_TYPE)" \ + --stringparam os "$(OS)" \ + --stringparam themes "$(WITH_THEMES)" \ + $(if $(MPL_SUBSET),,--stringparam no_mpl_subset no_mpl_subset) \ + $< \ + $(readlicense_oo_LICENSE_xml) \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),XSL) + +ifeq ($(OS),WNT) +$(readlicense_oo_DIR)/license.txt : \ + $(readlicense_oo_DIR)/LICENSE \ + | $(readlicense_oo_DIR)/.dir + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),AWK,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),AWK) + $(call gb_Helper_abbreviate_dirs, \ + $(gb_AWK) 'sub("$$","\r")' $< > $@.tmp && mv $@.tmp $@ \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),AWK) +endif + +# vim:set shiftwidth=4 tabstop=4 noexpandtab: diff --git a/readlicense_oo/CustomTarget_readme.mk b/readlicense_oo/CustomTarget_readme.mk new file mode 100644 index 000000000..bb3b41e76 --- /dev/null +++ b/readlicense_oo/CustomTarget_readme.mk @@ -0,0 +1,75 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_CustomTarget_CustomTarget,readlicense_oo/readme)) + +readlicense_oo_DIR := $(call gb_CustomTarget_get_workdir,readlicense_oo/readme) + +# gb_WITH_LANG is empty if --with-lang is not set +# what we need here is: gb_WITH_LANG_OR_DEFAULT ;-) +readlicense_oo_LANGS := en-US $(filter-out en-US,$(gb_WITH_LANG)) + +$(call gb_CustomTarget_get_target,readlicense_oo/readme) : \ + $(foreach lang,$(readlicense_oo_LANGS),$(readlicense_oo_DIR)/$(call gb_README,$(lang))) + +ifeq ($(strip $(gb_WITH_LANG)),) +readlicense_oo_README_XRM := $(SRCDIR)/readlicense_oo/docs/readme.xrm +else +readlicense_oo_README_XRM := $(readlicense_oo_DIR)/readme.xrm + +$(readlicense_oo_DIR)/readme.xrm : \ + $(SRCDIR)/readlicense_oo/docs/readme.xrm \ + $(call gb_Executable_get_runtime_dependencies,xrmex) \ + $(foreach lang,$(filter-out qtz,$(filter-out en-US,$(gb_WITH_LANG))),$(gb_POLOCATION)/$(lang)/readlicense_oo/docs.po) \ + | $(readlicense_oo_DIR)/.dir + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XRM,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),XRM) + $(call gb_Helper_abbreviate_dirs, \ + MERGEINPUT=`$(gb_MKTEMP)` && \ + echo $(foreach lang,$(filter-out qtz,$(filter-out en-US,$(gb_WITH_LANG))),$(gb_POLOCATION)/$(lang)/readlicense_oo/docs.po) > $${MERGEINPUT} && \ + $(call gb_Executable_get_command,xrmex) \ + -i $< \ + -o $@ \ + -m $${MERGEINPUT} \ + -l all && \ + rm -rf $${MERGEINPUT}) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),XRM) + +endif + +readlicense_oo_README_SED := \ + -e 's,$${PRODUCTNAME},$(PRODUCTNAME),g' \ + -e 's,$${PRODUCTVERSION},$(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR),g' \ + +$(readlicense_oo_DIR)/$(call gb_README,%) : \ + $(SRCDIR)/readlicense_oo/docs/readme.xsl \ + $(readlicense_oo_README_XRM) \ + | $(readlicense_oo_DIR)/.dir \ + $(call gb_ExternalExecutable_get_dependencies,xsltproc) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1) + $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),XSL) + $(call gb_Helper_abbreviate_dirs, \ + $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@.out \ + --stringparam com1 $(COM) \ + --stringparam cp1 $(CPUNAME) \ + --stringparam lang1 $(word 2,$(subst _, ,$(basename $(notdir $@)))) \ + --stringparam os1 $(OS) \ + --stringparam type text \ + $< \ + $(readlicense_oo_README_XRM) \ + $(if $(filter WNT,$(OS)), \ + && $(gb_AWK) 'sub("$$","\r")' $@.out > $@.tmp \ + && mv $@.tmp $@.out \ + ) \ + && sed $(readlicense_oo_README_SED) $@.out > $@ \ + && rm $@.out \ + ) + $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),XSL) + +# vim:set shiftwidth=4 tabstop=4 noexpandtab: diff --git a/readlicense_oo/Makefile b/readlicense_oo/Makefile new file mode 100644 index 000000000..ccb1c85a0 --- /dev/null +++ b/readlicense_oo/Makefile @@ -0,0 +1,7 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- + +module_directory:=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) + +include $(module_directory)/../solenv/gbuild/partial_build.mk + +# vim: set noet sw=4 ts=4: diff --git a/readlicense_oo/Module_readlicense_oo.mk b/readlicense_oo/Module_readlicense_oo.mk new file mode 100644 index 000000000..d79e0f7c1 --- /dev/null +++ b/readlicense_oo/Module_readlicense_oo.mk @@ -0,0 +1,20 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Module_Module,readlicense_oo)) + +$(eval $(call gb_Module_add_targets,readlicense_oo,\ + CustomTarget_readme \ + CustomTarget_license \ + Package_files \ + Package_license \ + Package_readlicense_oo_readmes \ +)) + +# vim:set noet sw=4 ts=4: diff --git a/readlicense_oo/Package_files.mk b/readlicense_oo/Package_files.mk new file mode 100644 index 000000000..101d3878d --- /dev/null +++ b/readlicense_oo/Package_files.mk @@ -0,0 +1,20 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Package_Package,readlicense_oo_files,$(SRCDIR)/readlicense_oo/license)) + +ifneq ($(OS),MACOSX) +$(eval $(call gb_Package_add_file,readlicense_oo_files,NOTICE,NOTICE)) +$(eval $(call gb_Package_add_file,readlicense_oo_files,CREDITS.fodt,CREDITS.fodt)) +else +$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/NOTICE,NOTICE)) +$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/CREDITS.fodt,CREDITS.fodt)) +endif + +# vim: set noet sw=4 ts=4: diff --git a/readlicense_oo/Package_license.mk b/readlicense_oo/Package_license.mk new file mode 100644 index 000000000..67755904a --- /dev/null +++ b/readlicense_oo/Package_license.mk @@ -0,0 +1,28 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Package_Package,readlicense_oo_license,$(call gb_CustomTarget_get_workdir,readlicense_oo/license))) + +ifeq ($(OS),WNT) +$(eval $(call gb_Package_add_file,readlicense_oo_license,license.txt,license.txt)) +else +ifneq ($(OS),MACOSX) +$(eval $(call gb_Package_add_file,readlicense_oo_license,LICENSE,LICENSE)) +else +$(eval $(call gb_Package_add_file,readlicense_oo_license,Resources/LICENSE,LICENSE)) +endif +endif + +ifneq ($(OS),MACOSX) +$(eval $(call gb_Package_add_file,readlicense_oo_license,LICENSE.html,LICENSE.html)) +else +$(eval $(call gb_Package_add_file,readlicense_oo_license,Resources/LICENSE.html,LICENSE.html)) +endif + +# vim: set noet sw=4 ts=4: diff --git a/readlicense_oo/Package_readlicense_oo_readmes.mk b/readlicense_oo/Package_readlicense_oo_readmes.mk new file mode 100644 index 000000000..bce3c0c62 --- /dev/null +++ b/readlicense_oo/Package_readlicense_oo_readmes.mk @@ -0,0 +1,17 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Package_Package,readlicense_oo_readmes,$(call gb_CustomTarget_get_workdir,readlicense_oo/readme))) + +$(eval $(call gb_Package_add_files,readlicense_oo_readmes,$(LIBO_SHARE_READMES_FOLDER), \ + $(foreach lang,$(readlicense_oo_LANGS),$(call gb_README,$(lang))) \ +)) + # readlicense_oo_LANGS from readlicense_oo/CustomTarget_readme.mk + +# vim: set noet sw=4 ts=4: diff --git a/readlicense_oo/README.md b/readlicense_oo/README.md new file mode 100644 index 000000000..2eae0bf5c --- /dev/null +++ b/readlicense_oo/README.md @@ -0,0 +1,34 @@ +# LibreOffice Licensing Blurb + +Contains the stock libreoffice licensing blurb, as distributed in the install +directory, and also potentially at run-time. + +## Generating Licence Files + +License files are generated from a single source file (`license/license.xml`). +Output file formats are plain text and html. + +- The plain text and the html format is generated with XSLT. There are two + separate XSL files for plain text and html. + +## Conditional Text + +The contents of the license file depends on the build configuration. Several +externals may or may not be shipped with LibreOffice. Therefore, we need to pass +information about build configuration to the XSLT processor. + +Variables used for conditional text: + +- `BUILD_TYPE`: A space separated list of libraries/externals. If an external is + present in that list, then the related license text should be included. + +- `MPL_SUBSET`: If the variable is defined, then GPL and LGPL license text will not + be included, because none of the built-in code need it. + +- `OS`: The target platform. E.g. MSVC Runtime is packaged and used only on Windows. + +- `WITH_THEMES`: A space separated list of icon sets that are used in the build. + +Conditional text are surrounded by and extra `
` tag. The class attribute of +that `
` tag decides which parameter values are taken into consideration. + diff --git a/readlicense_oo/docs/readme.xrm b/readlicense_oo/docs/readme.xrm new file mode 100644 index 000000000..afc70e34b --- /dev/null +++ b/readlicense_oo/docs/readme.xrm @@ -0,0 +1,217 @@ + + + + + + + ${PRODUCTNAME} Readme File + + + + + +
+

${PRODUCTNAME} ${PRODUCTVERSION} ReadMe

+

For the latest updates to this readme file, see https://git.libreoffice.org/core/tree/master/README.md

+

This file contains important information about the ${PRODUCTNAME} software. You are recommended to read this information very carefully before starting installation.

+

The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to https://www.libreoffice.org/.

+

Is ${PRODUCTNAME} Really Free for Any User?

+

${PRODUCTNAME} is free for use by everybody. You may take this copy of ${PRODUCTNAME} and install it on as many computers as you like, and use it for any purpose you like (including commercial, government, public administration and educational use). For further details see the license text packaged with this ${PRODUCTNAME} download.

+

Why is ${PRODUCTNAME} Free for Any User?

+

You can use this copy of ${PRODUCTNAME} free of charge because individual contributors and corporate sponsors have designed, developed, tested, translated, documented, supported, marketed, and helped in many other ways to make ${PRODUCTNAME} what it is today - the world's leading Open Source productivity software for home and office.

+

If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see https://www.documentfoundation.org/contribution/ for details. Everyone can make a contribution of some kind.

+
+ +
+

Notes on Installation

+

${PRODUCTNAME} requires a recent version of Java Runtime Environment (JRE) for full functionality. JRE is not part of the ${PRODUCTNAME} installation package, it should be installed separately.

+

System Requirements

+
+
    +
  • +

    macOS 10.13 (High Sierra) or higher

    +
  • +
+
+
+
    +
  • +

    Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10

    +
  • +
+

Please be aware that administrator rights are needed for the installation process.

+

Registration of ${PRODUCTNAME} as default application for Microsoft Office formats can be forced or suppressed by using the following command line switches with the installer:

+
    +
  • +

    REGISTER_ALL_MSO_TYPES=1 will force registration of ${PRODUCTNAME} as default application for Microsoft Office formats.

    +
  • + +
  • +

    REGISTER_NO_MSO_TYPES=1 will suppress registration of ${PRODUCTNAME} as default application for Microsoft Office formats.

    +
  • +
+
+
+

As a general rule, you are recommended to install ${PRODUCTNAME} via the installation methods recommended by your particular Linux distribution (such as the Ubuntu Software Center, in the case of Ubuntu Linux). This is because it is usually the simplest way to obtain an installation that is optimally integrated into your system. Indeed, ${PRODUCTNAME} may well be already installed by default when you originally install your Linux operating system.

+

This "stand-alone" ${PRODUCTNAME} installer is provided for users in need of previews, having special needs, and for out-of-the-ordinary cases.

+
    +
  • +

    Linux Kernel version 3.10 or higher;

    +
  • + +
  • +

    glibc2 version 2.17 or higher;

    +
  • + +
  • +

    FreeType version 2.8.0 or higher;

    +
  • + +
  • +

    GTK version 3.20 or higher;

    +
  • + +
  • +

    Gnome 3.18 or higher, with the at-spi2 1.32 package (required for support for assistive technology [AT] tools), or another compatible GUI (such as KDE, among others).

    +
  • +
+

There is a wide variety of Linux distributions, and there may be different installation options (KDE vs Gnome, etc.) available from the same Linux vendor. Some distributions ship with their own “native” version of ${PRODUCTNAME}, which may have different features from this community-supplied version of ${PRODUCTNAME}. In many cases, you can install the community-supplied ${PRODUCTNAME} alongside a native version. However, you may prefer to remove the “native” version before installing this community-supplied version. For details on how to do that, please consult the user help resources provided by your particular Linux vendor.

+

It is a recommended best practice to back-up your system and data before you remove or install software.

+
+

Please make sure you have enough free memory in the temporary directory on your system, and please ensure that read, write and run access rights have been granted. Close all other programs before starting the installation process.

+

Installation of ${PRODUCTNAME} on Debian/Ubuntu-based Linux systems

+

For instructions on how to install a language pack (after having installed the US English version of ${PRODUCTNAME}), please read the section below entitled Installing a Language Pack.

+

When you unpack the downloaded archive, you will see that the contents have been decompressed into a sub-directory. Open a file manager window, and change directory to the one starting with "LibreOffice_", followed by the version number and some platform information.

+

This directory contains a subdirectory called "DEBS". Change directory to the "DEBS" directory.

+

Right-click within the directory and choose "Open in Terminal". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):

+

The following commands will install LibreOffice and the desktop integration packages (you may just copy and paste them into the terminal screen rather than trying to type them):

+

sudo dpkg -i *.deb

+

The installation process is now completed, and you should have icons for all the ${PRODUCTNAME} applications in your desktop's Applications/Office menu.

+

Installation of ${PRODUCTNAME} on Fedora, openSUSE, Mandriva and other Linux systems using RPM packages

+

For instructions on how to install a language pack (after having installed the US English version of ${PRODUCTNAME}), please read the section below entitled Installing a Language Pack.

+

When you unpack the downloaded archive, you will see that the contents have been decompressed into a sub-directory. Open a file manager window, and change directory to the one starting with "LibreOffice_", followed by the version number and some platform information.

+

This directory contains a subdirectory called "RPMS". Change directory to the "RPMS" directory.

+

Right-click within the directory and choose "Open in Terminal". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):

+

For Fedora-based systems: sudo dnf install *.rpm

+

For Mandriva-based systems: sudo urpmi *.rpm

+

For other RPM-based systems (openSUSE, etc.): rpm -Uvh *.rpm

+

The installation process is now completed, and you should have icons for all the ${PRODUCTNAME} applications in your desktop's Applications/Office menu.

+

Alternatively, you can use the 'install' script, located in the toplevel directory of this archive to perform an installation as a user. The script will set up ${PRODUCTNAME} to have its own profile for this installation, separated from your normal ${PRODUCTNAME} profile. Note that this will not install the system integration parts such as desktop menu items and desktop MIME type registrations.

+

Notes Concerning Desktop Integration for Linux Distributions Not Covered in the Above Installation Instructions

+

It should be easily possible to install ${PRODUCTNAME} on other Linux distributions not specifically covered in these installation instructions. The main aspect for which differences might be encountered is desktop integration.

+

The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (https://en.wikipedia.org/wiki/Freedesktop.org), and is provided for installation on other Linux distributions not covered in the aforementioned instructions.

+

Installing a Language Pack

+

Download the language pack for your desired language and platform. They are available from the same location as the main installation archive. From the Nautilus file manager, extract the downloaded archive into a directory (your desktop, for instance). Ensure that you have exited all ${PRODUCTNAME} applications (including the QuickStarter, if it is started).

+

Change directory to the directory in which you extracted your downloaded language pack.

+

Now change directory to the directory that was created during the extraction process. For instance, for the French language pack for a 32-bit Debian/Ubuntu-based system, the directory is named LibreOffice_, plus some version information, plus Linux_x86_langpack-deb_fr.

+

Now change directory to the directory that contains the packages to install. On Debian/Ubuntu-based systems, the directory will be DEBS. On Fedora, openSUSE or Mandriva systems, the directory will be RPMS.

+

From the Nautilus file manager, right-click in the directory and choose the command "Open in terminal". In the terminal window you just opened, execute the command to install the language pack (with all of the commands below, you may be prompted to enter your root user's password):

+

For Debian/Ubuntu-based systems: sudo dpkg -i *.deb

+

For Fedora-based systems: su -c 'dnf install *.rpm'

+

For Mandriva-based systems: sudo urpmi *.rpm

+

For other RPM-using systems (openSUSE, etc.): rpm -Uvh *.rpm

+

Now start one of the ${PRODUCTNAME} applications - Writer, for instance. Go to the Tools menu and choose Options. In the Options dialog box, click on "Language Settings" and then click on "Languages". Dropdown the "User interface" list and select the language you just installed. If you want, do the same thing for the "Locale setting", the "Default currency", and the "Default languages for documents".

+

After adjusting those settings, click on OK. The dialog box will close, and you will see an information message telling you that your changes will only be activated after you exit ${PRODUCTNAME} and start it again (remember to also exit the QuickStarter if it is started).

+

The next time you start ${PRODUCTNAME}, it will start in the language you just installed.

+
+ +
+

Problems During Program Startup

+

Difficulties starting ${PRODUCTNAME} (e.g. applications hang) as well as problems with the screen display are often caused by the graphics card driver. If these problems occur, please update your graphics card driver or try using the graphics driver delivered with your operating system.

+
+ +
+

ALPS/Synaptics notebook touchpads in Windows

+

Due to a Windows driver issue, you cannot scroll through ${PRODUCTNAME} documents when you slide your finger across an ALPS/Synaptics touchpad.

+

To enable touchpad scrolling, add the following lines to the "C:\Program Files\Synaptics\SynTP\SynTPEnh.ini" configuration file, and restart your computer:

+

[${PRODUCTNAME}]

+

FC = "SALFRAME"

+

SF = 0x10000000

+

SF |= 0x00004000

+

The location of the configuration file might vary on different versions of Windows.

+
+ +
+

Shortcut Keys

+

Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documentation of your operating system.

+
+

The application help of ${PRODUCTNAME} may use shortcut combinations for PC keyboards only.

+
+
+ +
+

File Locking

+

File locking is enabled by default in ${PRODUCTNAME}. On a network that uses the Network File System protocol (NFS), the locking daemon for NFS clients must be active. To disable file locking, edit the soffice script and change the line "export SAL_ENABLE_FILE_LOCKING" to "# export SAL_ENABLE_FILE_LOCKING". If you disable file locking, the write access of a document is not restricted to the user who first opens the document.

+
+ +
+

Graphic Performance

+

By default, ${PRODUCTNAME} favours nice-looking graphics over speed. If you experience slow graphics, switching off 'Tools - Options - ${PRODUCTNAME} - View - Use Anti-Aliasing' may help.

+
+ +
+

Problems When Sending Documents as Emails From ${PRODUCTNAME}

+

When sending a document via 'File - Send - Document as Email' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file "Mapi" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit https://www.microsoft.com to search the Microsoft Knowledge Base for "mapi dll".

+
+ +
+

Important Accessibility Notes

+

For more information on the accessibility features in ${PRODUCTNAME}, see https://www.libreoffice.org/accessibility/

+
+ +
+

User Support

+

The main support page offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at https://www.documentfoundation.org/nabble/ or search the archives of the 'users@libreoffice.org' mailing list at https://www.libreoffice.org/lists/users/. Alternatively, you can send in your questions to users@libreoffice.org. If you like to subscribe to the list (to get email responses), send an empty mail to: users+subscribe@libreoffice.org.

+

Also check the FAQ section at the LibreOffice website.

+
+ +
+

Reporting Bugs & Issues

+

Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at https://bugs.documentfoundation.org/. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}.

+
+ +
+

Getting Involved

+

The ${PRODUCTNAME} Community would very much benefit from your active participation in the development of this important open source project.

+

As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at the LibreOffice website.

+

How to Start

+

The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at the LibreOffice website.

+

Subscribe

+

Here are a few of the mailing lists to which you can subscribe at https://www.libreoffice.org/get-help/mailing-lists/

+
    +
  • +

    News: announce@documentfoundation.org *recommended to all users* (light traffic)

    +
  • + +
  • +

    Main user list: users@global.libreoffice.org *easy way to lurk on discussions* (heavy traffic)

    +
  • + +
  • +

    Marketing project: marketing@global.libreoffice.org *beyond development* (getting heavy)

    +
  • + +
  • +

    General developer list: libreoffice@lists.freedesktop.org (heavy traffic)

    +
  • +
+

Joining one or more Projects

+

You can make major contributions to this important open source project even if you have limited software design or coding experience. Yes, you!

+
+ +
+

We hope you enjoy working with the new ${PRODUCTNAME} ${PRODUCTVERSION} and will join us online.

+

The LibreOffice Community

+
+ +
+

Used / Modified Source Code

+

Portions Copyright 1998, 1999 James Clark. Portions Copyright 1996, 1998 Netscape Communications Corporation.

+
+ + diff --git a/readlicense_oo/docs/readme.xsl b/readlicense_oo/docs/readme.xsl new file mode 100644 index 000000000..f591b8782 --- /dev/null +++ b/readlicense_oo/docs/readme.xsl @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +---------------------------------------------------------------------------------------------------------- + + + + + + + + + + + + + + + + * + + + + + + + + + + + + + + + + + + + ====================================================================== + + + + ====================================================================== + + + + + + ---------------------------------------------------------------------- + + + + ---------------------------------------------------------------------- + + + + + + + ---------------------------------------------------------------------- + + + + + + diff --git a/readlicense_oo/license/CREDITS.fodt b/readlicense_oo/license/CREDITS.fodt new file mode 100644 index 000000000..0c0f62d52 --- /dev/null +++ b/readlicense_oo/license/CREDITS.fodt @@ -0,0 +1,17758 @@ + + + + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.5.2.2$Linux_X86_64 LibreOffice_project/53bb9681a964705cf672590721dbc85eb4d0c3a22012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + + + 515 + 501 + 34133 + 27148 + true + true + + + view2 + 3649 + 3434 + 501 + 515 + 34632 + 27661 + 0 + 0 + false + 100 + false + false + false + false + false + false + + + + + true + false + true + false + true + false + false + false + false + 0 + false + false + false + false + false + true + true + true + false + + false + false + false + false + false + true + true + false + false + false + false + false + false + true + false + false + 1557161 + false + Adressen + true + false + + + hu + HU + + + + + + false + 12220477 + true + false + false + false + 1 + true + true + false + false + false + false + true + true + true + true + false + true + 0 + + true + true + false + false + + 0 + true + false + false + false + high-resolution + false + true + false + false + false + false + false + false + false + true + + true + false + true + false + + false + false + false + false + false + false + false + false + false + false + false + false + false + false + 0 + true + false + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + iVBORw0KGgoAAAANSUhEUgAAATkAAABkCAYAAAD9hkdsAAAAAXNSR0IArs4c6QAAAAZiS0dE + AP8A/wD/oL2nkwAAAAlwSFlzAAAOuQAADrkBuAYXvwAAAAd0SU1FB9oMChUNCQOjP/4AADYV + SURBVHja7V0HfBXF9r65N0B67yEhQIAkJEAggSQklNB7B0UELAhIFYIUReBhQewFEBREUBEQ + RREswd592J71qc+nPv88CypFA6i58/++zUyy2dwkF3KJ5jnn9zu/3bt7Zs6Z2ZlvzpmZ3Wuz + adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0 + adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0adKkSZMmTZo0 + adKkSZMmTZo0adKkSVODouAZtQiM0XX0R9OwYcNqvN+5c2ddSX91sjaC/v3760oxUcQs79z4 + eUFDE4pCzDyy8QSHj66dP54yMzN98vLyhnfv3n1/nz59/g/t99e+ffu+36NHj40FBQUdlFxW + VpZxbNu2rT07O7tp165dV/Xs2fMDyP8M/q53797PQX4mOFDXaj0RHoQtLi6uER7OhE6dOk0A + GE3ANY8x82vTpk0r6sLDNnQOGjTIOPbr128CGspNbvKNaFyBgwcP9ljZ/S+s+X7U/LrrCJrm + nlybpbHPDb+/l5i0Z6SYvHeUwRMfHSHi54Uk6FZaQQAVt+Q6duxYZ10qj9zc3FsGDBhw+Jxz + zhFTp04Vc+fOFfPnzxfz5s0Ts2fPFmefffbn5nTp6ekhaOuvDR8+XJx33nli5syZhizTXHLJ + JWLGjBlixIgRU/TTrEfq1q3bP0aPHi0mTZpkPBRP8uTJk8XEiRMFGskKM8ANHDjwIgCXYMOh + TG15kMeMGfOpp8seMt27Y4vF4ZekLI+fk7q8qeT4OS2WhNW5l8QX+TDUbJSwIGhCq6Uxj6av + TNiUtqJpvuG5nW/xFFa1LJ794mSx8uNLxZX/XGjwig+LRNKy8KZ/9faZk5NjBp4kAN0A8GYM + eq/COzqIga8UfBCD5ivgTWhj/TG4JnkilMzPz7991KhRBCrn4sWLxdKlS8Xll18uFi1adBh8 + 4rLLLhPnn3/+w5T96KOPaF9LeGtGewWoOSnLNEuWLDkJ+WPIw7gGe3vBO9TgU180ZMgQjjBO + PAg+PIMXLlzoEWZezJcjGYBuldIJkOs5duxYyhgPvTZmY7r44ouFp8seO9evqP/duWLS4yPF + eU+OLuMnRok+G7tcWpd8w6c3Mo7NFgbv67UhS0x+fISY9tx4MWnfSGf3dZl/qxIOrWpRPOul + SWLFx0Vi5ScLDF7+0TyReOlfG+RSU1ONY4cOHVogVPzXsGHDTp577rli2rRpYs6cOUa7WrBg + gbj00ksNT4le1vTp0zk4noC39ElGRsZp1x/AceHIkSONPAFUToLVhAkTLoHuCICYH9pjAAbe + JIBad5UGHtyHAD1BMFu2bBn71Vdo65kAyQBc94cXFwQQHgPwjJVJvADidyF83YEyNi8sLNSA + dCaIIxXBaN++fZ8dPHjwX+DPPMWff/75Z2iAJQQ6NkI0miuUXjTCRXT3AWLOK664QtTGlPV0 + 2ZsWBRWN3zNILHlvprjsg1ll/P4sMe6RAQvqmnfwRV79825LFxe/OEEseX+mWPrhHB6dFzw9 + poT3W60NK5dtv6p58fQXzzFkrvh4rsG0JWHBXxPkOnXqZByTk5P9EGlsHzp0qLjgggsIauUe + FduE8qx4NF/DoOgk+E2ZMoVtbhuyanQqYWpWVpYvvMTvAWTGIAydJePGjetuDpvbtWtnBcXZ + HLgJuAQ4gON+da9Lly6upoq8kc/HCHcN0EYkVcLyakQ6A8TRil7XG2+8cVBIcjqdHmFJH2F0 + PUEg5ciLkKLck8GotmrWrFlGo6zNm+PchqfLHgeQO2vPQLHoveli8Qczyvj9GWLM7n51Brm4 + +YGbRuzsJRa8c1FF3uD5b08RcXMCks2y7a5JKp7y/Dix6P2Ly+UufW8aQC7sLwdyChAQzkXD + M/qZnhvBjd48PSq0hSPwirbBGyqIiYmJMDzy2NgIpMufOHHiDoDMUbYnCXgG2OH6cYBXPGXz + 8vJqtSE3N7fHWWedZfQLCVjX1ZLEjvD5KEFRAS6uhdWUAJ6pHwZ6Y/CXIa3o1avXORqRzgCx + otkQXn/99YMK4EpLSz3FTuZ35MiRrzESn+QoR/d/8ODB5R4dQpClBDC6+GzI1TEnbM8EyI1+ + pK+Y/86Foui9i8r4Hxj9H+5dZ5CLmeu7GPmIee+cLxaovMFz3pwsIqbZGptlM65JLD7v2ZGi + 6N0p5XLz3rlANP0Lgpz05CL69u37M0M/TmkQsDBI/o7f3FBT44pzQECAD7yusWgvxzk4Iq0x + FTN16tSSkJCQODfn4rZddNFF5d4hQtJUtXDmiuD5tUA/OoF+ZISp8CDvkeFrTXPhTQCkR2Ro + a4AjvLtkjUhnCOQ4mrz22msHFcB5GOiUZ/cxQs4SAipDTwDdZSaP7kqCGBs0wxFXzLkWz4Nc + YNGI3YVi9puTxNx3zjN4ztuTxbCdPeoMcrY0m0/vu7OOT39jvJjzzmQnmflPKB7ynFU0/aqE + 4nOfHmroVnbMemsiQC70LwVyDANTU1P9cTzKRSe2B3Z+eHIfcf7qFLNrjIH1Y0YQ9OjYhgA+ + 3wOQ/DZv3lxjQnhlJWoqhQCJS46abAZg5Y0fP95JXQTWCy+80K3V04EDB85AqPoV+t/XAOHV + vNa1a1cNSp4mLnUzjHz11VcPqjCTwPT77797jJ1lJE6cOPGvCRMm/E5QZZgK93ypsmPAgAGr + CXTw9pxqAcTMnLfwdNlji/yLhu7qIab/fbyY8daEMj4wQQzakV8nkAufWeaoxc7xaz14Z0HJ + Ba+MFlPfOEsM2l7wdPBMW+MXxI2V8fDKpsXjnxokLj5wTrkd0/5+togv+uuAnAojCwoKdnKe + iquT9ODRTv5b09yWK0pOrnCIzjnnnE8ZQah5ujFjxuyuLWzFoGssxlE/7DhZmz6A4gCuqKoB + GWl6ultueHtNAHaGd+rJLVKaLCDHEPKVV145aPa+PAlyZOXRHTt27N+coyPQEdSGDBmyUNmC + 8+X02IqKipxsmGZm+OB5kPMrGvRgvpjy+hgx9cA4gy96Y5zovz13gSf1+F1oa2nrZ4viuRBV + i5F6ZXzx2Cf7GrqVHRfCJlcgF11U+XfS5DPTLjyS7/JTE2/Xrl0aAYbTFxzs0A5O9OvXL+l0 + 1bOu4Wmlw7PilIyTniHbOgAuu4ZkTbjjgHKck4P395EbQDWRnqdc6S2FPv0KxJ+Jhg0bZizH + m0HO0wD322+/lQMdGfTe+eef/ys3R3JrSGFh4SJlDxr17dx0yZEcjVwo5kqZx0Fuvl9R/x05 + 4ryXh4nzXxtRxq+OEH22ZdcZ5CLm2WyhF3v7hM9s1CR8VpMmkbObNDHOZ3o3tsq2WRlTPHJf + oaFb2TH5lWEAuZBKIBeG/JotCQuOX+jbKmquX/cWi4ITWq6IDAyZ5lW+ehg83bU9wech/XTv + JuEzGkk7Ktgmp7vDZnobR5+JNnv0XF+/pHkBMYGzvJq4yi/I9Dpa4BSbd1yRf0DzpWFhUfN9 + OsTM9evS6uro0PiFQX62YWVhZvTsJrXWGcK+D9RCAwEDwLHZE88ZEcNaOXga7Qpt6Rm+naBW + cTt37uyVnp5uR6hsj46ODuZqLsNVyqOdfmg8ozZtjPvklJQUO99q4LkEuYsIcnKTcCm8upy0 + tLRyeTJ+Vwq3uV2kY8eOXiofsFvheH5+fvl5hw4dvHNycvwQ4gbAhqDu3bsH4Lcv8m10qnUE + O7xQD77I38gLzyIAnnMT07xjwwU59UBffvnlg2aAIzB5mmXeTh5//PHHryZOnFiKEdPJBghw + W2AKF66i58aQgQ2HzNH4TIBcnweyxIQXB4lzXxlcxi8PFr3u61RnkGs83uaXeFnI4Yzrm33V + /sakrzpITl0V/7RVtvXfoouH7u0mzn1pcLkd57w0UMQpkOtn82l6aeDulKtivu50a0vR9a62 + otvm9gbjvDRrTatPW62Iur0We3ybLgz6pO21TSvZ0+76Zt/Yeth8WxcFlIHhNK/CpMtCXk9f + 3fRo1m2tnDFFvlW8yaCKzcxeMZf4b2i1PPLDdjc0O95lXYoo2JQhusOugrszRM76lMOZNzV/ + NeQimzHRFHSBa9u4MRYdKhHP/cS0adOcHPw48NJsTzznxMTExgiBf5N769jenAhjveF1qTD4 + enTsA2iDfx8wYMCbXFlln+A0DrzKEvx+Ddf/zvsmfp3H/v37v4E+9G8OwrSbbRZt9UM4D5Xk + AWq7zTYBiOzwKLcCgI37vXv33l9bOQBiCtw6AoweRJoPUGc/IBo7zl0So0aNOj5ixIhv4In+ + E3bty87OHkj53NxcV4s75vM58Hhf46tnKEuJzOsX5Psf5P84BoDWDdqTo2vO8OCll14yQE4B + 0q+//upxtgIeju/BazvOBkXvDQ2pyOTR3cSGg4ZpNHqutHkc5Ob5FhVu6yjGvdBXnP1Sf4PP + erGf6HFvh7qHq/1s/u1ubCYG7ckTw57oVsaPdxO9Huj0QZU5pL9FFVPurBf6ldsx9oU+ImKG + X3T8Av/RLZdHity7UsWA3TnOEcU9xJjn+oixz5fxmGd7ixHFPZ0DH8kVne9ofSxxUZCxgQtA + VVnJGJtfyjWxJf12dTbsUPYMfqyrsPW0hdmy4L3N812ftipOdL+3vRiyN58yJfGXBsa4Kh48 + vQtpV5f1bUTfXZ2dzG/UM70qbMNxNH4PhY7CBzqKtGvjb62puuCNDB8zZowxhUEwgke3TXoY + nhrM96CNOdnW5HzweHWvoKBg97hx44w2xsGU87+Uox2U5W9eNzNkT6pztlP2IcqTWQYO0mZ5 + AOW/zPa0b9/eDhsO8K0f7gGcMGHCoepsV14UwKgFwG0/+omgvfAendBjOAnUSeY2FvYl5sm8 + 0b+XWPPj65zSg80GcH5GRwf6aaeRF6Mr5sXBgGUbP3686NOnjzH5ALmGCXIsEEFOeXAKlE6e + POlxNuVveHTHjh37hCMnGwkfDkbUS5Rtffv2XcMGggbnZDjg6bLHzPUt6nZfOzHy2Z5i9Au9 + yvi5XqJga0bdQa6Xzb/Drc3FsP3dxejnC418R+HYd3fnKiCHkLO43+7OkCkst4OymWuT7+m8 + obXouT1TDH2qwDmS95/vVWGrYlzDPefQ4gJDNmyqPaeKPSNtfm1Xx5cM3Jdn5E17mG74092F + ra0tKGFJyJu0t9/ubOcIXKMMbP8laq5PVEUojCioOeptvt/u9BsSROGOjmV2PVsoRplsr8S4 + jvp1DnwsV7S/tfkLNYRh+9gpVQcDiEzy5LOGJ7WUrxgqMIBn944pTN5L3QQzCRhOtke+zqXk + ed3MBEx1Lm1WaRTYVJIHOPzHMv9oR/s+wHZNWZT3UE0AB2AaijKc4EAAADO8UaUDQHQC5XkJ + eR1hH1LloFc8adKkca7yBcANB3CVsu8hfXlesOM71NMnzEeWzdDFAQCOx70N0pMbPHiwUZgX + X3yxXkCObPbuqPPw4cP/ApidZKPiyIGR6hLTqutyjiSjR49+wNNlj57bpKjr1jQx9OmuYtiz + BWX8TIHIuye17iDXG57cLYli0FO5lfLu9XDHKiDXfEV4ca+HM4375bLPFjgHI22/vdnOwcUV + 9g19Or9M7pl8Q8Ykb/CQ4jxnwf3pBwtTbF5JD6dVArnU1TEl/R7rXEnPkP1dRdr1ces7rW8p + ej/SyTnEVBeDnsz9JWSaPdxsa9Q8v9vb3thU9H6oo5NpZV4Vdhj25YuhFvtgtxNloa5JrhYl + 4NUY70+rzolwL9u8SlpXQnhYwHe0Zed1yukPbwkkCeA0hK1p8JayCYYKKGDTZ6mpqUm8pxgA + kQoPKEuep8ATuoKekwS0UoSM48zyUi7ZCnIAmQMsM3VNnjy5CsipDxIg7Vi+E8t+QECS8g8h + vOweERER6mJ1OR5lvQgAthe2FbgAuDGsb+ZHjxMA9hNCVO5B9DeJ+cABOhvgXyqB0wC6gQMH + Dm1wIMfVLFaaGeQUGJ04ceKMgBzztYaxOL6D0a6UDYUNBg94louH49GyRwLkcra0EQOe6iIG + 7s8p4+Ic0Xlzq7qDXB+bf/rNTUXfJ7LEwKdzyvPvvqtdFZBLWhZa3P3BDEN3uR3gAQZ3Ef2f + 6vxr3n1pxS2uDJsSU+TbK+OW+Fu77Wz3Zd/Hs8SA4hwnZJ3l6aCr3xPZInlV5C2VlIyy+bVe + FV3S69HMSjr6F3dx8lrhIx2cleoB3Hdf1i8+59pCKhY+Go1tfU2U6LYzw9m/QtZJu3s/mvll + ynWxSyJmNs5tvSpmeY9d7b7r93g2y1BuG/PP39bWlUfuDS/B+CADOxQAqBTPOtGTz7p169bR + HNDZtlQoiVC4SigeGRnJr90YtlAOHtKHbixsTJEARC5FmlobKsNVANcBLrQwHYDVpSeXk5MT + jOjmN4SnTnpwtAke4MUyxD/lekhLS2uMvnWE+bEOoL/G8iGUjwVY/sJQlgAL8Py4QYIcK+6F + F144qLw4MxidSTZ5dk7q/u67776U7/IZowZGupkynDgjZSfIZW1uKfo80Un0eUryk51Ep00t + 6g5yfW3+qTfFisK9mcg3y8i775NZouvOtCog12xZSHHXnamG7nI7DPlOzm4PpR/qsKFZmsuO + e13UJfm72sL+js6+UocqQ/6udGHLsQWVC4+2+bVaFVnSbXeGYUeFnizR+8mO4E5Ow06kzd2W + 8nHHO1tsb7eu2aLGZ9kahUwtW6yLXxL4XtY9yc5e+zLLbaXezA3Nr7HFWzbM9rT5ZN7Z/IWe + e9qby+Ts9XhHkXJd9DKzaEpKSiJBjl4NQQgAU4rOGObhx+0Nz8esQ+Tm5qZYhRISEgJpC705 + yo0dO7ZWkAMQTGEYyTZL23HuNsgRHJkOHpNLkMvLy3ud27zguRHkuCBg+MDwqE6rEgCaj3EO + DvVg5AcANT6HAptdzZOWjdd9+mxjOE87WX8YgPIbFMihsoxR7bnnnqsCcsePHz9jAKfyNoew + 1I/r7/ArEhw1uMESDeGMAV3k3MZFmXc3Ez32ZYieT7QzuMfjGaLDxkSPLDy0uTFadNvTVvSQ + efd8vJ3I2d6qCsglXhFcjOuGbmUH2Nn9iQyRuSmxJ/d7Nb2kcpq4xWWRRctrwpfl7WpTKS31 + dd/bVrS9PW5czM1NykGu5TVhJXkPpRh2mPQYupg+f3fqG7GLfFw24OCL7N1arY4QXY30Fbpy + drR+2bDjqvAqaRyjbcmZm5qJbnvTzfXrzH2wdaU3GNDhc9gOCSwEH3Sk33G5iaefNzqrMcEu + dXDxIcfFSmwgPwNGOfmJL7dAjh+6oDzyLYW34xbIceGBc2JMB7A7ZAmvyZ0ZpmLgN/oCgObI + 6Zadq6mZmZnNAWpctDDmuOGxrrFuS3FFvr6+/txqpj6Lhmd1V4MCOa7UENEVyJk9OAJRfbDJ + s3MS7H766aeP+boZXWQ2fDSii85E2SMAcu02NhVd96SI/H2pZfxYqsi4s2ndQW6Azb/VDREi + 99HWFXnvTRVZ25pXAbmmVwQW4zp0m+wAd97Z8gdX81flnXZKgi14mj0pfUP873mPtnGa03bd + myIytzS7Vsnax9j8ml8dWtL5wWTDDrMsue3a2E01DgjzfJ+BHgE95em77ksRKTfHjHIlv1X0 + LvNSV4a802VXsiErdTlhw3fxywKDTPNT7ehl0Vvg88bx96ZNm/p7+nkXFhYSMBiiGSCGgbPK + dwOTkpICJbAYciNHjqwV5AASU+htMU9OuaDt1gpyHTp0sHPbCr9cQj0AnkMuPKmFDJ1ZL5SB + hzmsLuWHVzgZAOVU+QGMM2pLo1ZiMUD8Qq+TzwfA/1aDAjk2LqLzs88++4eAXElJSSXPTs3X + HTp06FM0mJOch2DjARhPPBMg1/bOWNFld0vR5dHkMn4kWaRuiKkzyNkBci2vDxPZD7cQXfYk + l+ff4d7EKiAXvzSguP29CYbucjvASatCVrijK/FvgZ92fKBZpbTk9Lviniz3qsbZ/JpdFVTS + cXtSZTnY1nF7s//WWJahtsbxS/2Ptd+a4Oz8SHJ5eTo/0pI2zoi9zGdy5LwmVThqfpNzElcE + PZ95f2KlsmXtbP5Lq1siIlT+LVq0CKf3RK+GHRDHUoBAtCefdVxcXABBjqDCzkoQQwduXmUR + qHnzQE7Kc4sG5eDB1ApyAKMpDAGZJ7gUgOc2yNEDZDoAziEX4Pks8nLSDtTJSciGu9rzdgog + t50emczvcFZWFlfO7W6wTQEy39FF3fy3wYEc3VCCnApVFfiQf/nllzPOShfZHMYeO3bsTTx8 + w7U+ExOeBLk2GyJFx4eaiY67JT/cTLRaF1FnkGs0yOaftDpEdNiVIDo+UpF/+pa4KiAXe7lf + cdutsYZusx2xl/mOdEdX1AKfB9I2x4jM3YmV0qduiikfcRsNt/klrgwsydgWXyEj5TLujbul + pvyDp3jFJwIg21nSQp8z4/540WZ9lGi9LkK0WluZW6+NFKkbY0T7nQlOc7oOOxN+a3NndIzV + y+LqJ8EFnkJpTk6OR7/I0bZt2+YEL6mDHVUA0KqsTLZs2TLQbAvA60M3wGMKPS6CALh0yJAh + boFcjx49DjBiYTocq4AcPM1veJ92wJ7/8o2GutQBIqIvVH7USWCm1wo7ODdXLbM+GPEBZJ3S + lh8QSjec/6lQk6zPPPNMJZAzA119sTl8ZejK1d7Nmze/JUf3//N02cPmNCpKviNMZOyMFRkP + xZXxrjjRYk1onUGuyWCbf+K1gaLtjphKeafcE1kF5GIu9y3GdZHxoMkOnEcUOdzq6OGzHAuT + N4RXTg9dbe6O+LLcnhE2v/iV/iVp90Ub98rlwMnrQye2mVH99xpDZziSE1cHnmy7rWpa6kwn + 74xxwWX3MnbFVkrTdnvMieQ1ocb+u6KiItWhf2QH5AQ+BzZ0qt518VpcrMyP45wcPSfq4K5+ + V3LJycmB7Ni8T6ADeLkFclzAozy4FOdugRxA6wCBhungYbnaQuJknfA+jv9GGer0x0ao4xKG + 1Sy/rGejnLxWE9MGyql0OP+hU6dOQQ0K5BgOKpAjwJg9uJ9//rne2OzZEexoz6ZNm97lqIMR + 5GvPg5x3UfO1QSJle4RI3RlZxjsiRdJtQXUGOd8hNv+mq/xFm22V807eFFoF5KIua1KcfHeo + SNlRIcvziHmOJHd0hc5yzEtaU7UcLe8MKe+gPiNtfnErfEtabQ0z7pn1xK30qfGrGWGzHRlN + rwv4rc394ea0zvI8auIdVa+1vi/scNNrA0ItQHEdvSF2JnYqgNxiTz5reIa3s62rDguv7m6X + K9atWwcCfAg6yo5aQQ5gPIUREeXBpUhTK8hlZmbaAToHWGamg/fnCuQMO2gvwPALhJd1AjlV + LuYH/h3nP5wKwwbjCBD/pFWrVg3nn+TUStLTTz9dDnLKi6uPULW60NUMchw9AHQeB7nQOfai + hNv9RcttwSJ5e0gZPxAiEm71rzPI+Q+1+cde4yNa3lc57+Z3BVYBucjFjYuTNgaK5G0hlWTD + FzZ2a6I57BLHfYlr/JE+2Ein0je7I+DFctAd5eUXs6JxSfN7girJME3EksbZNeY/y7tN/Grf + ky3uDbamPdF8Y+B3SXcGfp90l5sM2WZrAz6IWOjwt3gZHdgW+QYOOyIA6R9qlbEupN7RBIi+ + DSBy0nMiA/RSXcmnpKQEwhZ6cIYc7PjQDQCdQtspD/tLce4WyOXn5x/gqjLT4XjIFSjRDtYH + jj/CrpA6enK/q/rF8asuXbowNPc7VUY+vgjrG86cHF14TkQS5BTAmT24Y8eO1Ssrj45Ax9B5 + 48aN78oQw/MgN9teFHdrE9HsPj/R7H5/0Wybv3Eed7NPnUEucJjNP/rqxiJxq29ZvmToSNjg + WwXkIhY3Km56p0+ZHdsq7Iha3nilW+FqkePj+HU+IvE+6vBTupzxd/hsVjIBo2x+UcsblSTc + bSorj/f6ieDZ3qk15R80zSsxelXj44n3mNKCE+72LfHEc+AeLYBZKMLEo/ASnOiAToZ/8FwK + PJE/AKU9gYuAwrxx/AZhmJf5JXUzyBUUFBiyBBgAllsgx35Em/nvYTh3G+ToAVIPjodczKH9 + KG1m3r8h36i6vMsLff/l3Br1EVQBcsG2vwLx4XB1Z//+/QfVfNwfDXJkBXJ33XXXu3J+xPMg + N8teFH2Lt4jb0kjE3St5ayMRfVOjuv+RzQibf+RVDhF7jylvcMz6RlVALnyRozhmvbehu5Ls + Gu9/GwLLXesImeFtC7nAERt2uf232A2NnOa0cfch/YZGU1NE2fxw4GibX8Qye0nsxso6WPag + 6V6tagTsc+0BESsdR61pY5E2dLpXSugiu0eeBzrdHWyP7Ijk3r17vx8SEuLl7v+tWkm994l8 + P+c8G/LkXB83md9cXZq0tLTArl270oNTNrgFclzUIGAhTSm8HbdADnoOsLxMh6OrLSQv47pT + 1QeAuk5fK4A3+zw9TuaF8h2Hp9jU028R/SmJqytcMSkuLjZAToWpCnSOHj1ar6z00gZ6lgQ5 + zlnAmzsDIOdVFHmTl4i5xy6it0jGedSNjjqDXBhALvxK5LUZeW6tyD/qDkcVkAtbZC+OXGex + Y6vdGb3JLsKv9u4Rd0NVEAmdKY+X2C8Ov6ZMtjztFruTeYUU2dPLvbExNr/wZV4l0XdWkhPR + sC/4YkerWsuzyP5y1B12EbOlcl1F3mA35rbC5nrmmcB7OY426URndLJt5ubmntYeyQ4dOhjH + 7OzsWQQtgJCTgMI8bXJbRDWrsIEAA0OO8gCsWkEOQDGF82eUh92lANRakYOfWkLZDnDlUuo5 + 5AKUlqn7BCeA3LY6zksuINir/JC/scfR+s9j/3PEEYhzXk899dRB86LDHw1y9OYUyMnJ0jPi + yZWBnAOdF7zVYQANQG7eaec5pTLIRW+W+W4t01E9yNnL7DDJRm9xOCNvtn8SOt+WWA1I9w9b + AnvXEnAgL9MSVKPWOiptuakAOVNZeYR97oBcyFSv/pE3lekxbFPlQX7Id4pP75q//RY40eYX + MtPRIfgiL79avLnJBAyCEsGOnRIg0k96P6c0D4djH3RsY4sE82JbB+CNkh6by7Tp6ekGyFGW + DG/HLZDj/BnloacU+twGOVlW2njIsphB+/MYZtN2MgGPf2CtQvxT9JIJ+LkqP6lTNGvW7H// + bxDVniAzyBFgFOAcOXKkXlmBHW1g6EyQ48Ts8OHD6w3kIm91HAhb7LU5ZK7jnpC5Nnd5e+gF + FV9xqCvIKRBh+qhbvUrCixzXB19obx9vs3mFTLWPDJ3j9WD4FV5O2Cqi73Y4o03pCETBiyqH + oHUFOSOsXml/KXojdKGOyoGYg8IGhzPiWvvR0Fnel4RMsWUFwFPyG2JrEnKhPTt4htd5IZd4 + 7QtbgjKssP8autgrs4aOrzrkeoIGt1AQ5Ngx0UGnmkNQNwBuMvIp5fyaygcAd6/0aKpND68m + kMAo9VN3rSAH26bk5+er/WbU6RbIQc8Blk3qOVQNOL1OW5CvUQbo+agubR46/6nyo15+fFN6 + 0LXZ23BBjhXHiX2CnHk+ToHNHwVyBFgFcnJF6MyDXJmH4mQIF7UO4HIbAO8Wh5tsF76TK/5r + s84gBy+u7Ggvs+cOIzQUEdeAV+H8JiP0Ne6VA85WpsH1NY6HjMWGaZ4DudT53raQIq9Ohjdn + hOAmML7HwXDZCb0i4npp41XyuNpLwBtlfTqjNkDmJkef6j7RTmrfvr3qjA8SOND5nAAAJ0NO + XHsDgDIyJSXFp5q0vgC30ZA5AHAgqDllep5vpwwG9NrC3EB4Zuz8BrjCq3ML5Oj9EVDBpTiv + FeRgpx02HmC5qAf6DlUjFw2v7meWQ+bPEP4L6Oxey5xfK6SdC7lgi61JsO+kqleZ32uQ7VAL + yGVggFmM+mnSIEGOc15PPvlkOcgpD45gc/jw4XoDOKVLgRy9yjvvvPNdrgYB6OrHkzN5Q9Fb + 3GeChe+5ngM5MoDtbaY3AG+LvH93mXdXdt1eETpuLZOJXuf40uUKqQc8ubI5QFs+wcwo1z0V + HmRZfnYjPwMEaefdZb9pt+H9sfxr7Oe5qwtgsxId0gA4AhbP0SEFAQz33kan2wq+Gnwv+C2C + E+8BDJlGpeM14+/+MjJqfVWT4GCAHEGLaaGvVpCD7im0S+orxblbIAc9B1Q66DtUg+wY2iNt + ckq7WAd8NWsH7k8BCPXC+WyA2HrwtywDPVIcK8XlLVq0MEDZZG95vUL2U6ZHfmNxHII8F8k6 + PqrqFvcSGhzI0WXlruYnnnjCADnlxZmBpz7Z7NEpkJPL+WcG5G6u7MmdLkdbQW64BLm7K8vB + o6ke5Mz5wSafs22NIld53RFlLBZYwGlLpbDWGX2v4Xm+FjHfFmD14lyC3JZTB7nQOdLeJfb0 + yBu8vo3eVKa7kk1bKgN1jBoEpFzEDY41bgKc8jyycf6mBC+Dce6Ux0pMcJOs5F5H2iyZj1tt + gq8rQVblx47vFsiZ7CvFuVsgpzxOaeuhakBX6egEW45LHU5rHRCEFMtrxn3oKLT0d6W/G2RL + VV3JPCvlZa4HdR925DRIkOOc1+OPP14J5BTQ/fTTT/UGcNRlBbkNGzYYIDdo0KAzAXJzEF6d + jLrL8XNdmeDhN9lWvos/aBRAbgXCtPW4p+Q2On6OvM1xoIodl9ofi7zNbtwvz2+D/SS8MmMV + MHS+Y2Tk7faPkU+p4SVtKfOOjNVYztltdHwaudpe44pw0DiA3FL7oai1jgo9PG5w/Bo8w+H2 + e6KBpj+jCb/CNi9qnf0DlP1ouWd5T4VtZR4ceKOjJGqj/R8Ida8Lv9jWzF1d5nkgdK5x4OfR + 8f6Pna8G5v3n0YnHWefp3NQZAHkn8vgZXAKdb7oBWOdB7hemwfEYfme5A3LglyBPPT/j/Cs3 + F1Wugvxn4N9VmZGHtQ5+BX+E65sBktX+d298fHwjyKyB7FfV1afMuwT8Hs7XMnxucCCndlXv + 27fvoFp0MHtxP/74owE+9cUK8AhyDJ0JcnLPksdBLmSmo1H4CkdA5HX2gOgbHHXiyNWOgGDT + 3/R5jQUILHYERFxrkrveERB+jb3KalbYPIdP+FWOgKjrK+yIuA58jcMWvqzsW5RBs70ahV3t + FR62xDEw/Ar77PBl9sXhl3sPDrnaFhe60GF81TLs8mr/6N0WfD7uX+rwj1hlN+xQ9lAPQM7r + dOsweJrNEb4K+S61pYdc7hgbcYV9Xvhy+6LwKxyjI5baM8PusodG3OgICJpa8VHNiItPTxfD + TXQyH3AUOlweAGkyzi/HcRJ/86sa6NQ+dXnnNT09XQGdwTj3cwMYvZU89PsTwNxZAYasL2xW + evxrCaPN+hrDzgCk7Qm+AOmXgqfi+gDI8RPuQWDvU8ivCfIJxZEh6sXMj3WLa90IkjiyTI4G + u/CgdoIT5NSiw58N5Linp3///l/bNLmkgFl/rP4XaxNY7jldta3y/SU2t4IuuOCCetOl9hw2 + WOLqCndA792796B50YGAQ4D74Ycf6pUVqNIGAi5BjpsX4c1pkNOkSdOpE5fK+VqJFeTUHBlB + pz5ZeXRmkOPGRQCdBjlNmjSdHsgxHNyzZ89BteigwlR6VocOHapXVt4cbaA969evf1fuJNcg + p0mTplMn7pVhOPjoo48anpwCOeXFKeCpD6Yu5dGZQY57+QB0GuQ0adJ0eiBHT4kgpzw5ApwC + nu+//77ePTkybWDofMcdd7zLbS6FhYUeBblT2VaQmZnpBc4Ax52JZ1CdLaf79Q1Np/Z8/0yE + NhYPTueXg/VT9BBxFzU9pUceeeSgWllVHhwB7rvvvqs3pj4FqrSBgEuQk+8Rfn0GOkJ0x44d + c3DsgmMX89F0ngBuDP4NvOZMPAMu4SPvWHAud7ejkXfOzs4OkVsSjO0d3Kmu6ZSfb7yr5yvZ + 689oM+zaADt/AQd7KD8H2pDjL90Q+DoHQW737t2VQE6Fjwp46ouVR2cGOa4AA+i+PgMNah4a + k0Aj4Osq5czf6hpkbsCxEY6/ZGVl3XKGGvZKqYs6v1fn4N/Bz3Jkp9ypfnnif5FO5UVx1OOV + 1T1fPtM/afnWwbafcHT7PxQse94qnYN3gPd37tzZ+y8NcvSUHn744YMMD9Wig/Livv3223pj + s0dHkFUgJ1+W9ijIufpsDxrD42xgLjrLGQU55L+CoIaQ3G665gN9c3H8kR0T54UNOQzz8LOb + KjtvbfW6nPXawLzPUwY52XavBt9pHRA0yNmMrz0YX0Gwgpzy4szgU18hq5qbI8itW7fuXc4b + Aui+rocGth8d6LArkGMIgcZSBeTcfSfSHZDjrnP+Nm9ozcvLI8A6CXTQFVkbULuax0tOdv3W + llmPGTytQGr+zU8dLVy4sEpe1g2j7swnuvuxRlXHCtRQ7tthU0ltc3AEOekVO051wDN/b276 + 9Oku68wKKOZ83Pn2nSsZVyDnajOuqhP16Snk9QLSfeFChxfqudbQ3KzDbNe0adMa9meWSHzp + lp7SQw89dNC86GD24r755pt6YaVPeXIMndesWfMu5w3rC+TwQKsFOfCNuN8Ox/U4vonjPTjG + WzsajqkcVXH8O47b0BC71uSFWUHOxX2+wuRUI7VJT3dc24jj2zjuQsOfbgYD9WcjaMDhuHYN + +AnwWxzdkaan7CTjcX6fi047G9c3AKy85G/Oae2R5+eDn8TvZ8B9pS3tce0O8Ks4v84VAKHz + 8GsZD+P3ARz5HmSkslW+inQXeDDkUnBkXgdw3Irfia1bt1Z2PQj+FMw50gfAj6J8QdV5cjWB + nOrMuJ/NuTD5TB/Bca419MP1neCzLHXETzvdi3wGmK7R7tkAQw5OV4JfgcwuyOQocFKfk8L1 + DKn3LZaF/2nBgdQMcpTnV0Hw+3YwP4n0Englyuxjqrvd4O/wm+/A3ssy+Pv7exEA+dob2y3k + vcygCNnF4L249zqOt+F6S8tAko17j8n8z6EO3OM7wUsaJMgRRFyBnAK6PxLk6MkxpIaNf7gn + JzvAUYINGsWdOJ7E8XM0RG+T7FA5t0bZGTi+In/nu+vJuQCcIDAb8X7VMZFmmMyXHYR6dsgO + vcMyQifhein4v2AC3WU4fsTGLxv9Da5COoImZI7Ay3dIfWNl/gS4f7GjMZTG+SH+VR7O/03w + Bz8l7dpgKSMB7CT4JvACyDDtl6b7UeBjuLZTzkXeJfkEQdFkFz+r9E8JchxkdqJtBNYEcq7e + JTUBbzdZrg/4qSIct0jP+VlLfTCf1ZY8guUc33yTHKcXHsXx7wQJHFexXJTr3r27wwSwSbjH + 53IQeglE17Gs4JfNIMcFEj53XHsZcjNxvlnau95kx3b8/pYfB5CD3o4WLVookHuez0ut1gJ8 + veSgeFwuciyQz5PlyDbZN0rq4bux/2E5wC/Jeri6QYEcP6lCEDGDHMPF+gY4M9BRN21g6EyQ + IxDDxj8a5A4T4HC/pek6R+1fwdEm8OHCwVpLegLdR2ho3qcJct7gz8Af84uyeGZhsrFtMstx + 3k5en8jfffr04Zcu+G/nb6EOvS3g53WqICfz/sKkr6289h/zlzdw/h4HgPT0dLuU60U51FEL + U7ilAOJiE8gdYRhq3qojO6IAGS/Pyw54mzVc5ee9q5uTQ1l3ykFgh/TIjA9RFRQUNCagEpQs + Ze8sO/j80wQ5pp1skmsur80zXfsKv/+JCMU8D8uV/J/lMzNArlWrVraIiAjrs6F3KMzhM2yg + l/VvS3uoAnL4vUgCf/nntRISEmzSS/ya3qkF5D6Ni4vzMul+D9e/RX03nBVb9c2oXbt2/Sk9 + ubVr174rv5H1h4IcHu4RNJqXLI1osmwwCbIB9OVvNKgoGX4F4xp5NZijc8hphqvcYvIFG5gc + 2efIObrk+PiyaJkrr/wCB70j8IsIiSg3Ui5aVDupcqqeHHSM4O/+/fsr29gRvrGkNbw25B0m + f9P2F+XXNoJlvbBMb9BDsYDcDkteo6TeliYvYw1Bzo1PoStPjtMGb5Dl+eUynwky7w4uBjV6 + i2/yX7VOA+SOyvluw2Pkl0xwpJd2h0zXSdbbWBcLBZxS+MG68IDfiQRfcFfVXvD8I0z3X7TO + ybkCOblq/5R5YOAAzcUcaVNrM8jh2N9S5gcJwuDABgdyDz74YPnCg9oEXN+rq8qLs87J0UYA + 3R8eruLeWkvDK7SA3I2yoZTgeNzE9BaOo9FFn6YnF8oQBvw0Ow34dhkCxZi3lcDbZSjyD8h/ + yL1RqLfLZAiU1LVr1zqDnOxYcRa5n5DHE5Zr1yqQ4+eEGNKyDhgiqTqR56y7Iwrk6CkjzY0W + j7OdBOq2pwNyslPz+XkpNs3F/Y3gA25m/T9TOVf1BWQbnQrIyRD+OYscw/lDuL5J1vkomV+e + dVKfYb4KV03zZw/I0PZbhrNy6oJ1EnkqIMdPUfFbefh9fTXzvrSpv8WTC7c8W85H/4j7Dec/ + W/lRPDJBTu2TU97cH7VPTr2/Ss+Snpz0Wv5oT67KFhJcrwRyOG5WDUV6IOWM35yra3yanlxP + eX++bICcnP4Z12KtK2m4RpB7n9//4mKD7MTN3fHkzKuduPaoK5ADkPpYGj29rweqAzlwoOz4 + XKQYaa4Tyf0tc3LXVQNyaXUAOUcN941BwLoHUYLc5wRIVyAnv21XnSdX7ALkvlfTC5A5R9qV + Z/32HWQ2mufk+L04KTvYpGPgaYJcBEGOCxEu6qKr1NPLDHLp6elBFrmGB3KyYGLHjh3/B5D7 + HSD3K0DuV4DMrwCbXwE69crUSd20AZ6l87bbbntXNrA/w8JDbSBnhD9xcXGOU9RbBeRSU8v+ + 1B4emK98RkdMjXeqvJamJtHVRxhxjZPE+7klAMdzpVzn6rYicAWQNsfGxtotNn3gCuQQgvla + 0h/GAFQtyMm0/6cm8mtYYaYnd8y6MlsbyNX0rTM3VldHy7yzlW0ydONc3af4/SrKpuayhJq7 + U1tyoDv1NEEuT+o9V62gshwSlPab5+Q4D6vavskDXVENyH1pruNq5uR+U55mUlJS+Qo8rs2U + ZUw2gxzAPPh/BuQKCwuPDRs27Ic/Ew8fPvwQOtnPfxaQs+6TI8jJ+lPhaqCce3m0mvxrBLku + Xbr4WK6P4aqo1JEsQY9zPY1k533a8iwnyLoaKDsPvx5LuQ9reP7DZF79TdcukPl4BORwXCB1 + 9HSh/3RAbpWaeLfmU82cnKOGZ8729bYF/PrL8psXD76lrCXtf04H5OQ1RgY/mFdcUdamcmrD + DHJcpRVt2rSxm3SctIIct/dYpx2qmZM7V9rc22LjR7I8jf7nQE5O9qrXiP60TM+iHgD/WWtD + ltcby+0it1vqrpfsgIlqZMTDv1x2LIY7C3G8DUc28Ek1PIMr5TPg1oNNHGm5RUKWfQdCBl8X + NvWR2yg+5Kod522k3k3m/VD43Y8rwJwMl17bSrlCdqEpr2+lfm7v4MQ3vbg97IgmkBtXDcgR + JHZarnE7RClsCM/Ly1PXnpP20U6+ybEL1742pYmmd8bX6Gqbk+Ofqci6oZ3LrQsHpnr9m1zV + rQnksuQA9gWORTjeLetit/KypNxo05ad6+XgcwXDP+S/wFSOo9w/aAU5zl1yOsMEpN3lMz4h + t+NcJ8P1pyXYK5DrKu3hFqBLCchyIcvqyY2X9j2DI/8HoqkEOW77+JIgZxpQ9sg8uZeT++UO + yvbR0erlWkGOaeQug4YDcjA2C0Y/xj09f2LmZsc29TA/OY1A4KIjOMD0HoZbOmAyX9oHl6+a + 8k96cZ0vhrMjvCbfRRzQokWLxjU8g06QW8K85GbXZfy+Plew1B8hu3o/sV27dhHye/zcXLsO + aYywFKN+Jc+RL/vj3jXI43WGYBKEQkz5Rco9ZwSiMdzqAvmz+Kcp8BzVZuD2nBRH+bwtdXMV + w3RLPQ7m/BX0lf8/AsuB332Rz/1yVZX/S5Bhyof/dXA1NwNbFsZiqBdljbbU2QBZv/vURlsX + 9doPMjdU9zK+qsf27dtzJXwhfnNg2kgA4vVRo0YZdcjBi3UqPWuCyDrUUSuUkx9uWM1N2aZy + ELCmWuzwloA7zqyXg6N8N/oAzi+FJ8/V54GsU66Um8JTflDgKTlflwJ7ufdxQ1paWvn/QmAw + Yn4z5AbqHUjbXIIc91AuUR964DVurJbzvFtxfJGr9ajnIEuom0EdGGCt0QXB70rujWwQAGdd + Ufork/n1rJreDzVtIj2l/B966CGX10/3+/nV/Yeo9TUzV/vHaiN2mJrCbAW85ol/dV7dn8hU + V87qXjkjWV+hUgsjar9cTeGqu68iVfdqmdXe/Pz82gZIl/VRnZ3uvg5YWztz99U4d6ZNqmtD + qi5qelaaNGnSpEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnS + pEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnSpEmTJk2aNGnS + pEmTJk2aNGnSpEmTJk2aNGmqif4fv2ovuUlKae4AAAAASUVORK5CYII= + + + + + Credits + 1867 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2023-05-03 02:05:41. + * marks developers whose first contributions happened after 2010-09-28. + Developers committing code since 2010-09-28 + + + + + + + + Ruediger TimmCommits: 82464Joined: 2000-10-10 + + + Caolán McNamaraCommits: 34437Joined: 2000-10-10 + + + Kurt ZenkerCommits: 31752Joined: 2000-09-25 + + + Oliver BolteCommits: 31008Joined: 2000-09-19 + + + + + Jens-Heiner Rechtien [hr]Commits: 28805Joined: 2000-09-18 + + + Vladimir GlazunovCommits: 25434Joined: 2000-12-04 + + + Stephan BergmannCommits: 20534Joined: 2000-10-04 + + + *Noel GrandinCommits: 17592Joined: 2011-12-12 + + + + + Miklos VajnaCommits: 9504Joined: 2010-07-29 + + + Ivo HinkelmannCommits: 9480Joined: 2002-09-09 + + + Tor LillqvistCommits: 9160Joined: 2010-03-23 + + + Michael StahlCommits: 8192Joined: 2008-06-16 + + + + + Kohei YoshidaCommits: 5571Joined: 2009-06-19 + + + Eike RathkeCommits: 5303Joined: 2000-10-11 + + + *Markus MohrhardCommits: 5203Joined: 2011-03-17 + + + Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 + + + + + David TardonCommits: 3648Joined: 2009-11-12 + + + *Julien NabetCommits: 3620Joined: 2010-11-04 + + + *Andrea GelminiCommits: 3481Joined: 2014-10-30 + + + *Tomaž VajngerlCommits: 3221Joined: 2012-06-02 + + + + + Luboš LuňákCommits: 3201Joined: 2010-09-21 + + + Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 + + + Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 + + + *Mike KaganskiCommits: 2700Joined: 2015-04-26 + + + + + Jan HolesovskyCommits: 2672Joined: 2009-06-23 + + + Mathias BauerCommits: 2580Joined: 2000-09-20 + + + Oliver SpechtCommits: 2549Joined: 2000-09-21 + + + Michael MeeksCommits: 2491Joined: 2004-08-05 + + + + + Bjoern MichaelsenCommits: 2488Joined: 2009-10-14 + + + *Xisco FauliCommits: 2486Joined: 2011-02-06 + + + *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 + + + *Thomas ArnholdCommits: 2176Joined: 2011-01-16 + + + + + Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 + + + *Andras TimarCommits: 1987Joined: 2010-10-02 + + + Christian LippkaCommits: 1805Joined: 2000-09-25 + + + *Olivier HallotCommits: 1772Joined: 2010-10-25 + + + + + *Matúš KukanCommits: 1712Joined: 2011-04-06 + + + Armin Le Grand (Allotropia)Commits: 1549Joined: 2000-09-25 + + + *Takeshi AbeCommits: 1486Joined: 2010-11-08 + + + *Matteo CasalinCommits: 1476Joined: 2011-11-13 + + + + + *Chris SherlockCommits: 1453Joined: 2013-02-25 + + + Thorsten BehrensCommits: 1441Joined: 2001-04-25 + + + Fridrich ŠtrbaCommits: 1338Joined: 2007-02-22 + + + Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 + + + + + Niklas NebelCommits: 1296Joined: 2000-09-19 + + + *Jan-Marek GlogowskiCommits: 1232Joined: 2013-11-14 + + + *andreas kainzCommits: 1228Joined: 2015-03-18 + + + *Tamás ZolnaiCommits: 1208Joined: 2012-08-06 + + + + + Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 + + + *Samuel MehrbrodtCommits: 1161Joined: 2011-06-08 + + + *Szymon KłosCommits: 1156Joined: 2014-03-22 + + + Christian LohmaierCommits: 1111Joined: 2008-06-01 + + + + + *Gabor KelemenCommits: 1106Joined: 2013-06-18 + + + *Lionel Elie MamaneCommits: 1051Joined: 2011-01-15 + + + *Johnny_MCommits: 966Joined: 2016-05-12 + + + Petr MladekCommits: 958Joined: 2006-10-03 + + + + + Noel PowerCommits: 950Joined: 2002-09-24 + + + Kai AhrensCommits: 909Joined: 2000-09-21 + + + Henning BrinkmannCommits: 899Joined: 2002-08-14 + + + Cédric BosdonnatCommits: 882Joined: 2009-11-16 + + + + + Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 + + + Sven JacobiCommits: 850Joined: 2000-09-21 + + + *Maxim MonastirskyCommits: 846Joined: 2013-10-27 + + + *László NémethCommits: 833Joined: 2010-09-29 + + + + + Herbert DürrCommits: 827Joined: 2000-10-17 + + + Martin GallweyCommits: 827Joined: 2000-11-08 + + + Mikhail VoytenkoCommits: 793Joined: 2001-01-16 + + + *Michael WeghornCommits: 756Joined: 2014-09-10 + + + + + Carsten DriesnerCommits: 748Joined: 2000-10-06 + + + Joachim LingnerCommits: 745Joined: 2000-10-05 + + + *Katarina BehrensCommits: 745Joined: 2010-10-13 + + + *Andrzej HuntCommits: 743Joined: 2012-03-27 + + + + + Andre FischerCommits: 730Joined: 2001-02-06 + + + Release EngineeringCommits: 728Joined: 2008-10-02 + + + *Zdeněk CrhonekCommits: 714Joined: 2016-05-19 + + + Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 + + + + + *Joseph PowersCommits: 658Joined: 2010-10-15 + + + *Jens CarlCommits: 657Joined: 2014-05-28 + + + *Rizal MuttaqinCommits: 655Joined: 2018-05-21 + + + Kai SommerfeldCommits: 651Joined: 2000-10-10 + + + + + Ingrid HalamaCommits: 639Joined: 2001-01-19 + + + *Justin LuthCommits: 624Joined: 2014-09-30 + + + *Rafael DominguezCommits: 606Joined: 2011-02-13 + + + *Jochen NitschkeCommits: 587Joined: 2016-02-02 + + + + + *Seth ChaiklinCommits: 581Joined: 2019-11-13 + + + Rene EngelhardCommits: 577Joined: 2005-03-14 + + + *Yousuf PhilipsCommits: 569Joined: 2014-09-21 + + + *Adolfo Jayme BarrientosCommits: 568Joined: 2013-06-21 + + + + + Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 + + + *Khaled HosnyCommits: 542Joined: 2011-01-28 + + + *Jim RaykowskiCommits: 515Joined: 2017-04-16 + + + Jürgen SchmidtCommits: 512Joined: 2000-10-09 + + + + + *Peter FoleyCommits: 489Joined: 2011-09-04 + + + *jan IversenCommits: 474Joined: 2015-11-03 + + + Andreas BregasCommits: 470Joined: 2000-09-25 + + + *Justin LuthCommits: 468Joined: 2018-04-21 + + + + + *Heiko TietzeCommits: 435Joined: 2016-10-06 + + + *Ashod NakashianCommits: 394Joined: 2015-01-07 + + + Dirk VoelzkeCommits: 392Joined: 2000-11-27 + + + *Laurent BPCommits: 389Joined: 2011-08-31 + + + + + *Ivan TimofeevCommits: 380Joined: 2011-09-16 + + + Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 + + + Martin HollmichelCommits: 371Joined: 2000-09-19 + + + *Muhammet KaraCommits: 367Joined: 2016-03-20 + + + + + *Pranav KantCommits: 366Joined: 2015-03-01 + + + Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 + + + *Jean-Pierre LedureCommits: 348Joined: 2013-10-12 + + + Patrick LubyCommits: 335Joined: 2000-09-21 + + + + + *David OstrovskyCommits: 334Joined: 2012-04-01 + + + *Marco CecchettiCommits: 327Joined: 2011-04-14 + + + *Arnaud VERSINICommits: 322Joined: 2010-10-05 + + + Radek DoulikCommits: 305Joined: 2010-05-03 + + + + + *Mark HungCommits: 305Joined: 2014-11-04 + + + *Henry CastroCommits: 304Joined: 2015-01-09 + + + *Chr. RossmanithCommits: 300Joined: 2011-01-03 + + + *Stanislav HoracekCommits: 286Joined: 2012-12-09 + + + + + *August SodoraCommits: 285Joined: 2011-10-18 + + + *Rafael LimaCommits: 285Joined: 2020-11-13 + + + *Siqi LiuCommits: 277Joined: 2013-04-13 + + + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + + + + + *Vasily MelenchukCommits: 265Joined: 2015-01-27 + + + Lars LanghansCommits: 260Joined: 2000-09-22 + + + Bartosz KosiorekCommits: 255Joined: 2010-09-17 + + + Muthu SubramanianCommits: 250Joined: 2010-08-25 + + + + + *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 + + + *Andreas HeinischCommits: 228Joined: 2019-05-13 + + + *Regina HenschelCommits: 227Joined: 2010-11-04 + + + *Winfried DonkersCommits: 215Joined: 2011-11-11 + + + + + *Tamas BunthCommits: 203Joined: 2016-03-08 + + + Ingo SchmidtCommits: 202Joined: 2004-02-05 + + + *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 + + + *Dennis FrancisCommits: 201Joined: 2018-11-15 + + + + + *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 + + + *Robert NagyCommits: 191Joined: 2010-11-04 + + + *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 + + + Giuseppe CastagnoCommits: 187Joined: 2007-12-09 + + + + + *Khaled HosnyCommits: 182Joined: 2022-06-06 + + + *François TigeotCommits: 176Joined: 2011-01-31 + + + *Tünde TóthCommits: 174Joined: 2019-03-14 + + + *Philipp RiemerCommits: 171Joined: 2012-05-25 + + + + + *Balazs VargaCommits: 165Joined: 2018-07-05 + + + *Ilmari LauhakangasCommits: 162Joined: 2017-04-15 + + + *Nigel HawkinsCommits: 160Joined: 2010-10-28 + + + *Gülşah KöseCommits: 160Joined: 2015-03-14 + + + + + *Gert FallerCommits: 151Joined: 2010-10-25 + + + *Artur DordaCommits: 151Joined: 2012-04-15 + + + *Alexander WilmsCommits: 151Joined: 2012-05-26 + + + Gregor HartmannCommits: 141Joined: 2000-10-12 + + + + + *Matthias FreundCommits: 141Joined: 2013-02-08 + + + *Tomáš ChvátalCommits: 140Joined: 2011-07-27 + + + *Artur DryomovCommits: 137Joined: 2013-03-14 + + + *Serge KrotCommits: 132Joined: 2015-10-25 + + + + + *Dante DMCommits: 132Joined: 2020-06-22 + + + *panoskorovesisCommits: 131Joined: 2021-06-09 + + + *Jesús CorriusCommits: 130Joined: 2010-10-07 + + + *Mert TumerCommits: 130Joined: 2016-04-30 + + + + + *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 + + + *Sophia SchröderCommits: 128Joined: 2018-04-07 + + + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 + + + *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 + + + + + *haochenCommits: 126Joined: 2013-10-10 + + + Takashi OnoCommits: 122Joined: 2009-12-10 + + + *Sebastian SpaethCommits: 119Joined: 2010-09-28 + + + *Douglas MenckenCommits: 119Joined: 2013-12-11 + + + + + *Alain RomedenneCommits: 117Joined: 2019-02-25 + + + Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 + + + *Joren De CuyperCommits: 114Joined: 2013-01-07 + + + *HosseinCommits: 114Joined: 2021-06-29 + + + + + *Dennis FrancisCommits: 113Joined: 2015-04-15 + + + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + + + *Akshay DeepCommits: 110Joined: 2016-01-23 + + + *Aron BudeaCommits: 105Joined: 2014-12-22 + + + + + *Tibor NagyCommits: 104Joined: 2020-04-01 + + + *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 + + + *Rishabh KumarCommits: 100Joined: 2015-02-13 + + + *Thomas KlausnerCommits: 99Joined: 2010-10-01 + + + + + *Attila Bakos (NISZ)Commits: 97Joined: 2019-10-28 + + + *Laurent GodardCommits: 93Joined: 2011-05-06 + + + *Juergen FunkCommits: 92Joined: 2014-09-17 + + + *Justin LuthCommits: 92Joined: 2020-02-03 + + + + + *Paris OplopoiosCommits: 92Joined: 2021-03-07 + + + *Stefan KnorrCommits: 91Joined: 2011-07-04 + + + *Varun DhallCommits: 91Joined: 2015-03-07 + + + *Krisztian PinterCommits: 90Joined: 2013-02-18 + + + + + *Pranam LashkariCommits: 90Joined: 2020-04-03 + + + *Philipp HoferCommits: 90Joined: 2020-11-06 + + + *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 + + + *Tim RetoutCommits: 88Joined: 2012-02-14 + + + + + *Daniel BankstonCommits: 88Joined: 2012-04-03 + + + *Alain RomedenneCommits: 88Joined: 2021-02-17 + + + *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 + + + *Adam CoCommits: 86Joined: 2013-04-28 + + + + + Mihaela KedikovaCommits: 85Joined: 2009-10-30 + + + *Javier FernandezCommits: 84Joined: 2013-03-06 + + + *Roman KuznetsovCommits: 84Joined: 2018-10-23 + + + Tobias KrauseCommits: 83Joined: 2007-10-02 + + + + + *Minh NgoCommits: 83Joined: 2013-05-02 + + + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 + + + *Steve FanningCommits: 78Joined: 2020-04-20 + + + *Tobias MadlCommits: 74Joined: 2014-09-15 + + + + + *Gergo MocsiCommits: 72Joined: 2013-02-14 + + + *weigaoCommits: 72Joined: 2014-05-07 + + + Thorsten BosbachCommits: 70Joined: 2008-06-18 + + + *Michaël LefèvreCommits: 68Joined: 2011-02-22 + + + + + *Riccardo MagliocchettiCommits: 68Joined: 2012-01-25 + + + *Antonio FernandezCommits: 68Joined: 2012-07-18 + + + *Kevin HunterCommits: 67Joined: 2010-10-22 + + + *Jelle van der WaaCommits: 66Joined: 2013-06-16 + + + + + *Tomoyuki KubotaCommits: 66Joined: 2018-03-11 + + + *Rohan KumarCommits: 65Joined: 2016-02-23 + + + *Bogdan BCommits: 64Joined: 2022-11-01 + + + *tageziCommits: 63Joined: 2015-09-16 + + + + + *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 + + + *Kevin SuoCommits: 63Joined: 2020-10-10 + + + *Rosemary SebastianCommits: 62Joined: 2015-06-23 + + + Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 + + + + + *Martin HoskenCommits: 61Joined: 2011-02-25 + + + *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 + + + Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 + + + *Jaskaran SinghCommits: 60Joined: 2016-02-18 + + + + + *Sarper AkdemirCommits: 60Joined: 2021-04-25 + + + *Armin Le Grand (allotropia)Commits: 60Joined: 2022-06-27 + + + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 + + + *shiming zhangCommits: 59Joined: 2013-11-04 + + + + + *Simon SteinbeissCommits: 59Joined: 2015-06-01 + + + *Ahmed ElShreifCommits: 59Joined: 2019-06-10 + + + *Attila SzűcsCommits: 58Joined: 2020-06-29 + + + *yiming juCommits: 57Joined: 2013-11-01 + + + + + *matteocamCommits: 56Joined: 2014-02-25 + + + *Niklas JohanssonCommits: 55Joined: 2011-11-07 + + + *Matthew J. FrancisCommits: 55Joined: 2014-08-25 + + + Nikolai PretzellCommits: 54Joined: 2001-03-09 + + + + + *Mihály PalenikCommits: 54Joined: 2013-07-11 + + + *yangzhangCommits: 54Joined: 2013-11-04 + + + *Jim RaykowskiCommits: 54Joined: 2019-05-11 + + + *Rob SneldersCommits: 53Joined: 2011-02-08 + + + + + *Martin KepplingerCommits: 53Joined: 2011-02-18 + + + *Lior KaplanCommits: 52Joined: 2010-10-05 + + + *Efe Gürkan YALAMANCommits: 52Joined: 2012-08-01 + + + *Will ThompsonCommits: 51Joined: 2012-03-21 + + + + + *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 + + + *Cao Cuong NgoCommits: 51Joined: 2013-03-04 + + + *Rachit GuptaCommits: 51Joined: 2014-01-18 + + + *Ptyl DragonCommits: 50Joined: 2013-05-09 + + + + + *Samuel ThibaultCommits: 49Joined: 2018-02-15 + + + *Marcel MetzCommits: 48Joined: 2011-12-05 + + + *Urs FässlerCommits: 48Joined: 2013-02-14 + + + *mingli juCommits: 48Joined: 2013-11-05 + + + + + *Emmanuel Gil PeyrotCommits: 48Joined: 2015-11-19 + + + *Kohei YoshidaCommits: 48Joined: 2019-08-12 + + + *J. Graeme LingardCommits: 47Joined: 2010-09-29 + + + *Luke DellerCommits: 46Joined: 2012-11-26 + + + + + *hongyu zhongCommits: 46Joined: 2013-11-04 + + + *Alexandre VicenziCommits: 46Joined: 2014-01-15 + + + *Mihai VargaCommits: 46Joined: 2014-02-27 + + + mb93783Commits: 45Joined: 2009-07-15 + + + + + *Eilidh McAdamCommits: 45Joined: 2011-03-10 + + + *Christophe JAILLETCommits: 45Joined: 2012-06-14 + + + *Susobhan GhoshCommits: 45Joined: 2016-01-03 + + + *Szabolcs TothCommits: 45Joined: 2019-08-07 + + + + + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 + + + *Daniel RobertsonCommits: 44Joined: 2015-06-27 + + + *Luc CastermansCommits: 43Joined: 2011-11-13 + + + *Philippe JungCommits: 43Joined: 2015-05-01 + + + + + *Marco A.G.PintoCommits: 43Joined: 2018-07-16 + + + *Daniel Arato (NISZ)Commits: 43Joined: 2020-08-24 + + + *Thorsten BehrensCommits: 43Joined: 2020-12-19 + + + *Peter JentschCommits: 42Joined: 2011-01-07 + + + + + *Mark WielaardCommits: 42Joined: 2013-05-13 + + + *Damjan JovanovicCommits: 42Joined: 2015-08-26 + + + *Sébastien Le RayCommits: 41Joined: 2011-02-10 + + + *Christian M. HellerCommits: 41Joined: 2013-02-24 + + + + + *Tsutomu UchinoCommits: 41Joined: 2014-01-08 + + + *AdityaCommits: 41Joined: 2019-01-04 + + + *Francisco SaitoCommits: 40Joined: 2011-03-21 + + + *Grzegorz AraminowiczCommits: 40Joined: 2019-03-08 + + + + + *Kayo HamidCommits: 39Joined: 2010-10-09 + + + *Marc-André LaverdièreCommits: 39Joined: 2011-06-21 + + + *minwangCommits: 39Joined: 2013-11-04 + + + *Valentin KettnerCommits: 38Joined: 2014-03-17 + + + + + *Shivam Kumar SinghCommits: 38Joined: 2020-01-15 + + + *Taichi HaradaguchiCommits: 38Joined: 2022-09-06 + + + *Iain BillettCommits: 37Joined: 2012-04-11 + + + *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 + + + + + *Jennifer LiebelCommits: 37Joined: 2014-08-29 + + + *Ayhan YalçınsoyCommits: 37Joined: 2019-12-20 + + + *Guillaume PousselCommits: 36Joined: 2010-12-22 + + + *Radu IoanCommits: 36Joined: 2012-08-17 + + + + + *Vinaya MandkeCommits: 36Joined: 2013-02-08 + + + *Csikós TamásCommits: 36Joined: 2013-07-01 + + + *Priyanka GaikwadCommits: 36Joined: 2013-11-12 + + + *Ilhan YesilCommits: 36Joined: 2018-04-11 + + + + + *Aurimas FišerasCommits: 35Joined: 2010-10-11 + + + *Laurent CharrièreCommits: 35Joined: 2010-10-14 + + + *Santiago MartinezCommits: 35Joined: 2012-01-20 + + + *xukai liuCommits: 35Joined: 2013-11-01 + + + + + *dechuangCommits: 35Joined: 2013-11-04 + + + *Tobias LippertCommits: 35Joined: 2014-01-02 + + + *Łukasz HryniukCommits: 35Joined: 2015-01-02 + + + *Mark PageCommits: 35Joined: 2016-04-29 + + + + + *Yusuf KetenCommits: 35Joined: 2019-12-18 + + + *Andreas MantkeCommits: 34Joined: 2010-09-29 + + + *Laurent AlonsoCommits: 34Joined: 2011-10-23 + + + *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 + + + + + *Steve YinCommits: 34Joined: 2013-11-14 + + + *Cor NouwsCommits: 33Joined: 2011-11-19 + + + *Yogesh BharateCommits: 33Joined: 2013-10-11 + + + *Dennis RoczekCommits: 33Joined: 2015-06-09 + + + + + *Aleksei NikiforovCommits: 33Joined: 2018-10-31 + + + *GokulCommits: 32Joined: 2012-07-10 + + + *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 + + + *Arnold DumasCommits: 32Joined: 2016-02-14 + + + + + *Dmitriy ShilinCommits: 32Joined: 2018-11-30 + + + *Shubham GoyalCommits: 32Joined: 2019-02-26 + + + *Sarper AkdemirCommits: 32Joined: 2020-01-26 + + + *Martin SrebotnjakCommits: 31Joined: 2010-12-19 + + + + + *Sushil ShindeCommits: 31Joined: 2013-10-21 + + + *fengzengCommits: 31Joined: 2013-11-04 + + + *Gautam PrajapatiCommits: 31Joined: 2017-02-06 + + + *Patrick JaapCommits: 31Joined: 2017-08-01 + + + + + *DaeHyun SungCommits: 31Joined: 2018-05-19 + + + *Kenneth VenkenCommits: 30Joined: 2010-10-15 + + + *Wols ListsCommits: 30Joined: 2010-11-07 + + + *Christoph HerzogCommits: 30Joined: 2011-01-07 + + + + + *Manal AlhassounCommits: 30Joined: 2012-09-10 + + + *Bryan QuigleyCommits: 30Joined: 2012-12-12 + + + *Isamu MogiCommits: 30Joined: 2013-04-27 + + + *muleiCommits: 30Joined: 2013-11-01 + + + + + *keremCommits: 30Joined: 2015-10-12 + + + *Jakub TrzebiatowskiCommits: 30Joined: 2016-03-07 + + + *Daniel SilvaCommits: 30Joined: 2017-09-24 + + + *Regényi BalázsCommits: 30Joined: 2020-04-02 + + + + + *homeboy445Commits: 30Joined: 2020-12-09 + + + *Harri PitkänenCommits: 29Joined: 2010-10-04 + + + *Elton ChungCommits: 29Joined: 2012-01-31 + + + *xinjiangCommits: 29Joined: 2013-11-04 + + + + + *Matthias SeidelCommits: 29Joined: 2017-02-18 + + + Andre Fischer<andre.f.fischerCommits: 28Joined: 2010-07-21 + + + *Szabolcs DezsiCommits: 28Joined: 2012-02-16 + + + *Jack LeighCommits: 28Joined: 2012-10-03 + + + + + *Pallavi JadhavCommits: 28Joined: 2013-02-08 + + + *Yeliz TaneroğluCommits: 28Joined: 2015-10-03 + + + *Paul TrojahnCommits: 28Joined: 2017-05-27 + + + *Gökçen EraslanCommits: 27Joined: 2012-04-15 + + + + + *Joel MaderoCommits: 27Joined: 2012-06-15 + + + *José Guilherme VanzCommits: 27Joined: 2012-09-26 + + + *Andres GomezCommits: 27Joined: 2013-04-09 + + + *Thorsten WagnerCommits: 27Joined: 2015-04-24 + + + + + *Jorenz ParagasCommits: 27Joined: 2015-06-23 + + + *Dipangar NiranjarCommits: 27Joined: 2016-01-03 + + + *Ximeng ZuCommits: 27Joined: 2017-03-17 + + + *Grzegorz AraminowiczCommits: 27Joined: 2017-04-01 + + + + + *Adrien OllierCommits: 27Joined: 2019-04-24 + + + *Nicolas ChristenerCommits: 26Joined: 2011-03-10 + + + *Josh HeidenreichCommits: 26Joined: 2011-07-20 + + + *Maxime de RoucyCommits: 26Joined: 2012-03-08 + + + + + *Daniel SikelerCommits: 26Joined: 2014-08-28 + + + *Akash JainCommits: 26Joined: 2016-03-25 + + + *Dr. David Alan GilbertCommits: 26Joined: 2020-09-12 + + + *Noel GrandinCommits: 26Joined: 2022-10-10 + + + + + *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 + + + *Tomofumi YagiCommits: 25Joined: 2011-10-20 + + + *Prashant PandeyCommits: 25Joined: 2013-02-20 + + + *VortCommits: 25Joined: 2014-01-21 + + + + + *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 + + + *George BatemanCommits: 25Joined: 2020-08-04 + + + *Balazs VargaCommits: 25Joined: 2022-06-29 + + + *Baptiste DaroussinCommits: 24Joined: 2011-01-31 + + + + + *Pedro GiffuniCommits: 24Joined: 2011-10-28 + + + *Uray M. JánosCommits: 24Joined: 2012-07-17 + + + *Sumit ChauhanCommits: 24Joined: 2018-12-04 + + + *Hannah MeeksCommits: 24Joined: 2022-04-16 + + + + + *Paris OplopoiosCommits: 24Joined: 2022-10-17 + + + *Robert RothCommits: 23Joined: 2010-10-31 + + + *Sören MöllerCommits: 23Joined: 2011-01-03 + + + *Lucas BaudinCommits: 23Joined: 2011-01-25 + + + + + *Julien ChaffraixCommits: 23Joined: 2011-04-12 + + + *Christian DywanCommits: 23Joined: 2011-04-14 + + + *Felix ZhangCommits: 23Joined: 2011-10-19 + + + *Mario J. RugieroCommits: 23Joined: 2015-10-11 + + + + + *Marco A.G.PintoCommits: 23Joined: 2016-02-02 + + + *ekuiitrCommits: 23Joined: 2017-10-13 + + + *Jacek WolszczakCommits: 22Joined: 2010-10-07 + + + *Júlio HoffimannCommits: 22Joined: 2010-10-18 + + + + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 + + + *Jian Fang ZhangCommits: 22Joined: 2012-06-18 + + + *Frédéric WangCommits: 22Joined: 2013-06-22 + + + *zhenyu yuanCommits: 22Joined: 2013-11-06 + + + + + *Colomban WendlingCommits: 22Joined: 2017-03-15 + + + *Saurav ChiraniaCommits: 22Joined: 2018-01-14 + + + *Rohit DeshmukhCommits: 21Joined: 2013-09-30 + + + *scitoCommits: 21Joined: 2015-04-13 + + + + + *Vitaliy AndersonCommits: 21Joined: 2016-12-09 + + + *Bernhard WidlCommits: 21Joined: 2017-03-27 + + + Eric BachardCommits: 20Joined: 2005-10-19 + + + *Andy HolderCommits: 20Joined: 2010-12-06 + + + + + *Brad SowdenCommits: 20Joined: 2011-12-27 + + + *Petr VorelCommits: 20Joined: 2012-02-17 + + + *Tushar BendeCommits: 20Joined: 2013-09-27 + + + *Andrew DentCommits: 20Joined: 2014-02-26 + + + + + *Patrick LubyCommits: 20Joined: 2022-12-03 + + + Xiaofei ZhangCommits: 19Joined: 2010-06-28 + + + *Lennard WasserthalCommits: 19Joined: 2012-08-11 + + + *Peilin XiaoCommits: 19Joined: 2013-12-09 + + + + + *Sven WehnerCommits: 19Joined: 2014-01-11 + + + *Ravindra VidhateCommits: 19Joined: 2014-01-30 + + + *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 + + + *krishna keshavCommits: 19Joined: 2016-05-05 + + + + + *Heiko TietzeCommits: 19Joined: 2019-09-08 + + + *Onur YilmazCommits: 19Joined: 2019-12-18 + + + *Svante SchubertCommits: 19Joined: 2020-07-08 + + + Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 + + + + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 + + + *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 + + + *Boris DušekCommits: 18Joined: 2013-07-21 + + + *Richard PALOCommits: 18Joined: 2014-11-09 + + + + + *Federico BassiniCommits: 18Joined: 2016-10-06 + + + *Mert TümerCommits: 18Joined: 2018-01-08 + + + *Zdibák ZoltánCommits: 18Joined: 2018-10-13 + + + *Ming HuaCommits: 18Joined: 2020-11-02 + + + + + *Mark HungCommits: 18Joined: 2022-05-01 + + + *Povilas KanapickasCommits: 18Joined: 2022-08-24 + + + *Alfonso EusebioCommits: 17Joined: 2011-01-16 + + + *Bálint DózsaCommits: 17Joined: 2011-02-10 + + + + + *Olivier RCommits: 17Joined: 2011-08-01 + + + *Jian Hong ChengCommits: 17Joined: 2012-06-26 + + + *navin patidarCommits: 17Joined: 2013-01-06 + + + *Umesh KadamCommits: 17Joined: 2014-01-10 + + + + + *melikeyurtogluCommits: 17Joined: 2015-10-09 + + + *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 + + + *Thomas BeckCommits: 17Joined: 2017-03-27 + + + *Kshitij PathaniaCommits: 17Joined: 2017-09-28 + + + + + *Vikas MahatoCommits: 17Joined: 2017-12-31 + + + *Martin van ZijlCommits: 17Joined: 2018-02-26 + + + *Alain RomedenneCommits: 17Joined: 2018-12-19 + + + *Todor BalabanovCommits: 17Joined: 2019-04-29 + + + + + *Mesut ÇifciCommits: 17Joined: 2019-12-18 + + + *Bayram ÇiçekCommits: 17Joined: 2020-11-23 + + + Florian ReuterCommits: 16Joined: 2010-09-14 + + + *Luke DixonCommits: 16Joined: 2010-10-26 + + + + + *Niko RönkköCommits: 16Joined: 2010-10-31 + + + *Jordan AyersCommits: 16Joined: 2010-11-04 + + + *Anders JonssonCommits: 16Joined: 2010-12-11 + + + *Maciej RumianowskiCommits: 16Joined: 2011-07-19 + + + + + *Lei De BinCommits: 16Joined: 2012-07-04 + + + *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 + + + *tsahi glikCommits: 16Joined: 2013-06-04 + + + *Chris LaplanteCommits: 16Joined: 2014-04-07 + + + + + *Adam KasztennyCommits: 16Joined: 2016-03-27 + + + *nd101Commits: 16Joined: 2019-07-03 + + + Octavio AlvarezCommits: 15Joined: 2010-09-13 + + + *Luke SymesCommits: 15Joined: 2010-10-01 + + + + + *Povilas KanapickasCommits: 15Joined: 2010-10-18 + + + *Joachim TremourouxCommits: 15Joined: 2010-11-19 + + + *Yifan JCommits: 15Joined: 2010-12-16 + + + *Cosimo CecchiCommits: 15Joined: 2011-11-02 + + + + + *Alexander BergmannCommits: 15Joined: 2012-01-13 + + + *Catalin IacobCommits: 15Joined: 2012-02-10 + + + *Nikhil WalvekarCommits: 15Joined: 2013-11-01 + + + *Heena GuptaCommits: 15Joined: 2014-06-17 + + + + + *Andreas BrandnerCommits: 15Joined: 2017-09-04 + + + *Armin Le GrandCommits: 15Joined: 2018-02-15 + + + *Samuel ThibaultCommits: 15Joined: 2018-09-05 + + + *Ross JohnsonCommits: 15Joined: 2021-09-13 + + + + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 + + + *Tim HardeckCommits: 14Joined: 2011-11-03 + + + *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 + + + *Zhe WangCommits: 14Joined: 2012-06-20 + + + + + *Sun YingCommits: 14Joined: 2012-08-16 + + + *Alex HenrieCommits: 14Joined: 2014-03-05 + + + *Juan PiccaCommits: 14Joined: 2014-07-23 + + + *Zsolt BölönyCommits: 14Joined: 2015-01-10 + + + + + *Gökhan GurbetoğluCommits: 14Joined: 2016-06-06 + + + *Nickson ThandaCommits: 14Joined: 2018-03-25 + + + *Baole FangCommits: 14Joined: 2023-03-12 + + + *Prashant ShahCommits: 13Joined: 2010-10-10 + + + + + *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 + + + *gerhard oettlCommits: 13Joined: 2012-08-27 + + + *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + + + + + *Mathias HasselmannCommits: 13Joined: 2013-01-14 + + + *Manfred BlumeCommits: 13Joined: 2017-03-27 + + + *sabri unalCommits: 13Joined: 2018-11-20 + + + *Steve FanningCommits: 13Joined: 2019-11-30 + + + + + *Radhey ParekhCommits: 13Joined: 2021-04-01 + + + *VaibhavMalik4187Commits: 13Joined: 2021-12-10 + + + *Alain RomedenneCommits: 13Joined: 2022-01-06 + + + *Jani MonosesCommits: 12Joined: 2010-10-30 + + + + + *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 + + + *Tomas HlavatyCommits: 12Joined: 2011-12-06 + + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 + + + *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 + + + + + *Gábor StefanikCommits: 12Joined: 2012-04-07 + + + *Mirek MazelCommits: 12Joined: 2012-06-05 + + + *Wei WeiCommits: 12Joined: 2013-11-16 + + + *kadertarlanCommits: 12Joined: 2015-12-14 + + + + + *tymyjanCommits: 12Joined: 2016-04-03 + + + *Abhilash SinghCommits: 12Joined: 2016-07-22 + + + *Kacper KasperCommits: 12Joined: 2018-02-18 + + + *Pelin KuranCommits: 12Joined: 2020-01-25 + + + + + *Gleb PopovCommits: 12Joined: 2020-10-05 + + + *Emircan AgacCommits: 12Joined: 2021-08-02 + + + *xuenhuaCommits: 12Joined: 2022-04-08 + + + Mox SoiniCommits: 11Joined: 2008-04-04 + + + + + Frank PetersCommits: 11Joined: 2010-05-20 + + + *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 + + + *René KjellerupCommits: 11Joined: 2010-10-14 + + + *Peter RabiCommits: 11Joined: 2011-07-14 + + + + + *David BolenCommits: 11Joined: 2012-03-07 + + + *Jung-uk KimCommits: 11Joined: 2012-08-13 + + + *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 + + + *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 + + + + + *Sean YoungCommits: 11Joined: 2013-05-16 + + + *Krunoslav ŠebetićCommits: 11Joined: 2013-07-18 + + + *Charu TyagiCommits: 11Joined: 2014-06-25 + + + *Michael JaumannCommits: 11Joined: 2014-09-02 + + + + + *Phillip SzCommits: 11Joined: 2015-03-16 + + + *nadithCommits: 11Joined: 2016-07-14 + + + *Maarten BosmansCommits: 11Joined: 2016-08-24 + + + *Fakabbir AminCommits: 11Joined: 2017-01-29 + + + + + *jmzambonCommits: 11Joined: 2017-05-19 + + + *Manuj VashistCommits: 11Joined: 2017-12-10 + + + *Milian WolffCommits: 11Joined: 2018-01-10 + + + *Abhyudaya SharmaCommits: 11Joined: 2018-03-19 + + + + + *Srijan BhatiaCommits: 11Joined: 2020-05-30 + + + *Vert DCommits: 11Joined: 2020-09-26 + + + *shubham656Commits: 11Joined: 2020-11-07 + + + *AnshuCommits: 11Joined: 2020-11-09 + + + + + *Jeff HuangCommits: 11Joined: 2021-04-12 + + + *Patrick LubyCommits: 11Joined: 2023-02-28 + + + *Timo HeinoCommits: 10Joined: 2010-11-22 + + + *Luke PetrolekasCommits: 10Joined: 2011-02-12 + + + + + *Theo van KlaverenCommits: 10Joined: 2011-03-10 + + + *Troy RolloCommits: 10Joined: 2011-07-11 + + + *Kristian RietveldCommits: 10Joined: 2011-10-15 + + + *David VogtCommits: 10Joined: 2012-02-05 + + + + + *Jianyuan LiCommits: 10Joined: 2012-08-16 + + + *Stefan WeibergCommits: 10Joined: 2014-08-28 + + + *Benjamin NiCommits: 10Joined: 2015-04-02 + + + *Arul MichaelCommits: 10Joined: 2016-01-05 + + + + + *Chirag ManwaniCommits: 10Joined: 2016-02-16 + + + *Dilek UzulmezCommits: 10Joined: 2016-10-15 + + + *Kiyotaka NishiboriCommits: 10Joined: 2017-08-27 + + + *Rahul GurungCommits: 10Joined: 2018-08-26 + + + + + *Mark RobbinsonCommits: 10Joined: 2019-01-02 + + + *Daniel LohmannCommits: 10Joined: 2019-12-18 + + + *A_GANCommits: 10Joined: 2020-01-25 + + + *Michael WarnerCommits: 10Joined: 2020-05-24 + + + + + *tusharCommits: 10Joined: 2021-01-10 + + + *Vincent LE GARRECCommits: 10Joined: 2021-02-21 + + + *Balazs SanthaCommits: 10Joined: 2021-02-26 + + + *Laurent BallandCommits: 10Joined: 2022-06-19 + + + + + *GaldamCommits: 10Joined: 2022-09-07 + + + *Mattias JohnssonCommits: 9Joined: 2010-10-18 + + + *Surendran MahendranCommits: 9Joined: 2010-11-05 + + + *Steven ButlerCommits: 9Joined: 2011-01-07 + + + + + *Robinson TryonCommits: 9Joined: 2012-06-21 + + + *Mihkel TõnnovCommits: 9Joined: 2012-07-02 + + + *Michael DunphyCommits: 9Joined: 2013-04-18 + + + *Dinesh PatilCommits: 9Joined: 2014-03-12 + + + + + *Matthew PottageCommits: 9Joined: 2014-07-26 + + + *Deena FrancisCommits: 9Joined: 2014-07-29 + + + *Ryan McCoskrieCommits: 9Joined: 2014-09-14 + + + *Jun NogataCommits: 9Joined: 2015-01-07 + + + + + *Aybuke OzdemirCommits: 9Joined: 2015-10-07 + + + *skswalesCommits: 9Joined: 2016-05-06 + + + *pv2kCommits: 9Joined: 2016-11-28 + + + *Adam KovacsCommits: 9Joined: 2018-08-16 + + + + + *Scott ClarkeCommits: 9Joined: 2019-06-07 + + + *Canberk TURANCommits: 9Joined: 2020-01-25 + + + *Jussi PakkanenCommits: 9Joined: 2020-02-22 + + + *Chenxiong QiCommits: 9Joined: 2022-08-27 + + + + + *Vojtěch DoležalCommits: 9Joined: 2023-02-13 + + + *Gabor KelemenCommits: 9Joined: 2023-02-14 + + + Fong LinCommits: 8Joined: 2010-09-14 + + + Jody GoldbergCommits: 8Joined: 2010-09-15 + + + + + *Michael CallahanCommits: 8Joined: 2010-12-06 + + + *Robert DargaudCommits: 8Joined: 2011-04-12 + + + *Jenei GáborCommits: 8Joined: 2011-07-29 + + + *Terrence EngerCommits: 8Joined: 2011-10-27 + + + + + *Daisuke NishinoCommits: 8Joined: 2011-11-06 + + + *Tomcsik BenceCommits: 8Joined: 2012-01-14 + + + *Jonathan AdamsCommits: 8Joined: 2012-03-16 + + + *Norah A. AbanumayCommits: 8Joined: 2012-07-30 + + + + + *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 + + + *Timothy PearsonCommits: 8Joined: 2012-08-18 + + + *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + + + *karthCommits: 8Joined: 2013-01-07 + + + + + *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 + + + *Brian FraserCommits: 8Joined: 2013-09-03 + + + *RajashriCommits: 8Joined: 2013-12-06 + + + *Keith CurtisCommits: 8Joined: 2013-12-20 + + + + + *SouravCommits: 8Joined: 2014-03-15 + + + *Thomas ViehmannCommits: 8Joined: 2014-08-15 + + + *Nathan YeeCommits: 8Joined: 2015-01-01 + + + *Ursache VladimirCommits: 8Joined: 2015-02-10 + + + + + *Sean DavisCommits: 8Joined: 2015-06-01 + + + *HeiherCommits: 8Joined: 2015-07-07 + + + *IanCommits: 8Joined: 2015-08-06 + + + *Rico TzschichholzCommits: 8Joined: 2016-02-09 + + + + + *Matus UzakCommits: 8Joined: 2016-02-22 + + + *Christian BarthCommits: 8Joined: 2017-06-25 + + + *ShinnokCommits: 8Joined: 2017-09-06 + + + *Alain RomedenneCommits: 8Joined: 2018-11-29 + + + + + *Rasmus JonssonCommits: 8Joined: 2019-03-20 + + + *Artur NeumannCommits: 8Joined: 2019-06-11 + + + *Ouyang LeyanCommits: 8Joined: 2020-09-06 + + + *diwanshu885Commits: 8Joined: 2020-10-30 + + + + + *Gökhan ÖzeloğluCommits: 8Joined: 2020-11-21 + + + *Balaharipreetha MuthuCommits: 8Joined: 2020-12-04 + + + *Stéphane GuillouCommits: 8Joined: 2021-01-22 + + + *4k5h1tCommits: 8Joined: 2021-08-26 + + + + + *jsalaCommits: 8Joined: 2022-06-19 + + + *Christian LohmaierCommits: 8Joined: 2022-12-13 + + + *Stéphane GuillouCommits: 8Joined: 2023-01-03 + + + *Thies PierdolaCommits: 7Joined: 2011-01-28 + + + + + *Sergey DavidoffCommits: 7Joined: 2011-04-11 + + + *Samuel CantrellCommits: 7Joined: 2011-06-11 + + + *Alex McMurchy1917Commits: 7Joined: 2011-08-14 + + + *Christoph LutzCommits: 7Joined: 2011-09-06 + + + + + *Keith McRaeCommits: 7Joined: 2012-01-18 + + + *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 + + + *Brennan VincentCommits: 7Joined: 2012-04-02 + + + *Wang LeiCommits: 7Joined: 2012-06-14 + + + + + *Issa AlkurtassCommits: 7Joined: 2012-09-04 + + + *Christopher CopitsCommits: 7Joined: 2012-09-19 + + + *Mathias MichelCommits: 7Joined: 2012-11-19 + + + *Eric SeynaeveCommits: 7Joined: 2013-02-04 + + + + + *SJacobiCommits: 7Joined: 2013-03-05 + + + *Roi IllouzCommits: 7Joined: 2013-10-20 + + + *Stefan RingCommits: 7Joined: 2014-01-09 + + + *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + + + + *David DelmaCommits: 7Joined: 2014-05-13 + + + *Giuseppe BilottaCommits: 7Joined: 2014-09-09 + + + *V Stuart FooteCommits: 7Joined: 2014-12-04 + + + *RaalCommits: 7Joined: 2014-12-31 + + + + + *brinzingCommits: 7Joined: 2015-08-22 + + + *Feyza YavuzCommits: 7Joined: 2015-10-04 + + + *iremCommits: 7Joined: 2015-10-11 + + + *apurvapriyadarshiCommits: 7Joined: 2016-05-27 + + + + + *slackaCommits: 7Joined: 2016-07-30 + + + *Asela DasanayakaCommits: 7Joined: 2016-07-30 + + + *Tiago SantosCommits: 7Joined: 2016-08-12 + + + *HieronymousCommits: 7Joined: 2016-10-13 + + + + + *Ulrich GemkowCommits: 7Joined: 2016-10-27 + + + *Marina LatiniCommits: 7Joined: 2016-11-10 + + + *Furkan Ahmet KaraCommits: 7Joined: 2017-10-21 + + + *Vincas DargisCommits: 7Joined: 2018-01-21 + + + + + *Guilhem MoulinCommits: 7Joined: 2018-02-05 + + + *Hamish McIntyre-BhattyCommits: 7Joined: 2018-10-10 + + + *BugraCommits: 7Joined: 2020-01-30 + + + *Chris MayoCommits: 7Joined: 2020-05-08 + + + + + *Pedro Pinto SilvaCommits: 7Joined: 2020-06-16 + + + *Gökay ŞatırCommits: 7Joined: 2020-08-08 + + + *Matt KCommits: 7Joined: 2021-02-26 + + + *Ahmet Hakan ÇelikCommits: 7Joined: 2021-03-07 + + + + + *BaiXiaochunCommits: 7Joined: 2021-06-27 + + + *Dhiraj HoldenCommits: 7Joined: 2021-11-30 + + + *Liu HaoCommits: 7Joined: 2022-08-14 + + + *Czeber László ÁdámCommits: 7Joined: 2023-02-27 + + + + + *Phil BordelonCommits: 6Joined: 2010-09-30 + + + *Ricardo MorenoCommits: 6Joined: 2010-11-03 + + + *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 + + + *Daniel Di MarcoCommits: 6Joined: 2010-11-15 + + + + + *shiraharaCommits: 6Joined: 2011-01-28 + + + *Xavier ALTCommits: 6Joined: 2011-03-06 + + + *Anurag JainCommits: 6Joined: 2011-04-05 + + + *Thomas CollertonCommits: 6Joined: 2011-11-18 + + + + + *David VerrierCommits: 6Joined: 2013-02-26 + + + *Anurag KanungoCommits: 6Joined: 2013-04-19 + + + *tianyaoCommits: 6Joined: 2013-11-09 + + + *Jeroen NijhofCommits: 6Joined: 2014-05-01 + + + + + *Kay SchenkCommits: 6Joined: 2014-09-19 + + + *Michel RenonCommits: 6Joined: 2015-05-19 + + + *Fabio BusoCommits: 6Joined: 2015-11-01 + + + *Sedat AkCommits: 6Joined: 2015-11-08 + + + + + *Guillaume SmahaCommits: 6Joined: 2015-11-25 + + + *Ricardo PalomaresCommits: 6Joined: 2016-01-16 + + + *baltasarqCommits: 6Joined: 2016-02-24 + + + *Steven GuoCommits: 6Joined: 2016-03-02 + + + + + *ChamalCommits: 6Joined: 2016-08-01 + + + *RosenCommits: 6Joined: 2016-08-04 + + + *giaccoCommits: 6Joined: 2016-10-11 + + + *abdulwdCommits: 6Joined: 2016-12-22 + + + + + *Gian Domenico CeccariniCommits: 6Joined: 2017-01-13 + + + *Jean-Sebastien BevilacquaCommits: 6Joined: 2017-02-09 + + + *udareechkCommits: 6Joined: 2017-09-20 + + + *Kemal AyhanCommits: 6Joined: 2019-12-18 + + + + + *Gökay ŞATIRCommits: 6Joined: 2019-12-24 + + + *Batuhan TaskayaCommits: 6Joined: 2020-01-25 + + + *Mehmet Emin BaşoğluCommits: 6Joined: 2020-01-25 + + + *iakarsuCommits: 6Joined: 2020-01-25 + + + + + *Ivan StefanenkoCommits: 6Joined: 2020-08-26 + + + *ViKrAm-BaisCommits: 6Joined: 2021-01-07 + + + *msrijita18Commits: 6Joined: 2021-01-26 + + + *Henrik PalomäkiCommits: 6Joined: 2021-10-18 + + + + + *Ramreiso KashungCommits: 6Joined: 2021-12-22 + + + *NickWingateCommits: 6Joined: 2022-02-23 + + + *OmkarAcharekarCommits: 6Joined: 2022-10-15 + + + *Attila SzűcsCommits: 6Joined: 2022-11-29 + + + + + *Gil ForcadaCommits: 5Joined: 2010-09-28 + + + *David HobleyCommits: 5Joined: 2010-10-04 + + + *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 + + + *Antoine ProulxCommits: 5Joined: 2011-01-30 + + + + + *Tobias RosenbergerCommits: 5Joined: 2011-01-31 + + + *Jeffrey ChangCommits: 5Joined: 2011-06-01 + + + *ericb2Commits: 5Joined: 2011-10-30 + + + *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 + + + + + *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 + + + *Wei Ming KhooCommits: 5Joined: 2012-02-17 + + + *Lionel DricotCommits: 5Joined: 2012-06-04 + + + *Pavel KysilkaCommits: 5Joined: 2012-06-25 + + + + + *Bence BabatiCommits: 5Joined: 2012-08-13 + + + *Pavel JaníkCommits: 5Joined: 2012-11-29 + + + *Werner KoernerCommits: 5Joined: 2012-12-11 + + + *Matthias HofmannCommits: 5Joined: 2013-03-08 + + + + + *Miguel GomezCommits: 5Joined: 2013-04-02 + + + *pje335_NLCommits: 5Joined: 2013-05-10 + + + *Ciorba EdmondCommits: 5Joined: 2013-06-11 + + + *Pader RezsoCommits: 5Joined: 2013-07-01 + + + + + *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 + + + *Timothy MarkleCommits: 5Joined: 2014-01-31 + + + *Jan KantertCommits: 5Joined: 2014-06-12 + + + *Pasi LallinahoCommits: 5Joined: 2015-06-02 + + + + + *Berk GurekenCommits: 5Joined: 2015-10-01 + + + *Yossi ZahnCommits: 5Joined: 2016-11-25 + + + *Edmund WongCommits: 5Joined: 2016-12-08 + + + *Huzaifa IftikharCommits: 5Joined: 2016-12-19 + + + + + *tamsil1amani3Commits: 5Joined: 2016-12-22 + + + *Lukas RöllinCommits: 5Joined: 2017-02-06 + + + *Paul MenzelCommits: 5Joined: 2017-05-17 + + + *Corentin NoëlCommits: 5Joined: 2019-09-20 + + + + + *Tolunay DündarCommits: 5Joined: 2019-12-18 + + + *Eda Nur VarCommits: 5Joined: 2020-01-25 + + + *Yukio SiraichiCommits: 5Joined: 2020-03-09 + + + *Oleg ShchelykalnovCommits: 5Joined: 2020-03-28 + + + + + *Gabriel MaseiCommits: 5Joined: 2020-09-02 + + + *Tomofumi YagiCommits: 5Joined: 2020-09-12 + + + *Umut Emre BayramogluCommits: 5Joined: 2020-11-21 + + + *Georgy LitvinovCommits: 5Joined: 2020-12-16 + + + + + *Suhaas JoshiCommits: 5Joined: 2021-01-04 + + + *Baran AytasCommits: 5Joined: 2021-08-22 + + + *Juan C SanzCommits: 5Joined: 2021-09-03 + + + *Ismael LucenoCommits: 5Joined: 2021-09-29 + + + + + *flywireCommits: 5Joined: 2021-11-12 + + + *rash419Commits: 5Joined: 2022-01-24 + + + *Pragat PandyaCommits: 5Joined: 2022-02-01 + + + *zhutyraCommits: 5Joined: 2022-02-01 + + + + + *Deep17Commits: 5Joined: 2022-02-20 + + + *Siddhant ChaudharyCommits: 5Joined: 2022-03-11 + + + *Skyler GreyCommits: 5Joined: 2022-07-27 + + + *Leonid RyzhovCommits: 5Joined: 2022-11-17 + + + + + *ektagoel12Commits: 5Joined: 2023-01-19 + + + *buldiCommits: 5Joined: 2023-02-09 + + + *Jaume PujantellCommits: 5Joined: 2023-03-03 + + + *Florian BircherCommits: 4Joined: 2010-10-16 + + + + + *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + + *Santiago AlessandriCommits: 4Joined: 2010-11-11 + + + *Maja DjordjevicCommits: 4Joined: 2011-01-06 + + + *An LeendersCommits: 4Joined: 2011-01-25 + + + + + *Alexander ThurgoodCommits: 4Joined: 2011-01-26 + + + *ClioCommits: 4Joined: 2011-01-30 + + + *Michael MuenchCommits: 4Joined: 2011-02-13 + + + *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 + + + + + *Samphan RaruenromCommits: 4Joined: 2011-03-24 + + + *Andreas BeckerCommits: 4Joined: 2011-04-04 + + + *Roland BaudinCommits: 4Joined: 2011-05-16 + + + *André SchnabelCommits: 4Joined: 2011-05-31 + + + + + *Tom TromeyCommits: 4Joined: 2011-08-11 + + + *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 + + + *Cheng-Chia TsengCommits: 4Joined: 2012-01-16 + + + *Kate GossCommits: 4Joined: 2012-02-11 + + + + + *Mariana MarasoiuCommits: 4Joined: 2012-03-14 + + + *Yong Lin MaCommits: 4Joined: 2012-06-07 + + + *Raimundo MouraCommits: 4Joined: 2012-06-16 + + + *Florian ReisingerCommits: 4Joined: 2012-06-22 + + + + + *Nicholas ShanksCommits: 4Joined: 2012-09-04 + + + *tinoCommits: 4Joined: 2012-12-03 + + + *Joan MontanéCommits: 4Joined: 2013-02-22 + + + *XiaoliCommits: 4Joined: 2013-03-23 + + + + + *Sameer DeshmukhCommits: 4Joined: 2013-04-20 + + + *Zheng FanCommits: 4Joined: 2013-04-22 + + + *Elie RouxCommits: 4Joined: 2013-05-29 + + + *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 + + + + + *Honza HavlíčekCommits: 4Joined: 2013-07-27 + + + *Andrea PescettiCommits: 4Joined: 2013-10-07 + + + *Robert CampbellCommits: 4Joined: 2013-11-13 + + + *Ulrich KitzingerCommits: 4Joined: 2013-11-30 + + + + + *Ken BiondiCommits: 4Joined: 2014-03-05 + + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 + + + *Simon DannerCommits: 4Joined: 2014-08-02 + + + *Kevin SuoCommits: 4Joined: 2014-11-06 + + + + + *Aleksandr AndreevCommits: 4Joined: 2015-04-20 + + + *Derrick RochaCommits: 4Joined: 2015-08-26 + + + *Sahasranaman M SCommits: 4Joined: 2015-10-04 + + + *ccshellerCommits: 4Joined: 2015-10-08 + + + + + *pasqual milvaquesCommits: 4Joined: 2015-12-02 + + + *aqcoderCommits: 4Joined: 2015-12-13 + + + *Burcin AkalinCommits: 4Joined: 2015-12-18 + + + *Kumar ThangavelCommits: 4Joined: 2016-01-04 + + + + + *erdemdemirkapiCommits: 4Joined: 2016-01-30 + + + *coypuCommits: 4Joined: 2016-02-03 + + + *dtmCommits: 4Joined: 2016-02-11 + + + *Tim EvesCommits: 4Joined: 2016-02-23 + + + + + *GurkaranCommits: 4Joined: 2016-03-17 + + + *Fabio BiocchettiCommits: 4Joined: 2016-10-21 + + + *Gaurav DhingraCommits: 4Joined: 2016-12-03 + + + *Patrick JaapCommits: 4Joined: 2017-01-30 + + + + + *Piotr DrągCommits: 4Joined: 2017-03-05 + + + *Fyodor YemelyanenkoCommits: 4Joined: 2017-08-21 + + + *Olivier TilloyCommits: 4Joined: 2018-01-08 + + + *Jon NermutCommits: 4Joined: 2018-01-20 + + + + + *Franklin WengCommits: 4Joined: 2018-02-28 + + + *Jozsef SzakacsCommits: 4Joined: 2018-11-07 + + + *Andrew UdvareCommits: 4Joined: 2019-01-08 + + + *Aleyna DoğrucanCommits: 4Joined: 2019-12-28 + + + + + *Efdal İncesuCommits: 4Joined: 2020-01-25 + + + *Faruk DemirbaşCommits: 4Joined: 2020-01-25 + + + *Hakan BakacakCommits: 4Joined: 2020-01-26 + + + *Burak BalaCommits: 4Joined: 2020-01-26 + + + + + *Mohamed SamehCommits: 4Joined: 2020-02-11 + + + *Fred KruseCommits: 4Joined: 2020-03-02 + + + *Deb Barkley-YeungCommits: 4Joined: 2020-08-19 + + + *Gokce KulerCommits: 4Joined: 2020-10-20 + + + + + *VishwasCommits: 4Joined: 2020-12-31 + + + *Aditya Pratap SinghCommits: 4Joined: 2021-02-01 + + + *dipanshu124Commits: 4Joined: 2021-02-12 + + + *HosseinCommits: 4Joined: 2021-03-23 + + + + + *tobiasCommits: 4Joined: 2021-06-03 + + + *Gopi Krishna MenonCommits: 4Joined: 2021-06-07 + + + *Harshita NagCommits: 4Joined: 2021-06-25 + + + *YildirayCommits: 4Joined: 2021-08-08 + + + + + *ehsanCommits: 4Joined: 2022-07-01 + + + *PoonamShokeenCommits: 4Joined: 2022-07-21 + + + *Arvind KCommits: 4Joined: 2023-03-02 + + + *Yousef_RabiaCommits: 4Joined: 2023-03-07 + + + + + *Bayram ÇiçekCommits: 4Joined: 2023-03-09 + + + Keith StribleyCommits: 3Joined: 2010-06-29 + + + *Jacopo NespoloCommits: 3Joined: 2010-10-01 + + + *Alan DuCommits: 3Joined: 2010-10-12 + + + + + *Gioele BarabucciCommits: 3Joined: 2010-11-18 + + + *Xuacu SaturioCommits: 3Joined: 2010-12-19 + + + *Pascal UllrichCommits: 3Joined: 2010-12-28 + + + *Jonathan AquilinaCommits: 3Joined: 2011-01-18 + + + + + *Michael KochCommits: 3Joined: 2011-01-21 + + + *Jan DarmochwalCommits: 3Joined: 2011-01-27 + + + *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 + + + *Tantai TanakanokCommits: 3Joined: 2011-02-09 + + + + + *David NalleyCommits: 3Joined: 2011-03-03 + + + *Guto MaiaCommits: 3Joined: 2011-03-18 + + + *Anthony DurityCommits: 3Joined: 2011-04-18 + + + *Dimitri DucCommits: 3Joined: 2011-04-19 + + + + + *Mike EberdtCommits: 3Joined: 2011-07-12 + + + *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 + + + *Dmitry AshkadovCommits: 3Joined: 2011-08-29 + + + *Michael BauerCommits: 3Joined: 2011-11-23 + + + + + *Sérgio MarquesCommits: 3Joined: 2011-11-25 + + + *Stefan HeinemannCommits: 3Joined: 2012-02-16 + + + *Cameron PaulCommits: 3Joined: 2012-02-27 + + + *Tom ThorogoodCommits: 3Joined: 2012-02-28 + + + + + *Stephan van den AkkerCommits: 3Joined: 2012-06-07 + + + *Benjamin DrungCommits: 3Joined: 2012-06-08 + + + *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 + + + *Bertrand LorentzCommits: 3Joined: 2012-08-03 + + + + + *Oliver GüntherCommits: 3Joined: 2012-08-09 + + + *Istvan TuriCommits: 3Joined: 2012-08-16 + + + *Jeremy BrownCommits: 3Joined: 2012-09-19 + + + *Peter BaumgartenCommits: 3Joined: 2012-11-24 + + + + + *Markus MaierCommits: 3Joined: 2012-11-25 + + + *Marina PlakalovicCommits: 3Joined: 2012-12-14 + + + *Dávid VastagCommits: 3Joined: 2013-02-04 + + + *Stefan SchickCommits: 3Joined: 2013-02-18 + + + + + *Petr KrausCommits: 3Joined: 2013-03-26 + + + *Golnaz IrannejadCommits: 3Joined: 2013-04-02 + + + *vjinochCommits: 3Joined: 2013-04-09 + + + *Jason HulmeCommits: 3Joined: 2013-06-05 + + + + + *Nagy AkosCommits: 3Joined: 2013-06-27 + + + *Gabriele BulfonCommits: 3Joined: 2013-07-05 + + + *Haidong LianCommits: 3Joined: 2013-07-24 + + + *Tobias MuellerCommits: 3Joined: 2014-02-10 + + + + + *Peter Senna TschudinCommits: 3Joined: 2014-05-26 + + + *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 + + + *Renato FerreiraCommits: 3Joined: 2014-11-15 + + + *Popa Adrian MariusCommits: 3Joined: 2015-03-23 + + + + + *Matthew NichollsCommits: 3Joined: 2015-04-01 + + + *Linus BehrensCommits: 3Joined: 2015-04-23 + + + *Marek DoleželCommits: 3Joined: 2015-07-06 + + + *Simon LongCommits: 3Joined: 2015-07-08 + + + + + *Lucas SatabinCommits: 3Joined: 2015-08-25 + + + *n.r.pearsonCommits: 3Joined: 2015-09-09 + + + *Sergey FukanchikCommits: 3Joined: 2015-09-17 + + + *AlexFCommits: 3Joined: 2015-11-12 + + + + + *Giovanni CaligarisCommits: 3Joined: 2015-11-30 + + + *Mayank GuptaCommits: 3Joined: 2016-03-11 + + + *Johannes BergCommits: 3Joined: 2016-08-03 + + + *drazilCommits: 3Joined: 2016-08-27 + + + + + *Jacek FraczekCommits: 3Joined: 2016-10-05 + + + *liongoldCommits: 3Joined: 2016-11-21 + + + *John Paul Adrian GlaubitzCommits: 3Joined: 2016-11-27 + + + *bansan85Commits: 3Joined: 2016-12-21 + + + + + *Dimitri BouronCommits: 3Joined: 2016-12-22 + + + *Ivan SafonovCommits: 3Joined: 2017-07-13 + + + *Gabriel ChiquiniCommits: 3Joined: 2017-10-01 + + + *Bán RóbertCommits: 3Joined: 2017-10-25 + + + + + *Mark VecsernyesCommits: 3Joined: 2017-11-15 + + + *Gergely TarsolyCommits: 3Joined: 2017-11-28 + + + *Ahmed GHANMICommits: 3Joined: 2017-11-30 + + + *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 + + + + + *TelestoCommits: 3Joined: 2018-01-22 + + + *Bartosz KosiorekCommits: 3Joined: 2018-02-07 + + + *Shubham VermaCommits: 3Joined: 2018-02-17 + + + *Laurent GodardCommits: 3Joined: 2018-04-24 + + + + + *Ulkem KasapogluCommits: 3Joined: 2018-07-04 + + + *Salih SariyarCommits: 3Joined: 2019-02-09 + + + *Omer Fatih CelikCommits: 3Joined: 2019-02-10 + + + *Meryem EzberCommits: 3Joined: 2019-02-10 + + + + + *Andrés MaldonadoCommits: 3Joined: 2019-02-21 + + + *EL-SHREIFCommits: 3Joined: 2019-02-24 + + + *Stepas ToliautasCommits: 3Joined: 2019-12-16 + + + *Michel ThomasCommits: 3Joined: 2020-02-01 + + + + + *nienzuCommits: 3Joined: 2020-02-19 + + + *Julian KalinowskiCommits: 3Joined: 2020-03-31 + + + *Ian Barkley-YeungCommits: 3Joined: 2020-04-06 + + + *Pierre MartyCommits: 3Joined: 2020-04-17 + + + + + *Eivind SamsethCommits: 3Joined: 2020-05-16 + + + *yakovruCommits: 3Joined: 2020-06-17 + + + *mariamfahmyCommits: 3Joined: 2020-10-16 + + + *Leo WangCommits: 3Joined: 2020-10-18 + + + + + *Gizem OzgunCommits: 3Joined: 2020-10-23 + + + *Tarun SharmaCommits: 3Joined: 2021-01-14 + + + *Batmunkh DorjgotovCommits: 3Joined: 2021-04-27 + + + *Zeynep YavuzCommits: 3Joined: 2021-08-02 + + + + + *Natalia GavrilovaCommits: 3Joined: 2021-09-24 + + + *Verne-LaiCommits: 3Joined: 2021-10-01 + + + *Arnaud VERSINICommits: 3Joined: 2021-12-19 + + + *Renwa HiwaCommits: 3Joined: 2022-02-09 + + + + + *Tushar JhamCommits: 3Joined: 2022-02-21 + + + *YomnasalamaCommits: 3Joined: 2022-03-28 + + + *Isha_DesaiCommits: 3Joined: 2022-04-06 + + + *Shady MohamedCommits: 3Joined: 2022-04-11 + + + + + *Aman JhaCommits: 3Joined: 2022-04-15 + + + *Andrea RosettiCommits: 3Joined: 2022-09-15 + + + *RakielleCommits: 3Joined: 2022-10-14 + + + *Calvince OtienoCommits: 3Joined: 2022-10-14 + + + + + *Sebastian Andrzej SiewiorCommits: 3Joined: 2023-01-24 + + + *RasenkaiCommits: 3Joined: 2023-01-27 + + + *Adoche OnajiCommits: 3Joined: 2023-01-30 + + + *nirnayCommits: 3Joined: 2023-02-25 + + + + + *Vinit AgarwalCommits: 3Joined: 2023-03-06 + + + Loiseleur MichelCommits: 2Joined: 2010-09-14 + + + *Justin MalcolmCommits: 2Joined: 2010-09-29 + + + *Seo SanghyeonCommits: 2Joined: 2010-09-29 + + + + + *Sean McNamaraCommits: 2Joined: 2010-09-29 + + + *Robert SedakCommits: 2Joined: 2010-10-05 + + + *Sean McMurrayCommits: 2Joined: 2010-10-20 + + + *Nadav VinikCommits: 2Joined: 2010-10-21 + + + + + *Marcin eXine MCommits: 2Joined: 2010-11-02 + + + *Dwayne BaileyCommits: 2Joined: 2010-11-03 + + + *Christoph NoackCommits: 2Joined: 2010-12-13 + + + *Sophie GautierCommits: 2Joined: 2010-12-19 + + + + + *Ed DeanCommits: 2Joined: 2011-01-14 + + + *Jonathan CallenCommits: 2Joined: 2011-01-29 + + + *Karsten GerloffCommits: 2Joined: 2011-02-06 + + + *Jean Charles PapinCommits: 2Joined: 2011-02-11 + + + + + *Tobias KranzCommits: 2Joined: 2011-02-17 + + + *Matthias KloseCommits: 2Joined: 2011-03-01 + + + *Michael NattererCommits: 2Joined: 2011-04-08 + + + *Cyril RoelandtCommits: 2Joined: 2011-04-26 + + + + + *Kelly AndersonCommits: 2Joined: 2011-05-31 + + + *Michal SvecCommits: 2Joined: 2011-07-12 + + + *Mohammad ElahiCommits: 2Joined: 2011-08-27 + + + *Takashi NakamotoCommits: 2Joined: 2011-08-28 + + + + + *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 + + + *Jan HubickaCommits: 2Joined: 2011-09-12 + + + *Arno TeigsethCommits: 2Joined: 2011-09-14 + + + *Maxim IorshCommits: 2Joined: 2011-10-05 + + + + + *Emanuele FiaCommits: 2Joined: 2011-11-02 + + + *Yury TarasievichCommits: 2Joined: 2011-11-23 + + + *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 + + + *Milos SramekCommits: 2Joined: 2012-01-20 + + + + + *Andreas SchierlCommits: 2Joined: 2012-01-30 + + + *PKEuSCommits: 2Joined: 2012-02-05 + + + *UrmasCommits: 2Joined: 2012-02-13 + + + *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 + + + + + *Greggory HernandezCommits: 2Joined: 2012-02-22 + + + *William GathoyeCommits: 2Joined: 2012-02-28 + + + *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 + + + *Mark WolfCommits: 2Joined: 2012-04-04 + + + + + *Andrew HigginsonCommits: 2Joined: 2012-04-10 + + + *Abeer SethiCommits: 2Joined: 2012-04-12 + + + *Ferran VidalCommits: 2Joined: 2012-04-21 + + + *Vicente VendrellCommits: 2Joined: 2012-04-23 + + + + + *David SteeleCommits: 2Joined: 2012-04-24 + + + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 + + + *Marc GarciaCommits: 2Joined: 2012-05-04 + + + *Martyn RussellCommits: 2Joined: 2012-06-07 + + + + + *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 + + + *Ward van WanrooijCommits: 2Joined: 2012-06-25 + + + *Yuri DarioCommits: 2Joined: 2012-07-18 + + + *Horacio FernandesCommits: 2Joined: 2012-07-20 + + + + + *Andras BartekCommits: 2Joined: 2012-08-06 + + + *Daniel HerdeCommits: 2Joined: 2012-08-09 + + + *Johann MessnerCommits: 2Joined: 2012-08-28 + + + *Flex LiuCommits: 2Joined: 2012-09-04 + + + + + *Sergey FarbotkaCommits: 2Joined: 2012-09-21 + + + *Louis PossozCommits: 2Joined: 2012-10-26 + + + *Christos StrubulisCommits: 2Joined: 2012-12-09 + + + *Arne de BruijnCommits: 2Joined: 2012-12-11 + + + + + *Milan CrhaCommits: 2Joined: 2013-02-07 + + + *Adam MrózCommits: 2Joined: 2013-02-24 + + + *Gregg KingCommits: 2Joined: 2013-02-26 + + + *Benedikt MorbachCommits: 2Joined: 2013-03-10 + + + + + *Moritz KuettCommits: 2Joined: 2013-03-23 + + + *Akash ShetyeCommits: 2Joined: 2013-03-23 + + + *Janit AnjariaCommits: 2Joined: 2013-04-19 + + + *mmeof2Commits: 2Joined: 2013-05-03 + + + + + *Donizete WaterkemperCommits: 2Joined: 2013-05-23 + + + *Rolf HemmerlingCommits: 2Joined: 2013-06-15 + + + *Jing XianCommits: 2Joined: 2013-06-26 + + + *Chris HoppeCommits: 2Joined: 2013-06-27 + + + + + *Ri GangHuCommits: 2Joined: 2013-07-28 + + + *Neil MooreCommits: 2Joined: 2013-08-09 + + + *Viktor VargaCommits: 2Joined: 2013-08-28 + + + *Janos FaragoCommits: 2Joined: 2013-09-03 + + + + + *Richard HughesCommits: 2Joined: 2013-10-01 + + + *Mathieu ParentCommits: 2Joined: 2013-10-14 + + + *Jagan LokanathaCommits: 2Joined: 2013-11-19 + + + *Anderson RobertoCommits: 2Joined: 2014-01-15 + + + + + *Martin LiškaCommits: 2Joined: 2014-03-26 + + + *Bisal NayalCommits: 2Joined: 2014-05-07 + + + *Hussian AlamriCommits: 2Joined: 2014-05-14 + + + *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 + + + + + *Clarence GuoCommits: 2Joined: 2014-05-26 + + + *Hideki IkedaCommits: 2Joined: 2014-06-25 + + + *Boris EgorovCommits: 2Joined: 2014-09-08 + + + *YiiChang YenCommits: 2Joined: 2014-10-16 + + + + + *Vinicius VendraminiCommits: 2Joined: 2014-10-22 + + + *Naruhiko OgasawaraCommits: 2Joined: 2014-10-25 + + + *Daniel StoneCommits: 2Joined: 2014-10-29 + + + *Supreme AryalCommits: 2Joined: 2014-12-04 + + + + + *Gary HoustonCommits: 2Joined: 2014-12-15 + + + *Mark WilliamsCommits: 2Joined: 2014-12-17 + + + *Clément LassieurCommits: 2Joined: 2014-12-21 + + + *Rimas KudelisCommits: 2Joined: 2015-01-06 + + + + + *dbeurleCommits: 2Joined: 2015-01-12 + + + *Kishor BhatCommits: 2Joined: 2015-01-28 + + + *gamebusterzCommits: 2Joined: 2015-02-19 + + + *Piet van OostrumCommits: 2Joined: 2015-03-12 + + + + + *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 + + + *Markus WernigCommits: 2Joined: 2015-03-18 + + + *Jingtao YanCommits: 2Joined: 2015-03-23 + + + *Austin ChenCommits: 2Joined: 2015-03-25 + + + + + *Valter MuraCommits: 2Joined: 2015-06-07 + + + *Carlos LuqueCommits: 2Joined: 2015-07-16 + + + *Lubosz SarneckiCommits: 2Joined: 2015-08-20 + + + *alexey.chemichevCommits: 2Joined: 2015-11-18 + + + + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 + + + *Yogesh DesaiCommits: 2Joined: 2016-01-05 + + + *Kenneth KoskiCommits: 2Joined: 2016-02-20 + + + *ackepenekCommits: 2Joined: 2016-02-21 + + + + + *Martin NathansenCommits: 2Joined: 2016-04-18 + + + *Michal KubecekCommits: 2Joined: 2016-06-02 + + + *Akash DeshpandeCommits: 2Joined: 2016-08-13 + + + *Sophie SuCommits: 2Joined: 2016-08-27 + + + + + *sllCommits: 2Joined: 2016-09-06 + + + *Pierre LepageCommits: 2Joined: 2016-11-05 + + + *Tibor MógerCommits: 2Joined: 2016-12-06 + + + *G_ZoltanCommits: 2Joined: 2016-12-27 + + + + + *George KorepanovCommits: 2Joined: 2017-01-06 + + + *Jeremy BichaCommits: 2Joined: 2017-02-06 + + + *JeevanCommits: 2Joined: 2017-03-04 + + + *blendergeekCommits: 2Joined: 2017-04-08 + + + + + *Alexey VlasovCommits: 2Joined: 2017-04-12 + + + *fxwanCommits: 2Joined: 2017-05-15 + + + *Yash SrivastavCommits: 2Joined: 2017-06-20 + + + *Sabin FrandesCommits: 2Joined: 2017-09-15 + + + + + *Your NameCommits: 2Joined: 2017-10-09 + + + *G??bor KoruhelyCommits: 2Joined: 2017-10-25 + + + *Furkan TokacCommits: 2Joined: 2017-10-25 + + + *Timotej LazarCommits: 2Joined: 2017-11-22 + + + + + *martinb214Commits: 2Joined: 2017-11-28 + + + *Jon NermutCommits: 2Joined: 2018-01-13 + + + *Denis ArnaudCommits: 2Joined: 2018-01-16 + + + *brian houston morrowCommits: 2Joined: 2018-01-24 + + + + + *Dmitri KharchevCommits: 2Joined: 2018-01-27 + + + *Andika TriwidadaCommits: 2Joined: 2018-02-15 + + + *Victor MireyevCommits: 2Joined: 2018-05-04 + + + *Kevin DubrulleCommits: 2Joined: 2018-07-07 + + + + + *George WoodCommits: 2Joined: 2018-07-25 + + + *Réka CsékeiCommits: 2Joined: 2018-10-09 + + + *Simon QuigleyCommits: 2Joined: 2018-10-11 + + + *Mark DoboCommits: 2Joined: 2018-10-20 + + + + + *Izabela BakollariCommits: 2Joined: 2018-10-27 + + + *Alyssa RossCommits: 2Joined: 2018-11-18 + + + *Tóth AttilaCommits: 2Joined: 2018-12-30 + + + *Patrik VasCommits: 2Joined: 2018-12-31 + + + + + *Dawid GanCommits: 2Joined: 2019-01-09 + + + *Sass DávidCommits: 2Joined: 2019-01-09 + + + *kaishu-sahuCommits: 2Joined: 2019-01-27 + + + *Phil KrylovCommits: 2Joined: 2019-02-10 + + + + + *Muzaffer Kadir YILMAZCommits: 2Joined: 2019-02-10 + + + *Alexander FarrowCommits: 2Joined: 2019-03-19 + + + *Jaromir WysogladCommits: 2Joined: 2019-03-27 + + + *Rtch90Commits: 2Joined: 2019-04-22 + + + + + *DarkByt31Commits: 2Joined: 2019-04-22 + + + *wishawaCommits: 2Joined: 2019-04-29 + + + *DaeHyun SungCommits: 2Joined: 2019-06-01 + + + *John ZhangCommits: 2Joined: 2019-09-23 + + + + + *Mayank SumanCommits: 2Joined: 2019-10-03 + + + *shameempkCommits: 2Joined: 2019-10-09 + + + *Mattia RizzoloCommits: 2Joined: 2019-10-23 + + + *Batuhan Görkem BenzerCommits: 2Joined: 2019-12-18 + + + + + *Desmin AlpaslanCommits: 2Joined: 2019-12-18 + + + *Luca CarlonCommits: 2Joined: 2020-01-11 + + + *Bjoern KirchhoffCommits: 2Joined: 2020-01-15 + + + *Burak BalaCommits: 2Joined: 2020-01-25 + + + + + *Marina LatiniCommits: 2Joined: 2020-02-11 + + + *AlanTangCommits: 2Joined: 2020-02-25 + + + *jamesCommits: 2Joined: 2020-02-28 + + + *Andrew Lee (李健秋)Commits: 2Joined: 2020-03-07 + + + + + *Jean-Louis FuchsCommits: 2Joined: 2020-03-10 + + + *shivammoreCommits: 2Joined: 2020-03-18 + + + *FatihCommits: 2Joined: 2020-04-23 + + + *Yunusemre ŞentürkCommits: 2Joined: 2020-05-14 + + + + + *Ilkyu JuCommits: 2Joined: 2020-08-08 + + + *Nnamani EzinneCommits: 2Joined: 2020-08-22 + + + *Luke DixonCommits: 2Joined: 2020-08-30 + + + *Sven LüppkenCommits: 2Joined: 2020-10-30 + + + + + *Zeynep İnkayaCommits: 2Joined: 2020-11-21 + + + *Gül ToksözCommits: 2Joined: 2020-11-21 + + + *Bartu BayazıtCommits: 2Joined: 2020-11-21 + + + *Mücahid AydinCommits: 2Joined: 2020-11-21 + + + + + *ShyamPraveenSinghCommits: 2Joined: 2020-11-24 + + + *DuP-491Commits: 2Joined: 2020-12-13 + + + *siddheshpatil777Commits: 2Joined: 2020-12-19 + + + *halfhiddencodeCommits: 2Joined: 2020-12-26 + + + + + *princesinghtomarCommits: 2Joined: 2020-12-28 + + + *AlchemistCommits: 2Joined: 2020-12-31 + + + *ShobhitCommits: 2Joined: 2021-01-30 + + + *Quan NguyenCommits: 2Joined: 2021-02-09 + + + + + *Eyal RozenbergCommits: 2Joined: 2021-02-13 + + + *Buse OrakCommits: 2Joined: 2021-02-13 + + + *MoazCommits: 2Joined: 2021-02-21 + + + *Winston Min TjongCommits: 2Joined: 2021-03-02 + + + + + *Gökay ŞatırCommits: 2Joined: 2021-03-14 + + + *PanosCommits: 2Joined: 2021-03-23 + + + *rounakCommits: 2Joined: 2021-03-31 + + + *sarynasserCommits: 2Joined: 2021-04-10 + + + + + *Mihail BalabanovCommits: 2Joined: 2021-04-11 + + + *haru-02Commits: 2Joined: 2021-04-21 + + + *Sabyasachi BhoiCommits: 2Joined: 2021-07-22 + + + *HuilinCommits: 2Joined: 2021-07-24 + + + + + *oguzbalkayaCommits: 2Joined: 2021-08-03 + + + *Ankur KhandelwalCommits: 2Joined: 2021-08-09 + + + *Karan AbrolCommits: 2Joined: 2021-08-11 + + + *Emanuel SchorschCommits: 2Joined: 2021-10-04 + + + + + *HarjotCommits: 2Joined: 2021-11-17 + + + *Pesi TaototoCommits: 2Joined: 2021-12-05 + + + *Sinduja YCommits: 2Joined: 2022-02-07 + + + *Kunal PawarCommits: 2Joined: 2022-02-10 + + + + + *psidiumcodeCommits: 2Joined: 2022-02-15 + + + *Gautham KrishnanCommits: 2Joined: 2022-03-01 + + + *mostafa-elsharnobyCommits: 2Joined: 2022-03-28 + + + *Rizal MuttaqinCommits: 2Joined: 2022-04-05 + + + + + *Vincent ReherCommits: 2Joined: 2022-04-06 + + + *LukasCommits: 2Joined: 2022-04-20 + + + *AshSincCommits: 2Joined: 2022-05-19 + + + *Kurt NordbackCommits: 2Joined: 2022-05-28 + + + + + *nazanin yadiCommits: 2Joined: 2022-06-03 + + + *Nathan Pratta TeodosioCommits: 2Joined: 2022-06-21 + + + *Mahdi TizabiCommits: 2Joined: 2022-06-25 + + + *wjh-laCommits: 2Joined: 2022-07-27 + + + + + *Stanislav LopatinCommits: 2Joined: 2022-08-07 + + + *Sam JamesCommits: 2Joined: 2022-09-02 + + + *SatyaCommits: 2Joined: 2022-09-05 + + + *Emmanuel PeterCommits: 2Joined: 2022-10-13 + + + + + *insanetreeCommits: 2Joined: 2022-10-17 + + + *Nalini Prasad DashCommits: 2Joined: 2022-10-23 + + + *Emanuele GoldoniCommits: 2Joined: 2022-11-07 + + + *Tarcísio Ladeia de OliveiraCommits: 2Joined: 2022-11-22 + + + + + *DowwdyJCommits: 2Joined: 2023-01-17 + + + *PLCommits: 2Joined: 2023-01-28 + + + *anfanite396Commits: 2Joined: 2023-02-01 + + + *Uday SharmaCommits: 2Joined: 2023-02-11 + + + + + *niket1322gitCommits: 2Joined: 2023-02-22 + + + *Abdallah ElhdadCommits: 2Joined: 2023-03-02 + + + *Supriyo PaulCommits: 2Joined: 2023-03-03 + + + *adityasingh22Commits: 2Joined: 2023-03-08 + + + + + *Jani SaranpääCommits: 2Joined: 2023-03-22 + + + *NeilBrownCommits: 1Joined: 2010-09-28 + + + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 + + + *Nick SavageCommits: 1Joined: 2010-10-01 + + + + + *Neil StalkerCommits: 1Joined: 2010-10-02 + + + *Evertjan GarretsenCommits: 1Joined: 2010-10-04 + + + *Denis LackovicCommits: 1Joined: 2010-10-05 + + + *krishnan parthasarathiCommits: 1Joined: 2010-10-07 + + + + + *Rubén JáñezCommits: 1Joined: 2010-10-11 + + + *Trevor MurphyCommits: 1Joined: 2010-10-20 + + + *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 + + + *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 + + + + + *Kalman KemenczyCommits: 1Joined: 2010-10-28 + + + *Alexandre FournierCommits: 1Joined: 2010-11-06 + + + *Christopher BackhouseCommits: 1Joined: 2010-12-06 + + + *pavelCommits: 1Joined: 2010-12-10 + + + + + *camilleCommits: 1Joined: 2010-12-13 + + + *Freek de KruijfCommits: 1Joined: 2010-12-19 + + + *Paolo PozzanCommits: 1Joined: 2010-12-19 + + + *Dan CorneanuCommits: 1Joined: 2010-12-29 + + + + + *armijnCommits: 1Joined: 2010-12-30 + + + *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 + + + *Andy HearnCommits: 1Joined: 2011-01-09 + + + *Nikita OfitserovCommits: 1Joined: 2011-01-10 + + + + + *Guillaume FillolCommits: 1Joined: 2011-01-29 + + + *pgajdosCommits: 1Joined: 2011-01-31 + + + *Andreas SliwkaCommits: 1Joined: 2011-02-06 + + + *Andrey TurkinCommits: 1Joined: 2011-02-09 + + + + + *Danny RobertsCommits: 1Joined: 2011-02-18 + + + *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 + + + *Rafael CabralCommits: 1Joined: 2011-03-31 + + + *Alberto RuizCommits: 1Joined: 2011-03-31 + + + + + *Paulo JoséCommits: 1Joined: 2011-04-01 + + + *Dona HertelCommits: 1Joined: 2011-04-14 + + + *Maxime CôtéCommits: 1Joined: 2011-04-19 + + + *Chris CheneyCommits: 1Joined: 2011-04-27 + + + + + *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 + + + *Cassio NeriCommits: 1Joined: 2011-05-01 + + + *Marcel HBCommits: 1Joined: 2011-05-03 + + + *William LachanceCommits: 1Joined: 2011-06-08 + + + + + *Jeff AignerCommits: 1Joined: 2011-06-09 + + + *David PenzesCommits: 1Joined: 2011-06-14 + + + *Dolives BenoitCommits: 1Joined: 2011-07-04 + + + *Ta Duc TungCommits: 1Joined: 2011-08-08 + + + + + *Christophe StrobbeCommits: 1Joined: 2011-08-09 + + + *Andor ErtseyCommits: 1Joined: 2011-09-04 + + + *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 + + + *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 + + + + + *Stefan WeigelCommits: 1Joined: 2011-10-17 + + + *Pádraig BradyCommits: 1Joined: 2011-10-21 + + + *Andrew WestCommits: 1Joined: 2011-10-21 + + + *Matt PrattCommits: 1Joined: 2011-11-02 + + + + + *Karl KoehlerCommits: 1Joined: 2011-11-11 + + + *Modestas RimkusCommits: 1Joined: 2011-11-21 + + + *Roman EiseleCommits: 1Joined: 2011-11-23 + + + *Serg BormantCommits: 1Joined: 2011-11-28 + + + + + *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 + + + *JesseCommits: 1Joined: 2011-12-14 + + + *Vincent PovirkCommits: 1Joined: 2011-12-19 + + + *Moritz BechlerCommits: 1Joined: 2011-12-19 + + + + + *James CCommits: 1Joined: 2011-12-20 + + + *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 + + + *Victor LeeCommits: 1Joined: 2011-12-24 + + + *Joshua CogliatiCommits: 1Joined: 2012-01-06 + + + + + *Kenneth AafløyCommits: 1Joined: 2012-01-11 + + + *Rich WarehamCommits: 1Joined: 2012-01-12 + + + *Da'angh KhagarothCommits: 1Joined: 2012-01-16 + + + *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 + + + + + *Martin RichardCommits: 1Joined: 2012-01-31 + + + *dbarisakkurtCommits: 1Joined: 2012-02-02 + + + *Daniel MihalyiCommits: 1Joined: 2012-02-06 + + + *Carsten NiehausCommits: 1Joined: 2012-02-09 + + + + + *Masataka ShinkeCommits: 1Joined: 2012-02-15 + + + *Fernando GovernatoreCommits: 1Joined: 2012-02-25 + + + *Juergen SteinhilberCommits: 1Joined: 2012-03-05 + + + *Italo VignoliCommits: 1Joined: 2012-03-09 + + + + + *Karan DesaiCommits: 1Joined: 2012-04-01 + + + *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 + + + *Aldo Román NureñaCommits: 1Joined: 2012-04-09 + + + *Laureano G. LindeCommits: 1Joined: 2012-04-15 + + + + + *Udo SchuermannCommits: 1Joined: 2012-04-16 + + + *Ross BurtonCommits: 1Joined: 2012-04-18 + + + *Jaime NavarroCommits: 1Joined: 2012-04-20 + + + *Florent GallaireCommits: 1Joined: 2012-04-21 + + + + + *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 + + + *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 + + + *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 + + + *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 + + + + + *Jose ManuelCommits: 1Joined: 2012-04-25 + + + *Miguel FernándezCommits: 1Joined: 2012-04-26 + + + *Javier CatalaCommits: 1Joined: 2012-04-26 + + + *Jordi MallachCommits: 1Joined: 2012-05-03 + + + + + *Gordon LackCommits: 1Joined: 2012-05-09 + + + *Daniel NaberCommits: 1Joined: 2012-05-09 + + + *Ionut BiruCommits: 1Joined: 2012-05-14 + + + *Alberto FerreiraCommits: 1Joined: 2012-06-08 + + + + + *Travis CarterCommits: 1Joined: 2012-06-22 + + + *Peter TillemansCommits: 1Joined: 2012-06-26 + + + *Phil HartCommits: 1Joined: 2012-06-29 + + + *Kevin PengCommits: 1Joined: 2012-07-20 + + + + + *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 + + + *Tim JanikCommits: 1Joined: 2012-08-10 + + + *Joseph BrownCommits: 1Joined: 2012-08-14 + + + *Kevin HausmannCommits: 1Joined: 2012-08-17 + + + + + *Dave RichardsCommits: 1Joined: 2012-08-22 + + + *DaveCommits: 1Joined: 2012-08-23 + + + *Marco BiscaroCommits: 1Joined: 2012-08-27 + + + *Nico WeyandCommits: 1Joined: 2012-09-02 + + + + + *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 + + + *sagarCommits: 1Joined: 2012-09-15 + + + *Andrew RistCommits: 1Joined: 2012-10-05 + + + *Neven ĆosićCommits: 1Joined: 2012-10-08 + + + + + *Chen ZuoJunCommits: 1Joined: 2012-10-08 + + + *Philipp KaluzaCommits: 1Joined: 2012-10-21 + + + *LesterCommits: 1Joined: 2012-10-23 + + + *Mathieu DCommits: 1Joined: 2012-11-19 + + + + + *Naser SharifiCommits: 1Joined: 2012-11-26 + + + *Paula MannesCommits: 1Joined: 2012-11-30 + + + *Olivier PlotonCommits: 1Joined: 2012-12-12 + + + *pkoroau pkoroauCommits: 1Joined: 2012-12-20 + + + + + *Quentin PradetCommits: 1Joined: 2012-12-21 + + + *Tadele AssefaCommits: 1Joined: 2013-01-15 + + + *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 + + + *OKANO TakayoshiCommits: 1Joined: 2013-01-29 + + + + + *Mark WrightCommits: 1Joined: 2013-02-09 + + + *Christopher HotchkissCommits: 1Joined: 2013-02-15 + + + *Andrew BranchCommits: 1Joined: 2013-02-20 + + + *Martin BrownCommits: 1Joined: 2013-02-23 + + + + + *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 + + + *Valek FilippovCommits: 1Joined: 2013-02-23 + + + *Kenneth BeckCommits: 1Joined: 2013-03-02 + + + *Jiri BlechaCommits: 1Joined: 2013-03-02 + + + + + *Gábor NyersCommits: 1Joined: 2013-03-02 + + + *Vojta KoukalCommits: 1Joined: 2013-03-03 + + + *Ondřej SmržCommits: 1Joined: 2013-03-10 + + + *Steven MeyerCommits: 1Joined: 2013-03-13 + + + + + *vincentCommits: 1Joined: 2013-03-22 + + + *Johannes WidmerCommits: 1Joined: 2013-03-23 + + + *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 + + + *Lucian ConstantinCommits: 1Joined: 2013-03-24 + + + + + *Tomas TurekCommits: 1Joined: 2013-03-24 + + + *Goran RakicCommits: 1Joined: 2013-03-30 + + + *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 + + + *Honza MinarikCommits: 1Joined: 2013-04-03 + + + + + *Ashish BanerjeeCommits: 1Joined: 2013-04-04 + + + *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 + + + *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 + + + *Pavel KacerCommits: 1Joined: 2013-04-11 + + + + + *tinderboxCommits: 1Joined: 2013-04-11 + + + *Alex IvanCommits: 1Joined: 2013-04-15 + + + *Ota ChasákCommits: 1Joined: 2013-04-24 + + + *Jan BobisudCommits: 1Joined: 2013-04-29 + + + + + *Yohei YukawaCommits: 1Joined: 2013-05-06 + + + *ricardobottoCommits: 1Joined: 2013-05-18 + + + *Jonathan SchultzCommits: 1Joined: 2013-05-22 + + + *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 + + + + + *Tim RichardsonCommits: 1Joined: 2013-06-04 + + + *Eric S. RaymondCommits: 1Joined: 2013-06-07 + + + *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 + + + *Benjamin OtteCommits: 1Joined: 2013-06-15 + + + + + *Peng GaoCommits: 1Joined: 2013-06-16 + + + *sonakshi nathaniCommits: 1Joined: 2013-06-26 + + + *Alaa.BukhariCommits: 1Joined: 2013-07-04 + + + *Erik AuerswaldCommits: 1Joined: 2013-07-09 + + + + + *Reem.ALotaibiCommits: 1Joined: 2013-07-25 + + + *Michael DuelliCommits: 1Joined: 2013-08-01 + + + *Srijan ChoudharyCommits: 1Joined: 2013-08-10 + + + *AdrienCommits: 1Joined: 2013-08-18 + + + + + *Stefano FacchiniCommits: 1Joined: 2013-08-22 + + + *James Michael DuPontCommits: 1Joined: 2013-08-30 + + + *Raymond WellsCommits: 1Joined: 2013-09-02 + + + *Danny BrownCommits: 1Joined: 2013-09-18 + + + + + *Henning DiedlerCommits: 1Joined: 2013-11-02 + + + *matt_51Commits: 1Joined: 2013-11-05 + + + *Rolf KoetterCommits: 1Joined: 2013-11-05 + + + *yjw9012Commits: 1Joined: 2013-12-30 + + + + + *Ayantha RandikaCommits: 1Joined: 2014-01-23 + + + *Michal SiedlaczekCommits: 1Joined: 2014-01-25 + + + *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 + + + *christianjuCommits: 1Joined: 2014-02-10 + + + + + *Mathias SuppCommits: 1Joined: 2014-02-25 + + + *Tarun KumarCommits: 1Joined: 2014-03-07 + + + *Jason GerlowskiCommits: 1Joined: 2014-03-07 + + + *roopak12345Commits: 1Joined: 2014-03-09 + + + + + *Manas JoshiCommits: 1Joined: 2014-03-17 + + + *gdm.manmeetCommits: 1Joined: 2014-03-18 + + + *Milan ZelenkaCommits: 1Joined: 2014-03-26 + + + *Hannah LyhneCommits: 1Joined: 2014-04-01 + + + + + *Aditya KaleCommits: 1Joined: 2014-04-01 + + + *Ryo ONODERACommits: 1Joined: 2014-04-07 + + + *Michal HorakCommits: 1Joined: 2014-04-21 + + + *Alex GulyásCommits: 1Joined: 2014-04-27 + + + + + *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 + + + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 + + + *Shreyansh GandhiCommits: 1Joined: 2014-06-10 + + + *Damien ChambeCommits: 1Joined: 2014-06-15 + + + + + *Robin KumarCommits: 1Joined: 2014-06-17 + + + *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 + + + *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 + + + *Martin OwensCommits: 1Joined: 2014-07-27 + + + + + *Heiko ScheidtCommits: 1Joined: 2014-08-03 + + + *xjclCommits: 1Joined: 2014-08-04 + + + *Audrey TangCommits: 1Joined: 2014-08-05 + + + *Hiroto KagotaniCommits: 1Joined: 2014-08-19 + + + + + *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 + + + *PhyzerCommits: 1Joined: 2014-09-13 + + + *Babu VincentCommits: 1Joined: 2014-09-19 + + + *Seyeong KimCommits: 1Joined: 2014-10-06 + + + + + *Lennart PoetteringCommits: 1Joined: 2014-10-09 + + + *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 + + + *Ruggero CyrilleCommits: 1Joined: 2014-10-18 + + + *Victor PortellaCommits: 1Joined: 2014-11-05 + + + + + *Jonathan RiddellCommits: 1Joined: 2014-11-22 + + + *Foo Lai ChooCommits: 1Joined: 2014-11-26 + + + *galbarnissanCommits: 1Joined: 2014-12-03 + + + *Mattias PõldaruCommits: 1Joined: 2014-12-06 + + + + + *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 + + + *Maarten HoesCommits: 1Joined: 2014-12-20 + + + *Pieter AdriaensenCommits: 1Joined: 2014-12-21 + + + *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 + + + + + *Péter SzathmáryCommits: 1Joined: 2015-01-07 + + + *Edmund LaugassonCommits: 1Joined: 2015-01-07 + + + *Michael KovarikCommits: 1Joined: 2015-01-07 + + + *ZirkCommits: 1Joined: 2015-01-07 + + + + + *Simon WilperCommits: 1Joined: 2015-01-24 + + + *Swachhand LokhandeCommits: 1Joined: 2015-03-07 + + + *Michael HornCommits: 1Joined: 2015-03-21 + + + *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 + + + + + *robert BabiakCommits: 1Joined: 2015-03-25 + + + *Dobra GaborCommits: 1Joined: 2015-04-02 + + + *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 + + + *Sujith SudhakaranCommits: 1Joined: 2015-04-07 + + + + + *Petr GajdosCommits: 1Joined: 2015-04-07 + + + *ritztroCommits: 1Joined: 2015-04-11 + + + *massinissaHamidiCommits: 1Joined: 2015-05-07 + + + *Yurii KolesnykovCommits: 1Joined: 2015-05-10 + + + + + *Sam TukeCommits: 1Joined: 2015-05-21 + + + *umairshahidCommits: 1Joined: 2015-05-29 + + + *Antoine CœurCommits: 1Joined: 2015-06-11 + + + *Jihui ChoiCommits: 1Joined: 2015-06-22 + + + + + *Raj NatarajanCommits: 1Joined: 2015-07-23 + + + *Florian EffenbergerCommits: 1Joined: 2015-08-04 + + + *Fernando PiraniCommits: 1Joined: 2015-08-04 + + + *Nathan WellsCommits: 1Joined: 2015-09-03 + + + + + *Joan ParaisoCommits: 1Joined: 2015-09-25 + + + *Slávek BankoCommits: 1Joined: 2015-10-10 + + + *Timothée IsnardCommits: 1Joined: 2015-10-11 + + + *marstayCommits: 1Joined: 2015-10-18 + + + + + *GhasanCommits: 1Joined: 2015-11-09 + + + *Mihovil StanićCommits: 1Joined: 2015-11-11 + + + *Keigo KawamuraCommits: 1Joined: 2015-11-16 + + + *Steve HartCommits: 1Joined: 2015-11-17 + + + + + *Reto SchneiderCommits: 1Joined: 2015-11-20 + + + *Willian BriottoCommits: 1Joined: 2015-11-21 + + + *Nicola PovoleriCommits: 1Joined: 2015-11-28 + + + *Paolo BernardiCommits: 1Joined: 2015-11-30 + + + + + *Pierre SauterCommits: 1Joined: 2015-12-01 + + + *William BonnetCommits: 1Joined: 2015-12-05 + + + *Johannes HaufCommits: 1Joined: 2015-12-31 + + + *Debarshi RayCommits: 1Joined: 2016-01-08 + + + + + *shubhamtibraCommits: 1Joined: 2016-01-16 + + + *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 + + + *Gabriele PonzoCommits: 1Joined: 2016-01-29 + + + *Marc BessièresCommits: 1Joined: 2016-01-29 + + + + + *Christoph BrillCommits: 1Joined: 2016-02-09 + + + *Hank LeiningerCommits: 1Joined: 2016-02-27 + + + *Apachev IvanCommits: 1Joined: 2016-03-08 + + + *HaidongWuCommits: 1Joined: 2016-03-09 + + + + + *Mohamed ThabetCommits: 1Joined: 2016-03-13 + + + *Dag WieersCommits: 1Joined: 2016-03-13 + + + *Alexandru MoscuCommits: 1Joined: 2016-03-18 + + + *Gleb MishchenkoCommits: 1Joined: 2016-03-22 + + + + + *JBurantCommits: 1Joined: 2016-04-05 + + + *sunwebCommits: 1Joined: 2016-04-08 + + + *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 + + + *Nurhak ALTINCommits: 1Joined: 2016-05-01 + + + + + *PeterCommits: 1Joined: 2016-05-03 + + + *PrashantCommits: 1Joined: 2016-05-17 + + + *Sam TygierCommits: 1Joined: 2016-05-22 + + + *Helena SvobodovaCommits: 1Joined: 2016-05-25 + + + + + *Zhengqiang WangCommits: 1Joined: 2016-06-02 + + + *anwilli5Commits: 1Joined: 2016-06-06 + + + *emahaldar/emCommits: 1Joined: 2016-06-13 + + + *Mike SaundersCommits: 1Joined: 2016-06-20 + + + + + *Otto KekäläinenCommits: 1Joined: 2016-07-03 + + + *Julian MehneCommits: 1Joined: 2016-08-04 + + + *James ClarkeCommits: 1Joined: 2016-08-05 + + + *Yan PashkovskyCommits: 1Joined: 2016-08-12 + + + + + *rpmbuildCommits: 1Joined: 2016-08-15 + + + *Zenaan HarknessCommits: 1Joined: 2016-08-22 + + + *Andrea MussapCommits: 1Joined: 2016-10-02 + + + *Ilya PonamarevCommits: 1Joined: 2016-10-05 + + + + + *JookiaCommits: 1Joined: 2016-10-08 + + + *Mirco RondiniCommits: 1Joined: 2016-10-10 + + + *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 + + + *Шиповський РоманCommits: 1Joined: 2016-10-28 + + + + + *Tamás GulácsiCommits: 1Joined: 2016-11-11 + + + *Owen GenatCommits: 1Joined: 2016-11-20 + + + *Christina AccioneCommits: 1Joined: 2016-11-22 + + + *n5xgdhCommits: 1Joined: 2016-12-04 + + + + + *Justn LavoieCommits: 1Joined: 2016-12-30 + + + *thvalloisCommits: 1Joined: 2017-01-03 + + + *Saurav SachidanandCommits: 1Joined: 2017-01-17 + + + *Aleix PolCommits: 1Joined: 2017-01-19 + + + + + *yellowflash104Commits: 1Joined: 2017-02-12 + + + *Mike GorseCommits: 1Joined: 2017-03-11 + + + *Atef haresCommits: 1Joined: 2017-03-12 + + + *ComputingDwarfCommits: 1Joined: 2017-03-12 + + + + + *Umang JainCommits: 1Joined: 2017-03-13 + + + *udaycoderCommits: 1Joined: 2017-03-14 + + + *Dennis NielenCommits: 1Joined: 2017-03-21 + + + *Andreas SägerCommits: 1Joined: 2017-03-26 + + + + + *Gabriel HerreraCommits: 1Joined: 2017-04-05 + + + *Werner TietzCommits: 1Joined: 2017-04-11 + + + *nikkiCommits: 1Joined: 2017-04-12 + + + *Catherine VanceCommits: 1Joined: 2017-04-17 + + + + + *Naeil ZOUEIDICommits: 1Joined: 2017-04-26 + + + *frederic vromanCommits: 1Joined: 2017-05-12 + + + *KappanneoCommits: 1Joined: 2017-05-29 + + + *Arianna MascioliniCommits: 1Joined: 2017-05-29 + + + + + *Francesco GradiCommits: 1Joined: 2017-05-29 + + + *dcvbCommits: 1Joined: 2017-07-06 + + + *Sean StanglCommits: 1Joined: 2017-07-09 + + + *Luke DellerCommits: 1Joined: 2017-07-12 + + + + + *Aditya DewanCommits: 1Joined: 2017-07-15 + + + *serdarot5Commits: 1Joined: 2017-08-05 + + + *Sanjaykumar Girishkumar PatelCommits: 1Joined: 2017-08-19 + + + *Dinh LeCommits: 1Joined: 2017-09-05 + + + + + *66kesara99Commits: 1Joined: 2017-09-23 + + + *Stoyan DimitrovCommits: 1Joined: 2017-10-01 + + + *nigeldiasCommits: 1Joined: 2017-10-02 + + + *Matti LehtonenCommits: 1Joined: 2017-10-07 + + + + + *Tjipke van der HeideCommits: 1Joined: 2017-10-12 + + + *Kristóf UmannCommits: 1Joined: 2017-10-25 + + + *qzhengCommits: 1Joined: 2017-11-14 + + + *Suhail AlkowaileetCommits: 1Joined: 2017-12-25 + + + + + *Dominique LeuenbergerCommits: 1Joined: 2018-01-05 + + + *Gabriele PonzoCommits: 1Joined: 2018-02-06 + + + *Rostislav KondratenkoCommits: 1Joined: 2018-02-21 + + + *ReshmaCommits: 1Joined: 2018-03-09 + + + + + *HrishabhCommits: 1Joined: 2018-03-10 + + + *Álex PuchadesCommits: 1Joined: 2018-03-14 + + + *kowtherCommits: 1Joined: 2018-04-06 + + + *Nithin Kumar PadavuCommits: 1Joined: 2018-04-07 + + + + + *Kevin Brubeck UnhammerCommits: 1Joined: 2018-04-14 + + + *Heiko TietzeCommits: 1Joined: 2018-04-16 + + + *DiadloCommits: 1Joined: 2018-05-23 + + + *Fred KruseCommits: 1Joined: 2018-05-28 + + + + + *orbeaCommits: 1Joined: 2018-06-01 + + + *Louis SautierCommits: 1Joined: 2018-06-10 + + + *Ali AhmadiCommits: 1Joined: 2018-06-26 + + + *SalimHabchiCommits: 1Joined: 2018-07-11 + + + + + *Caio B. SilvaCommits: 1Joined: 2018-07-23 + + + *U-Vladimir\VadimCommits: 1Joined: 2018-08-05 + + + *Don LewisCommits: 1Joined: 2018-08-22 + + + *Bijan TabatabaiCommits: 1Joined: 2018-08-26 + + + + + *Leo MoonsCommits: 1Joined: 2018-08-26 + + + *AlicVBCommits: 1Joined: 2018-10-17 + + + *Alain RomedenneCommits: 1Joined: 2018-11-22 + + + *Howard JohnsonCommits: 1Joined: 2018-11-25 + + + + + *Rizal MuttaqinCommits: 1Joined: 2018-12-18 + + + *Çağrı DolazCommits: 1Joined: 2018-12-30 + + + *Doğa Deniz ArıcıCommits: 1Joined: 2018-12-30 + + + *Andreas SturmlechnerCommits: 1Joined: 2019-01-08 + + + + + *KomalCommits: 1Joined: 2019-01-12 + + + *Ajay MahatoCommits: 1Joined: 2019-01-21 + + + *Jim JagielskiCommits: 1Joined: 2019-01-23 + + + *Yusuf SonmezCommits: 1Joined: 2019-02-10 + + + + + *Michael SchroederCommits: 1Joined: 2019-02-25 + + + *Sainal ShahCommits: 1Joined: 2019-03-10 + + + *Wenzhe PeiCommits: 1Joined: 2019-03-11 + + + *VaibhavCommits: 1Joined: 2019-03-17 + + + + + *kushagrakasliwal1Commits: 1Joined: 2019-03-18 + + + *Greg VeldmanCommits: 1Joined: 2019-03-24 + + + *Gagandeep SinghCommits: 1Joined: 2019-04-01 + + + *Jason BurnsCommits: 1Joined: 2019-04-08 + + + + + *RegisCommits: 1Joined: 2019-04-09 + + + *Milutin SmiljanicCommits: 1Joined: 2019-04-19 + + + *Andrew HyattCommits: 1Joined: 2019-05-02 + + + *Cor NouwsCommits: 1Joined: 2019-05-23 + + + + + *Jens CarlCommits: 1Joined: 2019-05-27 + + + *Jay BinghamCommits: 1Joined: 2019-06-03 + + + *Jim MacArthurCommits: 1Joined: 2019-06-11 + + + *Jim MacArthurCommits: 1Joined: 2019-07-07 + + + + + *Kovács László ZoltánCommits: 1Joined: 2019-08-07 + + + *Vipul GuptaCommits: 1Joined: 2019-08-09 + + + *Kovács László ZoltánCommits: 1Joined: 2019-08-13 + + + *AWASHIRO IkuyaCommits: 1Joined: 2019-08-17 + + + + + *Tim BartlettCommits: 1Joined: 2019-08-19 + + + *Nicolas FellaCommits: 1Joined: 2019-09-01 + + + *Dennis SchriddeCommits: 1Joined: 2019-10-04 + + + *Peter LevineCommits: 1Joined: 2019-10-18 + + + + + *Rasmus ThomsenCommits: 1Joined: 2019-10-26 + + + *Martin MilataCommits: 1Joined: 2019-12-04 + + + *shashikdmCommits: 1Joined: 2019-12-08 + + + *Selim ŞekerCommits: 1Joined: 2019-12-18 + + + + + *Sıla GençCommits: 1Joined: 2019-12-20 + + + *ertoCommits: 1Joined: 2019-12-20 + + + *Andrés MaldonadoCommits: 1Joined: 2019-12-26 + + + *cagatayCommits: 1Joined: 2019-12-28 + + + + + *Elzem AtayCommits: 1Joined: 2020-01-04 + + + *Louis MeyratCommits: 1Joined: 2020-01-12 + + + *Cumali ToprakCommits: 1Joined: 2020-01-27 + + + *Serkan ÖzkayaCommits: 1Joined: 2020-01-28 + + + + + *Emiliano VavassoriCommits: 1Joined: 2020-02-04 + + + *praneshulleriCommits: 1Joined: 2020-02-11 + + + *Kris van der MerweCommits: 1Joined: 2020-02-16 + + + *Adam MajerCommits: 1Joined: 2020-02-19 + + + + + *Sarabjot SinghCommits: 1Joined: 2020-02-28 + + + *Matteo CasalinCommits: 1Joined: 2020-03-04 + + + *TJ HoltCommits: 1Joined: 2020-03-12 + + + *So YanaiharaCommits: 1Joined: 2020-03-21 + + + + + *Harshit JainCommits: 1Joined: 2020-03-23 + + + *Wyatt TurnerCommits: 1Joined: 2020-03-26 + + + *mikiCommits: 1Joined: 2020-04-09 + + + *Alexander VolkovCommits: 1Joined: 2020-04-09 + + + + + *Coming___soONCommits: 1Joined: 2020-04-09 + + + *Pavel KlevakinCommits: 1Joined: 2020-04-17 + + + *Markus KellerCommits: 1Joined: 2020-05-01 + + + *Martin WhitakerCommits: 1Joined: 2020-05-08 + + + + + *vgeofCommits: 1Joined: 2020-05-09 + + + *Igor PoboikoCommits: 1Joined: 2020-05-22 + + + *Muhammet KaraCommits: 1Joined: 2020-05-24 + + + *Ilia SheshukovCommits: 1Joined: 2020-06-04 + + + + + *zdposterCommits: 1Joined: 2020-06-10 + + + *Yakov ReztsovCommits: 1Joined: 2020-06-15 + + + *Pranam LashkariCommits: 1Joined: 2020-06-20 + + + *Shiro KawaiCommits: 1Joined: 2020-06-26 + + + + + *Baurzhan MuftakhidinovCommits: 1Joined: 2020-07-12 + + + *Octavio AlvarezCommits: 1Joined: 2020-07-16 + + + *tgds03Commits: 1Joined: 2020-08-16 + + + *ramtk6726Commits: 1Joined: 2020-08-16 + + + + + *OctopusETCommits: 1Joined: 2020-08-17 + + + *HochwasserCommits: 1Joined: 2020-09-17 + + + *Felix WiegandCommits: 1Joined: 2020-09-25 + + + *Travis StewartCommits: 1Joined: 2020-10-01 + + + + + *Bryan GazaliCommits: 1Joined: 2020-10-03 + + + *NikhilCommits: 1Joined: 2020-10-04 + + + *DanielCommits: 1Joined: 2020-10-10 + + + *Platon PronkoCommits: 1Joined: 2020-10-19 + + + + + *gerritCommits: 1Joined: 2020-10-19 + + + *Betül İnceCommits: 1Joined: 2020-10-22 + + + *Ismael OleaCommits: 1Joined: 2020-10-28 + + + *Jeff LawCommits: 1Joined: 2020-11-03 + + + + + *TRaXInCommits: 1Joined: 2020-11-10 + + + *ArdaCommits: 1Joined: 2020-11-21 + + + *lastirembenderCommits: 1Joined: 2020-11-21 + + + *Henrik KarlssonCommits: 1Joined: 2020-11-26 + + + + + *ganeshdevareCommits: 1Joined: 2020-11-29 + + + *Edward LynchCommits: 1Joined: 2020-11-29 + + + *cu-16bcs1798Commits: 1Joined: 2020-12-02 + + + *gar SoulCommits: 1Joined: 2020-12-08 + + + + + *cseguraCommits: 1Joined: 2021-01-03 + + + *Quentin PAGÈSCommits: 1Joined: 2021-01-06 + + + *Isah BllacaCommits: 1Joined: 2021-01-08 + + + *anirudhSCommits: 1Joined: 2021-01-10 + + + + + *Antje KazimiersCommits: 1Joined: 2021-01-30 + + + *Linus HeckemannCommits: 1Joined: 2021-02-07 + + + *vipbuoyCommits: 1Joined: 2021-02-14 + + + *Quentin DELAGECommits: 1Joined: 2021-02-18 + + + + + *Victor KukshievCommits: 1Joined: 2021-02-18 + + + *heet-2312Commits: 1Joined: 2021-03-01 + + + *JohnCommits: 1Joined: 2021-03-04 + + + *ViswaasLPCommits: 1Joined: 2021-03-12 + + + + + *Mani KumarCommits: 1Joined: 2021-03-17 + + + *arpit1912Commits: 1Joined: 2021-03-19 + + + *pekka-devCommits: 1Joined: 2021-03-21 + + + *Mehmet Sait GülmezCommits: 1Joined: 2021-03-22 + + + + + *bykiviCommits: 1Joined: 2021-03-23 + + + *Aritz ErkiagaCommits: 1Joined: 2021-03-25 + + + *anirudh4583Commits: 1Joined: 2021-03-26 + + + *David BlatterCommits: 1Joined: 2021-03-31 + + + + + *Felipe LemaCommits: 1Joined: 2021-04-01 + + + *Oleksii MakhotinCommits: 1Joined: 2021-04-06 + + + *Vatsal32Commits: 1Joined: 2021-04-07 + + + *Carmen Bianca BakkerCommits: 1Joined: 2021-04-11 + + + + + *Steve FanningCommits: 1Joined: 2021-04-11 + + + *Joshua WilliamsCommits: 1Joined: 2021-05-22 + + + *MarcoFalkeCommits: 1Joined: 2021-06-03 + + + *Uwe AuerCommits: 1Joined: 2021-07-12 + + + + + *YakovlevAlCommits: 1Joined: 2021-07-15 + + + *Aleś BułojčykCommits: 1Joined: 2021-09-27 + + + *Rishav ChattopadhyaCommits: 1Joined: 2021-10-23 + + + *mwarnerCommits: 1Joined: 2021-11-25 + + + + + *TheRock BuilderCommits: 1Joined: 2021-12-03 + + + *Urja RannikkoCommits: 1Joined: 2021-12-05 + + + *Krzysztof HałasaCommits: 1Joined: 2021-12-29 + + + *altCommits: 1Joined: 2022-01-04 + + + + + *ArjunCommits: 1Joined: 2022-01-23 + + + *yaldaCommits: 1Joined: 2022-01-25 + + + *javierde22Commits: 1Joined: 2022-01-30 + + + *jwtiyar narimanCommits: 1Joined: 2022-02-14 + + + + + *Adityarup LahaCommits: 1Joined: 2022-03-12 + + + *Łukasz LeszkoCommits: 1Joined: 2022-03-17 + + + *Lemures LemniscatiCommits: 1Joined: 2022-03-17 + + + *Sarrah BastawalaCommits: 1Joined: 2022-03-21 + + + + + *Behrad KhorramCommits: 1Joined: 2022-04-03 + + + *Zain IftikharCommits: 1Joined: 2022-04-16 + + + *hasban12138Commits: 1Joined: 2022-04-28 + + + *Daniel Kamil KozarCommits: 1Joined: 2022-05-03 + + + + + *Dietrich SchultenCommits: 1Joined: 2022-06-11 + + + *Diane LeighCommits: 1Joined: 2022-06-18 + + + *Mahdyar M. M. SadeghiCommits: 1Joined: 2022-06-22 + + + *Mahkame ArabgariCommits: 1Joined: 2022-06-22 + + + + + *ParsaCommits: 1Joined: 2022-06-25 + + + *Amir HCommits: 1Joined: 2022-06-25 + + + *m.hashemianCommits: 1Joined: 2022-06-29 + + + *am.farajiCommits: 1Joined: 2022-07-09 + + + + + *Mohsen RahimiCommits: 1Joined: 2022-07-10 + + + *Ali_AbdollahianCommits: 1Joined: 2022-07-10 + + + *Arman RezaeiCommits: 1Joined: 2022-07-11 + + + *Sakura286Commits: 1Joined: 2022-07-26 + + + + + *Thierry EmeryCommits: 1Joined: 2022-08-08 + + + *Niko FinkCommits: 1Joined: 2022-08-09 + + + *Skyler GreyCommits: 1Joined: 2022-08-19 + + + *cutamarCommits: 1Joined: 2022-08-28 + + + + + *Aleksa SavicCommits: 1Joined: 2022-09-02 + + + *Ling YangCommits: 1Joined: 2022-09-07 + + + *Aron FischerCommits: 1Joined: 2022-09-23 + + + *Nalini Prasad DashCommits: 1Joined: 2022-10-04 + + + + + *Martin SchumannCommits: 1Joined: 2022-10-10 + + + *Hemant Kumar SinghCommits: 1Joined: 2022-10-18 + + + *Henner DrewesCommits: 1Joined: 2022-10-21 + + + *sahilbutoal08Commits: 1Joined: 2022-10-30 + + + + + *Amarjargal GundjalamCommits: 1Joined: 2022-10-31 + + + *zonnebloempjeCommits: 1Joined: 2022-11-03 + + + *SiddharthCommits: 1Joined: 2022-11-09 + + + *Jonas EyovCommits: 1Joined: 2022-11-18 + + + + + *Theppitak KaroonboonyananCommits: 1Joined: 2022-11-25 + + + *Đoàn Trần Công DanhCommits: 1Joined: 2022-11-27 + + + *ahsmhaCommits: 1Joined: 2022-12-26 + + + *Brett T. WardenCommits: 1Joined: 2022-12-30 + + + + + *Douglas GuptillCommits: 1Joined: 2023-01-01 + + + *ShulhanCommits: 1Joined: 2023-01-12 + + + *Devansh JainCommits: 1Joined: 2023-02-04 + + + *Greg KelesidisCommits: 1Joined: 2023-02-04 + + + + + *deepanshuraj099Commits: 1Joined: 2023-02-12 + + + *gokulakrishnan-shankarCommits: 1Joined: 2023-02-16 + + + *WANG XueruiCommits: 1Joined: 2023-02-17 + + + *Sarthak RoyCommits: 1Joined: 2023-02-23 + + + + + *Grigory A. MozhaevCommits: 1Joined: 2023-02-27 + + + *MoazAlaaCommits: 1Joined: 2023-03-05 + + + *jucasacaCommits: 1Joined: 2023-03-06 + + + *Angelle LegerCommits: 1Joined: 2023-03-10 + + + + + *DrGigioSanCommits: 1Joined: 2023-03-14 + + + *Nabeel SiddiquiCommits: 1Joined: 2023-03-19 + + + *TokieSanCommits: 1Joined: 2023-03-27 + + + *Sabri UnalCommits: 1Joined: 2023-03-29 + + + + + *jpuronahCommits: 1Joined: 2023-04-03 + + + + + + + + + Contributors to bundled templates + + + + + + + + *Laurent BPCommits: 60Joined: 2015-11-19 + + + *andreas kainzCommits: 23Joined: 2020-04-18 + + + *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 + + + *Heiko TietzeCommits: 10Joined: 2017-08-04 + + + + + *Samuel MehrbrodtCommits: 7Joined: 2013-01-16 + + + *Caolán McNamaraCommits: 6Joined: 2011-01-07 + + + *Andras TimarCommits: 5Joined: 2011-04-25 + + + *Alexander WilmsCommits: 4Joined: 2012-05-26 + + + + + *Andrea GelminiCommits: 4Joined: 2018-08-19 + + + *Matthias SeidelCommits: 4Joined: 2018-11-08 + + + *Olivier HallotCommits: 3Joined: 2012-03-26 + + + *Michael MeeksCommits: 2Joined: 2010-12-08 + + + + + *Istvan TuriCommits: 2Joined: 2012-08-16 + + + *David TardonCommits: 2Joined: 2012-08-20 + + + *Yousuf PhilipsCommits: 2Joined: 2016-10-18 + + + *Francisco SaitoCommits: 1Joined: 2011-03-29 + + + + + *Michael MuenchCommits: 1Joined: 2011-06-09 + + + *Michael StahlCommits: 1Joined: 2012-03-23 + + + *Stefan Knorr (astron)Commits: 1Joined: 2012-07-16 + + + *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 + + + + + *Péter SzathmáryCommits: 1Joined: 2015-01-07 + + + *Edmund LaugassonCommits: 1Joined: 2015-01-07 + + + *Michael KovarikCommits: 1Joined: 2015-01-07 + + + *Jun NOGATACommits: 1Joined: 2015-01-07 + + + + + *ZirkCommits: 1Joined: 2015-01-07 + + + *Tomaž VajngerlCommits: 1Joined: 2015-04-22 + + + *Mike KaganskiCommits: 1Joined: 2019-03-13 + + + *Rizal MuttaqinCommits: 1Joined: 2020-05-04 + + + + + *Kevin SuoCommits: 1Joined: 2022-09-30 + + + *Henry CastroCommits: 1Joined: 2023-02-20 + + + + + + + + Developers not committing code since 2010-09-28 + + + + + + + + Sascha BallachCommits: 1223Joined: 2000-09-22 + + + Pascal JunckCommits: 1061Joined: 2004-10-22 + + + jpCommits: 1037Joined: 2000-09-25 + + + Peter BurowCommits: 729Joined: 2000-09-20 + + + + + Sander VesikCommits: 695Joined: 2000-10-11 + + + Michael BrauerCommits: 648Joined: 2000-09-21 + + + Daniel VogelheimCommits: 615Joined: 2000-09-27 + + + Daniel BoelzleCommits: 578Joined: 2000-09-21 + + + + + Andreas SchlünsCommits: 542Joined: 2000-09-26 + + + Frank MeiesCommits: 536Joined: 2001-04-03 + + + Andreas MartensCommits: 492Joined: 2000-09-22 + + + Jörg BarfurthCommits: 474Joined: 2000-11-07 + + + + + Nils FuhrmannCommits: 473Joined: 2000-09-25 + + + Björn MilckeCommits: 470Joined: 2000-09-22 + + + Stephan SchäferCommits: 447Joined: 2001-01-29 + + + Jörg BudischewskiCommits: 407Joined: 2000-09-28 + + + + + Tino RachuiCommits: 364Joined: 2000-09-25 + + + Behrend CorneliusCommits: 354Joined: 2000-09-26 + + + gtCommits: 351Joined: 2000-09-22 + + + Oliver BraunCommits: 271Joined: 2000-09-22 + + + + + thCommits: 270Joined: 2000-10-27 + + + Hennes RohlingCommits: 253Joined: 2000-09-27 + + + Dieter LoeschkyCommits: 233Joined: 2000-09-20 + + + Kay RammeCommits: 230Joined: 2000-09-27 + + + + + Andreas BilleCommits: 228Joined: 2000-10-09 + + + Michael HönnigCommits: 211Joined: 2000-10-23 + + + Christof PintaskeCommits: 181Joined: 2000-09-26 + + + Stephan WunderlichCommits: 179Joined: 2002-02-26 + + + + + Dirk GroblerCommits: 147Joined: 2000-09-20 + + + Tom VerbeekCommits: 139Joined: 2000-09-29 + + + Karl HongCommits: 137Joined: 2002-02-21 + + + Tomas O'ConnorCommits: 135Joined: 2002-03-04 + + + + + Duncan FosterCommits: 125Joined: 2002-09-19 + + + Martin MaherCommits: 100Joined: 2000-09-29 + + + Aidan ButlerCommits: 92Joined: 2002-03-22 + + + arellanoCommits: 87Joined: 2001-02-12 + + + + + Bustamam HarunCommits: 74Joined: 2000-11-19 + + + hgCommits: 72Joined: 2009-10-08 + + + Babak MahbodCommits: 69Joined: 2000-09-21 + + + mfeCommits: 68Joined: 2000-10-13 + + + + + Gene AnayaCommits: 66Joined: 2000-10-09 + + + avyCommits: 58Joined: 2001-02-28 + + + Christoph NeumannCommits: 57Joined: 2003-01-30 + + + Bertram NolteCommits: 46Joined: 2001-08-16 + + + + + Steffen GrundCommits: 45Joined: 2003-02-04 + + + Michael MiCommits: 45Joined: 2004-07-14 + + + Gerd WeissCommits: 45Joined: 2007-04-26 + + + Armin TheissenCommits: 44Joined: 2000-09-22 + + + + + Cyrille MoureauxCommits: 42Joined: 2002-05-17 + + + markmCommits: 39Joined: 2002-03-22 + + + neilmCommits: 39Joined: 2002-11-13 + + + oisinCommits: 38Joined: 2000-10-03 + + + + + fredrikhCommits: 34Joined: 2008-06-17 + + + Lars OppermannCommits: 33Joined: 2002-09-30 + + + pwCommits: 32Joined: 2000-10-10 + + + tpfCommits: 32Joined: 2000-11-20 + + + + + skottiCommits: 30Joined: 2009-10-20 + + + John MarmionCommits: 28Joined: 2000-09-26 + + + Andre Fischer<Andre.W.FischerCommits: 28Joined: 2010-01-28 + + + wg111939Commits: 26Joined: 2010-03-17 + + + + + szCommits: 25Joined: 2001-04-11 + + + Kevin HendricksCommits: 25Joined: 2001-05-20 + + + Michael E. BohnCommits: 23Joined: 2010-08-10 + + + Ken FoskeyCommits: 22Joined: 2002-10-01 + + + + + tb121644Commits: 22Joined: 2009-09-08 + + + mmCommits: 19Joined: 2000-09-21 + + + khzCommits: 18Joined: 2000-09-21 + + + ghigginsCommits: 18Joined: 2002-05-19 + + + + + Sarah SmithCommits: 18Joined: 2002-10-21 + + + Wu YanCommits: 18Joined: 2010-04-28 + + + Amelia WangCommits: 17Joined: 2010-09-13 + + + Csaba BorbolaCommits: 16Joined: 2000-09-22 + + + + + dkennyCommits: 16Joined: 2001-04-17 + + + Darragh SherwinCommits: 15Joined: 2002-03-21 + + + Ping LiaoCommits: 14Joined: 2000-09-21 + + + okCommits: 13Joined: 2000-11-16 + + + + + Mindy LiuCommits: 13Joined: 2003-03-03 + + + Svante SchubertCommits: 12Joined: 2001-02-08 + + + cdtCommits: 11Joined: 2000-10-16 + + + Bernd EilersCommits: 11Joined: 2001-06-03 + + + + + Laszlo KovacsCommits: 11Joined: 2002-09-23 + + + Yuan LiCommits: 10Joined: 2006-12-14 + + + hb137859Commits: 10Joined: 2009-09-17 + + + John RiceCommits: 9Joined: 2002-09-27 + + + + + maCommits: 8Joined: 2001-03-21 + + + Joerg SieversCommits: 8Joined: 2008-06-13 + + + wvdCommits: 7Joined: 2001-07-18 + + + niddCommits: 7Joined: 2001-12-25 + + + + + mwuCommits: 7Joined: 2002-07-04 + + + Mike HayesCommits: 7Joined: 2002-10-09 + + + lwangCommits: 7Joined: 2002-11-06 + + + Jonathan PryorCommits: 7Joined: 2010-09-15 + + + + + Ilko HöppingCommits: 6Joined: 2001-05-04 + + + tsCommits: 5Joined: 2000-12-11 + + + dicCommits: 5Joined: 2001-02-12 + + + lucturCommits: 5Joined: 2003-11-05 + + + + + mathiasCommits: 5Joined: 2009-09-23 + + + Uwe FischerCommits: 5Joined: 2009-11-20 + + + Willem van DorpCommits: 4Joined: 2000-09-29 + + + ms93807Commits: 4Joined: 2010-01-08 + + + + + tlxCommits: 3Joined: 2000-12-07 + + + Stella SchulzeCommits: 3Joined: 2001-09-13 + + + Stefan TaxhetCommits: 3Joined: 2001-12-13 + + + tl93732Commits: 3Joined: 2009-10-20 + + + + + Jiao JianhuaCommits: 3Joined: 2010-09-13 + + + Terence TseCommits: 2Joined: 2000-09-22 + + + htajimaCommits: 2Joined: 2000-12-11 + + + Louis Suárez-PottsCommits: 2Joined: 2001-08-17 + + + + + Michael RauchCommits: 2Joined: 2002-03-19 + + + mxiaoCommits: 2Joined: 2002-09-17 + + + Alexis LedouxCommits: 2Joined: 2002-09-24 + + + Chris HallsCommits: 2Joined: 2002-10-04 + + + + + jmengCommits: 2Joined: 2003-12-04 + + + Wind LiCommits: 2Joined: 2004-01-30 + + + jobinCommits: 2Joined: 2008-02-29 + + + shaneCommits: 1Joined: 2000-10-02 + + + + + vsCommits: 1Joined: 2001-01-30 + + + dcCommits: 1Joined: 2002-03-05 + + + mishaCommits: 1Joined: 2002-04-29 + + + asaundersCommits: 1Joined: 2003-07-07 + + + + + Dan WilliamsCommits: 1Joined: 2004-03-08 + + + gyangCommits: 1Joined: 2004-10-29 + + + mbuCommits: 1Joined: 2005-10-18 + + + Nakata MahoCommits: 1Joined: 2006-07-08 + + + + + Artem KhvatCommits: 1Joined: 2007-12-14 + + + fs93730Commits: 1Joined: 2009-10-16 + + + cl93746Commits: 1Joined: 2009-10-22 + + + oc93805Commits: 1Joined: 2009-11-30 + + + + + sg128468Commits: 1Joined: 2010-01-20 + + + gh93821Commits: 1Joined: 2010-04-09 + + + + + + + + Contributors to bundled templates + + + + + + + + Oliver BolteCommits: 418Joined: 2004-09-08 + + + Rüdiger TimmCommits: 266Joined: 2003-12-01 + + + Jens-Heiner RechtienCommits: 187Joined: 2000-09-19 + + + Kurt ZenkerCommits: 146Joined: 2004-05-19 + + + + + Vladimir GlazounovCommits: 89Joined: 2004-12-23 + + + Hans-Joachim LankenauCommits: 15Joined: 2004-06-26 + + + Behrend CorneliusCommits: 6Joined: 2001-06-08 + + + Tom VerbeekCommits: 4Joined: 2001-01-26 + + + + + Volker Ahrendt [va]Commits: 2Joined: 2002-05-29 + + + + + + + + + We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: + + + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and + + + b) contributors to the OOo code base should also be credited for the excellent work they do. + + + Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. + Total contributions to the TDF Wiki + 2819 individuals contributed: + + + + + + + + Hrbrgr (57936) + + + Beluga (43878) + + + Marric (29421) + + + Raal (21148) + + + + + SteenRønnow (19458) + + + HanV (19180) + + + Manuelf (17313) + + + Akurery (14263) + + + + + Bantoniof (11366) + + + Pierre-yves samyn (10099) + + + K-j (9376) + + + Jayme Barrientos, Adolfo (8481) + + + + + Penny (8374) + + + Roczek, Dennis (8286) + + + Filmsi (8136) + + + Stevefanning (7903) + + + + + Kelemeng (6527) + + + Gautier, Sophie (5452) + + + Goncharuk, Lera (5436) + + + Nogata Jun (5238) + + + + + + (4614) + + + Uroveits (4564) + + + Yaron (4336) + + + Martin187 (4220) + + + + + Kompilainenn (4184) + + + Tagezibot (3924) + + + Tryon, Robinson (3712) + + + Brumla132 (3708) + + + + + Balland-Poirier, Laurent (3514) + + + Kevin, Suo (锁琨珑) (3375) + + + Jeanweber (3286) + + + Rizmut (3232) + + + + + Hibagonsan (3073) + + + Noorikhah, Hossein (3046) + + + Prcek (2888) + + + LibreOfficiant (2539) + + + + + Hallot, Olivier (2402) + + + PlateauWolf (2393) + + + Ronnie rg8888 (2352) + + + Diegoperesmarques (2142) + + + + + Bielefeld, Rainer (2077) + + + X1sc0 (1864) + + + Lyzbet (1827) + + + Enoki (1783) + + + + + Effenberger, Florian (1757) + + + LobaLuna (1697) + + + Michaelsen, Björn (1554) + + + Iva Ot (1545) + + + + + Horáček, Stanislav (1543) + + + Kolarkater (1418) + + + Marcpare (1403) + + + Blue.painting (1393) + + + + + GerryT (1330) + + + Naruoga (1239) + + + Riyadh (1211) + + + Adailton (1203) + + + + + Buzzatti Pacheco, Gustavo (1198) + + + Mirek2 (1162) + + + Nouws, Cor (1147) + + + So (1113) + + + + + Haas, Uwe (1095) + + + Clement21.philippe (1076) + + + E.le-gall (1027) + + + Ostrovsky, David (1011) + + + + + Junmeguro (983) + + + Novak, Nino (976) + + + Meeks, Michael (959) + + + Tom (926) + + + + + LLAP016 (875) + + + Tietze, Heiko (866) + + + Henschel, Regina (836) + + + Sanz Cabrero, Juan Carlos (830) + + + + + H-k (804) + + + Drew (748) + + + Behrens, Thorsten (739) + + + RobertG (733) + + + + + Teo91 (733) + + + Jmpierre (729) + + + Mike.saunders (720) + + + AAAA (710) + + + + + Kees538 (699) + + + Iversen, Jan (693) + + + Rathke, Eike (678) + + + Floris v (661) + + + + + Vajna, Miklos (660) + + + Lachend (647) + + + Hazel (639) + + + Jlv (603) + + + + + Jmadero (596) + + + Raulpacheco (596) + + + Sam m (567) + + + Lohmaier, Christian (563) + + + + + Elmau (554) + + + ChristophNoack (549) + + + Paulo (546) + + + JO3EMC (537) + + + + + Knorr, Stefan (521) + + + Davidnelson (517) + + + Elianedomingos (508) + + + Foote, V Stuart (503) + + + + + Reisinger, Florian (491) + + + Elcico (482) + + + Jana.urbanova (478) + + + Stahl, Michael (478) + + + + + Veracape (472) + + + Hellotheworld (466) + + + Sefran (466) + + + Philips, Yousuf (462) + + + + + Holešovský, Jan (451) + + + Mladek, Petr (450) + + + Eskroni (437) + + + Kaganski, Mike (436) + + + + + Rmfaile (436) + + + Timotheonb (421) + + + Chris69 (419) + + + Gecko (419) + + + + + McNamara, Caolán (410) + + + Luz Coelho, Rogério (409) + + + Sebul (408) + + + Yoshida, Kohei (407) + + + + + Mohrhard, Markus (397) + + + AndrasTimar (393) + + + Schiavinatto (393) + + + Alexander Wilms (392) + + + + + Tardon, David (388) + + + Petr-valach (386) + + + Foral (384) + + + Opensoftpl (381) + + + + + StefanW (379) + + + Herissongrognon (378) + + + LenkaD (377) + + + Emanuel Marcatinco (374) + + + + + Felipeviggiano (371) + + + Ady (367) + + + Thackert (359) + + + Kara, Muhammet (348) + + + + + Mayan Tigger (347) + + + Thiebaud, Norbert (341) + + + Libo02 (340) + + + Vpanter (333) + + + + + Dhsung (331) + + + Pruegsanusak, Korrawit (330) + + + Drodriguez (329) + + + Volkerme (329) + + + + + Wget (323) + + + Arranna (322) + + + Kitaygrad (314) + + + Kosiorek, Bartosz (313) + + + + + Donaldo (305) + + + Khanson679 (305) + + + Tseng, Cheng-Chia (294) + + + Cheche (292) + + + + + Heinzws (292) + + + Librelegal (292) + + + Lillqvist, Tor (292) + + + Emanuel A. Marcatinco B. (290) + + + + + Bergmann, Stephan (281) + + + HARA (279) + + + Valjanovickova (277) + + + Ansiklopedici (274) + + + + + Epix (268) + + + Helen russian (268) + + + Kaplan, Lior (267) + + + Lodahl (264) + + + + + Dayeong (263) + + + Twistios (259) + + + Remarques (252) + + + Deemonizer (248) + + + + + Vignoli, Italo (247) + + + Adrianoafonso (246) + + + Saraiki (244) + + + Loic (240) + + + + + EricBright (238) + + + Jeanmi2403 (237) + + + Steve (237) + + + Maintenance script (235) + + + + + Hogue (233) + + + Ithaldenni20 (233) + + + Mesho (233) + + + Bosdonnat, Cédric (231) + + + + + Bedipp (226) + + + Kerwyn (221) + + + Naniud (221) + + + Jbfaure (220) + + + + + Almusaireae (219) + + + Mars (219) + + + Kkwet38 (218) + + + Gilvanvilarim (217) + + + + + Khirano (215) + + + Babinecm (212) + + + YALÇINSOY, Ayhan (209) + + + ZuzuN (208) + + + + + Andreschnabel (207) + + + Chtfn (207) + + + Daveb (207) + + + Nemeth (206) + + + + + Latini, Marina (205) + + + XsLiDian (203) + + + Steinzeit (200) + + + Wheatbix (198) + + + + + Erhardt (193) + + + Schulz, Charles-H. (191) + + + DmitryBowie (188) + + + Franklin (188) + + + + + Tarnhold (187) + + + Mazerunner (185) + + + Méixome, Antón (179) + + + Alkurtass, Issa (178) + + + + + Sw0000j (176) + + + Raw text (175) + + + Madl, Tobias (175) + + + Fridrich (172) + + + + + Luizheli (172) + + + N.yadi (171) + + + Furusho (170) + + + Pitkänen, Harri (169) + + + + + Óvári (169) + + + Jiang, Yifan (168) + + + Det (165) + + + Ponzo, Gabriele (165) + + + + + Matuaki (163) + + + Rosp (163) + + + Ckhe1215 (162) + + + See (160) + + + + + Snelders, Rob (159) + + + Hagar Delest (159) + + + Xystina (154) + + + Uminakabkbk (153) + + + + + Goodlinuxuser (151) + + + Pietro (150) + + + Slacka (150) + + + Herzog, Christoph (149) + + + + + Chris-hoh (147) + + + Kukekko (147) + + + Valtermura (147) + + + Back69 (146) + + + + + Mamane, Lionel Elie (146) + + + Kirk (145) + + + Mipmap (144) + + + Teseu (144) + + + + + Michelr (141) + + + Lorenzo (140) + + + Tjhietala (140) + + + Gurbetoğlu, Gökhan (139) + + + + + Zolnai, Tamás (139) + + + Guilhem (138) + + + De Cuyper, Joren (138) + + + Mbalabanov (138) + + + + + Weissenbacher, Philipp (138) + + + Rutilus (138) + + + Abe, Takeshi (138) + + + Heliojsf (137) + + + + + P.guimberteau (137) + + + Pepeleduin (137) + + + Norah (135) + + + Shunesburg69 (135) + + + + + Filhocf (132) + + + Llunak (132) + + + Davydych (131) + + + Demetriusb (131) + + + + + Richteruwe (131) + + + Michel, Mathias (129) + + + Ikuya (127) + + + Ki Drupadi (127) + + + + + Nik (127) + + + Nabet, Julien (127) + + + Baffclan (126) + + + RGB.ES (124) + + + + + JARF (123) + + + Krackedpress (123) + + + Psluk (123) + + + Trapezus (122) + + + + + JohnSmith (120) + + + Liebel, Jennifer (119) + + + Phorious (118) + + + Jstnlth (117) + + + + + Lqju96 (117) + + + Stephan.ficht (117) + + + Spaeth, Sebastian (115) + + + Ysabeau (115) + + + + + Markers (114) + + + Massimo.zaffaina (113) + + + PulkitKrishna00 (113) + + + Vohe (113) + + + + + Marcus Gama (112) + + + Bachka (111) + + + Dougvigliazzi (111) + + + Medieval (111) + + + + + Monthoflibreoffice bot (110) + + + Mantke, Andreas (109) + + + Nyucel (108) + + + Salix (107) + + + + + Bitsfritz (104) + + + Klaibson (104) + + + MDDN (104) + + + Timur LOL (104) + + + + + Pechlaner, Wolfgang (102) + + + JZA (101) + + + WillZ (100) + + + Android272 (99) + + + + + JeHa (99) + + + AlanC (98) + + + Dan (95) + + + Vpinheiro (95) + + + + + Geraldg (94) + + + Köse, Gülşah (94) + + + Barbora (93) + + + MagicFab (93) + + + + + Andreasg (92) + + + Lekle (92) + + + Atalanttore (90) + + + Frombenny (90) + + + + + Richv2 (90) + + + Zeki (89) + + + Catalin Festila (88) + + + Hertel, Jesper (88) + + + + + Fišeras, Aurimas (87) + + + Milos (87) + + + Paulojose (87) + + + Omori (86) + + + + + Steve- - (86) + + + Eddy (85) + + + Evy (84) + + + Jfnif (84) + + + + + KorrawitBot (84) + + + Santhab (84) + + + Enio.gemmo (81) + + + JamesWalker (81) + + + + + Ogervasi (80) + + + Xosé (80) + + + 80686 (79) + + + KeithCu (79) + + + + + Kjh000121 (79) + + + Laveni (79) + + + CharlieRamirezAnimationStudiosMX (78) + + + Jwtiyar (78) + + + + + Marcio Oliveira (78) + + + Northwoods35 (78) + + + Ocleyr2lalune (78) + + + Uwealtmann (78) + + + + + Socetk (77) + + + Tommy.WU (77) + + + Quikee (76) + + + Albino (75) + + + + + K.K.Ashisuto (75) + + + Emoreno (74) + + + Lbalbalba (74) + + + Namikawamisaki (73) + + + + + Rachel618 (73) + + + Castermans, Luc (72) + + + Momo50 (72) + + + Aury88 (71) + + + + + RalfHB (71) + + + Sawakaze (71) + + + Al-Harthi, Ahmad Hussein (70) + + + Jo7ueb (70) + + + + + Malhassoun (69) + + + Freetank (68) + + + Fábio Farias (68) + + + Gghh (68) + + + + + SoNick RND (68) + + + Ptux (67) + + + Karbasion, Bersam (65) + + + Bmcs (65) + + + + + Kabe (65) + + + StanG (65) + + + Glogowski, Jan-Marek (64) + + + Oipila (64) + + + + + Ptrsk (64) + + + Hanapospisilova (63) + + + Kudelis, Rimas (63) + + + Sikeler (63) + + + + + Thibault, Samuel (63) + + + Popa, Adrian Marius (62) + + + Denco (61) + + + Frieder (61) + + + + + Jimin (61) + + + Arnaudlecam (60) + + + Jlgrenar (60) + + + Montané, Joan (60) + + + + + OctopusET (60) + + + Piotrekr1 (60) + + + Tynnoel (59) + + + AndikaTriwidada (58) + + + + + Camillem (58) + + + Neel, Daniel (58) + + + Kougen250T (58) + + + Loflex (58) + + + + + Kukan, Matúš (58) + + + Jihui choi (57) + + + Bubli (56) + + + Davefilms (56) + + + + + Glen.reesor (56) + + + Ramones (56) + + + Ramtk6726 (56) + + + Hunt, Andrzej (55) + + + + + Fifh (55) + + + Grandin, Noel (55) + + + Jrahemipour (55) + + + Cornell, Clayton (54) + + + + + Fanthomas (54) + + + Mahfiaz (54) + + + Heben2 (53) + + + Sunny2038 (53) + + + + + Lendo (52) + + + Petrizzo (52) + + + ArnoldSchiller (51) + + + Helmar (51) + + + + + Jaani (51) + + + Quoifleur (51) + + + Agd (50) + + + Halparker (50) + + + + + Paz (50) + + + Ronaldo (50) + + + SeoYeonJin (50) + + + Mpescador (49) + + + + + Magliocchetti, Riccardo (49) + + + Vardomescro (49) + + + Afaccioli74 (48) + + + Lviktoria (48) + + + + + Weghorn, Michael (48) + + + Dagobert 78 (47) + + + Tomoyuki, Kubota (47) + + + Jhannine20 (47) + + + + + Quest-88 (47) + + + Buj Gelonch, Robert Antoni (47) + + + Amtliz (46) + + + FloF (46) + + + + + Sk94 (46) + + + Sveinki (46) + + + Bfo (45) + + + Hosny, Khaled (45) + + + + + Lua (45) + + + Jung, Philippe (45) + + + Robwestein (45) + + + Bhorst (44) + + + + + Ikh1 (44) + + + Aaronxu (43) + + + Cottage14 (43) + + + Gareth (43) + + + + + GerhardW (43) + + + Wilper, Simon (43) + + + Enger, Terrence (43) + + + Donkers, Winfried (43) + + + + + Bluedwarf (42) + + + Fkara (42) + + + KAMI (42) + + + SangwooPark (42) + + + + + AnXh3L0 (41) + + + Another sam (41) + + + Arjunaraoc (41) + + + Joey (41) + + + + + Marklh9 (41) + + + Pedlino (41) + + + Fábio Coelho (40) + + + Kraucer (40) + + + + + Budea, Áron (39) + + + Valdirbarbosa (39) + + + Enervation (38) + + + Partick.auclair (38) + + + + + Pje335 (38) + + + Stephaneg (38) + + + Alex Thurgood (37) + + + Cjenkins (37) + + + + + Eliskavotipkova (37) + + + Ivanslf (37) + + + Aragunde Pérez, Jacobo (37) + + + Kano (37) + + + + + Kinshuksunil (37) + + + Castle, John LeMoyne (37) + + + Pavel1513 (37) + + + RaducuG (37) + + + + + Sistemo2021 (37) + + + Sherlock, Chris (37) + + + Caco13 (36) + + + Danishka (36) + + + + + Patheticcockroach (36) + + + Sci citation (36) + + + Thep (36) + + + Yan Pashkovsky (36) + + + + + Andreas ka (35) + + + Arnaud versini (35) + + + Jingtao, Yan (35) + + + Liongold (35) + + + + + Nora (35) + + + Pingping111 (35) + + + Stalker08 (35) + + + Subramanian, Muthu (35) + + + + + Alg (34) + + + Skagh1750 (34) + + + Bormant (33) + + + Davidlamhauge (33) + + + + + Kłos, Szymon (33) + + + FelipeAle (33) + + + Corrius, Jesús (33) + + + Lmartinezh (33) + + + + + Marrod (33) + + + Mateus.m.luna (33) + + + Pereriksson (33) + + + Ptoye (33) + + + + + Rafi (33) + + + Shirahara (33) + + + Alexanderwerner (32) + + + Clio (32) + + + + + Daud (32) + + + Lenochod (32) + + + Marinello, Marco (32) + + + Dryomov, Artur (32) + + + + + Monocat (32) + + + Vulcain (32) + + + Xuacu (32) + + + Chloeeekim (31) + + + + + H (31) + + + IvanM (31) + + + Kant, Pranav (31) + + + Usayan (31) + + + + + Am97 (30) + + + Justman10000 (30) + + + Maose (30) + + + Njsg (30) + + + + + SEVEN (30) + + + Speck (30) + + + Tclovis (30) + + + Thardeck (30) + + + + + Acbaird (29) + + + Cida.Coltro (29) + + + Darbe (29) + + + EdvaldoSCruz (29) + + + + + Elsass68490 (29) + + + Haaninjo (29) + + + Ledure, Jean-Pierre (29) + + + RodolfoRG (29) + + + + + Серж (29) + + + Ace-dent (28) + + + Riemer, Philipp (28) + + + PaoloPelloni (28) + + + + + المسيكين (28) + + + Khaledhosny2 (27) + + + Marcofilippozzi (27) + + + Marcos Paulo de Souza (27) + + + + + Micm (27) + + + PeppinoLib (27) + + + Sarojdhakal (27) + + + Thuswaldner, Albert (27) + + + + + Alayaran (26) + + + Eresus (26) + + + Ezeperez26 (26) + + + Fanch (26) + + + + + Librek (26) + + + Libreofficer (26) + + + Linuxman (26) + + + Lutch (26) + + + + + Myunghoonju (26) + + + Hawkins, Nigel (26) + + + Pirat Michi (26) + + + Vaslav (26) + + + + + Aidsoid (25) + + + Ailion (25) + + + Roßmanith, Christina (25) + + + Freddyrh (25) + + + + + Sullivan, Gatlin (25) + + + Lboccia (25) + + + Linux 9x (25) + + + Manuel De Franceschi (25) + + + + + Noelson (25) + + + Onur.bingo (25) + + + Freund, Matthias (25) + + + Schröder, Sophia (25) + + + + + Winniemiel05 (25) + + + Magee, Timothy (24) + + + Elpapki (24) + + + Gaianer (24) + + + + + Gérard24 (24) + + + Ksoviero (24) + + + Nik vr (24) + + + Olivier (24) + + + + + Hamurcu (23) + + + Jeppebundsgaard (23) + + + Lostinthiswhirlpool (23) + + + Olorin (23) + + + + + Skip-on (23) + + + TaeWong (23) + + + Team One (23) + + + Thumperward (23) + + + + + Tommy27 (23) + + + Toxitom (23) + + + Trueriver (23) + + + Webmink (23) + + + + + Youngman, Anthony W. (23) + + + Aphaia (22) + + + Bellerophon (22) + + + Bjoern (22) + + + + + HenryGR (22) + + + JChimene (22) + + + Keymap19 (22) + + + RegisPerdreau (22) + + + + + Roman (22) + + + Flywire (21) + + + Johannes (21) + + + Liusiqi43 (21) + + + + + Logisch dede (21) + + + MichaMuc (21) + + + Necdetyucel (21) + + + Puster (21) + + + + + Shiko (21) + + + WalterPape (21) + + + Wayra (21) + + + Bugmenot (20) + + + + + Dennisfrancis (20) + + + Grasip (20) + + + Grzesiek a (20) + + + HeinF (20) + + + + + Icobgr (20) + + + Kendram (20) + + + LLyaudet (20) + + + Mattsturgeon (20) + + + + + Monastirsky, Maxim (20) + + + PRosmaninho (20) + + + Vdragon (20) + + + Vmalep (20) + + + + + Webham (20) + + + XMatence (20) + + + Yorick (20) + + + Zapata (20) + + + + + A-zakh (19) + + + Chernik (19) + + + Clarice Vigliazzi (19) + + + Guateconexion (19) + + + + + Houbsi (19) + + + JaronBaron (19) + + + Jem (19) + + + Funk, Juergen (19) + + + + + Juergenfenn (19) + + + Kentarch (19) + + + Lothar.becker (19) + + + PeeWee (19) + + + + + Ionita, Teodor-Mircea (19) + + + Doležal, Vojtěch (18) + + + Ehsan.movahed (18) + + + Foolfitz (18) + + + + + Hidayet (18) + + + Jstaerk (18) + + + Narayan (18) + + + Nestifea61 (18) + + + + + Power, Noel (18) + + + Richard (18) + + + Serge Krot (18) + + + Sooth (18) + + + + + UriHerrera (18) + + + Vuhung (18) + + + Yusufketen (18) + + + 林漢昌 (18) + + + + + Akerbeltz (17) + + + Chd (17) + + + Craigo (17) + + + Dlmoretz (17) + + + + + Ertsey, Andor (17) + + + Guilherme.vanz (17) + + + Gulmorais (17) + + + Pinto, Marco A.G. (17) + + + + + Tõnnov, Mihkel (17) + + + Rubembarreto (17) + + + Sohyun99 (17) + + + Taken (17) + + + + + Uli.l (17) + + + Zu, Ximeng (17) + + + Yumakino (17) + + + Беломир (17) + + + + + Airon90 (16) + + + Alexpikptz (16) + + + Dhersh (16) + + + Elucches (16) + + + + + Janus (16) + + + Kingu (16) + + + MoIshihara (16) + + + Oweng (16) + + + + + P.Guimberteau (16) + + + PauGNU (16) + + + Ristoi (16) + + + Smarquespt (16) + + + + + Smrabelo (16) + + + Syntaxerrormmm (16) + + + TPJ (16) + + + APerson (15) + + + + + Akki95 (15) + + + Andy98 (15) + + + Bertob (15) + + + Gilward Kukel (15) + + + + + Irmhild (15) + + + Khlood Elsayed (15) + + + Lefevre00 (15) + + + Luctur (15) + + + + + Miko (15) + + + Naudy (15) + + + Dominguez, Rafael (15) + + + Patriciasc (15) + + + + + Rafaelff (15) + + + Raniaamina (15) + + + Raul.malea (15) + + + Royerjy (15) + + + + + Thorogood, Tom (15) + + + Ulf hamburg (15) + + + Yecril21pl (15) + + + 暗影遺言 (15) + + + + + Adsoncristian (14) + + + AliIsingor (14) + + + Darkcircle (14) + + + DrRobotto (14) + + + + + Elrath (14) + + + Fina (14) + + + Francis59 (14) + + + Guuml (14) + + + + + Halencarjunior (14) + + + Lfernandocarvalho (14) + + + Librosaurus (14) + + + Dixon, Luke (14) + + + + + Mderoucy (14) + + + Rania (14) + + + Reinsle (14) + + + RiderExMachina (14) + + + + + Susobhang70 (14) + + + Svante (14) + + + Tamiliam (14) + + + Testnoda (14) + + + + + Thangamani-arun (14) + + + Yoshi (14) + + + Akoscomp (13) + + + Alrt84 (13) + + + + + Alyssonware (13) + + + Beuss (13) + + + Cedric31 (13) + + + Crolidge (13) + + + + + Gallaecio (13) + + + Jobo (13) + + + Kadekilo (13) + + + Leomota (13) + + + + + Ljelly (13) + + + Luc (13) + + + Mabbb (13) + + + Mikeyy (13) + + + + + Mortense (13) + + + Odd123 (13) + + + Pete Boyd (13) + + + S.Gecko (13) + + + + + Samtuke (13) + + + Sanyii (13) + + + Simplicity Instinct (13) + + + ThierryM (13) + + + + + Tnishiki (13) + + + Tusharrai2017 (13) + + + Vivaelcelta (13) + + + Vkkodali (13) + + + + + A8 (12) + + + Alfabech (12) + + + And471 (12) + + + AustinW (12) + + + + + Bhaskar (12) + + + Brett (12) + + + Cepiloth (12) + + + Chris2020 (12) + + + + + Cralin (12) + + + Debring (12) + + + Al-Otaibi, Faisal M. (12) + + + Halan (12) + + + + + Immanuelg (12) + + + Kikopb (12) + + + Krabina (12) + + + Šebetić, Krunoslav (12) + + + + + Godard, Laurent (12) + + + Rimkus, Modestas (12) + + + Nandar (12) + + + Pcapeluto (12) + + + + + Gupta, Rachit (12) + + + Rafaelhlima (12) + + + Raruenrom, Samphan (12) + + + Möller, Sören — spelled Soeren Moeller in some patches (12) + + + + + Staticsafe (12) + + + Melenchuk, Vasily (12) + + + Veerh01 (12) + + + 翼之靈歌 (12) + + + + + Bryanquigley (11) + + + Cdan (11) + + + ChristopheS (11) + + + Dajare (11) + + + + + Ebraminio (11) + + + Eduaraujo (11) + + + Gokul, S (11) + + + Johnny M (11) + + + + + Kallecarl (11) + + + Kolbjoern (11) + + + Leatherbottle (11) + + + Luiz Henrique Natalino (11) + + + + + MNeto (11) + + + Pearson, Timothy (11) + + + Marco c (11) + + + Marcuskgosi (11) + + + + + NON (11) + + + Johansson, Niklas (11) + + + Nuernbergerj (11) + + + Rogeniobelem (11) + + + + + Salmaan (11) + + + Sunk8 (11) + + + Gomez, Andres (11) + + + Vrlivre (11) + + + + + Zero0w (11) + + + Aeusebio (10) + + + Algotruneman (10) + + + Castagno, Giuseppe (10) + + + + + Blargh (10) + + + ChrSchultz (10) + + + Diginin (10) + + + Eagles051387 (10) + + + + + Eduardogula (10) + + + Eficheux (10) + + + El7r (10) + + + J.baer (10) + + + + + Jdittrich (10) + + + Joacim (10) + + + Kadertarlan (10) + + + Kirill NN (10) + + + + + Linuxuser330250 (10) + + + Lionlinux (10) + + + Mesutcfc (10) + + + Chung, Elton (10) + + + + + Mikalai (10) + + + Morvan (10) + + + Mpumrlova (10) + + + Nateyee (10) + + + + + Offtkp (10) + + + Olea (10) + + + Otto (10) + + + Paour (10) + + + + + Revol (10) + + + Ronja (10) + + + Tatat (10) + + + Tomg (10) + + + + + Ttocsmij (10) + + + Twstdude0to1 (10) + + + User8192 (10) + + + Wlenon (10) + + + + + Al-Abdulrazzaq, Abdulmajeed (9) + + + Agger (9) + + + Aicra (9) + + + Brandner, Andreas (9) + + + + + AtkinsSJ (9) + + + Camargo (9) + + + Cnuss (9) + + + Compressor nickel (9) + + + + + Crazyskeggy (9) + + + Dupreyb (9) + + + Fatdf (9) + + + Gibi (9) + + + + + GisbertFriege (9) + + + Goranrakic (9) + + + Jim-BobHarris (9) + + + Jonatoni (9) + + + + + Jopsen (9) + + + Jowyta (9) + + + Kscanne (9) + + + Lapetec (9) + + + + + Lexeii (9) + + + Mapper (9) + + + Marco (9) + + + Meo (9) + + + + + MertTumer (9) + + + Msaffron (9) + + + Ohnemax (9) + + + Onting (9) + + + + + Oprea.luci (9) + + + PaoloVecchi (9) + + + Milvaques, Pasqual (9) + + + Foley, Peter (9) + + + + + Pixpray (9) + + + Dricot, Lionel (9) + + + Rantaro (9) + + + Rogawa (9) + + + + + Rpr (9) + + + Rptr (9) + + + Spacebat (9) + + + Spyros (9) + + + + + Therabi (9) + + + Urdulizer (9) + + + Tamás, Bunth (9) + + + Zhangxiaofei (9) + + + + + ميدو (9) + + + Alexxed (8) + + + Andrea Gelmini (8) + + + AndreasL (8) + + + + + Ausserirdischegesund (8) + + + Cocofan (8) + + + Cono (8) + + + Cusiri (8) + + + + + Cwendling (8) + + + Dashohoxha (8) + + + DrDub (8) + + + Ed Eyles (8) + + + + + Elacheche (8) + + + EyalRozenberg (8) + + + Horst (8) + + + Israel Chaves (8) + + + + + JR (8) + + + Jiero (8) + + + Jrsiqueira (8) + + + Jslozier (8) + + + + + Hoffimann Mendes, Júlio (8) + + + Dywan, Christian (8) + + + Kednar (8) + + + Rietveld, Kristian (8) + + + + + Lee (8) + + + Leigh, Jack (8) + + + Leo.h.hildebrandt (8) + + + Luisgulo (8) + + + + + Manj k (8) + + + Mrmox2 (8) + + + NightMonkey (8) + + + NirajanPant (8) + + + + + Osnola (8) + + + Paulo.tavares (8) + + + Peterpall (8) + + + Ricardolau (8) + + + + + Thejack (8) + + + Tibbylickle (8) + + + Troumad (8) + + + Vbkaisetsu (8) + + + + + VlhOwn (8) + + + Yakusha (8) + + + Yellow.h (8) + + + Yostane (8) + + + + + Kabatsayev, Ruslan (7) + + + Ahiijny (7) + + + Andrea.soragna (7) + + + Bastik (7) + + + + + Belkacem77 (7) + + + Berrykevin (7) + + + Bjherbison (7) + + + Bookman900 (7) + + + + + Borim7 (7) + + + Capiscuas (7) + + + Chin Zee Yuen (7) + + + Ciaran (7) + + + + + Dado (7) + + + Drose (7) + + + Esbardu (7) + + + Bateman, George (7) + + + + + GuKK-Devel (7) + + + Hunter, Kevin (7) + + + Ingotian (7) + + + Levith (7) + + + + + Lonelyhiker (7) + + + M1cky (7) + + + Mariosv (7) + + + Marton (7) + + + + + Mbayer (7) + + + MephistoBooks (7) + + + Francis, Matthew (7) + + + Nathanjh13 (7) + + + + + Ndduong (7) + + + Nemo bis (7) + + + Christener, Nicolas (7) + + + Olivier DDB (7) + + + + + Opensas (7) + + + PeaceByJesus (7) + + + Polte (7) + + + RMCampos (7) + + + + + Ravi (7) + + + Raykowj (7) + + + Rodo (7) + + + Scottclarke (7) + + + + + Shady (7) + + + Shantanuo (7) + + + Shaunrobot (7) + + + Simosx (7) + + + + + Tonnysmile (7) + + + Toxicbits (7) + + + Wabuo (7) + + + Webfork (7) + + + + + Woordje (7) + + + صفا الفليج (7) + + + Alexandrorodrigez (6) + + + Alpha (6) + + + + + Armin Dänzer (6) + + + Asian flower (6) + + + Higginson, Andrew (6) + + + Barend (6) + + + + + Bobe (6) + + + Bruno (6) + + + Cagatayyigit (6) + + + CassieLX (6) + + + + + Cccfr (6) + + + ClausKofoed (6) + + + Coypu (6) + + + Dag (6) + + + + + BEN MANSOUR, Mohamed-Ali (6) + + + Ddxavier (6) + + + Dfriedman (6) + + + DotnetCarpenter (6) + + + + + Mencken, Douglas (6) + + + Dr.Faust (6) + + + Druzhshchienschkyj (6) + + + Edmond ciorba (6) + + + + + Edmund.laugasson (6) + + + Equis (6) + + + FPhoenix (6) + + + Fdekruijf (6) + + + + + Gallaire, Florent (6) + + + Fisiu (6) + + + Florian heckl (6) + + + Gerritg (6) + + + + + Ghune (6) + + + Googly Googly (6) + + + HdV (6) + + + Hmoi (6) + + + + + Hramrach (6) + + + Infoprof (6) + + + Iplaw67 (6) + + + Timofeev, Ivan (6) + + + + + James 00cat (6) + + + Jeffersonx (6) + + + Kawichi (6) + + + Levlazinskiy (6) + + + + + Link Mauve (6) + + + MaggieT (6) + + + Mahdyar (6) + + + Manas (6) + + + + + Manop (6) + + + Mas (6) + + + Mgommel (6) + + + Mhonline (6) + + + + + Mmetz (6) + + + Ndlsas (6) + + + Öttl, Gerhard (6) + + + Only you (6) + + + + + Os cib (6) + + + PLNET (6) + + + Perezj (6) + + + Pescetti (6) + + + + + Peter Chastain (6) + + + Peterhuang1kimo (6) + + + Piotr285 (6) + + + Puggan (6) + + + + + Rotaj (6) + + + Goyal, Shubham (6) + + + Sn!py (6) + + + Sukit (6) + + + + + Sumitcn (6) + + + Telesto (6) + + + Heidenreich, Josh (6) + + + Thorwil (6) + + + + + TiagoSantos (6) + + + Tyree (6) + + + VACHER (6) + + + Vgezer (6) + + + + + Virthus (6) + + + Wagner Augusto Silva Rodrigo (6) + + + Wasserthal (6) + + + Wigglejimmy (6) + + + + + Wiseacre (6) + + + Xhi2018 (6) + + + Xiaoyu2006 (6) + + + 3blz (5) + + + + + Adam Co (5) + + + Albucasis (5) + + + AleXanDeR G (5) + + + Alfalb (5) + + + + + Alvarez, Octavio (5) + + + Anousak (5) + + + Liwen, Fan (5) + + + Art.Gilvanov (5) + + + + + Sodora, August (5) + + + AustinSaintAubin (5) + + + Baumgarp (5) + + + Bayramcicek (5) + + + + + BillRVA (5) + + + Bitigchi (5) + + + BloodIce (5) + + + Cray85 (5) + + + + + Dejourdain (5) + + + DickStomp (5) + + + Dmtrs32 (5) + + + DoFoWerner (5) + + + + + Faiq Aminuddin (5) + + + Fazbdillah (5) + + + Florian.haftmann (5) + + + Fpy (5) + + + + + Francewhoa (5) + + + GaboXandre (5) + + + Ggurley (5) + + + Gpoussel (5) + + + + + Gustav (5) + + + H.Sparks (5) + + + Habib (5) + + + Hatochan (5) + + + + + HubPfalz (5) + + + Hummer5354 (5) + + + HwangTW (5) + + + Icyitscold (5) + + + + + Jambdev (5) + + + Jaysponsored (5) + + + JoeP (5) + + + John.pratt (5) + + + + + KadlecOn (5) + + + Kamataki (5) + + + Klausmach (5) + + + Koji Annoura (5) + + + + + LibreOfficeUser1 (5) + + + Mak (5) + + + Mgaster (5) + + + Midimarcus (5) + + + + + Laplante, Chris (5) + + + Mtg (5) + + + Mtnyildrm (5) + + + Namikawa (5) + + + + + OSVALDO LINS VIANA (5) + + + Orcmid (5) + + + Pepe (5) + + + Pkoroau (5) + + + + + Poeml (5) + + + Quwex (5) + + + Radish (5) + + + Rajesh (5) + + + + + Raknor (5) + + + Raulpaes (5) + + + Rautamiekka (5) + + + ReneEngelhard (5) + + + + + Rhoslyn (5) + + + Rogerio DA (5) + + + Rsolipa (5) + + + SabinGC (5) + + + + + Salavine1 (5) + + + Samson (5) + + + Chvátal, Tomáš (5) + + + Kurmann, Roland (5) + + + + + Sergej (5) + + + Shivam (5) + + + Silva.arapi (5) + + + So solid moo (5) + + + + + Srividya (5) + + + Sswales (5) + + + Starseeker (5) + + + Taylorh140 (5) + + + + + Terentev.mn (5) + + + Tranzistors (5) + + + Wasdin (5) + + + Wt (5) + + + + + Yury Tarasievich (5) + + + AHi (4) + + + Aalam (4) + + + Aaronkyle (4) + + + + + Aas (4) + + + Adderbox76 (4) + + + Adrien.Ollier (4) + + + Agron (4) + + + + + Albertoeda (4) + + + Nureña, Aldo Román (4) + + + Alex1 (4) + + + Alexstrand7 (4) + + + + + AliKhP (4) + + + Alvarenga (4) + + + Alzoo (4) + + + Amire80 (4) + + + + + Andréb (4) + + + Archlid (4) + + + Arhitectul (4) + + + Arverne73 (4) + + + + + Axel (4) + + + Azorpid (4) + + + Bardo (4) + + + BathuAlike (4) + + + + + Widl, Bernhard (4) + + + Bigbek (4) + + + Blender3dartist (4) + + + Bntser (4) + + + + + Cam AW (4) + + + Clairedwood (4) + + + ConquerorsHaki (4) + + + Crankybot (4) + + + + + CyrilBeaussier (4) + + + Dante (4) + + + Deivan (4) + + + Dmerker (4) + + + + + DmitryRamones (4) + + + Doubi (4) + + + Dragon (4) + + + Robertson, Daniel (4) + + + + + Eisaks (4) + + + Erx700 (4) + + + Fmolinero (4) + + + Ftigeot (4) + + + + + Garrowolf (4) + + + Gmjs (4) + + + Gokaysatir (4) + + + GwenaelQ (4) + + + + + Hdu (4) + + + ImperfectlyInformed (4) + + + Izabela (4) + + + JKaufmann (4) + + + + + Jamesleader (4) + + + Jessefrgsmith (4) + + + Jiehong (4) + + + Jjmeric (4) + + + + + Jjpalacios (4) + + + JnRouvignac (4) + + + Jonata (4) + + + Jones (4) + + + + + Jonnygrant (4) + + + Jooste (4) + + + Joriki (4) + + + Le Bigot, Jean-Tiare (4) + + + + + Kemalayhan (4) + + + Lethargilistic (4) + + + Loren.rogers (4) + + + M.m.mozffart (4) + + + + + Haggag, Muhammad (4) + + + MPascual (4) + + + Rumianowski, Maciej (4) + + + Marinela (4) + + + + + Mikedoherty ca (4) + + + Mondeep18 (4) + + + Morgan greywolf (4) + + + Mortgage01 (4) + + + + + NGHLibreOffice (4) + + + O.villani (4) + + + Offidocs (4) + + + Orson69 (4) + + + + + Oscar90210 (4) + + + Paolopoz (4) + + + Paranemertes (4) + + + PatrickJ (4) + + + + + Pegasus (4) + + + Pgassmann (4) + + + Philj (4) + + + Phillip.davis (4) + + + + + van Oostrum, Pieter (4) + + + Pjacquod (4) + + + Prolog.guy (4) + + + Psao (4) + + + + + Qubit-test (4) + + + Randolphgamo (4) + + + Rebahozkoc (4) + + + Reyn100 (4) + + + + + Ricgal (4) + + + RjR (4) + + + Rodhos (4) + + + Sasha (4) + + + + + Sealview (4) + + + Selimseker (4) + + + Stevenmw (4) + + + Surat (4) + + + + + Tct (4) + + + Tempelorg (4) + + + Thetic (4) + + + Tk (4) + + + + + Tlequire (4) + + + Txwikinger (4) + + + Ufas (4) + + + UlKu (4) + + + + + Urhixidur (4) + + + Uzadmin (4) + + + V., Artem (4) + + + Wcolen (4) + + + + + Wikiuser (4) + + + Williamjmorenor (4) + + + Wpeixoto (4) + + + §chinagl (4) + + + + + Денис (4) + + + AbhilashSingh (3) + + + Adept (3) + + + Aexyn (3) + + + + + AhmadHaris (3) + + + Jain, Atishay (3) + + + Alex.simoes (3) + + + Alexsfagundes (3) + + + + + Almorca (3) + + + Andrey Usov (3) + + + Antanasb (3) + + + Ariete (3) + + + + + Arkanosis (3) + + + Armin (3) + + + Armin W. (3) + + + Arthur Zennig (3) + + + + + Aurelien (3) + + + Baena (3) + + + Bellerophon2 (3) + + + Benjwgarner (3) + + + + + Bernardi, Paolo (3) + + + Bindassanant (3) + + + Bodhi-Baum (3) + + + Bootingman (3) + + + + + Bos (3) + + + Prajapati, Gautam (3) + + + Brub (3) + + + Burdakov (3) + + + + + CIB.Mathias (3) + + + Canberkturan (3) + + + Castro (3) + + + Charu (3) + + + + + ChrisConCas (3) + + + Claudiosegovia (3) + + + Cmorgan (3) + + + Colokalle (3) + + + + + D0ugparker (3) + + + DaSch (3) + + + DanShearer (3) + + + Beurle, Darcy (3) + + + + + Bankston, Daniel (3) + + + Dilip (3) + + + Donbrookman (3) + + + Dubyk (3) + + + + + EdgeE (3) + + + Eeha0120 (3) + + + Eisa01 (3) + + + Elproferoman (3) + + + + + Schorsch, Emanuel (3) + + + ErSey (3) + + + Eric.ficheux (3) + + + Ericatamiris (3) + + + + + Estebanmonge (3) + + + Farukuzun (3) + + + Ferlodev (3) + + + Fofr11 (3) + + + + + Fraang (3) + + + Franzjakob (3) + + + Frob tea (3) + + + Fulldecent (3) + + + + + FunkyPenguin (3) + + + Gmasei (3) + + + Gokcen (3) + + + Gouchi (3) + + + + + Smaha, Guillaume (3) + + + Hansgerd.schneider (3) + + + Nag,Harshita (3) + + + Herrmarder (3) + + + + + Hwpplayer1 (3) + + + IanL (3) + + + Imanuelr10 (3) + + + Imcon (3) + + + + + It-christian (3) + + + IvanMM (3) + + + JDM (3) + + + Jammon (3) + + + + + Jcrben (3) + + + Jennifer.park (3) + + + Jessemoreirao (3) + + + Murugan, Jesso Clarence (3) + + + + + Jhbn (3) + + + Jo Cab (3) + + + Joe312213 (3) + + + Johannes Rohr (3) + + + + + Joseroberto (3) + + + Juanpabl (3) + + + Julianm (3) + + + K Karthikeyan (3) + + + + + Katasisc (3) + + + Kbiondi (3) + + + KeilaAlonso (3) + + + Kevinob (3) + + + + + Kfogel (3) + + + Khunshan (3) + + + KingAwiin (3) + + + Kkrothapalli (3) + + + + + LO Rob (3) + + + Lennoazevedo (3) + + + LewisCowles (3) + + + Libcub (3) + + + + + Lpranam (3) + + + LucaCappelletti (3) + + + Hryniuk, Łukasz (3) + + + Lupp (3) + + + + + Luuk (3) + + + Machey (3) + + + Bessières, Marc (3) + + + Margott (3) + + + + + Marializ (3) + + + Matteocam (3) + + + Mattias (3) + + + Maxwell (3) + + + + + Measure for Measure (3) + + + Melike (3) + + + Meryemezber (3) + + + Mhoes (3) + + + + + Mhsmsantos (3) + + + Michaelwheatland (3) + + + Mike98 (3) + + + Neookano (3) + + + + + NickWingate (3) + + + NicksonT (3) + + + Nicolas.abel (3) + + + Niconil (3) + + + + + Ragnarsson, Björgvin (3) + + + Nloira (3) + + + Noel Power (3) + + + OOarthurOo (3) + + + + + Steinbeiß, Simon (3) + + + Ojeremyj (3) + + + Oliverguenther (3) + + + Oprea luci (3) + + + + + Penalvch (3) + + + Pr410 (3) + + + Prakash72 (3) + + + Rajatvijay (3) + + + + + Rapha.ksf (3) + + + Rauloliverpaes (3) + + + Bevilacqua, Jean-Sébastien (3) + + + RebeccaHodgson (3) + + + + + Rick (3) + + + Robert.E.A.Harvey (3) + + + Rosemary (3) + + + S8321414 (3) + + + + + Sander Klootwijk (3) + + + Sangeeta (3) + + + Saper (3) + + + Satabin (3) + + + + + Sayt (3) + + + Schroed(ing)er (3) + + + Sebby (3) + + + Sergey Aka (3) + + + + + Shelandy (3) + + + Skinnerbird (3) + + + Smile4ever (3) + + + Soliac (3) + + + + + Songchuan (3) + + + Sotrud nik (3) + + + Soued031 (3) + + + StefanRing (3) + + + + + StefanU (3) + + + SteveKelem (3) + + + Steveo o (3) + + + Strugee (3) + + + + + Suren (3) + + + Sushils (3) + + + Taylor46 (3) + + + TheWebalyst (3) + + + + + Tiagosilva.anps (3) + + + Timsamoff (3) + + + Tititou36 (3) + + + Kumar, Tarun (3) + + + + + Toki (3) + + + Tomi Toivio (3) + + + ToniB (3) + + + Toxifier (3) + + + + + TrnsltLife (3) + + + Tushantin (3) + + + Ubap (3) + + + Kitzinger, Ulrich (3) + + + + + Underdog (3) + + + Vinctor (3) + + + Vljubovic (3) + + + Wagnerluis1982 (3) + + + + + Khoo, Wei Ming (3) + + + WesPeacock (3) + + + Xaker1 (3) + + + Yeominstall (3) + + + + + Yukawa (3) + + + Kolesnykov, Yurii (3) + + + Yvon Henel (3) + + + Zaria (3) + + + + + Zaxebo1 (3) + + + ترجمان05 (3) + + + さかみのかさね (3) + + + AbbeyI19jfjc (2) + + + + + AdamPrado8 (2) + + + AdrianValdez4 (2) + + + Adsha (2) + + + Agarciamog (2) + + + + + Aggelalex (2) + + + Alan (2) + + + Ale2017 (2) + + + AliceOliver7 (2) + + + + + Alina12345 (2) + + + Alisha (2) + + + AlmedaFrancis (2) + + + AlphonsoNava4 (2) + + + + + Amunizp (2) + + + AmyCarney5 (2) + + + Anasiic (2) + + + AndresChandia (2) + + + + + Andrew (2) + + + AndrewKuhn7 (2) + + + AndrewUlrich (2) + + + Andthebrain (2) + + + + + Anipeter (2) + + + Anjar (2) + + + Ankit (2) + + + AnnabelMcmullen (2) + + + + + AnnunciationGunn (2) + + + Anonimus (2) + + + AntoniaMead8 (2) + + + Jain, Anurag (2) + + + + + Aplatypus (2) + + + ApostlesSheldon (2) + + + Arachan (2) + + + Asal (2) + + + + + Ashaneba (2) + + + Nakashian, Ashod (2) + + + AvaGreer1 (2) + + + Ozdemir, Aybuke (2) + + + + + BZT42 (2) + + + Le Garrec, Vincent (2) + + + Baole.fang (2) + + + BernardMeza9 (2) + + + + + Beto (2) + + + BirdRivas2 (2) + + + BlazejJones1 (2) + + + BlessedOrozco (2) + + + + + Blume (2) + + + Blushingorg (2) + + + BoD (2) + + + Bogcahi (2) + + + + + Boivie (2) + + + Boldizsakawi7 (2) + + + BoleslausSaunders (2) + + + Bram (2) + + + + + BrandiToomer (2) + + + BridgetJarvis (2) + + + Bruceschaller (2) + + + BryantMclean6 (2) + + + + + ButlerBarron6 (2) + + + C0bb3r (2) + + + C1pr1an (2) + + + CallieMvzap (2) + + + + + CallieSalgado (2) + + + CamilleMccarthy (2) + + + CandidoRutherford (2) + + + CapistranOleary (2) + + + + + Capri99 (2) + + + CaraDang6 (2) + + + Carlosr (2) + + + CarolinaCalling (2) + + + + + CarrieDaniels (2) + + + CarrollRico2 (2) + + + Iacob, Catalin (2) + + + CavesGill8 (2) + + + + + Celsovsm (2) + + + Cgrosdemange (2) + + + Chabermu (2) + + + ChanieSnow2 (2) + + + + + Chemyakyn (2) + + + ChrisBarth (2) + + + ChrzcicielCampbell (2) + + + Cipriano (2) + + + + + Cjbackhouse (2) + + + Cl-r (2) + + + ClariceThorne (2) + + + ClaudiaCramer (2) + + + + + Clemen Beek (2) + + + McDonald, Jason C. (2) + + + Codingmicha (2) + + + Colabo (2) + + + + + Conrado (2) + + + Coogor (2) + + + CoralieCarr7 (2) + + + Crxssi (2) + + + + + CupertinoDarnell (2) + + + Cvk (2) + + + CyrillicEscobedo (2) + + + Cœur, Antoine (2) + + + + + DaCaPo (2) + + + Dairdev (2) + + + DaisieQuigley (2) + + + Damascene (2) + + + + + DanForrest2 (2) + + + Danese (2) + + + Danielt998 (2) + + + Danthedev (2) + + + + + Darkixion (2) + + + David4you (2) + + + Bolen, David (2) + + + De-jourdain (2) + + + + + Debugercz (2) + + + DelinaRomano5 (2) + + + DellePoole7 (2) + + + DenisArnaud (2) + + + + + Dennis' Spam test account (2) + + + Denytracom (2) + + + Devilcynthy (2) + + + Diazbastian (2) + + + + + Retout, Tim (2) + + + Django (2) + + + DoctorBaxter7 (2) + + + Domasj (2) + + + + + Domsau2 (2) + + + DonaldBryant7 (2) + + + Donals (2) + + + DrDrack (2) + + + + + Röllin, Lukas (2) + + + Duiliodias (2) + + + DukeDejesus7 (2) + + + EarleSiegel7 (2) + + + + + Ed (2) + + + EdaFreeman3 (2) + + + Eduardoarandah (2) + + + Edwardcottreau (2) + + + + + Efdali (2) + + + Efs710920mex (2) + + + Ejep520 (2) + + + Sánchez, Bartolomé (2) + + + + + Eldan (2) + + + ElisabethHolcomb (2) + + + Elixir (2) + + + EllieBowers3 (2) + + + + + ElmaGray6 (2) + + + Eloquence (2) + + + ElsieMacias7 (2) + + + Emily (2) + + + + + EmperorErnst5 (2) + + + Eneville (2) + + + EnosKraus6 (2) + + + Erdalronahi (2) + + + + + Eren (2) + + + ErieTovar6 (2) + + + Erikcht (2) + + + Ersteinmal (2) + + + + + ErwinHammond3 (2) + + + Escriba (2) + + + EssieKeller8 (2) + + + EsterEngland7 (2) + + + + + EthylCardenas (2) + + + F.werner.pohl (2) + + + FannyTillman8 (2) + + + FateHarrington (2) + + + + + Fbartels (2) + + + Fcelik (2) + + + Fcojavmc (2) + + + Feldo (2) + + + + + Ffinlo (2) + + + FlaviaPratt8 (2) + + + FlorenceGrossman (2) + + + FlorenceKim1 (2) + + + + + FordRhodes5 (2) + + + FranciscoByrne (2) + + + FredaDowning7 (2) + + + Fukanchik, Sergey (2) + + + + + Fyodor, Yemelyanenko (2) + + + Garcia.marc (2) + + + Gauste (2) + + + GayeRossetti (2) + + + + + GeoDowning4 (2) + + + GeoffLawrence (2) + + + GeorgiannaOchoa (2) + + + Gerardgiraud (2) + + + + + Gerpunzel (2) + + + GertieEllington (2) + + + GiertrudaLehman (2) + + + Girvinh (2) + + + + + GiuseppOQH (2) + + + Glanbeav (2) + + + Glococo (2) + + + Gmealer (2) + + + + + Gmolleda (2) + + + GraciaNorwood (2) + + + Grakic (2) + + + Grim (2) + + + + + Gualtiero (2) + + + Guillem (2) + + + Hacmiranda (2) + + + Hagar (2) + + + + + HannaEspinoza (2) + + + HardyBurris1 (2) + + + HarleyWatkins (2) + + + Hasithakj (2) + + + + + Hector (2) + + + Hedaja (2) + + + Hellpé (2) + + + Helo (2) + + + + + Hemmerling (2) + + + Jensen, Henrik (2) + + + HeriberDacomb (2) + + + HermitMuller1 (2) + + + + + Herronrobertson (2) + + + HershelPeterson (2) + + + IIIYates8 (2) + + + Ian22 (2) + + + + + Iannz (2) + + + IkeVasquez9 (2) + + + IlaRoberts4 (2) + + + Imagin8or (2) + + + + + InezFinney8 (2) + + + IraLane4 (2) + + + IrinaMccormack (2) + + + IrvinBernard9 (2) + + + + + IsadoraFoster (2) + + + IsaiahBuck5 (2) + + + IsiahLackey2 (2) + + + IvaRoach5 (2) + + + + + Burant, Jiri (2) + + + JOIMER REYES (2) + + + JacintaGibson (2) + + + Adams, Jonathan (2) + + + + + C., James (2) + + + JanuariusStringer (2) + + + Jasmins (2) + + + JasperSawyer7 (2) + + + + + JavierFernandez (2) + + + JayStafford3 (2) + + + Jcarl (2) + + + Jcentel (2) + + + + + Jcubic (2) + + + Jeraldinesewell (2) + + + JesseBHXEmrh (2) + + + JettieGibson2 (2) + + + + + Jgpestana (2) + + + Lingard, J. Graeme (2) + + + Jnicolas (2) + + + JoWi (2) + + + + + Johnki (2) + + + Jonathanacohen (2) + + + JonesRichter8 (2) + + + Jowenshaw (2) + + + + + João Pedro (2) + + + Jsargey (2) + + + Jsbueno (2) + + + Jstaniek (2) + + + + + JudasPeoples9 (2) + + + JudasPritchard (2) + + + JudithGraves6 (2) + + + Jumoun (2) + + + + + JustinaEldridge (2) + + + K.euser (2) + + + Kammreiter (2) + + + Kamran Mackey (2) + + + + + Karakartala (2) + + + KarkGunn4 (2) + + + Karolus (2) + + + Kasos (2) + + + + + Kay D (2) + + + Kazuyuki Yoshimura (2) + + + Keepiledar (2) + + + KeithC (2) + + + + + Khokkanen (2) + + + KittyBauer5 (2) + + + KlementynaMckinney (2) + + + Kmr (2) + + + + + KolbeKline1 (2) + + + Kolorguild (2) + + + Krauss (2) + + + keshav, krishna (2) + + + + + KrisvdMewe (2) + + + KroniK907 (2) + + + Krumelmonster (2) + + + KrystalMinchin (2) + + + + + KsaweryDempsey (2) + + + Kwilliams (2) + + + L (2) + + + LariaJohn3 (2) + + + + + LeanaParks2 (2) + + + LemuelHo1 (2) + + + LemuelWerner5 (2) + + + LeoNeo (2) + + + + + Lhcezar (2) + + + LidaMasters1 (2) + + + Lino (2) + + + Liotier (2) + + + + + Lj LO (2) + + + Lliehu (2) + + + Scheidt, Heiko (2) + + + LovisaKessler (2) + + + + + Petrolekas, Luke (2) + + + LubomyrWalden (2) + + + LucretiLlb (2) + + + Lukasjelinek (2) + + + + + LynnForbes3 (2) + + + Casalin, Matteo (2) + + + M42 (2) + + + Mărăşoiu, Mariana (2) + + + + + MZNBelendndq (2) + + + Ma83mit (2) + + + MabelleStanley (2) + + + MadisonDarnell (2) + + + + + MagdaleneOneal (2) + + + MaggieGray2 (2) + + + MagnoliaParsons (2) + + + Manebule (2) + + + + + Mangat veer sagar (2) + + + Manu.unni (2) + + + MarMai (2) + + + MarchCourtney (2) + + + + + Marcinz (2) + + + Marco74 (2) + + + MargeretRiley (2) + + + MarillaMarsh7 (2) + + + + + Marius (2) + + + MartaRollins2 (2) + + + MarthaBright4 (2) + + + MartinPC (2) + + + + + MateuszDominguez (2) + + + Matt 51 (2) + + + MauroTrevisan (2) + + + Mazuritz (2) + + + + + Mbemidio (2) + + + Meghanmcfadden15 (2) + + + MercedesDelatorre (2) + + + Merchantbusiness (2) + + + + + Kepplinger, Martin (2) + + + MerleGlass6 (2) + + + Mesutkullar (2) + + + Mgiri (2) + + + + + Michaelx (2) + + + Michal.p (2) + + + Michel Gagnon (2) + + + Michiel (2) + + + + + Mifritscher (2) + + + MikeyZ (2) + + + MinaHuggins7 (2) + + + Mind4z (2) + + + + + MinervaLuna8 (2) + + + Mitcoes (2) + + + Mjkopp (2) + + + Mklever (2) + + + + + Lechner, Marco (2) + + + Mloiseleur (2) + + + Mnalima (2) + + + Mnsoto (2) + + + + + Mochir (2) + + + Mordocai (2) + + + MorganJohnstone (2) + + + Rugiero, Mario (2) + + + + + Mst0 (2) + + + Mttza1 (2) + + + Musicstave (2) + + + Mustafa22 (2) + + + + + Nathansen, Martin (2) + + + Mzalewski (2) + + + Nacerix (2) + + + Nak47 (2) + + + + + Narcisgarcia (2) + + + NealEspinoza6 (2) + + + Nestor (2) + + + NettaHurd9 (2) + + + + + NettieParra1 (2) + + + NewtonZuniga9 (2) + + + Nishino, Daisuke (2) + + + NicholasLanier (2) + + + + + Nickk (2) + + + NinaLam6 (2) + + + Noirin (2) + + + NoricumArthur (2) + + + + + NorrisAndersen (2) + + + NovemberVogel (2) + + + Nsharifi (2) + + + Nuclearbob (2) + + + + + Naeil, Zoueidi (2) + + + OUPS (2) + + + Oashnic (2) + + + Odalcet (2) + + + + + Oiaohm (2) + + + OlaPost6 (2) + + + OlieBooth3 (2) + + + OlivierC (2) + + + + + OnopriyBrandon (2) + + + OrlandoArellano (2) + + + OscarMeredith (2) + + + Paolettopn (2) + + + + + Paolobenve (2) + + + Pascaje (2) + + + Paultrojahn (2) + + + Penguin42 (2) + + + + + Percherie (2) + + + PercherskySanford (2) + + + Senna Tschudin, Peter (2) + + + Pgraber (2) + + + + + Phil.davis (2) + + + Szelat, Phillip (2) + + + Pierre (2) + + + Piotrdrag (2) + + + + + Pitonyak (2) + + + Pkst (2) + + + Plubius (2) + + + PolishHungarianSharp (2) + + + + + Posterboy (2) + + + PragueBergman (2) + + + Pulsifer (2) + + + R.Yu. (2) + + + + + Rahul050 (2) + + + Rbecke (2) + + + ReeseShepherd (2) + + + ReginaldMcgraw (2) + + + + + RenniePrescott (2) + + + RetaStern5 (2) + + + RhodaMackey3 (2) + + + RiceBurger3 (2) + + + + + Ritlay (2) + + + Rmarquardt (2) + + + Roadrunner (2) + + + RollandHannah (2) + + + + + RosaliaFair4 (2) + + + RosannaPaul7 (2) + + + RosariaLampungm (2) + + + RoyFokker (2) + + + + + RoyShelton7 (2) + + + Ryan (2) + + + SDann22 (2) + + + Sagar.libo (2) + + + + + Sahasranaman M S (2) + + + Sam888 (2) + + + SamBenavides5 (2) + + + Sankarshan (2) + + + + + SavinaShaffer (2) + + + Bosio, Santiago (2) + + + Seanyoung (2) + + + SebastianNorth (2) + + + + + Sebutler (2) + + + Sergwish (2) + + + Sfeuser (2) + + + Sgrotz (2) + + + + + Shaforostoff (2) + + + Shankar (2) + + + Shaun.schutte (2) + + + Shitamo (2) + + + + + SidneyArredondo (2) + + + Sidorelauku (2) + + + Silwol (2) + + + Simplecontrast (2) + + + + + SlavicNapier8 (2) + + + Kasztenny, Adam (2) + + + Soothsilver (2) + + + Spledger (2) + + + + + Sshelagh (2) + + + Sshi (2) + + + Ssorgatem (2) + + + StaciBorthwick (2) + + + + + Stappers (2) + + + Weiberg, Stefan (2) + + + Stephan66 (2) + + + StillSven (2) + + + + + Stuarta0 (2) + + + Sturm (2) + + + Sungkhum (2) + + + Superurbi (2) + + + + + SusanSwain3 (2) + + + Sven.fischer.de (2) + + + Swazmo (2) + + + Sydbarrett74 (2) + + + + + Synanceia (Pierre) (2) + + + Tauon (2) + + + Techal (2) + + + Teelittle (2) + + + + + TeresaMacias3 (2) + + + Teresavillegas1 (2) + + + TheaGallardo8 (2) + + + TheodoseyPeralta (2) + + + + + TheophilusHess (2) + + + Thomase (2) + + + Thomeck (2) + + + Thorongil (2) + + + + + Tim1075 (2) + + + Timeshifter (2) + + + Timj (2) + + + TimothyChilds (2) + + + + + Tolunaydundar (2) + + + TomaMora8 (2) + + + Tomkeb (2) + + + Tomrobert87 (2) + + + + + TressieCulver (2) + + + Tsimonq2 (2) + + + TuMadre (2) + + + Isnard, Timothée (2) + + + + + Tux40000 (2) + + + Unhammer (2) + + + Unknown 32 (2) + + + Usik64 (2) + + + + + ValessioBrito (2) + + + VanHogan7 (2) + + + Dhall, Varun (2) + + + VasylynaKendall (2) + + + + + VerneDodd5 (2) + + + VeronaXiong3 (2) + + + VeronicaGrimes (2) + + + Villeroy (2) + + + + + Viper550 (2) + + + VirginArredondo (2) + + + VladimirBassett (2) + + + VladimirPrince (2) + + + + + VladislavA (2) + + + Volker (2) + + + VolodymyraGagnon (2) + + + Vossman (2) + + + + + WaclawaSavage (2) + + + WalentynaPatrick (2) + + + WallaceSolano (2) + + + WarrenChristian (2) + + + + + WashingtonOakley (2) + + + Watermelons (2) + + + WeronikaKeene (2) + + + Wi24rd (2) + + + + + WikiImporter (2) + + + WilhelminaEaton (2) + + + WincentyMorrison (2) + + + Wirelessben (2) + + + + + Wkn (2) + + + Wulei (2) + + + Xdelatour (2) + + + Xoristzatziki (2) + + + + + Yalda (2) + + + Yaw (2) + + + ZiriaKo (2) + + + ZoraWinkler1 (2) + + + + + 流星依旧 (2) + + + 29jm (1) + + + A H (1) + + + A.jadiba (1) + + + + + AJW (1) + + + AaronPeterson (1) + + + Abdulaziz A Alayed (1) + + + Absolute Garcinia (1) + + + + + Acagastya (1) + + + Kepenek, Ahmet Can (1) + + + AdalberDesailll (1) + + + Adlard.matthew (1) + + + + + Aevora (1) + + + Agradecido (1) + + + Ainurshakirov (1) + + + Ajaxfiore (1) + + + + + Sudheer Kumar, Akshit (1) + + + Alagris (1) + + + Alavec (1) + + + Albrechtloh (1) + + + + + Aleks (1) + + + Aleksio Kverka (1) + + + Henrie, Alex (1) + + + Alex-16 (1) + + + + + Alex38-68 (1) + + + Alex80 (1) + + + AlexF (1) + + + AlexP111223 (1) + + + + + AlexPS (1) + + + Alexandrevicenzi (1) + + + Alexandri (1) + + + Chemichev, Alexey (1) + + + + + Alexis 0071 (1) + + + Alexis Wilke (1) + + + Alexnivan (1) + + + Alexsandro Matias (1) + + + + + Aleyna.sare (1) + + + Ali (1) + + + AlphonsDen (1) + + + Alvaropg (1) + + + + + Alverne (1) + + + Amacater (1) + + + Andarilhobotto (1) + + + Anderius (1) + + + + + AndreasEk (1) + + + AndreasK (1) + + + AndreasNeudecker (1) + + + Andrey.turkin (1) + + + + + Andriazdk2177 (1) + + + AniVar (1) + + + Anjilajoli (1) + + + Ankur, Khandelwal (1) + + + + + AntoineVe (1) + + + Antonello Lobianco (1) + + + AntoniePonder (1) + + + Anurag kanungo (1) + + + + + Apfelsaft (1) + + + Priyadarshi, Apurva (1) + + + Arekm (1) + + + Ari (1) + + + + + ArielleWx (1) + + + Arkonide (1) + + + Armandos (1) + + + Arnaudc (1) + + + + + Arnoldu (1) + + + Teigseth, Arno (1) + + + Artintal (1) + + + ArturNeumann (1) + + + + + Arulm (1) + + + Asiersar (1) + + + Asselbornmauro (1) + + + Astalaseven (1) + + + + + Aszucs (1) + + + Atpnguyen (1) + + + Tang, Audrey (1) + + + AundreaPqf (1) + + + + + Averell7 (1) + + + Ayoooub (1) + + + B3t (1) + + + Bailiwick (1) + + + + + Bailly02 (1) + + + Bami (1) + + + Bandera (1) + + + BarryLovegrove (1) + + + + + Vincent, Babu (1) + + + Bburak (1) + + + Bckurera (1) + + + Khorram, Behrad (1) + + + + + BernardHannafor (1) + + + Bestdating (1) + + + Beyoken (1) + + + Beznogov (1) + + + + + Bezzy (1) + + + Bgloberman (1) + + + Bgranados (1) + + + Bhumikasethi (1) + + + + + BillyBurke (1) + + + Biofool (1) + + + Bittin (1) + + + Bjossir (1) + + + + + Bkg2018 (1) + + + BlakeGartrell (1) + + + BlancheBelstead (1) + + + BlancheClopton (1) + + + + + Blandyna (1) + + + Boboo (1) + + + Bolo (1) + + + Borowcm (1) + + + + + Bortis (1) + + + Sowden, Brad (1) + + + BrentHawthorne (1) + + + BridgettC (1) + + + + + Brinzing, Oliver (1) + + + BroderiHolyman (1) + + + BryceBrassell (1) + + + BryceMoorhouse (1) + + + + + Budo (1) + + + Burcin (1) + + + Bureken (1) + + + Burger.ga (1) + + + + + Bvarga91 (1) + + + Bwi (1) + + + Bzsolt (1) + + + BáthoryPéter (1) + + + + + CalebSommer (1) + + + CalebWgypcu (1) + + + Paul, Cameron (1) + + + Capira (1) + + + + + CarloASilva (1) + + + Carlos (1) + + + Carlos.gilaranz (1) + + + Castarco (1) + + + + + Cathy (1) + + + CedricQ73ktehvp (1) + + + Cesera (1) + + + ChantalWalker (1) + + + + + CharlesJenkins (1) + + + Chatjoe (1) + + + Chmilblick (1) + + + Beauzée-Luyssen, Hugo (1) + + + + + ChrPr (1) + + + Chrism (1) + + + Christoph.herzog (1) + + + Chrlutz (1) + + + + + Ciampix (1) + + + CiaraLockie (1) + + + Ciriaco (1) + + + Classieur (1) + + + + + Claudio Pannacci (1) + + + Cleitongalvao (1) + + + Clem (1) + + + CletaValentino (1) + + + + + Cnzhx (1) + + + Company (1) + + + Cora17 (1) + + + Corsolibreoffice (1) + + + + + Cosmopolitan (1) + + + Cpatrick08 (1) + + + Cpinedar (1) + + + Cpmipn (1) + + + + + Craigsbookclub (1) + + + Csanyipal (1) + + + Csongorhalmai (1) + + + Css17 (1) + + + + + Ctfranz (1) + + + Cycpe950609 (1) + + + DaisieDavison (1) + + + Danichocolate (1) + + + + + Dar18proore (1) + + + Darianospb (1) + + + DarylAlcantar (1) + + + DarylBoot (1) + + + + + Dave (1) + + + DavidDyck (1) + + + Davidmichel (1) + + + Davidredick (1) + + + + + DawnOgles (1) + + + Dbojan (1) + + + Di Marco, Daniel (1) + + + DeShark (1) + + + + + DeannaQuaife (1) + + + Ray, Debarshi (1) + + + DeborahW18 (1) + + + Decs75 (1) + + + + + Dennisroczek's Test Account (1) + + + Deragon (1) + + + Dezsiszabi (1) + + + Kis-Ádám, László (1) + + + + + Herde, Daniel (1) + + + Dhiren (1) + + + Dianasedlak (1) + + + Dirgita (1) + + + + + Kettner, Valentin (1) + + + Diver (1) + + + Dldld (1) + + + Do Nhu Vy (1) + + + + + DocuFree (1) + + + Dominiko (1) + + + Dominuk (1) + + + Donadel (1) + + + + + DoreenDuell (1) + + + Douglasm (1) + + + Drizamanuber (1) + + + Drlandi (1) + + + + + Drtimwright (1) + + + Dschulten (1) + + + Dusek (1) + + + Dxider (1) + + + + + Eardeleanu (1) + + + EarnestLamaro (1) + + + Echada (1) + + + EdgardoRios (1) + + + + + Edsonlead (1) + + + Edz (1) + + + Efcis (1) + + + Efegurkan (1) + + + + + Brill, Christoph (1) + + + Ehenryb (1) + + + Ekuiitr (1) + + + ElahiMohammad (1) + + + + + Elliot1415 (1) + + + ElmaWalcott (1) + + + Elshize (1) + + + Emad (1) + + + + + Emanuele.gissi (1) + + + Emyr (1) + + + Enesates (1) + + + Ennael (1) + + + + + Erasmo (1) + + + Erdemdemirkapi (1) + + + Eric (1) + + + ErickRijoJr (1) + + + + + Ernsttremel (1) + + + Roux, Elie (1) + + + Erto (1) + + + Esben aaberg (1) + + + + + EstelaAWTxiu (1) + + + Etinos (1) + + + Etua (1) + + + Eulerian (1) + + + + + Evfool (1) + + + FMA (1) + + + Factooor (1) + + + Falatooni (1) + + + + + Falcao (1) + + + Farhaf (1) + + + Farhank (1) + + + Farlfr (1) + + + + + FarzanehSarafraz (1) + + + Faseeh1218 (1) + + + Fdem (1) + + + Fenchi (1) + + + + + FerminAndrade (1) + + + Feyza (1) + + + Fgland (1) + + + Flaviodegodoi (1) + + + + + Flirtwomens (1) + + + Foadv (1) + + + Foobar (1) + + + Fourdollars (1) + + + + + Francesco (1) + + + Fred.th (1) + + + Fujimoto (1) + + + Funnym0nk3y (1) + + + + + Manas Joshi (1) + + + Gabix (1) + + + GabrielSwart (1) + + + Gabrielcossette (1) + + + + + Gabrielezorzi (1) + + + Ganton (1) + + + Gbilotta (1) + + + Gcoelho (1) + + + + + GeeZ (1) + + + Gekacheka (1) + + + Geoff newson (1) + + + Gerard (1) + + + + + van Valkenhoef, Gert (1) + + + Houston, Gary (1) + + + Giancav (1) + + + Gicmo (1) + + + + + Gmeijssen (1) + + + Goldensgui (1) + + + Gpmanrpi (1) + + + Grahl (1) + + + + + GrantCelley (1) + + + Grass-tree (1) + + + Hernandez, Gregg (1) + + + Gregkel (1) + + + + + GroverYQVvwokac (1) + + + Gstein (1) + + + Guhde (1) + + + Guillaume (1) + + + + + Gxyd (1) + + + H Wettlaufer (1) + + + HFujimaki (1) + + + HKagerer (1) + + + + + HLGZorawdi (1) + + + Haggai (1) + + + Hagos (1) + + + Hamati (1) + + + + + Hamkins (1) + + + Hapeck (1) + + + Hasinasi (1) + + + Hbr (1) + + + + + Rui Wang (1) + + + Hermeli2856 (1) + + + HessnovTHR44 (1) + + + Heygo (1) + + + + + Heyheyitshay (1) + + + Hfischer (1) + + + Hillrich (1) + + + HiltonFtel (1) + + + + + Hitomi t (1) + + + Hkdocholid (1) + + + Hlavaty, Tomas (1) + + + Hoaivan27299 (1) + + + + + K, Akshit (1) + + + Honza.havlicek (1) + + + Hopman (1) + + + HoracioRydge (1) + + + + + Hornmichaels (1) + + + Hosiryuhosi (1) + + + Hriostat (1) + + + HumbertGno (1) + + + + + Hwoehrle (1) + + + Ialbors (1) + + + Ian (1) + + + Iandol (1) + + + + + Ianjo (1) + + + Iantheprogrammer (1) + + + IbraM (1) + + + IceBlur (1) + + + + + Ida (1) + + + Gilham, Ian (1) + + + Igorizyumin (1) + + + Imypsychconsult (1) + + + + + Insanetree (1) + + + Iosonja (1) + + + Şendur, İrem (1) + + + Irene (1) + + + + + IrrevdJohn (1) + + + IrvinFunkw (1) + + + Ismael (1) + + + IvanP (1) + + + + + JDługosz (1) + + + JJ2020 (1) + + + JK2308 (1) + + + Jab (1) + + + + + Jailletc36 (1) + + + JaimeS (1) + + + Jamil (1) + + + JanEnEm (1) + + + + + Janani (1) + + + Jani (1) + + + Jano (1) + + + Janvlug (1) + + + + + Jayppc (1) + + + Jazzon (1) + + + Jcdericco (1) + + + Chaffraix, Julien (1) + + + + + Jean.fr (1) + + + JeanAmessdvaei (1) + + + JeanMcPhillamy (1) + + + JefferyMackenna (1) + + + + + Jentron256 (1) + + + Jeongkyu (1) + + + Jerdum (1) + + + Bicha, Jeremy (1) + + + + + JerryShi (1) + + + JessicaParker (1) + + + Gao, Qiwen (1) + + + JestineNww (1) + + + + + Lazar, Timotej (1) + + + Jflory7 (1) + + + Bruhn, Jan-Henrik (1) + + + Jinocvla (1) + + + + + JiroMatsuzawa (1) + + + Jj151515 (1) + + + Jmarchn (1) + + + Joachim (1) + + + + + Joanluc (1) + + + Joaofernando (1) + + + JoelH (1) + + + JohnTheHuman (1) + + + + + Johnplay2 (1) + + + JomarSilva (1) + + + Jonatanpc8 (1) + + + JonelleFritz (1) + + + + + Wu, Haidong (1) + + + JordanS (1) + + + Jorge Rodríguez Fonseca (1) + + + Jorgemendes (1) + + + + + JoseGatica (1) + + + Joselaurian (1) + + + Joshun (1) + + + José Eduardo (1) + + + + + Jp.santi (1) + + + Jpl (1) + + + Clarke, James (1) + + + JudeMcCafferty (1) + + + + + Juergen (1) + + + JuliannSnider (1) + + + Picca, Juan (1) + + + Jwcampbell (1) + + + + + Dubrulle, Kevin (1) + + + Kader (1) + + + Kapoorsahab (1) + + + KatjaG (1) + + + + + Bhat, Kishor (1) + + + Keith Long (1) + + + Kenb (1) + + + Kenneth.venken (1) + + + + + Kenton3255 (1) + + + Kiyotaka Nishibori (1) + + + Kasper, Kacper (1) + + + Kkremitzki (1) + + + + + Knobo (1) + + + Koeleman (1) + + + KoffeinFlummi (1) + + + Kosmous (1) + + + + + KourtneNester (1) + + + Kr1shna (1) + + + Krotow (1) + + + Kumar, Thangavel (1) + + + + + Kying (1) + + + LKPSharylptwsdo (1) + + + LMKemm (1) + + + LOFF (1) + + + + + LaPingvino (1) + + + Laskov (1) + + + LatoshaZnu (1) + + + LaverneNavarret (1) + + + + + LavinaVandermar (1) + + + Learner (1) + + + Librestez54 (1) + + + Likoski (1) + + + + + LillieNlowccx (1) + + + Lineinthesand (1) + + + Literacyglenys (1) + + + Litishia (1) + + + + + Liturgist (1) + + + Llalllal1 (1) + + + Lnjuanj (1) + + + Lobillo (1) + + + + + Lonaowna (1) + + + Lopp Rs (1) + + + Lorne (1) + + + Lplatypus (1) + + + + + Luca (1) + + + Lucas Filho (1) + + + LudieNutter (1) + + + Luiz Cláudio (1) + + + + + Luiz Rezende (1) + + + Luke (1) + + + M.sacharewicz (1) + + + M1ndfr3ak (1) + + + + + ME-ON1 (1) + + + MJW (1) + + + Maahicool (1) + + + Mabel7997eelu (1) + + + + + Maemst (1) + + + Magicienap (1) + + + Magmag (1) + + + Mahdiekrani (1) + + + + + Mahmudul (1) + + + Maliuta (1) + + + Manveru1986 (1) + + + Rizzolo, Mattia (1) + + + + + MarcK (1) + + + MarcelProut (1) + + + MarcoZ (1) + + + Biscaro, Marco (1) + + + + + Marcosalex (1) + + + Marcosps (1) + + + MargoBergman (1) + + + MarianaConnell (1) + + + + + Mariano Gaudix (1) + + + MarkWielaaard (1) + + + Markcoomes (1) + + + Markzog21 (1) + + + + + MarthaWaterman (1) + + + Martinvanzijl (1) + + + Marwan (1) + + + Maryanndefo91 (1) + + + + + Masaki tamakoshi (1) + + + Masakim-icraft (1) + + + Massao (1) + + + Mastizada (1) + + + + + Matsuura (1) + + + MattTheGeek (1) + + + Campanelli, Matteo (1) + + + Matěj (1) + + + + + Mau (1) + + + MavropaliasG (1) + + + Maxjf1 (1) + + + Mazinho (1) + + + + + Bechler, Moritz (1) + + + Mblume3 (1) + + + Doležel, Marek (1) + + + Megan44Dgxg (1) + + + + + Melikeyurtoglu (1) + + + Menturi (1) + + + MeskoBalazs (1) + + + Mete0r (1) + + + + + Mhaehnel (1) + + + Mhcrnl (1) + + + Mhenriday (1) + + + Mibm123 (1) + + + + + Michaelwood (1) + + + Michka B (1) + + + Midomidi2013 (1) + + + MiguelKastner (1) + + + + + Miguelteixeira (1) + + + Miguelverdu (1) + + + Mike-y (1) + + + MikeLittle (1) + + + + + Mikolg (1) + + + MilagroWilkerso (1) + + + Milanbv (1) + + + Miles (1) + + + + + Minarja4 (1) + + + Mirsad (1) + + + Miurahr (1) + + + Mixer (1) + + + + + Mixstah (1) + + + Mlager (1) + + + Mmeof (1) + + + Moaz eldfrawy (1) + + + + + Moberg (1) + + + Mohammedzalta (1) + + + Mohsenzl (1) + + + Monikayadav (1) + + + + + Morenonatural (1) + + + Soini, Mox (1) + + + Mrund (1) + + + Muhammadsufyanzainalabidin (1) + + + + + Mw (1) + + + Myan (1) + + + MyraBlacklow (1) + + + N3rd4i (1) + + + + + NEOhidra (1) + + + NNe8Lx2gc (1) + + + Nanotron (1) + + + Nattu (1) + + + + + Ncaio (1) + + + Nedrichards (1) + + + NellieSMWX (1) + + + Neteler (1) + + + + + Nevanos (1) + + + Ngoswami (1) + + + Nickko (1) + + + Nilss (1) + + + + + Nithin.padavu (1) + + + Ngo, Minh (1) + + + Nnino2 (1) + + + Norty (1) + + + + + Notafish (1) + + + NotesTracker (1) + + + Nouiurm (1) + + + Norbert X (1) + + + + + Nurohman (1) + + + Oclei (1) + + + Oig (1) + + + Oiouitt (1) + + + + + Okusi (1) + + + Olr (1) + + + Omansmith (1) + + + Omerta (1) + + + + + Onurkucuk67 (1) + + + Oosterkamp (1) + + + Opestawon (1) + + + Sezen, Hunter (1) + + + + + Orrd (1) + + + Osoitz (1) + + + Otrembad (1) + + + Oui (1) + + + + + Ouyang.leyan (1) + + + Anderson, Owen (1) + + + Esen, Özcan (1) + + + Ozpoz (1) + + + + + Öztürk, Emre (1) + + + P12tic (1) + + + PBsoft (1) + + + Pal, Pawan (1) + + + + + Padenton (1) + + + Paintdog (1) + + + PamalaDorsch (1) + + + Pankaj (1) + + + + + Papesky (1) + + + Passerpunt (1) + + + Pastim (1) + + + Paulmenzel (1) + + + + + Paulolima (1) + + + Pedro.silva (1) + + + Pelambrera (1) + + + PelinKuran (1) + + + + + PenelopHewlett (1) + + + Nowee, Peter (1) + + + Vorel, Petr (1) + + + Pharmankur (1) + + + + + Phb.nbnet.nb.ca (1) + + + Pherjung (1) + + + PhilDur (1) + + + Philhart (1) + + + + + PhilipTimms (1) + + + Philipp.weissenbacher (1) + + + Philippe43 (1) + + + Krylov, Phil (1) + + + + + Phomes (1) + + + Paraiso, Joan (1) + + + Pi (1) + + + Piero (1) + + + + + PieterDeBruijn (1) + + + Pietro.caballeri (1) + + + Pilavi (1) + + + Piratu (1) + + + + + Piternoize (1) + + + Pjotr (1) + + + Pkavinda (1) + + + Plastique (1) + + + + + Plastovicka (1) + + + Moscu, Alexandru (1) + + + PopularOutcast (1) + + + Por (1) + + + + + Carter, Travis (1) + + + Prosper (1) + + + Psauthor (1) + + + Psmits (1) + + + + + Psychicread531 (1) + + + Vidhey Pv (1) + + + Pwz266266 (1) + + + Illarionov, Arkadiy (1) + + + + + Qiguo (1) + + + Qtwallaert (1) + + + Quick8130 (1) + + + Quickbooktech (1) + + + + + Qwe (1) + + + Rahuldeshmukh101 (1) + + + Rainy (1) + + + Ramonturner (1) + + + + + Randallperry (1) + + + Ratajs (1) + + + Ratias (1) + + + Rcampbelllaos (1) + + + + + RebeccaToscano (1) + + + Rettichschnidi (1) + + + RexRTEJnlzus (1) + + + Rholler (1) + + + + + Rich (1) + + + Richardprins (1) + + + RickieHpejt (1) + + + Riessmi (1) + + + + + Rif (1) + + + Rifkiaz (1) + + + Rimas (1) + + + Ringlerloje (1) + + + + + Rion (1) + + + Ritzema, Brent (1) + + + Rizobix (1) + + + Kondratenko, Rostislav (1) + + + + + Robert Wetzlmayr (1) + + + Robineh (1) + + + Robustchao (1) + + + Rockers (1) + + + + + Rodney78 (1) + + + Rogach (1) + + + Deshmukh, Rohit (1) + + + Rombert (1) + + + + + Ron1 (1) + + + Ronakkothari123 (1) + + + Ronny (1) + + + Roscoe5731 (1) + + + + + Rosemarie (1) + + + Rpott (1) + + + Rsedak (1) + + + RuleAndLine (1) + + + + + Rvr (1) + + + Ryho (1) + + + ONODERA, Ryo (1) + + + SallyMorales (1) + + + + + Samanicute (1) + + + Sambhav2612 (1) + + + Tygier, Sam (1) + + + Sandeeps (1) + + + + + Sanipache (1) + + + Saracans (1) + + + Sariyar (1) + + + Satya kompella (1) + + + + + Sbar1 (1) + + + Sautier, Louis (1) + + + Schrillesbunteshamburg (1) + + + Scno (1) + + + + + Sctenebro (1) + + + Sdc (1) + + + Ak, Sedat (1) + + + Senopen (1) + + + + + Serdarot5 (1) + + + Seriouslaughbore (1) + + + Shay030 (1) + + + ShaynaMan (1) + + + + + SherylMillingto (1) + + + Shore, Shimon (1) + + + Shin en (1) + + + Chaurasia, Shobhit (1) + + + + + Shortblack (1) + + + ShyamPraveenSingh (1) + + + Siegi (1) + + + Silvestr (1) + + + + + Silvia (1) + + + Simonbr (1) + + + Skierpage (1) + + + Smalalur (1) + + + + + Socialmitchell (1) + + + Son Sonson (1) + + + Sourabh1031 (1) + + + Sovichet (1) + + + + + SpeedyGonsales (1) + + + Sphericalhorse (1) + + + Spreadsheetsorter (1) + + + Srijanani (1) + + + + + Stewart75H (1) + + + Stonehubmn (1) + + + StuartHalliday (1) + + + Subhash (1) + + + + + Supportex (1) + + + Susanne (1) + + + SusieVeasley (1) + + + Svalo (1) + + + + + SvenHornung (1) + + + Svend-ev (1) + + + Sviola (1) + + + Svtlichnijj (1) + + + + + Sébastien C. (1) + + + T-otsuki (1) + + + TAQSamueld (1) + + + Talueses (1) + + + + + Tanguy k (1) + + + Thanakanok, Tantai (1) + + + TaylorSlemp (1) + + + Techsquirrel (1) + + + + + TeganCreswick (1) + + + Tegas (1) + + + Terber (1) + + + Testsflirt (1) + + + + + The Magpie (1) + + + ThePokehach (1) + + + Thephilosoft (1) + + + Thom (1) + + + + + Thor574 (1) + + + ThudDriver (1) + + + Tifroumi (1) + + + Tigerbeard (1) + + + + + Tilt (1) + + + Tmongkol (1) + + + Tomasdd (1) + + + TomofumiYagi (1) + + + + + Viehmann, Thomas (1) + + + Tpokorra (1) + + + Transcend (1) + + + Trebledcliff (1) + + + + + TrevorPfe (1) + + + Trondtr (1) + + + Ttv20 (1) + + + Tuliouel (1) + + + + + Tuping (1) + + + Thibault, Vallois (1) + + + Jain, Umang (1) + + + Udit Sharma (1) + + + + + Shahid, Umair (1) + + + Vincent, Brennan (1) + + + Unho (1) + + + UrmasD (1) + + + + + UrsulaHorrell (1) + + + Ushabtay (1) + + + VIPSylar (1) + + + VPUJamikajklq (1) + + + + + Vandenoever (1) + + + Veeven (1) + + + Vera Cavalcante (1) + + + VernaSchulze (1) + + + + + Vincentvikram (1) + + + Vinkas (1) + + + Virus009 (1) + + + WOBFriedauk (1) + + + + + Wadrian (1) + + + WandaSingletary (1) + + + Wastl (1) + + + Waynemcl (1) + + + + + Webistrator (1) + + + Wedeluxe (1) + + + Wes (1) + + + Westantenna (1) + + + + + Wezchlebaty (1) + + + Wilhelm (1) + + + William Avery (1) + + + Williewortel (1) + + + + + Klausner, Thomas (1) + + + Woulouf (1) + + + Tjong, Winston Min (1) + + + XSXKristin (1) + + + + + Baudin, Lucas (1) + + + XeroxMe (1) + + + Xsdcfghjk (1) + + + Suhail Alkowaileet (1) + + + + + XtinaS (1) + + + Xtrusia (1) + + + Xuenhua (1) + + + Yangyiji (1) + + + + + YaroslavRutledge (1) + + + Yazu (1) + + + Yeliztaneroglu (1) + + + Desai, Yogesh (1) + + + + + Yoshiharu Kawai (1) + + + Yowbooks (1) + + + YvanM (1) + + + Yy y ja jp (1) + + + + + Bölöny, Zsolt (1) + + + ZBMCallumbwire (1) + + + Zangune (1) + + + Zibi (1) + + + + + Zizzle (1) + + + Zonnebloempje (1) + + + 鄒延 (1) + + + + + + + If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. + + + + \ No newline at end of file diff --git a/readlicense_oo/license/NOTICE b/readlicense_oo/license/NOTICE new file mode 100644 index 000000000..e33e3fa30 --- /dev/null +++ b/readlicense_oo/license/NOTICE @@ -0,0 +1,117 @@ +Portions of LibreOffice may include work under the Apache License v2.0 +requiring this NOTICE file to be provided. + +For a more complete license statement please see the associated +documentation +____ + +Apache OpenOffice (http://www.openoffice.org) +Copyright 2011, 2014 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +____ + + +Portions of this software copyright (c) 2000-2011, Oracle and/or its affiliates . + +Portions of this software (C) Copyright IBM Corporation 2003, 2012. All Rights Reserved. + +____ + +As part of the base system this product also includes code from the following +Apache projects: +- Apache Lucene +- Apache Portable Runtime +- Apache Portable Runtime Utility Library +- Apache Jakarta HttpClient - used by MediaWiki Publisher extension +- Apache Tomcat - used by MediaWiki Publisher extension + +The notices from these projects are following: + +Apache Lucene +Copyright 2006 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +The snowball stemmers in + contrib/snowball/src/java/net/sf/snowball +were developed by Martin Porter and Richard Boulton. +The full snowball package is available from + http://snowball.tartarus.org/ + + +Apache Portable Runtime +Copyright (c) 2011 The Apache Software Foundation. + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Portions of this software were developed at the National Center +for Supercomputing Applications (NCSA) at the University of +Illinois at Urbana-Champaign. + +This software contains code derived from the RSA Data Security +Inc. MD5 Message-Digest Algorithm. + +This software contains code derived from UNIX V7, Copyright(C) +Caldera International Inc. + + +Apache Portable Runtime Utility Library +Copyright (c) 2011 The Apache Software Foundation. + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Portions of this software were developed at the National Center +for Supercomputing Applications (NCSA) at the University of +Illinois at Urbana-Champaign. + +This software contains code derived from the RSA Data Security +Inc. MD5 Message-Digest Algorithm, including various +modifications by Spyglass Inc., Carnegie Mellon University, and +Bell Communications Research, Inc (Bellcore). + + +Apache Tomcat +Copyright 1999-2012 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Java Management Extensions (JMX) support is provided by +the MX4J package, which is open source software. The +original software and related information is available +at http://mx4j.sourceforge.net/. + +Java compilation software for JSP pages is provided by Eclipse, +which is open source software. The original software and +related information is available at +http://www.eclipse.org/. + +____ + +As part of the base system this product may also includes code from the following +projects which are licensed under the Apache license: +- redland +- Apache BeanShell Scripting for Java + +The notices from these projects are following: + +redland +This product includes Redland software (http://librdf.org/) +developed at the Institute for Learning and Research Technology, +University of Bristol, UK (http://www.bristol.ac.uk/). + +Apache BeanShell Scripting for Java +Copyright 1997-2012 Patrick Niemeyer +Granted to the Apache Software Foundation 2012 +Licensed under the Apache License, Version 2.0. +____ + +This product includes software developed by the OpenSSL Project +for use in the OpenSSL Toolkit. (http://www.openssl.org/) + diff --git a/readlicense_oo/license/license.xml b/readlicense_oo/license/license.xml new file mode 100644 index 000000000..d1dec6ad9 --- /dev/null +++ b/readlicense_oo/license/license.xml @@ -0,0 +1,7261 @@ + + + + + + Licensing and Legal information + + +

Licensing and Legal information

+

This product is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL + Version 2 license can be found below.

+

Jump to MPL Version 2

+

Third Party Code Additional copyright notices and license terms applicable to portions of the Software can be + found below in this document.

+

All trademarks and registered trademarks mentioned herein are the property of their respective owners.

+

Copyright © 2000–2022 LibreOffice contributors. All rights reserved.

+

This product is based on OpenOffice.org. Portions of this software are copyright © 2000-2011, Oracle and/or its + affiliates.

+

This product has been created by The Document Foundation, incorporating many modifications from different + contributors, see http://www.libreoffice.org/ for more details.

+

Note: Do not translate or localize this document. Only English version is legally binding.

+

Contents

+

Libraries

+

Extensions

+
+

Fonts

+
+ +

Artwork

+ + +

Mozilla Public License Version 1.1

+

Mozilla Public License Version 2.0

+

SIL Open Font License Version 1.1

+

Apache License

+ +

Creative Commons Attribution-ShareAlike 3.0 Unported

+

Creative Commons Attribution-ShareAlike 4.0 International

+
+

Third Party Code Additional Copyright + Notices and License Terms

+

Libraries

+
+

beanshell

+

The following software may be included in this product: beanshell. Use of any of this software is governed + by the terms of the license below:

+

Jump to Apache License Version 2.0

+
+
+

C++ Boost Library

+

The following software may be included in this product: C++ Boost Library. Use of any of this software is + governed by the terms of the license below:

+

Boost Software License - Version 1.0 - August 17th, 2003

+

Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software + and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the Software, and to permit + third-parties to whom the Software is furnished to do so, all subject to the following:

+

The copyright notices in the Software and this entire statement, including the above license grant, this + restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, + and all derivative works of the Software, unless such copies or derivative works are solely in the form of + machine-executable object code generated by a source language processor.

+

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, TITLE AND NON-INFRINGEMENT. IN + NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER + LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+
+
+

Breakpad

+

The following software may be included in this product: Google breakpad crash-reporting library. Use of any + of this software is governed by the terms of the license below:

+

Copyright (c) 2006, Google Inc.

+

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 Google Inc. 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.

+
+

Copyright 2001-2004 Unicode, Inc.

+

Disclaimer

+

This source code is provided as is by Unicode, Inc. No claims are made as to fitness for any particular + purpose. No warranties of any kind are expressed or implied. The recipient agrees to determine applicability of + information provided. If this file has been purchased on magnetic or optical media from Unicode, Inc., the sole + remedy for any claim will be exchange of defective media within 90 days of receipt.

+

Limitations on Rights to Redistribute This Code Unicode, Inc. hereby grants the right to freely use the + information supplied in this file in the creation of products supporting the Unicode Standard, and to make + copies of this file in any form for internal or external distribution as long as this notice remains + attached.

+
+
+

Bzip2

+

The following software may be included in this product: bzip2, a free and open-source file compression + program. Use of any of this software is governed by the terms of the license below:

+

This program, "bzip2", the associated library "libbzip2", and all documentation, are copyright (C) 1996-2010 + Julian R Seward. All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+
    +
  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.
  2. +
  3. The origin of this software must not be misrepresented; you must not claim that you wrote the original + software. If you use this software in a product, an acknowledgment in the product documentation would be + appreciated but is not required.
  4. +
  5. Altered source versions must be plainly marked as such, and must not be misrepresented as being the + original software.
  6. +
  7. The name of the author may not be used to endorse or promote products derived from this software + without specific prior written permission.
  8. +
+

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.

+

Julian Seward, jseward@bzip.org

+
+
+

Cairo

+

The following software may be included in this product: Cairo. Use of any of this software is governed by + the terms of the license below:

+

Cairo is free software.

+

Every source file in the implementation[*] of cairo is available to be redistributed and/or modified under + the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License + (MPL) version 1.1.  Some files are available under more liberal terms, but we believe that in all cases, each + file may be used under either the LGPL or the MPL.

+

See the following files in this directory for the precise terms and conditions of either license:

+

 Jump to LGPL Version 2.1

+

 Jump to MPL Version 1.1

+

Please see each file in the implementation for copyright and licensing information, (in the opening comment + of each file).

+

[*] The implementation of cairo is contained entirely within the "src" and "pixman" directories of the cairo + source distribution. There are other components of the cairo source distribution (such as the "test" and + "perf") that are auxiliary to the library itself. None of the source code in these directories contributes to a + build of the cairo library itself, (libcairo.so or cairo.dll or similar).

+

These auxiliary components are also free software, but may be under different license terms than cairo + itself. For example, most of the test cases in the perf and test directories are made available under a MIT + license to simplify any use of this code for reference purposes in using cairo itself. Other files might be + available under the GNU General Public License (GPL), for example. Again, please see the opening comment of + each file for copyright and licensing information.

+
+
+

CLEW

+

The following software may be included in this product: CLEW (OpenCL Extension Wrangler). Use of any of + this software is governed by the terms of the license below:

+

Boost Software License - Version 1.0 - August 17th, 2003

+

Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software + and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the Software, and to permit + third-parties to whom the Software is furnished to do so, all subject to the following:

+

The copyright notices in the Software and this entire statement, including the above license grant, this + restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, + and all derivative works of the Software, unless such copies or derivative works are solely in the form of + machine-executable object code generated by a source language processor.

+

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, TITLE AND NON-INFRINGEMENT. IN + NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER + LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+
+
+

CLucene

+

The following software may be included in this product: CLucene. Use of any of this software is governed by + the terms of the license below:

+

CLucene is distributed under the GNU Lesser General Public License (LGPL) or the Apache License, Version + 2.0

+

Jump to LGPL Version 2.1

+

Jump to Apache License Version 2.0

+
+
+

CoinMP

+

The following software may be included in this product: CoinMP. Use of any of this software is governed by + the terms of the license below:

+

Jump to Common Public License Version 1.0 (CPL)

+
+
+

Epoxy

+

The following software may be included in this product: epoxy.

+

The libepoxy project code is covered by the MIT license:

+
+

Copyright © 2013-2014 Intel Corporation

+

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 (including the next paragraph) 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.

+
+

The generated code is derived from Khronos's xml files, which appear under the following license:

+
+

Copyright (c) 2013 The Khronos Group Inc.

+

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or + associated documentation files (the "Materials"), to deal in the Materials without restriction, including + without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Materials, and to permit persons to whom the Materials are 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 Materials.

+

THE MATERIALS ARE 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 MATERIALS OR + THE USE OR OTHER DEALINGS IN THE MATERIALS.

+
+
+
+

expat XML Parser Toolkit

+

The following software may be included in this product: expat XML Parser Toolkit. Use of any of this + software is governed by the terms of the license below:

+

Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper

+

Copyright (c) 2001, 2002, 2003 Expat maintainers.

+

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.

+
+
+

Flute

+

The following software may be included in this product: Flute. Use of any of this software is governed by the + terms of the license below:

+

W3C IPR SOFTWARE NOTICE

+

Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.

+

Note: The original version of the W3C Software Copyright Notice and License could be + found at http://www.w3.org/Consortium/Legal/copyright-software-19980720

+

Copyright © 1994-2000 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University). + All Rights Reserved. http://www.w3.org/Consortium/Legal/

+

This W3C work (including software, documents, or other related items) is being provided by the copyright holders + under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have + read, understood, and will comply with the following terms and conditions:

+

Permission to use, copy, and modify this software and its documentation, with or without modification, for any + purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the + software and documentation or portions thereof, including modifications, that you make:

+
    +
  1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
  2. +
  3. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a + short notice of the following form (hypertext is preferred, text is permitted) should be used within the body + of any redistributed or derivative code: "Copyright © 2002 World Wide Web + Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/
  4. +
  5. Notice of any changes or modifications to the W3C files, including the date changes were made. (We + recommend you provide URIs to the location from which the code is derived.)
  6. +
+

THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.

+

COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF + ANY USE OF THE SOFTWARE OR DOCUMENTATION.

+

The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the + software without specific, written prior permission. Title to copyright in this software and any associated + documentation will at all times remain with copyright holders.

+
+
+

Freetype Library

+

The following software may be included in this product: Freetype. Use of any of this software is governed by + the terms of the license below:

+

0. Definitions

+

Throughout this license, the terms `package', `FreeType Project', and `FreeType archive' refer to the set of + files originally distributed by the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the `FreeType + Project', be they named as alpha, beta or final release.

+

`You' refers to the licensee, or person using the project, where `using' is a generic term including + compiling the project's source code as well as linking it to form a `program' or `executable'. This program is + referred to as `a program using the FreeType engine'.

+

This license applies to all files distributed in the original FreeType Project, including all source code, + binaries and documentation, unless otherwise stated in the file in its original, unmodified form as distributed + in the original archive. If you are unsure whether or not a particular file is covered by this license, you + must contact us to verify this.

+

The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All + rights reserved except as specified below.

+

1. No Warranty

+

THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, + BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE + FREETYPE PROJECT.

+

2. Redistribution

+

This license grants a worldwide, royalty-free, perpetual and irrevocable right and license to use, execute, + perform, compile, display, copy, create derivative works of, distribute and sublicense the FreeType Project (in + both source and object code forms) and derivative works thereof for any purpose; and to authorize others to + exercise some or all of the rights granted herein, subject to the following conditions:

+
    +
  • Redistribution of source code must retain this license file ('FTL.TXT') unaltered; any additions, + deletions or changes to the original files must be clearly indicated in accompanying documentation. The + copyright notices of the unaltered, original files must be preserved in all copies of source files.
  • +
  • Redistribution in binary form must provide a disclaimer that states that the software is based in part + of the work of the FreeType Team, in the distribution documentation. We also encourage you to put an URL to + the FreeType web page in your documentation, though this isn't mandatory.
  • +
+

These conditions apply to any software derived from or based on the FreeType Project, not just the + unmodified files. If you use our work, you must acknowledge us. However, no fee need be paid to us.

+

3. Advertising

+

Neither the FreeType authors and contributors nor you shall use the name of the other for commercial, + advertising, or promotional purposes without specific prior written permission.

+

We suggest, but do not require, that you use one or more of the following phrases to refer to this software + in your documentation or advertising materials: `FreeType Project', `FreeType Engine', `FreeType library', or + `FreeType Distribution'.

+

As you have not signed this license, you are not required to accept it. However, as the FreeType Project is + copyrighted material, only this license, or another one contracted with the authors, grants you the right to + use, distribute, and modify it. Therefore, by using, distributing, or modifying the FreeType Project, you + indicate that you understand and accept all the terms of this license.

+

4. Contacts

+

There are two mailing lists related to FreeType:

+
    +
  • freetype@freetype.org
  • +
+

Discusses general use and applications of FreeType, as well as future and wanted additions to the library + and distribution. If you are looking for support, start in this list if you haven't found anything to help you + in the documentation.

+
    +
  • devel@freetype.org
  • +
+

Discusses bugs, as well as engine internals, design issues, specific licenses, porting, etc.

+ +

Holds the current FreeType web page, which will allow you to download our latest development version and + read online documentation.

+

You can also contact us individually at:

+

David Turner
+ Robert Wilhelm
+ Werner Lemberg

+
+
+

Firebird

+

The applicable and approved licenses for the source files of the Firebird RDBMS project are:

+

1) InterBase Public License (IPL), version 1.0

+

2) Initial Developer's Public License (IDPL), version 1.0

+

The IPL is copyright of Borland Corp., the other licenses are copyright by the source code authors and + contributors. Both are variants of the Mozilla Public License V.1.1 (MPL). See http://www.firebirdsql.org/en/licensing/

+
+
+

fontconfig

+

The following software may be included in this product: fontconfig. Use of any of this software is governed + by the terms of the license below:

+

Copyright © 2002 Keith Packard

+

Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is + hereby granted without fee, provided that the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting documentation, and that the name of the + author(s) not be used in advertising or publicity pertaining to distribution of the software without specific, + written prior permission. The authors make no representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty.

+

THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE.

+
+
+

GLM

+

The following software may be included in this product: OpenGL Mathematics (GLM). Use of any of this + software is governed by the terms of the license below:

+

The MIT License

+

Copyright (c) 2005 - 2013 G-Truc Creation (www.g-truc.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.

+
+
+

GPGME

+

The following software may be included in this product: GnuPG Made Easy (GPGME). Use of any of this + software is governed by the terms of the license below:

+

Copyright 2001-2017 g10 Code GmbH

+

Jump to LGPL Version 2.1

+
+
+

Graphite2

+

The following software may be included in this product: Graphite2. Use of any of this software is governed + by the terms of the license below:

+

Copyright 2010, SIL International All rights reserved.

+

This library 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 2.1 of License, or (at your + option) any later version.

+

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public + License for more details.

+

You should also have received a copy of the GNU Lesser General Public License along with this library in the + file named "LICENSE". If not, write to the Free Software Foundation, Inc., 59 Temple Place,  Suite 330, + Boston, MA 02111-1307, USA or visit their web page on the  internet at http://www.fsf.org/licenses/lgpl.html.

+

Alternatively, you may use this library under the terms of the Mozilla Public License (http://mozilla.org/MPL) or under the GNU General Public License, as published by + the Free Software Foundation; either version 2 of the license or (at your option) any later version.

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+
+
+

HarfBuzz

+

HarfBuzz is licensed under the so-called "Old MIT" license.  Details follow. For parts of HarfBuzz that are + licensed under different licenses see individual files names COPYING in subdirectories where applicable.

+

Copyright © 2010,2011,2012  Google, Inc.
+ Copyright © 2012  Mozilla Foundation
+ Copyright © 2011  Codethink Limited
+ Copyright © 2008,2010  Nokia Corporation and/or its subsidiary(-ies)
+ Copyright © 2009  Keith Stribley
+ Copyright © 2009  Martin Hosken and SIL International
+ Copyright © 2007  Chris Wilson
+ Copyright © 2006  Behdad Esfahbod
+ Copyright © 2005  David Turner
+ Copyright © 2004,2007,2008,2009,2010  Red Hat, Inc.
+ Copyright © 1998-2004  David Turner and Werner Lemberg

+

For full copyright notices consult the individual files in the package.

+

Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, + modify, and distribute this software and its documentation for any purpose, provided that the above copyright + notice and the following two paragraphs appear in all copies of this software.

+

IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE COPYRIGHT + HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+

THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN + "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, + ENHANCEMENTS, OR MODIFICATIONS.

+
+
+

HSQLDB

+

The following software may be included in this product: HSQLDB. Use of any of this software is governed by + the terms of the license below:

+

ORIGINAL LICENSE (a.k.a. "hypersonic_lic.txt")

+

For content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:

+

Copyright (c) 1995-2000 by the Hypersonic SQL Group. All rights reserved. Redistribution and use in source + and binary forms, with or without modification, are permitted provided that the following conditions are + met:

+

Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.

+

Redistribution 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 Hypersonic SQL Group 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 HYPERSONIC SQL GROUP, 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. This software consists of voluntary contributions made by many individuals on behalf of the Hypersonic + SQL Group.

+

For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt)

+

Copyright (c) 2001-2004, The HSQL Development Group All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+

Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.

+

Redistribution 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 HSQL Development Group 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 HSQL DEVELOPMENT GROUP, HSQLDB.ORG, 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.

+
+
+

Hunspell

+

The following software may be included in this product: Hunspell. Use of any of this software is governed by + the terms of the license below:

+

GPL 2.0/LGPL 2.1/MPL 1.1 tri-license

+

The contents of this software may be used under the terms of the GNU General Public License Version 2 or + later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL") or (excepting the + LGPLed GNU gettext library in the intl/ directory) the Mozilla Public License Version 1.1 or later (the + "MPL").

+

Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, + either express or implied. See the licenses for the specific language governing rights and limitations under + the licenses.

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+
+
+

Hyphen

+

The following software may be included in this product: Hyphen. Use of any of this software is governed by + the terms of the license below:

+

GPL 2.0/LGPL 2.1/MPL 1.1 tri-license

+

The contents of this software may be used under the terms of the GNU General Public License Version 2 or + later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL") or (excepting the + LGPLed GNU gettext library in the intl/ directory) the Mozilla Public License Version 1.1 or later (the + "MPL").

+

The Plain TeX hyphenation tables "hyphen.tex" by Donald E. Knuth has a non MPL/LGPL compatible license, but + freely redistributable: "Unlimited copying and redistribution of this file are permitted as long as this file + is not modified. Modifications are permitted, but only if the resulting file is not named hyphen.tex."

+

Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, + either express or implied. See the licenses for the specific language governing rights and limitations under + the licenses.

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+
+

IAccessible2

+

The following software may be included in this product: IAccessible2 API.

+

IAccessible2 IDL Specification

+

Copyright (c) 2007, 2013 Linux Foundation
+ Copyright (c) 2006 IBM Corporation
+ Copyright (c) 2000, 2006 Sun Microsystems, Inc.
+ All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the + following conditions are met:

+
    +
  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.
  2. +
  3. 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.
  4. +
  5. Neither the name of the Linux Foundation nor the names of its contributors may be used to endorse or + promote products derived from this software without specific prior written permission.
  6. +
+

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.

+

This BSD License conforms to the Open Source Initiative "Simplified BSD License" as published at: http://www.opensource.org/licenses/bsd-license.php

+

IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 mark may be used in accordance with the + Linux Foundation + Trademark Policy to indicate compliance with the IAccessible2 specification.

+

Find out more about IAccessible2 at http://accessibility.linuxfoundation.org/.

+
+

ICU

+

The following software may be included in this product: ICU. Use of any of this software is governed by the + terms of the license below:

+

ICU License - ICU 1.8.1 and later

+

COPYRIGHT AND PERMISSION NOTICE

+

Copyright (c) 1995-2002 International Business Machines Corporation and others 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, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this + permission notice appear in all copies of the Software and that both the above copyright notice(s) and this + permission notice appear in supporting documentation.

+

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 OF THIRD + PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY + CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+

Except as contained in this notice, the name of a copyright holder shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software without prior written authorization of + the copyright holder.

+

All trademarks and registered trademarks mentioned herein are the property of their respective owners.

+
+
+

libabw

+

The following software may be included in this product: libabw. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

Libassuan

+

The following software may be included in this product: Libassuan. Use of any of this software is governed + by the terms of the license below:

+

Copyright (C) 2001-2013 Free Software Foundation, Inc.

+

Copyright (C) 2001-2017 g10 Code GmbH

+

Jump to LGPL Version 2.1

+
+
+

libatomic_ops

+

The following software may be included in this product: libatomic_ops. Use of any of this software is + governed by the terms of the license below:

+

Our intent is to make it easy to use libatomic_ops, in both free and proprietary software. Hence most code + that we expect to be linked into a client application is covered by an MIT-style license.

+

A few library routines are covered by the GNU General Public License. These + are put into a separate library, libatomic_ops_gpl.a.

+

The low-level part of the library is mostly covered by the following license:

+
+

Copyright (c) ...

+

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.

+
+

A few files in the sysdeps directory were inherited in part from the Boehm-Demers-Weiser conservative + garbage collector, and are covered by its license, which is similar in spirit:

+
+

Copyright (c) ...

+

THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN + RISK.

+

Permission is hereby granted to use or copy this program for any purpose, provided the above notices are + retained on all copies. Permission to modify the code and to distribute modified code is granted, provided the + above notices are retained, and a notice that the code was modified is included with the above copyright + notice.

+
+

Note: the portion needed for Firebird (libatomic_ops) is MIT licensed.

+
+
+

libcdr

+

The following software may be included in this product: libcdr. Use of any of this software is governed by + the terms of the license below:

+

MPL 1.1 / LGPL v2+ / GPL v2+

+

Jump to GPL Version 2

+

Jump to LGPL Version 2

+

Jump to MPL Version 1.1

+
+
+

libcmis

+

The following software may be included in this product: libcmis. Use of any of this software is governed by + the terms of the license below:

+

MPL 1.1 / LGPL v2+ / GPL v2+

+

Jump to GPL Version 2

+

Jump to LGPL Version 2

+

Jump to MPL Version 1.1

+
+
+

libcurl

+

The following software may be included in this product: libcurl. Use of any of this software is governed by + the terms of the license below:

+

Copyright (c) 1996 - 2009, Daniel Stenberg, <daniel@haxx.se>.

+

All rights reserved.

+

Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby + granted, provided that the above copyright notice and this permission notice appear in all copies.

+

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 OF THIRD + PARTY RIGHTS. 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.

+

Except as contained in this notice, the name of a copyright holder shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software without prior written authorization of + the copyright holder.

+
+
+

libe-book

+

The following software may be included in this product: libe-book. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libeot

+

The following software may be included in this product: libeot. Use of any of this software is governed by + the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libepubgen

+

The following software may be included in this product: libepubgen. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libetonyek

+

The following software may be included in this product: libetonyek. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libexttextcat

+

The following software may be included in this product: libexttextcat. Use of any of this software is + governed by the terms of the license below:

+

Copyright (c) 2003, WiseGuys Internet B.V.

+

All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+

- Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.

+

- Redistribution 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 WiseGuys Internet B.V. 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.

+
+
+

libfreehand

+

The following software may be included in this product: libfreehand. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

Libgpg-error

+

The following software may be included in this product: Libgpg-error. Use of any of this software is governed + by the terms of the license below:

+

Copyright (C) 2001-2017 g10 Code GmbH

+

Jump to LGPL Version 2.1

+
+
+

libjpeg-turbo

+

The following software may be included in this product: libjpeg-turbo. libjpeg-turbo is covered by three + compatible BSD-style open source licenses:

+
    +
  • +

    The IJG (Independent JPEG Group) License, which is listed below

    +

    This license applies to the libjpeg API library and associated programs (any code inherited from + libjpeg, and any modifications to that code.)

    +
  • +
  • +

    The Modified (3-clause) BSD License, which is listed below

    +

    This license covers the TurboJPEG API library and associated programs, as well as the build + system.

    +
  • +
  • +

    The zlib License

    +

    This license is a subset of the other two, and it covers the libjpeg-turbo SIMD extensions.

    +
  • +
+

Complying with the libjpeg-turbo Licenses

+

This section provides a roll-up of the libjpeg-turbo licensing terms, to the best of our understanding.

+
    +
  1. +

    If you are distributing a modified version of the libjpeg-turbo source, then:

    +
      +
    1. +

      You cannot alter or remove any existing copyright or license notices from the source.

      +

      Origin

      +
        +
      • Clause 1 of the IJG License
      • +
      • Clause 1 of the Modified BSD License
      • +
      • Clauses 1 and 3 of the zlib License
      • +
      +
    2. +
    3. +

      You must add your own copyright notice to the header of each source file you modified, so + others can tell that you modified that file (if there is not an existing copyright header in + that file, then you can simply add a notice stating that you modified the file.)

      +

      Origin

      +
        +
      • Clause 1 of the IJG License
      • +
      • Clause 2 of the zlib License
      • +
      +
    4. +
    5. +

      You must include the IJG README file, and you must not alter any of the copyright or license + text in that file.

      +

      Origin

      +
        +
      • Clause 1 of the IJG License
      • +
      +
    6. +
    +
  2. +
  3. +

    If you are distributing only libjpeg-turbo binaries without the source, or if you are distributing + an application that statically links with libjpeg-turbo, then:

    +
      +
    1. +

      Your product documentation must include a message stating:

      +

      This software is based in part on the work of the Independent JPEG Group.

      +

      Origin

      +
        +
      • Clause 2 of the IJG license
      • +
      +
    2. +
    3. +

      If your binary distribution includes or uses the TurboJPEG API, then your product + documentation must include the text of the Modified BSD License (see below.)

      +

      Origin

      +
        +
      • Clause 2 of the Modified BSD License
      • +
      +
    4. +
    +
  4. +
  5. +

    You cannot use the name of the IJG or The libjpeg-turbo Project or the contributors thereof in + advertising, publicity, etc.

    +

    Origin

    +
      +
    • IJG License
    • +
    • Clause 3 of the Modified BSD License
    • +
    +
  6. +
  7. +

    The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be free of defects, nor do we + accept any liability for undesirable consequences resulting from your use of the software.

    +

    Origin

    +
      +
    • IJG License
    • +
    • Modified BSD License
    • +
    • zlib License
    • +
    +
  8. +
+

The Modified (3-clause) BSD License

+

Copyright (C)2009-2019 D. R. Commander. All Rights Reserved. Copyright (C)2015 Viktor Szathmáry. 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 libjpeg-turbo 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 HOLDERS 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.

+

Why Three Licenses?

+

The zlib License could have been used instead of the Modified (3-clause) BSD License, and since the IJG + License effectively subsumes the distribution conditions of the zlib License, this would have effectively + placed libjpeg-turbo binary distributions under the IJG License. However, the IJG License specifically refers + to the Independent JPEG Group and does not extend attribution and endorsement protections to other entities. + Thus, it was desirable to choose a license that granted us the same protections for new code that were granted + to the IJG for code derived from their software.

+

IJG JPEG Library License

+

In plain English:

+
    +
  1. We don't promise that this software works. (But if you find any bugs, please let us know!) 
  2. +
  3. You can use this software for whatever you want. You don't have to pay us.
  4. +
  5. You may not pretend that you wrote this software. If you use it in a program, you must acknowledge + somewhere in your documentation that you've used the IJG code.
  6. +
+

In legalese:

+

The authors make NO WARRANTY or representation, either express or implied, with respect to this software, + its quality, accuracy, merchantability, or fitness for a particular purpose.  This software is provided "AS + IS", and you, its user, assume the entire risk as to its quality and accuracy.

+

This software is copyright (C) 1991-1998, Thomas G. Lane. All Rights Reserved except as specified below.

+

Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for + any purpose, without fee, subject to these conditions:

+
    +
  1. If any part of the source code for this software is distributed, then this README file must be + included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to + the original files must be clearly indicated in accompanying documentation.
  2. +
  3. If only executable code is distributed, then the accompanying documentation must state that "this + software is based in part on the work of the Independent JPEG Group".
  4. +
  5. Permission for use of this software is granted only if the user accepts full responsibility for any + undesirable consequences; the authors accept NO LIABILITY for damages of any kind.
  6. +
+

These conditions apply to any software derived from or based on the IJG code, not just to the unmodified + library.  If you use our work, you ought to acknowledge us.

+

Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity + relating to this software or products derived from it.  This software may be referred to only as "the + Independent JPEG Group's software".

+

We specifically permit and encourage the use of this software as the basis of commercial products, provided + that all warranty or liability claims are assumed by the product vendor.

+

ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its + copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and + conditions, but instead by the usual distribution terms of the Free Software Foundation; principally, that you + must include source code if you redistribute it.  (See the file ansi2knr.c for full details.)  However, since + ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than + the foregoing paragraphs do.

+

The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free + Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, + config.sub, ltconfig, ltmain.sh).  Another support script, install-sh, is copyright by M.I.T. but is also + freely distributable.

+

It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&T, + and Mitsubishi.  Hence arithmetic coding cannot legally be used without obtaining one or more licenses.  For + this reason, support for arithmetic coding has been removed from the free JPEG software. (Since arithmetic + coding provides only a marginal gain over the unpatented Huffman mode, it is unlikely that very many + implementations will support it.) So far as we are aware, there are no patent restrictions on the remaining + code.

+

The IJG distribution formerly included code to read and write GIF files. To avoid entanglement with the + Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to + produce "uncompressed GIFs".  This technique does not use the LZW algorithm; the resulting GIF files are + larger than usual, but are readable by all standard GIF decoders.

+

We are required to state that

+
+ "The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated.  GIF(sm) is a + Service Mark property of CompuServe Incorporated." +
+

The zlib/libpng License (Zlib)

+

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be + held liable for any damages arising from the use of this software.

+

Permission is granted to anyone to use this software for any purpose, including commercial applications, and + to alter it and redistribute it freely, subject to the following restrictions:

+
    +
  1. The origin of this software must not be misrepresented; you must not claim that you wrote the original + software. If you use this software in a product, an acknowledgment in the product documentation would be + appreciated but is not required.
  2. +
  3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the + original software.
  4. +
  5. This notice may not be removed or altered from any source distribution.
  6. +
+
+
+

liblangtag

+

The following software may be included in this product: liblangtag. Use of any of this software is governed + by the terms of the license below:

+

Jump to LGPL Version 3

+

Jump to MPL Version 2.0

+
+
+

libtiff

+

The following software may be included in this product: libtiff. Use of any of this software is governed + by the terms of the license below:

+

Copyright © 1988-1997 Sam Leffler

+

Copyright © 1991-1997 Silicon Graphics, Inc.

+

Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is + hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in + all copies of the software and related documentation, and (ii) the names of Sam Leffler and Silicon Graphics may + not be used in any advertising or publicity relating to the software without the specific, prior written + permission of Sam Leffler and Silicon Graphics.

+

THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING + WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.

+

IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+
+
+

liborcus

+

The following software may be included in this product: liborcus. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libmspub

+

The following software may be included in this product: libmspub. Use of any of this software is governed by + the terms of the license below:

+

MPL 1.1 / LGPL v2+ / GPL v2+

+

Jump to GPL Version 2

+

Jump to LGPL Version 2

+

Jump to MPL Version 1.1

+
+
+

libmwaw

+

The following software may be included in this product: libmwaw. Use of any of this software is governed by + the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

libnumbertext

+

The following software may be included in this product: libnumbertext. Use of any of this software is + governed by the terms of the license below:

+

Copyright 2009–2019 László Németh et al.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+
    +
  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.
  2. +
  3. 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.
  4. +
  5. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or + promote products derived from this software without specific prior written permission.
  6. +
+

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.

+
+
+

libodfgen

+

The following software may be included in this product: libodfgen. Use of any of this software is governed + by the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

liborcus

+

The following software may be included in this product: liborcus. Use of any of this software is governed by + the terms of the license below:

+

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.

+
+
+

libpng

+

The following software may be included in this product: libpng. Use of any of this software is governed by + the terms of the license below:

+

This copy of the libpng notices is provided for your convenience.  In case of
+ any discrepancy between this copy and the notices in the file png.h that is
+ included in the libpng distribution, the latter shall prevail.
+
+ COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
+
+ If you modify libpng you may insert additional notices immediately following
+ this sentence.
+
+ This code is released under the libpng license.
+
+ libpng versions 1.2.6, August 15, 2004, through 1.5.1, February 3, 2011, are
+ Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
+ distributed according to the same disclaimer and license as libpng-1.2.5
+ with the following individual added to the list of Contributing Authors
+
+   Cosmin Truta
+
+ libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
+ Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
+ distributed according to the same disclaimer and license as libpng-1.0.6
+ with the following individuals added to the list of Contributing Authors
+
+   Simon-Pierre Cadieux
+   Eric S. Raymond
+   Gilles Vollant
+
+ and with the following additions to the disclaimer:
+
+   There is no warranty against interference with your enjoyment of the
+   library or against infringement.  There is no warranty that our
+   efforts or the library will fulfill any of your particular purposes
+   or needs.  This library is provided with all faults, and the entire
+   risk of satisfactory quality, performance, accuracy, and effort is with
+   the user.
+
+ libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
+ Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
+ distributed according to the same disclaimer and license as libpng-0.96,
+ with the following individuals added to the list of Contributing Authors:
+
+   Tom Lane
+   Glenn Randers-Pehrson
+   Willem van Schaik
+
+ libpng versions 0.89, June 1996, through 0.96, May 1997, are
+ Copyright (c) 1996, 1997 Andreas Dilger
+ Distributed according to the same disclaimer and license as libpng-0.88,
+ with the following individuals added to the list of Contributing Authors:
+
+   John Bowler
+   Kevin Bracey
+   Sam Bushell
+   Magnus Holmgren
+   Greg Roelofs
+   Tom Tanner
+
+ libpng versions 0.5, May 1995, through 0.88, January 1996, are
+ Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+
+ For the purposes of this copyright and license, "Contributing Authors"
+ is defined as the following set of individuals:
+
+   Andreas Dilger
+   Dave Martindale
+   Guy Eric Schalnat
+   Paul Schmidt
+   Tim Wegner
+
+ The PNG Reference Library is supplied "AS IS".  The Contributing Authors
+ and Group 42, Inc. disclaim all warranties, expressed or implied,
+ including, without limitation, the warranties of merchantability and of
+ fitness for any purpose.  The Contributing Authors and Group 42, Inc.
+ assume no liability for direct, indirect, incidental, special, exemplary,
+ or consequential damages, which may result from the use of the PNG
+ Reference Library, even if advised of the possibility of such damage.
+
+ Permission is hereby granted to use, copy, modify, and distribute this
+ source code, or portions hereof, for any purpose, without fee, subject
+ to the following restrictions:
+
+ 1. The origin of this source code must not be misrepresented.
+
+ 2. Altered versions must be plainly marked as such and must not
+   be misrepresented as being the original source.
+
+ 3. This Copyright notice may not be removed or altered from any
+   source or altered source distribution.
+
+ The Contributing Authors and Group 42, Inc. specifically permit, without
+ fee, and encourage the use of this source code as a component to
+ supporting the PNG file format in commercial products.  If you use this
+ source code in a product, acknowledgment is not required but would be
+ appreciated.
+
+
+ A "png_get_copyright" function is available, for convenient use in "about"
+ boxes and the like:
+
+   printf("%s",png_get_copyright(NULL));
+
+ Also, the PNG logo (in PNG format, of course) is supplied in the
+ files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
+
+ Libpng is OSI Certified Open Source Software.  OSI Certified Open Source is a
+ certification mark of the Open Source Initiative.
+
+ Glenn Randers-Pehrson
+ glennrp at users.sourceforge.net
+ February 3, 2011  

+
+
+

libwebp

+

The following software may be included in this product: libwebp. Use of any of this software is governed by + the terms of the license below:

+

Copyright (c) 2010, Google Inc. All rights reserved.

+

Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met:

+
    +
  1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer.
  2. +
  3. 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.
  4. +
  5. Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission.
  6. +
+

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.

+
+
+

libpagemaker

+

The following software may be included in this product: libpagemaker. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libqxp

+

The following software may be included in this product: libqxp. Use of any of this software is governed + by the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

librevenge

+

The following software may be included in this product: librevenge. Use of any of this software is governed + by the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

libstaroffice

+

The following software may be included in this product: libstaroffice. Use of any of this software + is governed by the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

LibTomMath

+

The following software may be included in this product: LibTomMath. LibTomMath is public domain.

+
+
+

libvisio

+

The following software may be included in this product: libvisio. Use of any of this software is governed by + the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

libwpd

+

The following software may be included in this product: libwpd. Use of any of this software is governed by + the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

libwpg

+

The following software may be included in this product: libwpg. Use of any of this software is governed by + the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

libwps

+

The following software may be included in this product: libwps. Use of any of this software is governed by + the terms of the license below:

+

LGPL v2.1+ / MPL 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 2.0

+
+
+

libxml2

+

The following software may be included in this product: libxml2. Use of any of this software is governed by + the terms of the license below:

+

Except where otherwise noted in the source code (e.g. the files hash.c, list.c and the trio files, which are + covered by a similar license but with different Copyright notices) all the files are:

+

Copyright (C) 1998-2003 Daniel Veillard.  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 DANIEL VEILLARD 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.

+

Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software without prior written authorization from + him.

+
+
+

libxslt

+

The following software may be included in this product: libxslt. Use of any of this software is governed by + the terms of the license below:

+

License for libxslt except libexslt

+

Copyright (C) 2001-2002 Daniel Veillard.  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 DANIEL VEILLARD 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.

+

Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software without prior written authorization from + him.

+

License for libexslt

+

Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. 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 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.

+

Except as contained in this notice, the name of the authors shall not be used in advertising or otherwise to + promote the sale, use or other dealings in this Software without prior written authorization from him.

+
+
+

libzmf

+

The following software may be included in this product: libzmf. Use of any of this software is governed by + the terms of the license below:

+

Jump to MPL Version 2.0

+
+
+

Little CMS (lcms2)

+

The following software may be included in this product: Little CMS (lcms2). Use of any of this software is + governed by the terms of the license below:

+

Copyright (c) 1998-2011 Marti Maria Saguer

+

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.

+
+
+

lpsolve

+

The following software may be included in this product: lpsolve. Use of any of this software is governed by + the terms of the license below:

+

Jump to LGPL Version 2.1

+
+
+

MariaDB Connector/C

+

The following software may be included in this product: MariaDB Connector/C. Use of any of this software is + governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+
+
+

mdds

+

The following software may be included in this product: mdds. Use of any of this software is governed by the + terms of the license below:

+

Copyright (c) 2010 Kohei Yoshida

+

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.

+
+
+

mDNSResponder

+

The following software may be included in this product: mDNSResponder. The majority of the source code in + the mDNSResponder project is licensed under the terms of the Apache License, Version 2.0.

+

Jump to Apache License Version 2.0

+

To accommodate license compatibility with the widest possible range of client code licenses, the shared + library code, which is linked at runtime into the same address space as the client using it, is licensed under + the terms of the "Three-Clause BSD License".

+

The Linux Name Service Switch code, contributed by National ICT Australia Ltd (NICTA) is licensed under the + terms of the NICTA Public Software Licence (which is substantially similar to the "Three-Clause BSD License", + with some additional language pertaining to Australian law).

+
+
+

Microsoft Visual C++ 2015 Runtime Libraries

+

The following software may be included in this product: Microsoft Visual C++ 2015 Runtime Libraries. Use of + any of this software is governed by the terms of the license below:

+

MICROSOFT SOFTWARE LICENSE TERMS

+

MICROSOFT VISUAL STUDIO 2015 ADD-ONs, VISUAL STUDIO SHELLS and C++ REDISTRIBUTABLE

+

These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its + affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or + updates for the software, except to the extent those have different terms.

+

IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.

+
    +
  1. INSTALLATION AND USE RIGHTS.
  2. +
      +
    1. You may install and use any number of copies of the software.
    2. +
    3. Backup copy. You may make one backup copy of the software, for reinstalling the software.
    4. +
    +
  3. TERMS FOR SPECIFIC COMPONENTS.
  4. +
      +
    1. Utilities. The software may contain some items on the Utilities List at <http://go.microsoft.com/fwlink/?LinkID=523763&clcid=0x409>. + You may copy and install those items, if included with the software, on your machines or third party + machines, to debug and deploy your applications and databases you develop with the software. Please + note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update + Utilities separately from the rest of the software, and that some Utilities by their nature may make it + possible for others to access machines on which they are installed. As a result, you should delete all + Utilities you have installed after you finish debugging or deploying your applications and databases. + Microsoft is not responsible for any third party use or access of Utilities you install on any + machine.
    2. +
    3. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows + Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These + components are governed by separate agreements and their own product support policies, as described in + the license terms found in the installation directory for that component or in the “Licenses” + folder accompanying the software.
    4. +
    5. Third Party Components. The software may include third party components with separate legal notices + or governed by other agreements, as may be described in the ThirdPartyNotices file accompanying the + software. Even if such components are governed by other agreements, the disclaimers and the limitations + on and exclusions of damages below also apply.
    6. +
    +
  5. DATA. The software may collect information about you and your use of the software, and send that to + Microsoft. Microsoft may use this information to provide services and improve our products and services. + You may opt-out of many of these scenarios, but not all, as described in the product documentation. There + are also some features in the software that may enable you to collect data from users of your applications. + If you use these features to enable data collection in your applications, you must comply with applicable + law, including providing appropriate notices to users of your applications. You can learn more about data + collection and use in the help documentation and the privacy statement at <http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409>. + Your use of the software operates as your consent to these practices.
  6. +
  7. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use + the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this + limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must + comply with any technical limitations in the software that only allow you to use it in certain ways. You + may not
  8. +
      +
    • work around any technical limitations in the software;
    • +
    • reverse engineer, decompile or disassemble the software, except and only to the extent that + applicable law expressly permits, despite this limitation;
    • +
    • remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;
    • +
    • use the software in any way that is against the law; or
    • +
    • share, publish or lend the software, or provide the software as a stand-alone hosted as solution + for others to use, or transfer the software or this agreement to any third party.
    • +
    +
  9. EXPORT RESTRICTIONS. Microsoft software, online services, professional services and related technology + are subject to U.S. export jurisdiction. You must comply with all applicable international and national + laws, including the U.S. Export Administration Regulations, the International Traffic in Arms Regulations, + Office of Foreign Assets Control sanctions programs, and end-user, end use and destination restrictions by + the U.S. and other governments related to Microsoft products, services and technologies. For additional + information, see www.microsoft.com/exporting <http://www.microsoft.com/exporting>.
  10. +
  11. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for + it.
  12. +
  13. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and + support services that you use, are the entire agreement for the software and support services.
  14. +
  15. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to + interpretation of and claims for breach of this agreement, and the laws of the state where you live apply + to all other claims. If you acquired the software in any other country, its laws apply.
  16. +
  17. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws + of your state or country. This agreement does not change your rights under the laws of your state or + country if the laws of your state or country do not permit it to do so. Without limitation of the + foregoing, for Australia, YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN + THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS
  18. +
  19. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT + GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, + MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NON-INFRINGEMENT.
  20. +
  21. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT + DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, + SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
    + This limitation applies to (a) anything related to the software, services, content (including code) on + third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of + warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by + applicable law.
    + It also applies even if Microsoft knew or should have known about the possibility of the damages. The above + limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation + of incidental, consequential or other damages.
  22. +
+

EULAID: VS2015_RTM_ShellsRedist_ENU

+
+
+

MyThes

+

The following software may be included in this product: MyThes. Use of any of this software is governed by + the terms of the license below:

+

Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada And Contributors. All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+

1. Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.

+

2. Redistribution 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.

+

3. All modifications to the source code must be clearly marked as such. Binary redistribution based on + modified source code must be clearly marked as modified versions in the documentation and/or other materials + provided with the distribution.

+

THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS 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 KEVIN B. HENDRICKS 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.

+
+
+

Network Security Services (NSS)

+

The following software may be included in this product: Network Security Services (NSS). Use of any of this + software is governed by the terms of the license below:

+

Jump to MPL 1.1

+
+
+

OpenLDAP

+

The following software may be included in this product: OpenLDAP. Use of any of this software is governed by + the terms of the license below:

+

The OpenLDAP Public License

+

Version 2.8, 17 August 2003

+

Redistribution and use of this software and associated documentation ("Software"), with or without + modification, are permitted provided that the following conditions are met:

+
    +
  1. Redistributions in source form must retain copyright statements and notices,
  2. +
  3. Redistributions in binary form must reproduce applicable copyright statements and notices, this list of + conditions, and the following disclaimer in the documentation and/or other materials provided with the + distribution, and
  4. +
  5. Redistributions must contain a verbatim copy of this document.
  6. +
+

The OpenLDAP Foundation may revise this license from time to time. Each revision is distinguished by a + version number.  You may use this Software under terms of this license revision or under the terms of any + subsequent revision of the license.

+

THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE + AUTHOR(S) OR OWNER(S) OF THE SOFTWARE 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.

+

The names of the authors and copyright holders must not be used in advertising or otherwise to promote the + sale, use or other dealing in this Software without specific, written prior permission.  Title to copyright in + this Software shall at all times remain with copyright holders.

+

OpenLDAP is a registered trademark of the OpenLDAP Foundation.

+

Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA.  All Rights Reserved. +  Permission to copy and distribute verbatim copies of this document is granted.

+
+
+

OpenSSL

+

The following software may be included in this product: OpenSSL. Use of any of this software is governed by + the terms of the license below:

+

The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the + original SSLeay license apply to the toolkit.

+

See below for the actual license texts. Actually both licenses are BSD-style Open Source licenses. In case + of any license issues related to OpenSSL please contact openssl-core@openssl.org.

+

OpenSSL License

+

Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+
    +
  1. Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer.
  2. +
  3. Redistribution 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. 
  4. +
  5. All advertising materials mentioning features or use of this software must display the following + acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL + Toolkit. (http://www.openssl.org/)" 
  6. +
  7. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products + derived from this software without prior written permission. For written permission, please contact + openssl-core@openssl.org. 
  8. +
  9. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names + without prior written permission of the OpenSSL Project. 
  10. +
  11. Redistribution of any form whatsoever must retain the following acknowledgment: "This product includes + software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" 
  12. +
+

THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED 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 OpenSSL PROJECT OR ITS 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.

+

This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product + includes software written by Tim Hudson (tjh@cryptsoft.com).

+

Original SSLeay License

+

Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved.

+

This package is an SSL implementation written by Eric Young (eay@cryptsoft.com).
+ The implementation was written so as to conform with Netscapes SSL.

+

This library is free for commercial and non-commercial use as long as the following conditions are aheared + to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, + etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same + copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com).

+

Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this + package is used in a product, Eric Young should be given attribution as the author of the parts of the library + used. This can be in the form of a textual message at program startup or in documentation (online or textual) + provided with the package.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+
    +
  1. Redistribution of source code must retain the copyright notice, this list of conditions and the + following disclaimer.
  2. +
  3. Redistribution 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. 
  4. +
  5. All advertising materials mentioning features or use of this software must display the following + acknowledgment: "This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the routines from the library being used are not cryptographic + related :-). 
  6. +
  7. If you include any Windows specific code (or a derivative thereof) from the apps directory (application + code) you must include an acknowledgment: "This product includes software written by Tim Hudson + (tjh@cryptsoft.com)" 
  8. +
+

THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``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 AUTHOR 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.

+

The license and distribution terms for any publicly available version or derivative of this code cannot be + changed. i.e. this code cannot simply be copied and put under another distribution license [including the GNU + Public License.]

+
+
+

PDFium

+

The following software may be included in this product: PDFium. Use of any of this software is governed by + the terms of the license below:

+

Copyright 2014 PDFium Authors. 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 Google Inc. 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.

+
+
+

Pentaho Reporting Flow Engine

+

The following software may be included in this product: Pentaho Reporting Flow Engine (including core, + flow-engine, libbase, libfonts, libformula, liblayout, libloader, librepository, libserializer, and libxml). + Use of any of this software is governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+
+
+

Pixman

+

The following software may be included in this product: Pixman (libpixman). Use of any of this software is + governed by the terms of the license below:

+

The following is the MIT license, agreed upon by most contributors.

+

Copyright holders of new code should use this license statement where possible. They may also add themselves to + the list below.

+

Copyright 1987, 1988, 1989, 1998  The Open Group
+ Copyright 1987, 1988, 1989 Digital Equipment Corporation
+ Copyright 1999, 2004, 2008 Keith Packard
+ Copyright 2000 SuSE, Inc.
+ Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
+ Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
+ Copyright 2004 Nicholas Miell
+ Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
+ Copyright 2005 Trolltech AS
+ Copyright 2007 Luca Barbato
+ Copyright 2008 Aaron Plattner, NVIDIA Corporation
+ Copyright 2008 Rodrigo Kumpera
+ Copyright 2008 André Tupinambá
+ Copyright 2008 Mozilla Corporation
+ Copyright 2008 Frederic Plourde
+ Copyright 2009, Oracle and/or its affiliates. All rights reserved.
+ Copyright 2009, 2010 Nokia Corporation

+

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 (including the next paragraph) 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.

+
+
+

poppler

+

The following software may be included in this product: poppler. Use of any of this software is governed by + the terms of the license below:

+

Jump to GPL Version 2

+

The cidToUnicode, nameToUnicode and unicodeMap data files + installed by the poppler-data package are Copyright Glyph & Cog, LLC + and are licensed under the GNU General Public License (GPL), version 2 + or version 3.

+

The cMap data files installed by the poppler-data package are governed by the terms of the license below:

+

Copyright 1990-2019 Adobe.

+

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 Adobe 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 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.

+
+
+

PostgreSQL

+

The following software may be included in this product: PostgreSQL. Use of any of this software is governed + by the terms of the license below:

+

PostgreSQL is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or + MIT licenses.

+

PostgreSQL Database Management System
+ (formerly known as Postgres, then as Postgres95)

+

Portions Copyright (c) 1996-2012, The PostgreSQL Global Development Group

+

Portions Copyright (c) 1994, The Regents of the University of California

+

Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without + fee, and without a written agreement is hereby granted, provided that the above copyright notice and this + paragraph and the following two paragraphs appear in all copies.

+

IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, + INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS + DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+

THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS + ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, + UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

+
+
+

libffi

+

The following software may be included in this product: libffi

+

The libffi project code is covered by the MIT license:

+

libffi - Copyright (c) 1996-2019 Anthony Green, Red Hat, Inc and others.

+

See source files for details.

+

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.

+
+
+

Python

+

The following software may be included in this product: Python. Use of any of this software is governed by + the terms of the license below:

+

PSF LICENSE AGREEMENT FOR PYTHON 2.3

+

1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or + Organization ("Licensee") accessing and otherwise using Python 2.3 software in source or binary form and its + associated documentation.

+

2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, + royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare + derivative works, distribute, and otherwise use Python 2.3 alone or in any derivative version, provided, + however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, + 2004 Python Software Foundation; All Rights Reserved" are retained in Python 2.3 alone or in any derivative + version prepared by Licensee.

+

3. In the event Licensee prepares a derivative work that is based on or incorporates Python 2.3 or any part + thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby + agrees to include in any such work a brief summary of the changes made to Python 2.3.

+

4. PSF is making Python 2.3 available to Licensee on an "AS IS" basis.  PSF MAKES NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY + REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON + 2.3 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.

+

5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 2.3 FOR ANY INCIDENTAL, SPECIAL, OR + CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.

+

6. This License Agreement will automatically terminate upon a material breach of its terms and + conditions.

+

7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or + joint venture between PSF and Licensee.  This License Agreement does not grant permission to use PSF + trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any + third party.

+

8. By copying, installing or otherwise using Python 2.3, Licensee agrees to be bound by the terms and + conditions of this License Agreement.

+

BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0

+

BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1

+

1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa + Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in + source or binary form and its associated documentation ("the Software").

+

2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants + Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display + publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative + version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any + derivative version prepared by Licensee.

+

3. BeOpen is making the Software available to Licensee on an "AS IS" basis.  BEOPEN MAKES NO + REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE + USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.

+

4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR + CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE + THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.

+

5. This License Agreement will automatically terminate upon a material breach of its terms and + conditions.

+

6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of + California, excluding conflict of law provisions.  Nothing in this License Agreement shall be deemed to create + any relationship of agency, partnership, or joint venture between BeOpen and Licensee.  This License Agreement + does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote + products or services of Licensee, or any third party.  As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according + to the permissions granted on that web page.

+

7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and + conditions of this License Agreement.

+

CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1

+

1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at + 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing + and otherwise using Python 1.6.1 software in source or binary form and its associated documentation.

+

2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a + nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, + prepare derivative works, distribute, and otherwise use Python 1.6.1 alone or in any derivative version, + provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) 1995-2001 + Corporation for National Research Initiatives; All Rights Reserved" are retained in Python 1.6.1 alone or in + any derivative version prepared by Licensee.  Alternately, in lieu of CNRI's License Agreement, Licensee may + substitute the following text (omitting the quotes): "Python 1.6.1 is made available subject to the terms and + conditions in CNRI's License Agreement.  This Agreement together with Python 1.6.1 may be located on the + Internet using the following unique, persistent identifier (known as a handle): 1895.22/1013.  This Agreement + may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1013".

+

3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6.1 or any + part thereof, and wants to make the derivative work available to others as provided herein, then Licensee + hereby agrees to include in any such work a brief summary of the changes made to Python 1.6.1.

+

4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" basis.  CNRI MAKES NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY + REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON + 1.6.1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.

+

5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR + CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.

+

6. This License Agreement will automatically terminate upon a material breach of its terms and + conditions.

+

7. This License Agreement shall be governed by the federal intellectual property law of the United States, + including without limitation the federal copyright law, and, to the extent such U.S. federal law does not + apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. + Notwithstanding the foregoing, with regard to derivative works based on Python 1.6.1 that incorporate + non-separable material that was previously distributed under the GNU General Public License (GPL), the law of + the Commonwealth of Virginia shall govern this License Agreement only as to issues arising under or with + respect to Paragraphs 4, 5, and 7 of this License Agreement.  Nothing in this License Agreement shall be + deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee.  This + License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to + endorse or promote products or services of Licensee, or any third party.

+

8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python + 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement.

+

        ACCEPT

+

CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2

+

Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands.  All rights + reserved.

+

Permission to use, copy, modify, and distribute this software and its documentation for any purpose and + without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting + Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software + without specific, written prior permission.

+

STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR + PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+
+

Dragonbox

+

The following software may be included in this product: Dragonbox.

+

Dragonbox code is covered by the following license:

+

Jump to Apache License Version 2.0

+
+

--- LLVM Exceptions to the Apache 2.0 License ----

+ +

As an exception, if, as a result of your compiling your source code, portions + of this Software are embedded into an Object form of such source code, you + may redistribute such embedded portions in such Object form without complying + with the conditions of Sections 4(a), 4(b) and 4(d) of the License.

+ +

In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 ("Combined Software") and if a + court of competent jurisdiction determines that the patent provision (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of + the License, but only in their entirety and only with respect to the Combined + Software.

+
+

dtoa

+

The following software may be included in this product: dtoa.

+

dtoa code is covered by the MIT license:

+
+

The author of this software is David M. Gay.

+ +

Copyright (c) 1991, 2000, 2001 by Lucent Technologies.

+ +

Permission to use, copy, modify, and distribute this software for any + purpose without fee is hereby granted, provided that this entire notice + is included in all copies of any software which is or includes a copy + or modification of this software and in all copies of the supporting + documentation for such software.

+ +

THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY + REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY + OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.

+
+ +

libfixmath

+

The following software may be included in this product: libfixmath.

+

libfixmath code is covered by the MIT license:

+
+

libfixmath is Copyright (c) 2011-2021 Flatmush <Flatmush@gmail.com>, + Petteri Aimonen <Petteri.Aimonen@gmail.com>, & libfixmath AUTHORS

+ +

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.

+
+ +

Random123: a Library of Counter-Based Random Number Generators

+

The following software may be included in this product: Random123: a Library of Counter-Based Random Number + Generators. Use of any of this software is governed by the terms of the license below:

+

Copyright 2010-2011, D. E. Shaw Research.

+

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 D. E. Shaw Research 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.

+

Raptor RDF Parser Library

+

The following software may be included in this product: Raptor RDF Parser Library. Use of any of this software + is governed by the terms of the license below:

+

Copyright (C) 2000-2008 David Beckett
+ Copyright (C) 2000-2005 University of Bristol. All Rights Reserved.

+

All the licenses below are alternatives and if you select one license, that one alone applies.

+

Jump to LGPL Version 2.1

+

Jump to Apache License Version 2.0

+

Rasqal RDF Query Library

+

The following software may be included in this product: Rasqal RDF Query Library. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2000-2008 David Beckett
+ Copyright (C) 2000-2005 University of Bristol. All Rights Reserved.

+

All the licenses below are alternatives and if you select one license, that one alone applies.

+

Jump to LGPL Version 2.1

+

Jump to Apache License Version 2.0

+
+

Redland RDF Application Framework

+

The following software may be included in this product: Redland RDF Application Framework. Use of any of + this software is governed by the terms of the license below:

+

Copyright (C) 2000-2008 David Beckett
+ Copyright (C) 2000-2005 University of Bristol. All Rights Reserved.

+

All the licenses below are alternatives and if you select one license, that one alone applies.

+

Jump to LGPL Version 2.1

+

Jump to Apache License Version 2.0

+
+
+

Remote Control Wrapper

+

The following software may be included in this product: Remote Control Wrapper. Use of any of this software + is governed by the terms of the license below:

+

Created by Martin Kahr under a MIT-style license. Copyright (c) 2006/2007 martinkahr.com. 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.

+
+
+

Rhino

+

The following software may be included in this product: Rhino. Use of any of this software is governed by + the terms of the license below:

+

Jump to MPL Version 1.1

+
+
+

SANE

+

The following software may be included in this product: SANE. Use of any of this software is governed by the + terms of the license below:

+

sane - Scanner Access Now Easy. Copyright (C) 1997-1999 David Mosberger-Tang and Andreas Beck

+

This file is part of the SANE package.

+

This file is in the public domain. You may use and modify it as you see fit, as long as this copyright message + is included and that there is an indication as to what modifications have been made (if any).

+

SANE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

+

This file declares SANE application interface. See the SANE standard for a detailed explanation of the + interface.

+
+

SVGPathSeg polyfill

+

The following software may be included in this product: SVGPathSeg polyfill. Use of any of this software is + governed by the terms of the license below:

+

Copyright 2015 The Chromium Authors. All rights reserved.

+

The Chromium Authors can be found at https://src.chromium.org/viewvc/chrome/trunk/src/AUTHORS

+

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 Google Inc. 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.

+
+

TWAIN

+

The following software may be included in this product: TWAIN. Use of any of this software is governed by the + terms of the license below:

+

The TWAIN License

+

The TWAIN Working Group grants customer ("Customer") the worldwide, royalty-free, non-exclusive license to + reproduce and distribute the software and documentation of the TWAIN toolkit ("TWAIN Toolkit"). The TWAIN Toolkit + was designed to be used by third parties to assist them in becoming compliant with the TWAIN standard, but it has + not been developed to the standards of a commercial product. Consequently, the TWAIN toolkit is provided AS IS + without any warranty. THE TWAIN Working Group disclaims all warranties in the TWAIN toolkit whether implied, + express or statutory, including, without limitation, the implied warranties of merchantability, non infringement of + third party rights and fitness for a particular purpose. The TWAIN Working Group disclaims all liability for + damages, whether direct, indirect, special, incidental, or consequential, arising from the reproduction, + distribution, modification, or other use of the TWAIN Toolkit.

+

As a condition of this license, Customer agrees to include in software programs based in whole or in part on the + TWAIN Toolkit the following provisions in (i) the header or similar file in such software and (ii) prominently in + its documentation and to require its sublicensees to include these provisions in similar locations: The TWAIN + Toolkit is distributed as is. The developer and distributors of the TWAIN Toolkit expressly disclaim all implied, + express or statutory warranties including, without limitation, the implied warranties of merchantability, non + infringement of third party rights and fitness for a particular purpose. Neither the developers nor the + distributors will be liable for damages, whether direct, indirect, special, incidental, or consequential, as a + result of the reproduction, modification, distribution or other use of the TWAIN Toolkit.

+

Unicode CLDR data repository

+

The following software may be included in this product: Unicode's CLDR data repository. Use of any of this + software is governed by the terms of the license below:

+

Copyright 1991-2005 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html.

+

Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any + associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") + to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom + the Data Files or Software are furnished to do so, provided that (a) the above copyright notice(s) and this + permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and + this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File + or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or + software has been modified.

+

THE DATA FILES AND SOFTWARE ARE 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 OF THIRD + PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR + ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR + PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.

+

Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise + to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of + the copyright holder.

+
+

UnixODBC

+

The following software may be included in this product: unixODBC. Use of any of this software is governed by the + terms of the license below:

+

Jump to LGPL Version 2.1

+
+

W3C Simple API for CSS (SAC)

+

The following software may be included in this product: W3C Simple API for CSS (SAC). Use of any of this + software is governed by the terms of the license below:

+

W3C IPR SOFTWARE NOTICE

+

Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.

+

Note: The original version of the W3C Software Copyright Notice and License could be + found at http://www.w3.org/Consortium/Legal/copyright-software-19980720

+

Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University). + All Rights Reserved. http://www.w3.org/Consortium/Legal/

+

This W3C work (including software, documents, or other related items) is being provided by the copyright holders + under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have + read, understood, and will comply with the following terms and conditions:

+

Permission to use, copy, and modify this software and its documentation, with or without modification, for any + purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the + software and documentation or portions thereof, including modifications, that you make:

+
    +
  1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative + work. 
  2. +
  3. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a + short notice of the following form (hypertext is preferred, text is permitted) should be used within the body + of any redistributed or derivative code: "Copyright © 2002 World Wide Web + Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en + Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/
  4. +
  5. Notice of any changes or modifications to the W3C files, including the date changes were made. (We + recommend you provide URIs to the location from which the code is derived.)
  6. +
+

THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, + COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.

+

COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF + ANY USE OF THE SOFTWARE OR DOCUMENTATION.

+

The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the + software without specific, written prior permission. Title to copyright in this software and any associated + documentation will at all times remain with copyright holders.

+

X11 XRender Extension

+

The following software may be included in this product: X11 XRender Extension. Use of any of this software is + governed by the terms of the license below:

+

Copyright © 2000 SuSE, Inc.

+

Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is + hereby granted without fee, provided that the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting documentation, and that the name of SuSE not be + used in advertising or publicity pertaining to distribution of the software without specific, written prior + permission. SuSE makes no representations about the suitability of this software for any purpose. It is provided + "as is" without express or implied warranty.

+

SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS, IN NO EVENT SHALL SuSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+
+
+

XML Security Library (xmlsec)

+

The following software may be included in this product: XML Security Library (xmlsec). Use of any of this + software is governed by the terms of the license below:

+

xmlsec, xmlsec-openssl, xmlsec-gnutls libraries

+

Copyright (C) 2002-2003 Aleksey Sanin. 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 ALEKSEY SANIN 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.

+

Except as contained in this notice, the name of Aleksey Sanin shall not be used in advertising or otherwise + to promote the sale, use or other dealings in this Software without prior written authorization from him.

+

xmlsec-nss library

+

Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved.

+

Copyright (c) 2003 America Online, Inc. 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.

+

Portions of the Software were created using source code and/or APIs governed by the Mozilla Public License + (MPL). The MPL is available at http://www.mozilla.org/MPL/MPL-1.1.html. The MPL permits such + portions to be distributed with code not governed by MPL, as long as the requirements of MPL are fulfilled for + such portions.

+

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 ALEKSEY SANIN 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.

+

Except as contained in this notice, the name of Aleksey Sanin shall not be used in advertising or otherwise + to promote the sale, use or other dealings in this Software without prior written authorization from him.

+
+

xmlsec-mscrypto library

+

Copyright (C) 2002-2016 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved.

+

Copyright (C) 2003 Cordys R&D BV, All rights reserved.

+

Copyright (C) 2007 Roumen Petrov.

+

Copyright (c) 2005-2006 Cryptocom LTD (http://www.cryptocom.ru).

+

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 ALEKSEY SANIN 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.

+

Except as contained in this notice, the name of Aleksey Sanin shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software without prior written authorization + from him.

+

xmlsec-mscng library

+

Copyright (C) 2018 Aleksey Sanin. All Rights Reserved.

+

Copyright (C) 2018 Miklos Vajna. 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 ALEKSEY SANIN 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.

+

Except as contained in this notice, the name of Aleksey Sanin shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software without prior written authorization + from him.

+
+
+
+

XSLT MathML Library

+

The following software may be included in this product: XSLT MathML Library. Use of any of this software is + governed by the terms of the license below:

+

Copyright

+

Copyright (C) 2001-2003 Vasil Yaroshevich

+

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.

+

Except as contained in this notice, the names of individuals credited with contribution to this software shall + not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior + written authorization from the individuals in question.

+

Any stylesheet derived from this Software that is publicly distributed will be identified with a different name + and the version strings in any derived Software will be changed so that no possibility of confusion between the + derived package and this Software will exist.

+

Warranty

+

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 NORMAN + WALSH OR ANY OTHER CONTRIBUTOR 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.

+
+
+

zlib

+

The following software may be included in this product: zlib. Use of any of this software is governed by the + terms of the license below:

+

(C) 1995-2002 Jean-loup Gailly and Mark Adler

+

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be + held liable for any damages arising from the use of this software.

+

Permission is granted to anyone to use this software for any purpose, including commercial applications, and + to alter it and redistribute it freely, subject to the following restrictions:

+

1. The origin of this software must not be misrepresented; you must not claim that you wrote the original + software. If you use this software in a product, an acknowledgment in the product documentation would be + appreciated but is not required.

+

2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the + original software.

+

3. This notice may not be removed or altered from any source distribution.

+
+
+

Skia

+

The following software may be included in this product: Skia. Use of any of this software is governed by + the terms of the license below:

+

Copyright (c) 2011 Google Inc. 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 Google Inc. 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.

+
+
+

Extensions

+

Only third party extensions are listed here whose source code is not in the LibreOffice tree.

+
+

Numbertext

+

The following software may be included in this product: Numbertext. Use of any of this software is governed + by the terms of the license below:

+

License: LGPL/BSD dual-license, 2009-2010 (C) László Németh (nemeth at openoffice dot org)

+

Numbertext language data (Soros programs):

+

LGPL/BSD dual-license, 2009-2010 (C) László Németh et al. (see AUTHORS)

+

Serbian modules:

+

CC/LGPL/BSD tri-license, 2009 (C) Goran Rakić (grakic at devbase dot net)

+

Note: for full distribution with specifications, IDE and JavaScript implementation, see http://NUMBERTEXT.org

+

Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, + either express or implied.

+

Jump to LGPL Version 3

+
+
+

Solver for Nonlinear Programming

+

The following software may be included in this product: Solver for Nonlinear Programming. Use of any of this + software is governed by the terms of the license below:

+

Copyright 2009 by Sun Microsystems, Inc.

+

Jump to LGPL Version 3

+
+
+
+

Fonts

+

Alef

+

Copyright (c) 2012, HaGilda & Mushon Zer-Aviv (<http://hagilda.com|info@hagilda.com>), with + Reserved Font Name Alef Regular.

+

Copyright (c) 2012, HaGilda & Mushon Zer-Aviv (<http://hagilda.com|info@hagilda.com>), with + Reserved Font Name Alef Bold.

+

This Font Software is licensed under the SIL Open Font License, Version 1.1 as shown below.

+

Jump to SIL Open Font License, Version 1.1

+

Amiri

+

Copyright (c) 2010-2017, Khaled Hosny (<khaledhosny@eglug.org>)

+

This Font Software is licensed under the SIL Open Font License, Version 1.1 as shown below.

+

Jump to SIL Open Font License, Version 1.1

+

Caladea

+

Copyright (c) 2012 Huerta Tipográfica

+

This Font Software is licensed under the Apache License, Version 2.0 as shown below.

+

Jump to Apache License Version 2.0

+

Carlito

+

Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Carlito".

+

This Font Software is licensed under the SIL Open Font License, Version 1.1 as shown below.

+

Jump to SIL Open Font License, Version 1.1

+
+

Culmus

+

This package is distributed under the terms of GNU General Public License version 2.

+

Jump to GPL Version 2

+

Shofar font family is Copyright 2011-2012 by Yoram Gnat (yoram.gnat@gmail.com) Latin glyphs and + punctuation Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development;

+

Hebrew Cantillation marks GSUB and GPOS OpenType positioning rules copyright (c) 2010 by Yoram Gnat + (yoram.gnat@gmail.com)

+

Inspired by the Hebrew OpenType Layout logic copyright (c) 2003 & 2007, Ralph Hancock & John + Hudson published under the MIT License.

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend + this exception to your version of the font, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version.

+

 

+

Keter YG font family is Copyright 2009 by Yoram Gnat (yoram.gnat@gmail.com) Hebrew OpenType Layout logic + copyright (c) 2003 & 2007, Ralph Hancock & John Hudson. This layout logic for Biblical Hebrew is + open source software under the MIT License; for details contact copyright holders at + <license@tiro.com>.

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend + this exception to your version of the font, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version.

+

 

+

Hadasim font family is copyright 2010 by Yoram Gnat (yoram.gnat@gmail.com). Latin and parts of general + punctuation marks based on modified forms from the LiberationSerif font, created by Digitized data 2007 + Ascender Corporation. All rights reserved.

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend + this exception to your version of the font, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version.

+

 

+

Simple font family is copyright 2007-2010 by Yoram Gnat (yoram-gnat@homeil.com). Latin glyphs, digits + and punctuation copyright 1999 by (URW)++ Design & Development. All rights reserved.

+

Hebrew vowel marks positioning algorithms Copyright 2010 by Yoram Gnat 2010. (yoram.gnat@gmail.com.

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend + this exception to your version of the font, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version.

+

 

+

Stam Ashkenaz font is copyright 2007-2010 by Yoram Gnat (yoram.gnat@gmail.com).

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend + this exception to your version of the font, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version.

+

 

+

Stam Sefarad font is copyright 2008-2010 by Yoram Gnat (yoram.gnat@gmail.com).

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend + this exception to your version of the font, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version.

+

 

+

Miriam font family is copyright 2004-2010 by Maxim Iorsh (iorsh@users.sourceforge.net). All rights + reserved.

+

 

+

Yehuda font family is copyright 2004 by Maxim Iorsh (iorsh@math.technion.ac.il). All rights + reserved.

+

 

+

Drugulin font family (Hebrew glyphs) is copyright 2003,2004 by Maxim Iorsh (iorsh@math.technion.ac.il). + Latin glyphs, digits and punctuation contained in the Drugulin font family are part of Nimbus Roman No9 L + font family and are copyright 1999 by (URW)++ Design & Development. All rights reserved.

+

 

+

Ellinia font family is copyright 2003,2004 by Maxim Iorsh (iorsh@math.technion.ac.il). All rights + reserved.

+

 

+

Caladings collection is copyright 2003,2004 by Maxim Iorsh (iorsh@math.technion.ac.il). All rights + reserved.

+

 

+

Digital version of Aharoni font family (Hebrew glyphs, numerals and part of punctuation) is copyright + 2002-2004 by Maxim Iorsh (iorsh@math.technion.ac.il). Latin glyphs, digits and part of punctuation + contained in the Aharoni font family are part of URW Gothic L font family and are copyright 1999 by (URW)++ + Design & Development. All rights reserved.

+

 

+

Digital version of David font family (Hebrew glyphs, numerals and part of punctuation) is copyright + 2002-2010 by Maxim Iorsh (iorsh@users.sourceforge.net). Latin glyphs and part of punctuation contained in + the David font family are part of Bitstream Charter font family and are copyright 1990 as an unpublished + work by Bitstream Inc. All rights reserved. See also LICENSE-BITSTREAM below:

+
+

(c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.

+

You are hereby granted permission under all Bitstream propriety rights to use, copy, modify, + sublicense, sell, and redistribute the 4 Bitstream Charter (r) Type 1 outline fonts and the 4 Courier + Type 1 outline fonts for any purpose and without restriction; provided, that this notice is left intact + on all copies of such fonts and that Bitstream's trademark is acknowledged as shown below on all + unmodified copies of the 4 Charter Type 1 fonts.

+

BITSTREAM CHARTER is a registered trademark of Bitstream Inc.

+
+

 

+

Frank-Ruehl font family (Hebrew glyphs) is copyright 2002-2011 by Maxim Iorsh + (iorsh@users.sourceforge.net). Latin glyphs, digits and punctuation contained in the Frank-Ruehl font + family are part of Century Schoolbook L font family and are copyright 1999 by (URW)++ Design & + Development. All rights reserved.

+

 

+

Nachlieli font family (Hebrew glyphs) is copyright 2002-2017 by Maxim Iorsh + (iorsh@users.sourceforge.net). Latin glyphs, digits and punctuation contained in the Nachlieli font family + are part of Nimbus Sans L font family and are copyright 1999 by (URW)++ Design & Development. All + rights reserved.

+

 

+

Miriam Mono font family (Hebrew glyphs) is copyright 2002-2004 by Maxim Iorsh + (iorsh@math.technion.ac.il). Hebrew vowel marks positioning algorithms implementation by Yoram Gnat + (yoramg@shenkar.ac.il), 2010. Latin glyphs, digits and punctuation contained in the Miriam Mono font family + are part of Nimbus Mono L font family and are copyright 1999 by (URW)++ Design & Development. All + rights reserved.

+
+

Deja Vu

+

The following software may be included in this product: Deja Vu fonts. Use of any of this software is + governed by the terms of the license below:

+

Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts + are (c) Tavmjong Bah (see below)

+

Bitstream Vera Fonts Copyright

+

Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, + Inc.

+

Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this + license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the + Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell + copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to + the following conditions:

+

The above copyright and trademark notices and this permission notice shall be included in all copies of one + or more of the Font Software typefaces.

+

The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or + characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if + the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".

+

This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified + and is distributed under the "Bitstream Vera" names.

+

The Font Software may be sold as part of a larger software package but no copy of one or more of the Font + Software typefaces may be sold by itself.

+

THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT + LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF + COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE + THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

+

Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not + be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without + prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, + contact: fonts at gnome dot org.

+

Arev Fonts Copyright

+

Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.

+

Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this + license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the + modifications to the Bitstream Vera Font Software, including without limitation the rights to use, copy, merge, + publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software + is furnished to do so, subject to the following conditions:

+

The above copyright and trademark notices and this permission notice shall be included in all copies of one + or more of the Font Software typefaces.

+

The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or + characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if + the fonts are renamed to names not containing either the words "Tavmjong Bah" or the word "Arev".

+

This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified + and is distributed under the "Tavmjong Bah Arev" names.

+

The Font Software may be sold as part of a larger software package but no copy of one or more of the Font + Software typefaces may be sold by itself.

+

THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT + LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF + COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES + OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR + FROM OTHER DEALINGS IN THE FONT SOFTWARE.

+

Except as contained in this notice, the name of Tavmjong Bah shall not be used in advertising or otherwise + to promote the sale, use or other dealings in this Font Software without prior written authorization from + Tavmjong Bah. For further information, contact: tavmjong @ free . fr.

+

EmojiOne Color

+

Licenses

+
    +
  • Copyright 2016 Brad Erickson CC-BY-4.0/MIT
  • +
  • Copyright 2015 Ranks.com Inc. CC-BY-4.0
  • +
  • Copyright 2013 Joe Loughry and Terence Eden MIT
  • +
+

Artwork

+ +

Source Code

+
    +
  • Applies to everything else
  • +
  • License: MIT
  • +
  • Complete Legal Terms: http://opensource.org/licenses/MIT
  • +
+

EmojiOne License

+

The SVG files of the EmojiOne project have been modified to create the + fallback emoji glyphs and used as-is for the SVGinOT color glyphs. Files are stored in + assets/emojione-svg.

+
    +
  • Source: https://github.com/Ranks/emojione
  • +
  • Art License: Creative Commons Attribution 4.0 International
  • +
+

Please review the specific attribution requirements for commercial use of EmojiOne graphics: + http://emojione.com/licensing/

+

Power Symbol License

+

The SVG files from the Unicode Power Symbol project have been + modified to create B&W Power Symbol glyphs. Files are stored in assets/svg-bw.

+ +

Gentium

+

The following software may be included in this product: Gentium fonts. Use of any of this software is + governed by the terms of the license below:

+

Copyright (c) 2003-2008 SIL International (http://www.sil.org/), with + Reserved Font Names "Gentium" and "SIL".

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+
+

KACST

+

KACST fonts are free fonts donated by King Abdulaziz City For Science And Technology (KACST) under GPL.

+

KACST holds the copyright of the included Arabic font which is donated under GPL by KACST.

+

Jump to GPL Version 2

+
+

Liberation

+

The following software may be included in this product: Liberation fonts. Use of any of this software is + governed by the terms of the license below:

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY
+ LIBERATION FONT SOFTWARE

+

This agreement governs the use of the Software and any updates to the Software, regardless of the delivery + mechanism. Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to the user ("Client") a license to + this work pursuant to the GNU General Public License v.2 with the exceptions set forth below and such other + terms as are set forth in this End User License Agreement.

+

1. The Software and License Exception. LIBERATION font software (the "Software") consists of + TrueType-OpenType formatted font software for rendering LIBERATION typefaces in sans-serif, serif, and + monospaced character styles. You are licensed to use, modify, copy, and distribute the Software pursuant to the + GNU General Public License v.2 with the following exceptions:

+

 (a) As a special exception, if you create a document which uses this font, and embed this font or + unaltered portions of this font into the document, this font does not by itself cause the resulting document to + be covered by the GNU General Public License. This exception does not however invalidate any other reasons why + the document might be covered by the GNU General Public License. If you modify this font, you may extend this + exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version.

+

 (b) As a further exception, any distribution of the object code of the Software in a physical product must + provide you the right to access and modify the source code for the Software and to reinstall that modified + version of the Software in object code form on the same physical product on which you received it.

+

2. Intellectual Property Rights. The Software and each of its components, including the source code, + documentation, appearance, structure and organization are owned by Red Hat and others and are protected under + copyright and other laws. Title to the Software and any component, or to any copy, modification, or merged + portion shall remain with the aforementioned, subject to the applicable license. The "LIBERATION" trademark is + a trademark of Red Hat, Inc. in the U.S. and other countries. This agreement does not permit Client to + distribute modified versions of the Software using Red Hat's trademarks. If Client makes a redistribution of a + modified version of the Software, then Client must modify the files names to remove any reference to the Red + Hat trademarks and must not use the Red Hat trademarks in any way to reference or promote the modified + Software.

+

3. Limited Warranty. To the maximum extent permitted under applicable law, the Software is provided and + licensed "as is" without warranty of any kind, expressed or implied, including the implied warranties of + merchantability, non-infringement or fitness for a particular purpose. Red Hat does not warrant that the + functions contained in the Software will meet Client's requirements or that the operation of the Software will + be entirely error free or appear precisely as described in the accompanying documentation.

+

4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any + Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including + lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such + dealer has been advised of the possibility of such damages.

+

5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the + enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North + Carolina and of the United States, without regard to any conflict of laws provisions, except that the United + Nations Convention on the International Sale of Goods shall not apply.

+

Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc.

+

Linux Libertine G and Linux Biolinum G

+

This Font Software is Copyright (c) 2003-2006, Philipp H. Poll (http://linuxlibertine.sf.net/).
+ All Rights Reserved.
+
+ "Linux Libertine" is a Reserved Font Name for this Font Software.

+

Graphite extension of the original Linux Libertine font was made by Laszlo Nemeth under the same + license.
+
+ Our fonts are free in the sense of the GPL. In short: Changing the font is allowed as long as the derivative + work is published under the same license again. Pedantics keep claiming that the embedded use of GPL-fonts in + i.e. PDFs requires the free publication of the PDF as well. This is why our GPL contains the so called "font + exception".

+

Jump to GPL version 2

+

As a special exception, if you create a document which uses this font, and embed this font or unaltered + portions of this font into the document, this font does not by itself cause the resulting document to be + covered by the GNU General Public License. This exception does not however invalidate any other reasons why the + document might be covered by the GNU General Public License. If you modify this font, you may extend this + exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version.

+

Additionally our fonts are licensed under the Open Fonts License (see below).

+

This Font Software is licensed under the SIL Open Font License, Version 1.0. No modification of the license + is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: + http://scripts.sil.org/OFL

+

SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005

+

PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of cooperative font + projects, to support the font creation efforts of academic and linguistic communities, and to provide an open + framework in which fonts may be shared and improved in partnership with others.

+

The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are + not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and + sold with any software provided that the font names of derivative works are changed. The fonts and derivatives, + however, cannot be released under any other type of license.

+

DEFINITIONS "Font Software" refers to any and all of the following:  - font files  - + data files  - source code  - build scripts  - + documentation

+

"Reserved Font Name" refers to the Font Software name as seen by users and any other names as specified + after the copyright statement.

+

"Standard Version" refers to the collection of Font Software components as distributed by the Copyright + Holder.

+

"Modified Version" refers to any derivative font software made by adding to, deleting, or substituting -- in + part or in whole -- any of the components of the Standard Version, by changing formats or by porting the Font + Software to a new environment.

+

"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to + the Font Software.

+

PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of + the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified + copies of the Font Software, subject to the following conditions:

+

1) Neither the Font Software nor any of its individual components, in Standard or Modified Versions, may be + sold by itself.

+

2) Standard or Modified Versions of the Font Software may be bundled, redistributed and sold with any + software, provided that each copy contains the above copyright notice and this license. These can be included + either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields + within text or binary files as long as those fields can be easily viewed by the user.

+

3) No Modified Version of the Font Software may use the Reserved Font Name(s), in part or in whole, unless + explicit written permission is granted by the Copyright Holder. This restriction applies to all references + stored in the Font Software, such as the font menu name and other font description fields, which are used to + differentiate the font from others.

+

4) The name(s) of the Copyright Holder or the Author(s) of the Font Software shall not be used to promote, + endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder + and the Author(s) or with their explicit written permission.

+

5) The Font Software, modified or unmodified, in part or in whole, must be distributed using this license, + and may not be distributed under any other license.

+

TERMINATION This license becomes null and void if any of the above conditions are not met.

+

DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR + CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR + INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

+

Libre Hebrew

+

The following software may be included in this product: Libre Hebrew fonts (David Libre, Frank Ruhl Hofsi, + Miriam Libre, Rubik). Use of any of this software is governed by the terms of the license below:

+

Copyright 2015 The Frank Ruhl Hofshi Project Authors.

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

Noto

+

The following software may be included in this product: Google Noto fonts. Use of any of this software is + governed by the terms of the license below:

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

Reem Kufi

+

The following software may be included in this product: Reem Kufi fonts. Use of any of this software is + governed by the terms of the license below:

+

Portions copyright (c) 2015, Khaled Hosny (khaledhosny@eglug.org). Copyright (c) 2010 by Typemade, with + Reserved Font Name 'Josefin. All Rights Reserved.

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

Scheherazade

+

The following software may be included in this product: Scheherazade fonts. Use of any of this software is + governed by the terms of the license below:

+

Copyright (c) 1994-2015, SIL International (http://www.sil.org/).

+

This Font Software is licensed under the SIL Open Font License, Version 1.1, with Reserved Font Names + "Scheherazade" and "SIL". This license is copied below, and is also available with a FAQ at: + http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

Source Code Pro

+

The following software may be included in this product: Source Code Pro fonts. Use of any of this software + is governed by the terms of the license below:

+

Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), + with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries.

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

Source Sans Pro

+

The following software may be included in this product: Source Sans Pro fonts. Use of any of this software + is governed by the terms of the license below:

+

Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), + with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries.

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+

Source Serif Pro

+

The following software may be included in this product: Source Serif Pro fonts. Use of any of this software + is governed by the terms of the license below:

+

Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/), + with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries.

+

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, + and is also available with a FAQ at: http://scripts.sil.org/OFL

+

Jump to SIL Open Font License, Version 1.1

+
+
+
+

Dictionaries

+

Afrikaans

+

Spelling dictionary

+

The following software may be included in this product: Afrikaans spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Afrikaans Wordlist

+

The Afrikaans wordlist used by MySpell is made up of multiple wordlists. These are wither in the public + domain, are used with the authors permission or are licensed under the LGPL. The majority + of the words are derived from the Nieuwoudt and Viljoen list.

+

The Nieuwoudt list was first published in this form in 1993 by Bernard A Nieuwoudt. Contact details: origen + at icon co za or bnieuwoudt at acm org

+

Copyright (C) 1993, 2003 Bernard A Nieuwoudt relicensed under the LGPL.

+

The Viljoen list is derived from the original Nieuwoudt list and is used with permission of the author and + relicensed under the LGPL.

+

Copyright (C) 1998 Danie Viljoen

+

MySpell Affix File

+

Copyright (C) 2003 Dwayne Bailey under the LGPL based on the original ispell list by + Renier de Vos which was released under the BSD license.

+

Hyphenation patterns

+

The following software may be included in this product: Afrikaans hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2005 Friedel Wolff

+

This library 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 2.1 of the License, or (at your option) any later version.

+

Albanian

+

Spelling dictionary

+

The following software may be included in this product: Albanian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GNU GPL version 2.0

+

Arabic

+

Spelling dictionary

+

The following software may be included in this product: Arabic spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Author of Hunspell-ar, the arabic dictionary for Hunspell (spellchecker): 2006-2008, Mohamed Kebdani, + med.kebdani (at) gmail.com

+

GPL 2.0/LGPL 2.1/MPL 1.1 + tri-license

+

The contents of this software may be used under the terms of the GNU General Public License Version 2 or + later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL") the Mozilla + Public License Version 1.1 or later (the "MPL").

+

Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, + either express or implied. See the licenses for the specific language governing rights and limitations under + the licenses.

+

Thesaurus

+

The following software may be included in this product: Arabic thesaurus. Use of any of this software is + governed by the terms of the license below:

+

2006-2009, Taha Zerrouki, taha_zerrouki at gawab.com

+

GPL 2.0/LGPL 2.1/MPL 1.1 + tri-license

+

The contents of this software may be used under the terms of the GNU General Public License Version 2 or + later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL") the Mozilla + Public License Version 1.1 or later (the "MPL").

+

Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, + either express or implied. See the licenses for the specific language governing rights and limitations under + the licenses.

+

Aragonese

+

Spelling dictionary

+

The following software may be included in this product: Aragonese spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (c) 2011 Santiago Paricio (sparicio<at>gmail<dot>com)
+ Copyright (c) 2011 Juan Pablo Martínez (jpmart<at>unizar<dot>es)

+

MPL1.1/GPLv3+/LGPLv3+ + Tri-licence

+

Version 0.2 of the wordlist (an_ES.dic) has been built using free corpuses have been used as Wikipedia in + Aragonese (http://an.wikipedia.org) and wordlists obtained from Apertium + dictionaries (http://apertium.svn.sourceforge.net/viewvc/apertium/tags/apertium-es-an/release-2.0/).

+

Belarusian

+

Spelling dictionary

+

The following software may be included in this product: Belarusian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Creative Commons CC-BY-SA

+

Author: Mikalai Udodau <mikalai.udodau@gmail.com>
+ Origin: Словазбор аўтарскі; арфаграфія паводле ТСБМ-2005

+

Hyphenation Dictionary

+

The following software may be included in this product: Belarusian hyphenation dictionary. Use of any of this + software is governed by the terms of the license below:

+

Creative Commons CC-BY-SA or LGPLv3

+

Created by: Alex Buloichik <alex73mail@gmail.com>
+ Hyphenation rules according to 'Pravapis 2008'

+

Bengali

+

Spelling dictionary

+

The following software may be included in this product: Bengali spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GNU GPL version 2.0

+

Bosnian

+

Spelling dictionary

+

The following software may be included in this product: Bosnian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

GPL 2.0/LGPL 2.1/MPL 1.1 + tri-license

+

Breton

+

Spelling dictionary

+

The following software may be included in this product: Breton spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

LICENSE: "An Drouizig" spelling dictionary: LGPL

+

Bulgarian

+

Spelling dictionary

+

The following software may be included in this product: Bulgarian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GNU GPL version 2.0

+

Hyphenation patterns

+

The following software may be included in this product: Bulgarian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2001 Anton Zinoviev and Borislav Mitev
+ Maintained by Radostin Radnev

+

Jump to GNU GPL version 2.0

+

Thesaurus

+

The following software may be included in this product: Bulgarian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2001 Radostin Radnev

+

Jump to GNU GPL version 2.0

+

Catalan

+

Spelling dictionary

+

The following software may be included in this product: Catalan spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2002-2008 Joan Moratinos <jmo@softcatala.org>

+

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General + Public License as published by the Free Software Foundation; either version 2 of the License, or (at your + option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

+

See the GNU General Public License for more details. You should have received a copy of the GNU General + Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - + Suite 330, Boston, MA 02111-1307, USA.

+

Jump to GPL version 3

+

Hyphenation patterns

+

The following software may be included in this product: Catalan hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Jump to GPL version 3

+

Thesaurus

+

The following software may be included in this product: Catalan thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2009 Joan Montané <joan@montane.cat> --- Softcatalà

+

License: GPL/LGPL

+

Jump to GPL version 3

+

Jump to LGPL version 3

+

Czech

+

Spelling dictionary

+

The following software may be included in this product: Czech spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GNU GPL version 2.0

+

Hyphenation patterns

+

The following software may be included in this product: Czech hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Jump to GNU GPL version 2.0

+

Thesaurus

+

The following software may be included in this product: Czech thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Origin: Generated from an English <-> Czech translation dictionary, https://www.svobodneslovniky.cz/

+

License: GNU Free Documentation License 1.1 or later, details in Appendix A

+

The thesaurus is generated automatically via a script by Jan Holesovsky <kendy@collabora.com>, based + on idea of Zdenek Zabokrtsky - big thanks!

+

Central Kurdish

+

Spelling dictionary

+

Author: Sina Ahmadi <ahmadi.sina@outlook.com>
The following software may be included in this product: Central Kurdish spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Creative Commons CC-BY-SA

+

The source CKB dictionary is available from Kurdish Hunspell project.

+

Croatian

+

Spelling dictionary

+

The following software may be included in this product: Croatian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

Hyphenation patterns

+

The following software may be included in this product: Croatian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

These patterns were manually converted from TeX hyphenation patterns using the guide at http://wiki.services.openoffice.org/wiki/Documentation/SL/Using_TeX_hyphenation_patterns_in_OpenOffice.org

+

Original version: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt?revision=416

+

License: OpenOffice.org adaption of this file is licensed under the GNU LGPL license.

+

Jump to LGPL Version 2.1

+

Original license text: This file is part of hyph-utf8 package and resulted from semi-manual conversions of + hyphenation patterns into UTF-8 in June 2008.

+

Source: hrhyph.tex (1996-04-10) Author: Marinović Igor <migor at student.math.hr>

+

The above mentioned file should become obsolete, and the author of the original file should preferably + modify this file instead.

+

Modifications were needed in order to support native UTF-8 engines, but functionality (hopefully) didn't + change in any way, at least not intentionally. This file is no longer stand-alone; at least for 8-bit engines + you probably want to use loadhyph-foo.tex (which will load this file) instead.

+

Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer with help & support + from: - Karl Berry, who gave us free hands and all resources - Taco Hoekwater, with useful macros - Hans Hagen, + who did the unicodifisation of patterns already long before and helped with testing, suggestions and bug + reports - Norbert Preining, who tested & integrated patterns into TeX Live

+

However, the "copyright/copyleft" owner of patterns remains the original author.

+

The copyright statement of this file is thus:

+

Do with this file whatever needs to be done in future for the sake of "a better world" as long as you + respect the copyright of original file. If you're the original author of patterns or taking over a new + revolution, please remove all of the TUG comments & credits that we added here - you are the Queen / the + King, we are only the servants.

+

If you want to change this file, rather than uploading directly to CTAN, we would be grateful if you could + send it to us (http://tug.org/tex-hyphen) or ask for credentials for + SVN repository and commit it yourself; we will then upload the whole "package" to CTAN.

+

Before a new "pattern-revolution" starts, please try to follow some guidelines if possible:

+

- \lccode is *forbidden*, and I really mean it - all the patterns should be in UTF-8 - the only "allowed" + TeX commands in this file are: \patterns, \hyphenation, and if you really cannot do without, also \input and + \message - in particular, please no \catcode or \lccode changes, they belong to loadhyph-foo.tex, and no + \lefthyphenmin and \righthyphenmin, they have no influence here and belong elsewhere - \begingroup and/or + \endinput is not needed - feel free to do whatever you want inside comments

+

We know that TeX is extremely powerful, but give a stupid parser at least a chance to read your + patterns.

+

For more information see http://tug.org/tex-hyphen

+

Danish

+

Spelling dictionary

+

The following software may be included in this product: Danish spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Stavekontrolden - Danish dictionary files for Hunspell

+

Version 1.6 - 2010-09-19

+

da_DK.dic, da_DK.aff: © 2010 Foreningen for frit tilgængelige sprogværktøjer

+

http://www.stavekontrolden.dk

+

These files are published under the following open source licenses:

+ +

This dictionary is based on data from Det Danske Sprog- og Litteraturselskab

+

(The Danish Society for Language and Literature), http://www.dsl.dk.

+

Hyphenation patterns

+

The following software may be included in this product: Danish hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Thesaurus

+

The following software may be included in this product: Danish thesaurus. Use of any of this software is + governed by the terms of the license below:

+ +

Stavekontrolden - Danish thesaurus files for OpenOffice.org 3.0.

+

Den Danske Ordbog - Synonymer

+

DanNet - leksikalsk-semantisk ordnet fra Det Danske Sprog- og Litteraturselskab og Center for + Sprogteknologi, Københavns Universitet

+

© 2007 Foreningen for frit tilgængelige sprogværktøjer

+

Dutch

+

Spelling dictionary and hyphenation patterns

+

The following software may be included in this product: Dutch spelling dictionary and hyphenation patterns. + Use of any of this software is governed by the terms of the license below:

+

1. Name: Dutch word list for spell checking - OpenTaal

+

2. Version of words list: 2.10G; version of spell checking: 2.10G.

+

3. Requirements: Hunspell 1.2.8 and higher

+

4. Spelling Seal of Dutch Language Union: The OpenTaal list of lemmas has received the Spelling Seal of + Approval from the Dutch Language Union, the formal Dutch language institute. For more information please see: + http://www.taalunieversum.org/keurmerk/

+

5. Copyrights: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a., © 1996 Nederlandstalige Tex + Gebruikersgroep

+

6. Licenses: OpenTaal aims to create and publish free Dutch language files. To enable the broadest (re)use + the language files are freely available under the below, liberal licenses at the discretion of the user. We + strongly recommend to read the applicable license before usage.

+

   A. BSD (revised version):

+

   - Full license text: http://creativecommons.org/licenses/BSD/legalcode

+

   - Summary: http://creativecommons.org/licenses/BSD/deed.en

+

   B. Creative Commons, Attribution 3.0 (unported)

+

   - Full license text: http://creativecommons.org/licenses/by/3.0/legalcode

+

   - Summary: http://creativecommons.org/licenses/by/3.0/deed.en

+

7. Support OpenTaal: OpenTaal is a non-profit volunteer project. With your (small) financial support + OpenTaal will further expand its activities and enhance its professionalism. Your donation is welcome at + account number: 15.62.32.782, BIC: RABONL2U, IBAN: NL88RABO0156232782 of Stichting OpenTaal / OpenTaal + Foundation. In the Netherlands your donations are tax deductible. OpenTaal Foundation has been designated by + the Dutch Tax Administration as an Institution for General Benefit (algemeen nut beogende instelling or ANBI). + Please see: http://belastingdienst.nl/anbi/

+

8. Participate: Everyone is welcome to participate. Please give feedback, discuss on the mailing list or run + Harvester. By contributing to the project you agree that your contribution is available under free or/open + source licenses. In case you wish, your name will be mentioned on the website. Your are invited to send us your + written request.

+

9. Rights of third parties: OpenTaal respects the rights of third parties and aims to keep its data freely + available. Therefore you may no use protected sources of third parties, i.e. dictionaries, without their + permission when you contribute to the project. It is permitted to use the materials of the Dutch Language + Union, i.e. their spelling instruction and word list. In case you believe OpenTaal is violating your rights, we + ask you to send us a written notice as soon as possible.

+

10.Contact: OpenTaal Foundation, http://www.opentaal.org, + bestuur@opentaal.org

+

German

+

Spelling dictionary

+

The following software may be included in this product: German spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Author: Franz Michael Baumann <frami.baumann@web.de>

+

License: GNU GPL Version 2 or GPL Version + 3 or OASIS 0.1

+

The "frami"-dictionary contains the complete word list of Björn Jacke's "igerman98"

+

(Version: 2011-03-21) and numerous supplements by Franz Michael Baumann according to the reform of + 2006-08-01.

+

OASIS distribution license agreement 0.1 from 2005-11-10

+

Without any modifications this dictionary may be distributed with programs that support the OASIS Open + Document Format for Office Applications and whose PRIMARY format for saving documents is the Open Document + Format.

+

This requires that all licenses and copyright files are also distributed together with the package the + dictionary is shipped with.

+

Any modifications of the dictionary files are not allowed for this agreement, modifications require the use + of the GNU GENERAL PUBLIC LICENSE.

+

If you have questions or don't get along with this, send me your comments/questions/ideas to Bjoern Jacke + <bjoern@j3e.de>

+

Jump to GPL version 3

+

Jump to GPL version 2

+

Hyphenation patterns

+

The following software may be included in this product: German hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Authors: Marco Huggenberger <marco@by-night.ch> / Daniel Naber <naber at danielnaber de>

+

Version: 2011-05-05 (author and license information in source file added)

+

License: GNU LGPL

+

Jump to LGPL Version 2.1

+

Thesaurus

+

The following software may be included in this product: German thesaurus. Use of any of this software is + governed by the terms of the license below:

+

OpenThesaurus - Deutscher Thesaurus - Synonyme und Assoziationen

+

Version: 2011-05-04 AT

+

License: GNU LGPL

+

Jump to LGPL Version 2.1

+

Greek

+

Spelling dictionary

+

The following software may be included in this product: Greek spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

GPL 2.0/LGPL 2.1/MPL 1.1 + tri-license

+

Hyphenation patterns

+

The following software may be included in this product: Greek hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

English (Australia)

+

Spelling dictionary

+

The following software may be included in this product: English (Australia) spelling dictionary. Use of any + of this software is governed by the terms of the license below:

+

Copyright (C) 2006  Cameron Roy

+

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General + Public License as published by the Free Software Foundation; either version 2 of the License, or (at your + option) any later version.

+

Jump to GPL version 2

+

English (Canada)

+

Spelling dictionary

+

The following software may be included in this product: English (Canada) spelling dictionary. Use of any of + this software is governed by the terms of the license below:

+

Wordlist en_CA spelling and morphological dictionary for OpenOffice.org

+

Version 2008-12-18

+

 

+

Based on Wordlist Hunspell dictionaries version 2008-12-05

+

and Wordlist POS and AGID data created by Kevin Atkinson

+

and released on http://wordlist.sourceforge.net.

+

 

+

Other fixes:

+

 

+

OOo Issue 48060 - add numbers with affixes by COMPOUNDRULE (1st, 111th, 1990s etc.)

+

New REP items (better suggestions for accented words and a few mistakes)

+

OOo Issue 63541 - remove *dessicated, *dessication

+

 

+

László Németh <nemeth at OO.o>

+

 

+

Original license:

+

 

+

2008-12-05 Release

+

 

+

README file for en_US and en_CA Hunspell dictionaries

+

 

+

These dictionaries are created using the speller/make-hunspell-dict

+

dictionary in SCOWL, SVN revision 74.

+

 

+

The NOSUGGEST flag was added to certain taboo words.  While I made an

+

honest attempt to flag the strongest taboo words with the NOSUGGEST

+

flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.

+

The list was originally derived from Németh László, however I removed

+

some words which, while being considered taboo by some dictionaries,

+

are not really considered swear words in today's society.

+

 

+

You can find SCOWL and friend at http://wordlist.sourceforge.net/.

+

Bug reports should go to the Issue Tracker found on the previously

+

mentioned web site.  General discussion should go to the

+

wordlist-devel at sourceforge net mailing list.

+

 

+

COPYRIGHT, SOURCES, and CREDITS:

+

 

+

The en_US and en_CA dictionaries come directly from SCOWL (up to level

+

60) and is thus under the same copyright of SCOWL.  The affix file is

+

a heavily modified version of the original english.aff file which was

+

released as part of Geoff Kuenning's Ispell and as such is covered by

+

his BSD license.  Part of SCOWL is also based on Ispell thus the

+

Ispell copyright is included with the SCOWL copyright.

+

 

+

The collective work is Copyright 2000-2007 by Kevin Atkinson as well

+

as any of the copyrights mentioned below:

+

 

+

  Copyright 2000-2007 by Kevin Atkinson

+

 

+

  Permission to use, copy, modify, distribute and sell these word

+

  lists, the associated scripts, the output created from the scripts,

+

  and its documentation for any purpose is hereby granted without fee,

+

  provided that the above copyright notice appears in all copies and

+

  that both that copyright notice and this permission notice appear in

+

  supporting documentation. Kevin Atkinson makes no representations

+

  about the suitability of this array for any purpose. It is provided

+

  "as is" without express or implied warranty.

+

 

+

Alan Beale <biljir@pobox.com> also deserves special credit as he has,

+

in addition to providing the 12Dicts package and being a major

+

contributor to the ENABLE word list, given me an incredible amount of

+

feedback and created a number of special lists (those found in the

+

Supplement) in order to help improve the overall quality of SCOWL.

+

 

+

The 10 level includes the 1000 most common English words (according to

+

the Moby (TM) Words II [MWords] package), a subset of the 1000 most

+

common words on the Internet (again, according to Moby Words II), and

+

frequently class 16 from Brian Kelk's "UK English Wordlist

+

with Frequency Classification".

+

 

+

The MWords package was explicitly placed in the public domain:

+

 

+

    The Moby lexicon project is complete and has

+

    been place into the public domain. Use, sell,

+

    rework, excerpt and use in any way on any platform.

+

 

+

    Placing this material on internal or public servers is

+

    also encouraged. The compiler is not aware of any

+

    export restrictions so freely distribute world-wide.

+

 

+

    You can verify the public domain status by contacting

+

 

+

    Grady Ward

+

    3449 Martha Ct.

+

    Arcata, CA  95521-4884

+

 

+

    grady@netcom.com

+

    grady@northcoast.com

+

 

+

The "UK English Wordlist With Frequency Classification" is also in the

+

Public Domain:

+

 

+

  Date: Sat, 08 Jul 2000 20:27:21 +0100

+

  From: Brian Kelk <Brian.Kelk@cl.cam.ac.uk>

+

 

+

  > I was wondering what the copyright status of your "UK English

+

  > Wordlist With Frequency Classification" word list as it seems to

+

  > be lacking any copyright notice.

+

 

+

  There were many many sources in total, but any text marked

+

  "copyright" was avoided. Locally-written documentation was one

+

  source. An earlier version of the list resided in a filespace called

+

  PUBLIC on the University mainframe, because it was considered public

+

  domain.

+

 

+

  Date: Tue, 11 Jul 2000 19:31:34 +0100

+

 

+

  > So are you saying your word list is also in the public domain?

+

 

+

  That is the intention.

+

 

+

The 20 level includes frequency classes 7-15 from Brian's word list.

+

 

+

The 35 level includes frequency classes 2-6 and words appearing in at

+

least 11 of 12 dictionaries as indicated in the 12Dicts package.  All

+

words from the 12Dicts package have had likely inflections added via

+

my inflection database.

+

 

+

The 12Dicts package and Supplement is in the Public Domain.

+

 

+

The WordNet database, which was used in the creation of the

+

Inflections database, is under the following copyright:

+

 

+

  This software and database is being provided to you, the LICENSEE,

+

  by Princeton University under the following license.  By obtaining,

+

  using and/or copying this software and database, you agree that you

+

  have read, understood, and will comply with these terms and

+

  conditions.:

+

 

+

  Permission to use, copy, modify and distribute this software and

+

  database and its documentation for any purpose and without fee or

+

  royalty is hereby granted, provided that you agree to comply with

+

  the following copyright notice and statements, including the

+

  disclaimer, and that the same appear on ALL copies of the software,

+

  database and documentation, including modifications that you make

+

  for internal use or for distribution.

+

 

+

  WordNet 1.6 Copyright 1997 by Princeton University.  All rights

+

  reserved.

+

 

+

  THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON

+

  UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR

+

  IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON

+

  UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-

+

  ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE

+

  LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY

+

  THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.

+

 

+

  The name of Princeton University or Princeton may not be used in

+

  advertising or publicity pertaining to distribution of the software

+

  and/or database.  Title to copyright in this software, database and

+

  any associated documentation shall at all times remain with

+

  Princeton University and LICENSEE agrees to preserve same.

+

 

+

The 40 level includes words from Alan's 3esl list found in version 4.0

+

of his 12dicts package.  Like his other stuff the 3esl list is also in the

+

public domain.

+

 

+

The 50 level includes Brian's frequency class 1, words appearing

+

in at least 5 of 12 of the dictionaries as indicated in the 12Dicts

+

package, and uppercase words in at least 4 of the previous 12

+

dictionaries.  A decent number of proper names is also included: The

+

top 1000 male, female, and Last names from the 1990 Census report; a

+

list of names sent to me by Alan Beale; and a few names that I added

+

myself.  Finally a small list of abbreviations not commonly found in

+

other word lists is included.

+

 

+

The name files form the Census report is a government document which I

+

don't think can be copyrighted.

+

 

+

The file special-jargon.50 uses common.lst and word.lst from the

+

Unofficial Jargon File Word Lists" which is derived from "The Jargon

+

.  All of which is in the Public Domain.  This file also contain

+

a few extra UNIX terms which are found in the file "unix-terms" in the

+

special/ directory.

+

The 55 level includes words from Alan's 2of4brif list found in version

+

4.0 of his 12dicts package.  Like his other stuff the 2of4brif is also

+

in the public domain.

+

 

+

The 60 level includes Brian's frequency class 0 and all words

+

appearing in at least 2 of the 12 dictionaries as indicated by the

+

12Dicts package.  A large number of names are also included: The 4,946

+

female names and the 3,897 male names from the MWords package.

+

 

+

The 70 level includes the 74,550 common dictionary words and the

+

21,986 names list from the MWords package The common dictionary words,

+

like those from the 12Dicts package, have had all likely inflections

+

added.  The 70 level also included the 5desk list from version 4.0 of

+

the 12Dics package which is the public domain

+

 

+

The 80 level includes the ENABLE word list, all the lists in the

+

ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics

+

(UKACD), the list of signature words in from YAWL package,

+

and the 10,196 places list from the MWords package.

+

 

+

The ENABLE package, mainted by M\Cooper <thegrendel@theriver.com>,

+

is in the Public Domain:

+

 

+

  The ENABLE master word list, WORD.LST, is herewith formally released

+

  into the Public Domain. Anyone is free to use it or distribute it in

+

  any manner they see fit. No fee or registration is required for its

+

  use nor are "contributions" solicited (if you feel you absolutely

+

  must contribute something for your own peace of mind, the authors of

+

  the ENABLE list ask that you make a donation on their behalf to your

+

  favorite charity). This word list is our gift to the Scrabble

+

  community, as an alternate to "official" word lists. Game designers

+

  may feel free to incorporate the WORD.LST into their games. Please

+

  mention the source and credit us as originators of the list. Note

+

  that if you, as a game designer, use the WORD.LST in your product,

+

  you may still copyright and protect your product, but you may *not*

+

  legally copyright or in any way restrict redistribution of the

+

  WORD.LST portion of your product. This *may* under law restrict your

+

  rights to restrict your users' rights, but that is only fair.

+

 

+

UKACD, by J Ross Beresford <ross@bryson.demon.co.uk>, is under the

+

following copyright:

+

 

+

  Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.

+

 

+

  The following restriction is placed on the use of this publication:

+

  if The UK Advanced Cryptics Dictionary is used in a software package

+

  or redistributed in any form, the copyright notice must be

+

  prominently displayed and the text of this document must be included

+

  verbatim.

+

 

+

  There are no other restrictions: I would like to see the list

+

  distributed as widely as possible.

+

 

+

The 95 level includes the 354,984 single words and 256,772 compound

+

words from the MWords package, ABLE.LST from the ENABLE Supplement,

+

and some additional words found in my part-of-speech database that

+

were not found anywhere else.

+

 

+

Accent information was taken from UKACD.

+

 

+

My VARCON package was used to create the American, British, and

+

Canadian word list.

+

 

+

Since the original word lists used in the VARCON package came

+

from the Ispell distribution they are under the Ispell copyright:

+

 

+

  Copyright 1993, Geoff Kuenning, Granada Hills, CA

+

  All rights reserved.

+

 

+

  Redistribution and use in source and binary forms, with or without

+

  modification, are permitted provided that the following conditions

+

  are met:

+

 

+

  1. Redistribution of source code must retain the above copyright

+

     notice, this list of conditions and the following disclaimer.

+

  2. Redistribution 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.

+

  3. All modifications to the source code must be clearly marked as

+

     such.  Binary redistribution based on modified source code

+

     must be clearly marked as modified versions in the documentation

+

     and/or other materials provided with the distribution.

+

  (clause 4 removed with permission from Geoff Kuenning)

+

  5. The name of Geoff Kuenning may not be used to endorse or promote

+

     products derived from this software without specific prior

+

     written permission.

+

 

+

  THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING 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 GEOFF

+

  KUENNING 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.

+

English (South Africa)

+

Spelling dictionary

+

The following software may be included in this product: English (South Africa) spelling dictionary. Use of + any of this software is governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

English (United Kingdom)

+

Spelling dictionary

+

The following software may be included in this product: English (United Kingdom) spelling dictionary. Use of + any of this software is governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

Hyphenation patterns

+

The following software may be included in this product: English (United Kingdom) hyphenation patterns. Use + of any of this software is governed by the terms of the license below:

+

BSD-style. Unlimited copying, redistribution and modification of this file is permitted with this copyright + and license information.

+

English (USA)

+

Spelling dictionary

+

The following software may be included in this product: English (USA) spelling dictionary. Use of any of + this software is governed by the terms of the license below:

+

See English (Canada).

+

Hyphenation patterns

+

The following software may be included in this product: English (USA) hyphenation patterns. Use of any of + this software is governed by the terms of the license below:

+

BSD-style. Unlimited copying, redistribution and modification of this file
+ is permitted with this copyright and license information.

+

Thesaurus

+

The following software may be included in this product: English (USA) thesaurus. Use of any of this software + is governed by the terms of the license below:

+

WordNet Release 2.1

+

This software and database is being provided to you, the LICENSEE, by Princeton University under the + following license. By obtaining, using and/or copying this software and database, you agree that you have read, + understood, and will comply with these terms and conditions.:

+

Permission to use, copy, modify and distribute this software and database and its documentation for any + purpose and without fee or royalty is hereby granted, provided that you agree to comply with the following + copyright notice and statements, including the disclaimer, and that the same appear on ALL copies of the + software, database and documentation, including modifications that you make for internal use or for + distribution.

+

WordNet 2.1 Copyright 2005 by Princeton University. All rights reserved.

+

THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON UNIVERSITY MAKES NO REPRESENTATIONS OR + WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON UNIVERSITY MAKES NO + REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE + LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS + OR OTHER RIGHTS.

+

The name of Princeton University or Princeton may not be used in advertising or publicity pertaining to + distribution of the software and/or database. Title to copyright in this software, database and any associated + documentation shall at all times remain with Princeton University and LICENSEE agrees to preserve same.

+

English sentence checker for LibreOffice

+

The following software may be included in this product: English sentence checker. Use of any of this + software is governed by the terms of the license below:

+

2011-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+

+

Jump to GPL Version 3

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Esperanto

+

Spelling dictionary, hyphenation patterns, and thesaurus

+

The following software may be included in this product: Esperanto spelling dictionary, hyphenation patterns, + and thesaurus. Use of any of this software is governed by the terms of the license below:

+

GNU General Public License version 3.

+

Estonian

+

Spelling dictionary

+

The following software may be included in this product: Estonian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Dictionary is adapted to myspell by Jaak Pruulmann (jjpp@meso.ee, http://www.meso.ee/~jjpp/speller/ ) on the base of word list created + and shared by IEL (Institute of the Estonian Language, tarkvara@eki.ee). The original of EKI software license + is available at http://www.eki.ee/eki/licence.html. The work + of Jaak Pruulmann is licensed under LGPL (GNU Lesser General Public License). The copies of licenses are added + to current file. IEL is informed about the use of this word list.

+

Software License Agreement

+

Institute of the Estonian Language

+

Copyright © Institute of the Estonian Language

+

E-mail: tarkvara@eki.ee

+

URL: http://www.eki.ee/tarkvara/

+

The present License Agreement gives the user of this Software Product (hereinafter: Product) the right to + use the Product for whatever purpose (incl. distribution, copying, altering, inclusion in other software, and + selling) on the following conditions:

+

The present License Agreement should belong unaltered to each copy ever made of this Product;

+

Neither the Institute of the Estonian Language (hereinafter: IEL) nor the author(s) of the Product will take + responsibility for any detriment, direct or indirect, possibly ensuing from the application of the Product;

+

The IEL is ready to share the Product with other users as we wish to advance research on the Estonian + language and to promote the use of Estonian in IT-technology now rapidly developing, yet we refuse to bind + ourselves to any further obligation, which means that the IEL is not obliged either to warrant the suitability + of the Product for a concrete use, to improve the program, or to provide a more detailed description of the + underlying algorithms. (Which does not mean, though, that we may not do it.)

+

Whenever you use the Product, we request that you inform us by writing to the e-mail address tarkvara@eki.ee + or to street address listed below.

+

Institute of the Estonian Language

+

Roosikrantsi 6
+ EE-10119 Tallinn
+ ESTONIA

+

E-mail: eki@eki.ee
+ Phone & Fax: +372-6411443

+

Jump to LGPL Version 2.1

+

Hyphenation patterns

+

The following software may be included in this product: Estonian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Hyphenation file is adapted to OpenOffice.org by Jaak Pruulmann (jjpp@meso.ee, http://www.meso.ee/~jjpp/speller/) on the base of the LaTeX hyphenation + file created by Enn Saar (saar@aai.ee), who has signed the JCA (Joint Copyright Agreement) allowing to use his + work for OpenOffice.org. The original file is available at address http://www.cs.ut.ee/~tqnu/eehyph.tex and in the heading of the file + it is written that this file is licensed under LPPL. The work of Jaak Pruulmann is licensed under LGPL (GNU + Lesser General Public License).

+

Jump to LPPL

+

Jump to LGPL Version 2.1

+

French

+

Spelling dictionary

+

The following software may be included in this product: French spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Olivier R. - dicollecte<at>free<dot>fr

+

Dicollecte: http://www.dicollecte.org/

+

Licenses:

+ +

Hyphenation patterns

+

The following software may be included in this product: French hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Origin: Based on the TeX hyphenation tables frhyph.tex (V2.12) <2002/12/11> http://mirror.ctan.org/language/hyphenation/frhyph.tex

+

The TeX hyphenation tables are released under the LaTeX Project Public License (LPPL)

+

Jump to LPPL

+

License: OpenOffice.org adaptions of this package are licensed under the GNU Lesser General Public License + (LGPL) version 2.1 or higher.

+

Jump to LGPL Version 2.1

+

Author: Conversion author is Paul Pichaureau <paul.pichaureau@alcandre.net>

+

Based on a previous conversion by Blaise Drayer <blaise@drayer.ch>

+

Thesaurus

+

The following software may be included in this product: French thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Licence: LGPL: GNU Lesser General Public License version 2.1 or higher.

+

Jump to LGPL Version 2.1

+

Galician

+

Spelling dictionary

+

The following software may be included in this product: Galician spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

This extension was made by Frco. Javier Rial Rodríguez for Mancomún, Centro de Referencia e Servizos de + Software Libre 2008

+

Spellchecker files (gl_ES.aff, gl_ES.dic) from Mar Castro Pereiro also developed for Mancomún.

+

Distributed under the GPL License.

+

Jump to GPL Version 3

+

Guarani

+

Spelling dictionary

+

The following software may be included in this product: Guarani spelling dictionary.

+

Thesaurus

+

The following software may be included in this product: Guarani thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free + Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no + Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the + section entitled "GNU Free Documentation License".

+

Gujarati

+

Spelling dictionary

+

The following software may be included in this product: Gujarati spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GPL Version 3

+

Hebrew

+

Spelling dictionary

+

The following software may be included in this product: Hebrew spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

This dictionary is Copyright (C) 2000-2009, Nadav Har'El (nyh@math.technion.ac.il) and Dan Kenigsberg + (danken@cs.technion.ac.il).

+

It is licensed under the GNU General Public License (GPL).

+

Jump to GPL Version 3

+

Hindi

+

The following software may be included in this product: Hindi spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

GNU Aspell Hindi Word List Package
+ Copyright © 2005 Swapnil {Hajare, Sant} <janabhaaratii@ncst.ernet.in>

+

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General + Public License as published by the Free Software Foundation; either version 2 of the License, or (at your + option) any later version.

+

Conversion made by Laszlo Nemeth, for demonstration of Hunspell Unicode support.

+

Jump to GPL Version 2

+

Hungarian

+

Spelling dictionary

+

The following software may be included in this product: Hungarian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

MPLv2 and LesserGPLv3+

+

The contents of this software may be used under the terms of the GNU Lesser General Public License Version 3 + or later (the "LGPL", see COPYING.LGPL) or the Mozilla Public License Version 2.0 or later (the "MPL", see + COPYING.MPL in the root folder of the source tree).

+

Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, + either express or implied. See the licences for the specific language governing rights and limitations under + the licenses.

+

2018 (c) László Németh & Ferenc Godó

+

Jump to LGPL Version 3

+

Jump to MPL Version 2

+

Hyphenation patterns

+

The following software may be included in this product: Hungarian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright © Bence Nagy <gimb (at) freemail (dot) hu>, 2006

+

Original license: GPL v2

+

Patch author: László Németh <nemeth (at) OOo>

+

Patch license: MPL/GPL/LGPL

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+

Thesaurus

+

The following software may be included in this product: Hungarian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2009, László Németh

+

Jump to GPL Version 2

+

Hungarian sentence checker for LibreOffice

+

The following software may be included in this product: Hungarian sentence checker. Use of any of this + software is governed by the terms of the license below:

+

2009-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+

+

Jump to GPL Version 3

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Indonesian

+

Spelling dictionary

+

The following software may be included in this product: Indonesian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to LGPL Version 3

+

Hyphenation patterns

+

The following software may be included in this product: Indonesian hyphenation patterns.

+

Thesaurus

+

The following software may be included in this product: Indonesian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

Icelandic

+

Spelling dictionary, hyphenation and thesaurus

+

The wordlist was developed by Orðabók Háskólans in cooperation with Reiknistofnun Háskóla Íslands in + the early nineties and was released into the public domain. Further modifications to the wordlist are also + released into the public domain.

+

The thesaurus and words in the spell checker with additional morphological information are from the + Icelandic Wiktionary Project, http://is.wiktionary.org. Works released by the Wiktionary project are under the + Creative Commons Attribution-ShareAlike 3.0 Unported license.

+

The hyphenation rules were developed by Icelandic Language Institute which now is a part of the Árni + Magnússon Institute for Icelandic Studies. The rules were made available at http://www.malfong.is/index.php?lang=en&pg=hyphen + under a Creative Commons Attribution 4.0 International license (CC BY 4.0).

+

You are free:
+
+    to Share — to copy, distribute and transmit the work
+    to Remix — to adapt the work
+    to make commercial use of the work
+
+ Under the following conditions:
+
+    Attribution — You must attribute the work in the manner specified by the author or licensor (but not in + any way that suggests that they endorse you or your use of the work).
+
+    Share Alike — If you alter, transform, or build upon this work, you may distribute the resulting work + only under the same or similar license to this one.

+

Jump to CC-BY-SA 3.0

+

Italian

+

Spelling dictionary

+

The following software may be included in this product: Italian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2001, 2002 Gianluca Turconi
+ Copyright (C) 2002, 2003, 2004 Gianluca Turconi and Davide Prina
+ Copyright (C) 2004, 2005, 2006, 2007  Davide Prina
+ Copyright (C) 2010  Andrea Pescetti

+

Jump to GPL Version 3

+

Hyphenation patterns

+

The following software may be included in this product: Italian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Origin:   Based on the TeX hyphenation tables by Claudio Beccari

+

Author:   conversion author is Giuseppe Bilotta <giuseppe.bilotta@gmail.com>

+

Jump to LGPL Version 3

+

Thesaurus

+

The following software may be included in this product: Italian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2004,2005,2006,2007,2008 Daniela Volta
+ Copyright (C) 2008 Giovanni Zuliani
+ Copyright (C) 2006,2007,2008 Davide Prina
+ Copyright (C) 2010  Andrea Pescetti

+

Jump to GPL Version 3

+

Kurdish

+

Spelling dictionary

+

The following software may be included in this product: Kurdish spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

(C) Copyright Reimar Heider <hunspell at ferheng dot org>

+

With contributions from Kevin P. Scannell <scannell@slu.edu> and Rêzan Tovjîn

+

The original word list used for this package was augmented using Kevin Scannell's web crawling software "An + Crúbadán" and then hand-checked by Ronahi and Tovjîn.

+

Originally GPL, relicensed on 04-07-2007 to GPLv3, LGPLv3, MPL 1.1

+

Jump to GPL Version 3

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Lao

+

Spelling dictionary

+

The following software may be included in this product: Lao spelling dictionary. Use of any of this software + is governed by the terms of the license below:

+

Copyright (C) 2013 by Brian Eugene Wilson, Robert Martin Campbell

+

Jump to LGPL Version 2.1

+

Latvian

+

Spelling dictionary

+

The following software may be included in this product: Latvian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, http://dict.dv.lv

+

Jump to LGPL Version 2.1

+

Hyphenation patterns

+

The following software may be included in this product: Latvian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2004-2005 Jânis Vilims, jvilims@apollo.lv

+

Jump to LGPL Version 2.1

+

Thesaurus

+

The following software may be included in this product: Latvian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, http://dict.dv.lv

+

Jump to LGPL Version 2.1

+

Lithuanian

+

Spelling dictionary

+

The following software may be included in this product: Lithuanian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (c) Albertas Agejevas <alga@uosis.mif.vu.lt>, 2000, 2001. All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+
    +
  1. Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer. 
  2. +
  3. Redistribution 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. 
  4. +
  5. Neither the name of the Albertas Agejevas nor the names of its contributors may be used to endorse or + promote products derived from this software without specific prior written permission. 
  6. +
+

THIS SOFTWARE IS PROVIDED BY ALBERTAS AGEJEVAS 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 ALBERTAS AGEJEVAS 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.

+

Hyphenation patterns

+

The following software may be included in this product: Lithuanian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Origin: TeX hyphenation tables by Sigitas Tolusis and Vytas Statulevicius. The original tables can be found + at http://www.vtex.lt/tex/download/zip/texmf.zip +  as lthyphen.tex.

+

Author: Converted to OOo format by Albertas Agejevas <alga@akl.lt>

+

License: LaTeX Project Public Licence

+

Jump to LPPL

+

Mongolian

+

Spelling dictionary and hyphenation patterns

+

The following software may be included in this product: Mongolian spelling dictionary and hyphenation patterns. + Use of any of this software is governed by the terms of the license below:

+

Jump to LPPL

+

Nepali

+

Spelling dictionary

+

The following software may be included in this product: Nepali spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Compiled by Madan Puraskar Pustakalaya

+

Jump to LGPL Version 2.1

+

Thesaurus

+

The following software may be included in this product: Nepali thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Compiled by Madan Puraskar Pustakalaya

+

Jump to LGPL Version 2.1

+

Norwegian

+

Spelling dictionary

+

The following software may be included in this product: Norwegian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GPL Version 2

+

Hyphenation patterns

+

The following software may be included in this product: Norwegian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Jump to GPL Version 2

+

Thesaurus

+

The following software may be included in this product: Norwegian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Jump to GPL Version 2

+

Occitan

+

Spelling dictionary

+

The following software may be included in this product: Occitan spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2006 Bruno GALLART

+

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General + Public License as published by the Free Software Foundation; either version 2 of the License, or (at your + option) any later version.

+

Jump to GPL Version 2

+

Polish

+

Spelling dictionary

+

The following software may be included in this product: Polish spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

This dictionary for spell-checking Polish texts is licensed under GPL, LGPL, MPL (Mozilla Public License) + and Creative Commons ShareAlike licenses (see http://creativecommons.org/licenses/sa/1.0).

+

Hyphenation patterns

+

The following software may be included in this product: Polish hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Origin:   Based on the TeX hyphenation patterns plhyph.tex, version 3.0a, Wednesday, May 17th, 1995. The + original file is in CTAN archives, for example here:http://ctan.binkerton.com/ctan.readme.php?filename=language/polish/plhyph.tex + and is licensed under LPPL.

+

License: OpenOffice.org Adaptions of this package are licensed under the GNU LGPL license.

+

Author: conversion and corrects author is Artur Polaczyński <artiip@gmail.com>

+

Jump to LGPL Version 3

+

Thesaurus

+

The following software may be included in this product: Polish thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (C) 2004-2008 Marcin Miłkowski <milek_pl@users.sourceforge.net>

+

This product is made available subject to the terms of GNU Lesser General Public License Version 2.1.

+

Jump to LGPL Version 2.1

+

Portuguese

+

Spelling dictionary

+

The following software may be included in this product: Portuguese spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2006  Jose Joao de Almeida, Rui Vilela, Alberto Simões

+

Dep. Informatica, Universidade do Minho, Portugal

+

GPL 2.0/LGPL 2.1/MPL 1.1 tri-license

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+

Hyphenation patterns

+

The following software may be included in this product: Portuguese hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Based on the TeX hyphenation tables by Pedro J. de Rezende (Brazilian) and tuned up by J.Joao Dias + Almeida

+

Author: conversion author is Paulo Morgado

+

Jump to GPL Version 2

+

Thesaurus

+

The following software may be included in this product: Portuguese thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Jump to GPL Version 2

+

Portuguese (Brazilian)

+

Spelling dictionary

+

The following software may be included in this product: Portuguese (Brazilian) spelling dictionary. Use of + any of this software is governed by the terms of the license below:

+

This dictionary is under continuous development by Raimundo Moura and his team. It is icensed under the + terms of the GNU Lesser General Public License version 3 (LGPLv3), as published by the Free Software + Foundation, and Mozilla Public License as published by The Mozilla Foundation.  The credits are available at + https://pt-br.libreoffice.org/projetos/vero/ + and you can find new releases at https://extensions.libreoffice.org

+

Copyright (C) 2006 - 2013 by Raimundo Santos Moura <raimundo.smoura@gmail.com>

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Hyphenation patterns

+

The following software may be included in this product: Portuguese (Brazilian) hyphenation patterns. Use of + any of this software is governed by the terms of the license below:

+

These hyphenation patterns are under continuous development by Raimundo Moura and his team. It is icensed + under the terms of the GNU Lesser General Public License version 3 (LGPLv3), as published by the Free Software + Foundation, and Mozilla Public License as published by The Mozilla Foundation.  The credits are available at + https://pt-br.libreoffice.org/projetos/vero/ + and you can find new releases at https://extensions.libreoffice.org

+

Copyright (C) 2006 - 2013 by Raimundo Santos Moura <raimundo.smoura@gmail.com>

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Portuguese Brazilian sentence checker for LibreOffice

+

The following software may be included in this product: Portuguese (Brazilian) sentence checker. Use of any + of this software is governed by the terms of the license below:

+

MPL 1.1 / GPLv3+ / LGPLv3+

+

2013 © Raimundo Santos Moura

+

Jump to GPL Version 3

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Romanian

+

Spelling dictionary

+

The following software may be included in this product: Romanian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

GPL 2.0/LGPL 2.1/MPL 1.1 tri-license.

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+

Hyphenation patterns

+

The following software may be included in this product: Romanian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

GNU General Public License Version 2

+

Jump to GPL Version 2

+

Thesaurus

+

The following software may be included in this product: Romanian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

GNU General Public License Version 2 or later

+

Jump to GPL Version 2

+

Russian

+

Spelling dictionary

+

The following software may be included in this product: Russian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (c) 1997-2008, Alexander I. Lebedev

+

All rights reserved.

+

Redistribution and use in source and binary forms, with or without modification, are permitted provided that + the following conditions are met:

+
    +
  • Redistribution of source code must retain the above copyright notice, this list of conditions and the + following disclaimer. 
  • +
  • Redistribution 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. 
  • +
  • Modified versions must be clearly marked as such. 
  • +
  • The name of Alexander I. Lebedev may not 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.

+

Hyphenation patterns

+

The following software may be included in this product: Russian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

unknown

+

Thesaurus

+

The following software may be included in this product: Russian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

License: GNU LGPL

+

Author: Mikhail Korolyov <mkorolyov@yandex.ru>

+

Origin: Абрамовъ, Н. Словарь русскихъ синонимовъ и сходныхъ по + смыслу выраженiй. Изд. 3-е, доп., Пг., 1911

+

Russian grammar checker

+

The following software may be included in this product: Russian grammar checker. Use of any of this software + is governed by the terms of the license below:

+

2009, 2011, 2012 (c) Yakov Reztsov <yr at myooo dot ru>, license: MPL 1.1 / GPL / LGPL

+

Scottish Gaelic

+

Spelling dictionary

+

The following software may be included in this product: Scottish Gaelic spelling dictionary. Use of any of + this software is governed by the terms of the license below:

+

Jump to GPL Version 3

+

Serbian

+

Spelling dictionary

+

The following software may be included in this product: Serbian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Serbian spelling dictionary is developed by Milutin Smiljanic <msmiljanic.gm@gmail.com> and is + released under GNU LGPL version 3 or later / MPL version 2 or later / GNU GPL version 3 or later, giving + you the choice of one of the three sets of free software licensing terms.

+

Hyphenation patterns

+

The following software may be included in this product: Serbian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Serbian hyphenation patterns (files hyph_sr.dic and hyph_sh.dic) are derived from the official TeX patterns + for Serbocroatian language (Cyrillic and Latin) created by Dejan Muhamedagić <dejan@hello-penguin.com> + version 2.02 released on 22 June 2008. The format is adopted for usage with Hyphen hyphenation library and is + released again as hyphen-sr under the compatible GNU LGPL version 2.1 or later.

+

Jump to LGPL Version 2.1

+

Sinhala

+

Spelling dictionary

+

The following software may be included in this product: Sinhala spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) <2010>  Laknath Semage <blaknath [at] gmail [dot] com>

+

Jump to GPL Version 3

+

Slovak

+

Spelling dictionary

+

The following software may be included in this product: Slovak spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Data are released under these licenses (you can select one):

+
    +
  • The GNU General Public License (GPL) Version 2, June 1991 
  • +
  • GNU Lesser General Public License Version 2.1, February 1999 
  • +
  • Mozilla Public License 1.1 (MPL 1.1) 
  • +
+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+

Hyphenation patterns

+

The following software may be included in this product: Slovak hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Dictionary is created by converting TeX hyphenation patterns for Slovak (Author: Jana Chlebíková) with + lingucomponent-tools (http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/).

+

Original license: LPPL

+

Jump to LPPL

+

Thesaurus

+

The following software may be included in this product: Slovak thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Copyright (c) 2004-2010 Tibor Bako, yorik (at) szm.sk, Zdenko Podobný, zposter (at) gmail.com

+

Permission is hereby granted, free of charge, to any person obtaining a copy of this data (the "Data"), to + deal in the Data without restriction, including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Data, and to permit persons to whom the Data 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 Data.

+

THE DATA ARE 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 DATA OR THE USE OR OTHER DEALINGS + IN THE DATA.

+

Slovenian

+

Spelling dictionary

+

The following software may be included in this product: Slovenian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Hyphenation patterns

+

The following software may be included in this product: Slovenian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Thesaurus

+

The following software may be included in this product: Slovenian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

Spanish

+

Spelling dictionary

+

The following software may be included in this product: Spanish spelling dictionary. Use of any of this + software is governed by the terms of the licenses (or any later versions) below:

+

Jump to GPL version 3

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Hyphenation patterns

+

The following software may be included in this product: Spanish hyphenation patterns. Use of any of this + software is governed by the terms of the licenses (or any later versions) below:

+

Jump to GPL version 3

+

Jump to LGPL Version 3

+

Jump to MPL Version 1.1

+

Thesaurus

+

The following software may be included in this product: Spanish thesaurus. Use of any of this software is + governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

Swahili

+

Spelling dictionary

+

The following software may be included in this product: Swahili spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2004 Jason M Githeko

+

Jump to LGPL Version 2.1

+

Swahili

+

Spelling dictionary

+

The following software may be included in this product: Swahili spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to LGPL Version 3

+

Swedish

+

Spelling dictionary

+

The following software may be included in this product: Swedish spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright © 2003-12 Göran Andersson <goran@init.se>.

+

This dictionary is made available subject to the terms of GNU Lesser General Public License Version 3.

+

Jump to LGPL Version 3

+

Thesaurus

+

The following software may be included in this product: Swedish thesaurus. Use of any of this software is + governed by the terms of the license below:

+

This thesaurus was directly converted from Synlex. The synonyms will be displayed sorted by their voted + synonym level.

+

The synlex file <synpairs.xml> license, You are free to use this file with the same license

+

Copyright (c) Viggo Kann KTH 2009

+

THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED.  ANY USE IS AT YOUR OWN + RISK.

+

Permission is hereby granted to use or copy this program for any purpose, provided the above notices are + retained on all copies. Permission to modify the code and to distribute modified code is granted, provided the + above notices are retained, and a notice that the code was modified is included with the above copyright + notice.

+

Telugu

+

Spelling dictionary

+

The following software may be included in this product: Telugu spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

GNU Hunspell Telugu  Word List Package adaptation

+

Copyright © 2010 adaptation to Hunspell, Arjuna Rao Chavala
+ Copyright © 2005 Aspell Telugu word list released by IndLinux, Khadir

+

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General + Public License as published by the Free Software Foundation; either version 2 of the License, or (at your + option) any later version.

+

Jump to GPL Version 2

+

Hyphenation patterns

+

The following software may be included in this product: Telugu hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright © 2009 Santhosh Thottingal

+

The Telugu Hyphenation Dictionary may be used under the terms of either the GNU General Public License + Version 3 or later (the "GPL"), or the GNU Lesser General Public License Version 3 or later (the "LGPL")

+

Jump to GPL Version 3

+

Jump to LGPL Version 3

+

Thai

+

Spelling dictionary

+

The following software may be included in this product: Thai spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Jump to LGPL Version 2.1

+

Tibetan

+

Spelling dictionary

+

The following software may be included in this product: Classical Tibetan syllable spellchecker for + Hunspell. Use of any of this software is governed by the terms of the license below:

+

This work and the derived files are under the Creative Commons CC0 license (Public Domain).

+

Turkish

+

Spelling dictionary

+

The following software may be included in this product: Turkish spellchecker dictionary. Use of any of this + software is governed by the terms of the license below:

+

This dictionary is released under Mozilla Public License Version 2.0.

+

Jump to MPL Version 2

+

Ukrainian

+

Spelling dictionary

+

The following software may be included in this product: Ukrainian spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 1999 Vladimir Yakovchuk, Oleg Podgurniy
+ Copyright (C) 2001 Dmytro Kovalyov, Maksym Polyakov, Andriy Rysin
+ Copyright (C) 2002 Valentyn Solomko, Volodymyr M. Lisivka
+ Copyright (C) 2005 Andriy Rysin, Eugeniy Meshcheryakov, Dmytro Kovalyov
+ Copyright (C) 2006-2009 Andriy Rysin

+

This dictionary is licensed under GPL 2.0 or above, LGPL 2.1 or above and MPL (Mozilla Public License) 1.1 + licenses.

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+

Hyphenation patterns

+

The following software may be included in this product: Ukrainian hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright 1998-2002 Maksym Polyakov.

+

License: GNU General Public License version 2 or any later version

+

Jump to GPL Version 2

+

Thesaurus

+

The following software may be included in this product: Ukrainian thesaurus. Use of any of this software is + governed by the terms of the license below:

+

This thesaurus is based on: П. М. Деркач, Короткий словник синонімів + української мови, Радянська школа, Київ, 1960 С. Караванський, + Пошук українського слова

+

Copyright (C) 2009 Andriy Rysin

+

This thesaurus is licensed under GPL, LGPL and MPL (Mozilla Public License) licenses.

+

Jump to GPL Version 2

+

Jump to LGPL Version 2.1

+

Jump to MPL Version 1.1

+

Vietnamese

+

Spelling dictionary

+

The following software may be included in this product: Vietnamese spelling dictionary. Use of any of this + software is governed by the terms of the license below:

+

Authors:
+ Ivan Garcia <capiscuas@gmail.com>
+ Nguyễn Xuân Minh <mxn@zoomtown.com>

+

This spellchecker for OpenOffice was based on the Vietnamese Dictionary list from Professor Hồ Ngọc + Đức

+

This spellchecker is released with GPLv2 license.

+

Jump to GPL Version 2

+

Zulu

+

Hyphenation patterns

+

The following software may be included in this product: Zulu hyphenation patterns. Use of any of this + software is governed by the terms of the license below:

+

Copyright (C) 2005, 2007 Friedel Wolff

+

Jump to LGPL Version 2.1

+
+
+

Artwork

+
+

Breeze

+

Breeze icon theme from KDE to fit in with the Plasma 5 desktop.

+

Breeze Icon Theme has been developed by The KDE Visual Design Group. https://forum.kde.org/viewforum.php?f=285

+

Copyright 2014 Uri Herrera <kaisergreymon99@gmail.com>

+

Copyright 2015 Andreas Kainz <kainz.a@gmail.com> and other contributors

+

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General + Public License as published by the Free Software Foundation; either version 2 of the License, or (at your + option) any later version.

+

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details.

+

Jump to GPL Version 2

+
+
+

Colibre

+

The Colibre Icon Theme in icons/

+

Original author: Andreas Kainz <kainz.a@gmail.com>

+

Icon theme is released under Creative Commons CC0 You are free to adapt and use them for commercial purposes + without attributing the original author or source. Although not required, a link back to LibreOffice is + appreciated.

+

For additional Information go to the Creative Commons webpage https://creativecommons.org/publicdomain/zero/1.0/

+
+
+

Elementary

+

This theme is based on the Human icon theme for LibreOffice and uses resources from the elementary icon + theme as well as original work from Shimmer Project. A summary of attributions are below, with further details + available at https://github.com/rizmut/libreoffice-style-elementary/commits

+

Elementary theme for LibreOffice

+
    +
  • libreoffice-style-elementary: Available under the terms of the GPL
  • +
      +
    • Copyright 2018 by Rizal Muttaqin <riz_17_oke@yahoo.co.id>
    • +
    • Copyright 2017 by Andreas Kainz <kainz.a@gmail.com>
    • +
    • Copyright 2015 by Simon Steinbeiss <simon@xfce.org>, Pasi Lallinaho + <pasi@shimmerproject.org>
    • +
    +
  • elementary(-xfce): Available under the terms of the GPL
  • +
      +
    • Copyright 2008-2015 by Daniel Foré <Daniel.p.Fore@gmail.com>
    • +
    • Copyright 2010-2015 by Simon Steinbeiss <simon@xfce.org>
    • +
    +
+

Human theme for LibreOffice (2015-05-31)

+
    +
  • libreoffice-style-human: Available under the terms of the LGPL
  • +
      +
    • Copyright 2006-2007 by Gabriel Hurley
    • +
    +
  • humanity-icon-theme: Available under the terms of the GPL
  • +
      +
    • Copyright 2009 by Daniel Foré <Daniel.p.Fore@gmail.com>, Jonian Guveli + <jonian.guveli@gmail.com>, K.Vishnoo Charan Reddy <vish@ubuntu.com>
    • +
    • Copyright 2006, 2009 by Gabriel Hurley
    • +
    +
+

Jump to GPL Version 3

+
+
+

Karasa Jaga

+

Karasa Jaga Icon Theme for Sundara OS

+
+ Copyright (c) 2014 Rizal Muttaqin <sundaralinux@gmail.com>
+ Copyright (c) 2018 Rania Amina <rania@libreoffice.id> +
+

Karasa Jaga icon theme is derived heavily from Oxygen icon theme, used for Sundara OS branding. LibreOffice + Style Karasa Jaga is part of Karasa Jaga icon theme. For further information see at https://github.com/rizmut/libreoffice-style-karasa-jaga

. +

The Oxygen Icon Theme

+
+ Copyright (C) 2007 Nuno Pinheiro <nuno@oxygen-icons.org>
+ Copyright (C) 2007 David Vignoni <david@icon-king.com>
+ Copyright (C) 2007 David Miller <miller@oxygen-icons.org>
+ Copyright (C) 2007 Johann Ollivier Lapeyre <johann@oxygen-icons.org>
+ Copyright (C) 2007 Kenneth Wimer <kwwii@bootsplash.org>
+ Copyright (C) 2007 Riccardo Iaconelli <riccardo@oxygen-icons.org> +
+

and others

+
+

This library 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.

+

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 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 library. If + not, see <http://www.gnu.org/licenses/>.

+
+

Clarification:

+
+

The GNU Lesser General Public License or LGPL is written for software libraries in the first place. We + expressly want the LGPL to be valid for this artwork library too.

+

KDE Oxygen theme icons is a special kind of software library, it is an artwork library, it's elements + can be used in a Graphical User Interface, or GUI.

+

Source code, for this library means:

+
    +
  • where they exist, SVG;
  • +
  • otherwise, if applicable, the multi-layered formats xcf or psd, or otherwise png.
  • +
+

The LGPL in some sections obliges you to make the files carry notices. With images this is in some cases + impossible or hardly useful.

+

With this library a notice is placed at a prominent place in the directory containing the elements. You + may follow this practice.

+

The exception in section 5 of the GNU Lesser General Public License covers the use of elements of this + art library in a GUI.

+

kde-artists [at] kde.org

+
+

Jump to LGPL Version 3

+
+
+

Sifr

+

This work is distributed under the terms of the Creative Commons BY-SA 3.0 license.

+

Jump to CC-BY-SA 3.0

+
+
+

Sukapura

+

Sukapura Icon Theme

+
+ Copyright (c) 2019-2020 Rizal Muttaqin <riz_17_oke@yahoo.co.co.id>
+
+
+

This work is distributed under the terms of Mozilla Public License version 2.0. To view a copy of this + licence, visit https://www.mozilla.org/en-US/MPL/2.0/ +

+

Jump to MPL 2.0

+
+
+
+
+

GNU LESSER GENERAL PUBLIC LICENSE

+

Version 3, 29 June 2007

+

Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>

+

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is + not allowed.

+

This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of + the GNU General Public License, supplemented by the additional permissions listed below.

+

0. Additional Definitions.

+

As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the + “GNU GPL” refers to version 3 of the GNU General Public License.

+

“The Library” refers to a covered work governed by this License, other than an Application or a Combined + Work as defined below.

+

An “Application” is any work that makes use of an interface provided by the Library, but which is not + otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using + an interface provided by the Library.

+

A “Combined Work” is a work produced by combining or linking an Application with the Library. The + particular version of the Library with which the Combined Work was made is also called the “Linked + Version”.

+

The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined + Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on + the Application, and not on the Linked Version.

+

The “Corresponding Application Code” for a Combined Work means the object code and/or source code for + the Application, including any data and utility programs needed for reproducing the Combined Work from the + Application, but excluding the System Libraries of the Combined Work.

+

1. Exception to Section 3 of the GNU GPL.

+

You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the + GNU GPL.

+

2. Conveying Modified Versions.

+

If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to + be supplied by an Application that uses the facility (other than as an argument passed when the facility is + invoked), then you may convey a copy of the modified version:

+
    +
  1. under this License, provided that you make a good faith effort to ensure that, in the event an + Application does not supply the function or data, the facility still operates, and performs whatever part + of its purpose remains meaningful, or
  2. +
  3. under the GNU GPL, with none of the additional permissions of this License applicable to that + copy.
  4. +
+

3. Object Code Incorporating Material from Library Header Files.

+

The object code form of an Application may incorporate material from a header file that is part of the + Library. You may convey such object code under terms of your choice, provided that, if the incorporated + material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline + functions and templates (ten or fewer lines in length), you do both of the following:

+
    +
  1. Give prominent notice with each copy of the object code that the Library is used in it and that the + Library and its use are covered by this License.
  2. +
  3. Accompany the object code with a copy of the GNU GPL and this license document.
  4. +
+

4. Combined Works.

+

You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict + modification of the portions of the Library contained in the Combined Work and reverse engineering for + debugging such modifications, if you also do each of the following:

+
    +
  1. Give prominent notice with each copy of the Combined Work that the Library is used in it and that the + Library and its use are covered by this License.
  2. +
  3. Accompany the Combined Work with a copy of the GNU GPL and this license document.
  4. +
  5. For a Combined Work that displays copyright notices during execution, include the copyright notice for + the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and + this license document.
  6. +
  7. Do one of the following: +
      +
    1. Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding + Application Code in a form suitable for, and under terms that permit, the user to recombine or + relink the Application with a modified version of the Linked Version to produce a modified Combined + Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
    2. +
    3. Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is + one that (a) uses at run time a copy of the Library already present on the user's computer system, + and (b) will operate properly with a modified version of the Library that is interface-compatible + with the Linked Version.
    4. +
    +
  8. +
  9. Provide Installation Information, but only if you would otherwise be required to provide such + information under section 6 of the GNU GPL, and only to the extent that such information is necessary to + install and execute a modified version of the Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If you use option 4d0, the Installation + Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use + option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU + GPL for conveying Corresponding Source.)
  10. +
+

5. Combined Libraries.

+

You may place library facilities that are a work based on the Library side by side in a single library + together with other library facilities that are not Applications and are not covered by this License, and + convey such a combined library under terms of your choice, if you do both of the following:

+
    +
  1. Accompany the combined library with a copy of the same work based on the Library, uncombined with any + other library facilities, conveyed under the terms of this License.
  2. +
  3. Give prominent notice with the combined library that part of it is a work based on the Library, and + explaining where to find the accompanying uncombined form of the same work.
  4. +
+

6. Revised Versions of the GNU Lesser General Public License.

+

The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public + License from time to time. Such new versions will be similar in spirit to the present version, but may differ + in detail to address new problems or concerns.

+

Each version is given a distinguishing version number. If the Library as you received it specifies that a + certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you + have the option of following the terms and conditions either of that published version or of any later version + published by the Free Software Foundation. If the Library as you received it does not specify a version number + of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License + ever published by the Free Software Foundation.

+

If the Library as you received it specifies that a proxy can decide whether future versions of the GNU + Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is + permanent authorization for you to choose that version for the Library.

+
+

GNU LESSER GENERAL PUBLIC LICENSE

+

Version 2.1, February 1999

+
+Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL.  It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+

Preamble

+

The licenses for most software are designed to take away your freedom to share and change it. By contrast, + the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to + make sure the software is free for all its users.

+

This license, the Lesser General Public License, applies to some specially designated software + packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can + use it too, but we suggest you first think carefully about whether this license or the ordinary General Public + License is the better strategy to use in any particular case, based on the explanations below.

+

When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses + are designed to make sure that you have the freedom to distribute copies of free software (and charge for this + service if you wish); that you receive source code or can get it if you want it; that you can change the + software and use pieces of it in new free programs; and that you are informed that you can do these things.

+

To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to + ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you + distribute copies of the library or if you modify it.

+

For example, if you distribute copies of the library, whether gratis or for a fee, you must give the + recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source + code. If you link other code with the library, you must provide complete object files to the recipients, so + that they can relink them with the library after making changes to the library and recompiling it. And you must + show them these terms so they know their rights.

+

We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this + license, which gives you legal permission to copy, distribute and/or modify the library.

+

To protect each distributor, we want to make it very clear that there is no warranty for the free library. + Also, if the library is modified by someone else and passed on, the recipients should know that what they have + is not the original version, so that the original author's reputation will not be affected by problems that + might be introduced by others.

+

Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure + that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from + a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be + consistent with the full freedom of use specified in this license.

+

Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This + license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different + from the ordinary General Public License. We use this license for certain libraries in order to permit linking + those libraries into non-free programs.

+

When a program is linked with a library, whether statically or using a shared library, the combination of + the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public + License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser + General Public License permits more lax criteria for linking other code with the library.

+

We call this license the "Lesser" General Public License because it does Less to protect the user's freedom + than the ordinary General Public License. It also provides other free software developers Less of an advantage + over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License + for many libraries. However, the Lesser license provides advantages in certain special circumstances.

+

For example, on rare occasions, there may be a special need to encourage the widest possible use of a + certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to + use the library. A more frequent case is that a free library does the same job as widely used non-free + libraries. In this case, there is little to gain by limiting the free library to free software only, so we use + the Lesser General Public License.

+

In other cases, permission to use a particular library in non-free programs enables a greater number of + people to use a large body of free software. For example, permission to use the GNU C Library in non-free + programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux + operating system.

+

Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the + user of a program that is linked with the Library has the freedom and the wherewithal to run that program using + a modified version of the Library.

+

The precise terms and conditions for copying, distribution and modification follow. Pay close attention to + the difference between a "work based on the library" and a "work that uses the library". The former contains + code derived from the library, whereas the latter must be combined with the library in order to run.

+

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

+

0. This License Agreement applies to any software library or other program which contains a + notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of + this Lesser General Public License (also called "this License"). Each licensee is addressed as "you".

+

A "library" means a collection of software functions and/or data prepared so as to be conveniently linked + with application programs (which use some of those functions and data) to form executables.

+

The "Library", below, refers to any such software library or work which has been distributed under these + terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that + is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or + translated straightforwardly into another language. (Hereinafter, translation is included without limitation in + the term "modification".)

+

"Source code" for a work means the preferred form of the work for making modifications to it. For a library, + complete source code means all the source code for all modules it contains, plus any associated interface + definition files, plus the scripts used to control compilation and installation of the library.

+

Activities other than copying, distribution and modification are not covered by this License; they are + outside its scope. The act of running a program using the Library is not restricted, and output from such a + program is covered only if its contents constitute a work based on the Library (independent of the use of the + Library in a tool for writing it). Whether that is true depends on what the Library does and what the program + that uses the Library does.

+

1. You may copy and distribute verbatim copies of the Library's complete source code as you + receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an + appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License + and to the absence of any warranty; and distribute a copy of this License along with the Library.

+

You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty + protection in exchange for a fee.

+

2. You may modify your copy or copies of the Library or any portion of it, thus forming a + work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions:

+
    +
  • a) The modified work must itself be a software library.
  • +
  • b) You must cause the files modified to carry prominent notices stating that you + changed the files and the date of any change.
  • +
  • c) You must cause the whole of the work to be licensed at no charge to all third + parties under the terms of this License.
  • +
  • + d) If a facility in the modified Library refers to a function or a table of data to be + supplied by an application program that uses the facility, other than as an argument passed when the + facility is invoked, then you must make a good faith effort to ensure that, in the event an application + does not supply such function or table, the facility still operates, and performs whatever part of its + purpose remains meaningful. +

    (For example, a function in a library to compute square roots has a purpose that is entirely + well-defined independent of the application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must be optional: if the application does + not supply it, the square root function must still compute square roots.)

    +
  • +
+

These requirements apply to the modified work as a whole. If identifiable sections of that work are not + derived from the Library, and can be reasonably considered independent and separate works in themselves, then + this License, and its terms, do not apply to those sections when you distribute them as separate works. But + when you distribute the same sections as part of a whole which is a work based on the Library, the distribution + of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire + whole, and thus to each and every part regardless of who wrote it.

+

Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely + by you; rather, the intent is to exercise the right to control the distribution of derivative or collective + works based on the Library.

+

In addition, mere aggregation of another work not based on the Library with the Library (or with a work + based on the Library) on a volume of a storage or distribution medium does not bring the other work under the + scope of this License.

+

3. You may opt to apply the terms of the ordinary GNU General Public License instead of + this License to a given copy of the Library. To do this, you must alter all the notices that refer to this + License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. + (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can + specify that version instead if you wish.) Do not make any other change in these notices.

+

Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General + Public License applies to all subsequent copies and derivative works made from that copy.

+

This option is useful when you wish to copy part of the code of the Library into a program that is not a + library.

+

4. You may copy and distribute the Library (or a portion or derivative of it, under Section + 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it + with the complete corresponding machine-readable source code, which must be distributed under the terms of + Sections 1 and 2 above on a medium customarily used for software interchange.

+

If distribution of object code is made by offering access to copy from a designated place, then offering + equivalent access to copy the source code from the same place satisfies the requirement to distribute the + source code, even though third parties are not compelled to copy the source along with the object code.

+

5. A program that contains no derivative of any portion of the Library, but is designed to + work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a + work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this + License.

+

However, linking a "work that uses the Library" with the Library creates an executable that is a derivative + of the Library (because it contains portions of the Library), rather than a "work that uses the library". The + executable is therefore covered by this License. Section 6 states terms for distribution of such + executables.

+

When a "work that uses the Library" uses material from a header file that is part of the Library, the object + code for the work may be a derivative work of the Library even though the source code is not. Whether this is + true is especially significant if the work can be linked without the Library, or if the work is itself a + library. The threshold for this to be true is not precisely defined by law.

+

If such an object file uses only numerical parameters, data structure layouts and accessors, and small + macros and small inline functions (ten lines or less in length), then the use of the object file is + unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code + plus portions of the Library will still fall under Section 6.)

+

Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under + the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are + linked directly with the Library itself.

+

6. As an exception to the Sections above, you may also combine or link a "work that uses + the Library" with the Library to produce a work containing portions of the Library, and distribute that work + under terms of your choice, provided that the terms permit modification of the work for the customer's own use + and reverse engineering for debugging such modifications.

+

You must give prominent notice with each copy of the work that the Library is used in it and that the + Library and its use are covered by this License. You must supply a copy of this License. If the work during + execution displays copyright notices, you must include the copyright notice for the Library among them, as well + as a reference directing the user to the copy of this License. Also, you must do one of these things:

+
    +
  • a) Accompany the work with the complete corresponding machine-readable source code for + the Library including whatever changes were used in the work (which must be distributed under Sections 1 + and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable + "work that uses the Library", as object code and/or source code, so that the user can modify the Library + and then relink to produce a modified executable containing the modified Library. (It is understood that + the user who changes the contents of definitions files in the Library will not necessarily be able to + recompile the application to use the modified definitions.)
  • +
  • b) Use a suitable shared library mechanism for linking with the Library. A suitable + mechanism is one that (1) uses at run time a copy of the library already present on the user's computer + system, rather than copying library functions into the executable, and (2) will operate properly with a + modified version of the library, if the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with.
  • +
  • c) Accompany the work with a written offer, valid for at least three years, to give + the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of + performing this distribution.
  • +
  • d) If distribution of the work is made by offering access to copy from a designated + place, offer equivalent access to copy the above specified materials from the same place.
  • +
  • e) Verify that the user has already received a copy of these materials or that you + have already sent this user a copy.
  • +
+

For an executable, the required form of the "work that uses the Library" must include any data and utility + programs needed for reproducing the executable from it. However, as a special exception, the materials to be + distributed need not include anything that is normally distributed (in either source or binary form) with the + major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless + that component itself accompanies the executable.

+

It may happen that this requirement contradicts the license restrictions of other proprietary libraries that + do not normally accompany the operating system. Such a contradiction means you cannot use both them and the + Library together in an executable that you distribute.

+

7. You may place library facilities that are a work based on the Library side-by-side in a + single library together with other library facilities not covered by this License, and distribute such a + combined library, provided that the separate distribution of the work based on the Library and of the other + library facilities is otherwise permitted, and provided that you do these two things:

+
    +
  • a) Accompany the combined library with a copy of the same work based on the Library, + uncombined with any other library facilities. This must be distributed under the terms of the Sections + above.
  • +
  • b) Give prominent notice with the combined library of the fact that part of it is a + work based on the Library, and explaining where to find the accompanying uncombined form of the same + work.
  • +
+

8. You may not copy, modify, sublicense, link with, or distribute the Library except as + expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or + distribute the Library is void, and will automatically terminate your rights under this License. However, + parties who have received copies, or rights, from you under this License will not have their licenses + terminated so long as such parties remain in full compliance.

+

9. You are not required to accept this License, since you have not signed it. However, + nothing else grants you permission to modify or distribute the Library or its derivative works. These actions + are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library + (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms + and conditions for copying, distributing or modifying the Library or works based on it.

+

10. Each time you redistribute the Library (or any work based on the Library), the + recipient automatically receives a license from the original licensor to copy, distribute, link with or modify + the Library subject to these terms and conditions. You may not impose any further restrictions on the + recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third + parties with this License.

+

11. If, as a consequence of a court judgment or allegation of patent infringement or for + any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, + agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the + conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a consequence you may not distribute the Library at + all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those + who receive copies directly or indirectly through you, then the only way you could satisfy both it and this + License would be to refrain entirely from distribution of the Library.

+

If any portion of this section is held invalid or unenforceable under any particular circumstance, the + balance of the section is intended to apply, and the section as a whole is intended to apply in other + circumstances.

+

It is not the purpose of this section to induce you to infringe any patents or other property right claims + or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the + free software distribution system which is implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed through that system in reliance on consistent + application of that system; it is up to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that choice.

+

This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this + License.

+

12. If the distribution and/or use of the Library is restricted in certain countries either + by patents or by copyrighted interfaces, the original copyright holder who places the Library under this + License may add an explicit geographical distribution limitation excluding those countries, so that + distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates + the limitation as if written in the body of this License.

+

13. The Free Software Foundation may publish revised and/or new versions of the Lesser + General Public License from time to time. Such new versions will be similar in spirit to the present version, + but may differ in detail to address new problems or concerns.

+

Each version is given a distinguishing version number. If the Library specifies a version number of this + License which applies to it and "any later version", you have the option of following the terms and conditions + either of that version or of any later version published by the Free Software Foundation. If the Library does + not specify a license version number, you may choose any version ever published by the Free Software + Foundation.

+

14. If you wish to incorporate parts of the Library into other free programs whose + distribution conditions are incompatible with these, write to the author to ask for permission. For software + which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make + exceptions for this. Our decision will be guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse of software generally.

+

NO WARRANTY

+

15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, + TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE + RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU + ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

+

16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY + COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE + LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF + THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED + INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER + SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+

END OF TERMS AND CONDITIONS

+

How to Apply These Terms to Your New Libraries

+

If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend + making it free software that everyone can redistribute and change. You can do so by permitting redistribution + under these terms (or, alternatively, under the terms of the ordinary General Public License).

+

To apply these terms, attach the following notices to the library. It is safest to attach them to the start + of each source file to most effectively convey the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found.

+
+one line to give the library's name and an idea of what it does.
+Copyright (C) year  name of author
+
+This library 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 2.1 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  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 library; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+
+

Also add information on how to contact you by electronic and paper mail.

+

You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright + disclaimer" for the library, if necessary. Here is a sample; alter the names:

+
+Yoyodyne, Inc., hereby disclaims all copyright interest in
+the library `Frob' (a library for tweaking knobs) written
+by James Random Hacker.
+
+signature of Ty Coon, 1 April 1990
+Ty Coon, President of Vice
+
+

That's all there is to it!

+
+

GNU LIBRARY GENERAL PUBLIC LICENSE

+

Version 2, June 1991

+
+Copyright (C) 1991 Free Software Foundation, Inc.
+51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+[This is the first released version of the library GPL.  It is
+ numbered 2 because it goes with version 2 of the ordinary GPL.]
+
+

Preamble

+

The licenses for most software are designed to take away your freedom to share and change it. By contrast, + the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to + make sure the software is free for all its users.

+

This license, the Library General Public License, applies to some specially designated Free Software + Foundation software, and to any other libraries whose authors decide to use it. You can use it for your + libraries, too.

+

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are + designed to make sure that you have the freedom to distribute copies of free software (and charge for this + service if you wish), that you receive source code or can get it if you want it, that you can change the + software or use pieces of it in new free programs; and that you know you can do these things.

+

To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask + you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute + copies of the library, or if you modify it.

+

For example, if you distribute copies of the library, whether gratis or for a fee, you must give the + recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source + code. If you link a program with the library, you must provide complete object files to the recipients so that + they can relink them with the library, after making changes to the library and recompiling it. And you must + show them these terms so they know their rights.

+

Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this + license which gives you legal permission to copy, distribute and/or modify the library.

+

Also, for each distributor's protection, we want to make certain that everyone understands that there is no + warranty for this free library. If the library is modified by someone else and passed on, we want its + recipients to know that what they have is not the original version, so that any problems introduced by others + will not reflect on the original authors' reputations.

+

Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that + companies distributing free software will individually obtain patent licenses, thus in effect transforming the + program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for + everyone's free use or not licensed at all.

+

Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which + was designed for utility programs. This license, the GNU Library General Public License, applies to certain + designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and + don't assume that anything in it is the same as in the ordinary license.

+

The reason we have a separate public license for some libraries is that they blur the distinction we usually + make between modifying or adding to a program and simply using it. Linking a program with a library, without + changing the library, is in some sense simply using the library, and is analogous to running a utility program + or application program. However, in a textual and legal sense, the linked executable is a combined work, a + derivative of the original library, and the ordinary General Public License treats it as such.

+

Because of this blurred distinction, using the ordinary General Public License for libraries did not + effectively promote software sharing, because most developers did not use the libraries. We concluded that + weaker conditions might promote sharing better.

+

However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit + from the free status of the libraries themselves. This Library General Public License is intended to permit + developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs + to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards + changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) + The hope is that this will lead to faster development of free libraries.

+

The precise terms and conditions for copying, distribution and modification follow. Pay close attention to + the difference between a "work based on the library" and a "work that uses the library". The former contains + code derived from the library, while the latter only works together with the library.

+

Note that it is possible for a library to be covered by the ordinary General Public License rather than by + this special one.

+

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

+

0. This License Agreement applies to any software library which contains a notice placed by + the copyright holder or other authorized party saying it may be distributed under the terms of this Library + General Public License (also called "this License"). Each licensee is addressed as "you".

+

A "library" means a collection of software functions and/or data prepared so as to be conveniently linked + with application programs (which use some of those functions and data) to form executables.

+

The "Library", below, refers to any such software library or work which has been distributed under these + terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that + is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or + translated straightforwardly into another language. (Hereinafter, translation is included without limitation in + the term "modification".)

+

"Source code" for a work means the preferred form of the work for making modifications to it. For a library, + complete source code means all the source code for all modules it contains, plus any associated interface + definition files, plus the scripts used to control compilation and installation of the library.

+

Activities other than copying, distribution and modification are not covered by this License; they are + outside its scope. The act of running a program using the Library is not restricted, and output from such a + program is covered only if its contents constitute a work based on the Library (independent of the use of the + Library in a tool for writing it). Whether that is true depends on what the Library does and what the program + that uses the Library does.

+

1. You may copy and distribute verbatim copies of the Library's complete source code as you + receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an + appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License + and to the absence of any warranty; and distribute a copy of this License along with the Library.

+

You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty + protection in exchange for a fee.

+

2. You may modify your copy or copies of the Library or any portion of it, thus forming a + work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions:

+
    +
  • a) The modified work must itself be a software library.
  • +
  • b) You must cause the files modified to carry prominent notices stating that you + changed the files and the date of any change.
  • +
  • c) You must cause the whole of the work to be licensed at no charge to all third + parties under the terms of this License.
  • +
  • + d) If a facility in the modified Library refers to a function or a table of data to be + supplied by an application program that uses the facility, other than as an argument passed when the + facility is invoked, then you must make a good faith effort to ensure that, in the event an application + does not supply such function or table, the facility still operates, and performs whatever part of its + purpose remains meaningful. +

    (For example, a function in a library to compute square roots has a purpose that is entirely + well-defined independent of the application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must be optional: if the application does + not supply it, the square root function must still compute square roots.)

    +
  • +
+

These requirements apply to the modified work as a whole. If identifiable sections of that work are not + derived from the Library, and can be reasonably considered independent and separate works in themselves, then + this License, and its terms, do not apply to those sections when you distribute them as separate works. But + when you distribute the same sections as part of a whole which is a work based on the Library, the distribution + of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire + whole, and thus to each and every part regardless of who wrote it.

+

Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely + by you; rather, the intent is to exercise the right to control the distribution of derivative or collective + works based on the Library.

+

In addition, mere aggregation of another work not based on the Library with the Library (or with a work + based on the Library) on a volume of a storage or distribution medium does not bring the other work under the + scope of this License.

+

3. You may opt to apply the terms of the ordinary GNU General Public License instead of + this License to a given copy of the Library. To do this, you must alter all the notices that refer to this + License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. + (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can + specify that version instead if you wish.) Do not make any other change in these notices.

+

Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General + Public License applies to all subsequent copies and derivative works made from that copy.

+

This option is useful when you wish to copy part of the code of the Library into a program that is not a + library.

+

4. You may copy and distribute the Library (or a portion or derivative of it, under Section + 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it + with the complete corresponding machine-readable source code, which must be distributed under the terms of + Sections 1 and 2 above on a medium customarily used for software interchange.

+

If distribution of object code is made by offering access to copy from a designated place, then offering + equivalent access to copy the source code from the same place satisfies the requirement to distribute the + source code, even though third parties are not compelled to copy the source along with the object code.

+

5. A program that contains no derivative of any portion of the Library, but is designed to + work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a + work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this + License.

+

However, linking a "work that uses the Library" with the Library creates an executable that is a derivative + of the Library (because it contains portions of the Library), rather than a "work that uses the library". The + executable is therefore covered by this License. Section 6 states terms for distribution of such + executables.

+

When a "work that uses the Library" uses material from a header file that is part of the Library, the object + code for the work may be a derivative work of the Library even though the source code is not. Whether this is + true is especially significant if the work can be linked without the Library, or if the work is itself a + library. The threshold for this to be true is not precisely defined by law.

+

If such an object file uses only numerical parameters, data structure layouts and accessors, and small + macros and small inline functions (ten lines or less in length), then the use of the object file is + unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code + plus portions of the Library will still fall under Section 6.)

+

Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under + the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are + linked directly with the Library itself.

+

6. As an exception to the Sections above, you may also compile or link a "work that uses + the Library" with the Library to produce a work containing portions of the Library, and distribute that work + under terms of your choice, provided that the terms permit modification of the work for the customer's own use + and reverse engineering for debugging such modifications.

+

You must give prominent notice with each copy of the work that the Library is used in it and that the + Library and its use are covered by this License. You must supply a copy of this License. If the work during + execution displays copyright notices, you must include the copyright notice for the Library among them, as well + as a reference directing the user to the copy of this License. Also, you must do one of these things:

+
    +
  • a) Accompany the work with the complete corresponding machine-readable source code for + the Library including whatever changes were used in the work (which must be distributed under Sections 1 + and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable + "work that uses the Library", as object code and/or source code, so that the user can modify the Library + and then relink to produce a modified executable containing the modified Library. (It is understood that + the user who changes the contents of definitions files in the Library will not necessarily be able to + recompile the application to use the modified definitions.)
  • +
  • b) Accompany the work with a written offer, valid for at least three years, to give + the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of + performing this distribution.
  • +
  • c) If distribution of the work is made by offering access to copy from a designated + place, offer equivalent access to copy the above specified materials from the same place.
  • +
  • d) Verify that the user has already received a copy of these materials or that you + have already sent this user a copy.
  • +
+

For an executable, the required form of the "work that uses the Library" must include any data and utility + programs needed for reproducing the executable from it. However, as a special exception, the source code + distributed need not include anything that is normally distributed (in either source or binary form) with the + major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless + that component itself accompanies the executable.

+

It may happen that this requirement contradicts the license restrictions of other proprietary libraries that + do not normally accompany the operating system. Such a contradiction means you cannot use both them and the + Library together in an executable that you distribute.

+

7. You may place library facilities that are a work based on the Library side-by-side in a + single library together with other library facilities not covered by this License, and distribute such a + combined library, provided that the separate distribution of the work based on the Library and of the other + library facilities is otherwise permitted, and provided that you do these two things:

+
    +
  • a) Accompany the combined library with a copy of the same work based on the Library, + uncombined with any other library facilities. This must be distributed under the terms of the Sections + above.
  • +
  • b) Give prominent notice with the combined library of the fact that part of it is a + work based on the Library, and explaining where to find the accompanying uncombined form of the same + work.
  • +
+

8. You may not copy, modify, sublicense, link with, or distribute the Library except as + expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or + distribute the Library is void, and will automatically terminate your rights under this License. However, + parties who have received copies, or rights, from you under this License will not have their licenses + terminated so long as such parties remain in full compliance.

+

9. You are not required to accept this License, since you have not signed it. However, + nothing else grants you permission to modify or distribute the Library or its derivative works. These actions + are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library + (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms + and conditions for copying, distributing or modifying the Library or works based on it.

+

10. Each time you redistribute the Library (or any work based on the Library), the + recipient automatically receives a license from the original licensor to copy, distribute, link with or modify + the Library subject to these terms and conditions. You may not impose any further restrictions on the + recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third + parties to this License.

+

11. If, as a consequence of a court judgment or allegation of patent infringement or for + any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, + agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the + conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a consequence you may not distribute the Library at + all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those + who receive copies directly or indirectly through you, then the only way you could satisfy both it and this + License would be to refrain entirely from distribution of the Library.

+

If any portion of this section is held invalid or unenforceable under any particular circumstance, the + balance of the section is intended to apply, and the section as a whole is intended to apply in other + circumstances.

+

It is not the purpose of this section to induce you to infringe any patents or other property right claims + or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the + free software distribution system which is implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed through that system in reliance on consistent + application of that system; it is up to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that choice.

+

This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this + License.

+

12. If the distribution and/or use of the Library is restricted in certain countries either + by patents or by copyrighted interfaces, the original copyright holder who places the Library under this + License may add an explicit geographical distribution limitation excluding those countries, so that + distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates + the limitation as if written in the body of this License.

+

13. The Free Software Foundation may publish revised and/or new versions of the Library + General Public License from time to time. Such new versions will be similar in spirit to the present version, + but may differ in detail to address new problems or concerns.

+

Each version is given a distinguishing version number. If the Library specifies a version number of this + License which applies to it and "any later version", you have the option of following the terms and conditions + either of that version or of any later version published by the Free Software Foundation. If the Library does + not specify a license version number, you may choose any version ever published by the Free Software + Foundation.

+

14. If you wish to incorporate parts of the Library into other free programs whose + distribution conditions are incompatible with these, write to the author to ask for permission. For software + which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make + exceptions for this. Our decision will be guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse of software generally.

+

NO WARRANTY

+

15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, + TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE + RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU + ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

+

16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY + COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE + LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF + THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED + INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER + SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+

END OF TERMS AND CONDITIONS

+

How to Apply These Terms to Your New Libraries

+

If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend + making it free software that everyone can redistribute and change. You can do so by permitting redistribution + under these terms (or, alternatively, under the terms of the ordinary General Public License).

+

To apply these terms, attach the following notices to the library. It is safest to attach them to the start + of each source file to most effectively convey the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found.

+
+one line to give the library's name and an idea of what it does.
+Copyright (C) year  name of author
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+Boston, MA  02110-1301, USA.
+
+

Also add information on how to contact you by electronic and paper mail.

+

You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright + disclaimer" for the library, if necessary. Here is a sample; alter the names:

+
+Yoyodyne, Inc., hereby disclaims all copyright interest in
+the library `Frob' (a library for tweaking knobs) written
+by James Random Hacker.
+
+signature of Ty Coon, 1 April 1990
+Ty Coon, President of Vice
+
+

That's all there is to it!

+
+

GNU GENERAL PUBLIC LICENSE

+

Version 3, 29 June 2007

+

Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>

+

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is + not allowed.

+

Preamble

+

The GNU General Public License is a free, copyleft license for software and other kinds of works.

+

The licenses for most software and other practical works are designed to take away your freedom to share and + change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share + and change all versions of a program--to make sure it remains free software for all its users. We, the Free + Software Foundation, use the GNU General Public License for most of our software; it applies also to any other + work released this way by its authors. You can apply it to your programs, too.

+

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are + designed to make sure that you have the freedom to distribute copies of free software (and charge for them if + you wish), that you receive source code or can get it if you want it, that you can change the software or use + pieces of it in new free programs, and that you know you can do these things.

+

To protect your rights, we need to prevent others from denying you these rights or asking you to surrender + the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you + modify it: responsibilities to respect the freedom of others.

+

For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to + the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the + source code. And you must show them these terms so they know their rights.

+

Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, + and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.

+

For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this + free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, + so that their problems will not be attributed erroneously to authors of previous versions.

+

Some devices are designed to deny users access to install or run modified versions of the software inside + them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' + freedom to change the software. The systematic pattern of such abuse occurs in the area of products for + individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version + of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, + we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect + the freedom of users.

+

Finally, every program is threatened constantly by software patents. States should not allow patents to + restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid + the special danger that patents applied to a free program could make it effectively proprietary. To prevent + this, the GPL assures that patents cannot be used to render the program non-free.

+

The precise terms and conditions for copying, distribution and modification follow.

+

TERMS AND CONDITIONS

+

0. Definitions.

+

“This License” refers to version 3 of the GNU General Public License.

+

“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor + masks.

+

“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed + as “you”. “Licensees” and “recipients” may be individuals or organizations.

+

To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright + permission, other than the making of an exact copy. The resulting work is called a “modified version” of + the earlier work or a work “based on” the earlier work.

+

A “covered work” means either the unmodified Program or a work based on the Program.

+

To “propagate” a work means to do anything with it that, without permission, would make you directly or + secondarily liable for infringement under applicable copyright law, except executing it on a computer or + modifying a private copy. Propagation includes copying, distribution (with or without modification), making + available to the public, and in some countries other activities as well.

+

To “convey” a work means any kind of propagation that enables other parties to make or receive copies. + Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.

+

An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a + convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the + user that there is no warranty for the work (except to the extent that warranties are provided), that licensees + may convey the work under this License, and how to view a copy of this License. If the interface presents a + list of user commands or options, such as a menu, a prominent item in the list meets this criterion.

+

1. Source Code.

+

The “source code” for a work means the preferred form of the work for making modifications to it. + “Object code” means any non-source form of a work.

+

A “Standard Interface” means an interface that either is an official standard defined by a recognized + standards body, or, in the case of interfaces specified for a particular programming language, one that is + widely used among developers working in that language.

+

The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) + is included in the normal form of packaging a Major Component, but which is not part of that Major Component, + and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface + for which an implementation is available to the public in source code form. A “Major Component”, in this + context, means a major essential component (kernel, window system, and so on) of the specific operating system + (if any) on which the executable work runs, or a compiler used to produce the work, or an object code + interpreter used to run it.

+

The “Corresponding Source” for a work in object code form means all the source code needed to generate, + install, and (for an executable work) run the object code and to modify the work, including scripts to control + those activities. However, it does not include the work's System Libraries, or general-purpose tools or + generally available free programs which are used unmodified in performing those activities but which are not + part of the work. For example, Corresponding Source includes interface definition files associated with source + files for the work, and the source code for shared libraries and dynamically linked subprograms that the work + is specifically designed to require, such as by intimate data communication or control flow between those + subprograms and other parts of the work.

+

The Corresponding Source need not include anything that users can regenerate automatically from other parts + of the Corresponding Source.

+

The Corresponding Source for a work in source code form is that same work.

+

2. Basic Permissions.

+

All rights granted under this License are granted for the term of copyright on the Program, and are + irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission + to run the unmodified Program. The output from running a covered work is covered by this License only if the + output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or + other equivalent, as provided by copyright law.

+

You may make, run and propagate covered works that you do not convey, without conditions so long as your + license otherwise remains in force. You may convey covered works to others for the sole purpose of having them + make modifications exclusively for you, or provide you with facilities for running those works, provided that + you comply with the terms of this License in conveying all material for which you do not control copyright. + Those thus making or running the covered works for you must do so exclusively on your behalf, under your + direction and control, on terms that prohibit them from making any copies of your copyrighted material outside + their relationship with you.

+

Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing + is not allowed; section 10 makes it unnecessary.

+

3. Protecting Users' Legal Rights From Anti-Circumvention Law.

+

No covered work shall be deemed part of an effective technological measure under any applicable law + fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar + laws prohibiting or restricting circumvention of such measures.

+

When you convey a covered work, you waive any legal power to forbid circumvention of technological measures + to the extent such circumvention is effected by exercising rights under this License with respect to the + covered work, and you disclaim any intention to limit operation or modification of the work as a means of + enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of + technological measures.

+

4. Conveying Verbatim Copies.

+

You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all + notices stating that this License and any non-permissive terms added in accord with section 7 apply to the + code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License + along with the Program.

+

You may charge any price or no price for each copy that you convey, and you may offer support or warranty + protection for a fee.

+

5. Conveying Modified Source Versions.

+

You may convey a work based on the Program, or the modifications to produce it from the Program, in the form + of source code under the terms of section 4, provided that you also meet all of these conditions:

+
    +
  • a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
  • +
  • b) The work must carry prominent notices stating that it is released under this License and any + conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact + all notices”.
  • +
  • c) You must license the entire work, as a whole, under this License to anyone who comes into possession + of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the + whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission + to license the work in any other way, but it does not invalidate such permission if you have separately + received it.
  • +
  • d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, + if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not + make them do so.
  • +
+

A compilation of a covered work with other separate and independent works, which are not by their nature + extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a + volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting + copyright are not used to limit the access or legal rights of the compilation's users beyond what the + individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to + the other parts of the aggregate.

+

6. Conveying Non-Source Forms.

+

You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you + also convey the machine-readable Corresponding Source under the terms of this License, in one of these + ways:

+
    +
  • a) Convey the object code in, or embodied in, a physical product (including a physical distribution + medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for + software interchange.
  • +
  • b) Convey the object code in, or embodied in, a physical product (including a physical distribution + medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer + spare parts or customer support for that product model, to give anyone who possesses the object code either + (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, + on a durable physical medium customarily used for software interchange, for a price no more than your + reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding + Source from a network server at no charge.
  • +
  • c) Convey individual copies of the object code with a copy of the written offer to provide the + Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you + received the object code with such an offer, in accord with subsection 6b.
  • +
  • d) Convey the object code by offering access from a designated place (gratis or for a charge), and + offer equivalent access to the Corresponding Source in the same way through the same place at no further + charge. You need not require recipients to copy the Corresponding Source along with the object code. If the + place to copy the object code is a network server, the Corresponding Source may be on a different server + (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear + directions next to the object code saying where to find the Corresponding Source. Regardless of what server + hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed + to satisfy these requirements.
  • +
  • e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the + object code and Corresponding Source of the work are being offered to the general public at no charge under + subsection 6d.
  • +
+

A separable portion of the object code, whose source code is excluded from the Corresponding Source as a + System Library, need not be included in conveying the object code work.

+

A “User Product” is either (1) a “consumer product”, which means any tangible personal property + which is normally used for personal, family, or household purposes, or (2) anything designed or sold for + incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be + resolved in favor of coverage. For a particular product received by a particular user, “normally used” + refers to a typical or common use of that class of product, regardless of the status of the particular user or + of the way in which the particular user actually uses, or expects or is expected to use, the product. A product + is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer + uses, unless such uses represent the only significant mode of use of the product.

+

“Installation Information” for a User Product means any methods, procedures, authorization keys, or + other information required to install and execute modified versions of a covered work in that User Product from + a modified version of its Corresponding Source. The information must suffice to ensure that the continued + functioning of the modified object code is in no case prevented or interfered with solely because modification + has been made.

+

If you convey an object code work under this section in, or with, or specifically for use in, a User + Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User + Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is + characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation + Information. But this requirement does not apply if neither you nor any third party retains the ability to + install modified object code on the User Product (for example, the work has been installed in ROM).

+

The requirement to provide Installation Information does not include a requirement to continue to provide + support service, warranty, or updates for a work that has been modified or installed by the recipient, or for + the User Product in which it has been modified or installed. Access to a network may be denied when the + modification itself materially and adversely affects the operation of the network or violates the rules and + protocols for communication across the network.

+

Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in + a format that is publicly documented (and with an implementation available to the public in source code form), + and must require no special password or key for unpacking, reading or copying.

+

7. Additional Terms.

+

“Additional permissions” are terms that supplement the terms of this License by making exceptions from + one or more of its conditions. Additional permissions that are applicable to the entire Program shall be + treated as though they were included in this License, to the extent that they are valid under applicable law. + If additional permissions apply only to part of the Program, that part may be used separately under those + permissions, but the entire Program remains governed by this License without regard to the additional + permissions.

+

When you convey a copy of a covered work, you may at your option remove any additional permissions from that + copy, or from any part of it. (Additional permissions may be written to require their own removal in certain + cases when you modify the work.) You may place additional permissions on material, added by you to a covered + work, for which you have or can give appropriate copyright permission.

+

Notwithstanding any other provision of this License, for material you add to a covered work, you may (if + authorized by the copyright holders of that material) supplement the terms of this License with terms:

+
    +
  • a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this + License; or
  • +
  • b) Requiring preservation of specified reasonable legal notices or author attributions in that material + or in the Appropriate Legal Notices displayed by works containing it; or
  • +
  • c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of + such material be marked in reasonable ways as different from the original version; or
  • +
  • d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
  • +
  • e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service + marks; or
  • +
  • f) Requiring indemnification of licensors and authors of that material by anyone who conveys the + material (or modified versions of it) with contractual assumptions of liability to the recipient, for any + liability that these contractual assumptions directly impose on those licensors and authors.
  • +
+

All other non-permissive additional terms are considered “further restrictions” within the meaning of + section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed + by this License along with a term that is a further restriction, you may remove that term. If a license + document contains a further restriction but permits relicensing or conveying under this License, you may add to + a covered work material governed by the terms of that license document, provided that the further restriction + does not survive such relicensing or conveying.

+

If you add terms to a covered work in accord with this section, you must place, in the relevant source + files, a statement of the additional terms that apply to those files, or a notice indicating where to find the + applicable terms.

+

Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, + or stated as exceptions; the above requirements apply either way.

+

8. Termination.

+

You may not propagate or modify a covered work except as expressly provided under this License. Any attempt + otherwise to propagate or modify it is void, and will automatically terminate your rights under this License + (including any patent licenses granted under the third paragraph of section 11).

+

However, if you cease all violation of this License, then your license from a particular copyright holder is + reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your + license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable + means prior to 60 days after the cessation.

+

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder + notifies you of the violation by some reasonable means, this is the first time you have received notice of + violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 + days after your receipt of the notice.

+

Termination of your rights under this section does not terminate the licenses of parties who have received + copies or rights from you under this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same material under section 10.

+

9. Acceptance Not Required for Having Copies.

+

You are not required to accept this License in order to receive or run a copy of the Program. Ancillary + propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a + copy likewise does not require acceptance. However, nothing other than this License grants you permission to + propagate or modify any covered work. These actions infringe copyright if you do not accept this License. + Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do + so.

+

10. Automatic Licensing of Downstream Recipients.

+

Each time you convey a covered work, the recipient automatically receives a license from the original + licensors, to run, modify and propagate that work, subject to this License. You are not responsible for + enforcing compliance by third parties with this License.

+

An “entity transaction” is a transaction transferring control of an organization, or substantially all + assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work + results from an entity transaction, each party to that transaction who receives a copy of the work also + receives whatever licenses to the work the party's predecessor in interest had or could give under the previous + paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, + if the predecessor has it or can get it with reasonable efforts.

+

You may not impose any further restrictions on the exercise of the rights granted or affirmed under this + License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted + under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) + alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the + Program or any portion of it.

+

11. Patents.

+

A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on + which the Program is based. The work thus licensed is called the contributor's “contributor version”.

+

A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, + whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this + License, of making, using, or selling its contributor version, but do not include claims that would be + infringed only as a consequence of further modification of the contributor version. For purposes of this + definition, “control” includes the right to grant patent sublicenses in a manner consistent with the + requirements of this License.

+

Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's + essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the + contents of its contributor version.

+

In the following three paragraphs, a “patent license” is any express agreement or commitment, however + denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue + for patent infringement). To “grant” such a patent license to a party means to make such an agreement or + commitment not to enforce a patent against the party.

+

If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the + work is not available for anyone to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, then you must either (1) cause the + Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent + license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, + to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge + that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the + covered work in a country, would infringe one or more identifiable patents in that country that you have reason + to believe are valid.

+

If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by + procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the + covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the + patent license you grant is automatically extended to all recipients of the covered work and works based on + it.

+

A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits + the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically + granted under this License. You may not convey a covered work if you are a party to an arrangement with a third + party that is in the business of distributing software, under which you make payment to the third party based + on the extent of your activity of conveying the work, and under which the third party grants, to any of the + parties who would receive the covered work from you, a discriminatory patent license (a) in connection with + copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in + connection with specific products or compilations that contain the covered work, unless you entered into that + arrangement, or that patent license was granted, prior to 28 March 2007.

+

Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to + infringement that may otherwise be available to you under applicable patent law.

+

12. No Surrender of Others' Freedom.

+

If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the + conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under this License and any other pertinent + obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that + obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way + you could satisfy both those terms and this License would be to refrain entirely from conveying the + Program.

+

13. Use with the GNU Affero General Public License.

+

Notwithstanding any other provision of this License, you have permission to link or combine any covered work + with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and + to convey the resulting work. The terms of this License will continue to apply to the part which is the covered + work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction + through a network will apply to the combination as such.

+

14. Revised Versions of this License.

+

The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from + time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to + address new problems or concerns.

+

Each version is given a distinguishing version number. If the Program specifies that a certain numbered + version of the GNU General Public License “or any later version” applies to it, you have the option of + following the terms and conditions either of that numbered version or of any later version published by the + Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, + you may choose any version ever published by the Free Software Foundation.

+

If the Program specifies that a proxy can decide which future versions of the GNU General Public License can + be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that + version for the Program.

+

Later license versions may give you additional or different permissions. However, no additional obligations + are imposed on any author or copyright holder as a result of your choosing to follow a later version.

+

15. Disclaimer of Warranty.

+

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE + STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE + PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR + OR CORRECTION.

+

16. Limitation of Liability.

+

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY + OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING + ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU + OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER + PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+

17. Interpretation of Sections 15 and 16.

+

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect + according to their terms, reviewing courts shall apply local law that most closely approximates an absolute + waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability + accompanies a copy of the Program in return for a fee.

+

END OF TERMS AND CONDITIONS

+

How to Apply These Terms to Your New Programs

+

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way + to achieve this is to make it free software which everyone can redistribute and change under these terms.

+

To do so, attach the following notices to the program. It is safest to attach them to the start of each + source file to most effectively state the exclusion of warranty; and each file should have at least the + “copyright” line and a pointer to where the full notice is found.

+
    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+

Also add information on how to contact you by electronic and paper mail.

+

If the program does terminal interaction, make it output a short notice like this when it starts in an + interactive mode:

+
    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+

The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public + License. Of course, your program's commands might be different; for a GUI interface, you would use an “about + box”.

+

You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright + disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU + GPL, see <https://www.gnu.org/licenses/>.

+

The GNU General Public License does not permit incorporating your program into proprietary programs. If your + program is a subroutine library, you may consider it more useful to permit linking proprietary applications + with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this + License. But first, please read <https://www.gnu.org/licenses/why-not-lgpl.html>.

+
+

GNU GENERAL PUBLIC LICENSE

+

Version 2, June 1991

+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+

Preamble

+

The licenses for most software are designed to take away your freedom to share and change it. By contrast, + the GNU General Public License is intended to guarantee your freedom to share and change free software--to make + sure the software is free for all its users. This General Public License applies to most of the Free Software + Foundation's software and to any other program whose authors commit to using it. (Some other Free Software + Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your + programs, too.

+

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are + designed to make sure that you have the freedom to distribute copies of free software (and charge for this + service if you wish), that you receive source code or can get it if you want it, that you can change the + software or use pieces of it in new free programs; and that you know you can do these things.

+

To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask + you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute + copies of the software, or if you modify it.

+

For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the + recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. + And you must show them these terms so they know their rights.

+

We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which + gives you legal permission to copy, distribute and/or modify the software.

+

Also, for each author's protection and ours, we want to make certain that everyone understands that there is + no warranty for this free software. If the software is modified by someone else and passed on, we want its + recipients to know that what they have is not the original, so that any problems introduced by others will not + reflect on the original authors' reputations.

+

Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that + redistributors of a free program will individually obtain patent licenses, in effect making the program + proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or + not licensed at all.

+

The precise terms and conditions for copying, distribution and modification follow.

+

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

+

0. This License applies to any program or other work which contains a notice placed by the + copyright holder saying it may be distributed under the terms of this General Public License. The "Program", + below, refers to any such program or work, and a "work based on the Program" means either the Program or any + derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either + verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included + without limitation in the term "modification".) Each licensee is addressed as "you".

+

Activities other than copying, distribution and modification are not covered by this License; they are + outside its scope. The act of running the Program is not restricted, and the output from the Program is covered + only if its contents constitute a work based on the Program (independent of having been made by running the + Program). Whether that is true depends on what the Program does.

+

1. You may copy and distribute verbatim copies of the Program's source code as you receive + it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate + copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the + absence of any warranty; and give any other recipients of the Program a copy of this License along with the + Program.

+

You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty + protection in exchange for a fee.

+

2. You may modify your copy or copies of the Program or any portion of it, thus forming a + work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions:

+
+
a) You must cause the modified files to carry prominent notices stating that you + changed the files and the date of any change.
+
b) You must cause any work that you distribute or publish, that in whole or in part + contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all + third parties under the terms of this License.
+
c) If the modified program normally reads commands interactively when run, you must + cause it, when started running for such interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a notice that there is no warranty (or else, + saying that you provide a warranty) and that users may redistribute the program under these conditions, and + telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on the Program is not required to print an + announcement.)
+
+

These requirements apply to the modified work as a whole. If identifiable sections of that work are not + derived from the Program, and can be reasonably considered independent and separate works in themselves, then + this License, and its terms, do not apply to those sections when you distribute them as separate works. But + when you distribute the same sections as part of a whole which is a work based on the Program, the distribution + of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire + whole, and thus to each and every part regardless of who wrote it.

+

Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely + by you; rather, the intent is to exercise the right to control the distribution of derivative or collective + works based on the Program.

+

In addition, mere aggregation of another work not based on the Program with the Program (or with a work + based on the Program) on a volume of a storage or distribution medium does not bring the other work under the + scope of this License.

+

3. You may copy and distribute the Program (or a work based on it, under Section 2) in + object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the + following:

+
+
a) Accompany it with the complete corresponding machine-readable source code, which + must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software + interchange; or,
+
b) Accompany it with a written offer, valid for at least three years, to give any + third party, for a charge no more than your cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and + 2 above on a medium customarily used for software interchange; or,
+
c) Accompany it with the information you received as to the offer to distribute + corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such an offer, in accord with Subsection b + above.)
+
+

The source code for a work means the preferred form of the work for making modifications to it. For an + executable work, complete source code means all the source code for all modules it contains, plus any + associated interface definition files, plus the scripts used to control compilation and installation of the + executable. However, as a special exception, the source code distributed need not include anything that is + normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) + of the operating system on which the executable runs, unless that component itself accompanies the + executable.

+

If distribution of executable or object code is made by offering access to copy from a designated place, + then offering equivalent access to copy the source code from the same place counts as distribution of the + source code, even though third parties are not compelled to copy the source along with the object code.

+

4. You may not copy, modify, sublicense, or distribute the Program except as expressly + provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is + void, and will automatically terminate your rights under this License. However, parties who have received + copies, or rights, from you under this License will not have their licenses terminated so long as such parties + remain in full compliance.

+

5. You are not required to accept this License, since you have not signed it. However, + nothing else grants you permission to modify or distribute the Program or its derivative works. These actions + are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program + (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms + and conditions for copying, distributing or modifying the Program or works based on it.

+

6. Each time you redistribute the Program (or any work based on the Program), the recipient + automatically receives a license from the original licensor to copy, distribute or modify the Program subject + to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the + rights granted herein. You are not responsible for enforcing compliance by third parties to this License.

+

7. If, as a consequence of a court judgment or allegation of patent infringement or for any + other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement + or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of + this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and + any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, + if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies + directly or indirectly through you, then the only way you could satisfy both it and this License would be to + refrain entirely from distribution of the Program.

+

If any portion of this section is held invalid or unenforceable under any particular circumstance, the + balance of the section is intended to apply and the section as a whole is intended to apply in other + circumstances.

+

It is not the purpose of this section to induce you to infringe any patents or other property right claims + or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the + free software distribution system, which is implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed through that system in reliance on consistent + application of that system; it is up to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that choice.

+

This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this + License.

+

8. If the distribution and/or use of the Program is restricted in certain countries either + by patents or by copyrighted interfaces, the original copyright holder who places the Program under this + License may add an explicit geographical distribution limitation excluding those countries, so that + distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates + the limitation as if written in the body of this License.

+

9. The Free Software Foundation may publish revised and/or new versions of the General + Public License from time to time. Such new versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns.

+

Each version is given a distinguishing version number. If the Program specifies a version number of this + License which applies to it and "any later version", you have the option of following the terms and conditions + either of that version or of any later version published by the Free Software Foundation. If the Program does + not specify a version number of this License, you may choose any version ever published by the Free Software + Foundation.

+

10. If you wish to incorporate parts of the Program into other free programs whose + distribution conditions are different, write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make + exceptions for this. Our decision will be guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse of software generally.

+

NO WARRANTY

+

11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, + TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE + RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU + ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

+

12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY + COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE + LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF + THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED + INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER + PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+

END OF TERMS AND CONDITIONS

+

How to Apply These Terms to Your New Programs

+

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way + to achieve this is to make it free software which everyone can redistribute and change under these terms.

+

To do so, attach the following notices to the program. It is safest to attach them to the start of each + source file to most effectively convey the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found.

+
+one line to give the program's name and an idea of what it does.
+Copyright (C) yyyy  name of author
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+
+

Also add information on how to contact you by electronic and paper mail.

+

If the program is interactive, make it output a short notice like this when it starts in an interactive + mode:

+
+Gnomovision version 69, Copyright (C) year name of author
+Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
+type `show w'.  This is free software, and you are welcome
+to redistribute it under certain conditions; type `show c'
+for details.
+
+

The hypothetical commands `show w' and `show c' should show the appropriate parts + of the General Public License. Of course, the commands you use may be called something other than `show + w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your + program.

+

You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright + disclaimer" for the program, if necessary. Here is a sample; alter the names:

+
+Yoyodyne, Inc., hereby disclaims all copyright
+interest in the program `Gnomovision'
+(which makes passes at compilers) written
+by James Hacker.
+
+signature of Ty Coon, 1 April 1989
+Ty Coon, President of Vice
+
+

This General Public License does not permit incorporating your program into proprietary programs. If your + program is a subroutine library, you may consider it more useful to permit linking proprietary applications + with the library. If this is what you want to do, use the GNU + Lesser General Public License instead of this License.

+
+
+
+

Common Public License Version 1.0 (CPL)

+

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY + USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

+

1. DEFINITIONS

+

"Contribution" means:

+
+

a) in the case of the initial Contributor, the initial code and documentation distributed under this + Agreement, and

+

b) in the case of each subsequent Contributor:

+

i) changes to the Program, and

+

ii) additions to the Program;

+

where such changes and/or additions to the Program originate from and are distributed by that + particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by + such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include + additions to the Program which: (i) are separate modules of software distributed in conjunction with the + Program under their own license agreement, and (ii) are not derivative works of the Program.

+
+

"Contributor" means any person or entity that distributes the Program.

+

"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by + the use or sale of its Contribution alone or when combined with the Program.

+

"Program" means the Contributions distributed in accordance with this Agreement.

+

"Recipient" means anyone who receives the Program under this Agreement, including all + Contributors.

+

2. GRANT OF RIGHTS

+
+

a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, + worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, + publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such + derivative works, in source code and object code form.

+

b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, + worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and + otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This + patent license shall apply to the combination of the Contribution and the Program if, at the time the + Contribution is added by the Contributor, such addition of the Contribution causes such combination to be + covered by the Licensed Patents. The patent license shall not apply to any other combinations which include + the Contribution. No hardware per se is licensed hereunder.

+

c) Recipient understands that although each Contributor grants the licenses to its Contributions set + forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent + or other intellectual property rights of any other entity. Each Contributor disclaims any liability to + Recipient for claims brought by any other entity based on infringement of intellectual property rights or + otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby + assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, + if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's + responsibility to acquire that license before distributing the Program.

+

d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its + Contribution, if any, to grant the copyright license set forth in this Agreement.

+
+

3. REQUIREMENTS

+

A Contributor may choose to distribute the Program in object code form under its own license agreement, + provided that:

+
+

a) it complies with the terms and conditions of this Agreement; and

+

b) its license agreement:

+

i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and + implied, including warranties or conditions of title and non-infringement, and implied warranties or + conditions of merchantability and fitness for a particular purpose;

+

ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, + indirect, special, incidental and consequential damages, such as lost profits;

+

iii) states that any provisions which differ from this Agreement are offered by that Contributor + alone and not by any other party; and

+

iv) states that source code for the Program is available from such Contributor, and informs + licensees how to obtain it in a reasonable manner on or through a medium customarily used for software + exchange.

+
+

When the Program is made available in source code form:

+
+

a) it must be made available under this Agreement; and

+

b) a copy of this Agreement must be included with each copy of the Program.

+
+

Contributors may not remove or alter any copyright notices contained within the Program.

+

Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that + reasonably allows subsequent Recipients to identify the originator of the Contribution.

+

4. COMMERCIAL DISTRIBUTION

+

Commercial distributors of software may accept certain responsibilities with respect to end users, + business partners and the like. While this license is intended to facilitate the commercial use of the Program, + the Contributor who includes the Program in a commercial product offering should do so in a manner which does + not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a + commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify + every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively + "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the + Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in + connection with its distribution of the Program in a commercial product offering. The obligations in this + section do not apply to any claims or Losses relating to any actual or alleged intellectual property + infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial + Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with + the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor + may participate in any such claim at its own expense.

+

For example, a Contributor might include the Program in a commercial product offering, Product X. That + Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or + offers warranties related to Product X, those performance claims and warranties are such Commercial + Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims + against the other Contributors related to those performance claims and warranties, and if a court requires any + other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

+

5. NO WARRANTY

+

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES + OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient + is solely responsible for determining the appropriateness of using and distributing the Program and assumes all + risks associated with its exercise of rights under this Agreement, including but not limited to the risks and + costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and + unavailability or interruption of operations.

+

6. DISCLAIMER OF LIABILITY

+

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY + LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT + LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR + THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+

7. GENERAL

+

If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect + the validity or enforceability of the remainder of the terms of this Agreement, and without further action by + the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision + valid and enforceable.

+

If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to + software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that + Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In + addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim + in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or + hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall + terminate as of the date such litigation is filed.

+

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the + material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time + after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient + agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's + obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue + and survive.

+

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid + inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement + Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. + No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement + Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. + Each new version of the Agreement will be given a distinguishing version number. The Program (including + Contributions) may always be distributed subject to the version of the Agreement under which it was received. + In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program + (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) + above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this + Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly + granted under this Agreement are reserved.

+

This Agreement is governed by the laws of the State of New York and the intellectual property laws of + the United States of America. No party to this Agreement will bring a legal action under this Agreement more + than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting + litigation.

+
+
+

Mozilla Public License Version 1.1

+

1. Definitions.

+
+
1.0.1. "Commercial Use"
+
means distribution or otherwise making the Covered Code available to a third party.
+
1.1. "Contributor"
+
means each entity that creates or contributes to the creation of Modifications.
+
1.2. "Contributor Version"
+
means the combination of the Original Code, prior Modifications used by a Contributor, and the + Modifications made by that particular Contributor.
+
1.3. "Covered Code"
+
means the Original Code or Modifications or the combination of the Original Code and Modifications, in each + case including portions thereof.
+
1.4. "Electronic Distribution Mechanism"
+
means a mechanism generally accepted in the software development community for the electronic transfer of + data.
+
1.5. "Executable"
+
means Covered Code in any form other than Source Code.
+
1.6. "Initial Developer"
+
means the individual or entity identified as the Initial Developer in the Source Code notice required by + Exhibit A.
+
1.7. "Larger Work"
+
means a work which combines Covered Code or portions thereof with code not governed by the terms of this + License.
+
1.8. "License"
+
means this document.
+
1.8.1. "Licensable"
+
means having the right to grant, to the maximum extent possible, whether at the time of the initial grant + or subsequently acquired, any and all of the rights conveyed herein.
+
1.9. "Modifications"
+
+

means any addition to or deletion from the substance or structure of either the Original Code or any + previous Modifications. When Covered Code is released as a series of files, a Modification is:

+
    +
  1. Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications.
  2. +
  3. Any new file that contains any part of the Original Code or previous + Modifications.
  4. +
+
+
1.10. "Original Code"
+
means Source Code of computer software code which is described in the Source Code notice required by + Exhibit A as Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License.
+
1.10.1. "Patent Claims"
+
means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, + and apparatus claims, in any patent Licensable by grantor.
+
1.11. "Source Code"
+
means the preferred form of the Covered Code for making modifications to it, including all modules it + contains, plus any associated interface definition files, scripts used to control compilation and installation + of an Executable, or source code differential comparisons against either the Original Code or another well + known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival + form, provided the appropriate decompression or de-archiving software is widely available for no charge.
+
1.12. "You" (or "Your")
+
means an individual or a legal entity exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. For + legal entities, "You" includes any entity which controls, is controlled by, or is under common control with + You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction + or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such entity.
+
+

2. Source Code License.

+

2.1. The Initial Developer Grant.

+

The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third + party intellectual property claims:

+
    +
  1. under intellectual property rights (other than patent or trademark) Licensable + by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code + (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and
  2. +
  3. under Patents Claims infringed by the making, using or selling of Original + Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original + Code (or portions thereof).
  4. +
  5. the licenses granted in this Section 2.1 (a) and (b) are effective on the date + Initial Developer first distributes Original Code under the terms of this License.
  6. +
  7. Notwithstanding Section 2.1 (b) above, + no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original + Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the + Original Code with other software or devices.
  8. +
+

2.2. Contributor Grant.

+

Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, + royalty-free, non-exclusive license

+
    +
  1. under intellectual property rights (other than patent or trademark) Licensable + by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as + Covered Code and/or as part of a Larger Work; and
  2. +
  3. under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or + portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) + Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions of such combination).
  4. +
  5. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective on the date + Contributor first makes Commercial Use of the Covered Code.
  6. +
  7. Notwithstanding Section 2.2 (b) above, + no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) + separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made by that Contributor with other software + (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered + Code in the absence of Modifications made by that Contributor.
  8. +
+

3. Distribution Obligations.

+

3.1. Application of License.

+

The Modifications which You create or to which You contribute are governed by the terms of this License, + including without limitation Section 2.2. The Source Code version of Covered + Code may be distributed only under the terms of this License or a future version of this License released under + Section 6.1, and You must include a copy of this License with every copy of + the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or + restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an + additional document offering the additional rights described in Section 3.5.

+

3.2. Availability of Source Code.

+

Any Modification which You create or to which You contribute must be made available in Source Code form under + the terms of this License either on the same media as an Executable version or via an accepted Electronic + Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via + Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it + initially became available, or at least six (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for ensuring that the Source Code version remains + available even if the Electronic Distribution Mechanism is maintained by a third party.

+

3.3. Description of Modifications.

+

You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to + create that Covered Code and the date of any change. You must include a prominent statement that the Modification + is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of + the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related + documentation in which You describe the origin or ownership of the Covered Code.

+

3.4. Intellectual Property Matters

+

(a) Third Party Claims

+

If Contributor has knowledge that a license under a third party's intellectual property rights is required to + exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled + "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know + whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in + Section 3.2, Contributor shall promptly modify the LEGAL file in all copies + Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or + newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been + obtained.

+

(b) Contributor APIs

+

If Contributor's Modifications include an application programming interface and Contributor has knowledge of + patent licenses which are reasonably necessary to implement that API, Contributor must also include + this information in the legal file.

+

(c) Representations.

+

Contributor represents that, except as disclosed pursuant to Section 3.4 (a) above, Contributor believes that Contributor's Modifications are Contributor's + original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License.

+

3.5. Required Notices.

+

You must duplicate the notice in Exhibit A in each file of the Source Code. + If it is not possible to put such notice in a particular Source Code file due to its structure, then You must + include such notice in a location (such as a relevant directory) where a user would be likely to look for such a + notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described + in Exhibit A. You must also duplicate this License in any documentation for the + Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to + offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of + Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any + Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation + is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any + liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or + liability terms You offer.

+

3.6. Distribution of Executable Versions.

+

You may distribute Covered Code in Executable form only if the requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for that Covered Code, and if You include a notice stating that the + Source Code version of the Covered Code is available under the terms of this License, including a description of + how and where You have fulfilled the obligations of Section 3.2. The notice + must be conspicuously included in any notice in an Executable version, related documentation or collateral in which + You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may contain terms different from this License, + provided that You are in compliance with the terms of this License and that the license for the Executable version + does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in + this License. If You distribute the Executable version under a different license You must make it absolutely clear + that any terms which differ from this License are offered by You alone, not by the Initial Developer or any + Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred + by the Initial Developer or such Contributor as a result of any such terms You offer.

+

3.7. Larger Works.

+

You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License + and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this + License are fulfilled for the Covered Code.

+

4. Inability to Comply Due to Statute or Regulation.

+

If it is impossible for You to comply with any of the terms of this License with respect to some or all of the + Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be + included in the legal file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of + ordinary skill to be able to understand it.

+

5. Application of this License.

+

This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code.

+

6. Versions of the License.

+

6.1. New Versions

+

Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from + time to time. Each version will be given a distinguishing version number.

+

6.2. Effect of New Versions

+

Once Covered Code has been published under a particular version of the License, You may always continue to use + it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent + version of the License published by Netscape. No one other than Netscape has the right to modify the terms + applicable to Covered Code created under this License.

+

6.3. Derivative Works

+

If You create or use a modified version of this License (which you may only do in order to apply it to code + which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases + "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your + license (except to note that your license differs from this License) and (b) otherwise make it clear that Your + version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. + (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.)

+

7. Disclaimer of warranty

+

Covered code is provided under this license on an "as is" basis, without warranty of + any kind, either expressed or implied, including, without limitation, warranties that the covered code is free of + defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and + performance of the covered code is with you. Should any covered code prove defective in any respect, you (not the + initial developer or any other contributor) assume the cost of any necessary servicing, repair or correction. This + disclaimer of warranty constitutes an essential part of this license. No use of any covered code is authorized + hereunder except under this disclaimer.

+

8. Termination

+

8.1. This License and the rights granted hereunder will terminate automatically if + You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. + All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. + Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.

+

8.2. If You initiate litigation by asserting a patent infringement claim (excluding + declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor + against whom You file such action is referred to as "Participant") alleging that:

+
    +
  1. such Participant's Contributor Version directly or indirectly infringes any + patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 + days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You + either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and + future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment + arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, + the rights granted by Participant to You under Sections 2.1 and/or + 2.2 automatically terminate at the expiration of the 60 day notice period + specified above.
  2. +
  3. any software, hardware, or device, other than such Participant's Contributor + Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under + Sections 2.1(b) and 2.2(b) are + revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by + that Participant.
  4. +
+

8.3. If You assert a patent infringement claim against Participant alleging that such + Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of + the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or + license.

+

8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements + (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to + termination shall survive termination.

+

9. Limitation of liability

+

Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall you, the initial developer, any other contributor, or any distributor of + covered code, or any supplier of any of such parties, be liable to any person for any indirect, special, + incidental, or consequential damages of any character including, without limitation, damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such + party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to + liability for death or personal injury resulting from such party's negligence to the extent applicable law + prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to you.

+

10. U.S. government end users

+

The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software + documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. + 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June + 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein.

+

11. Miscellaneous

+

This License represents the complete agreement concerning subject matter hereof. If any provision of this + License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one + party is a citizen of, or an entity chartered or registered to do business in the United States of America, any + litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, California, with the losing party responsible for + costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of + the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or + regulation which provides that the language of a contract shall be construed against the drafter shall not apply to + this License.

+

12. Responsibility for claims

+

As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, + directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial + Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability.

+

13. Multiple-licensed code

+

Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means + that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the + MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in + Exhibit A.

+

Exhibit A - Mozilla Public License.

+
+"The contents of this file are subject to the Mozilla Public License
+Version 1.1 (the "License"); you may not use this file except in
+compliance with the License. You may obtain a copy of the License at
+https://www.mozilla.org/MPL/
+
+Software distributed under the License is distributed on an "AS IS"
+basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
+License for the specific language governing rights and limitations
+under the License.
+
+The Original Code is ______________________________________.
+
+The Initial Developer of the Original Code is ________________________.
+Portions created by ______________________ are Copyright (C) ______
+_______________________. All Rights Reserved.
+
+Contributor(s): ______________________________________.
+
+Alternatively, the contents of this file may be used under the terms
+of the _____ license (the  "[___] License"), in which case the
+provisions of [______] License are applicable instead of those
+above. If you wish to allow use of your version of this file only
+under the terms of the [____] License and not to allow others to use
+your version of this file under the MPL, indicate your decision by
+deleting the provisions above and replace them with the notice and
+other provisions required by the [___] License. If you do not delete
+the provisions above, a recipient may use your version of this file
+under either the MPL or the [___] License."
+
+

NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of + the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source + Code for Your Modifications.

+
+

Mozilla Public License Version 2.0

+

1. Definitions

+
+
1.1. “Contributor”
+
+

means each individual or legal entity that creates, contributes to the creation of, or owns Covered + Software.

+
+
1.2. “Contributor Version”
+
+

means the combination of the Contributions of others (if any) used by a Contributor and that particular + Contributor´s Contribution.

+
+
1.3. “Contribution”
+
+

means Covered Software of a particular Contributor.

+
+
1.4. “Covered Software”
+
+

means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the + Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case + including portions thereof.

+
+
1.5. “Incompatible With Secondary Licenses”
+
+

means

+
    +
  1. +

    that the initial Contributor has attached the notice described in Exhibit B to the Covered + Software; or

    +
  2. +
  3. +

    that the Covered Software was made available under the terms of version 1.1 or earlier of the + License, but not also under the terms of a Secondary License.

    +
  4. +
+
+
1.6. “Executable Form”
+
+

means any form of the work other than Source Code Form.

+
+
1.7. “Larger Work”
+
+

means a work that combines Covered Software with other material, in a separate file or files, that is + not Covered Software.

+
+
1.8. “License”
+
+

means this document.

+
+
1.9. “Licensable”
+
+

means having the right to grant, to the maximum extent possible, whether at the time of the initial + grant or subsequently, any and all of the rights conveyed by this License.

+
+
1.10. “Modifications”
+
+

means any of the following:

+
    +
  1. +

    any file in Source Code Form that results from an addition to, deletion from, or modification of + the contents of Covered Software; or

    +
  2. +
  3. +

    any new file in Source Code Form that contains any Covered Software.

    +
  4. +
+
+
1.11. “Patent Claims” of a Contributor
+
+

means any patent claim(s), including without limitation, method, process, and apparatus claims, in any + patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the + making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or + its Contributor Version.

+
+
1.12. “Secondary License”
+
+

means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version + 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.

+
+
1.13. “Source Code Form”
+
+

means the form of the work preferred for making modifications.

+
+
1.14. “You” (or “Your”)
+
+

means an individual or a legal entity exercising rights under this License. For legal entities, + “You” includes any entity that controls, is controlled by, or is under common control with You. For + purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction + or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such entity.

+
+
+

2. License Grants and Conditions

+

2.1. Grants

+

Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:

+
    +
  1. +

    under intellectual property rights (other than patent or trademark) Licensable by such Contributor to + use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and

    +
  2. +
  3. +

    under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and + otherwise transfer either its Contributions or its Contributor Version.

    +
  4. +
+

2.2. Effective Date

+

The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on + the date the Contributor first distributes such Contribution.

+

2.3. Limitations on Grant Scope

+

The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or + licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding + Section 2.1(b) above, no patent license is granted by a Contributor:

+
    +
  1. +

    for any code that a Contributor has removed from Covered Software; or

    +
  2. +
  3. +

    for infringements caused by: (i) Your and any other third party´s modifications of Covered Software, or + (ii) the combination of its Contributions with other software (except as part of its Contributor Version); + or

    +
  4. +
  5. +

    under Patent Claims infringed by Covered Software in the absence of its Contributions.

    +
  6. +
+

This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as + may be necessary to comply with the notice requirements in Section 3.4).

+

2.4. Subsequent Licenses

+

No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a + subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under + the terms of Section 3.3).

+

2.5. Representation

+

Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it + has sufficient rights to grant the rights to its Contributions conveyed by this License.

+

2.6. Fair Use

+

This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair + dealing, or other equivalents.

+

2.7. Conditions

+

Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.

+

3. Responsibilities

+

3.1. Distribution of Source Form

+

All distribution of Covered Software in Source Code Form, including any Modifications that You create or to + which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. + You may not attempt to alter or restrict the recipients´ rights in the Source Code Form.

+

3.2. Distribution of Executable Form

+

If You distribute Covered Software in Executable Form then:

+
    +
  1. +

    such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and + You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; + and

    +
  2. +
  3. +

    You may distribute such Executable Form under the terms of this License, or sublicense it under + different terms, provided that the license for the Executable Form does not attempt to limit or alter the + recipients´ rights in the Source Code Form under this License.

    +
  4. +
+

3.3. Distribution of a Larger Work

+

You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the + requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with + a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary + Licenses, this License permits You to additionally distribute such Covered Software under the terms of such + Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary License(s).

+

3.4. Notices

+

You may not remove or alter the substance of any license notices (including copyright notices, patent notices, + disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent required to remedy known factual + inaccuracies.

+

3.5. Application of Additional Terms

+

You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one + or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any + Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation + is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such + Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any jurisdiction.

+

4. Inability to Comply Due to Statute or Regulation

+

If it is impossible for You to comply with any of the terms of this License with respect to some or all of the + Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this + License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description + must be placed in a text file included with all distributions of the Covered Software under this License. Except to + the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of + ordinary skill to be able to understand it.

+

5. Termination

+

5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its + terms. However, if You become compliant, then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, + and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means + prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are + reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, + this is the first time You have received notice of non-compliance with this License from such Contributor, and You + become compliant prior to 30 days after Your receipt of the notice.

+

5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding + declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered + Software under Section 2.1 of this License shall terminate.

+

5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding + distributors and resellers) which have been validly granted by You or Your distributors under this License prior to + termination shall survive termination.

+

6. Disclaimer of Warranty

+

Covered Software is provided under this License on an “as is” basis, without warranty of any kind, + either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is + free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality + and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, + You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of + warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this + License except under this disclaimer.

+

7. Limitation of Liability

+

Under no circumstances and under no legal theory, whether tort (including negligence), contract, or + otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You + for any direct, indirect, special, incidental, or consequential damages of any character including, without + limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and + all other commercial damages or losses, even if such party shall have been informed of the possibility of such + damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such + party´s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the + exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to + You.

+

8. Litigation

+

Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant + maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, + without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party´s ability to + bring cross-claims or counter-claims.

+

9. Miscellaneous

+

This License represents the complete agreement concerning the subject matter hereof. If any provision of this + License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a contract shall be construed against the + drafter shall not be used to construe this License against a Contributor.

+

10. Versions of the License

+

10.1. New Versions

+

Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license + steward has the right to modify or publish new versions of this License. Each version will be given a + distinguishing version number.

+

10.2. Effect of New Versions

+

You may distribute the Covered Software under the terms of the version of the License under which You originally + received the Covered Software, or under the terms of any subsequent version published by the license steward.

+

10.3. Modified Versions

+

If you create software not governed by this License, and you want to create a new license for such software, you + may create and use a modified version of this License if you rename the license and remove any references to the + name of the license steward (except to note that such modified license differs from this License).

+

10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses

+

If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of + this version of the License, the notice described in Exhibit B of this License must be attached.

+

Exhibit A - Source Code Form License Notice

+
+

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL + was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

+
+

If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a + location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a + notice.

+

You may add additional accurate notices of copyright ownership.

+

Exhibit B - “Incompatible With Secondary Licenses” Notice

+
+

This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public + License, v. 2.0.

+
+
+

SIL Open Font + License Version 1.1 – 26 February 2007

+

PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font + projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and + open framework in which fonts may be shared and improved in partnership with others.

+

The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not + sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold + with any software provided that the font names of derivative works are changed. The fonts and derivatives, however, + cannot be released under any other type of license. The requirement for fonts to remain under this license does not + apply to any document created using the fonts or their derivatives.

+

DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license + and clearly marked as such. This may include source files, build scripts and documentation.

+

"Reserved Font Name" refers to any names specified as such after the copyright statement(s).

+

"Original Version" refers to the collection of Font Software components as distributed by the Copyright + Holder(s).

+

"Modified Version" refers to any derivative made by adding to, deleting, or substituting – in part or in whole + -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new + environment.

+

"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the + Font Software.

+

PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the + Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of + the Font Software, subject to the following conditions:

+

1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold + by itself.

+

2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any + software, provided that each copy contains the above copyright notice and this license. These can be included + either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields + within text or binary files as long as those fields can be easily viewed by the user.

+

3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission + is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as + presented to the users.

+

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, + endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and + the Author(s) or with their explicit written permission.

+

5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this + license, and must not be distributed under any other license. The requirement for fonts to remain under this + license does not apply to any document created using the Font Software.

+

TERMINATION This license becomes null and void if any of the above conditions are not met.

+

DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF + COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR + FROM OTHER DEALINGS IN THE FONT SOFTWARE.

+
+

Apache License

+

Version 2.0, January 2004

+

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

+

1. Definitions.

+

"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 + through 9 of this document.

+

"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the + License.

+

"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, + or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, + direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) + ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such + entity.

+

"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.

+

"Source" form shall mean the preferred form for making modifications, including but not limited to software + source code, documentation source, and configuration files.

+

"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, + including but not limited to compiled object code, generated documentation, and conversions to other media + types.

+

"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as + indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix + below).

+

"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the + Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a + whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works + that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works + thereof.

+

"Contribution" shall mean any work of authorship, including the original version of the Work and any + modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor + for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf + of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or + written communication sent to the Licensor or its representatives, including but not limited to communication on + electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf + of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is + conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."

+

"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been + received by Licensor and subsequently incorporated within the Work.

+

2. Grant of Copyright License. Subject to the terms and conditions of this License, each + Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and + distribute the Work and such Derivative Works in Source or Object form.

+

3. Grant of Patent License. Subject to the terms and conditions of this License, each + Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and + otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor + that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the + Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including + a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work + constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License + for that Work shall terminate as of the date such litigation is filed.

+

4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works + thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the + following conditions:

+
    +
  1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
  2. +
  3. You must cause any modified files to carry prominent notices stating that You changed the files; and
  4. +
  5. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, + trademark, and attribution notices from the Source form of the Work, excluding those notices that do not + pertain to any part of the Derivative Works; and
  6. +
  7. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You + distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding + those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: + within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, + if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents of the NOTICE file are for informational + purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works + that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such + additional attribution notices cannot be construed as modifying the License. You may add Your own copyright + statement to Your modifications and may provide additional or different license terms and conditions for use, + reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your + use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this + License.
  8. +
+

5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution + intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede + or modify the terms of any separate license agreement you may have executed with Licensor regarding such + Contributions.

+

6. Trademarks. This License does not grant permission to use the trade names, trademarks, + service marks, or product names of the Licensor, except as required for reasonable and customary use in describing + the origin of the Work and reproducing the content of the NOTICE file.

+

7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor + provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of + TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for + determining the appropriateness of using or redistributing the Work and assume any risks associated with Your + exercise of permissions under this License.

+

8. Limitation of Liability. In no event and under no legal theory, whether in tort (including + negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent + acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, + special, incidental, or consequential damages of any character arising as a result of this License or out of the + use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, + computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has + been advised of the possibility of such damages.

+

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative + Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other + liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may + act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if + You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims + asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

+

END OF TERMS AND CONDITIONS

+

APPENDIX: How to apply the Apache License to your work

+

To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by + brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be + enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and + description of purpose be included on the same "printed page" as the copyright notice for easier identification + within third-party archives.

+

   Copyright [yyyy] [name of copyright owner]

+

 

+

   Licensed under the Apache License, Version 2.0 (the "License");

+

   you may not use this file except in compliance with the License.

+

   You may obtain a copy of the License at

+

 

+

       http://www.apache.org/licenses/LICENSE-2.0

+

 

+

   Unless required by applicable law or agreed to in writing, software

+

   distributed under the License is distributed on an "AS IS" BASIS,

+

   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

+

   See the License for the specific language governing permissions and

+

   limitations under the License.

+
+
+

The LaTeX Project Public License

+

LPPL Version 1.3c 2008-05-04

+

Copyright 1999 2002-2008 LaTeX3 Project

+

Everyone is allowed to distribute verbatim copies of this license document, but modification of it is not + allowed.

+

PREAMBLE

+

The LaTeX Project Public License (LPPL) is the primary license under which the LaTeX kernel and the base + LaTeX packages are distributed.

+

You may use this license for any work of which you hold the copyright and which you wish to distribute. This + license may be particularly suitable if your work is TeX-related (such as a LaTeX package), but it is written + in such a way that you can use it even if your work is unrelated to TeX.

+

The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE', below, gives instructions, examples, + and recommendations for authors who are considering distributing their works under this license.

+

This license gives conditions under which a work may be distributed and modified, as well as conditions + under which modified versions of that work may be distributed.

+

We, the LaTeX3 Project, believe that the conditions below give you the freedom to make and distribute + modified versions of your work that conform with whatever technical specifications you wish while maintaining + the availability, integrity, and reliability of that work. If you do not see how to achieve your goal while + meeting these conditions, then read the document `cfgguide.tex' and `modguide.tex' in the base LaTeX + distribution for suggestions.

+

DEFINITIONS

+

In this license document the following terms are used:

+
+
`Work'
+
Any work being distributed under this License.
+
`Derived Work'
+
Any work that under any applicable law is derived from the Work.
+
`Modification'
+
Any procedure that produces a Derived Work under any applicable law — for example, the production of + a file containing an original file associated with the Work or a significant portion of such a file, either + verbatim or with modifications and/or translated into another language.
+
`Modify'
+
To apply any procedure that produces a Derived Work under any applicable law.
+
`Distribution'
+
Making copies of the Work available from one person to another, in whole or in part. Distribution + includes (but is not limited to) making any electronic components of the Work accessible by file transfer + protocols such as FTP or HTTP or by shared file systems such as Sun's Network File System (NFS).
+
`Compiled Work'
+
A version of the Work that has been processed into a form where it is directly usable on a computer + system. This processing may include using installation facilities provided by the Work, transformations of + the Work, copying of components of the Work, or other activities. Note that modification of any + installation facilities provided by the Work constitutes modification of the Work.
+
`Current Maintainer'
+
A person or persons nominated as such within the Work. If there is no such explicit nomination then it + is the `Copyright Holder' under any applicable law.
+
`Base Interpreter'
+
A program or process that is normally needed for running or interpreting a part or the whole of the + Work.
+
+ A Base Interpreter may depend on external components but these are not considered part of the Base + Interpreter provided that each external component clearly identifies itself whenever it is used + interactively. Unless explicitly specified when applying the license to the Work, the only applicable Base + Interpreter is a `LaTeX-Format' or in the case of files belonging to the `LaTeX-format' a program + implementing the `TeX language'.
+
+

CONDITIONS ON DISTRIBUTION AND MODIFICATION

+
    +
  1. Activities other than distribution and/or modification of the Work are not covered by this license; + they are outside its scope. In particular, the act of running the Work is not restricted and no + requirements are made concerning any offers of support for the Work.
  2. +
  3. You may distribute a complete, unmodified copy of the Work as you received it. Distribution of only + part of the Work is considered modification of the Work, and no right to distribute such a Derived Work may + be assumed under the terms of this clause.
  4. +
  5. You may distribute a Compiled Work that has been generated from a complete, unmodified copy of the Work + as distributed under Clause 2 above, as long as that Compiled Work is distributed in such a way that the + recipients may install the Compiled Work on their system exactly as it would have been installed if they + generated a Compiled Work directly from the Work.
  6. +
  7. If you are the Current Maintainer of the Work, you may, without restriction, modify the Work, thus + creating a Derived Work. You may also distribute the Derived Work without restriction, including Compiled + Works generated from the Derived Work. Derived Works distributed in this manner by the Current Maintainer + are considered to be updated versions of the Work.
  8. +
  9. If you are not the Current Maintainer of the Work, you may modify your copy of the Work, thus creating + a Derived Work based on the Work, and compile this Derived Work, thus creating a Compiled Work based on the + Derived Work.
  10. +
  11. If you are not the Current Maintainer of the Work, you may distribute a Derived Work provided the + following conditions are met for every component of the Work unless that component clearly states in the + copyright notice that it is exempt from that condition. Only the Current Maintainer is allowed to add such + statements of exemption to a component of the Work. +
      +
    1. If a component of this Derived Work can be a direct replacement for a component of the Work + when that component is used with the Base Interpreter, then, wherever this component of the Work + identifies itself to the user when used interactively with that Base Interpreter, the replacement + component of this Derived Work clearly and unambiguously identifies itself as a modified version of + this component to the user when used interactively with that Base Interpreter.
    2. +
    3. Every component of the Derived Work contains prominent notices detailing the nature of the + changes to that component, or a prominent reference to another file that is distributed as part of + the Derived Work and that contains a complete and accurate log of the changes.
    4. +
    5. No information in the Derived Work implies that any persons, including (but not limited to) the + authors of the original version of the Work, provide any support, including (but not limited to) + the reporting and handling of errors, to recipients of the Derived Work unless those persons have + stated explicitly that they do provide such support for the Derived Work.
    6. +
    7. You distribute at least one of the following with the Derived Work: +
        +
      1. A complete, unmodified copy of the Work; if your distribution of a modified component + is made by offering access to copy the modified component from a designated place, then + offering equivalent access to copy the Work from the same or some similar place meets this + condition, even though third parties are not compelled to copy the Work along with the + modified component;
      2. +
      3. Information that is sufficient to obtain a complete, unmodified copy of the Work.
      4. +
      +
    8. +
    +
  12. +
  13. If you are not the Current Maintainer of the Work, you may distribute a Compiled Work generated from a + Derived Work, as long as the Derived Work is distributed to all recipients of the Compiled Work, and as + long as the conditions of Clause 6, above, are met with regard to the Derived Work.
  14. +
  15. The conditions above are not intended to prohibit, and hence do not apply to, the modification, by any + method, of any component so that it becomes identical to an updated version of that component of the Work + as it is distributed by the Current Maintainer under Clause 4, above.
  16. +
  17. Distribution of the Work or any Derived Work in an alternative format, where the Work or that Derived + Work (in whole or in part) is then produced by applying some process to that format, does not relax or + nullify any sections of this license as they pertain to the results of applying that process.
  18. +
  19. +
      +
    1. A Derived Work may be distributed under a different license provided that license itself honors + the conditions listed in Clause 6 above, in regard to the Work, though it does not have to honor + the rest of the conditions in this license.
    2. +
    3. If a Derived Work is distributed under a different license, that Derived Work must provide + sufficient documentation as part of itself to allow each recipient of that Derived Work to honor + the restrictions in Clause 6 above, concerning changes from the Work.
    4. +
    +
  20. +
  21. This license places no restrictions on works that are unrelated to the Work, nor does this license + place any restrictions on aggregating such works with the Work by any means.
  22. +
  23. Nothing in this license is intended to, or may be used to, prevent complete compliance by all parties + with all applicable laws.
  24. +
+

NO WARRANTY

+

There is no warranty for the Work. Except when otherwise stated in writing, the Copyright Holder provides + the Work `as is', without warranty of any kind, either expressed or implied, including, but not limited to, the + implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality + and performance of the Work is with you. Should the Work prove defective, you assume the cost of all necessary + servicing, repair, or correction.

+

In no event unless required by applicable law or agreed to in writing will The Copyright Holder, or any + author named in the components of the Work, or any other party who may distribute and/or modify the Work as + permitted above, be liable to you for damages, including any general, special, incidental or consequential + damages arising out of any use of the Work or out of inability to use the Work (including, but not limited to, + loss of data, data being rendered inaccurate, or losses sustained by anyone as a result of any failure of the + Work to operate with any other programs), even if the Copyright Holder or said author or said other party has + been advised of the possibility of such damages.

+

MAINTENANCE OF THE WORK

+

The Work has the status `author-maintained' if the Copyright Holder explicitly and prominently states near + the primary copyright notice in the Work that the Work can only be maintained by the Copyright Holder or simply + that it is `author-maintained'.

+

The Work has the status `maintained' if there is a Current Maintainer who has indicated in the Work that + they are willing to receive error reports for the Work (for example, by supplying a valid e-mail address). It + is not required for the Current Maintainer to acknowledge or act upon these error reports.

+

The Work changes from status `maintained' to `unmaintained' if there is no Current Maintainer, or the person + stated to be Current Maintainer of the work cannot be reached through the indicated means of communication for + a period of six months, and there are no other significant signs of active maintenance.

+

You can become the Current Maintainer of the Work by agreement with any existing Current Maintainer to take + over this role.

+

If the Work is unmaintained, you can become the Current Maintainer of the Work through the following + steps:

+
    +
  1. Make a reasonable attempt to trace the Current Maintainer (and the Copyright Holder, if the two differ) + through the means of an Internet or similar search.
  2. +
  3. If this search is successful, then enquire whether the Work is still maintained. +
      +
    1. If it is being maintained, then ask the Current Maintainer to update their communication data + within one month.
    2. +
    3. If the search is unsuccessful or no action to resume active maintenance is taken by the Current + Maintainer, then announce within the pertinent community your intention to take over maintenance. + (If the Work is a LaTeX work, this could be done, for example, by posting to comp.text.tex.)
    4. +
    +
  4. +
  5. +
      +
    1. If the Current Maintainer is reachable and agrees to pass maintenance of the Work to you, then + this takes effect immediately upon announcement.
    2. +
    3. If the Current Maintainer is not reachable and the Copyright Holder agrees that maintenance of + the Work be passed to you, then this takes effect immediately upon announcement.
    4. +
    +
  6. +
  7. If you make an `intention announcement' as described in 2b. above and after three months your intention + is challenged neither by the Current Maintainer nor by the Copyright Holder nor by other people, then you + may arrange for the Work to be changed so as to name you as the (new) Current Maintainer.
  8. +
  9. If the previously unreachable Current Maintainer becomes reachable once more within three months of a + change completed under the terms of 3b) or 4), then that Current Maintainer must become or remain the + Current Maintainer upon request provided they then update their communication data within one month.
  10. +
+

A change in the Current Maintainer does not, of itself, alter the fact that the Work is distributed under + the LPPL license.

+

If you become the Current Maintainer of the Work, you should immediately provide, within the Work, a + prominent and unambiguous statement of your status as Current Maintainer. You should also announce your new + status to the same pertinent community as in 2b) above.

+

WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE

+

This section contains important instructions, examples, and recommendations for authors who are considering + distributing their works under this license. These authors are addressed as `you' in this section.

+

Choosing This License or Another License

+

If for any part of your work you want or need to use *distribution* conditions that differ significantly + from those in this license, then do not refer to this license anywhere in your work but, instead, distribute + your work under a different license. You may use the text of this license as a model for your own license, but + your license should not refer to the LPPL or otherwise give the impression that your work is distributed under + the LPPL.

+

The document `modguide.tex' in the base LaTeX distribution explains the motivation behind the conditions of + this license. It explains, for example, why distributing LaTeX under the GNU General Public License (GPL) was + considered inappropriate. Even if your work is unrelated to LaTeX, the discussion in `modguide.tex' may still + be relevant, and authors intending to distribute their works under any license are encouraged to read it.

+

A Recommendation on Modification Without Distribution

+

It is wise never to modify a component of the Work, even for your own personal use, without also meeting the + above conditions for distributing the modified component. While you might intend that such modifications will + never be distributed, often this will happen by accident — you may forget that you have modified that + component; or it may not occur to you when allowing others to access the modified version that you are thus + distributing it and violating the conditions of this license in ways that could have legal implications and, + worse, cause problems for the community. It is therefore usually in your best interest to keep your copy of the + Work identical with the public one. Many works provide ways to control the behavior of that work without + altering any of its licensed components.

+

How to Use This License

+

To use this license, place in each of the components of your work both an explicit copyright notice + including your name and the year the work was authored and/or last substantially modified. Include also a + statement that the distribution and/or modification of that component is constrained by the conditions in this + license.

+

Here is an example of such a notice and statement:

+
+  %% pig.dtx
+  %% Copyright 2005 M. Y. Name
+  %
+  % This work may be distributed and/or modified under the
+  % conditions of the LaTeX Project Public License, either version 1.3
+  % of this license or (at your option) any later version.
+  % The latest version of this license is in
+  %   http://www.latex-project.org/lppl.txt
+  % and version 1.3 or later is part of all distributions of LaTeX
+  % version 2005/12/01 or later.
+  %
+  % This work has the LPPL maintenance status `maintained'.
+  %
+  % The Current Maintainer of this work is M. Y. Name.
+  %
+  % This work consists of the files pig.dtx and pig.ins
+  % and the derived file pig.sty.
+
+

Given such a notice and statement in a file, the conditions given in this license document would apply, with + the `Work' referring to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being generated from + `pig.dtx' using `pig.ins'), the `Base Interpreter' referring to any `LaTeX-Format', and both `Copyright Holder' + and `Current Maintainer' referring to the person `M. Y. Name'.

+

If you do not want the Maintenance section of LPPL to apply to your Work, change `maintained' above into + `author-maintained'. However, we recommend that you use `maintained', as the Maintenance section was added in + order to ensure that your Work remains useful to the community even when you can no longer maintain and support + it yourself.

+

Derived Works That Are Not Replacements

+

Several clauses of the LPPL specify means to provide reliability and stability for the user community. They + therefore concern themselves with the case that a Derived Work is intended to be used as a (compatible or + incompatible) replacement of the original Work. If this is not the case (e.g., if a few lines of code are + reused for a completely different task), then clauses 6b and 6d shall not apply.

+

Important Recommendations

+

Defining What Constitutes the Work

+

The LPPL requires that distributions of the Work contain all the files of the Work. It is therefore + important that you provide a way for the licensee to determine which files constitute the Work. This could, for + example, be achieved by explicitly listing all the files of the Work near the copyright notice of each file or + by using a line such as:

+
+    % This work consists of all files listed in manifest.txt.
+
+

in that place. In the absence of an unequivocal list it might be impossible for the licensee to determine + what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make + reasonable conjectures as to which files comprise the Work.

+
+
+

Creative Commons Attribution-ShareAlike 3.0 Unported

+
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS + LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN + "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY + FOR DAMAGES RESULTING FROM ITS USE. +
+

License

+

THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR + "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.

+

BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS + LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.

+

1. Definitions

+
    +
  1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing + works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other + form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from + the original, except that a work that constitutes a Collection will not be considered an Adaptation for the + purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or + phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be + considered an Adaptation for the purpose of this License.
  2. +
  3. "Collection" means a collection of literary or artistic works, such as encyclopedias and + anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works + listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute + intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more + other contributions, each constituting separate and independent works in themselves, which together are + assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation + (as defined below) for the purposes of this License.
  4. +
  5. "Creative Commons Compatible License" means a license that is listed at + https://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially + equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the + same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the + relicensing of adaptations of works made available under that license under this License or a Creative Commons + jurisdiction license with the same License Elements as this License.
  6. +
  7. "Distribute" means to make available to the public the original and copies of the Work or + Adaptation, as appropriate, through sale or other transfer of ownership.
  8. +
  9. "License Elements" means the following high-level license attributes as selected by + Licensor and indicated in the title of this License: Attribution, ShareAlike.
  10. +
  11. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work + under the terms of this License.
  12. +
  13. "Original Author" means, in the case of a literary or artistic work, the individual, + individuals, entity or entities who created the Work or if no individual or entity can be identified, the + publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other + persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who + first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization + that transmits the broadcast.
  14. +
  15. "Work" means the literary and/or artistic work offered under the terms of this License + including without limitation any production in the literary, scientific and artistic domain, whatever may be + the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a + lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical composition with or without words; a + cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work + of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are + assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, + plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable + work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a + literary or artistic work.
  16. +
  17. "You" means an individual or entity exercising rights under this License who has not + previously violated the terms of this License with respect to the Work, or who has received express permission + from the Licensor to exercise rights under this License despite a previous violation.
  18. +
  19. "Publicly Perform" means to perform public recitations of the Work and to communicate to + the public those public recitations, by any means or process, including by wire or wireless means or public + digital performances; to make available to the public Works in such a way that members of the public may access + these Works from a place and at a place individually chosen by them; to perform the Work to the public by any + means or process and the communication to the public of the performances of the Work, including by public + digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
  20. +
  21. "Reproduce" means to make copies of the Work by any means including without limitation by + sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage + of a protected performance or phonogram in digital form or other electronic medium.
  22. +
+

2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any + uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with + the copyright protection under copyright law or other applicable laws.

+

3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants + You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below:

+
    +
  1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as + incorporated in the Collections;
  2. +
  3. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any + medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the + original Work. For example, a translation could be marked "The original work was translated from English to + Spanish," or a modification could indicate "The original work has been modified.";
  4. +
  5. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
  6. +
  7. to Distribute and Publicly Perform Adaptations.
  8. +
  9. +

    For the avoidance of doubt:

    +
      +
    1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right + to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the + Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights + granted under this License;
    2. +
    3. Waivable Compulsory License Schemes. In those jurisdictions in which the right to + collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor + waives the exclusive right to collect such royalties for any exercise by You of the rights granted + under this License; and,
    4. +
    5. Voluntary License Schemes. The Licensor waives the right to collect royalties, + whether individually or, in the event that the Licensor is a member of a collecting society that + administers voluntary licensing schemes, via that society, from any exercise by You of the rights + granted under this License.
    6. +
    +
  10. +
+

The above rights may be exercised in all media and formats whether now known or hereafter devised. The above + rights include the right to make such modifications as are technically necessary to exercise the rights in other + media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.

+

4. Restrictions. The license granted in Section 3 above is expressly made subject to and + limited by the following restrictions:

+
    +
  1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a + copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute + or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License + or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of + the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You + Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work + that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient + under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this + does not require the Collection apart from the Work itself to be made subject to the terms of this License. If + You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the + Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from + any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section + 4(c), as requested.
  2. +
  3. You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a + later version of this License with the same License Elements as this License; (iii) a Creative Commons + jurisdiction license (either this or a later license version) that contains the same License Elements as this + License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the + Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you + license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable + License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) + You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You + Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the + terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights + granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices + that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as + included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the + Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability + of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of + the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this + does not require the Collection apart from the Adaptation itself to be made subject to the terms of the + Applicable License.
  4. +
  5. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a + request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, + reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if + applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties + (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's + copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the + title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing + information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit + identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," + or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be + implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a + minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection + appears, then as part of these credits and in a manner at least as prominent as the credits for the other + contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the + purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may + not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original + Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the + separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
  6. +
  7. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, + if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or + Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work + which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those + jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the + right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory + action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as + appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to + reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not + otherwise.
  8. +
+

5. Representations, Warranties and Disclaimer

+

UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO + REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, + WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE + ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. + SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.

+

6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL + LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY + DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES.

+

7. Termination

+
    +
  1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the + terms of this License. Individuals or entities who have received Adaptations or Collections from You under this + License, however, will not have their licenses terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this + License.
  2. +
  3. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the + applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work + under different license terms or to stop distributing the Work at any time; provided, however that any such + election will not serve to withdraw this License (or any other license that has been, or is required to be, + granted under the terms of this License), and this License will continue in full force and effect unless + terminated as stated above.
  4. +
+

8. Miscellaneous

+
    +
  1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient + a license to the Work on the same terms and conditions as the license granted to You under this License.
  2. +
  3. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to + the original Work on the same terms and conditions as the license granted to You under this License.
  4. +
  5. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the + validity or enforceability of the remainder of the terms of this License, and without further action by the + parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such + provision valid and enforceable.
  6. +
  7. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver + or consent shall be in writing and signed by the party to be charged with such waiver or consent.
  8. +
  9. This License constitutes the entire agreement between the parties with respect to the Work licensed here. + There are no understandings, agreements or representations with respect to the Work not specified here. + Licensor shall not be bound by any additional provisions that may appear in any communication from You. This + License may not be modified without the mutual written agreement of the Licensor and You.
  10. +
  11. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the + terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September + 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms + Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject + matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according + to the corresponding provisions of the implementation of those treaty provisions in the applicable national + law. If the standard suite of rights granted under applicable copyright law includes additional rights not + granted under this License, such additional rights are deemed to be included in the License; this License is + not intended to restrict the license of any rights under applicable law.
  12. +
+
+

Creative Commons Notice

+

Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the + Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, + including without limitation any general, special, incidental or consequential damages arising in connection to + this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified + itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.

+

Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, + Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related + trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use + will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on + its website or otherwise made available upon request from time to time. For the avoidance of doubt, this + trademark restriction does not form part of the License.

+

Creative Commons may be contacted at https://creativecommons.org/.

+
+

Creative Commons Attribution-ShareAlike 4.0 International

+
+

Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or + legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other + relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. + Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and + conditions, or any related information. Creative Commons disclaims all liability for damages resulting from + their use to the fullest extent possible.

+
+

Using Creative Commons Public Licenses

+

Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights + holders may use to share original works of authorship and other material subject to copyright and certain other + rights specified in the public license below. The following considerations are for informational purposes only, + are not exhaustive, and do not form part of our licenses.

+

Considerations for licensors: Our public licenses are intended for + use by those authorized to give the public permission to use material in ways otherwise restricted by copyright + and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and + conditions of the license they choose before applying it. Licensors should also secure all rights necessary + before applying our licenses so that the public can reuse the material as expected. Licensors should clearly + mark any material not subject to the license. This includes other CC-licensed material, or material used under + an exception or limitation to copyright. More + considerations for licensors.

+

Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the licensed material under specified terms and + conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable + exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only + permissions under copyright and certain other rights that a licensor has authority to grant. Use of the + licensed material may still be restricted for other reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, such as asking that all changes be marked or + described. Although not required by our licenses, you are encouraged to respect those requests where + reasonable. More + considerations for the public.

+

Creative Commons Attribution-ShareAlike 4.0 International Public License

+

By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions + of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the + extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in + consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in + consideration of benefits the Licensor receives from making the Licensed Material available under these terms + and conditions.

+

Section 1 – Definitions.

+
    +
  1. Adapted Material means material subject to Copyright and Similar Rights that is + derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and + Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a + musical work, performance, or sound recording, Adapted Material is always produced where the Licensed + Material is synched in timed relation with a moving image.
  2. +
  3. Adapter's License means the license You apply to Your Copyright and Similar + Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public + License.
  4. +
  5. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent + of this Public License.
  6. +
  7. Copyright and Similar Rights means copyright and/or similar rights closely + related to copyright including, without limitation, performance, broadcast, sound recording, and Sui + Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this + Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and + Similar Rights.
  8. +
  9. Effective Technological Measures means those measures that, in the absence of + proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO + Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
  10. +
  11. Exceptions and Limitations means fair use, fair dealing, and/or any other + exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
  12. +
  13. License Elements means the license attributes listed in the name of a Creative + Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.
  14. +
  15. Licensed Material means the artistic or literary work, database, or other + material to which the Licensor applied this Public License.
  16. +
  17. Licensed Rights means the rights granted to You subject to the terms and + conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your + use of the Licensed Material and that the Licensor has authority to license.
  18. +
  19. Licensor means the individual(s) or entity(ies) granting rights under this Public + License.
  20. +
  21. Share means to provide material to the public by any means or process that + requires permission under the Licensed Rights, such as reproduction, public display, public performance, + distribution, dissemination, communication, or importation, and to make material available to the public + including in ways that members of the public may access the material from a place and at a time + individually chosen by them.
  22. +
  23. Sui Generis Database Rights means rights other than copyright resulting from + Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of + databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the + world.
  24. +
  25. You means the individual or entity exercising the Licensed Rights under this + Public License. Your has a corresponding meaning.
  26. +
+

Section 2 – Scope.

+
    +
  1. License grant. +
      +
    1. Subject to the terms and conditions of this Public License, the Licensor hereby grants + You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise + the Licensed Rights in the Licensed Material to: +
        +
      1. reproduce and Share the Licensed Material, in whole or in part; and
      2. +
      3. produce, reproduce, and Share Adapted Material.
      4. +
      +
    2. +
    3. Exceptions and Limitations. For the + avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does + not apply, and You do not need to comply with its terms and conditions.
    4. +
    5. Term. The term of this Public License is + specified in Section 6(a).
    6. +
    7. Media and formats; technical modifications + allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and + formats whether now known or hereafter created, and to make technical modifications necessary to do + so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from + making technical modifications necessary to exercise the Licensed Rights, including technical + modifications necessary to circumvent Effective Technological Measures. For purposes of this Public + License, simply making modifications authorized by this Section 2(a)(4) never + produces Adapted Material.
    8. +
    9. Downstream recipients. +
        +
      1. Offer from the Licensor – Licensed + Material. Every recipient of the Licensed Material automatically receives an + offer from the Licensor to exercise the Licensed Rights under the terms and conditions of + this Public License.
      2. +
      3. Additional offer from the Licensor – + Adapted Material. Every recipient of Adapted Material from You automatically + receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter’s License You apply.
      4. +
      5. No downstream restrictions. You + may not offer or impose any additional or different terms or conditions on, or apply any + Effective Technological Measures to, the Licensed Material if doing so restricts exercise + of the Licensed Rights by any recipient of the Licensed Material.
      6. +
      +
    10. +
    11. No endorsement. Nothing in this Public + License constitutes or may be construed as permission to assert or imply that You are, or that Your + use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status + by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
    12. +
    +
  2. +
  3. +

    Other rights.

    +
      +
    1. Moral rights, such as the right of integrity, are not licensed under this Public License, + nor are publicity, privacy, and/or other similar personality rights; however, to the extent + possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to + the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
    2. +
    3. Patent and trademark rights are not licensed under this Public License.
    4. +
    5. To the extent possible, the Licensor waives any right to collect royalties from You for + the exercise of the Licensed Rights, whether directly or through a collecting society under any + voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor + expressly reserves any right to collect such royalties.
    6. +
    +
  4. +
+

Section 3 – License Conditions.

+

Your exercise of the Licensed Rights is expressly made subject to the following conditions.

+
    +
  1. +

    Attribution.

    +
      +
    1. +

      If You Share the Licensed Material (including in modified form), You must:

      +
        +
      1. retain the following if it is supplied by the Licensor with the Licensed + Material: +
          +
        1. identification of the creator(s) of the Licensed Material and any + others designated to receive attribution, in any reasonable manner requested by the + Licensor (including by pseudonym if designated);
        2. +
        3. a copyright notice;
        4. +
        5. a notice that refers to this Public License;
        6. +
        7. a notice that refers to the disclaimer of warranties;
        8. +
        9. a URI or hyperlink to the Licensed Material to the extent reasonably + practicable;
        10. +
        +
      2. +
      3. indicate if You modified the Licensed Material and retain an indication of any + previous modifications; and
      4. +
      5. indicate the Licensed Material is licensed under this Public License, and + include the text of, or the URI or hyperlink to, this Public License.
      6. +
      +
    2. +
    3. You may satisfy the conditions in Section 3(a)(1) in any reasonable + manner based on the medium, means, and context in which You Share the Licensed Material. For + example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a + resource that includes the required information.
    4. +
    5. If requested by the Licensor, You must remove any of the information required by Section + 3(a)(1)(A) to the extent reasonably practicable.
    6. +
    +
  2. +
  3. ShareAlike.

    In addition to the conditions in Section 3(a), + if You Share Adapted Material You produce, the following conditions also apply.

    +
      +
    1. The Adapter’s License You apply must be a Creative Commons license with the same License + Elements, this version or later, or a BY-SA Compatible License.
    2. +
    3. You must include the text of, or the URI or hyperlink to, the Adapter's License You + apply. You may satisfy this condition in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material.
    4. +
    5. You may not offer or impose any additional or different terms or conditions on, or apply + any Effective Technological Measures to, Adapted Material that restrict exercise of the rights + granted under the Adapter's License You apply.
    6. +
    +
  4. +
+

Section 4 – Sui Generis Database Rights.

+

Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:

+
    +
  1. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, + reuse, reproduce, and Share all or a substantial portion of the contents of the database;
  2. +
  3. if You include all or a substantial portion of the database contents in a database in which You + have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not + its individual contents) is Adapted Material, including for purposes of Section 3(b); + and
  4. +
  5. You must comply with the conditions in Section 3(a) if You Share all or a + substantial portion of the contents of the database.
  6. +
For the avoidance of doubt, this Section 4 supplements and does not replace Your + obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.

Section + 5 – Disclaimer of Warranties and Limitation of Liability.

+
    +
  1. Unless otherwise separately undertaken by the Licensor, to the extent possible, the + Licensor offers the Licensed Material as-is and as-available, and makes no representations or + warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. + This includes, without limitation, warranties of title, merchantability, fitness for a particular + purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of + errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full + or in part, this disclaimer may not apply to You.
  2. +
  3. To the extent possible, in no event will the Licensor be liable to You on any legal theory + (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, + consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this + Public License or use of the Licensed Material, even if the Licensor has been advised of the + possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed + in full or in part, this limitation may not apply to You.
  4. +
+
    +
  1. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a + manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all + liability.
  2. +
+

Section 6 – Term and Termination.

+
    +
  1. This Public License applies for the term of the Copyright and Similar Rights licensed here. + However, if You fail to comply with this Public License, then Your rights under this Public License + terminate automatically.
  2. +
  3. +

    Where Your right to use the Licensed Material has terminated under Section 6(a), it + reinstates:

    +
      +
    1. automatically as of the date the violation is cured, provided it is cured within 30 days + of Your discovery of the violation; or
    2. +
    3. upon express reinstatement by the Licensor.
    4. +
    For the avoidance of doubt, this Section 6(b) does not affect any right the + Licensor may have to seek remedies for Your violations of this Public License. +
  4. +
  5. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms + or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate + this Public License.
  6. +
  7. Sections 1, 5, 6, 7, and + 8 survive termination of this Public License.
  8. +
+

Section 7 – Other Terms and Conditions.

+
    +
  1. The Licensor shall not be bound by any additional or different terms or conditions communicated by + You unless expressly agreed.
  2. +
  3. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein + are separate from and independent of the terms and conditions of this Public License.
  4. +
+

Section 8 – Interpretation.

+
    +
  1. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, + limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made + without permission under this Public License.
  2. +
  3. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall + be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot + be reformed, it shall be severed from this Public License without affecting the enforceability of the + remaining terms and conditions.
  4. +
  5. No term or condition of this Public License will be waived and no failure to comply consented to + unless expressly agreed to by the Licensor.
  6. +
  7. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver + of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of + any jurisdiction or authority.
  8. +
+

Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may + elect to apply one of its public licenses to material it publishes and in those instances will be considered + the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication. Except + for the limited purpose of indicating that material is shared under a Creative Commons public license or as + otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, + Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo + of Creative Commons without its prior written consent including, without limitation, in connection with any + unauthorized modifications to any of its public licenses or any other arrangements, understandings, or + agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part + of the public licenses.

Creative Commons may be contacted at creativecommons.org.

+ + diff --git a/readlicense_oo/license/license_html.xsl b/readlicense_oo/license/license_html.xsl new file mode 100644 index 000000000..ed8452792 --- /dev/null +++ b/readlicense_oo/license/license_html.xsl @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/readlicense_oo/license/license_plain_text.xsl b/readlicense_oo/license/license_plain_text.xsl new file mode 100644 index 000000000..7ff3c20bf --- /dev/null +++ b/readlicense_oo/license/license_plain_text.xsl @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # + + + + + + ## + + + + + + ### + + + + + + + -- cgit v1.2.3